pax_global_header00006660000000000000000000000064141635705640014525gustar00rootroot0000000000000052 comment=9571f3566ff94712016f60792633367e9a38e0bc ruby-asciidoctor-pdf-1.6.2/000077500000000000000000000000001416357056400155645ustar00rootroot00000000000000ruby-asciidoctor-pdf-1.6.2/.deep_cover.rb000066400000000000000000000002621416357056400203020ustar00rootroot00000000000000DeepCover.configure do output 'coverage/report-deep-cover' paths %w(./lib) reporter :text if ENV['CI'] reporter :istanbul if ENV['DEEP_COVER_REPORTER'] == 'istanbul' end ruby-asciidoctor-pdf-1.6.2/.gitattributes000066400000000000000000000001341416357056400204550ustar00rootroot00000000000000/*file eol=lf /bin/* eol=lf *.adoc eol=lf *.pdf -text *.rb eol=lf *.svg eol=lf *.yml eol=lf ruby-asciidoctor-pdf-1.6.2/.github/000077500000000000000000000000001416357056400171245ustar00rootroot00000000000000ruby-asciidoctor-pdf-1.6.2/.github/workflows/000077500000000000000000000000001416357056400211615ustar00rootroot00000000000000ruby-asciidoctor-pdf-1.6.2/.github/workflows/ci.yml000066400000000000000000000075261416357056400223110ustar00rootroot00000000000000name: CI on: push: branches: ['**'] tags-ignore: ['**'] pull_request: jobs: activate: if: "!endsWith(github.event.head_commit.message, '[skip ci]')" runs-on: ubuntu-latest steps: - name: Proceed run: echo ok go lint: needs: activate runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v2 - name: Install Ruby uses: ruby/setup-ruby@v1 with: ruby-version: '3.0' - name: Configure Bundler run: | bundle config --local path .bundle/gems bundle config --local without coverage docs - name: Install dependencies run: bundle --jobs 3 --retry 3 - name: Run linter run: bundle exec rake lint build: needs: lint strategy: matrix: os: [ubuntu-latest, windows-latest] ruby: [jruby-9.2, '2.5', '2.6', '2.7', '3.0'] asciidoctor-version: [~] pygments-version: [~] rouge-version: [~] upstream: [~] exclude: - os: ubuntu-latest ruby: '3.0' include: - os: macos-latest ruby: '3.0' - os: ubuntu-latest ruby: '2.5' rouge-version: '~> 2.0.0' - os: ubuntu-latest ruby: '2.5' pygments-version: '~> 1.2.0' - os: ubuntu-latest ruby: '3.0' upstream: upstream - os: ubuntu-latest ruby: '3.0' primary: primary runs-on: ${{ matrix.os }} env: PYGMENTS_VERSION: '~> 2.0' RGHOST_VERSION: '0.9.7' steps: - name: Checkout uses: actions/checkout@v2 with: fetch-depth: 5 - name: Install Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - name: Reinstall Bundler if: matrix.os == 'windows-latest' && matrix.ruby == 'jruby-9.2' run: | gem uninstall -x bundler gem install -N bundler -v 2.1.4 - name: Configure Bundler run: | bundle config --local path .bundle/gems bundle config --local without coverage docs lint - name: Install Ghostscript and Poppler (Linux) if: matrix.os == 'ubuntu-latest' run: | sudo apt-get update sudo apt-get install ghostscript poppler-utils - name: Install Ghostscript and Poppler (macOS) if: matrix.os == 'macos-latest' run: brew install ghostscript poppler - name: Install Ghostscript and Poppler and set GS env var (Windows) if: matrix.os == 'windows-latest' run: | choco install --no-progress ghostscript poppler echo "GS=$(& where.exe /R 'C:\Program Files\gs' gswin64c.exe)" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append - name: Set Prawn Gmagick version / Install GraphicsMagick (Linux only) if: matrix.primary run: | echo 'PRAWN_GMAGICK_VERSION=0.0.9' >> $GITHUB_ENV sudo apt-get install libgraphicsmagick1-dev - name: Set Rouge version if: matrix.rouge-version run: echo 'ROUGE_VERSION=${{ matrix.rouge-version }}' >> $GITHUB_ENV - name: Set Pygments version if: matrix.pygments-version run: echo 'PYGMENTS_VERSION=${{ matrix.pygments-version }}' >> $GITHUB_ENV - name: Set Asciidoctor version override if: matrix.asciidoctor-version run: echo 'ASCIIDOCTOR_VERSION=${{ matrix.asciidoctor-version }}' >> $GITHUB_ENV shell: bash - name: Install dependencies run: bundle --jobs 3 --retry 3 - name: Switch to upstream dependencies if: matrix.upstream run: | bundle exec ruby scripts/switch-to-asciidoctor-head.rb bundle exec ruby scripts/switch-to-prawn-head.rb rm -f Gemfile.lock bundle config --local clean true bundle --jobs 3 --retry 3 - name: Run tests run: bundle exec ruby -w $(bundle exec ruby -e 'print File.join Gem.bindir, %q(rake)') spec ruby-asciidoctor-pdf-1.6.2/.github/workflows/release.yml000066400000000000000000000014601416357056400233250ustar00rootroot00000000000000name: Release on: push: tags: ['v*'] jobs: activate: if: github.repository == 'asciidoctor/asciidoctor-pdf' runs-on: ubuntu-latest steps: - name: Proceed run: echo ok go build: needs: activate runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v2 - name: Install Ruby uses: ruby/setup-ruby@v1 with: ruby-version: '3.0' - name: Configure Bundler run: | bundle config --local path .bundle/gems bundle config --local without coverage docs lint - name: Install dependencies run: bundle --jobs 3 --retry 3 - name: Run tests run: bundle exec rake spec - name: Publish gem uses: dawidd6/action-publish-gem@v1 with: api_key: ${{ secrets.RUBYGEMS_API_KEY }} ruby-asciidoctor-pdf-1.6.2/.gitignore000066400000000000000000000002001416357056400175440ustar00rootroot00000000000000*.pdfmarks /_*/ /Gemfile.lock /apidoc/ /coverage/ /deep_cover/ /pkg/ /scripts/fonts/ /.bundle/ /.idea/ /.ruby-version /.yardoc/ ruby-asciidoctor-pdf-1.6.2/.rubocop.yml000066400000000000000000000165301416357056400200430ustar00rootroot00000000000000require: - rubocop-rspec - rubocop-rake AllCops: TargetRubyVersion: 2.5 Gemspec/DateAssignment: Enabled: true Layout/ArgumentAlignment: EnforcedStyle: with_fixed_indentation IndentationWidth: 4 Layout/BeginEndAlignment: Enabled: true Layout/CaseIndentation: EnforcedStyle: end Layout/EndOfLine: EnforcedStyle: lf Layout/EmptyLineAfterGuardClause: Enabled: false Layout/EmptyLinesAroundAttributeAccessor: Enabled: true Layout/FirstArgumentIndentation: Enabled: false Layout/HeredocIndentation: Enabled: false Layout/LeadingCommentSpace: Enabled: false Layout/LineLength: Enabled: false # FIXME enable me Layout/MultilineOperationIndentation: EnforcedStyle: indented Layout/ParameterAlignment: EnforcedStyle: with_fixed_indentation IndentationWidth: 4 Layout/RescueEnsureAlignment: Enabled: false Layout/SpaceAroundMethodCallOperator: Enabled: true Layout/SpaceBeforeBrackets: Enabled: true Layout/SpaceInsideBlockBraces: SpaceBeforeBlockParameters: false Lint/AmbiguousAssignment: Enabled: true Lint/AmbiguousBlockAssociation: Enabled: false Lint/BinaryOperatorWithIdenticalOperands: Enabled: true Lint/ConstantDefinitionInBlock: Enabled: false Lint/DeprecatedConstants: Enabled: true Lint/DeprecatedOpenSSLConstant: Enabled: true Lint/DuplicateBranch: Enabled: false Lint/DuplicateElsifCondition: Enabled: true Lint/DuplicateRegexpCharacterClassElement: Enabled: true Lint/DuplicateRequire: Enabled: true Lint/DuplicateRescueException: Enabled: true Lint/EmptyBlock: Enabled: false Lint/EmptyClass: Enabled: true Lint/EmptyConditionalBody: Enabled: true Lint/EmptyFile: Enabled: true Lint/EmptyWhen: Enabled: false Lint/FloatComparison: Enabled: false Lint/IdentityComparison: Enabled: true Lint/LambdaWithoutLiteralBlock: Enabled: true Lint/MissingSuper: Enabled: false Lint/MixedRegexpCaptureTypes: Enabled: true Lint/NoReturnInBeginEndBlocks: Enabled: true Lint/NumberedParameterAssignment: Enabled: true Lint/OrAssignmentToConstant: Enabled: true Lint/OutOfRangeRegexpRef: Enabled: true Lint/ParenthesesAsGroupedExpression: Enabled: false Lint/RaiseException: Enabled: true Lint/RedundantDirGlobSort: Enabled: true Lint/SelfAssignment: Enabled: true Lint/StructNewOverride: Enabled: true Lint/SuppressedException: Enabled: false Lint/SymbolConversion: Enabled: true Lint/ToEnumArguments: Enabled: true Lint/TopLevelReturnWithArgument: Enabled: true Lint/TrailingCommaInAttributeDeclaration: Enabled: true Lint/TripleQuotes: Enabled: true Lint/UnexpectedBlockArity: Enabled: true Lint/UnmodifiedReduceAccumulator: Enabled: true Lint/UnreachableLoop: Enabled: true Lint/UselessMethodDefinition: Enabled: true Lint/UselessTimes: Enabled: true Metrics/AbcSize: Enabled: false Metrics/BlockLength: Enabled: false Metrics/BlockNesting: Max: 10 Metrics/ClassLength: Enabled: false Metrics/CyclomaticComplexity: Enabled: false Metrics/MethodLength: Enabled: false Metrics/ModuleLength: Enabled: false Metrics/ParameterLists: Max: 10 MaxOptionalParameters: 10 Metrics/PerceivedComplexity: Enabled: false Naming/AccessorMethodName: Enabled: false Naming/ConstantName: Enabled: false Naming/FileName: Enabled: false Naming/HeredocDelimiterNaming: Enabled: false Naming/MethodParameterName: Enabled: false RSpec/BeEql: Enabled: false RSpec/BeforeAfterAll: Enabled: false RSpec/ContextWording: Enabled: false RSpec/DescribeClass: Enabled: false RSpec/EmptyExampleGroup: Enabled: false RSpec/ExampleLength: Enabled: false RSpec/ExampleWording: Enabled: false RSpec/ExpectInHook: Enabled: false RSpec/FilePath: Enabled: false RSpec/MultipleExpectations: Enabled: false RSpec/NamedSubject: Enabled: false RSpec/VoidExpect: Enabled: false Security/Open: Enabled: false Style/AccessorGrouping: Enabled: true EnforcedStyle: separated Style/ArgumentsForwarding: Enabled: true Style/ArrayCoercion: Enabled: true Style/AsciiComments: Enabled: false Style/Attr: Enabled: false Style/BisectedAttrAccessor: Enabled: true Style/BlockComments: Enabled: false Style/BlockDelimiters: EnforcedStyle: braces_for_chaining Style/CaseEquality: Enabled: false Style/CaseLikeIf: Enabled: true Style/CharacterLiteral: Enabled: false Style/ClassAndModuleChildren: Enabled: false Style/CollectionCompact: Enabled: true Style/CombinableLoops: Enabled: true Style/CommandLiteral: EnforcedStyle: percent_x Style/CommentAnnotation: Enabled: false Style/ConditionalAssignment: EnforcedStyle: assign_inside_condition IncludeTernaryExpressions: false Style/DocumentDynamicEvalDefinition: Enabled: true Style/Documentation: Enabled: false # FIXME enable me Style/DoubleNegation: Enabled: false Style/EmptyLiteral: Enabled: false Style/EndlessMethod: Enabled: true Style/ExplicitBlockArgument: Enabled: false Style/ExponentialNotation: Enabled: true Style/FormatString: EnforcedStyle: percent Style/FormatStringToken: Enabled: false Style/GlobalStdStream: Enabled: true Style/GuardClause: Enabled: false Style/HashConversion: Enabled: true Style/HashAsLastArrayItem: Enabled: false Style/HashEachMethods: Enabled: true Style/HashExcept: Enabled: true Style/HashLikeCase: Enabled: true Style/HashSyntax: EnforcedStyle: ruby19 Style/HashTransformKeys: Enabled: true Style/HashTransformValues: Enabled: true Style/IfWithBooleanLiteralBranches: Enabled: true Style/IfUnlessModifierOfIfUnless: Enabled: false Style/InfiniteLoop: Enabled: false # loop is measurably slower than while true Style/KeywordParametersOrder: Enabled: true Style/MethodCallWithArgsParentheses: Enabled: true EnforcedStyle: omit_parentheses Style/MethodDefParentheses: EnforcedStyle: require_no_parentheses Style/MultilineBlockChain: Enabled: false Style/MultilineIfModifier: Enabled: false Style/MultilineTernaryOperator: Enabled: false Style/MultipleComparison: Enabled: false Style/MutableConstant: Enabled: false Style/NegatedIfElseCondition: Enabled: true Style/NestedTernaryOperator: Enabled: false Style/NilLambda: Enabled: true Style/NumericPredicate: EnforcedStyle: comparison Style/OptionalBooleanParameter: Enabled: false Style/ParallelAssignment: Enabled: false Style/PercentLiteralDelimiters: PreferredDelimiters: default: "()" "%i": "()" "%r": "//" "%w": "()" "%W": "()" Style/PerlBackrefs: Enabled: false Style/RedundantArgument: Enabled: true Style/RedundantAssignment: Enabled: true Style/RedundantFetchBlock: Enabled: true Style/RedundantFileExtensionInRequire: Enabled: true Style/RedundantRegexpCharacterClass: Enabled: true Style/RedundantRegexpEscape: Enabled: true Style/RedundantSelfAssignment: Enabled: true Style/RegexpLiteral: Enabled: false Style/RescueModifier: Enabled: false Style/RescueStandardError: EnforcedStyle: implicit Style/SingleArgumentDig: Enabled: true Style/SlicingWithRange: Enabled: false Style/SoleNestedConditional: Enabled: false Style/SpecialGlobalVars: EnforcedStyle: use_perl_names Style/StringChars: Enabled: true Style/StringConcatenation: Enabled: false Style/SwapValues: Enabled: true Style/SymbolArray: EnforcedStyle: brackets Style/TernaryParentheses: Enabled: true EnforcedStyle: require_parentheses_when_complex Style/TrailingCommaInArrayLiteral: EnforcedStyleForMultiline: consistent_comma Style/TrailingCommaInHashLiteral: EnforcedStyleForMultiline: consistent_comma ruby-asciidoctor-pdf-1.6.2/.simplecov000066400000000000000000000001441416357056400175650ustar00rootroot00000000000000SimpleCov.start do add_filter %w(/.bundle/ /spec/) coverage_dir 'coverage/report-simplecov' end ruby-asciidoctor-pdf-1.6.2/.yardopts000066400000000000000000000003451416357056400174340ustar00rootroot00000000000000--charset UTF-8 --readme README.adoc --no-private --hide-api private --title "Asciidoctor PDF API Docs" --output-dir apidoc --exclude /(?:asciidoctor_ext|core_ext)(?:\.rb$|/) lib/**/*.rb - CHANGELOG.adoc LICENSE.adoc NOTICE.adoc ruby-asciidoctor-pdf-1.6.2/CHANGELOG.adoc000066400000000000000000001672631416357056400177220ustar00rootroot00000000000000= {project-name} Changelog :project-name: Asciidoctor PDF :uri-repo: https://github.com/asciidoctor/asciidoctor-pdf This document provides a high-level view of the changes to the {project-name} by release. For a detailed view of what has changed, refer to the {uri-repo}/commits/v1.6.x[commit history] on GitHub. == 1.6.2 (2021-12-31) - @mojavelinux Enhancements:: * show URL of link for any media type when show-link-uri is set (#951) * do not show URL of link when media type is screen or prepress when show-link-uri is unset (#951) Bug Fixes:: * update patches for `PDF::Core.real` and `PDF::Core.real_params` to prevent scientific notation ending up in PDF (#1983) (@rillbert) == 1.6.1 (2021-09-04) - @mojavelinux Enhancements:: * align footnotes block to the bottom of the page it is placed on (#1833) Bug Fixes:: * patch Prawn to preserve leading null character when running on Ruby 3; preserves inline anchors when text is split by page (#1963) == 1.6.0 (2021-05-10) - @mojavelinux Enhancements:: * allow path of ghostscript command to be controlled using `GS` env var (#1791) Bug Fixes:: * do not hyphenate a hyphen when hyphenation is enabled (#1562) Compliance:: * add support for Ruby 3 and drop support for Ruby < 2.5 and JRuby < 9.2 (#1681) * upgrade to Prawn 2.4.0 (adds support for Ruby 3) * upgrade to prawn-svg 0.32 (adds support for Ruby 3 without a patch and for loading embedded images from a data URI) * upgrade to prawn-icon 3.0.x * release lock on ttfunk version (1.6 produces slightly different output from 1.5 for certain missing glyphs) * drop support for Asciidoctor < 2 (#1552) Build / Infrastructure:: * run tests against pygments.rb 2.x in addition to pygments.rb 1.2.0 == 1.5.4 (2021-01-09) - @mojavelinux Bug Fixes:: * restore compatibility with Asciidoctor 2.0.12 when using Pygments (#1846) * fix numeric assertions in test suite (#1542) * keep caption with image when image is scaled down to fit page (#1803) * prevent inline image from rendering multiple times if fallback font is used for alt text (#1858) * disable cache tests if open-uri-cache gem is not available * disable hyphen tests if text-hyphen gem is not available * compensate for change in how character_spacing is applied in FontMetricCache#width_of after Prawn 2.2.2 * allow inline image to be enclosed in link macro (alt text was breaking parsing) * use oembed API over HTTPS to get thumbnail for Vimeo video * use conum font family defined in theme for conum in verbatim block (#1611) * patch float precision constant so prawn-table does not fail to arrange cells that span columns (#1835) * resolve images in theme correctly when theme is loaded from classloader (JRuby only) (#1829) Compliance:: * upgrade to prawn-svg 0.31 (adds support for loading embedded images from a data URI) (#1810) Build / Infrastructure:: * migrate Linux CI jobs to GitHub Actions == 1.5.3 (2020-02-28) - @mojavelinux Bug Fixes:: * do not hyphen a hyphen when hyphenation is enabled (#1562) * fix crash when applying text transform to heading cell in table body (#1575) * honor font style when looking for glyph in font * only suggest installing prawn-gmagick gem if not loaded (#1578) == 1.5.2 (2020-02-21) - @mojavelinux Bug Fixes:: * fix crash if btn or kbd macro is used in section title (#1563) * ensure background and admonition icon image files are closed after being read (#1566) * ensure temporary images generated by running content are cleaned up (#1566) == 1.5.1 (2020-02-16) - @mojavelinux Enhancements:: * allow theme to control font color of first line of abstract Bug Fixes:: * fix spacing after first line of indented paragraph (#1557) == 1.5.0 (2020-02-11) - @mojavelinux * support table with multiple head rows & decorate accordingly (#1539) * draw background and border around entire delimited block with wrapped text that appears inside an AsciiDoc table cell (#820) * fix crash when document has PDF cover page and SVG page background (#1546) * allow page mode to be fully configured using pdf-page-mode attribute or page_mode theme key (#840) * allow background image to be specified using a data URI * allow running content image to be specified using a data URI * support creating empty front or back cover by assigning empty value to front-cover-image or back-cover-image attribute * only warn once per missing character (#1545) * render pass block as listing block, using raw source as contents * prevent image placeholder from altering character spacing in inline SVG (#1550) == 1.5.0.rc.3 (2020-02-04) - @mojavelinux * reserve space for inline image correctly so it doesn't mangle the character spacing in the line when the image wraps (#1516) * allow custom theme to merge font catalog with theme being extended (#1505) * allow font path to be declared once for all font styles (#1507) * continue border, background, and column rule of admonition block on subsequent pages when block gets split (#1287) * allow max-width on caption be specified as a percentage (of the container width) (#1484) * add support for remote image in running content (if allow-uri-read attribute is set) (#1536) * add support for remote background images specified by theme (if allow-uri-read attribute is set) (#1536) * add support for remote title page logo image specified by theme (if allow-uri-read attribute is set) (#1536) * place dots on correct page when section title in TOC wraps across a page boundary (#1533) * add destination to top of imported PDF if ID is specified on image block * log reason if theme file cannot be parsed or compiled (#1491) * fix crash if background image in theme is not readable * bundle emoji font and use as fallback in default-with-fallback-font theme (#1129) * add dark theme for chronicles example * allow vertical-align key for header and footer categories to accept numeric offset as second value (e.g., [top, 10]) (#1488) * link font family for abstract and sidebar to heading font family if only latter is set * if path of missing font is absolute, don't suggest that it was not found in the fontsdir * allow use of style "regular" as alias for "normal" when defining font * emit warning in verbose mode if glyph cannot be found in fallback font (#1529) * don't crash if table is empty and emit warning (#607) * only emit warning when non-WINANSI character is used with AFM font if verbose mode is enabled * do not emit warning when non-WINANSI character is used with AFM font inside scratch document * do not emit log messages from scratch document * upgrade treetop to 1.6 * reenable tests on Windows (#1499) *@slonopotamus* == 1.5.0.rc.2 (2020-01-09) - @mojavelinux * patch Prawn to fix incompatibilty with Ruby 2.7 (to fix text wrapping) * fix crash when assigning font style to header cell in table body (#1468) * fix parsing of array value of pdf-page-margin attribute (#1475) * fix warning when reading data from a remote URL when running with Ruby 2.7 (#1477) * pass SVG warnings to logger (#1479) * compress streams if the compress attribute is set on the document (#1471) * don't set heading-font-family in default theme so it inherits from base == 1.5.0.rc.1 (2020-01-06) - @mojavelinux * support data URI for SVG image (#1423) * account for border offset in width of fragment (#1264) * ignore case when sorting index terms (#1405) * partition section title (title and subtitle) if `title-separator` document attribute or `separator` block attribute is set (#623) * allow page numbering to start after first page of body by assigning an integer to the page_numbering_start_at theme key (#560) * allow running content to start after first page of body by assigning an integer to the running_content_start_at theme key (#1455) * allow output file to be written to stdout (#1411) * implement line highlighting for source blocks when using Rouge as source highlighter (#681) * implement line highlighting for source blocks when using Pygments as source highlighter (#1444) * indent wrapped lines in source block beyond linenum gutter (#504) * don't mangle source block if linenums are enabled and language is not set * don't print line number if source block is empty * don't apply recto margin to title page if cover is absent unless value of front-cover-image attribute is `~` (#793) * expose theme as property on converter * add support for unbreakable option on open blocks (#1407) *@mogztter* * don't add mailto: prefix to revealed mailto URI when hide-uri-scheme is set (#920) * allow theme to set base text decoration width (#1414) * allow theme to set font-kerning per category (#1431) * allow theme to specify background image for running content (#356) * allow theme to specify border for admonition block (#444) * allow theme to specify background color for admonition block (#444) * allow theme to specify background color and full border for quote and verse blocks (#1309) * allow text alignment roles to be used to control alignment of discrete heading * allow theme to configure image caption align(ment) to inherit from image align(ment) (#1459) * allow theme to confine width of image caption to width of image (#1291) * don't apply border to block if border width is not set (or nil) * use font color from pygments style for unhighlighted text (#1441) * render stem block as raw literal block * render stem phrase as monospaced text * honor percentage unit on width attribute value on image (#1402) * fix crash when capitalizing text that does not contain markup * allow custom inline role to control text transform (#1379) * convert link macro enclosed in smart quotes * allow inline image to be fit within line using fit=line (#711) * fix fit=cover for background image when aspect ratio of image is taller than page (#1430) * compute and apply line metrics for cells in table head row (#1436) * compute and apply line metrics correctly for cells in table body and foot rows (#1436) * allow section to override toclevels for self and children using toclevels attribute on section (#734) * allocate space for pagenum in toc consistently (#1434) * fall back to default theme instead of crashing if specified theme cannot be resolved * allow font color to be set on nested span in passthrough content * move width and align attributes from font tag to width and align style properties on span tag * compute table cell padding correctly when specified as a 4 element array * preserve isolated callout on final line of source block * fix missing require in asciidoctor-pdf-optimize script (#1467) * lock version of ttfunk to 1.5.x == 1.5.0.beta.8 (2019-11-23) - @mojavelinux * automatically hyphenate prose using the text-hyphen gem if the `hyphens` document attribute is set (#20) * set hyphenation language using the `hyphens` attribute value, falling back to the `lang` attribute (#20) * add support for capitalize text transform (#1382) * fix AsciiDoc table cell from overflowing bounds of table and creating extra page (#1369) * don't double escape XML special characters in literal table cell (#1370) * allow theme to customize the width and color of text decoration (underline and line-through) (#812) * use same line height throughout abstract * don't mangle XML attribute values when applying lowercase text transform (#1391) * place toc at same position in outline as it is in the document (#1361) * log warning with error message if remote image cannot be retrieved * allow initial page mode to be set to fullscreen using pdf-page-mode=fullscreen attribute or page_mode=fullscreen theme key (#1357) * allow theme to configure content of entries in authors line on title page (#800) * allow theme to override styles of caption on admonition blocks (#561) * allow theme to configure hanging indent for titles in toc (#1153) * apply hanging indent to wrapped entries in index (#645) * allow theme to configure text decoration of headings (#811) * define line-through and underline roles as built-in custom roles so they can be customized (#1393) * allow top value of logo and title on title page to be specified in any measurement unit * don't set a top value for the logo on the title page if not set in theme * if value of scripts attribute is cjk, break lines between any two CJK characters except punctuation in table cells (#1359) (*gasol*) * ignore invalid cellbgcolor value (#1396) * recommend installing prawn-gmagick gem if image format is unsupported * set cache_images option on SVG interface if cache-uri attribute is set on document (#223) * upgrade prawn-svg to fix display of links in plantuml diagrams (#1105) * allow icon set to be specified as prefix on target of icon macro (#1365) * write Unix epoch dates to pdfmark file in UTC when reproducible is set * don't include software versions in PDF info if reproducible attribute is set * fix optimizer so it applies pdfmark after reading input file * allow converter instance to be reused == 1.5.0.beta.7 (2019-10-29) - @mojavelinux * fix value of implicit page-count attribute when page numbering and running content don't start on same page (#1334) * fix value of implicit chapter-title attribute on preface pages (#1340) * show value of untitled-label attribute in outline if doctitle is not set (#1348) * don't show entry for doctitle in outline if doctitle is not set and untitled-label attribute is unset (#1348) * generate outline if document has doctitle but no body (#1349) * allow elements on title page to be disabled from theme using display: none (#1346) * set chapter-title attribute to value of toc-title attribute on toc pages in book (#1338) * set section-title attribute to value of toc-title attribute on toc pages in article if page has no other sections (#1338) * allow ranges of pages from PDF file to be imported using image macro as specified by pages attribute (#1300) * set default footer content in base theme; remove logic to process `footer__content: none` key (#1320) * include doctitle in outline for article when article is only a single page (#1322) * allow custom (inline) role to control text decoration property (#1326) * point doctitle entry in outline to first page of content when doctype is article and document has front cover * fix asciidoctor-pdf-optimize script and register it as a bin script * rename `-q` CLI option of asciidoctor-pdf-optimize script to `--quality` * only promote first paragraph of preamble to lead paragraph (assuming it has no role) (#1332) * don't promote first paragraph of preamble to lead paragraph if it already has a role (#1332) * fix crash when document has no doctitle or sections and untitled-label attribute is unset * ignore invalid align value for title logo image (#1352) == 1.5.0.beta.6 (2019-10-11) - @mojavelinux * reorganize source files under asciidoctor/pdf folder (instead of asciidoctor-pdf) * reorganize monkeypatch files under asciidoctor/pdf/ext * allow toc to be positioned using toc macro (#1030) * extend dots leading up to page number from wrapped line in toc (#1152) * set fit=contain by default on cover and page background images (#1275) * implement fit=fill for cover, page background, and running content raster (non-SVG) images (#1276) * allow foreground image (e.g., watermark) to be added to each page using page-foreground-image attribute or theme key (#727) * allow section body to be indented using section_indent key in theme (#737) * add glyphs for built-in characters to bundled monospace font (M+ 1mn) (#1274) * look for "noborder" role on image even if other roles are defined * remove deprecated table_odd_row_background_color and table_even_row_background_color keys from theme * implement unordered and ordered description lists (#1280) * recognize transparent as valid value for cellbgcolor attribute * allow custom role to revert font style to normal (#1286) * allow theme to control font properties (font size, font color, etc) of description list term (#1289) * allow theme to override caption styles for specific block categories: blockquote, code, example, footnotes, image, listing, and table (#307) * allow theme to control style of verse block independently of a quote block (#40) * position list marker correctly when media=prepress and list item is advanced to next page or split across pages (#1303) * layout horizontal dlist in two columns (#310) * apply normal substitutions to content of manname section (#1294) * optimize PDF using quality specified in value of optimize attribute if optimize attribute is set (#535) * allow xref macro to override xrefstyle set on document * assume admonition icon in theme is a legacy FontAwesome icon if the icon set prefix is absent * rewrite optimize-pdf as a bin script named asciidoctor-pdf-optimize * allow image alt text formatting and arrangement to be controlled by theme (#730) * upgrade prawn-icon to 2.5.0 (which upgrades Font Awesome to 5.11.2) == 1.5.0.beta.5 (2019-09-13) - @mojavelinux * pass styles for inline elements downwards when parsing, allowing role to override default styles for element (#1219) * document title in outline should point to second page if document has cover page (#1268) * start at setting for running content and page numbering must account for disabled title page (book doctype) (#1263) * start at setting for running content and page numbering must account for front cover (#1266) * preserve indentation that uses tabs in verbatim blocks when tabsize is not set (#1258) * use consistent line height for list items and toc entries if text is entirely monospace (#1204) * fix spacing between items in qanda list * expand home directory reference in theme name when value ends with .yml and no themedir is specified == 1.5.0.beta.4 (2019-09-04) - @mojavelinux * always use ; as delimiter to separate multiple font dirs to be compatible with JAR paths (#1250) * preserve hyphens in role names in theme file (#1254) * allow second arg of outlinelevels attribute to control expand depth of outline (#1224) * allow font catalog and font fallbacks to be defined as flat keys in the theme file (#1243) * don't crash when adding indentation guards to source highlighted with Pygments (#1246) * don't override font color of formatted text in toc (#1247) * prevent toc from overrunning first page of content by reserving more space for the page number (#1242) * allow number of digits reserved for page number in the toc to be adjusted using toc-max-pagenum-digits attribute (#1242) == 1.5.0.beta.3 (2019-08-30) - @mojavelinux * allow multiple font dirs to be specified using the pdf-fontsdir attribute (#80) * fill and stroke bounds of example across all pages (#362) * allow page background color and background image to be used simultaneously (#1186) * allow theme to specifiy initial zoom (#305) * strip surrounding whitespace from text in normal table cells * allow attribute references to be used in image paths in theme (#588) * resolve variables in font catalog in theme file * honor the cellbgcolor attribute defined in a table cell to set the cell background color (#234) (*mch*) * add the .notdef glyph to the bundled fonts (a box which is used as the default glyph if the font is missing a character) (#1194) * don't drop headings if base font family is not set in theme * don't crash if heading margins are not set in theme * don't rely on base_line_height_length theme key in converter (should be internal to theme) * set fallback value for base (root) font size * reduce min font size in base theme * allow theme to configure the minimum height required after a section title for it to stay on same page (#1210) * convert hyphen to underscore in theme key for admonition icon type (#1217) * always resolve images in running content relative to themesdir (instead of document) (#1183) * fix placement of toc in article when doctitle is not set (#1240) * honor text alignment role on abstract paragraph(s) * don't insert blank page at start of document if media=prepress and document does not have a cover (#1181) * insert blank page after cover if media=prepress (#1181) * add support for stretch role on table (as preferred alias for spread) (#1225) * include revremark on title page if specified (#1198) * allow theme to configure border around block image (#767) * align first block of list item with marker if primary text is blank (#1196) * apply correct margin to list item if primary text is blank (#1196) * allow page break before and after part and before chapter to be configured by theme (#74) * allow page number of PDF to import to be specified using `page` attribute on image macro (#1202) * use value of theme key heading-margin-page-top as top margin for heading if cursor is at top of page (#576) * resolve icon image relative to docdir instead of current working directory * allow theme to style mark element; add default styles to built-in themes (#1226) * if value of scripts attribute is cjk, break lines between any two CJK characters (except punctuation) (#1206) * add support for role to font-based icon (to change font color) (#349) * use fallback size for admonition icon * allow attribute reference in running content to be escaped using a backslash * allow theme to configure text background and border on a phrase with a custom role (#1223) * fix crash if source-highlighter attribute is defined outside the header (#1231) * fix crash when aligning line numbers of source highlighted with Pygments (#1233) == 1.5.0.beta.2 (2019-07-30) - @mojavelinux * only apply title page background image to the title page (#1144) * make sure title page background or color (and only title page background or color) gets applied to title page even when page has already been created (#1144) * fix crash when image_width is defined in theme (#995) * fix crash when toc is enabled and toc-title attribute is unset * correctly map legacy Font Awesome icon names when icon set is not specified (#1157) * coerce color values in theme that contain uppercase letters (#1149) * prevent table alignment from modifying margins of subsequent pages; only align table if width is less than bounds (#1170) * ensure base font color is set * use more robust mechanism to detect an empty page; tare content stream after adding page background color or image * ignore pdf-themesdir unless pdf-theme is specified (#1167) * allow theme to control glyphs used for conums (#133) * allow theme to control background and border of inline kbd (#313, #1004) * add support for link on image in running content (#1002) * allow theme to disable font kerning * add support for default theme alignment for tables (#1164) * add theming support to (inline) roles on phrases (#368) * allow theme to customize style of titles in running content (#1044) * add support for the built-in big and small roles on phrases (#459) * route AFM font warning through Asciidoctor logger * upgrade code font (M+ 1mn) to TESTFLIGHT-63a * include all alphanumeric characters in code font (mplus1mn) (#282) * report clearer error message when theme can't be found or loaded * document how to prepare a TTF font to work best with Asciidoctor PDF (#297) == 1.5.0.beta.1 (2019-07-08) - @mojavelinux * rename pdf-style and pdf-stylesdir attributes to pdf-theme and pdf-themesdir, respectively (while still honoring the old names for compatibility) (#1127) * don't load fallback font by default; move fallback font to default-with-fallback-font theme * apply cell padding to table cells in the head row (#1098) * allow the theme to control the padding of table cells in the head row using the table_head_cell_padding key (#1098) * fix position of table caption for reduced-width tables when caption align is center (#1138) * adjust width of table caption to match width of table unless table_caption_max_width is none in theme (#1138) * fix position of text in running header (#1087) * ignore start attribute on ordered list if marker is disabled * allow start value to be negative for ordered lists that use arabic or roman numbering (#498) * don't convert values in theme which are not color keys to a string (#1089) * apply page layout specified on page break even when break falls page boundary (#1091) * scale SVG background image to fit page in the same way raster image is scaled (#765) * allow page background size to be controlled using image macro attributes (#1117) * allow page background image position to be controlled using position attribute on image macro (#1124) * add support for fit=cover for cover, page background, and running content images (#1136) * change default background image position to center (#1124) * allow cover image position to be controlled using position attribute on image macro (#1134) * change default cover image position to center (#1134) * allow cover image size to be controlled using fit, pdfwidth, and width attributes; don't scale image by default (#1134) * set enable_file_requests_with_root and enable_web_requests options for all SVGs (#683) * automatically set pdf-stylesdir if pdf-style ends with .yml and pdf-stylesdir is not specified (#1126) * replace hyphens with underscores in top-level theme keys * allow hyphens to be used in variable references in theme (#1122) * allow theme to control background and border of inline code (literal) (#306) * allow theme to control background and border of inline button (#451) * resolve null color value in theme to nil (aka not set) * add support for cgi-style options on source language when syntax highlighting with Rouge (#1102) * apply custom theme to chronicles example to customize running content and demonstrate how to extend default theme * drop remapping of legacy running content keys in theme data * resize running content to fit page layout (#1036) * exclude border width from running content area (#1109) * support text-transform property in running content (#702) * make depth of section titles assigned to section-title attribute in running content configurable (#1141) * support width attribute on image in running content if no other dimension attribute is specified * apply correct scale-down logic to image in running content * allow image format to be specified using format attribute (cover page image, page background image, running content image) (#1132) * allow theme to set bottom border properties (color, style, and width) of table head row (#770) * allow column rule and spacing to be specified for running content when multiple columns are specified (#1093) * never load base theme when loading default theme; otherwise load base theme if extends isn't specified, but only if theme data hasn't been initialized * shorten text-alignment attribute to text-align * set PDF version to 1.4 by default (#302) * allow PDF version to be set using pdf-version document attribute (#302) == 1.5.0.alpha.18 (2019-06-01) - @mojavelinux * restore compatibility with Asciidoctor back to 1.5.3 and add verification to test matrix (#1038) * allow one theme to extend another theme using the top-level `extends` key (#367) * allow theme to set text indent for paragraphs using prose_text_indent (#191) * allow theme to set spacing between adjacent paragraphs using prose_margin_inner (#191) * show parts in toc when toclevels=0 (#783) * add support for autonumbered callouts in source blocks (#1076) * fix duplication of footnotes in keep together regions (#1047) * display standalone preamble in book normally (#1051) * allow outline depth to be set using outlinelevels attribute independent of toclevels (#1054) * fix compounding cell padding (#1053) * add support for qanda list (#1013) * fix parsing of bibref and link inside footnote text (#1061) * restore square brackets around ID of bibliography entry with custom ID (#1065) * add page_numbering_start_at key to theme to control start page for page numbering (#1041) * don't allow running_content_start_at key to affect page numbering (#1041) * substitute \{chapter-title} property on front matter pages (replace with doctitle and toc-title, respectively, when running content starts before first page of body) (#1040) * allow side margins to be set on elements on title page (#824) * don't promote preamble to preface if preface-title attribute is empty * expand padding value for running content (header and footer) to array * add support for unnumbered (and no-bullet) style on ordered list (#1073) * add visual regression capability to test suite (@beatchristen) * ensure index section doesn't get numbered when using Asciidoctor < 1.5.7 * add part signifier and part number to part title if partnums is set; allow signifier to be customized using part-signifier attribute (#597) * add support for the chapter-signifier attribute as the prefered alternative to chapter-label * warn if the image referenced in the running content cannot be found (#731) == 1.5.0.alpha.17 (2019-04-23) - @mojavelinux * drop support for Ruby < 2.3 (and installation will fail for Ruby < 2.1) * add asciidoctor/pdf and asciidoctor/pdf/version require aliases (#262) * rename module to Asciidoctor::PDF and define Asciidoctor::Pdf alias for backwards compatibility (#262) * switch to tilde dependency versions (flexible patch number) instead of ranges * upgrade prawn-svg to 0.29.1; resolves numerous SVG rendering issues (#886, #430) * drop support for Rouge < 2 * add a test suite (#37) * allow running content (header and footer) to be enabled on title and toc pages; controlled by running_content_start_at property in theme (#606) * add support for nbsp named entity (i.e., `+ `); replace occurances of nbsp named entity with a single space in outline * upgrade to FontAwesome 5; introduce the fas, far, and fab icon sets, now preferred over fa; drop support for octicons (#891) (@jessedoyle) * place footnotes at end of chapters in books or end of document otherwise (#85) (@bcourtine) * fix rendering of footnotes directly adjacent to text in a normal table cell (#927) * place toc directly after document title when doctype is not book (#233) (@ogmios-voice) * add page layout control to page break (#490) (@resort-diaper) * allow additional style properties to be set per heading level (#176) (@billybooth) * add support for hexadecimal character references, including in link href (#486) * force set data-uri attribute on document so Asciidoctor Diagram returns absolute image paths (#1033) * set line spacing for non-AsciiDoc table cells (#296) * consider all scripts when looking for leading alpha characters in index (#853) * don't create title page for article doctype unless title-page attribute is set (#105) * don't show article title if notitle attribute is set (#998) * generate name section for manpage doctype automatically (#882) * remove unprocessed passthroughs in literal cells * apply font style from theme to formatted text description list term (#854) * prevent tempfile for remote image from being deleted before it's used (#947) * handle case when uri to make breakable is empty (#936) * add support for frame=ends as alternative to frame=topbot on table * allow table frame and grid to be set globally using the table-frame and table-grid attributes (#822) * disable table stripes by default (#1049) * allow table stripes to be enabled globally using table-stripes attribute (#1049) * use new logging subsystem, if available; otherwise, use shim (#905) * allow alignment of list text to be controlled using roles (#182) * allow text alignment to be set for abstract (#893) * prevent text from overlapping page number in TOC (#839) * allow ulist marker to be controlled by theme (#798) * add support for reftext for bibliography entry (#864) * add support for fw (full-width) icons (#890) * decouple vw units with alignment (#948) * add align-to-page option for block images (#948) * add support for SVG admonition icons (#828) (@keith-packard) * rename pastie theme for Rouge to asciidoctor_pdf_default * add bw theme for Rouge (#1018) * reset top margin of index columns when overflowing to new page (#929) * add support for line numbers in source listings (#224) * add U+2060 (word joiner) character to built-in Noto Serif font and fallback font (#877) * add U+202F (narrow no-break space) character to fallback font (#807) * ensure callout number ends up on same page as item text (#914) * guard against pygments returning nil (#884) * encode quotes in alt text of inline image (#977) * fix crash when menu macro is used in a section or block title (#934) * remove duplicate message when syntax highlighter is unavailable; don't crash processor (#1078) * only look for the start attribute on the code block itself when highlighting with rouge * apply block styling to background for line-oriented tokens in rouge by default * detect pagenum ranges in index when media is print or prepress (#906) * ignore style when resolving icon font (#956, #874) * remove correct width method when overloading Prawn::Text::Formatted::Fragment * remove ZWSP from alt text of image to prevent fragment from being duplicated (#958) * avoid call to super in prepended module to fix Ruby 1.9.3 * look for correct file to require in bin script * upgrade prawn-icon from 1.3.0 to 1.4.0 * upgrade rouge to 2.2.1 * add concurrent-ruby to runtime dependencies for compatiblity w/ Asciidoctor 1.5.8 == 1.5.0.alpha.16 (2017-07-30) - @mojavelinux * add support for xrefstyle attribute (#464) * allow page side to be based on physical page number and/or be inverted (#813) (@fap-) * fix layout error caused by nested keep together blocks (#791) * upgrade prawn-svg to allow generic font names to be mapped in SVG (#777) * upgrade prawn-svg to fix issue with dotted lines (#741) * upgrade prawn-svg to enable linear gradients (#228) * don't attempt to parse text in literal cell (#816) * warn if theme variable cannot be resolved; don't replace (#801) * number appendix subsections based on appendix number when doctype is book (#627) * don't add break hints to URI when using AFM font (#795) * add rescue check for scratch document when state is not initialized * allow page margin to be a single number; fixes regression introduced by #749 * check for margin as array, then as numeric, then as string * extend version range for prawn-templates (#803) * add missing part-title attribute to theming guide (#827) * clarify in theming guide that variables are defined in document order * clarify that the fallback font is only used when the primary font is a TrueType font * add more information about prawn-gmagick to README * fix warnings and incompatibility when using Ruby 1.9.3 * document in README how to install Asciidoctor PDF on Ruby 2.0.0 * enable Travis CI; configure CI-based deployment to RubyGems.org {uri-repo}/issues?q=milestone%3Av1.5.0.alpha.16[issues resolved] | {uri-repo}/releases/tag/v1.5.0.alpha.16[git tag] == 1.5.0.alpha.15 (2017-03-27) - @mojavelinux * fix compatibility with Prawn 2.2.0 (#775) * add workaround for TTFunk bug when font table has empty data (#619, #651) * take fallback font into account when calculating width of string (#651) * fill and stroke bounds of sidebar across all pages (#259) (@TobiasHector) * allow page margin to be set using pdf-page-margin attribute (#749) * implement none, no-bullet and unstyled unordered list styles * add dots to all levels in TOC if toc_dot_leader_levels is all * use bold style for description list term by default (#776) * always escape index term text (#761) * don't crash if color value on text span is invalid * implement start line number for source listing (Rouge) (#752) * enable "start inline" option when highlighting PHP (#755) * persuade CodeRay to handle html+ source languages * introduce stripes attribute to table to control zebra striping (#724) * use theme key table_body_stripe_background_color to control color of table stripes (#724) * allow theme to set style of table border and grid (#766) * allow theme to set text transform on header cell in table body (#750) * set top border width of first body row to match bottom border width of header row * don't add TOC if empty (#747) * optimize code that generates outline level * don't recalculate header_cell_data for each row * use slightly more efficient way to find Pygments lexer * upgrade rouge to 2.0.7 * upgrade prawn-templates to 0.0.5 * revise information in theming guide pertaining to custom fonts * document in README how to get full support for CJK languages * document in theming guide that Asciidoctor PDF subsets font when embedding * document that background images are scaled to fit bounds of page * add note in theming guide about using double quoted strings {uri-repo}/issues?q=milestone%3Av1.5.0.alpha.15[issues resolved] | {uri-repo}/releases/tag/v1.5.0.alpha.15[git tag] == 1.5.0.alpha.14 (2017-02-05) - @mojavelinux * add support for AsciiDoc table cells (including nested tables) (#6) * patch text cell to remove cursor advancement * make header cell in body inherit styles from table head (#239) * don't crash if table is empty and cols are explicitly set (#610) * fix vertical centering for cells in table head row * implement converter for index (#386) * record page number for index term when writing anchor (#639) * support the underline and line-through roles on phrases (#339) * allow printed URI to break at break opportunities (#563) * don't drop subsequent images after inline image fails to load * don't crash if inline image is an unsupported format; issue warning instead (#587) * show alt text when image fails to embed (#693) * always show block image caption even if image fails to embed * delegate to method to handle missing image * permit use of GIF image format if prawn-gmagick is available (#573) * add support for image macros that have a data URI target (#318) * don't crash if format of image in running content is unrecognized * only fit image within bounds of running content if contain option is set * document fit attribute for image in running content * fix alignment for SVG image in running content * keep block image with caption (#690) * place destination for block image on same page as image * set color space when block image occurs on page by itself (#688) * resize SVG to fit page (#691) * backport resize method from prawn-svg and use it * disable system font scan in Prawn SVG * use character spacing to fine-tune width of placeholder for inline image (#686) * fix duplicate inline image rendering (@fap-) (#388) * constrain inline image to width of bounds * add support for pdfwidth to inline images (@fap-) (#620) * honor pdfwidth attribute for image in running content (#625) * add support for absolute measurement units to scaledwidth attribute (#674) * resize inline SVG without an explicit width (#684) * resize inline image to fit within content height (#700) * calculate height of inline image correctly in table cell (#295) * fix bug in calculation when image overflows page (#708) * simplify calculation of rendered width and height of images * add square brackets around alt text for inline image * don't surround alt text of block image with non-breaking spaces * specify width & height when embedding (inline) raster image to avoid recalc * resize title logo image to keep on page (#714) * don't leave blank page when importing PDF page (#614) * fix running content dimensions (#616) * introduce document attribute to control default text alignment (#396) * allow setting a default columns spec for running content on both recto and verso pages; set if not defined * show example of center column alignment in default theme * map dynamic section-title attribute in running content to current section if page has no section (#709) * assign dynamic part-title attribute for use in running content (#596) * don't set dynamic chapter-title attribute in running content for preface unless doctype is book * clear section and chapter title in running content when part changes (#910, #879) * clear section title in running content when chapter changes (#910) * assign page number label to each page (#641) * don't set dynamic page-number attribute in running content of pagenums is disabled * allow toc title properties to be controlled by theme (#701) * use correct number of dots when font style is applied to toc level (#621) * allow theme to control which toc levels have dot leaders; default to 2-3 (#631) * set font color of page number for parts in toc * don't crash when toc dot leader is empty string * list preface with title in table of contents (#732) * allow theme to apply text decoration to link text (#567) * allow page layout to be controlled from document (#565) * don't crash if image in running content fails to embed (#728) * treat abstract section as abstract block (#703) * set example block background to white by default * automatically wire unspecified code and conum font family to literal font family * add support for background colors when highlighting code with Rouge * add support underline style for token in Rouge theme (#665) * drop background colors on strings in rouge pastie theme * add support for image-based icons (#479) (@JBR69) * preliminary support for vertical alignment of admonition icon/label * allow side padding on admonition label to be controlled separately from admonition content * add more control over vertical rule in admonition block (#601) * allow theme to control font properties for admonition content (#592) * only add lead role to first paragraph of preamble (#654) * display poster image for video with link to video URI (#287) * add link to audio file (#475) * don't drop anchor within text that overruns page (#638) * display title for abstract (#582) * display title for open block (#577) * display block title on quote and verse blocks (#416) * don't draw border for quote/verse block on empty page or if border width is 0 * allow delimiter between author names on title page to be configured in theme * coerce resolved value of content key in theme to String (#653) * honor background color from Pygments theme * set default inner/outer margins in base theme * document missing glyph encoding warning in theming guide; minor rewording * document how to configure fonts in SVG images (#739) * document how to use Asciidoctor Mathematical to enable STEM support (#45) * transform text containing multibyte characters (#363) * document in theming guide how to transform unicode letters with Ruby < 2.4 * show unmodified text if text_transform is none (#584) * make performance optimization to formatted text transform * use reference_bounds instead of @margin_box to move past bottom * handle negative bottom padding properly at page boundary * use value of docdatetime & localdatetime attributes in PDF info (#590) * use truncate_to_precision instead of round to truncate floats; map to native method in Ruby >= 2.4 * upgrade prawn-svg dependency to 0.26.x * upgrade prawn-icon to 1.3.0 * document in the README how to use the autofit option on verbatim blocks * clarify in README how inline image are sized * clarify instructions in README about how to specify a page number range for printing * document in theming guide how to define and apply a custom Rouge theme * rename pdfmarks to pdfmarks; document pdfmark attribute in theming guide * describe the quoted string value type in the theming guide * add self-referencing anchor to each key prefix in theming guide * document nonfacing option for sections (@jnerlich) * fix documentation for toc_dot_leader_font_color in theming guide (@davidgamba) * document that dot leader inherits font properties from toc category * fill in missing defaults for keys in theming guide * rewrite intro to Keys section in theming guide * add keys for prose, menu, and conum categories to theming guide * document outline_list_marker_font_color key in theming guide * refactor measurement value helpers into module (#677) * add reproducible flag to examples * add inline ref and corresponding xref to chronicles example * fix Ruby warnings * update instructions and Gemfile config to use with Ruby 1.9.3 * configure build as the default rake task {uri-repo}/issues?q=milestone%3Av1.5.0.alpha.14[issues resolved] | {uri-repo}/releases/tag/v1.5.0.alpha.14[git tag] == 1.5.0.alpha.13 (2016-09-19) - @mojavelinux * Add support for mirror (recto/verso) margins and facing pages when media=prepress * Add non-breaking hyphen glyph to built-in fonts so its intended behavior is honored (#462) * Add page break before a book part (#329) * Allow running (header/footer) content to be arranged in columns (#449) * Allow font properties to be set per element in running content (#454) * Prevent the SVG from modifying the document font (#494) * Implement decorative border for multipage quote and verse blocks (#270, #557, #558) * Encode anchors in hex that contain characters outside of ASCII range (#481, #301) * Size the line number gutter correctly (accounting for width of largest line number) (#402) * Allow theme to specify default value for pdfwidth attribute on image and document in README (#455) * Fix front matter page numbering by adding page labels for all front matter pages in outline (#458) * Allow image type to be specified explicitly using format attribute on image macro (#540) * Add support for literal and verse table cell styles * Preserve indentation in literal and verse table cells * Preserve paragraph breaks in normal table cells * Honor value of width attribute even when autowidth option is set on table (#519) * Align table title to left edge of table, regardless of table alignment (#469) * Add support for reversed option on ordered list (#491) * Don't drop whitespace in front of conum on final line of source block (#470) * Add more control over position of elements on title page, including support for vw units (#418) * Allow table caption position/side to be controlled by theme (#531) * Use base_align setting from theme as default alignment for headings * Resolve bare image-related attribute values relative to base_dir * Only allow Prawn SVG to fetch remote images if the allow-uri-read attribute is set (#548) * Introduce page_margin_inner and page_margin_outer keys to theme * Start title page, toc, main content, parts, and chapters on recto page when media=prepress and doctype=book * Allow default font style for table to be set via theme (table_font_style) * Use correct default bullet per nested unordered list level (#529) * Call start_new_part at start of each book part * Delegate to layout_part_title method to layout part title * Don't match a special section as a chapter unless the doctype is book * Fix list marker placement when list item touches bottom of page * Eliminate excessive spacing between list items that contain nested lists * Drop lines in running (header/footer) content with unresolved attributes (#522) * Ensure start_new_chapter is always executed at a chapter transition (#524) * Add support for root xref (e.g., <<included-doc#>>) (#521) * Prevent block from spilling to next page if there's no more content (#361) * Add support for px units to pdf-page-size attribute * Fix parsing error when value of pdf-page-size attribute is unitless * Don't crash if table is empty (#480) * Don't crash when deleting last remaining page; don't delete last page if empty (#317) * Don't orphan space between conums when extracting from verbatim block (#506) * Properly scope attr and attr? lookups * Rename internal page_start and page_end attributes to pdf-page-start and pdf-page-end, respectively * Fix settings for table header cell * Fix padding around content of quote block in default theme * Read theme file with UTF-8 encoding (#533) * Allow temporary image file to be deleted on Windows (#425) * Don't crash if theme file is empty (#551) * Don't crash if cover image can't be read; warn instead * Clarify in theming guide how to write numbers with 3 or more digits (#555) * Document how inline images are sized * Document how to disable default footer from theme * Update explanation of WINANSI encoding behavior in theming guide * Restore support for Ruby 1.9.3 (#528) * Upgrade prawn-icon to 1.2.0 (which upgrades Font Awesome to 4.6.3) * Upgrade prawn-svg to 0.25.2 (by way of more lenient version range) * Fix Ruby warnings * Document in README how image paths are resolved * Configure README for better preview on GitHub * Update chronicles example to modern AsciiDoc syntax; update content {uri-repo}/issues?q=milestone%3Av1.5.0.alpha.13[issues resolved] | {uri-repo}/releases/tag/v1.5.0.alpha.13[git tag] == 1.5.0.alpha.12 (2016-08-05) - @mojavelinux * Fix incompatibility with Rouge 2 source highlighter (#471) * Declare rouge gem in Gemfile for use with examples * Add option to make URLs visible in printed PDF using show-link-uri or media=print attributes (#435, #463) * Document options for scaling an image (#453) * Add support for images to span width of page (#424) * Fix embedding of remote images; fix case when imagesdir is a URI (#467) * Collapse non-significant whitespace (#465) * Document how to inherit font size for a given heading level (#460) * Decode character references in link URIs (#448) * Use arrow as caret for menu path instead of pipe (#441) * Document theme-related AsciiDoc attributes in theming guide (#428) * Section title alignment should be customizable via theme (#343) * Collapse all whitespace when normalizing (#355) * Require space on either side of math operator to avoid interpretting dates as math equations (#429) * Allow specifying a font style for a title on the title page (#423) * Fix Prawn SVG to support arrow heads on lines (#75) * Upgrade prawn-svg to 0.25.1 * Upgrade prawn-icon to 1.1.0 * Fix rendering of two images in header or footer (#421) * Allow table grid color and width to be controlled by theme (@ntfc) * Fix undefined local variable or method `dest_y' when adding auto-generated anchor to section (#419) * SVG files that include image elements are not rendered correctly improvement (@AlexanderZobkov) (#414) * Fix Prawn SVG to support currentColor keyword (#407) * Parser should recognize up to 6 digit character references (#404) * Properly convert a negative measurement value in theme * Coerce percentage value to float instead of integer in theme * Set minimum required Ruby version to 1.9.3 instead of 1.9 * Use title capitalization for section titles in theming guide * Update and reorganize keys in theming guide; document numerous keys previous missing * Add hints to theming guide about how to apply styles when using Maven or Gradle (@fwilhe) * Fix gemspec to collect files when project is not a git repository or git is not available {uri-repo}/issues?q=milestone%3Av1.5.0.alpha.12[issues resolved] | {uri-repo}/releases/tag/v1.5.0.alpha.12[git tag] == 1.5.0.alpha.11 (2016-01-05) - @mojavelinux * Allow font style for first line of abstract to be controlled by theme (@nawroth) (#378) * Add option to make builds reproducible (@bk2204) (#338) * Set default page size to A4 (@stephenhay) (#319) * Preprocess all hex color values (#381) * Add note about preprocessing hex color values to theming guide (#381) * Honor base font style (#373) * Don't fail to delete tmp file (#369) * Lazy load icon fonts if detected (#364) * Reduce heading line height in default theme (#351) * Set default (fallback) SVG font from theme (#210) * Expand last column to fit width of table (#372) * Don't cache resolved imagesdir attribute value * Use fallback when merging icon data * Defer to built-in caching in prawn-icon * Document replacements and numeric character refs in header/footer content * Document base_font_size_min setting in theming guide * Document that page background colors & images do not currently work in AsciidoctorJ PDF * Use failproof relative require logic in bin script {uri-repo}/issues?q=milestone%3Av1.5.0.alpha.11[issues resolved] | {uri-repo}/releases/tag/v1.5.0.alpha.11[git tag] == 1.5.0.alpha.10 (2015-11-01) - @mojavelinux * Allow admonition icon to be customized by theme (#121) (@jessedoyle) * Update to prawn-icon 1.0.0 (#335) (@jessedoyle) * Only generate the pdfmarks file if the pdfmarks attribute is set * Honor table alignment (via align attribute or role) (#299) * Use Hash for ViewerPreferences; set initial magnification (#303) * Handle case when colpcwidth is unspecified (#314) * Show title for lists (olist, ulist, dlist) (#316) * Don't attempt to add running content if document has no content pages * Correctly calculate toc page range (#322) * Don't insert blank page after back cover (#328) * Document theme key that sets sidebar padding (#344) * Handle case when CodeRay passes nil text to text_token {uri-repo}/issues?q=milestone%3Av1.5.0.alpha.10[issues resolved] | {uri-repo}/releases/tag/v1.5.0.alpha.10[git tag] == 1.5.0.alpha.9 (2015-08-02) - @mojavelinux * Apply point conversion to image widths (#221) * Restore missing glyphs in Noto Serif font; adds support for Cyrillic languages (#72, #99) * Add support for the Rouge source highlighter (#247) * Fix parsing of style attribute in inline markup when it contains spaces; fixes Pygments highlighting * Expand tabs to spaces in source document (#236) * Scale down SVG if width is wider than page (#242) * Load a base theme with defaults for required keys (#132) * Enable PDF page import using block image macro (#177) * Restore method in PDF::Core needed to import PDF page (#237) * Restore text rendering mode after PDF import (#251) * Support writing to STDOUT and other IO objects (#254) * Enable pagenums by default; allow noheader & nofooter to control running header/footer (#205) * Implement explicit table width, including autowidth (#258) * Handle conversion to windows-1252 more gracefully when using built-in (AFM) fonts (#290) * Disable warning if using a built-in (AFM) font * Remove use of rhythm theme keys from converter (#289) * Allow font_style to be set on literal text (#291) * Parse inline image macro value of page_background_image (#222) * Allow theme to control header cells in table body (#272) * Make line height in running header/footer configurable (#274) * Normalize text content in running header/footer (#266) * Modify vertical alignment setting for running header/footer (#264) * Use table background color, even if white; upgrade to Prawn Table 0.2.2 (#214) * Delete trailing content page if empty (#147) * Fix dry run calculation of block height...again (#215) * Move footnotes to inline in a lighter shade * Fix for JRuby 1.7 running in 2.0 mode * Upgrade Prawn SVG to 0.21.0; fixes most badge SVGs * Upgrade thread_safe gem * Prevent crash if doc has no sections (@abatalev) {uri-repo}/issues?q=milestone%3Av1.5.0.alpha.9[issues resolved] | {uri-repo}/releases/tag/v1.5.0.alpha.9[git tag] == 1.5.0.alpha.8 (2015-06-23) - @mojavelinux * Support inline images (#9) * Support link attribute on inline images (#209) * Support inline icon macro (#97) * Allow fine-grained control over image width (#76) * Size conversion not yet applied to images on title page or in running header/footer * Enable checklists (#181) * Fix block height calculation when content is indented by propagating bounds to scratch document (#215) * Don't insert page break before content whose height exceeds a single page (#183) * Dash border of literal/listing block at page boundary when broken across pages (#190) * Don't crash if toc entry is too long (#200) * Add missing methods on OpenStruct to fix Rubinius compatibility (#81) * Autofit font size in listing & literal blocks if autofit option is specified (#185) * Support border style (e.g., double, dashed, dotted) (#196) * Allow font color of outline list marker to be set by theme (#170) * Allow use of hyphen in property names in the theme (#193) * Only include table of contents if toc attribute is defined in header (#187) * Improve parsing of pdf-page-size attribute * Handle case in colist converter when previous block isn't found (#173) * Print Asciidoctor PDF version in CLI output * Upgrade Prawn (< 3.0.0, >= 1.3.0) (#68) * Upgrade Prawn SVG to 0.20.0 * Document gem installation in README (#112) * Perform code cleanups (#195) * Silence warning about toc block macro * Add -example suffix to example file names * Use CodeRay as syntax highlighter in examples (#207) * Use proper font names in default them to support custom fonts in SVGs * Rework parser to parse void elements * Apply first line formatting correctly (no dropped words) * Add support for text-center role on paragraphs * Update theming guide * Fix cross references in README {uri-repo}/issues?q=milestone%3Av1.5.0.alpha.8[issues resolved] | {uri-repo}/releases/tag/v1.5.0.alpha.8[git tag] == 1.5.0.alpha.7 (2015-05-31) - @mojavelinux * Add support for font-based icons (Jesse Doyle) (#15) * Enable font fallback support (Rei) * Support single value for font_fallbacks key in theme * Reenable M+ 1p as the fallback font * Add option to specify the background color for even table rows (Tord Heimdal) (#104) * Add block title for paragraphs (David Gamba) (#67) * Allow custom page size setting (Otavio Salvador) (#84) * Fix xref to sections (#56) * Fix xrefs to non-section content (#110) * Allow theme to control layout of title page (#135) * Allow theme to control style of table of contents (#167) * Allow running header & footer content to be customized (#89) * Tighten spacing between list items, make value configurable (#92) * Support CMYK color values (#155) * Add support for measurement values in theme (#156) * Name per-level heading theme keys consistently (e.g., heading_h_font_size) (#157) * Preprocess theme data to allow # in front of hex colors (#158) * Support linkable images (#51) * Render table footer row (#123) * Don't crash if sectids attribute is disabled (#70) * Support text transform in theme (uppercase / lowercase) (#138) * Keep together shouldn't create blank pages (#150) * Properly resolve image target as system path (#87) * Show warning when image cannot be read (#148) * Allow page background image to be specified (#134) * Support PDF format as cover page (#113) * Accomodate numbered list with large numbers (#91) * Position list marker correctly (#140) * Allow theme to set font size & family of table cells (#139) * Unencode character entities in document title (#136) * Process callouts in listing & literal blocks (#31) * Use :center to vertically align table cell (#118) * Normalize endlines in table cell text (#116) * Support setting page size via attribute (#65) * Remove unused fonts; update version of NotoSerif font license file * Remove Asciidoctor theme until we're ready to fully implement * Restore source highlighting when nested inside block * Allow keys in theme to be nested to an arbitrary depth * Assign width to border for blockquote if not specified in theme * Add support for font family and style per heading level * Implement basic converter for inline_indexterm * Coerce negative values in theme if they slip through * Use preserve_indentation in layout_prose * Support remote images * Add warning about unsupported gif format * Abort cli if option parsing returns exit code * Use SafeYAML to load theme files * Handle transparent value for table background colors {uri-repo}/issues?q=milestone%3Av1.5.0.alpha.7[issues resolved] | {uri-repo}/releases/tag/v1.5.0.alpha.7[git tag] == 1.5.0.alpha.6 (2014-11-28) - @mojavelinux * Add pdf-fontsdir attributes to redefine fonts directory (andrey) * Use require_relative to load Asciidoctor PDF in asciidoctor-pdf script (Ryan Bigg) * Add example for specifying theme file (Leif Gruenwoldt) (#61) * Add thread_safe gem to remove warning when registering converter {uri-repo}/issues?q=milestone%3Av1.5.0.alpha.6[issues resolved] | {uri-repo}/releases/tag/v1.5.0.alpha.6[git tag] == 1.5.0.alpha.5 (2014-09-15) - @mojavelinux * Allow chapter label to be controlled using the `chapter-label` attribute (#47) * Prevent toc from overflowing content (#35) * Fix page numbering for various permutations of front matter * Don't activate implicit header include processor by default (#48, #25) * Draw box around listings and literal blocks than span more than one page (#11) {uri-repo}/issues?q=milestone%3Av1.5.0.alpha.5[issues resolved] | {uri-repo}/releases/tag/v1.5.0.alpha.5[git tag] == 1.5.0.alpha.4 (2014-09-09) - @mojavelinux * Fix yield statement so Asciidoctor PDF can be used with JRuby * Document that the coderay gem must be installed to run the examples (#42) {uri-repo}/issues?q=milestone%3Av1.5.0.alpha.4[issues resolved] | {uri-repo}/releases/tag/v1.5.0.alpha.4[git tag] == 1.5.0.alpha.3 (2014-09-08) - @mojavelinux * Remove unnecessary dependencies (tilt, slim, thread_safe) {uri-repo}/issues?q=milestone%3Av1.5.0.alpha.3[issues resolved] | {uri-repo}/releases/tag/v1.5.0.alpha.3[git tag] == 1.5.0.alpha.2 (2014-09-05) - @mojavelinux * Add magic encoding header to source file so Asciidoctor PDF can be used with Ruby 1.9.3 (#33, #36) {uri-repo}/issues?q=milestone%3Av1.5.0.alpha.2[issues resolved] | {uri-repo}/releases/tag/v1.5.0.alpha.2[git tag] == 1.5.0.alpha.1 (2014-09-04) - @mojavelinux * Rewrite as proper Asciidoctor converter (#29) * Initial pre-release {uri-repo}/issues?q=milestone%3Av1.5.0.alpha.1[issues resolved] | {uri-repo}/releases/tag/v1.5.0.alpha.1[git tag] ruby-asciidoctor-pdf-1.6.2/CONTRIBUTING-CODE.adoc000066400000000000000000000242431416357056400210400ustar00rootroot00000000000000= Contributing Code // Settings: :experimental: :idprefix: :idseparator: - ifndef::env-github[:icons: font] ifdef::env-github,env-browser[] :toc: macro :toclevels: 1 endif::[] ifdef::env-github[] :!toc-title: :caution-caption: :fire: :important-caption: :exclamation: :note-caption: :paperclip: :tip-caption: :bulb: :warning-caption: :warning: endif::[] // Aliases: :project-name: Asciidoctor PDF :project-handle: asciidoctor-pdf // URLs: :url-asciidoctor: http://asciidoctor.org :url-project: https://github.com/asciidoctor/asciidoctor-pdf :url-project-repo: {url-project} :url-project-issues: {url-project-repo}/issues :url-project-list: https://discuss.asciidoctor.org :url-rvm: http://rvm.io This guide provides all the information you need to become a successful Asciidoctor PDF developer and code contributor! You'll learn how to retrieve the code from GitHub, execute the tests, build and install the gem, and run the application with your local modifications. toc::[] == Guidelines To contribute code, fork the project on GitHub, hack away, and send a pull request with your proposed changes. *All pull requests must include a) tests that verify the code change and b) an entry in the CHANGELOG.adoc file to document what changed.* If a pull request is missing tests or a CHANGELOG entry, *it will not be merged*. Feel free to use the {url-project-issues}[issue tracker] or {url-project-list}[Asciidoctor mailing list] to provide feedback or suggestions in other ways. Follow the instructions below to learn how to clone the source and run it from your local copy. == Development === Retrieve the Source Code You can retrieve the source of {project-name} in one of two ways: . Clone the git repository . Download a zip archive of the repository ==== Option 1: Fetch Using Git If you want to clone the git repository, simply copy the {url-project-repo}[GitHub repository URL] and pass it to the `git clone` command: $ git clone https://github.com/asciidoctor/asciidoctor-pdf Next, change to the project directory: $ cd asciidoctor-pdf ==== Option 2: Download the Archive If you want to download a zip archive, click the btn:[Download Zip] button on the right-hand side of the repository page on GitHub. Once the download finishes, extract the archive, open a console and change to that directory. TIP: Instead of working out of the {project-handle} directory, you can simply add the absolute path of the [path]_bin_ directory to your `PATH` environment variable. We'll leverage the project configuration to install the necessary dependencies. === Install Dependencies We recommend using {url-rvm}[RVM] to manage the installation of Ruby you'll use to build and develop the project. $ rvm use 2.6 The dependencies needed to use {project-name} are defined in the [.path]_Gemfile_ at the root of the project. We can use Bundler to install the dependencies for us. To check you have Bundler available, use the `bundle` command to query the installed version: $ bundle --version If it's not installed, use the `gem` command to install it. $ gem install bundler Then use the `bundle` command with the `--path` option to install the project dependencies into the project: $ bundle --path=.bundle/gems NOTE: You must call `bundle` from the project directory so that it can find the [.path]_Gemfile_. === Run the Tests Tests are written using RSpec. To run the tests, simply invoke rspec via bundler. $ bundle exec rspec To disable the visual integration tests, pass the `` option: $ bundle exec rspec -t ~visual If a visual integration test fails, you can instruct the test suite to keep the files in the [.path]_spec/output_ directory by setting the `DEBUG` environment variable: $ DEBUG=true bundle exec rspec -t visual If you want to see the name of each test as it is run, add the `-fd` option: $ bundle exec rspec -fd You can also use the provided Rake task (note the name difference): $ bundle exec rake spec Running tests using `rspec` directly gives you the advantage of being able to specify additional options. To run a single test, you can filter by the name of the test. For example, to run all tests that pertain to failures, use: $ bundle exec rspec -e fail To run all tests that have `wip` in the name, use: $ bundle exec rspec -e wip You can also run all tests in a given file by passing the file's path to rspec: $ bundle exec rspec spec/toc_spec.rb For a full list of options that rspec provides, run `rspec -h`. === Run the Application (optional) Like with Bundler, you have to run the application from the project directory. Assuming all the required gems install properly, verify you can run the `asciidoctor-pdf` script using Ruby: $ bundle exec asciidoctor-pdf -v If you see the version of {project-name} printed, you're ready to use {project-name}! You can use the application to convert a document as follows: $ bundle exec asciidoctor-pdf /path/to/sample.adoc === Install the Application (optional) If you want to install the application globally so you can run it anywhere, use the following `rake` task: $ bundle exec rake install This task will package the gem and install it into your system gems. If you want to install the gem using a separate command, first use the following `rake` task to build it: $ rm -rf pkg bundle exec rake build This task packages the application as a gem and writes it to the [.path]_pkg_ directory. A message will be printed to the console telling you the exact filename. You can now use the `gem install` command to install it. $ gem install pkg/*.gem You'll want to pay attention to which Ruby installation you are installing the gem into. If successful, the `asciidoctor-pdf` executable will be available on your PATH. TIP: If you're running {project-name} in a Gradle build, follow https://github.com/asciidoctor/asciidoctor-pdf/issues/650#issuecomment-258338060[these instructions] to use the development version of {project-name}. === Test a Pull Request To test a pull request (PR), you first need to fetch the branch that contains the change and switch to it. The steps below are covered in detail in the https://help.github.com/articles/checking-out-pull-requests-locally[GitHub help]. Let's assume you want to test PR 955. Here's how you fetch and switch to it: $ git fetch origin pull/955/head:pr-955-review git checkout pr-955-review IMPORTANT: Make sure you replace the number with the number of the PR you want to test. In case any dependencies have changed, you should run the `bundle` command again: $ bundle Now you can run the application as modified by the PR: $ bundle exec asciidoctor-pdf /path/to/sample.adoc To switch back to main just type: $ git checkout main ==== In Your Application If you're using {project-name} in your application, you can test against the code in the pull request using Bundler. First, you need to find the origin URL and branch of the PR. You can find this information on the PR page. Next, update the entry in your project's [.path]_Gemfile_ to point to the branch from which the pull request was originated. .Gemfile [source,ruby] ---- source 'https://rubygems.org' gem 'asciidoctor-pdf', github: '/asciidoctor-pdf', branch: 'issue-864' ---- Then run Bundler to update the gems in your project: $ rm -f Gemfile.lock bundle config --local github.https true bundle --path=.bundle/gems --binstubs=.bundle/.bin Now you can run the development version of {project-name} using: $ bundle exec asciidoctor-pdf input.adoc or $ ./.bundle/.bin/asciidoctor-pdf input.adoc These instructions work for testing any development version of {project-name} directly from GitHub. === Generate Code Coverage Report To generate a code coverage report when running tests using simplecov, set the `COVERAGE` environment variable as follows when running the tests: $ COVERAGE=true bundle exec rake spec You'll see a total coverage score as well as a link to the HTML report in the output. The HTML report helps you understand which lines and branches were missed, if any. Despite being fast, the downside of using simplecov is that it misses code branches. You can use deep-cover instead of simplecov to generate a more thorough report. To do so, first run `bundle` at least once with the `COVERAGE` environment variable set: $ COVERAGE=true bundle Then, set the `COVERAGE` environment variable to `deep` when running the tests: $ COVERAGE=deep bundle exec rake spec You'll see a total coverage score, a detailed coverage report, and a link to HTML report in the output. The HTML report helps you understand which lines and branches were missed, if any. //// As an alternative to deep cover's native HTML reporter, you can also use istanbul / nyc. First, you'll need to have the `nyc` command available on your system: $ npm install -g nyc Next, in addition to the `COVERAGE` environment variable, also set the `DEEP_COVER_REPORTER` environment variable as follows when running the tests: $ COVERAGE=deep DEEP_COVER_REPORTER=istanbul bundle exec rake spec You'll see a total coverage score, a detailed coverage report, and a link to HTML report in the output. The HTML report helps you understand which lines and branches were missed, if any. //// === Rebuild the Formatter Text Parser The formatted text is first converted to a pseudo-HTML language, then converted from there into Prawn text fragments using a https://github.com/cjheath/treetop[treetop] parser. treetop is a Ruby-based parsing DSL based on parsing expression grammars. This strategy allows the converter to manipulate the formatted text without needing the know the internal details of how Prawn arranges text fragments. It also allows Asciidoctor to behave in a consistent manner, since some of the inline parsing in Asciidoctor assumes that the converter is generating an SGML-based language like HTML or DocBook. The parsing expression grammar is defined in the source file [.path]_lib/asciidoctor/pdf/formatted_text/parser.treetop_. If you make a change to this file, you must regenerate the parser, which is defined in the source file _lib/asciidoctor/pdf/formatted_text/parser.rb_. (Don't modify the generated parser directly). Use the following command to regenerate the parser: bundle exec tt lib/asciidoctor/pdf/formatted_text/parser.treetop You then need to commit both files. ruby-asciidoctor-pdf-1.6.2/CONTRIBUTING.adoc000066400000000000000000000046541416357056400203340ustar00rootroot00000000000000= Contributing // Settings: :experimental: :idprefix: :idseparator: - // URLs: :url-project-repo: https://github.com/asciidoctor/asciidoctor-pdf :url-project-issues: {url-project-repo}/issues :url-project-list: https://discuss.asciidoctor.org In the spirit of free software, _everyone_ is encouraged to help improve this project. And we want you to help. Yes, _you!_ == We Welcome Your Participation Keep in mind, *anyone* can contribute to an Asciidoctor project. If you have a specialty, or just some creativity to share, we welcome your participation. Contributing is _not_ just for developers. Of course, we'll always need help with the code as it's the basis of the project. But code isn't going to make the project successful alone. We also need documentation, automation, design, marketing, communication, advocacy and more for it to make an impact. == Ideas for Getting Involved Here are just a few of the ways you can contribute to the project: * Reporting bugs (_The easiest way to get started!_) * Sharing ideas on {url-project-list} * Suggesting new feature or improvements in the issue tracker * Speaking about the technology * Advocating for the technology * Assisting with design and/or UX (stylesheets, themes, logos, etc) * Conducting user studies and collecting feedback * Automating system administration tasks (releases, changelog, announcements, hosting, etc) * Writing, editing or maintaining the documentation * Organizing the content (information architecture & content strategy) * Using or extending the software in a creative way * Testing a prerelease, a pull request, or the development branch * Reviewing or providing feedback on pull requests * Writing code (_No patch is too small!_) ** Fixing typos ** Adding or revising comments or API docs ** Fixing {url-project-issues}[issues] ** Writing tests ** Refactoring the code * Something we haven't suggested...seriously! The best way to get involved is just to show up and express your interest. We have a very friendly and encouraging culture. Harassment or offensive behavior is simply not tolerated. We are positive, even when being critical. We also strive to lift others up and help them be successful. We want your choice to participate in an Asciidoctor project be the start of an exciting and rewarding journey. So thanks for showing up! == Code Development If you want to write code, the <> guide will help you to get started quickly. ruby-asciidoctor-pdf-1.6.2/Gemfile000066400000000000000000000024221416357056400170570ustar00rootroot00000000000000# frozen_string_literal: true source 'https://rubygems.org' # Look in asciidoctor-pdf.gemspec for runtime and development dependencies gemspec gem 'asciidoctor', ENV['ASCIIDOCTOR_VERSION'], require: false if ENV.key? 'ASCIIDOCTOR_VERSION' gem 'open-uri-cached', require: false gem 'prawn-gmagick', ENV['PRAWN_GMAGICK_VERSION'], require: false if ENV.key? 'PRAWN_GMAGICK_VERSION' # NOTE: use prawn-table from upstream (pre-0.2.3) to verify fix for #599 gem 'prawn-table', git: 'https://github.com/prawnpdf/prawn-table', ref: '515f2db294866a343b05d15f94e5fb417a32f6ff', require: false gem 'pygments.rb', ENV['PYGMENTS_VERSION'], require: false if ENV.key? 'PYGMENTS_VERSION' gem 'rexml', require: false if (Gem::Version.new RUBY_VERSION) >= (Gem::Version.new '3.0.0') gem 'rghost', ENV['RGHOST_VERSION'], require: false if ENV.key? 'RGHOST_VERSION' gem 'rouge', ENV['ROUGE_VERSION'], require: false if ENV.key? 'ROUGE_VERSION' gem 'text-hyphen', require: false group :docs do gem 'yard', require: false end group :lint do gem 'rubocop', '~> 1.14.0', require: false gem 'rubocop-rake', '~> 0.5.0', require: false gem 'rubocop-rspec', '~> 2.3.0', require: false end group :coverage do gem 'deep-cover-core', '~> 1.1.0', require: false gem 'simplecov', '~> 0.21.0', require: false end ruby-asciidoctor-pdf-1.6.2/LICENSE000066400000000000000000000021241416357056400165700ustar00rootroot00000000000000MIT License Copyright (C) 2014-present OpenDevise Inc. and the Asciidoctor Project Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ruby-asciidoctor-pdf-1.6.2/NOTICE.adoc000066400000000000000000000070711416357056400174020ustar00rootroot00000000000000= Asciidoctor PDF OpenDevise Inc.; Asciidoctor Project Copyright (C) 2014-present OpenDevise Inc. and the Asciidoctor Project. Please visit the Asciidoctor project site for more information: - http://asciidoctor.org OpenDevise Inc. and the Asciidoctor Project licenses this product to you under the MIT License (the "License"). You may not use this product except in compliance with the License. You may obtain a copy of the License at: http://opensource.org/licenses/MIT Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. == Third-party licensed work M+ OUTLINE FONTS (M+ TESTFLIGHT 058):: The M+ OUTLINE FONTS are used for literal text, annotation numbers and fallback characters and are bundled in the PDF file. These fonts are free software and are designed and maintained by Coji Morishita. Unlimited permission is granted to use, copy, and distribute them, with or without modification, either commercially or noncommercially. THESE FONTS ARE PROVIDED "AS IS" WITHOUT WARRANTY. - http://mplus-fonts.sourceforge.jp/mplus-outline-fonts/index-en.html Noto Serif Font (v2015-06-05):: Noto is font family developed by the Google Internationalization Team that aims to support all the world's languages. The Noto Serif font is used for headings and body copy and is bundled in the PDF file. The Noto fonts are licensed under the Apache 2.0 License. You may obtain a copy of the license at: http://www.apache.org/licenses/LICENSE-2.0 - https://code.google.com/p/noto/ Font Awesome Icon Font (v5.4):: Font Awesome (@fontawesome), the iconic font designed for Bootstrap by David Gandy (@davegandy), is used for the admonition icons and other icons in author's content and bundled in the PDF file. Font Awesome is fully open source and GPL compatible. The font is licensed under the SIL Open Font 1.1 License (OFL). You may obtain a copy of the license at: http://scripts.sil.org/OFL - http://fontawesome.io RomanNumeral class:: The RomanNumeral class, which is used for numbering of ordered lists, is borrowed from the roman-numerals RubyGem and modified for the purpose of this application. The original RomanNumerals class was written by Andrew Vos and is licensed under the MIT License. http://opensource.org/licenses/MIT - https://github.com/AndrewVos/roman-numerals Asciidoctor::Prawn::CodeRayEncoder class:: The Asciidoctor::Prawn::CodeRayEncoder class, which is used for syntax highlighting source code for use with Prawn, is borrowed from the Prawn project and modified for the purpose of this application. The PrawnEncoder was written by Felipe Doria and may be used under Matz's original licensing terms for Ruby, the GPLv2 license, or the GPLv3 license. - https://github.com/prawnpdf/prawn Bootstrap (v3.0.3):: The default theme is inspired by Bootstrap 3.0.3. - http://getbootstrap.com spec/fixtures/cover.jpg:: Attribution: Dominicus Johannes Bergsma; License: Creative Commons Attribution-Share Alike 3.0 Unported This file is licensed under the Creative Commons Attribution-Share Alike 3.0 Unported license. - https://commons.wikimedia.org/wiki/File:Dahlia_%27Bishop_of_Auckland.JPG spec/fixtures/tux.png:: Attribution: Larry Ewing, Simon Budig, Garrett LeSage; License: Creative Commons CC0 1.0 Universal Public Domain Dedication - https://commons.wikimedia.org/wiki/File:Tux.svg ruby-asciidoctor-pdf-1.6.2/README.adoc000066400000000000000000001570621416357056400173640ustar00rootroot00000000000000= Asciidoctor PDF: A native PDF converter for AsciiDoc Dan Allen ; Sarah White v1.6.2, 2021-12-31 // Settings: :experimental: :idprefix: :idseparator: - ifndef::env-github[:icons: font] ifdef::env-github,env-browser[] :toc: macro :toclevels: 1 endif::[] ifdef::env-github[] :status: :!toc-title: :caution-caption: :fire: :important-caption: :exclamation: :note-caption: :paperclip: :tip-caption: :bulb: :warning-caption: :warning: endif::[] // Aliases: :project-name: Asciidoctor PDF :project-handle: asciidoctor-pdf // Variables: :release-line: 1.6.x :release-version: 1.6.2 // URIs: :url-asciidoctor: http://asciidoctor.org :url-gem: http://rubygems.org/gems/asciidoctor-pdf :url-project: https://github.com/asciidoctor/asciidoctor-pdf :url-project-repo: {url-project} :url-project-issues: {url-project-repo}/issues :url-project-list: http://discuss.asciidoctor.org :url-prawn: http://prawnpdf.org :url-prawn-gmagick: https://github.com/packetmonkey/prawn-gmagick :url-prawn-svg: https://github.com/mogest/prawn-svg :url-asciidoctor-mathematical: https://github.com/asciidoctor/asciidoctor-mathematical :url-rvm: http://rvm.io :url-graphicsmagick: http://www.graphicsmagick.org ifdef::status[] image:https://img.shields.io/badge/zulip-join_chat-brightgreen.svg[project chat,link=https://asciidoctor.zulipchat.com/] image:{url-project-repo}/workflows/CI/badge.svg?branch=v{release-line}[Build Status (GitHub Actions),link={url-project-repo}/actions?query=workflow%3ACI+branch%3Av{release-line}] image:https://img.shields.io/gem/v/asciidoctor-pdf.svg[Latest Release, link={url-gem}] endif::[] Asciidoctor PDF is a native PDF converter for AsciiDoc. It bypasses the requirement to generate an intermediary format such as DocBook, Apache FO, or LaTeX. Instead, you can use this extension to convert your documents directly from AsciiDoc to PDF. Its aim is to take the pain out of creating PDF documents from AsciiDoc. NOTE: You're viewing the documentation for the {release-line} release line. If you're looking for the documentation for another release line, please refer to one of the following branches: + {url-project-repo}/tree/main#readme[2.0.x] ⁃ {url-project-repo}/tree/v1.5.x#readme[1.5.x] toc::[] == Overview {project-name} is an Asciidoctor extension that converts an AsciiDoc document directly to a PDF document. The style and layout of the PDF is controlled by a dedicated theme file. To the degree possible, this converter supports all the features of AsciiDoc that are supported by the built-in converters. However, there are <> imposed by the PDF format and the PDF library this extension uses. Under the covers, {project-name} uses the Prawn gem and its extensions (e.g., prawn-svg and prawn-table) to generate the PDF document. {url-prawn}[Prawn] is a general purpose PDF generator for Ruby that features high-level APIs for common needs like setting up the page and inserting images and low-level APIs for positioning and rendering text and graphics. Prawn takes the pain out of creating (basic) PDF documents. Likewise, {project-name} takes the pain out of creating PDF documents _directly from AsciiDoc_. Skip ahead to <> to start putting {project-name} use. But don't miss the <> to get a preview of what's possible. == Highlights * Direct AsciiDoc to PDF conversion * <> * Custom fonts (TTF or OTF) * Full SVG support (thanks to https://github.com/mogest/prawn-svg[prawn-svg]) * PDF document outline (i.e., bookmarks) * Title page * Table of contents page(s) * Document metadata (title, authors, subject, keywords, etc.) * Configurable page size (e.g., A4, Letter, Legal, etc) * Internal cross reference links * Syntax highlighting with Rouge (preferred), Pygments, or CodeRay * Cover pages * Page background color or page background image with named scaling * Page numbering * Double-sided (aka prepress) printing mode (i.e., margins alternate on recto and verso pages) * Customizable running content (header and footer) * “Keep together” blocks (i.e., page breaks avoided in certain block content) * Orphaned section titles avoided * Autofit verbatim blocks (as permitted by base_font_size_min setting) * Table border settings honored * Font-based icons * Auto-generated index * Automatic hyphenation (when enabled) * Permissive line breaking for CJK languages * Compression / optimization of output file == Known Limitations * Footnotes are always rendered as endnotes (at end of chapter for books; at end of document for all other doctypes) * Table cells that exceed the height of a single page will be truncated (see https://github.com/prawnpdf/prawn-table/issues/41[prawn-table#41]) * Inline images in table cells must fit within available space or Prawn::Errors::CannotFit error will be thrown * Columns cannot be assigned a 0% width (or a width less than the width of a single character); in the same vein, a column cannot be set to autowidth if width of all other columns meets or exceeds 100%; the result is that the converter with throw a Prawn::Errors::CannotFit error * An inline image in a table cell will not force the column wider if the width of the image exceeds the width of the column; either reduce the image width using `pdfwidth` or increase the width of the column using `cols`; another solution is to convert the cell to an AsciiDoc table cell (see https://github.com/asciidoctor/asciidoctor-pdf/issues/830) * Must use development version of prawn-table for autowidth to work on table head row * Must use development version of prawn for error to include font name when requested font style is missing * Must use Ruby >= 2.4 for natural cross references to work with non-ASCII titles * AsciiDoc table cell leaves padding below last block (due to lack of margin collapsing) * Prawn does not support double-wide box drawing glyphs correctly, so box drawings aren't aligned properly in verbatim blocks (see https://github.com/prawnpdf/prawn/issues/1002[prawn#1002] * Orphan / widow support is limited; a page break can occur between a section title and its section content, a table caption and the caption, etc.; use a manual page break to avoid * If a no-break hyphen is surrounded by formatted text on both sides (or is formatted individually), it will not prevent a line break * Images cannot float == Prerequisites All that's needed is Ruby (Ruby 2.5 or better) and a few Ruby gems (including at least Asciidoctor 2.0.0), which we explain how to install in the next section. To check if you have Ruby available, use the `ruby` command to query the version installed: $ ruby --version Make sure this command reports a Ruby version that's at least 2.5. If so, you may proceed. If you want to <> using rghost or hexapdf, you'll need to install the rghost gem: $ gem install rghost or the hexapdf gem: $ gem install hexapdf Similarly, if you want to use the hyphen option you will need to install the `text-hyphen` gem: $ gem install text-hyphen You'll also need to <> to use source highlighting. === System Encoding Asciidoctor assumes you're using UTF-8 encoding. To minimize encoding problems, make sure the default encoding of your system is set to UTF-8. If you're using a non-English Windows environment, the default encoding of your system may not be UTF-8. As a result, you may get an `Encoding::UndefinedConversionError` or other encoding issues when invoking Asciidoctor. To solve these problems, we recommend at least changing the active code page in your console to UTF-8. chcp 65001 Once you make this change, all your Unicode headaches will be behind you. == Getting Started You can get {project-name} by <>. ifndef::env-site[You can also <> if you want to use a development version or participate in development.] === Install the Published Gem To install {project-name}, first make sure you have satisfied the <>. Then, install the gem from RubyGems.org using the following command: $ gem install asciidoctor-pdf ==== Installation Troubleshooting If you get a permission error while installing the gem, such as the one below, it's likely you're attempting to install the gem directly into your system. Installing gems for tech writing directly into your system is not recommended. .Permission error when attempting to install as a system gem .... ERROR: While executing gem ... (Gem::FilePermissionError) You don't have write permissions for the /Library/Ruby/Gems/2.x.x directory. .... A better practice (and one that will ensure your sanity) is to ignore any version of Ruby installed on your system and use {url-rvm}[RVM] to manage the Ruby installation instead. The benefit of this approach is that a) Ruby is guaranteed to be set up correctly, b) installing gems will in no way interfere with the operation of your system, and c) any bin scripts provided by the installed gems will be available on your PATH. All files are managed in user space (aka your home or user directory). If something gets messed up, you can simply remove the [.path]_$HOME/.rvm_ folder and start over. To learn how to install RVM, follow the https://asciidoctor.org/docs/install-asciidoctor-macos/#rvm-procedure-recommended[RVM installation procedure] covered in the Asciidoctor documentation. Once you have installed RVM and used it to install Ruby, make sure to activate the Ruby managed by RVM using `rvm use default` or a specific Ruby version like `rvm use 2.7`. (You'll need to do this each time you open a new terminal). After installing the gem, you can see where it was installed using the following command: $ gem which asciidoctor-pdf To see where the bin script is located, use this command: $ command -v asciidoctor-pdf Both paths should be underneath the [.path]_$HOME/.rvm_ directory. If not, check your RVM setup. ==== Install a Syntax Highlighter (optional) If you want to syntax highlight source listings, you'll also want to install Rouge, Pygments, or CodeRay. Choose one (or more) of the following: .Rouge (preferred, minimum version: 2.0.0) $ gem install rouge .Pygments $ gem install pygments.rb .CodeRay $ gem install coderay You then activate syntax highlighting for a given document by adding the `source-highlighter` attribute to the document header (Rouge shown): [source,asciidoc] ---- :source-highlighter: rouge ---- ==== Upgrade Prawn and Extensions (optional) {project-name} uses Prawn to handle the PDF generation, which has a different release cycle. At times, there may be development features in Prawn and its extensions you need to use which haven't yet been released. No problem. You can still gain access to these features by installing the unreleased gems directly from GitHub. To get started, first create a [.path]_Gemfile_ in the root of your project. In that file, declare the gem source, the {project-handle} gem, and the prawn gem and/or one of its extension gems. In this example, we'll install both the prawn and prawn-table gems from GitHub. .Gemfile [source,ruby] ---- source 'https://rubygems.org' gem 'asciidoctor-pdf' gem 'prawn', github: 'prawnpdf/prawn' gem 'prawn-table', github: 'prawnpdf/prawn-table' ---- You can then install the gems into your project using the `bundle` command: $ bundle config set --local path .bundle/gems && bundle Since you're using Bundler to manage the gems, you'll need to prefix all commands with `bundle exec`. For example: $ bundle exec asciidoctor-pdf -v Thus, to any command present in the following sections, be sure to include this prefix. === Run the Application Assuming all the required gems install properly, verify you can run the `asciidoctor-pdf` script: $ asciidoctor-pdf -v If you see the version of {project-name} printed, you're ready to use {project-name}! Let's grab an AsciiDoc document to distill and start putting {project-name} to use. === An Example AsciiDoc Document If you don't already have an AsciiDoc document, you can use the <> file found in the examples directory of this project. ifeval::[{safe-mode-level} >= 20] See <>. endif::[] ifeval::[{safe-mode-level} < 20] .basic-example.adoc [source,asciidoc] .... include::examples/basic-example.adoc[] .... endif::[] It's time to convert the AsciiDoc document directly to PDF. === Convert AsciiDoc to PDF IMPORTANT: You'll need the `rouge` gem installed to run this example since it uses the `source-highlighter` attribute with the value of `rouge`. Converting to PDF is as simple as running the `asciidoctor-pdf` script using Ruby and passing our AsciiDoc document as the first argument. $ asciidoctor-pdf basic-example.adoc This command is just a shorthand way of running: $ asciidoctor -r asciidoctor-pdf -b pdf basic-example.adoc The `asciidoctor-pdf` command just saves you from having to remember all those flags. That's why we created it. When the script completes, you should see the file [.path]_basic-example.pdf_ in the same directory. Open the [.path]_basic-example.pdf_ file with a PDF viewer to see the result. .Example PDF document rendered in a PDF viewer image::examples/example-pdf-screenshot.png[Screenshot of PDF document,width=850,467,scaledwidth=100%] ifndef::env-site[] You're also encouraged to try converting this <> as well as the documents in the examples directory to see more of what {project-name} can do. endif::[] The pain of the DocBook toolchain should be melting away about now. == Themes The layout and styling of the PDF is driven by a YAML configuration file. To learn how the theming system works and how to create and apply custom themes, refer to the <>. You can use the built-in theme files, which you can find in the [.path]_data/themes_ directory, as examples. If you've enabled a source highlighter, you can control the style (aka theme) it applies to source blocks using the `coderay-style`, `pygments-style`, and `rouge-style` attributes, respectively. For example, to configure Rouge to use the built-in monokai theme, run Asciidoctor PDF as follows: $ asciidoctor-pdf -a rouge-style=monokai basic-example.adoc It's possible to develop your own theme for Rouge. Refer to the <> for details. == Support for Non-Latin Languages Asciidoctor can process the full range of characters in the UTF-8 character set. That means you can write your document in any language, save the file with UTF-8 encoding (_that's important!_), and expect Asciidoctor to convert the text properly. But you still need a font that provides the glyphs for those characters. When converting a document with Asciidoctor PDF, you may notice that some glyphs for certain languages, such as Chinese, are missing from the PDF. PDF is a "`bring your own font`" kind of system. In other words, the font you provide must provide glyphs for all the characters used. There's no one font that supports all the world's languages (though some, like Noto Serif, certainly come close). Even if there were such a font, bundling that font with the main gem would make it enormous. It would also severely limit the style choices in the default theme, which targets Latin-based languages. Therefore, we're taking the strategy of creating separate dedicated theme gems that target each language family, such as CJK. Read on to find out how to use these themes. Asciidoctor PDF provides a built-in theme that provides a broad range of characters in the CJK charsets, so you can start with that theme: $ asciidoctor-pdf -a scripts=cjk -a pdf-theme=default-with-fallback-font document.adoc Notice the `-a scripts=cjk` option. That's important. It tells the converter to insert break opportunities between CJK characters so that the line wraps properly when mixing English and a CJK language like Japanese. If the built-in theme with the fallback font doesn't go far enough, you'll need to use a theme that is optimized for CJK text. You can get such a theme by installing the `asciidoctor-pdf-cjk-kai_gen_gothic` gem. The https://github.com/chloerei/asciidoctor-pdf-cjk-kai_gen_gothic[asciidoctor-pdf-cjk-kai_gen_gothic] project provides themes optimized for CJK languages based on the kai_gen_gothic font. See the https://github.com/chloerei/asciidoctor-pdf-cjk-kai_gen_gothic[asciidoctor-pdf-cjk-kai_gen_gothic] project README for detailed setup instructions. Once you have that gem installed (and the fonts), you need to tell Asciidoctor PDF to use one of the themes. If you're converting a document that is primarily written in Japanese, you'd run Asciidoctor PDF as follows: asciidoctor-pdf -r asciidoctor-pdf-cjk-kai_gen_gothic -a pdf-theme=KaiGenGothicJP document.adoc You also have to option of creating your own theme gem that uses fonts of your choice. For example, if you want to use the `asciidoctor-pdf-cjk-kai_gen_gothic` gem to fetch fonts, but then use them in your own theme, here's how you'd do it. . Install the `asciidoctor-pdf-cjk-kai_gen_gothic` gem: $ gem install asciidoctor-pdf-cjk-kai_gen_gothic . Download / install the fonts: $ asciidoctor-pdf-cjk-kai_gen_gothic-install . Create a theme that extends the default theme: + [source,yml] ---- extends: default font: catalog: KaiGen Gothic JP: normal: KaiGenGothicJP-Regular.ttf bold: KaiGenGothicJP-Bold.ttf italic: KaiGenGothicJP-Regular-Italic.ttf bold_italic: KaiGenGothicJP-Bold-Italic.ttf M+ 1mn: normal: GEM_FONTS_DIR/mplus1mn-regular-subset.ttf bold: GEM_FONTS_DIR/mplus1mn-bold-subset.ttf italic: GEM_FONTS_DIR/mplus1mn-italic-subset.ttf bold_italic: GEM_FONTS_DIR/mplus1mn-bold_italic-subset.ttf fallbacks: - KaiGen Gothic JP base: font-family: KaiGen Gothic JP heading: font-family: $base-font-family abstract: title: font-family: $heading-font-family sidebar: title: font-family: $heading-font-family ---- . Load your theme when running Asciidoctor PDF: $ asciidoctor-pdf -a scripts=cjk -a pdf-theme=./jp-theme.yml -a pdf-fontsdir=`ruby -r asciidoctor-pdf-cjk-kai_gen_gothic -e "print File.expand_path '../fonts', (Gem.datadir 'asciidoctor-pdf-cjk-kai_gen_gothic')"` document.adoc The `-a pdf-fontsdir` option is important to tell Asciidoctor PDF where to find your custom fonts. Rather than using the installer from the `asciidoctor-pdf-cjk-kai_gen_gothic` gem, you can download fonts whatever way you choose. When using your own fonts, be sure to consult the <> section of the theming guide to find recommended modifications. == Font-Based Icons You can use icons in your PDF document using any of the following icon sets: * *fa* - https://fontawesome.com/v4.7.0/icons (default) * *fas* - https://fontawesome.com/icons?d=gallery&s=solid[Font Awesome - Solid^] * *fab* - https://fontawesome.com/icons?d=gallery&s=brands[Font Awesome - Brands^] * *far* - https://fontawesome.com/icons?d=gallery&s=regular[Font Awesome - Regular^] * *fi* - http://zurb.com/playground/foundation-icon-fonts-3[Foundation Icons^] * *pf* - https://paymentfont.com/[Payment font^] The fa icon set is deprecated. Please use one of the other three FontAwesome icon sets. You can enable font-based icons by setting the following attribute in the header of your document: [source,asciidoc] ---- :icons: font ---- If you want to override the font set globally, also set the `icon-set` attribute: [source,asciidoc] ---- :icons: font :icon-set: pf ---- Here's an example that shows how to use the Amazon icon from the payment font (pf) icon set in a sentence (assuming the `icon-set` is set to `pf): [source,asciidoc] ---- Available now at icon:amazon[]. ---- You can use the `set` attribute on the icon macro to override the icon set for a given icon. [source,asciidoc] ---- Available now at icon:amazon[set=pf]. ---- You can also specify the font set using the following shorthand. [source,asciidoc] ---- Available now at icon:amazon@pf[]. ---- In addition to the sizes supported in the HTML backend (lg, 1x, 2x, etc), you can enter any relative value in the size attribute (e.g., 1.5em, 150%, etc). [source,asciidoc] ---- icon:android[size=40em] ---- You can enable use of fonts during PDF generation (instead of in the document header) by passing the `icons` attribute to the `asciidoctor-pdf` command. $ asciidoctor-pdf -a icons=font -a icon-set=pf sample.adoc Icon-based fonts are handled by the `prawn-icon` gem. To find a complete list of available icons, consult the https://github.com/jessedoyle/prawn-icon/tree/master/data/fonts[prawn-icon] repository. == Image Paths Images are resolved at the time the converter runs. That means they need to be located where the converter can find them. Relative images paths in the document are resolved relative to the value of the `imagesdir` attribute. This is effectively the same as how the built-in HTML converter works when the `data-uri` attribute is set. The `imagesdir` is blank by default, which means relative images paths are resolved relative to the input document. Relative images paths in the theme are resolved relative to the value of the `pdf-themesdir` attribute (which defaults to the directory of the theme file). The `imagesdir` attribute is not used when resolving an image path in the theme file. Absolute image paths are used as is. If the image is an SVG, and the SVG includes a nested raster image (PNG or JPG) with a relative path, that path is resolved relative to the directory that contains the SVG. The converter will refuse to embed an image if the target is a URI (including image references in an SVG) unless the `allow-uri-read` attribute is enabled via the CLI or API. If you use a linked image in an SVG, the width and height of that image must be specified. Otherwise, the SVG library will fail to process it. === Asciidoctor Diagram Integration Asciidoctor PDF provides seamless integration with Asciidoctor Diagram by setting the `data-uri` attribute by default. When the `data-uri` attribute is set, Asciidoctor Diagram returns the absolute path to the generated image, which Asciidoctor PDF can then locate. (This makes sense since technically, Asciidoctor Diagram must embed the image in the document, similar in spirit to the `data-uri` feature for HTML). This means the input directory and the output directory (and thus the imagesoutdir) can differ and Asciidoctor PDF will still be able to locate the generated image. == Image Scaling Since PDF is a fixed-width canvas, you almost always need to specify a width to get the image to fit properly on the page. There are five ways to specify the width of an image, listed here in order of precedence: [cols="1s,3"] |=== |Attribute{nbsp}Name | Description |pdfwidth |The display width of the image as an absolute size (e.g., 2in), percentage of the content area width (e.g., 75%), or percentage of the page width (e.g., 100vw). If a unit of measurement is not specified (or not recognized), pt (points) is assumed. _Intended to be used for the PDF converter only._ |scaledwidth |The display width of the image as an absolute size (e.g., 2in) or percentage of the content area width (e.g., 75%). If a unit of measurement is not specified, % (percentage) is assumed. If a unit of measurement is recognized, pt (points) is assumed. _Intended to be used for print output such as PDF._ |image_width key from theme |Accepts the same values as pdfwidth. _Only applies to block images._ |width |The unitless display width of the image (assumed to be pixels), typically matching the intrinsic width of the image. If the value ends in % (not recommended), it's assumed to be the percentage of the available content area width. If the width exceeds the content area width, the image is scaled down to the content area width. |_unspecified_ |If you don't specify one of the aforementioned width settings, the intrinsic width of the image is used (the px value is multiplied by 75% to convert to pt, assuming canvas is 96 dpi) unless the width exceeds the content area width, in which case the image is scaled down to the content area width. |=== The image is always sized according to the explicit or intrinsic width, then its height is scaled proportionally. The height of the image is ignored by the PDF converter unless the height of the image exceeds the content height of the page. In this case, the image is scaled down to fit on a single page. If you want a block image to align to the boundaries of the page (not the content margin), specify the `align-to-page` option (e.g., `opts="align-to-page"`). This is most useful when using vw units because you can make the image cover the entire width of the page. Images in running content and page background images also support the `fit` attribute (when specified using the image macro). See <> for details. === Using the pdfwidth Attribute The pdfwidth attribute is the recommended way to set the image size for the PDF output. This attribute is provided for two reasons. First, the fixed-width canvas often calls for a width that is distinct from other output formats, such as HTML. Second, this attribute allows the width to be expressed using a variety of units. The pdfwidth attribute supports the following units: * pt (default) * in * cm * mm * px * pc * vw (percentage of page width) * % (percentage of content area width) In all cases, the width is converted to pt. === Specifying a Default Width To scale all block images that don't define either a `pdfwidth` or `scaledwidth` attribute on the image macro, assign a value to the image-width key in your theme file. [source,yaml] ---- image: width: 100% ---- The image-width key accepts the same values as the `pdfwidth` attribute. Thus, you can think of it as the fallback value for the `pdfwidth` attribute. If specified, this value takes precedence over the `width` attribute on the image macro. === Inline Image Sizing Inline images can be sized in much the same way as block images (using the pdfwidth, scaledwidth or width attributes), with the following exceptions: * The viewport width unit (i.e., vw) is not recognized in this context. * The image will be scaled down, if necessary, to fit the width and height of the content area. * Inline images do not currently support a default width controlled from the theme. To confine the inline image to the height of the line while preserving the aspect ratio, use the attribute `fit=line`. If the resolved height of the image is less than or equal to 1.5 times the line height, the image won't disrupt the line height and is centered vertically in the line. This is done to maximize the use of available space. Once the resolved height exceeds this amount, the height of the line is increased (by increasing the font size of the invisible placeholder text) to accommodate the image. In this case, the surrounding text will be aligned to the bottom of the image. If the image height exceeds the height of the page, the image will be scaled down to fit on a single page (this may cause the image to advance to the subsequent page). === Background Image Sizing In addition to the width-related attributes previously covered, cover and background images can be sized relative to the page using the `fit` attribute of the image macro. The `fit` attribute works similarly to the `object-fit` property in CSS. Its value must be specified as a single keyword, chosen from the table below. The starting size of the image is determined by the explicit width, if specified, or the implicit width. The height is always derived from the width while respecting the implicit aspect ratio of the image. The available space for a background image (i.e., the canvas) is the page. If the `fit` attribute is not specified, it defaults to `contain` (i.e., the image is automatically scaled to fit the bounds of the page). [cols="1s,3"] |=== | Value | Purpose | contain | The image is scaled up or down while retaining its aspect ratio to fit within the available space. (default) | cover | The image is scaled up or down while retaining its aspect ratio so the image completely covers the available space, even if it means the image must be clipped in one direction. | scale-down | The image is scaled down while retaining its aspect ratio to fit within the available space. If the image already fits, it is not scaled. | fill | The image is scaled to fit the available space even if it means modifying the aspect ratio of the image. Does not apply to SVG images. | none | The image is not scaled. |=== The `fit` attribute is often combined with the `position` attribute, covered next, to control the placement of the image on the canvas. == Background Image Positioning In addition to scaling, background images for cover pages, content pages, and the title page support positioning via the `position` attribute. The `position` attribute accepts a syntax similar to the `background-position` property in CSS, except only the keyword positions are supported. The position consists of two values, the vertical position and the horizontal position (e.g., `top center`). If only one value is specified (e.g., `top`), the other value is assumed to be `center`. If the `position` attribute is not specified, the value is assumed to be `center center` (i.e., the image is centered on the page). The following table provides a list of the vertical and horizontal positioning keywords that are supported. You can use any combination of these keywords to position the image. |=== | Vertical Positions | Horizontal Positions | top + center + bottom | left + center + right |=== Here's an example of how to place a background image at the top center of every page: ---- :page-background-image: image:bg.png[fit=none,pdfwidth=50%,position=top] ---- Here's how to move it to the bottom right: ---- :page-background-image: image:bg.png[fit=none,pdfwidth=50%,position=bottom right] ---- If an image dimension matches the height or width of the page, the positioning keyword for that axis has no effect. == Fonts in SVG Images Asciidoctor PDF uses {url-prawn-svg}[prawn-svg] to embed SVGs in the PDF document, including SVGs generated by Asciidoctor Diagram. Actually, it's not accurate to say that prawn-svg embeds the SVG. Rather, prawn-svg is an SVG _renderer_. prawn-svg translates an SVG into native PDF text and graphic objects. You can think of the SVG as a sequence of drawing commands. The result becomes indistinguishable from other PDF objects. What that means for text is that any font family used for text in the SVG _must_ be registered in the Asciidoctor PDF theme file (and thus with Prawn). Otherwise, Prawn will fallback to using the closest matching built-in (afm) font from PDF (e.g., sans-serif becomes Helvetica). Recall that afm fonts only support basic Latin. As we like to say, PDF is <>. If you're using Asciidoctor Diagram to generate SVGs to embed in the PDF, you likely need to specify the default font the diagramming tool uses. Let's assume you are making a plantuml diagram. To set the font used in the diagram, first create a file named [.path]_plantuml.cfg_ and populate it with the following content: ---- skinparam defaultFontName Noto Serif ---- TIP: You can choose any font name that is registered in your Asciidoctor PDF theme file. When using the default theme, your options are "Noto Serif", "M+ 1mn", and "M+ 1p Fallback". Next, pass that path to the `plantumlconfig` attribute in your AsciiDoc document (or set the attribute via the CLI or API): ---- :plantumlconfig: plantuml.cfg ---- Clear the cache of your diagrams and run Asciidoctor PDF with Asciidoctor Diagram enabled. The diagrams will be generated using Noto Serif as the default font, and Asciidoctor PDF will know what to do. The bottom line is this: If you're using fonts in your SVG, and you want those fonts to be preserved, those fonts must be defined in the Asciidoctor PDF theme file. == Supporting Additional Image File Formats In order to embed an image into a PDF, Asciidoctor PDF must understand how to read it. To perform this work, Asciidoctor delegates to the underlying libraries. {url-prawn}[Prawn] provides support for reading JPG and PNG images. {url-prawn-svg}[prawn-svg] brings support for SVG images. Without any additional libraries, those are the only supported image file formats. If you need support for additional image formats, such as GIF, TIFF, or interlaced PNG--and you don't want to convert those images to a supported format--you must install the {url-prawn-gmagick}[prawn-gmagick] (>= 0.0.9) Ruby gem. prawn-gmagick is an extension for Prawn based on {url-graphicsmagick}[GraphicsMagick] that adds support for all the image formats recognized by that library. prawn-gmagick has the added benefit of significantly reducing the time it takes to generate a PDF containing a lot of images. The prawn-gmagick gem uses native extensions to compile against GraphicsMagick. This system prerequisite limits installation to Linux and OSX. Please refer to the {url-prawn-gmagick}[README for prawn-gmagick] to learn how to install it. Once this gem is installed, Asciidoctor automatically loads it, then delegates to it to handle all image embedding. In addition to support for additional image file formats, this gem also speeds up image processing considerably. We highly recommend using this gem if you're able to install it. == Importing PDF Pages In addition to using a PDF page for the front or back cover, you can also insert a PDF page at an arbitrary location. This technique is useful to include pages that have complex layouts and graphics prepared in a specialized design program (such as Inkscape), which would otherwise not be achievable using this converter. One such example is an insert such as an advertisement or visual interlude. To import the first page from a PDF file, use the block image macro with the PDF filename as the image target. [source,asciidoc] ---- image::custom-page.pdf[] ---- The converter will insert the page from the PDF as a dedicated page that matches the size and layout of the page being imported (no matter where the block image occurs). Therefore, there's no need to put a manual page break (i.e., `<<<`) around the image macro. By default, this macro will import the first page of the PDF. To import a different page, specify it as a 1-based index using the `page` attribute. [source,asciidoc] ---- image::custom-pages.pdf[page=2] ---- You can import multiple pages either using multiple image macros or using the `pages` attribute. The `pages` attribute accepts individual page numbers or page number ranges (two page numbers separated by `..`). The values can be separated either by commas or semi-colons. (The syntax is similar to the syntax uses for the `lines` attribute of the AsciiDoc include directive). [source,asciidoc] ---- image::custom-pages.pdf[pages=3;1..2] ---- Pages are imported in the order listed. To see a practical example of how to use this feature, refer to the blog post https://fromplantoprototype.com/blog/2019/08/07/importing-pdf-pages-in-asciidoctor-pdf/[Importing PDF Pages in asciidoctor-pdf]. CAUTION: An image macro used to imports PDF pages should never be nested inside a delimited block or table cell. It should be a direct descendant of the document or a section. That's because what it imports are entire pages. If it's used inside a delimited block or table cell, the behavior is unspecified. == Crafting Interdocument Xrefs This converter produces a single PDF file, which means content from multiple source documents get colocated into the same output file. That means references between documents must necessarily become internal references. These interdocument cross references (i.e., xrefs) will only successfully make that transition if you structure your document in accordance with the rules. Those rules are as follows: . The path segment of the interdocument xref must match the project-relative path of the included document . The reference must include the ID of the target element For instance, if your primary document contains the following include: [source,asciidoc] ---- \include::chapters/chapter-1.adoc[] ---- Then an interdocument xref to an anchor in that chapter must be expressed as: [source,asciidoc] ---- <> ---- This rule holds regardless of which document the xref is located in. To resolve the interdocument xref, the converter first checks if the target matches the `docname` attribute. It then looks to see if the target matches one of the included files. (In both cases, it ignores the file extension). If Asciidoctor cannot resolve the target of an interdocument xref, it simply makes a link (like the HTML converter). Let's consider a complete example. Assume you are converting the following book document at the root of the project: [source,asciidoc] ---- = Book Title :doctype: book \include::chapters/chapter-1.adoc[] \include::chapters/chapter-2.adoc[] ---- Where the contents of chapter 1 is as follows: [source,asciidoc] ---- == Chapter 1 We cover a little bit here. The rest you can find in <>. ---- And the contents of chapter 2 is as follows: [source,asciidoc] ---- == Chapter 2 Prepare to be educated. This chapter has it all! To begin, jump to <>. <<< \include::chapter-2/first-steps.adoc[] ---- And, finally, the contents of the nested include is as follows: [source,asciidoc] ---- === First Steps Let's start small. ---- You'll find when you run this example that all the interdocument xrefs become internal references in the PDF. The reason both the path and anchor are required (even when linking to the top of a chapter) is so the interdocument xref works independent of the converter. In other words, it encodes the complete information about the reference so the converter can sort out where the target is in all circumstances. == STEM Support Unlike the built-in HTML converter, Asciidoctor PDF does not provide native support for STEM blocks and inline macros (i.e., asciimath and latexmath). That's because Asciidoctor core doesn't process the STEM content itself. It just passes it through to the converter. In the HTML output, Asciidoctor relies on the JavaScript-based MathJax library to parse and render the equations in the browser when the page is loaded. The HTML converter simply wraps the equations in special markup so MathJax can find them. In order to insert a rendered equation into the PDF, the toolchain has to parse the equations and convert them to a format the PDF writer (Prawn) can understand. That typically means converting to an image. The recommended solution is an extension named Asciidoctor Mathematical, which we'll cover in this document. Another solution, which is still under development, uses Mathoid to convert STEM equations to images. Mathoid is a library that invokes MathJax using a headless browser, so it supports both asciimath and latexmath equations. That prototype can be found in the https://github.com/asciidoctor/asciidoctor-extensions-lab#extension-catalog[Asciidoctor extensions lab]. === Asciidoctor Mathematical {url-asciidoctor-mathematical}[Asciidoctor Mathematical] is an extension for Asciidoctor that provides alternate processing of STEM blocks and inline macros (currently only latexmath). After the document has been parsed, the extension locates all the latexmath blocks and inline macros, converts the equations to images using Mathematical, then replaces them with image nodes. Conversion then proceeds as normal. Asciidoctor Mathematical is a Ruby gem that uses native extensions. It has a few system prerequisites which limit installation to Linux and OSX. Please refer to the {url-asciidoctor-mathematical}#installation[installation section] in the Asciidoctor Mathematical README to learn how to install it. Once Asciidoctor Mathematical is installed, you just need to enable it when invoking Asciidoctor PDF using the `-r` flag: $ asciidoctor-pdf -r asciidoctor-mathematical sample.adoc If you're invoking Asciidoctor via the API, all you need to do is require the gem before invoking Asciidoctor: [source,ruby] ---- require 'asciidoctor-mathematical' Asciidoctor.convert_file 'sample.adoc', safe: :safe ---- To get the best quality equations, and the maximize speed of conversion, we recommend configuring Asciidoctor Mathematical to convert equations to SVG. You control this setting using the `mathematical-format` AsciiDoc attribute: $ asciidoctor-pdf -r asciidoctor-mathematical -a mathematical-format=svg sample.adoc Refer to the {url-asciidoctor-mathematical}#readme[README] for Asciidoctor Mathematical to learn about additional settings and options. == Skipping Passthrough Content Asciidoctor PDF does not support arbitrary passthrough content. While the basebackend for the PDF converter is html, it only recognizes a limited subset of inline HTML elements that can be mapped to PDF (e.g., a, strong, em, code, ). Therefore, if your content contains passthrough blocks or inlines, you most likely have to use a conditional preprocessor to skip them (and make other arrangements). Here's an example of how to skip a passthrough block when converting to PDF: [source,asciidoc] ---- \ifndef::backend-pdf[] \endif::[] ---- Here's an example of how to only enable a passthrough block when converting to HTML5: [source,asciidoc] ---- \ifdef::backend-html5[] \endif::[] ---- == Shaded Blocks and Performance Certain blocks are rendered with a shaded background, such as verbatim (listing, literal, and source), sidebar, and example blocks. In order to calculate the dimensions of the shaded region, Asciidoctor PDF has to "`dry run`" the block to determine how many pages it consumes. While this strategy has a low impact when processing shorter blocks, it can drastically deteriorate performance when processing a block that spans dozens of pages. As a general rule of thumb, you should avoid using shaded blocks which span more than a handful of pages. == Autofitting Text Verbatim blocks often have long lines that don't fit within the fixed width of the PDF canvas. And unlike on the web, the PDF reader cannot scroll horizontally to reveal the overflow text. Therefore, the long lines are forced to wrap. Wrapped lines can make the verbatim blocks hard to read or even cause confusion. To help address this problem, Asciidoctor PDF provides the `autofit` option on all verbatim (i.e., literal, listing and source) blocks to attempt to fit the text within the available width. When the `autofit` option is enabled, Asciidoctor PDF will decrease the font size (as much as it can) until the longest line fits without wrapping. CAUTION: The converter will not shrink the font size beyond the value of the `base_font_size_min` key specified in the PDF theme. If that threshold is reached, lines may still wrap. To allow `autofit` to handle all cases, set `base_font_size_min` to `0` in your theme. Here's an example of the autofit option enabled on a source block: [source,asciidoc] .... [source%autofit,java] ---- @SessionScoped public class WidgetRepository { @GET @Produces("application/json") public List listAll(@QueryParam("start") Integer start, @QueryParam("max") Integer max) { ... } } ---- .... If you want to enable the autofit option globally, set the `autofit-option` document attribute in the document header (or somewhere before the relevant blocks): [source,asciidoc] ---- :autofit-option: ---- == Autowidth Tables Asciidoctor PDF does support autowidth tables. However, the behavior differs from HTML when the content forces the table to the page boundary. The behavior, which is handled by the prawn-table library, is explained in this section. If the natural width of all columns (based on the width of the cell content) is less than the width of the page, it behaves as you'd expect. Each column is assigned the width it needs to prevent the content from wrapping. However, when the natural width of all columns exceeds the width of the page, the behavior may not be what you expect. What prawn-table does is compute how to arrange the table on an infinite canvas, where each column can have a width no greater than the width of the page. Then, it reduces the width of the table by reducing the width of each column proportionally. As a result, columns which reported the width necessary to render without wrapping now no longer do. The reason this compression is not performed like in HTML is because prawn-table has no awareness of words. Thus, it doesn't know how to redistribute with width intelligently. To protected against truncation or insufficient width errors, prawn-table wraps text by character. That's why the last character in the cell can end up getting wrapped. (There's a small amount of tolerance built in to prawn-table to address some edge cases, but it's not sufficient to handle all of them). For the reason just explained, you should be extremely careful with relying on autowidth tables in Asciidoctor PDF, especially when the natural content of the cells forces the table to page boundary. Let experience be your guide. == Printing Page Ranges The print dialog doesn't understand the page numbers labels (which appear in the running content). Instead, it only considers physical pages. Therefore, to print a range of pages as they are labeled in the document, you need to add the number of front matter pages (i.e., the non-numbered pages) to the page number range in the print dialog. For example, if you only want to print the first 5 pages labeled with a page number (e.g., 1-5), and there are 2 pages before the page labeled as page 1, you need to add 2 to both numbers in the range, giving you a physical page range of 3-7. That's the range you need to enter into the print dialog. == Title Page Unlike other converters, the PDF converter introduces a dedicated title page at the start of the document. The title page contains the doctitle, author, date, and revision info. If a front cover image is specified, the title page comes after the front cover. The title page can be styled using the theme and/or reserved page attributes. The title page is enabled if either of these conditions are met: * The document has the `book` doctype. * The `title-page` attribute is set (with an empty value) in the document header. When the title page is enabled, the table of contents (aka TOC) also gets is own page (or pages, if necessary). == Table of Contents The table of contents (TOC) is not included by default. The TOC is only included if the `toc` attribute is set on the document. The placement of the table of contents is fixed, and thus the value of the `toc` attribute is effectively ignored in this backend. For documents that have the book doctype, the TOC is inserted using discrete pages between the title page and the first page of content. For all other doctypes (unless the `title-page` attribute is set), the TOC is inserted in the flow of text in between the document title and the first block of content. While the table of contents is not included by default, the PDF outline is always included. The `toclevels` attribute controls the depth of both the TOC and the PDF outline (regardless of whether the TOC is enabled). NOTE: If a document that has the book doctype includes a preface, an entry for the preface is only included in the TOC if the `preface-title` is assigned a value (e.g., `preface-title=Preface`). This value is used as the heading of the preface and as the text of the entry in the TOC. == Index Catalog Asciidoctor PDF supports generating an index catalog that itemizes all index terms defined in the document, allowing the reader to navigate the document by keyword. To get Asciidoctor PDF to generate an index, add a level-1 section flagged with the `index` style near the end of your document. The converter will automatically populate the catalog with the list of index terms in the document, organized by first letter. [source,asciidoc] ---- [index] = Index ---- You can use any text you want for the title of the section. The only restriction is that no index terms may be defined below this section. NOTE: Although the catalog is generated automatically, you have to mark the index terms manually. However, you could use an extension, such as a TreeProcessor, to automatically mark index terms. == Optimizing the Generated PDF By default, Asciidoctor PDF does not optimize the PDF it generates or compress its streams. This section covers several approaches you can take to optimize your PDF. === Enable Stream Compression The simplest way to reduce the size of the PDF file is to enable stream compression (using the FlateDecode method). You can enable this feature by setting the `compress` attribute on the document: $ asciidoctor-pdf -a compress document.adoc For a more thorough optimization, you can use the integrated optimizer or hexapdf. Read on to learn how. === rghost {project-name} also provides a flag (and bin script) that uses GhostScript (via rghost) to optimize and compress the generated PDF (with minimal impact on quality). You must have Ghostscript (command: `gs`) and the `rghost` gem installed to use it. Here's an example usage that converts your document and optimizes it: $ asciidoctor-pdf -a optimize basic-example.adoc The command will generate an optimized PDF 1.4 file. In addition to optimizing the PDF file, it also converts it from plain PDF to a PDF/X-1a. If this command fails because the `gs` command cannot be found, you'll need to set it using the `GS` environment variable. On Windows, this step is almost always required since the Ghostscript installer does not install the `gs` command into a standard location. Here's an example that shows how you can override the `gs` command path: $ GS=/path/to/gs asciidoctor-pdf -a optimize basic-example.adoc You'll need to use the technique for assigning an environment variable that's relevant for your system. The one limitation of generating a PDF/X-1a file is that it does not allow non-ASCII characters in the document metadata fields (i.e., title, author, subject, etc). To workaround this limitation, you can force Ghostscript to generate a PDF 1.3 file using the `pdf-version` attribute: $ asciidoctor-pdf -a optimize -a pdf-version=1.3 basic-example.adoc CAUTION: Downgrading the PDF version may break the PDF if it contains an image that uses color blending or transparency. Specifically, the text on the page can become rasterized, which causes links to stop working and prevents text from being selected. If you're in this situation, it might be best to try <> instead. If you're looking for a smaller file size, you can try reducing the quality of the output file by passing a quality keyword to the `optimize` attribute (e.g., `--optimize=screen`). The `optimize` attribute accepts the following keywords: `default` (default, same if value is empty), `screen`, `ebook`, `printer`, and `prepress`. Refer to the https://www.ghostscript.com/doc/current/VectorDevices.htm#PSPDF_IN[Ghostscript documentation^] to learn what settings these presets affect. If you've already generated the PDF, and want to optimize it directly, you can use the bin script: $ asciidoctor-pdf-optimize basic-example.pdf The command will overwrite the PDF file with an optimized version. You can also try reducing the quality of the output file using the `--quality` flag (e.g., `--quality screen`). The `--quality` flag accepts the following keywords: `default` (default), `screen`, `ebook`, `printer`, and `prepress`. In both cases, if a file is found with the extension `.pdfmark` and the same rootname as the input file, it will be used to add metadata to the generated PDF document. This file is necessary when using versions of Ghostscript < 8.54, which did not automatically preserve this metadata. You can instruct the converter to automatically generate a pdfmark file by setting the `pdfmark` attribute (i.e., `-a pdfmark`) When using a more recent version of Ghostscript, you do not need to generate a `.pdfmark` file for this purpose. IMPORTANT: The `asciidoctor-pdf-optimize` is not guaranteed to reduce the size of the PDF file. It may actually make the PDF larger. You should probably only consider using it if the file size of the original PDF is several megabytes. If you have difficulty getting the `rghost` gem installed, or you aren't getting the results you expect, you can try the optimizer provided by hexapdf instead. === hexapdf Another option to optimize the PDF is https://hexapdf.gettalong.org/[hexapdf^] (gem: hexapdf, command: hexapdf). Before introducing it, though, it's important to point out that its license is AGPL. If that's okay with you, read on to learn how to use it. First, install the hexapdf gem using the following command: $ gem install hexapdf You can then use it to optimize your PDF as follows: $ hexapdf optimize --compress-pages --force basic-example.pdf basic-example.pdf This command does not manipulate the images in any way. It merely compresses the objects in the PDF and prunes any unreachable references. But given how much waste Prawn leaves behind, this turns out to reduce the file size substantially. You can hook this command directly into the converter by providing your own implementation of the `Optimizer` class. Start by creating a Ruby file named [.path]_optimizer-hexapdf.rb_, then populate it with the following code: .optimizer-hexapdf.rb [source,ruby] ---- require 'hexapdf/cli' class Asciidoctor::PDF::Optimizer def initialize(*) app = HexaPDF::CLI::Application.new app.instance_variable_set :@force, true @optimize = app.main_command.commands['optimize'] end def optimize_file path options = @optimize.instance_variable_get :@out_options options.compress_pages = true #options.object_streams = :preserve #options.xref_streams = :preserve #options.streams = :preserve # or :uncompress @optimize.execute path, path nil rescue # retry without page compression, which can sometimes fail options.compress_pages = false @optimize.execute path, path nil end end ---- To activate your custom optimizer, load this file when invoking the `asciidoctor-pdf` using the `-r` flag and set the `optimize` attribute as well using the `-a` flag. $ asciidoctor-pdf -r ./optimizer-hexapdf.rb -a optimize basic-example.adoc Now you can convert and optimize all in one go. To see more options that `hexapdf optimize` offers, run: $ hexapdf help optimize For example, to make the source of the PDF a bit more readable (though less optimized), set the stream-related options to `preserve` (e.g.,, `--streams preserve` from the CLI or `options.streams = :preserve` from the API). You can also disable page compressioin (e.g., `--no-compress-pages` from the CLI or `options.compress_pages = false` from the API). hexapdf also allows you to add password protection to your PDF, if that's something you're interested in doing. ifndef::env-site[] == Contributing See the <>. To help develop {project-name}, or to simply use the development version, refer to the <>. [[resources,Links]] == Resources * https://groups.google.com/forum/#!msg/prawn-ruby/MbMsCx862iY/6ImCsvLGfVcJ[Discussion about image quality in PDFs] == Authors {project-name} was written by https://github.com/mojavelinux[Dan Allen] and https://github.com/graphitefriction[Sarah White] of OpenDevise Inc. on behalf of the Asciidoctor Project. == Copyright Copyright (C) 2014-present OpenDevise Inc. and the Asciidoctor Project. Free use of this software is granted under the terms of the MIT License. For the full text of the license, see the link:LICENSE[] file. Refer to the <> file for information about third-party Open Source software in use. ruby-asciidoctor-pdf-1.6.2/Rakefile000066400000000000000000000003451416357056400172330ustar00rootroot00000000000000# frozen_string_literal: true $default_tasks = [] # rubocop:disable Style/GlobalVars Dir.glob('tasks/*.rake').each {|file| load file } task default: $default_tasks unless $default_tasks.empty? # rubocop:disable Style/GlobalVars ruby-asciidoctor-pdf-1.6.2/asciidoctor-pdf.gemspec000066400000000000000000000050351416357056400222060ustar00rootroot00000000000000begin require_relative 'lib/asciidoctor/pdf/version' rescue LoadError require 'asciidoctor/pdf/version' end Gem::Specification.new do |s| s.name = 'asciidoctor-pdf' s.version = Asciidoctor::PDF::VERSION s.summary = 'Converts AsciiDoc documents to PDF using Asciidoctor and Prawn' s.description = 'An extension for Asciidoctor that converts AsciiDoc documents to PDF using the Prawn PDF library.' s.authors = ['Dan Allen', 'Sarah White'] s.email = 'dan@opendevise.com' s.homepage = 'https://asciidoctor.org/docs/asciidoctor-pdf' s.license = 'MIT' # NOTE required ruby version is informational only; it's not enforced since it can't be overridden and can cause builds to break #s.required_ruby_version = '>= 2.5.0' s.metadata = { 'bug_tracker_uri' => 'https://github.com/asciidoctor/asciidoctor-pdf/issues', 'changelog_uri' => 'https://github.com/asciidoctor/asciidoctor-pdf/blob/main/CHANGELOG.adoc', 'mailing_list_uri' => 'http://discuss.asciidoctor.org', 'source_code_uri' => 'https://github.com/asciidoctor/asciidoctor-pdf' } # NOTE the logic to build the list of files is designed to produce a usable package even when the git command is not available begin files = (result = `git ls-files -z`.split ?\0).empty? ? Dir['**/*'] : result rescue files = Dir['**/*'] end s.files = files.grep %r/^(?:(?:data|lib)\/.+|docs\/theming-guide\.adoc|LICENSE|(?:CHANGELOG|NOTICE|README)\.adoc|\.yardopts|#{s.name}\.gemspec)$/ s.executables = (files.grep %r/^bin\//).map {|f| File.basename f } s.require_paths = ['lib'] #s.test_files = files.grep %r/^(?:test|spec|feature)\/.*$/ s.add_runtime_dependency 'asciidoctor', '~> 2.0' s.add_runtime_dependency 'prawn', '~> 2.4.0' # NOTE must use prawn-table from head (defined in Gemfile) for full functionality s.add_runtime_dependency 'prawn-table', '~> 0.2.0' s.add_runtime_dependency 'prawn-templates', '~> 0.1.0' s.add_runtime_dependency 'prawn-svg', '~> 0.32.0' s.add_runtime_dependency 'prawn-icon', '~> 3.0.0' s.add_runtime_dependency 'safe_yaml', '~> 1.0.0' s.add_runtime_dependency 'concurrent-ruby', '~> 1.1' s.add_runtime_dependency 'treetop', '~> 1.6.0' s.add_development_dependency 'rake', '~> 13.0.0' s.add_development_dependency 'rspec', '~> 3.10.0' s.add_development_dependency 'pdf-inspector', '~> 1.3.0' # Asciidoctor PDF supports Rouge >= 2 (verified in CI build using 2.0.0) s.add_development_dependency 'rouge', '~> 3.0' s.add_development_dependency 'coderay', '~> 1.1.0' s.add_development_dependency 'chunky_png', '~> 1.4.0' end ruby-asciidoctor-pdf-1.6.2/bin/000077500000000000000000000000001416357056400163345ustar00rootroot00000000000000ruby-asciidoctor-pdf-1.6.2/bin/asciidoctor-pdf000077500000000000000000000014401416357056400213330ustar00rootroot00000000000000#!/usr/bin/env ruby # frozen_string_literal: true if File.file?(asciidoctor_pdf = (File.expand_path '../../lib/asciidoctor/pdf.rb', __FILE__)) require asciidoctor_pdf else require 'asciidoctor/pdf' end require 'asciidoctor/cli' options = Asciidoctor::Cli::Options.new backend: 'pdf', header_footer: true # FIXME provide an API in Asciidoctor for sub-components to print version information unless ARGV != ['-v'] && (ARGV & ['-V', '--version']).empty? $stdout.write %(Asciidoctor PDF #{Asciidoctor::PDF::VERSION} using ) options.print_version exit 0 end # FIXME This is a really bizarre API. Please make me simpler. case (result = options.parse! ARGV) when Integer exit result else invoker = Asciidoctor::Cli::Invoker.new options GC.start invoker.invoke! exit invoker.code end ruby-asciidoctor-pdf-1.6.2/bin/asciidoctor-pdf-optimize000077500000000000000000000007331416357056400231750ustar00rootroot00000000000000#!/usr/bin/env ruby # frozen_string_literal: true optimizer = File.absolute_path '../lib/asciidoctor/pdf/optimizer.rb', __dir__ if File.exist? optimizer require optimizer else require 'asciidoctor/pdf/optimizer' end args = ARGV.dup unless (filename = args.pop) warn 'asciidoctor-pdf-optimize: Please specify a PDF file to optimize.' exit 1 end quality = args[0] == '--quality' ? args[1].to_s : '' (Asciidoctor::PDF::Optimizer.new quality).optimize_file filename ruby-asciidoctor-pdf-1.6.2/data/000077500000000000000000000000001416357056400164755ustar00rootroot00000000000000ruby-asciidoctor-pdf-1.6.2/data/fonts/000077500000000000000000000000001416357056400176265ustar00rootroot00000000000000ruby-asciidoctor-pdf-1.6.2/data/fonts/ABOUT-mplus1mn-subset000066400000000000000000000024571416357056400235100ustar00rootroot00000000000000M+ fonts are generated from the M+ outline fonts TESTFLIGHT 63a retrieved from http://mplus-fonts.osdn.jp/mplus-outline-fonts/download/index-en.html. The following changes were made using fontforge to produce mplus1mn-*-ascii.ttf fonts: * Subsetted to include (ascii variant): ** Non-visible Characters (U+00a0) ** Basic Latin (U+0020–U+007e) ** Enclosed Numbers (U+2460–U+2473, U+2776–U+277f, U+24eb–U+24f4) (M+ 1mn Regular only) ** Box Drawing Symbols (U+2500–U+257f) ** .notdef glyph * Subsetted to include (subset variant): ** Non-visible Characters (U+00a0) ** Basic Latin (U+0020–U+007e) ** Latin-1 Supplement (U+00a0–U+00fd) ** Latin Extended-A (U+0100–U+017f) ** Greek Alphabet (U+0391–U+03c9) ** Cyrillic (U+0400–U+04ff) ** Assorted Symbols (U+20ac) ** Enclosed Numbers (U+2460–U+2473, U+2776–U+277f, U+24eb–U+24f4) (mplus1mn-regular only) ** Box Drawing Symbols (U+2500–U+257f) ** .notdef glyph * Added BOM (U+feff) and line feed (U+000a) characters (from blank) * Generated old-style kern table (neither Apple or OpenType) (required to make kerning work in Prawn) (flags: 0x90) * Removed Truetype instructions (information not used by Prawn) (flags: 0x08) * Generated with PS Glyph Names option enabled (didn't use 0x04 flag) * Generate flags used, in total: 0x90 + 0x08 ruby-asciidoctor-pdf-1.6.2/data/fonts/ABOUT-mplus1p-subset000066400000000000000000000026351416357056400233330ustar00rootroot00000000000000M+ fonts are generated from the M+ outline fonts TESTFLIGHT 63a retrieved from http://mplus-fonts.osdn.jp/mplus-outline-fonts/download/index-en.html. The following changes were made using fontforge to produce mplus1p-regular-fallback.ttf font: * Subsetted to include: ** Non-visible Characters (U+00a0) ** Basic Latin (U+0020–U+007e) ** Latin-1 Supplement (U+00a0–U+00fd) ** Latin Extended-A (U+0100–U+017f) ** Latin Extended-B (U+0180–U+024f) ** IPA (U+0259, U+02b0–U+02ff) ** Greek (U+0370–U+03ff) ** Cyrillic (U+0400–U+04ff) ** Vietnamese (U+01a0–U01b0, U+1ea0–U1ef9) ** CJK (U+4e00–U+9fff, U+3000–U+303f) (mostly Japanese, limited selection based on what M+ supports) ** Mathematical Operators (U+2200–U+22ff) ** General Punctuation (U+2000–U203a) ** Geometric Shapes (U+25a0–U25ff) ** Assorted Symbols (U+20ac, U+2122, U+21d0–U+21d5, U+2190–U+2195, U+2610–U+2611, U+2713) ** .notdef glyph * Added BOM (U+feff), hair space (U+200a), zero-width space (U+200b) and line feed (U+000a) characters (from blank) * Manually added non-breaking hyphen (U+2011) from hyphen (U+002d) * Generated old-style kern table (neither Apple or OpenType) (required to make kerning work in Prawn) (flags: 0x90) * Removed Truetype instructions (information not used by Prawn) (flags: 0x08) * Generated with PS Glyph Names option enabled (didn't use 0x04 flag) * Generate flags used, in total: 0x90 + 0x08 ruby-asciidoctor-pdf-1.6.2/data/fonts/ABOUT-notoemoji-subset000066400000000000000000000003461416357056400237320ustar00rootroot00000000000000Noto Emoji font is generated from the google-noto-emoji-fonts (commit 16151a2312a1f8a7d79e91789d3cfe24559d61f7). Some glyphs have been removed that conflict with the other built-in fonts to produce the notoemoji-subset.ttf font. ruby-asciidoctor-pdf-1.6.2/data/fonts/ABOUT-notoserif-subset000066400000000000000000000025741416357056400237440ustar00rootroot00000000000000Noto Serif fonts are generated from the google-noto-serif-fonts-20161022 Fedora RPM package (commit 86b2e553c3e3e4d6614dadd1fa0a7a6dafd74552). The following changes were made using fontforge to produce the notoserif-*-subset.ttf fonts: * Mapped single arrows <- (U+2190) and -> (U+2192) to double arrows <= (U+21d0) and => (U+21d2) * Manually added non-breaking hyphen (U+2011) from hyphen (U+002d) * Moved arrows (U+21d0, U+21d2, U+2190, U+2192) up in line to align with middle of X * Subsetted to include: ** Non-visible Characters (U+feff, U+00a0) ** Basic Latin (U+0020–U+007e) ** Latin-1 Supplement (U+00a0–U+00fd) ** Latin Extended-A (U+0100–U+017f) ** Greek (U+0370–U+03ff) ** Cyrillic (U+0400–U+04ff) ** Vietnamese (U+01a0–U01b0, U+1ea0–U1ef9) ** Mathematical Operators (U+2200–U+22ff) ** General Punctuation (U+2000–U203a) ** Geometric Shapes (U+25a0–U25ff) ** Assorted Symbols (U+20ac, U+2122, U+21d0, U+21d2, U+2190, U+2192) ** .notdef glyph * Imported ballot boxes from Font Awesome (U+2610, U+2611) (Noto Serif Regular only) * Added line feed character (U+000a) * Generated old-style kern table (neither Apple or OpenType) (required to make kerning work in Prawn) (flags: 0x90) * Removed Truetype instructions (information not used by Prawn) * Generated with PS Glyph Names option enabled (didn't use 0x04 flag) * Generate flags used, in total: 0x90 + 0x08 ruby-asciidoctor-pdf-1.6.2/data/fonts/LICENSE-mplus000066400000000000000000000005331416357056400217720ustar00rootroot00000000000000M+ FONTS Copyright (C) 2002-2019 M+ FONTS PROJECT - LICENSE_E These fonts are free software. Unlimited permission is granted to use, copy, and distribute them, with or without modification, either commercially or noncommercially. THESE FONTS ARE PROVIDED "AS IS" WITHOUT WARRANTY. http://mplus-fonts.osdn.jp ruby-asciidoctor-pdf-1.6.2/data/fonts/LICENSE-notoserif000066400000000000000000000261351416357056400226500ustar00rootroot00000000000000 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ruby-asciidoctor-pdf-1.6.2/data/fonts/mplus1mn-bold-ascii.ttf000066400000000000000000000421041416357056400241260ustar00rootroot00000000000000FFTMh@OS/29CVcmapn(jcvt S , fpgm/egasp@glyf)$B *headdq6hheawwT$hmtxZK8loca(| 8maxp0x name5xpostg;pTprep+.vhea@$vmtxA 8 7_< y3V\3Z,1   jM+ @ \tZ3@@l!WAn_"#d)2IF9M9A(/}27<> >-4MW#2P2>_<>9<-2 %C)d-n7A9-/C2A_9A7<(>/aC7A(-#H7A-TTTTTTTdH ~%K%l %%Pd`  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abc,K*PXJvY#?+X=YK*PX}Y ԰.-, ڰ +-,KRXE#Y!-,i @PX!@Y-,+X!#!zXYKRXXY#!+XFvYXYYY-, \Z-,"PX \\Y-,$PX@\\Y-, 9/- , }+XY %I# &JPXea PX8!!Ya RX8!!YY- ,+X!!Y- , Ұ +- , /+\X G#Faj X db8!!Y!Y- , 9/ GFa# #JPX#RX@8!Y#PX@e8!YY-,+X=!! ֊KRX #I UX8!!Y!!YY-,# /+\X# XKS!YX&I## I#a8!!!!Y!!!!!Y-, ڰ+-, Ұ+-, /+\X G#Faj G#F#aj` X db8!!Y!!Y-, %Jd# PX<Y-,@@BBKcKc UX RX#b #Bb #BY @RX CcB CcB ce!Y!!Y-,Cc#Cc#-KPXYF+X!YKRX!Y+\XY+!y(>n&4J`8f8l~B\0H^|,^ >Vn(Lt " > V h  * \ ~  H V  6 ^ " 2 B R b r  *>Rh~ "4J`r*@Vj|4Ld~2L`t,F\r6Nf PP!*3!'3#! f!X=3#53iጌW 3#3#P܂P ,7537#53733733#3##7##737A7AiNi4>5>hNiMVWWV7A/%+#5&'55.546;53&'23654'#]4,X(1*/4,d]X#,$WT VUkR?dm fQC]zzUЌ9Z7Q[ X g9>B 3#U ne 73#&nee4깹_e #6'3ee4깹"W7''7'7'0!kWOPWk!Af!v??v!fA#2& 3##5#5350k&SS~^#673_)+dQ75!d,SSL353) #`A2 2".6.#"32>54'T//TT//; &!' (!'AAAw)*#.s!2).s:+Ig3'573oq`bf&F23!554&#"56V[q~+,CXPc`\ܐWW ;6;^49 2#"'53254&+532654#"56]dxSMHK~HXQHhCQXYO& `)E=X32&2654&#"&@71;ZRaeFS,2`OA<6c/)%-.-)Vz+nw8J_GeZ@EQcMA !#5!ArvWuZW^#( )2"&5475.54654&#"3254f819?pls-7Z-)/-K`61h_U4YhEagga9d7Tc2424fn"l<=yl/ ""3254&'2#"'53267##"&546/(',Z*,nX2_PA<6:@91:VWaE]^F\JVI_Vz+uwE05353z}~T0 67353})+M#2 N%5%Ezdn75!5!7zuRRRR< N55%5<zEdnd>2#4>7>54#"5653]fi"cRb] VL&C! 'H*4\+#/Q9f*{!*2#"&54632354&#"327#"&546275&#"A\HDAA% /*QMRT>AAK{|u: {Aavre +0"[ij٢5  33#'#3# t&&7D&W>"%#"'6324&+32632654#"VRNT?4:MmBG*">=D@o=V  hFHBA&7=g-"327#"32#5&,3;9FK ##333#ppxy^@_3!}W####333#c>_9b&=<~%kl>/&< 3333##26x66x6%^11^^11{{{JDDD> 4&#"3267#"'#632a;>"%>;mqu#pSWxnSJKZxsj"26".>2#.6x66x6rM^11^^114'@ t6{{{JDDD$]6O=9#'.+#63232654&#"p)>s:)('pSWwo'L@<=" -#]6'i/jMZd-##5!2p}WW2"&532653e]q(b(m \lM87Nl73#3rosrdv& 3333###u#7Y5%dA2;lAq&% 33###[\tz\[v$tf 33#kluqT@C !3!55#CmWWW*e3!!HH)3#)`A`der#5!!53 HcH3##g{}>z-e5!-HHnm*#&'3m_`@*72#"&546;54&#"56#"327nMR]bkyz5HZYHA4/" Pv XPV[;%$V 24+/ A #"'36324&#"326jraIn-2^[n+,4$54{ ~gU" V9#5&#"327#"&532i 9@J@59;@q|H:Js_]``R- %27&#"'463253#"&$4,+4[^2-nIarjD M"UgjV~( {/7327#"32%3.#"?=:HKD`^**-,RES NREBC354632&#"3###CnFU7-", nn:fP R3= Q]2526=#"4632327&#"sho)/lzXHm_+ <7TZQv,~>NA2#4&#"#36"QJk -1&nn7Ua@N2(h_T 3##753_pq}}9[ 7#53!52653ZXQTT}}A #'#37ЁnnH7%3##53-QQQ632632#4&#"#4&#"#>O9 ,7L7edi&9SzNN<632#4&#"#$ "3254&#"'#632$ +_3/)nN\si gU }/$ 4632#5#"327&#"/is\Nn).n_+ $63} 2W Ua"#6uhnS^4C "#"'532654&'.54632&W#*jMe\_MRI5.$0_P^]ZLRA" JIHN X'!$ $ M@FKS7#327#"&5#5353/*+/:[GggmQ;![ D\ QA3#"&53327EnJeqRk%1'*Jec6'(733#3anrP7333###3=U9$[Az59aMFZ..ZFMa9>04I=I CHSyMySHC I=I$+*3cAe%.=4&+532;#"+5326=467840>9aMF,-//-,FMa9>044I=I CHS?:M:?SHC I=I-7576?'&/.-u+$u+$bc%)< lbc%)< J5!J<<5!t\3<tN\3J 53!53!53!53!53!53AkkkkkkJ<<<<<<<<<<<< 53!53!53!53!53!53Akkkkkk\ 53'53'53'53'53'53<<<<<<<<<<?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnoglyph1glyph2uni000Auni00A0SF100000uni2501SF110000uni2503uni2504uni2505uni2506uni2507uni2508uni2509uni250Auni250BSF010000uni250Duni250Euni250FSF030000uni2511uni2512uni2513SF020000uni2515uni2516uni2517SF040000uni2519uni251Auni251BSF080000uni251Duni251Euni251Funi2520uni2521uni2522uni2523SF090000uni2525uni2526uni2527uni2528uni2529uni252Auni252BSF060000uni252Duni252Euni252Funi2530uni2531uni2532uni2533SF070000uni2535uni2536uni2537uni2538uni2539uni253Auni253BSF050000uni253Duni253Euni253Funi2540uni2541uni2542uni2543uni2544uni2545uni2546uni2547uni2548uni2549uni254Auni254BSF430000SF240000SF510000SF520000SF390000SF220000SF210000SF250000SF500000SF490000SF380000SF280000SF270000SF260000SF360000SF370000SF420000SF190000SF200000SF230000SF470000SF480000SF410000SF450000SF460000SF400000SF540000SF530000SF440000uniFEFFEXy3V Z\\\\\P-xxPZZl6 xxxxxx,,xxxxxxxxxxZZ2JnJnJxJnddnJJJJJJJTTTTTTZ2Z\TTTTTTT\ruby-asciidoctor-pdf-1.6.2/data/fonts/mplus1mn-bold-subset.ttf000066400000000000000000001534341416357056400243540ustar00rootroot00000000000000FFTMhxOS/29CVcmap Tcvt S fpgm/TegasppglyfX+1headd6hheawT$hmtxdT dlocao×maxpw<x namedpostƷ1\prep+.vheaQ#͔$vmtx\NZ͸ d -(&_< y3V3ZYY81   jM+ @ \tZ3@@l!WAn_"#d)2IF9M9A(/}27<> >-4MW#2P2>_<>9<-2 %C)d-n7A9-/C2A_9A7<(>/aC7A(-#H7A-F=4nA(8_Ki2A!qA2   /      -MM2MPP2P<*2222B77727779////__2_(<(((((7AA2A# 7 7 7-9-2-9-22*-M/H/M/M/2/#2#2#2#222MMP_HHP_P_ 22>AA_7_7_(_(7<<<<22 <<(((9a9a22<C22<C22-7--72A2A2A2A(-2A #CHCH22 >k MC2P> <H2>M-%#P?<=8(?(<(A#A(%(>1#)= &#MM k-<PP2 ><#2 >>kM 9<<>22>--#%)*!CF77Cq/?AAC8(8>90# -/1# (HJ//q1C__9CA#7((>Kkq(fnTTTTTTT2  ~_cu  & !"!!!!%K%l br  & !"!!!!%%Pywi_Q5=[ZY   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`absefjyqlwkthxom}Xdon~c9zr{,K*PXJvY#?+X=YK*PX}Y ԰.-, ڰ +-,KRXE#Y!-,i @PX!@Y-,+X!#!zXYKRXXY#!+XFvYXYYY-, \Z-,"PX \\Y-,$PX@\\Y-, 9/- , }+XY %I# &JPXea PX8!!Ya RX8!!YY- ,+X!!Y- , Ұ +- , /+\X G#Faj X db8!!Y!Y- , 9/ GFa# #JPX#RX@8!Y#PX@e8!YY-,+X=!! ֊KRX #I UX8!!Y!!YY-,# /+\X# XKS!YX&I## I#a8!!!!Y!!!!!Y-, ڰ+-, Ұ+-, /+\X G#Faj G#F#aj` X db8!!Y!!Y-, %Jd# PX<Y-,@@BBKcKc UX RX#b #Bb #BY @RX CcB CcB ce!Y!!Y-,Cc#Cc#-KPXYF+X!YKRX!Y+\XY+!y(>n&4J`8f8l~B\0H^|,^ >Vn(Lt " > V h  * \ ~  H V  X t  T p :ft$V*Lr&Zx4TH8\(`$`,Z6P 4r6^(f*X8jBhPr  B z !!6!Z!!!""2"P"f""""##$#P#z###$$$0$H$^$v$$$$$%%(%J%j%%%%&&D&p&&&'('T'''( (B(\((()")^))*"*^***++8+R+|++,,:,d,,,- -J-z---.".D.h....//,/F/`/////00,0B0^0r000001$1>1P1f1112202R2223343d33344N4j444445 5H5f5~55566&6Z6x66677:7P7t7777808^8888999D9x9999::,:R:n:::::;";D;V;r;;;;<<*">D>t>>>>? ? ?>?R?v????@@(@F@\@x@@@AAJAzAABB$BJB|BBBCC,CRCrCCCCD,DlDDDEE,E>EPEhE~EEEEF,FVFlFFFFFFFGGBGjGGGHH.H>HNH^HnH~HHHHHHHIII&I6IJI^ItIIIIIIJJJ.J@JVJlJ~JJJJJJKK"K6KLKbKvKKKKKKLL(L@LXLpLLLLLM M&M>MXMlMMMMMMN N"N8NRNhN~NNNNOO OBOZOrOOOOP P,P\P\!*3!'3#! f!X=3#53iጌW 3#3#P܂P ,7537#53733733#3##7##737A7AiNi4>5>hNiMVWWV7A/%+#5&'55.546;53&'23654'#]4,X(1*/4,d]X#,$WT VUkR?dm fQC]zzUЌ9Z7Q[ X g9>B 3#U ne 73#&nee4깹_e #6'3ee4깹"W7''7'7'0!kWOPWk!Af!v??v!fA#2& 3##5#5350k&SS~^#673_)+dQ75!d,SSL353) #`A2 2".6.#"32>54'T//TT//; &!' (!'AAAw)*#.s!2).s:+Ig3'573oq`bf&F23!554&#"56V[q~+,CXPc`\ܐWW ;6;^49 2#"'53254&+532654#"56]dxSMHK~HXQHhCQXYO& `)E=X32&2654&#"&@71;ZRaeFS,2`OA<6c/)%-.-)Vz+nw8J_GeZ@EQcMA !#5!ArvWuZW^#( )2"&5475.54654&#"3254f819?pls-7Z-)/-K`61h_U4YhEagga9d7Tc2424fn"l<=yl/ ""3254&'2#"'53267##"&546/(',Z*,nX2_PA<6:@91:VWaE]^F\JVI_Vz+uwE05353z}~T0 67353})+M#2 N%5%Ezdn75!5!7zuRRRR< N55%5<zEdnd>2#4>7>54#"5653]fi"cRb] VL&C! 'H*4\+#/Q9f*{!*2#"&54632354&#"327#"&546275&#"A\HDAA% /*QMRT>AAK{|u: {Aavre +0"[ij٢5  33#'#3# t&&7D&W>"%#"'6324&+32632654#"VRNT?4:MmBG*">=D@o=V  hFHBA&7=g-"327#"32#5&,3;9FK ##333#ppxy^@_3!}W####333#c>_9b&=<~%kl>/&< 3333##26x66x6%^11^^11{{{JDDD> 4&#"3267#"'#632a;>"%>;mqu#pSWxnSJKZxsj"26".>2#.6x66x6rM^11^^114'@ t6{{{JDDD$]6O=9#'.+#63232654&#"p)>s:)('pSWwo'L@<=" -#]6'i/jMZd-##5!2p}WW2"&532653e]q(b(m \lM87Nl73#3rosrdv& 3333###u#7Y5%dA2;lAq&% 33###[\tz\[v$tf 33#kluqT@C !3!55#CmWWW*e3!!HH)3#)`A`der#5!!53 HcH3##g{}>z-e5!-HHnm*#&'3m_`@*72#"&546;54&#"56#"327nMR]bkyz5HZYHA4/" Pv XPV[;%$V 24+/ A #"'36324&#"326jraIn-2^[n+,4$54{ ~gU" V9#5&#"327#"&532i 9@J@59;@q|H:Js_]``R- %27&#"'463253#"&$4,+4[^2-nIarjD M"UgjV~( {/7327#"32%3.#"?=:HKD`^**-,RES NREBC354632&#"3###CnFU7-", nn:fP R3= Q]2526=#"4632327&#"sho)/lzXHm_+ <7TZQv,~>NA2#4&#"#36"QJk -1&nn7Ua@N2(h_T 3##753_pq}}9[ 7#53!52653ZXQTT}}A #'#37ЁnnH7%3##53-QQQ632632#4&#"#4&#"#>O9 ,7L7edi&9SzNN<632#4&#"#$ "3254&#"'#632$ +_3/)nN\si gU }/$ 4632#5#"327&#"/is\Nn).n_+ $63} 2W Ua"#6uhnS^4C "#"'532654&'.54632&W#*jMe\_MRI5.$0_P^]ZLRA" JIHN X'!$ $ M@FKS7#327#"&5#5353/*+/:[GggmQ;![ D\ QA3#"&53327EnJeqRk%1'*Jec6'(733#3anrP7333###3=U9$[Az59aMFZ..ZFMa9>04I=I CHSyMySHC I=I$+*3cAe%.=4&+532;#"+5326=467840>9aMF,-//-,FMa9>044I=I CHS?:M:?SHC I=I-7576?'&/.-u+$u+$bc%)< lbc%)< $=533irFL.46753&'67#U]]UP33242433PBQR V-=3#3!5>=#5354632&#"1'<<^V33,/*%'P_s!W_LGWPtgmX/L#7'#"''7&47'7632264&#"]C8BB8C/45/B9CC9B/544(99()99 C9C/h/C9CC9C/h/C9C8R89P933##5#533luoykYYWWt,33dddhh4j'5%#"'532654'.547&54632&#"'>54'&rMi\[UZV+0Rk`IMj\[SZT+1Rk`!,j !,j *YR^#[&*&=\Cb/*YR^"\&*&=\Cb6&O6&On]53!53ii] !632&#"327#26&""&62|)'%))T %'*edde'ֈև:AS=Gͯ<A""&54;54&#"56325!#"327OU+Cr}94*%0F@/D@^wIIO))"% (2 '57'57ƒ΄zzvZvzzvZ85!#58nn`_R75!_6`` #-7#632#'.+26&""&62%32654&#"E.3D=8"H 4dde'ֈև'! :AS 8mqͯ<Ĭ)"K5!K^HHi462"&264&"iUxUUx(8((8xUUxU8''8'25!3##5#5352j([[ZZ$g"56323#5654&&61:59ܑ&<"<:i88b%r"5632#"'53254&+532654&162vHN24,0I*6 1+;eS^=M*$9"%8N3#dA$#"'#3327Je8 kk%1'*6'!t "&46;###JjjJV4UJw753ͪq$x73#"'532654b$MM67-1 #0nC^!,$>#'573>HhiH$s8><A 2"&45!&264&"TTTrT$$T$ggg@II???22 55?5572̃K̄vZvzzvZvz $%35#%573##5#533o]^wpKhjGG2EM2w7|8>7>73327#"&Ňi"cRb]f]frJ&C! 'H*4\+#/Q9f*V #'###3#hdDD&ptůPWU& #7###3#djLDD&ptůPWU&  #73#'###3#G|~GBDD&ptWU& #463232>53#"'&#"###3#M$#&H,X$#&H,DD&ptaP8" ##aP8" ##WU&  53!53###3#jhfDD&pt%WU&  ###3#"&4624&"254&#"?NOu9hTUHpnn-9"DD53#"'&#"Oiont$#&H,W$#&H,&LaP8" ##aP8" ## 2".6#'26&"^11^^11idPx66x6DDD%{J{{ 2".6#726&"^11^^117di2x66x6DDD%{J{{ 2".67#73#'26&"^11^^11F}}F=x66x6DDD{J{{ #+2".6'463232>53#"'&#"26&"^11^^11$#&H,W$#&H,x66x6DDDtaP8" ##aP8" ##9{J{{ 2".6753!5326&"^11^^11iix66x6DDD({J{{*+ %''7'77VzzVVzzVU<<<<&72>54'"''7&54>327&#"(/1J-Y1"1^MI-Y1#1^0<6M/q=.#W6.aVD6.aXDt#{->2732653"&#'2q(b(m]]idM87Nl\\s2732653"&#72q(b(m]]TdiM87Nl\\s2732653"&#73#'2q(b(m]]F}}FM87Nl\\D2732653"&53!532q(b(m]]iiM87Nl\\ӑ 3#3#7luoykdjT@?B632#"'#332654&#"vmmr&pp?==?"blx{oBQKB7&34632#"'73254&54654&#"7Xo]g++87OK-C2#9oZ&*5&eTI&^I Of*NQVA'"8V7#"&546;54&#"5632#'#"327bkyz5HZYOnMR]idHA4/% XPV[;%$V Pv 24+. 7#"&546;54&#"5632#7#"327bkyz5HZYOnMR%diVHA4/% XPV[;%$V Pv 24+. 2'"&546;54&#"5632#73#'#"327bkyz5HZYOnMRhF}}FKHA4/% XPV[;%$V Pv ؀624+. 7-7"&546;54&#"5632463232>53#"'&#"#"327bkyz5HZYOnMR$#&H,W$#&H,HA4/% XPV[;%$V Pv LaP8" ##aP8" ##24+. 7'"&546;54&#"563253!53#"327bkyz6HZYOnMRDiipHA4/& XPV[:&$V Pv g24+. 7@'/"&546;54&#"5632#"327"&4624&"2bkyz6HZYOnMRHA4/&?RtRRt ):)): XPV[:&$V Pv 24+. tRRtR:)):)'.7746;54&#"5>32632#327#"'#"&%3.#"#"326[T MKP"?>?#&$63/R%$U4?ae '.,[`3&V33p~(X?UOOQ[;=81VK9$%5&#"327#"'532654'.532=9@J@77% MM67-1 #^gH:Jt_]`_R)47C^!" z/ #'3.#"327#"32hd3)*-,?=7KKD`^/REBRET / #73.#"327#"32djO)*-,?=7KKD`^/REBRET /#73#'3.#"327#"32G|~GY)*-,?=7KKD`^΀^REBRET /53!533.#"327#"32jh5)*-,?=7KKD`^]REBRET _m !##53'#'TpPidQ_ !##537#7Tp2diQ2 !##53'#73#'Tp[F}}FQƀ_ !##53'53!53Tp7iiQU(27&''7&'57 264&"!f#&nM _r\j..j.DI- _/;I+z6QQQ<'3#632#4&#"'463232>53#"'&#"nJezSl(6'\$#&H,W$#&H,*Jjc5(aP8" ##aP8" ##( #'"&62264&"idhhhj--j-.OOO( #7"&62264&"dithhhj--j-.OOO(#73#'"&62264&"F}}Fihhhj--j-΀(.OOO('463232>53#"'&#""&62264&"N$#&H,W$#&H,hhhj--j-BaP8" ##aP8" ##.OOO(53!53"&62264&"iihhhj--j-].OOO7N 353535!tttRR*#"''7&546327'2654'&#"H.%F0!hjH.%F1"hj5-j*5- 50E?r50EApROm$aOm$A3#"&53327#'EnJeqRk%1'Bid*Jec6'A3#"&53327#7EnJeqRk%1'@di*Jec6'23#"&53327#73#'EnJeqRk%1'MF}}F*Jec6'rA3#"&5332753!53EnJeqRk%1')ii*Jec6'#$ %3#73#7iqoRmodi|q 5! ###3#^6XDD&ptHKKWU&7#"&546;54&#"56325!#"327bkyz5HZYOnMR6OHA4/% XPV[;%$V Pv KK24+.   273"&53###3#PZ^_ZDD&pt\bW]]WbWU&7)"&546;54&#"5632273"&53#"327bkyz5HZYOnMRZ__ZHA4/% XPV[;%$V Pv bW]]W24+.  $###3327#"&54678@J@77;@q|H:F}}FJt^^`_R-5&#"327#"3253C 3;9FK8@J@77;@q|H:F}}FJt^^`_R4273#'34&#"3267#"'632F}}FrIPQHm:p\VHNPzF1{ E* %27&#"#"&546325373&3,,4Iarj[^2-HZE M"VfjUK {~53632#"'73#32>54&#"?NOu9hTUHpnn-9"DDJY-ɑD@YY 1s} -53533##"&54632527&#"n99Iarj[^2-A&4,+4N_v"TTW# "273"&53#53#"4632&#"327Z__Z~N\AN_v"TTW#53#53#"4632&#"327p*~N\AN_v"TTW##73#53#"4632&#"327d0~N\AN_v"TTW2#73#'33###3F}}F\qqmm'&^2#73#'#4&#"#3632F}}Fk-2%nn753#"'&#"53#5!#3M$#&H,X$#&H,TppTqqaP8" ##aP8" ##W,WWWM463232>53#"'&#"##53M$#&H,X$#&H,pBaP8" ##aP8" ##QP5!53#5!#3_6ppTppHKKW,WWW_ 5!##53_6AovKKQH 273"&5353#5!#3PZ^_ZYppTqq\bW]]WbW,WWWH 273"&53##53PZ^_ZpbW]]WblQP$353#5!#3#327#"&547PppTpp$1-75MMW,WWW&"^D75,_$327#"&547#53#53%0-75MMH#01K^C7H?Q}}P 353#5!#353PppTpppW,WWW%_T!##53TpQ V%#"'53265#5353#53#3XqUCT5.L/EEEEmS \0=iW&W,WWW53#53!526553##53@lhZXlR{}}QTT[^}}Q2%#"'53265#5!'#73#'YrUCT5.F}}FmS \0=W2 #53!5265#73#'ZX F}}FQTT[> 3###33#xzpp$Xd@^*A #'#3733#ЀnnXdHA #'#373Ёnn_ 73!37#7pdiWW믯7 %3##537#7-YdiQQQ믯_ 73!33#pXdWW7 %3##533#-[XdQQQ_ 3#3!3OsU?pwW( 3#3##53]sU wqQQ_ 533!38pp8W( 533##53bp8QQ 57373!kq,Z,(:Z:WX7575#5373#Lq,Z/Q8Z8Q[< #333##7ntioڛdi&<3#632#4&#"#7nJezSl(6'ܛdi*Jjc5(S< #333#3#ntip&Xd&<3#632#4&#"3#nJezSl(6'(Xd*Jjc5(2 #333#73#'3ntipOF}}F&423#632#4&#"?3#'3nJezSl(6'QF}}F*Jjc5( 3##73632#4&#"n273"&5326&"^11^^11ZZ__Zx66x6DDDbW]]W{J{{( 273"&53"&62264&"Z__Zhhhj--j-bW]]W.OOO 2".6#7##726&"^11^^11]i*\i-x66x6DDD%{J{{(#7##7"&62264&"ޜ\i+]ihhhj--j-.OOO3#3##"&6323#"_||+rjjr+o'00UW  W@..'64&"2"32632#27#"'3.#"66?"$A>?#L43/E("KaQQQR11p~(X?T556[<>X9 #'.+#632#732654#"Y)>s:)('pSWwop-djG'L@y"L#]6'jq-w;Ha "#63'#7ydn%dj^4믯9 #'.+#6323#32654#"Y)>s:)('pSWwopXd'L@y"L#]6'jq-v;Ha "#633#ydnٌXd^42$73#'3#'.+#632'32654#"F}}F`)?t:(('pSWwop'L@y"F#]7&jq-8;H273#'3"#63F}}Fydm~^4<##"'532654&'.54632&#"#7PrVaIL[28+2fSiaYOMN18ܛdi+T%3lU0g@751>/jMZdd+4lC $#"'532654&'.54632&#"#7#*jMe\_MRI5.$0_P^]ZLRJW՜dj" JIHN X'!$ $ M@FKS;2'#"'532654&'.54632&#"#73#'PrVaIL[28+2fSiaYOMN18OF}}F+T%3lU0g@751>/jMZdd+4=2 (#"'532654&'.54632&#"#73#'#+jMe\`MRJ5.%0_O^]YLRIXHF}}F" JIHN X'!$ $ M@FKS <$/#"'532654'#"'532654&'.54632&#"PrVn$MM57-1 #aIL[28+2fSiaYOMN18+T%3lU).:7C^!0g@751>/jMZdd+4C$.#"'532654'#"'532654&'.54632&#"#*jM`#MM67-1 # _MRI5.$0_P^]ZLRJW" JIf"/nC^! X'!$ $ M@FKS2'#"'532654&'.54632&#"?3#'3PrVaIL[28+2fSiaYOMN18QF}}F+T%3lU0g@751>/jMZdd+42 (#"'532654&'.54632&#"?3#'3#+jMe\`MRJ5.%0_O^]YLRIXJF}}F" JIHN X'!$ $ M@FKS-$#5!##"'532654&'•2MM67-1 # WW/97C^!& 7$$#327#"'532654'.5#5353/*+!)MM57-1 #3*ggmQ;!['27C^!% FI Q-#5!##73#'3•p9F}}FWW}F*#327#"&5#53533#/*+/:\GffnntTQ;![ E[ Q6-#5!#3##5#53•||p||WWYY7#3#327#"&=#535#5353/*+/:[GggggmQ\YD;![ D\XY\Q2'732653"&463232>53#"'&#"2q(b(m]]$#&H,W$#&H,M87Nl\\aP8" ##aP8" ##A'3#"&53327463232>53#"'&#"EnJeqRk%1($#&H,W$#&H,*Jec6'aP8" ##aP8" ##2732653"&5!2q(b(m]]-6M87Nl\\KKA3#"&533275!EnJeqRk%1(6*Jec6'KK2732653"&273"&532q(b(m]]wZ__ZM87Nl\\ bW]]WA3#"&53327273"&53EnJeqRk%1(Z__Z*Jec6'9bW]]W2732653"&"&4624&"22q(b(m]]TRtRRt ):)):M87Nl\\ntRRtR:)):)A@3#"&53327"&4624&"2EnJeqRk%1(@RtRRt ):)):*Jec6'tRRtR:)):)(732653"&#7##72q(b(m]]]i*\iM87Nl\\s-3#"&53327#7##7EnJeqRk%1(\i+]i*Jec6'2$732653+327#"&47.2q(b(m]k# 1-75MM 73M87Nl\!^Cn-ZA$327#"&547#"&533273EC1-75HR7qRk%1(nnR0^:062Jec6'A 333###33#73#'Y5%dA2;lAk#_F}}Fbq&瀯333###33#73#'U9$[Az5djQQQdFC #5!3!5'538mwqWWWW*H !3!55#753HcyqQQQd2 #5!3!5'73#'38l=F}}FWWWW*2 !3!55#?3#'3HdF}}FQQQd!#4632&#"nFU7-", .fP R3=  #3##3#D&ptlU&> "732654&+532654#"#"'632">=BG*D@o VRNT?4:MTAGHBU7=gL=V  hk3#!#pYW  #3+3#jXWlW&M 3#3!!^UWWC 5#5!3!58mWWWW2 ##333#Qmmqq^'& 2".65326&"^11^^11[x66x6DDDTT{J{{P )53#5!#3ppTppW,WW> 3###3xypp@^ ##3#{ptl&####333#c>_9b&=<~%kl>/&< ##333#ntip&H 35!5!5!HcOcWW^TT%WW 2".626&"^11^^11ox66x6DDD{J{{2!###2qm&}> 4&#"3267#"'#632a;>"%>;mqu#pSWxnSJKZxsM 3!55!#mczWW# WW-##5!2p}WW 33#3kupyT@53#5.6>4&i^VV^i^VV^,##,##VV `` Cp SSe SS% 33###3[tz[[vw$tf#%>53#5.533.$`PShSP`$h TV8~~8VT  "#535.54623#5>54&89-._.+mm+.`.-9|w$VW((WV$w|P )53#5!#353!53ppTppiiW,WWΑ 33#3753!53luqyjhT@K"3##&'#"&54632673'.#"32dakB[K_]M0G'g""v2")KAkz9T#`f]]vT\_?!%%#"&54675&54632&#";#"323#UUaj=1hj[RRUDaCT!!cSudhTQE3J!Z8LT >($MUL<$2#4&#"#673#zSl(6(mJjdJj?5(V* 27#"&573#^%44^HXd: \E[r="&5332654'353!53#7lQk#,-.#o"iidi Kdc5(axpwsgh!#&'#"&54632673'.#"32kB[K_]M0G'g""v2")KAkz9T#`f]]vT\_8$(3#4632#"'32654&+532654#"n]iac@5>Lni*0$+=8S8=j8N$ 7673#5&3%C{#o#zC%ͤ˿5(" 47&54632&#"'2654&'&\]?f^SRUDaExZ-(.j.*: 5%G@PZ >.vSfkQQkbL ?!%#"&54675&54632&#";#"32UUaj=1hj[RRUDaCT!!cShTQE3J!Z8LT >($MUL( 5#5!32#"'532654&#"&54hmIQSWFURB823=fnQQ;zPFJCT $$#lbt <$2#4&#"#6zSl(6'nJJj?5(V*( 2"&267'3."jjjo/b//b/dmmRmm 327#"&5/0%45^G: \E[rA #'#373Ёnn##'3#mqRorgm&mA$#"'#3327Je8 kk%1'*6'( 7>53#32*n6OraKhˊզC%,72#"'532654&#"54675.5475#5!";#"KWEURA9208S?:Ca_hWWYbKCJCT %' Eh  M5V-QQD;oSI("&62264&"dhhhj--j- .OOO ####5!ldlDIIQQ>$ 4&#"32#"'#463V00J +_n/)n\]_Sx132654#"&532#5&#"32#"'wT?92ajyH:i 9@G9FUw!%&Cs_]_a#  32;264&"\+`%Fj..j.;bRQQQ)##5!1oIQQ="&5332654'3lQk#,-.#o" Kdc5(axpws $"#5.5463"546325654&#".iXagO!,P<=3#5.=33.$`PShSP`$hU TV~~VT ]%7#"&547332=332>54'3#"&' 5$5F*_*  'd&  +`*E5$7 a38zw~~FQ̶QF~xy92M 3#3!!#'^hdUWWBM 3#3!!'53!53^jhUWW 6325>54#"##5!##1dj1.P%ooj݀ue?QWWk 3#!##7pY髜djWB-5&#"3#327#"32C 3;9FK< ~U\m<#"'532654&'.54632&#"PrVaIL[28+2fSiaYOMN18+T%3lU0g@751>/jMZdd+4P 353#5!#3PppTppW,WWWP 353#5!#353!53PppTppiiW,WWW%2%#"'53265#5!YrUCT5.mS \0=W $32>54."'632#"'##5265#5!Q   91:DAU_}j~N{`Z2UW %32654#"5632#"'##333; 4 ??GKL?VffVjWBR[guqY' 4&#"##5!#632#s +%ooj'5WEo:)WWRm> 3###3#7yzpp؜dj@^+< ##333##'JoitnFid&ů# 273"&5333#52673Z__Zd^v'loM3w\bW]]WvT[+V2` !#5#3331nmq|&  #3##3#D&ptlU&> 732654&#"5632#"'!#!=8?L\NhUANF:WW> "732654&+532654#"#"'632">=BG*D@o VRNT?4:MTAGHBU7=gL=V  hk3#!#pYW`%##>=!3#5##5Eh t"F,qmW,^Wd}M 3#3!!^UWW #####33333Hi6h6iHGf8h8fzKKz`229 2#"'53254&+532654#"56]dxSMHK~HX22QHhCQXYO& `)E=X 3###3xypp@^7265#5!###3.Mpw_oX8HW&Nve####333#c>_9b&=<~%kl>/&2 ##333#Qmmqq^'& 2".626&"^11^^11ox66x6DDD{J{{2!###2qm&}> 4&#"3267#"'#632a;>"%>;mqupSWxnSJKZws-5&#"327#"32C 3;9FK<\m-##5!2p}WW# 33#52673^v'loM3wdvT[+V53#5.6>4&i^VV^i^VV^,##,##VV `` =| UUq UU% 33###3\tz\[vw$tf)` %#5!333qmqW}}*%#"&533273#K-QJ6!!33632"'32654&#"kgOi GELAi" #&guqfASO=C 732654&#"5632#"'3!=8>L\NoUANF:WF53&#"#5632#"'532d k32&2>4."F:C$)ff)'A6;C$$CM$$ ;x3=֥=W8ww88ww85&54632##"#767&#"3powWSp'():s>"y@LL-qj0/'6]]H;7"&546;54&#"5632#"327bkyz5HZYOnMRHA4/" XPV[;%$V Pv 24+/ 7&#"3632#".=46322>54.#":7X?+IVQafHT-9z#!b,X Kj5s{6dUMIOhLC3254#"3254##"'632nwQTOL<18J=F>ͣYOZ,> Gq3#!#kQO#3!>=!3#5##5Df!=*liA=HGss/%#"32!32'3.#"KD`^?=:**-,bS REREB35##'3353373#'#4dHGa6d7`FHd5 ?!73254+532654#"5632#"'?PSc!!TC`EURS[ig1=jaUUh LUM$(> TL8[ J3EQA 73###3shpdvvA 73###3273"&53shpdTQZ_^ZvvbW]]WbC 73#'##3tukk)#5!###5265sKlt\l2,OTHW'2###333#Z;S;Z(v@8z'c;aT8 7#3353#5iill(2"&264&"hhhj--j-䀀OOO8###liG>$ "3254&#"'#632$ +_3/)nN\si gU }95&#"327#"&532= 9@J@77;@q|H:Js_]``Q0#5!##ĔkOOG# %33#52673as(mmH7s\W3\ $#5.467536'#.XaaXiXaaXiPPiPP ܋܋b ( - #'##337LJyUUuuYY/ %#5!333kilOrGG1%#"&=33273#J06eNk(61kk32&2>4."DSI(bb*IMUHHm00gyYppOSSSS;5&#"#"#767'.54632#BF)y)*' 7o;+57orQRkq/+? A;VH/%#"32!32#'3.#"KD`^?=:Xhd3)*-,bS RE/REB/%#"32!3253!533.#"KD`^?=:@jh5)*-,bS REREB#53533#632#"'532654&#"#Mn7=QIHP22&'*-2&n( .>( -Z-䀀G65GQG6533>32&#"#p[D83&*f~bLZ-K(2&#"#33>&)KtnM27T-JAdJ>$327#5.532#5&#" imoK32&#"3#3#327#"&'BBGobK?A:9@ @9:A?KboRRwWK]R''R]KWwm##'##3373###530 3CA57Km??..X'7!<<3D99RX5!'7'73;;DR99nfRt !! !!a(,((J?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a bcdefghjikmlnoqprsutvwxzy{}|~     !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~glyph1glyph2uni000Auni00A0uni00ADuni00B2uni00B3uni00B9AmacronamacronAbreveabreveAogonekaogonek Ccircumflex ccircumflex Cdotaccent cdotaccentDcarondcaronDcroatEmacronemacronEbreveebreve Edotaccent edotaccentEogonekeogonekEcaronecaron Gcircumflex gcircumflex Gdotaccent gdotaccentuni0122uni0123 Hcircumflex hcircumflexHbarhbarItildeitildeImacronimacronIbreveibreveIogonekiogonekIJij Jcircumflex jcircumflexuni0136uni0137 kgreenlandicLacutelacuteuni013Buni013CLcaronlcaronLdotldotNacutenacuteuni0145uni0146Ncaronncaron napostropheEngengOmacronomacronObreveobreve Ohungarumlaut ohungarumlautRacuteracuteuni0156uni0157RcaronrcaronSacutesacute Scircumflex scircumflexuni0162uni0163TcarontcaronTbartbarUtildeutildeUmacronumacronUbreveubreveUringuring Uhungarumlaut uhungarumlautUogonekuogonek Wcircumflex wcircumflex Ycircumflex ycircumflexZacutezacute Zdotaccent zdotaccentlongsAlphaBetaGammauni0394EpsilonZetaEtaThetaIotaKappaLambdaMuNuXiOmicronPiRhoSigmaTauUpsilonPhiChiPsiuni03A9 IotadieresisUpsilondieresis alphatonos epsilontonosetatonos iotatonosupsilondieresistonosalphabetagammadeltaepsilonzetaetathetaiotakappalambdauni03BCnuxiomicronrhosigma1sigmatauupsilonphichipsiomegauni0400uni0401uni0402uni0403uni0404uni0405uni0406uni0407uni0408uni0409uni040Auni040Buni040Cuni040Duni040Euni040Funi0410uni0411uni0412uni0413uni0414uni0415uni0416uni0417uni0418uni0419uni041Auni041Buni041Cuni041Duni041Euni041Funi0420uni0421uni0422uni0423uni0424uni0425uni0426uni0427uni0428uni0429uni042Auni042Buni042Cuni042Duni042Euni042Funi0430uni0431uni0432uni0433uni0434uni0435uni0436uni0437uni0438uni0439uni043Auni043Buni043Cuni043Duni043Euni043Funi0440uni0441uni0442uni0443uni0444uni0445uni0446uni0447uni0448uni0449uni044Auni044Buni044Cuni044Duni044Euni044Funi0450uni0451uni0452uni0453uni0454uni0455uni0456uni0457uni0458uni0459uni045Auni045Buni045Cuni045Duni045Euni045Funi0462uni0463uni0472uni0473uni0474uni0475uni0480uni0481uni0490uni0491uni04AEuni04AFuni04E8uni04E9Euro arrowleft arrowright arrowdblleft arrowdblrightSF100000uni2501SF110000uni2503uni2504uni2505uni2506uni2507uni2508uni2509uni250Auni250BSF010000uni250Duni250Euni250FSF030000uni2511uni2512uni2513SF020000uni2515uni2516uni2517SF040000uni2519uni251Auni251BSF080000uni251Duni251Euni251Funi2520uni2521uni2522uni2523SF090000uni2525uni2526uni2527uni2528uni2529uni252Auni252BSF060000uni252Duni252Euni252Funi2530uni2531uni2532uni2533SF070000uni2535uni2536uni2537uni2538uni2539uni253Auni253BSF050000uni253Duni253Euni253Funi2540uni2541uni2542uni2543uni2544uni2545uni2546uni2547uni2548uni2549uni254Auni254BSF430000SF240000SF510000SF520000SF390000SF220000SF210000SF250000SF500000SF490000SF380000SF280000SF270000SF260000SF360000SF370000SF420000SF190000SF200000SF230000SF470000SF480000SF410000SF450000SF460000SF400000SF540000SF530000SF440000uniFEFFEXy3V ZY\\\\P-xxPZZl6 xxxxxx,,xxxxxxxxxxZZ2JnJnJxJnddnJJJJJJJTTTTTTZ2Z\^xxn|J x||_TW|J|^Jxx1ad___inJJ___n___nxi___in2___n_fJ__n_xnfnJ__fnxAnifdTd_nT_J_Jf_xJ_xJ___xJ_2ifJ_T___n_xxxxxx____JxTxJnJnTTTTnJTJJJTTJTTxxxxxxxxxxJnMTTJTJTfTUTTJTJJTTnTTTTTTTTMMM_nn_MJdndTTn__fTnxJxJxJTxJxTTTTTTT\ruby-asciidoctor-pdf-1.6.2/data/fonts/mplus1mn-bold_italic-ascii.ttf000066400000000000000000000421601416357056400254550ustar00rootroot00000000000000FFTMh@OS/29CVcmapn(jcvt S , fpgm/egasp@glyfw* *headdq6hheawwT$hmtxZG8loca~ 8maxp3x name7 5l/postg;Tprep+.vheaA$vmtx@A88 O7`_< y3V\3Z/1   jM+ \tZ3@@l!<7  _Ux_#(A<2A-7#n-27<2#(FP(F(2Z22-2#(<x#Z(Z-72#(<(7U72- 22(U7-7 #A-7(TTTTTTTdH ~%K%l %%Pd`  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abc,K*PXJvY#?+X=YK*PX}Y ԰.-, ڰ +-,KRXE#Y!-,i @PX!@Y-,+X!#!zXYKRXXY#!+XFvYXYYY-, \Z-,"PX \\Y-,$PX@\\Y-, 9/- , }+XY %I# &JPXea PX8!!Ya RX8!!YY- ,+X!!Y- , Ұ +- , /+\X G#Faj X db8!!Y!Y- , 9/ GFa# #JPX#RX@8!Y#PX@e8!YY-,+X=!! ֊KRX #I UX8!!Y!!YY-,# /+\X# XKS!YX&I## I#a8!!!!Y!!!!!Y-, ڰ+-, Ұ+-, /+\X G#Faj G#F#aj` X db8!!Y!!Y-, %Jd# PX<Y-,@@BBKcKc UX RX#b #Bb #BY @RX CcB CcB ce!Y!!Y-,Cc#Cc#-KPXYF+X!YKRX!Y+\XY+!y(>n .DZx ,\z2hzB\0H^z(X:Ph| Dl   6 N ` P r > L  0 X  , < L \ l | "6J`v,BXj~$:Pdv.F^x,FZn&@Vl0H`JJ!*3!'3#! f!XO3#53떖< 3#3#dd @7537#53733733#3##7##737=5C7+91@77llll=7/!(#5&'55&546;53&'654'#'o0(i*$ .Xh`i'!GGECRQ>dr |V4V^ j 0+cnniA:6<T 3##n _V 6673#&_d^~~^]]UV #6'3d^~~^](]N''7'7'37؎_eKKe`' } &!nI||In!v99-! 3##5#535;!ddx~r#673x)/_Y75!_6dd^353# #x6( 2".632>54'7.#"Y00YY00^ !! !AAA0%'zp/s('zpA|'573#Z[vd&<73!554&#"5632%+AZTeZdnll8.ZUGTsAUOBi>S]XRKW#v-u>5n59T*q# %#5#533'#Pj&jj!A632#"'532654&#"#!#$.pvRDEG31 "n Ytv(?JM9"j-#"3632#".54>32&2654&"'9.-5\SflKX/2dUBE9g'!N$"xHi#mw9Jv>\S4=JWC7 !#5!7i_alW)"654"&5475.5462'2654'*$KFKisi*0kkdstp/.g!',z+3O"L^|h`t?b7WbaXbB>`hl29P(@'56##7267##"&54632#"'5"3264&9.-5YVflOX+2dUBE9g( &%&"bGj#sw7Jv7>54"563253!b_i_iϠ?$B$%D$1Z-"*C5y(Xt{#."327# 4632#"&54632354&3275&#"OGRS?CFPjce.EB?>&+  x~kwµ`h%bure%H+ , #3##3#7pXi&2 "32654&#"3264&##"'63296.2 626<]WSW@39N151+78}>V  g##5&#"327#"&54632 <<3@BJzPuo( #"'6324&#"3269p^]TT]y>AA>wD͏rzF 3#3!!rnillP #!#3܌hOli"3275#53# 4632&6SC?>bSaFO"&F )53#5!#3llhlllll(#"'53265#5_xVEG@4(uXp"+;l2 ##333#T6Z3!l####333#U+h+u#1'#DH &2 ##333#x  &2"&2>4."mmmF((F(b&*ww**ww2 4&#"3267#"'#632N1221uvZ_{pPFGT~xj%#.#"&62$2>4."z%A +%ymmmF((F(c1Q;*ww**ww-#'.+#632'32654&#"h&=9 Z_|o4;712<&R,m{SZ19CB:2 &#"#"'532654&'.54632TL+1CvWordPRX-2#(nUmeaSN*,&J5mSlf2~D0,)73kM`h###5!@nnll("&532653m_T ^tL..Lt73#3\\xb&73333###3+b+z7'17HD&* 33###3JJJrh 33#3TE9< 5#5!3!5"|lllllxV#3!!"X#3##x6xZV|5!!53Z"ުXTX##3#k>(V5!(XXZ|*#&'3|xeE(ꕫ-%#"&546;54&#"5632#"327Y`inyw2CbcLuSnU#WST[ 4!'h#UxPUK 7 632#"'34&#"326,6[Tm~]R".-+{x#cG# K2#5&#"327#"&532+4F<59@BvJB;qVTWXb# 53#"&54632327&#"4R]~mT[6\+-."+#x{dK ,#G(7327#"&532%3.#"8:1LKFw~ec&""B2f_N8:<5354632&#"3##U;".:O9 ] ](>X24&#"#632#;,MlU^."c-Lr2"&264&"nnnZ##Z#肂DDD2$ #"'#6324&#"32̾+(R]l)/ N#zaI ($ 4632#5#"327&#"(l]R(+N /)z#5; IU"#6qdfm77"#"'532654&'.4632& I?mQe^kSWN-&&cVbacQW4/ NLJQ#l+ SOe-#327#"&=#5353/+%2-V%;#"&=4&+5326=46;#":7??uPI,.((.,IPu??7-L>HPJV=6`6=VJPH>L$8*3}7V%.=4&+532;#"+5326=467>:7??uPI,.((.,IPu??7:-L>HPJV=6`6=VJPH>L(7'&/&'&576Ix-$x-$Blqd&(< lqd&(<J5!J<<5!t\3<tN\3J 53!53!53!53!53!53AkkkkkkJ<<<<<<<<<<<< 53!53!53!53!53!53Akkkkkk\ 53'53'53'53'53'53<<<<<<<<<<?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnoglyph1glyph2uni000Auni00A0SF100000uni2501SF110000uni2503uni2504uni2505uni2506uni2507uni2508uni2509uni250Auni250BSF010000uni250Duni250Euni250FSF030000uni2511uni2512uni2513SF020000uni2515uni2516uni2517SF040000uni2519uni251Auni251BSF080000uni251Duni251Euni251Funi2520uni2521uni2522uni2523SF090000uni2525uni2526uni2527uni2528uni2529uni252Auni252BSF060000uni252Duni252Euni252Funi2530uni2531uni2532uni2533SF070000uni2535uni2536uni2537uni2538uni2539uni253Auni253BSF050000uni253Duni253Euni253Funi2540uni2541uni2542uni2543uni2544uni2545uni2546uni2547uni2548uni2549uni254Auni254BSF430000SF240000SF510000SF520000SF390000SF220000SF210000SF250000SF500000SF490000SF380000SF280000SF270000SF260000SF360000SF370000SF420000SF190000SF200000SF230000SF470000SF480000SF410000SF450000SF460000SF400000SF540000SF530000SF440000uniFEFFEXy3V Z\\\\\P-xxPZZh;xxxxxxxxxxxxxxxxZZ2JnJnJxJnddnJJJJJJJTTTTTTZ2Z\TTTTTTT\ruby-asciidoctor-pdf-1.6.2/data/fonts/mplus1mn-bold_italic-subset.ttf000066400000000000000000001535401416357056400256770ustar00rootroot00000000000000FFTMhͼOS/29CVcmap Tcvt S fpgm/Tegaspʹglyf heade6hheawT$hmtxdT dlocagӏmaxpw=x name7 p/postƷ1prep+.vhea^$vmtx\H d ;_< y3V$3ZYY91   jM+ \tZ3@@l!<7  _Ux_#(A<2A-7#n-27<2#(FP(F(2Z22-2#(<x#Z(Z-72#(<(7U72- 22(U7-7 #A-7(<7(Z<#2ZFd-x7n<-   ( #FF(FFF(F2((((7---(--- 2((((UU(U2277(7---#2#(#2#((#F(A(F(F(((((((((FFFUAAFUFU ((222Z-Z-ZZ-2222((22  -U-U((27((27((#-##-(7(7(7(7(7 <A<A((2dF<(F22<(2F# F72x1,72271'#2FF d#2FF( 22(22d F2222 ((2## #7<--8i( 7888..22)#$) =B((i)7UU7 87. 2AdiWgTTTTTTT2  ~_cu  & !"!!!!%K%l br  & !"!!!!%%Pywi_Q5=[ZY   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`absefjyqlwkthxom}Xdon~c9zr{,K*PXJvY#?+X=YK*PX}Y ԰.-, ڰ +-,KRXE#Y!-,i @PX!@Y-,+X!#!zXYKRXXY#!+XFvYXYYY-, \Z-,"PX \\Y-,$PX@\\Y-, 9/- , }+XY %I# &JPXea PX8!!Ya RX8!!YY- ,+X!!Y- , Ұ +- , /+\X G#Faj X db8!!Y!Y- , 9/ GFa# #JPX#RX@8!Y#PX@e8!YY-,+X=!! ֊KRX #I UX8!!Y!!YY-,# /+\X# XKS!YX&I## I#a8!!!!Y!!!!!Y-, ڰ+-, Ұ+-, /+\X G#Faj G#F#aj` X db8!!Y!!Y-, %Jd# PX<Y-,@@BBKcKc UX RX#b #Bb #BY @RX CcB CcB ce!Y!!Y-,Cc#Cc#-KPXYF+X!YKRX!Y+\XY+!y(>n .DZx ,\z2hzB\0H^z(X:Ph| Dl   6 N ` P r > L  L h | > Z j v $R`~@t4ZD`|:h(l:b:n,p*Z &Z Jt.Vt4`$T~:f8t&H~ " ` ! !D!n!!!"":"P"x"""###@#j####$ $ $8$N$f$~$$$$$%%>%^%%%%&&:&f&&&'"'N'x''((>(X((() )^))**Z***++0+J+t++, ,.,\,,,--B-r---..>.b...../"/:/T//////0 060R0f0000011.1@1V11112282r2223 3R33344>4Z4444455<5Z5r555566X6v66677<7R7z7777868d888899(9N99999:$:<:f:::::; ;4;X;j;;;;< < << >4>Z>>>>??$?:?X?l????@ @(@@@^@t@@@AA.AbAAAB(B>BfBBBBCCDClCCCCDDJDDDDEENXNnNNNNNO O&OHO`OxOOOOPP2PbPb!*3!'3#! f!XO3#53떖< 3#3#dd @7537#53733733#3##7##737=5C7+91@77llll=7/!(#5&'55&546;53&'654'#'o0(i*$ .Xh`i'!GGECRQ>dr |V4V^ j 0+cnniA:6<T 3##n _V 6673#&_d^~~^]]UV #6'3d^~~^](]N''7'7'37؎_eKKe`' } &!nI||In!v99-! 3##5#535;!ddx~r#673x)/_Y75!_6dd^353# #x6( 2".632>54'7.#"Y00YY00^ !! !AAA0%'zp/s('zpA|'573#Z[vd&<73!554&#"5632%+AZTeZdnll8.ZUGTsAUOBi>S]XRKW#v-u>5n59T*q# %#5#533'#Pj&jj!A632#"'532654&#"#!#$.pvRDEG31 "n Ytv(?JM9"j-#"3632#".54>32&2654&"'9.-5\SflKX/2dUBE9g'!N$"xHi#mw9Jv>\S4=JWC7 !#5!7i_alW)"654"&5475.5462'2654'*$KFKisi*0kkdstp/.g!',z+3O"L^|h`t?b7WbaXbB>`hl29P(@'56##7267##"&54632#"'5"3264&9.-5YVflOX+2dUBE9g( &%&"bGj#sw7Jv7>54"563253!b_i_iϠ?$B$%D$1Z-"*C5y(Xt{#."327# 4632#"&54632354&3275&#"OGRS?CFPjce.EB?>&+  x~kwµ`h%bure%H+ , #3##3#7pXi&2 "32654&#"3264&##"'63296.2 626<]WSW@39N151+78}>V  g##5&#"327#"&54632 <<3@BJzPuo( #"'6324&#"3269p^]TT]y>AA>wD͏rzF 3#3!!rnillP #!#3܌hOli"3275#53# 4632&6SC?>bSaFO"&F )53#5!#3llhlllll(#"'53265#5_xVEG@4(uXp"+;l2 ##333#T6Z3!l####333#U+h+u#1'#DH &2 ##333#x  &2"&2>4."mmmF((F(b&*ww**ww2 4&#"3267#"'#632N1221uvZ_{pPFGT~xj%#.#"&62$2>4."z%A +%ymmmF((F(c1Q;*ww**ww-#'.+#632'32654&#"h&=9 Z_|o4;712<&R,m{SZ19CB:2 &#"#"'532654&'.54632TL+1CvWordPRX-2#(nUmeaSN*,&J5mSlf2~D0,)73kM`h###5!@nnll("&532653m_T ^tL..Lt73#3\\xb&73333###3+b+z7'17HD&* 33###3JJJrh 33#3TE9< 5#5!3!5"|lllllxV#3!!"X#3##x6xZV|5!!53Z"ުXTX##3#k>(V5!(XXZ|*#&'3|xeE(ꕫ-%#"&546;54&#"5632#"327Y`inyw2CbcLuSnU#WST[ 4!'h#UxPUK 7 632#"'34&#"326,6[Tm~]R".-+{x#cG# K2#5&#"327#"&532+4F<59@BvJB;qVTWXb# 53#"&54632327&#"4R]~mT[6\+-."+#x{dK ,#G(7327#"&532%3.#"8:1LKFw~ec&""B2f_N8:<5354632&#"3##U;".:O9 ] ](>X24&#"#632#;,MlU^."c-Lr2"&264&"nnnZ##Z#肂DDD2$ #"'#6324&#"32̾+(R]l)/ N#zaI ($ 4632#5#"327&#"(l]R(+N /)z#5; IU"#6qdfm77"#"'532654&'.4632& I?mQe^kSWN-&&cVbacQW4/ NLJQ#l+ SOe-#327#"&=#5353/+%2-V%;#"&=4&+5326=46;#":7??uPI,.((.,IPu??7-L>HPJV=6`6=VJPH>L$8*3}7V%.=4&+532;#"+5326=467>:7??uPI,.((.,IPu??7:-L>HPJV=6`6=VJPH>L(7'&/&'&576Ix-$x-$Blqd&(< lqd&(<$O533ht<!"&546;54&#"56325!#"327TXa_(6NM?]CF|XD0FBCI)SD`ZZRD<#2 '57'57Oxx"dnddn2s5!#52hxZ^75!Z@xx%.64&"327#'.+#632"&62%32654#"w6"1cccVW1PM06D=؉؉#9 R 6jIJp;>®'=F5!FhZZd264&"462"&6&&6{X|XX|i6&&6&|XX|X-5!##5#5353-(nnnn$l3#5654&#"5632ߍ'61>6<eAAb!$D!>:jx#"'53254&+532654#"5632rHN72,1E'3 /(?%284{zU\GF% B "2DxN#73xdN7$#"'#3327Ml+$!-."t "&46;###JjjJd2dY753þn$73#"'532654x#SM=6-2-7;Bs&$H573#hiTT6F:jH|6F7>7327#"&!b_i_ihW$B$%D$1Z-"*C5y(X'3 ###3#dL77Ei&73###3#xd@77Ei& #73#'###3#;xx;577}}Ei&#43232>53#"&'&#"###3#FK0-' iK0.' 77 $ $"# $"Ei& 53!53###3#T77 Ei&$ ###3#"&4624&"20771X|XX|):)):Ei&|XX|X:)):) ###!#3#3#-53#"&'&#"xxuK0-' iK0.'   &$ $"# $" 2"&7'32>4."mmmdF((F(bڴL*ww**ww 2"&?32>4."mmmddF((F(bڴL*ww**ww2"&#73#'2>4."mmm;xx;$F((F(bW}}*ww**ww+2"&743232>53#"&'&#"2>4."mmm2K0-' iK0.' (F((F(b$ $"# $"V*ww**ww 2"&%53!532>4."mmmF((F(b䠠B*ww**ww2 %''7'77jppjjppj\JJJJ$72654'"''7&546327&#"4-%B-k1#myA-k1$mA$#(bo(l26`UϨ26`WϨk*wj((732653"&'3(T__ܠdL..Lt^^´(732653"&73(T__PdL..Lt^^´(732653"&#73#'(T__;xx;L..Lt^^?}}(732653"&53!53(T__L..Lt^^̠ 3#373TTdE97632#"'#332654&#"zqrt5335bp}s;KE<-%%#"'732654&54654&#"#4632-< +dU",\vbpP22 j 1Ph]M. Oc-!"&546;54&#"5632'3#"327inyw2CbcLuSY`dFnU WST[ 4!'h#Ux#XUK -!"&546;54&#"563273#"327inyw2CbcLuSYdFnU WST[ 4!'h#Ux#XUK (%"&546;54&#"5632#73#'#"327inyw2CbcLuSYk;xx;;nU WST[ 4!'h#Ux#}}*UK --5"&546;54&#"563243232>53#"&'&#"#"327inyw2CbcLuSYK0-' iK0.' nU WST[ 4!'h#Ux#D$ $"# $"UK -%"&546;54&#"563253!53#"327inyw2CbcLuSYLZnU WST[ 4!'h#Ux#bUK -R%-"&546;54&#"5632#"327"&4624&"2inyw2CbcLuSY.nUZX|XX|):)): WST[ 4!'h#Ux#UK |XX|X:)):) %-8746;54&#"5>32632#27#"'#"&%34.#"#"32>5 [TPOM$=F78,M)&T7A,K w%#Y`(!g++,2F.gCCP:;4/&K=<2$%5&#"327#"'532654'.5321+4F<59$%SM=6-2[dJB;qVTWXb)1;Bss( '33.#"327#"&532dŎ&""8:1LKFw~ecNN8:B2f( 733.#"327#"&532xd9&""8:1LKFw~ecNN8:B2f(!#73#'3.#"327#"&532;xx;D&""8:1LKFw~ec}}bN8:B2f(!53!533.#"327#"&532%&""8:1LKFw~ecXN8:B2fU| !##5!/3c_ddFU !##5!'73cddF( !##5!'#73#'cj;xx;d}}U !##5!'53!53cKdP237&''7&'57 264&" $UyT$YoHZ##Z# CR&s 2;R(xHEEE2'4&#"#632#43232>53#"&'&#";,MlUK0-' iK0.' ^."c-Lr:$ $"# $" 2"&7'3264&"nnn栴dZ##Z#肂 DDD 2"&?3264&"nnnZd#Z##Z#肂 DDD2"&#73#'264&"nnn;xx;.Z##Z#肂;}}DDD'2"&743232>53#"&'&#"264&"nnn(K0-' iK0.' Z##Z#肂$ $"# $" DDD 2"&753!53264&"nnnZ##Z#肂ȠDDD2N 353535!dd/!726="''7&546327&#"-# D-$R.#nnC-%R.#n> -#ZDfd4:A@p4:A@pDf773273#"&537'3$!MlvWFd."-Lh^F773273#"&53'73$!MlvWFd."-Lh^F(73273#"&537#73#'$!MlvW;;xx;."-Lh^}}773273#"&53753!53$!MlvWZ."-Lh^P$ %3#7373WU[d^5! ###3#Z@j77>ZZEi&-!"&546;54&#"56325!#"327inyw2CbcLuSY@dnU WST[ 4!'h#Ux#vZZUK  "&53267 ###3#``i'H'77dddd9009IEi&-!)"&546;54&#"5632"&53267#"327inyw2CbcLuSYO``i'H'nU WST[ 4!'h#Ux# dddd9009UK $###3327#"&547077IM72-6=MSzEi&((sB;Z9-$#+327#"&5467#"&546;54&#"5632#"327T72-6=JV$inyw2CbcLuSinUF(s;./WST[ 4!'h#Ux,UK ##5&#"327#"&54632'73 <<3@BJzPduo225&#"327#"&532731+4F<59@BvJBd;qVTWXb##5&#"327#"&54632'#73#' <<3@BJzPy;xx;uo}}(5&#"327#"&532#73#'1+4F<59@BvJB;xx;;qVTWXb}}##5&#"327#"&54632'53 <<3@BJzPuo<25&#"327#"&532531+4F<59@BvJB;qVTWXb##5&#"327#"&54632'73#'3 <<3@BJzPw;xx;uoi}}(5&#"327#"&53273#'31+4F<59@BvJB;xx;;qVTWXbJ}}(73#'34&#"3267#"'632;xx;_>AA>9p^]TT]yM}}*rzD 327&#"46325353##"&+-."T[6,\dR]~mdK ,#Gc{S#x53632#"'73#32654&#"7T]st]Tdd3883;n'ة1nn}u#53533##"&546325327&#"22R]~mT[6,+-."0nPPn#x{7dK ,#GF5!3#3!!#Z@r>ZZzill( 5!3.#"327#"&532Z@&""8:1LKFw~eclZZN8:B2fA "&532673#3!!#``i'H'xrdddd9009ill( %"&532673.#"327#"&532``i'H'&""8:1LKFw~ecdddd9009+N8:B2fF533#3!!#nr ill( 533.#"327#"&532&""8:1LKFw~ecXN8:B2fF$3#3#327#"&547#!#2-6=MSLril"sB;6)l($)3.#"&532!327#"'327#"&54&""xec8:1LKF 2-6=MS-N8:;B2fsB;=(73#'33#3!!#;xx;'rM}}kill(!73#'33.#"327#"&532;xx;B&""8:1LKFw~ec}}N8:B2f #73#'3275#53# 4632&#";xx;[?>bSaFbSaFbSaFbSaF53#"&'&#"53#5!#3FK0.' iK0-' illhll # $"$ $"llllF43232>53#"&'&#"##5!FK0.' iK0-' :# $"$ $"dF5!53#5!#3Z@llhll>ZZllllU 5!##5!Z@7lZZdA "&5326753#5!#3``i'H'llhlldddd90096llllA "&53267##5!``i'H'dddd9009dF$353#5!#3#327#"&547Fllhll2-6=MSllll"sB;6)U$327#"&547#5!#532-6=MSA$,PAsB;D;dF 353#5!#353Fllhllllll Uc!##5!cdL%#"'53265#5353#53#3^vVEG@4(A 7777uXp"+;Pl&llll 53#53!526553##536ZZPKvd hISXd(%#"'53265#5!'#73#'_xVEG@4(";xx;uXp"+;l}}( #5!!5265#73#'ZP;xx;d hIS}}2 #333#3#UxT6Tp2 #'#3733#'UxV2 #'#373'Z 73!3'73ndll<- %3!#5!'73;dddvd<Z 73!33##Uxll- %3!#5!3#;xUxddvdZ 3 3!3 U,Lr^."c2##333#"'5326?xPX86$,&2&  h[n24&#"#632#"'53265;,MlUPX86$,%^."c-Lrh[n)A 2"&5!2>4."mmmF@F((F(bZZ$*ww**ww 2"&75!264&"nnn<@Z##Z#肂ZZDDD2"&"&532672>4."mmm``i'H'sF((F(bdddd9009*ww**ww2"&"&53267264&"nnn``i'H'}Z##Z#肂rdddd9009XDDD 2"&?3!732>4."mmmddUF((F(bڴL*ww**ww 2"&?3!73264&"nnnddFZ##Z#肂 DDD 3#3##"&6323#rnnx!-ymmy-!x/))il  lrr &34.#"27#"'#"326324&"26K F78,D("?="&>..-:;4F.g..**,20DDD-"#'.+#6327332654&#"h&=9 Z_|o45d7;712:&R,m{SZڴj9CB:U "#6'73qddfm7<-"#'.+#6323#32654&#"h&=9 Z_|o45Ux;712:&R,m{SZ9CB:U "#63#qdCUxfm7(&73#'3#'.+#632'32654&#";xx;o&=9 Z_|o45;712M}}&R,m{SZD9CB:(73#'3"#6;xx;qd}}sfm72 $"#"'532654&'.54632&'73+1CvWordPRX-2#(nUmeaSTdx,&J5mSlf2~D0,)73kM`hx*7"#"'532654&'.4632&#"'73?mQe^kSWN-&&cVbacQWNIHd|/ NLJQ#l+ SOe( ("#"'532654&'.54632&#73#'+1CvWordPRX-2#(nUmeaSTk;xx;x,&J5mSlf2~D0,)73kM`hx*}}(&#"'532654&'.4632&#"#73#'?mQe^kSWN-&&cVbacQWNI9;xx;|/ NLJQ#l+ SOe}}2$/"#"'532654'#"'532654&'.54632&+1CvWp%SM=6-2 dPRX-2#(nUmeaSTx,&J5mS*.8;Bs2~D0,)73kM`hx*7$,#"'532654'"'532654&'.4632&#"?mQ`$SM=6-2dUWN-&&cVbacQWNI|/ NLh$,8;Bs#l+ SOe( ("#"'532654&'.54632&'73#'3+1CvWordPRX-2#(nUmeaSTi;xx;x,&J5mSlf2~D0,)73kM`hx*}}(&#"'532654&'.4632&#"?3#'3?mQe^kSWN-&&cVbacQWNI;;xx;|/ NLJQ#l+ SOe}}#$3#5!##"'532654&(SM=6-2nll+4;Bs -$$#327#"'532654'.=#5353/+%#)SM=6-2/'iid=r '/;Bs! KHd#!##5!#'73#'3@E;xx;nll}}*#327#"&=#535373/+%253#"&'&#"(T__K0.' iK0.' L..Lt^^# $"# $"7'73273#"&53'43232>53#"&'&#"$!MlvWxK0.' iK0.' ."-Lh^2# $"# $"(732653"&5!(T__2@L..Lt^^ZZ773273#"&53'5!$!MlvWd@."-Lh^dZZ(732653"&"&53267(T__``i'H'L..Lt^^vdddd9009773273#"&537"&53267$!MlvW``i'H'."-Lh^dddd9009($732653"&"&4624&"2(T__hX|XX|):)):L..Lt^^x|XX|X:)):)7R73273#"&536"&4624&"2$!MlvWX|XX|):)):."-Lh^|XX|X:)):)732653"&73!73(T__ddL..Lt^^´73273#"&53?3!73$!MlvW#dd."-Lh^F($732653327#"&547.(T]p2-6=MS!93L..Ls^sB;6+^7$327#"&5467#"&533273T72-6=JV! vW$!iF(s;./Lh^.">7333###3#73#'+b+z7'17Y;xx;HD&*}} 333###33#73#'_1n<*.<{Y;xx;p|5}} 3#3#73#'TT;xx;E9}}$%3#73#73#'WU[;xx;^!}} 3#353!53TTE9< #5!3!5'73"|dnllllA #5!3!5'73rқddddd>< #5!3!5'53"|nnllllA #5!3!5'53r_dddd>( #5!3!5'73#'3"|';xx;nllll}}( #5!3!5'73#'3r;xx;dddd>}} !#4632&#"M]86&*)!mV`)O #3##3#7pXi&2 "32654&#"3264&##"'63296.2 626<]WSW@39N151+78}>V  gd3#!#hl #3+3#T#iiXl&F 3#3!!rnill< 5#5!3!5"|lllll( ##333#>O"& 2"&532>4."mmmiF((F(bjj*ww**wwF )53#5!#3llhlllll2 #333#T6T##3#fX&####333#U+h+u#1'#DH &2 ##333#x  &< 35!5!5!<|h|llOiill2"&2>4."mmmF((F(b&*ww**ww(!###(&n2 4&#"3267#"'#632N1221uvZ_{pPFGT~xF 3!5'5!#{rwll ll###5!@nnll 33#3TE9 53#5.46>4&]RR]]RR]UU__ZF II9 II 33###3JJJrh%>53#5.533;sMSSMsIJ@||@JI23#5654&"#535&54qPUN/f/NUP䡮HllB—qqBllH߮F )53#5!#353!53llhlllll 33#3753!53TqE9F##73"&54632>73#&'7."326xdMb`O.B##&''>!(6!<+N􌂀-D Flp.)asLYV=7"&%#"&54675&54632&#";#"32#73U_em=,dn_XW[EP:ROBPVyxdxdSC2J![7Pd!5%^##?2$4&#"#632##73;,MlUKxd^."c-Lr*x 327#"&57#730+%273#&'7."326Mb`O.B##&''>!(6!<+ -D Flp.)asLYV=,$'#4632#"'32654&+532654#"dn@39Nrj$*"30.52.J'q>V  gGkqt 7?C5i.6]1E$ 7673#5&3!. .!υĸ< $2654&'.'&54632&#" 4##Z#!/ y7laXW[EP~^HH\eEEeXB 0&FEVn!5t7"%#"&54675&54632&#";#"32U_em=,dn_XW[EP:ROBPVxdSC2J![7Pd!5%^##? 5#5!32#"'532654&#"&54|oFPJVIWV@1)*0fvyddDpF?N@d! $iZi2$4&#"#632#;,MlU^."c-Lr2"&2>7'3."ooo66h`h!!h`d`h!!h 327#"&50+%2=3#5.=33;sMSSMsmIJ||JIE)7#"&547332>=332>54'3#"&'7$8J(s( x (s(J8$7Z.6yrBG=::=GBry6.F 3#3!!/3rdnillF 3#3!!'53!53rnill 6325>54#"##5!# +bp%!<_h}܆s{8Dpnlld 3#!#'73hxdl##5&#"3#327#"&54632 6<3@BJzP܆_pio2 "#"'532654&'.54632&+1CvWordPRX-2#(nUmeaSTx,&J5mSlf2~D0,)73kM`hx*F 353#5!#3FllhllllllF 353#5!#353!53Fllhllllll (%#"'53265#5!_xVEG@4("uXp"+;l%7265#5!632#"'##32>54.#"!(@72>IJB#RbO  g-Kla{mii~ce8646%3254#"5632#"'##333@# ;=IMWF--lzqgutJ" 4&#"##5!#632#Y _h}%0WD-nllQm2 #333# 73HdT6T´2 ##333#'3;xx7d  & "&5326726733#``i'H'K9 XN#}sdddd9009)BYw[(` !#5#333@q& #3##3#7pXi&2 732654&#"5632#"'!#4/3? ]W|i9D>2ll2 "32654&#"3264&##"'63296.2 626<]WSW@39N151+78}>V  gd3#!#hl `%##65!3#5##4< FT(Ȋl]D} F 3#3!!rnill33#####33;(}<<##<<}(,66rh,2!2#"'53254&+532654#"56fg:>ZUGTsAU22OBi>S]XRKV#v-u>5n59T*q#2 ##333#;xx  &2 ##333#"&53267;xxx``i'H'  &dddd90092 #333#T6T 7265#5!### 3'FPcq*Dl&nib####333#U+h+u#1'#DH &( ##333#>O"&2"&2>4."mmmF((F(b&*ww**ww(!###(&n2 4&#"3267#"'#632N1221uvZ_{pPFGT~x##5&#"327#"&54632 <<3@BJzPuo###5!@nnll 726733#7K9 XN#}sg)BYw[ 53#5.46>4&]RR]]RR]UU__ST LLG LL 33###3JJJrh` %#5!333xln#%#"&533273#;+4iP +(Qm@,y& 333333}((}nn&`73333#5!3x#x2xlnn #53632#"'32654&#"idjr_K -##2nlxnG4IC-!33632#"'3254#"[>;=IMVG# &gutVz7 732654&#"5632#"'34/3? ]Wi9D>2l<53.#"#5632#"'5327Z<6 FPzJB@3@ip_Ľo%2#".'##33>2>4."J;B##B;9A%&?)    ;Ф;6x0~ 6jj6 6jj65.54632##"#7675&#"354o|_Z 9=217;:ZS{m0,Rl:BC9-"&546;54&#"5632#"327inyw2CbcLuSY.nU WST[ 4!'h#Ux#UK -%#"3632#".=46322>54&#":9T8*=YQemLW/8&'$"l Be-qz4vKGb;CZcG8!32654#"32654##"'63257]40n`OKZ?18KD1Ɔ$&@N,=Ii3#!#]c%##6=!3#5##52::DJ'†cB}{Y[rr(3.#"327#"&532&""8:1LKFw~ec-N8:B2f 373#'##5##3359'y::~"~"~::y'7"73254&+532654#"5632#"'7TVPBOR:PD\WX_nd,=me_Ux!?##^%5!dP7[!J2CS8 #333#7ttNNN8 #333#3"&53267tti``i'H'NNNdddd9008 7#3373#'726=#5!###2%DNa|e1c[F###333#P)e*q"0&"}#y@. 7#3353#52"&264&"nnnZ##Z#肂DDD.###ʼn[2$ "3254&#"'#632 N)+(R]l aI#z25&#"327#"&5321+4F<59@BvJB;qVTWXb)!##5!#=cc 26733#7D>]S#qz3Goyc$#5.4675364'#;V^^VV^^V2222 ԊԊ{##### 373#'##3E}}@@}}O$ %#5!333ʆtcr[[)%#"&=332753#9,1fM*)9N 333333y'~'y[[73333#5!3u"t1tc[[r[ #53632#"'732654&#"mafaepTQ+##0 cSX]R ",(!33632#"'73254#"W}K:;FLQG" MZkV PL= 732654&#"5632#"'31/2< $oksu_Pa%)$!cSX[T B753&#"#5632#"'53267_c BO}{vFBA.9K arI{e?@2#"&'##33>2>4."H:?""?:QF||G=  *uu*avULHHHH7.54632#5#"#76?5&#"342lxcQ7;#`o@;WN==BM( '33.#"327#"&532dŎ&""8:1LKFw~ecNN8:B2f(!53!533.#"327#"&532%&""8:1LKFw~ecXN8:B2f#53533#632#"'532654&#"#F57SHPX86$,%"%$0nPPn<P_zh[n)AOG'$v0i 3#!#'73]ydc)#5&#"3#327#"&54632 b J9/ABFv{|PIra@?e{7#"'532654&'.4632&#"?mQe^kSWN-&&cVbacQWNI|/ NLJQ#l+ SOeUc ##5753cndnU ##5753!53cÂdP7m53#5!!526͠ZPvd hI $726=#5!632#"'##%32654.#" &660" :;FLQG,||,cPLgMZkV #4&#"##53533#632ۇ"%$FF57SHc@G'$v0nPPn<P8 7#3373#'73Jd\7 #333#'36tt5dNNN 26733#"&532677D>]S#q|``i'H'z3Goycdddd9009. !#5#333>rrY53533#632#"'32654&#"A]W4/3? !}<<}iH9D>253533#632#"'32654&#"A$oksu_P1/2< nnKSX[T %)$!!2"&3267"'&#"523265.#"mmm-,-,6G" 6G" -,-,biNMh))#iNM2"&267"'&#"523265."nnn#L#*< *< #L#肂>-,> l >-, &#"#33>32ZH3 >9*0g/NkS2&#"#33>*0>i;#;d0LMlR2$4632#5&#"327#5&2~PF <<$mǰxAL32#5&#"327#5&AJB+4x xqVTdz##353܌nڠi##353Ոx[ 3#3TTE9$ 733#3YF4 2"&267'3."mmm-`-.^.b}\\}izZZ 2"&267'3."nnn#P#$N$肂I33IaF11J5!FFW 53!53!53%753=#53>32&#"3#3#327#"&'<?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a bcdefghjikmlnoqprsutvwxzy{}|~     !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~glyph1glyph2uni000Auni00A0uni00ADuni00B2uni00B3uni00B9AmacronamacronAbreveabreveAogonekaogonek Ccircumflex ccircumflex Cdotaccent cdotaccentDcarondcaronDcroatEmacronemacronEbreveebreve Edotaccent edotaccentEogonekeogonekEcaronecaron Gcircumflex gcircumflex Gdotaccent gdotaccentuni0122uni0123 Hcircumflex hcircumflexHbarhbarItildeitildeImacronimacronIbreveibreveIogonekiogonekIJij Jcircumflex jcircumflexuni0136uni0137 kgreenlandicLacutelacuteuni013Buni013CLcaronlcaronLdotldotNacutenacuteuni0145uni0146Ncaronncaron napostropheEngengOmacronomacronObreveobreve Ohungarumlaut ohungarumlautRacuteracuteuni0156uni0157RcaronrcaronSacutesacute Scircumflex scircumflexuni0162uni0163TcarontcaronTbartbarUtildeutildeUmacronumacronUbreveubreveUringuring Uhungarumlaut uhungarumlautUogonekuogonek Wcircumflex wcircumflex Ycircumflex ycircumflexZacutezacute Zdotaccent zdotaccentlongsAlphaBetaGammauni0394EpsilonZetaEtaThetaIotaKappaLambdaMuNuXiOmicronPiRhoSigmaTauUpsilonPhiChiPsiuni03A9 IotadieresisUpsilondieresis alphatonos epsilontonosetatonos iotatonosupsilondieresistonosalphabetagammadeltaepsilonzetaetathetaiotakappalambdauni03BCnuxiomicronrhosigma1sigmatauupsilonphichipsiomegauni0400uni0401uni0402uni0403uni0404uni0405uni0406uni0407uni0408uni0409uni040Auni040Buni040Cuni040Duni040Euni040Funi0410uni0411uni0412uni0413uni0414uni0415uni0416uni0417uni0418uni0419uni041Auni041Buni041Cuni041Duni041Euni041Funi0420uni0421uni0422uni0423uni0424uni0425uni0426uni0427uni0428uni0429uni042Auni042Buni042Cuni042Duni042Euni042Funi0430uni0431uni0432uni0433uni0434uni0435uni0436uni0437uni0438uni0439uni043Auni043Buni043Cuni043Duni043Euni043Funi0440uni0441uni0442uni0443uni0444uni0445uni0446uni0447uni0448uni0449uni044Auni044Buni044Cuni044Duni044Euni044Funi0450uni0451uni0452uni0453uni0454uni0455uni0456uni0457uni0458uni0459uni045Auni045Buni045Cuni045Duni045Euni045Funi0462uni0463uni0472uni0473uni0474uni0475uni0480uni0481uni0490uni0491uni04AEuni04AFuni04E8uni04E9Euro arrowleft arrowright arrowdblleft arrowdblrightSF100000uni2501SF110000uni2503uni2504uni2505uni2506uni2507uni2508uni2509uni250Auni250BSF010000uni250Duni250Euni250FSF030000uni2511uni2512uni2513SF020000uni2515uni2516uni2517SF040000uni2519uni251Auni251BSF080000uni251Duni251Euni251Funi2520uni2521uni2522uni2523SF090000uni2525uni2526uni2527uni2528uni2529uni252Auni252BSF060000uni252Duni252Euni252Funi2530uni2531uni2532uni2533SF070000uni2535uni2536uni2537uni2538uni2539uni253Auni253BSF050000uni253Duni253Euni253Funi2540uni2541uni2542uni2543uni2544uni2545uni2546uni2547uni2548uni2549uni254Auni254BSF430000SF240000SF510000SF520000SF390000SF220000SF210000SF250000SF500000SF490000SF380000SF280000SF270000SF260000SF360000SF370000SF420000SF190000SF200000SF230000SF470000SF480000SF410000SF450000SF460000SF400000SF540000SF530000SF440000uniFEFFEXy3V Z$Y\\\\P-xxPZZh;xxxxxxxxxxxxxxxxZZ2JnJnJxJnddnJJJJJJJTTTTTTZ2Z\^x xd|J|x||ZTW|J|^8xx*]dZZZZd JJZZZdZZZdxZZZZZd-ZZZdZZJZZdZxnZdJZZZdx<nZZdTdZnTZJZJZZxJZxJZZZxJZ2ZZ8 ZTZZZdZxxxxxxZZZZJxTxJnJnTTTTnJTJJJTTJTTxxxxxxxxxxJnMTTJTJTZTUTTJTJJTTnTTTTTTTTMMMZdnZMJdddTTnZZZTnxJxJxJTxJxTTTTTTT\ruby-asciidoctor-pdf-1.6.2/data/fonts/mplus1mn-italic-ascii.ttf000066400000000000000000000421741416357056400244620ustar00rootroot00000000000000FFTMhAOS/28Vcmapn(jcvt S , fpgm/egasp@glyf *headdq6hheawwT$hmtxZU8loca> 8maxp4x name~?5postg;Tprep+.vheaA $vmtx7AD8 _< y3V\3Z01   jM+ \tZ3@@l!-P(%},-n5FVWK(aMR<C<AFF/U>K\f4FdHUk%P2W2RP<F(<(U5x(7KZH<CPCWsA\K%R<UAuZCR<A7WHW7CaaaaaaadH ~%K%l %%Pd`  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abc,K*PXJvY#?+X=YK*PX}Y ԰.-, ڰ +-,KRXE#Y!-,i @PX!@Y-,+X!#!zXYKRXXY#!+XFvYXYYY-, \Z-,"PX \\Y-,$PX@\\Y-, 9/- , }+XY %I# &JPXea PX8!!Ya RX8!!YY- ,+X!!Y- , Ұ +- , /+\X G#Faj X db8!!Y!Y- , 9/ GFa# #JPX#RX@8!Y#PX@e8!YY-,+X=!! ֊KRX #I UX8!!Y!!YY-,# /+\X# XKS!YX&I## I#a8!!!!Y!!!!!Y-, ڰ+-, Ұ+-, /+\X G#Faj G#F#aj` X db8!!Y!!Y-, %Jd# PX<Y-,@@BBKcKc UX RX#b #Bb #BY @RX CcB CcB ce!Y!!Y-,Cc#Cc#-KPXYF+X!YKRX!Y+\XY+!y(>p,:Pf:jDxPj>Vl>r8VnBh  ( > X p  4 H x   6 f t & N v  : J Z j z  0@Th~ "8J`v.BXn4Ld|2Jdx.D^t*Ld|4dd!*3!'3#! f!X3#53<2Aڂh 3#3#,< (< ( -753#53733733#3##7##73-MEI32FJBG22T,++,0P/(/&'+#5&'5.546;53#"254&/57C5-9=7?@8ZU -8e8@ 9K0 !Q@dg $4( 8 R\S3<08@CWFwdR t+gcLl^ES 3#A ( w 73#&55B}m #6'3m55B,g''7'7'37ȳu-cd-v 8 E.!!.5DC-<0 3##5#53540++;73#6F%:.,|n:5!n++353K5 #/YF2"&&#"32>4'WWW:L,&7',& jbEda|>1EMV@!'573 4g2i&W2!!5>54&#"56w |8:!T$Ma++cIE$3:K!2#"'532654&+53254&#"56P[HIHGLJ]g?;JJMVL"0$UZYQ*;'/ !i 0%\d`Y-mM&"3632#"&54>32&2>54&#""4A*1YRSWX^V1WG<55W(%:=@H>/wVs}uI/h*VAh^kcrWR !#5!ROQ6R+o><!)2"&54675.546654&#"3254RZ@9d`HC9@[Q}@;{?8YO>^7`cc`Gga>OY&~U:*C !"326'.'2#"'532>7##"54:Bw>K;=bR1XG;5574@*1YStqgkT+H/.xV5353FFF|, 67353,F%:Fx|<#I%5%Or42A5!5!Arr++++F#I55%5FrO424F2#4>7>54&#"5653Zb2" GEW[Z*BRI+H%$K,2V'"!=$6:64-/{ +2#"&54632354#"327#"&6327&#";G>IAA1#v[\]Z@?>DssrE(/26*-{?^ypg"$0UY+2G 33#'#3#B699Db&U %#"'6324&+3232654#"JIEJwCK3\bC0/>YT.-!dNXR GJ >"327#"4632#5&&:77>uo@:3!0| K "32654&#"'632&&&&k^_y@@14#`:]%&ZP 3333##P:28v&v2"2>4."&62F2++2F2++___EʇEEʇEXhW 32654&#"#"'#632),[QRZ, kt 54CFsl VeaXymn2j "&62#.2>4."i___6:_)7QaF2++2F2++ ̜%{JB+EʇEEʇER632#'.+#32654&#"RCGqm7>6::7R44@hYSX-)bd+kD5IVPK P!"#"'532654&'.54632&;F7@fNa[VGLT@E:KYL`RMKJB8:M 0fSZ_/59HF@Q$*gJKZ3'<!###<|4+QF2653"&5z==2WWRFFR!aXXa+(333#(53BX&3333###JAQ:OC1REPT8R&< 33###v697:Dsg( 33#`64oZ4U !!!55!UJ+~++|3#3ʲ&&53#5/Z0x^#53#53*&&(3##(@2>d75!7}&&&L*&'3M5G,=&~}K2#"&46;54&#"56#"327aBDUYbu$+EPJL$GA;+Ej Uc%L/ ,:?Z 632#"'4&#"32629b^dfT@+EH?,*7LK wm'smH2#5&#"327#"&546D52'MRUN7467`urx sqrs+~< 3#"&54632327&#"g3@Tfd^b92KL7*,?HE( xm'mC2!327#"46!.#"XULL?EG?\(B7C@|rh,pW\P354632&#"3###P:F 2%&2"3PXH , 0UA)5C26=#"&5432#327&#"pz.8_fRAME<*.2vl }-hl!y W632#4&#"#?LOG12=K63(YeJ^@1Is1 3##753s4>ߦssA6 25#53#53A>)kss\ #'#37>332K33##KĐĐO)%632632#4&#"#4&#"#%6GD+7A21&-1%* 2 6Gk0#-+R632#4&#"#RHXeO29I=03%J[mD73<2"&264&"]]]uAAA恁hhhU$ "3254&#"'#632:,*DC3533#327#"&5#Cn3%90%,.PSDR3273#"&55C>/3D\^LB4%HXr<33#q4@%3333###N@Q6LE.RCLP7S;'6A 373#'##y6977$33#7j54SJW !!!55!WE  )L))H#326=46;#";#"&=4&+H8(,?DE78)II)87ED?,(8VB>LE%,Gm##mG,%EL>A$*3/W!#"+5326=475&=4&+53239S@DD78*HH*87DD@SV(LE%,Gn""nG,%EL7757632?'&/&#"7r" ) ~r! ) 7c!F m7c F Wy5!W""/5!/rrt\3"t-\3rWy 53!53!53!53!53!53AkkkkkkW""""""""""""/ 53!53!53!53!53!53Akkkkkk/rrrrrrrrrrrr\ 53'53'53'53'53'53"""""""""""Pkkkkkkkkkkkk-\ 53'53'53'53'53'53rrrrrrrrrrrPkkkkkkkkkkkkWy 53#53#53#53#53#53ATSSTSSW""""""""""""/ 53#53#53#53#53#53ATSSTSS/rrrrrrrrrrrr\ 53'53'53'53'53'53"""""""""""9TTSSSSTTSSSS-\ 53'53'53'53'53'53rrrrrrrrrrr9TTSSSSTTSSSSty!!#"y"t!#"rE-ty!#Ery"t!#ErrE-ty#!5"y"t!#!"t-y!#!-rEyt-!#!-rEW\3!"W"/\!3!"/-EW\!3!rW/\!3!r/-EW\!5!3"W"/\5!3"/rW-\5!3rW"/-\5!3r/rt\!#3""y"t\3!!"ErEt\ #3!!(r"t\ 33!!("E"t\3!!rE"t\ #3!!(r-ErEt\ 33!!("E-ErEt\3!!rEErEt\#!5!3"""t\#!5!3""rCto\ #!5!3#G!q("t-\ #!5!33-rE"("t-\#!5!3-rEr"t-\ #!5!3#"r(rt-\ #!5!33-rE"(rEt-\#!5!3-rErrty!5!!""t !#!5!"y"r(t !#!5!5"rE"(t!#!5"rErty!!#!ErEy"t !#!5!ErE-y"r(t !#!5!5ErErE"(t!#!5ErErErW\!5!3"y""/\ !!5!3!"W(r/\ !5!5!3!"/("E/\!5!3!"/rEW\5!3!rW""/\ !!5!3!ErW(r/\ !5!5!3!Er/("E/\!5!3!r/rEt\ !5!3!!"""t\ !#!5!3""y"rt\ !#!5!3""rE"Et\ !#!5!3""rErEt\ #!5!3!!"r""t\ #!5!3!!-rE"E""t\ #!5!3!!-rErE""t\ #!5!3!!#"rE(r"(t\ #5!5!3!!(Er("ErEt\ 3!!#!5!(ErE\E("rt\ 3!!#!5!53"ErE(\ErE"(t\ #!5!3!!"rrErt\ !!#!5!ErE\ErErt\ !#!5!3!ErErWrt\ !3!!#!rErEyErEt\ !!#!5!-ErE\ErEr=!5!""""at\3!3e""t #!!!!"""aty #!!#""W"at !!!!!e""t !5!#!5!""ya"ty ##!5!#e""W"t %#!5!#!""}a"ye\ %!!3!!"""aW\ 33!!3"ay"y"a\ 3!!3!e"ay"e"\ %5!5!3!5""ay"W\ 3!5!3e"ya"y"\ !5!!!5!}a&ye\}"ay"et\ !!!!#3""""at\ 3!!!3e"a""at\ !!!3!3!e"e}"a"et\ 3#!5!5!5""aa""t\ #!5!33"a"""t\ %#!53!5!3"e"}a"}a"}e"at %!#!=!""a"""ty ###!5!""W""t %!!#5!#!5e"""e""}a"\ !5!3!5!""a""W\ !!5!333aa""y""\ !3!5!!5!}"a}a""}"at\=!5!5!3!!!!#""""a""at\5!333!!###a""a""W""t\ !!!#!!5!3!3!ey"}a"e}"a"}a"a}"Fw( *V   D  i  ~ P  8 e 4  _Copyright(c) 2019 M+ FONTS PROJECTCopyright(c) 2019 M+ FONTS PROJECTM+ 1mnM+ 1mnItalicItalicFontForge 2.0 : M+ 1mn light : 23-4-2019FontForge 2.0 : M+ 1mn light : 23-4-2019M+ 1mn ItalicM+ 1mn ItalicVersion 1.063aVersion 1.063amplus1mn-italicmplus1mn-italichttp://mplus-fonts.osdn.jphttp://mplus-fonts.osdn.jpThis font is free software. Unlimited permission is granted to use, copy, and distribute it, with or without modification, either commercially or noncommercially. THIS FONT IS PROVIDED "AS IS" WITHOUT WARRANTY.This font is free software. Unlimited permission is granted to use, copy, and distribute it, with or without modification, either commercially or noncommercially. THIS FONT IS PROVIDED "AS IS" WITHOUT WARRANTY.0S0n00000o000u10j 0000000g0Y00B000e9Y 0ng q!0k000Z00~0_UFimv0jR)u(0g0B0c0f00u10k0TR)u(00QM^0Y00S0h0L0g0M0~0Y0L0Qh0fq!O݊<0h0U0[0f0D0_0`0M0~0Y02  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnoglyph1glyph2uni000Auni00A0SF100000uni2501SF110000uni2503uni2504uni2505uni2506uni2507uni2508uni2509uni250Auni250BSF010000uni250Duni250Euni250FSF030000uni2511uni2512uni2513SF020000uni2515uni2516uni2517SF040000uni2519uni251Auni251BSF080000uni251Duni251Euni251Funi2520uni2521uni2522uni2523SF090000uni2525uni2526uni2527uni2528uni2529uni252Auni252BSF060000uni252Duni252Euni252Funi2530uni2531uni2532uni2533SF070000uni2535uni2536uni2537uni2538uni2539uni253Auni253BSF050000uni253Duni253Euni253Funi2540uni2541uni2542uni2543uni2544uni2545uni2546uni2547uni2548uni2549uni254Auni254BSF430000SF240000SF510000SF520000SF390000SF220000SF210000SF250000SF500000SF490000SF380000SF280000SF270000SF260000SF360000SF370000SF420000SF190000SF200000SF230000SF470000SF480000SF410000SF450000SF460000SF400000SF540000SF530000SF440000uniFEFFEXy3V Z\\\\\P-}xPZZm,"xxxxxxTTxxxxxxxxxxZZ2JnJnJxJnddnJJJJJJJTTTTTTZ2Z\aaaaaaa\ruby-asciidoctor-pdf-1.6.2/data/fonts/mplus1mn-italic-subset.ttf000066400000000000000000001543001416357056400246720ustar00rootroot00000000000000FFTMhOS/28Vcmap Tcvt S fpgm/Tegaspglyf5Lheadd6hheawT$hmtxdT dloca|xmaxpwDx name~?postƷ1prep+.vhea9E8$vmtx\[\ d _< y3V3ZYY@1   jM+ \tZ3@@l!-P(%},-n5FVWK(aMR<C<AFF/U>K\f4FdHUk%P2W2RP<F(<(U5x(7KZH<CPCWsA\K%R<UAuZCR<A7WHW7WI)(M K2Di Us<R=yK<<>\\H\ddHd P22222@%FFFF(XKKKHKKKHCCCCssHs<R<<<<<A)RRHR7KKK>H>H>H>HH< <\CZC\C\CHC4C4C4C4CFH \\dkZZdsds/HAU\\kKkKk<k<KPRPRHHPR2<2<2<(RuRuHHPZHHPZHH<C<7<CFRFRFRFRFRFR(7(UWUWHHU}\UF2dU%PW2FWZ<( <7)d(+QRQ+N(<Q<R<\7R<9<)TE75Q<7*\\}>PddH !UP7FUU} \KPPU%F2FW><7 <?<-(3ZW!'KKY'CQUUY+K<KUH?7AEB4/9^[(.CC BZssA( YU7K 2<(<U\}(12<!%{Caaaaaaa2  ~_cu  & !"!!!!%K%l br  & !"!!!!%%Pywi_Q5=[ZY   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`absefjyqlwkthxom}Xdon~c9zr{,K*PXJvY#?+X=YK*PX}Y ԰.-, ڰ +-,KRXE#Y!-,i @PX!@Y-,+X!#!zXYKRXXY#!+XFvYXYYY-, \Z-,"PX \\Y-,$PX@\\Y-, 9/- , }+XY %I# &JPXea PX8!!Ya RX8!!YY- ,+X!!Y- , Ұ +- , /+\X G#Faj X db8!!Y!Y- , 9/ GFa# #JPX#RX@8!Y#PX@e8!YY-,+X=!! ֊KRX #I UX8!!Y!!YY-,# /+\X# XKS!YX&I## I#a8!!!!Y!!!!!Y-, ڰ+-, Ұ+-, /+\X G#Faj G#F#aj` X db8!!Y!!Y-, %Jd# PX<Y-,@@BBKcKc UX RX#b #Bb #BY @RX CcB CcB ce!Y!!Y-,Cc#Cc#-KPXYF+X!YKRX!Y+\XY+!y(>p,:Pf:jDxPj>Vl>r8VnBh  ( > X p  4 H x   6 f t  2 l 4 j 2T*Fx,Np"Fz <^~@tDh XBzN4Jd~6b<^J Lx&V2dF  L !!J!|!!!""F"p""""##:#V#f####$$:$P$f$~$$$$$% %(%D%b%%%%&&4&Z&&&''B'x''((P(j((())N)))*B**++$+X+v+++,,P,r,,,-"-V---. .6.b..../ /*/J/p////0 0&0>0X0p000011161^1r11112 2(2L2z222303R3p3344$4\44455(5>5T5r555566J6p666677B7b77778808P8l88899<9j9999::(:@:h::::;;2;J;t;;;;<<04>d>t>>>??4?\?v?????@@B@T@r@@@@A A(APA~AABB2BdBBBC CMXMrMMMMMN N&N:NNNdNzNNNNNOO O6OLOfO~OOOOPP&P>P^PxPPPPQ&Q&!*3!'3#! f!X3#53<2Aڂh 3#3#,< (< ( -753#53733733#3##7##73-MEI32FJBG22T,++,0P/(/&'+#5&'5.546;53#"254&/57C5-9=7?@8ZU -8e8@ 9K0 !Q@dg $4( 8 R\S3<08@CWFwdR t+gcLl^ES 3#A ( w 73#&55B}m #6'3m55B,g''7'7'37ȳu-cd-v 8 E.!!.5DC-<0 3##5#53540++;73#6F%:.,|n:5!n++353K5 #/YF2"&&#"32>4'WWW:L,&7',& jbEda|>1EMV@!'573 4g2i&W2!!5>54&#"56w |8:!T$Ma++cIE$3:K!2#"'532654&+53254&#"56P[HIHGLJ]g?;JJMVL"0$UZYQ*;'/ !i 0%\d`Y-mM&"3632#"&54>32&2>54&#""4A*1YRSWX^V1WG<55W(%:=@H>/wVs}uI/h*VAh^kcrWR !#5!ROQ6R+o><!)2"&54675.546654&#"3254RZ@9d`HC9@[Q}@;{?8YO>^7`cc`Gga>OY&~U:*C !"326'.'2#"'532>7##"54:Bw>K;=bR1XG;5574@*1YStqgkT+H/.xV5353FFF|, 67353,F%:Fx|<#I%5%Or42A5!5!Arr++++F#I55%5FrO424F2#4>7>54&#"5653Zb2" GEW[Z*BRI+H%$K,2V'"!=$6:64-/{ +2#"&54632354#"327#"&6327&#";G>IAA1#v[\]Z@?>DssrE(/26*-{?^ypg"$0UY+2G 33#'#3#B699Db&U %#"'6324&+3232654#"JIEJwCK3\bC0/>YT.-!dNXR GJ >"327#"4632#5&&:77>uo@:3!0| K "32654&#"'632&&&&k^_y@@14#`:]%&ZP 3333##P:28v&v2"2>4."&62F2++2F2++___EʇEEʇEXhW 32654&#"#"'#632),[QRZ, kt 54CFsl VeaXymn2j "&62#.2>4."i___6:_)7QaF2++2F2++ ̜%{JB+EʇEEʇER632#'.+#32654&#"RCGqm7>6::7R44@hYSX-)bd+kD5IVPK P!"#"'532654&'.54632&;F7@fNa[VGLT@E:KYL`RMKJB8:M 0fSZ_/59HF@Q$*gJKZ3'<!###<|4+QF2653"&5z==2WWRFFR!aXXa+(333#(53BX&3333###JAQ:OC1REPT8R&< 33###v697:Dsg( 33#`64oZ4U !!!55!UJ+~++|3#3ʲ&&53#5/Z0x^#53#53*&&(3##(@2>d75!7}&&&L*&'3M5G,=&~}K2#"&46;54&#"56#"327aBDUYbu$+EPJL$GA;+Ej Uc%L/ ,:?Z 632#"'4&#"32629b^dfT@+EH?,*7LK wm'smH2#5&#"327#"&546D52'MRUN7467`urx sqrs+~< 3#"&54632327&#"g3@Tfd^b92KL7*,?HE( xm'mC2!327#"46!.#"XULL?EG?\(B7C@|rh,pW\P354632&#"3###P:F 2%&2"3PXH , 0UA)5C26=#"&5432#327&#"pz.8_fRAME<*.2vl }-hl!y W632#4&#"#?LOG12=K63(YeJ^@1Is1 3##753s4>ߦssA6 25#53#53A>)kss\ #'#37>332K33##KĐĐO)%632632#4&#"#4&#"#%6GD+7A21&-1%* 2 6Gk0#-+R632#4&#"#RHXeO29I=03%J[mD73<2"&264&"]]]uAAA恁hhhU$ "3254&#"'#632:,*DC3533#327#"&5#Cn3%90%,.PSDR3273#"&55C>/3D\^LB4%HXr<33#q4@%3333###N@Q6LE.RCLP7S;'6A 373#'##y6977$33#7j54SJW !!!55!WE  )L))H#326=46;#";#"&=4&+H8(,?DE78)II)87ED?,(8VB>LE%,Gm##mG,%EL>A$*3/W!#"+5326=475&=4&+53239S@DD78*HH*87DD@SV(LE%,Gn""nG,%EL7757632?'&/&#"7r" ) ~r! ) 7c!F m7c F $533A>2|WL&75332&+327+#5(8648 8468(q+6+#I35>=#5354632&#"3#!I ,FFUK.*'-p6-ZM(`f-(|,+)>#7'#"''7&547'7632264&"fHG&&GH0<>/HH&&HH/>=0GH&&HG0=>/GH&NnNNn(33##5#5353648ftZ++t33000hhMj'5%#"'532654&'&547&54632&#"'>54'&PV]OMOPL9B;AUV^ONLPJ9C;A(1 (1+\IV"-%>30;-`-+\IV!.%=40;-` A)f  A)f bc53#53122b}}}} &!%27#"32&#"$&"2"&62 #"#'~}&"# (1lmm ҅҄'%Gc#"8K""&546;54&#"56325!#"327GO]m"6A<=@N44^X93-#0D>=P<$&7U\&&Ik.122 '57'57ǜӱ?0??0D#5!52.i 95!i" .. &#-7#632#'.+"&6226&"732654&#")&,B=?"+ +҅҄llm4-*.754&.-/2cESWE*($p9i""n5."e"5632#"'53254&+53254*--135HNx./+.T6< m%3/Oa&_30"VDNi#734sINR$#"'#3327D\R&225C>/%$B4=t "&46;###JjjJ,N-9h753K܌y$f4'3#"'53266&3#@M2.*1/3\5,290F/+$'#'573'(ij($<&>K 2"&45!&2>4."KKK^D,,D,ggg[&&RRRR<2 55?557<+?0??0?$%35# 573##5#533yzba2hi(('*6|<&>Jhh!-!$ %"56323#5>54&7# 573#f.-/1dESWEZa2hi((*($p9i""n5."|<&>J$(3%35#%#"'53254&+53254#"5632#5#533yzba2Nx./+.T6< mH*--135H'*6|fa&_30"VD%3/Owhh!-!<534>7>53327#"&B2" GEW[Z\Zb|9+H%$K,2V'"!=$6:64-R#'3###3#G5Ibb94B6Wo*&#7###3#i5s$#%#"'532654'&4632#5&#"32#)@M2.*1/3uo@:3!":@0-20F/+(*(w \ !!!!!3# @Hs4*++\ !!!!!#7 @؇4s*++H !!!!!#'##7 @CnmC*++\ !!!!!53#53 @22*++}}}}d 353#5!#3#'d{{,{{s5+++|+d 353#5!#3#7d{{,{{'5s+++|+H 353#5!#3#73#'d{{,||nCKCn+++|+d 353#5!#353#53d{{,{{_22+++|+*}}}} 53632#"'73#32>54&#" K6Yb'&d58γ[55 Fi P 3###332653#"'&#"#432r284:&. %@4 .@%?4&v!/D;2()-1)23#2>4.""&62Is5;F2++2F2++___ EʇEEʇEFh2#72>4.""&62i5sIF2++2F2++___fEʇEEʇEFh2#73#'#2>4.""&62DLDm"F2++2F2++___EʇEEʇEFh2$,2653#"'&#"#4322>4.""&62L. %@4 .@%?4]F2++2F2++___M!/D;2()-1)EʇEEʇEFh253#532>4.""&62122F2++2F2++___*}}}}EʇEEʇEFh@) %''7'77))))E% '72>54'"''7&546327&#"#2+#IX-"-1%_iY-"-1$_#I#2+!EeI'?+8CaW̫8CaU̫?Ee~NF"&5326533#WW4==2Is5 Xa+RFFR!amF"&5326533#WW4==2I5 Xa+RFFR!amF"&532653#73#'#WW4==2DLDm Xa+RFFR!aȥF"&53265353#53WW4==2}22 Xa+RFFR!a}}}}( 3#33#648&I5koZ4PX632#"'#332654&#"3&qjiq$644.'[QRZ+*`lsuiRa_UK'34632#"'73254.54>54&#"KOa21*2*OH#'F<7,3 D:9 .,/-Y/3D\^L9Hs4B4%HX]R33273#"&53#R25C>/3D\^LH4B4%HX]H33273#"&5#73#'R25C>/3D\^LmCKCnB4%HXBR33273#"&553#53R25C>/3D\^L22B4%HX}}}}7$ 733#7373#54T3I5R5! ###3#l,bb94B6a((o*&K !%275#"5!54&#"5632#"&463;+$GY+EPJLNaBDUYbu:?p((%L/ ,Ej Uc 2673"&53###3#b=0ZZ0bb94B6F5)=OO=)o*&K)%275#"2673"&5354&#"5632#"&463;+$Gb=0ZZ0+EPJLNaBDUYbu:?_5)=OO=)%L/ ,Ej Uc$###3327#"&5467\bb94BR]a2*.2CKVLo*&<%G/:4/LK$$-"&46;54&#"5632327#"&547#"327Ybu$+EPJLNaBC8201*.2EH=W$GA;+ Uc%L/ ,Ej!=$$/:.;1*:?>4632#5&#"327#"3#>uo@:3!":77>H4r 0ťH327#"&54632#5&#"3#|UN7467`ur_D52&MSH4rs+~x s~>4632#5&#"327#"#73#'#>uo@:3!":77>MCKCnr 0 H327#"&54632#5&#"7#73#'#|UN7467`ur_D52'MRCKCnrs+~x s٥>4632#5&#"327#"53>uo@:3!":77>5r 04}}H327#"&54632#5&#"753|UN7467`ur_D52'MRc5rs+~x s}}>4632#5&#"327#"3373#>uo@:3!":77> CnnCKr 0ŊH327#"&54632#5&#"3373#|UN7467`ur_D52&MS4CnnCKrs+~x s~H 632#"'3373#4&#"326J54&#" K6Yb'&h,=γ_,, Fi <53533##"&54632527&#"3PP@Tfd^b92a7*,?HEKU+nn+ `'mwxm\5!!!!!!k@a((++*C5!27#"4632!!.#"kx?EG?\_XULMB7C@((,|rhpW\Z 2673"&53!!!!!b=0ZZ0@F5)=OO=)++*C %2673"&5327#"4632!!.#"b=0ZZ/?EG?\_XULMB7C@~5)=OO=(k,|rhpW\\53!!!!!5@*}}++*C5327#"4632!!.#"5?EG?\_XULMB7C@b}},|rhpW\\$!!!#327#"&547#!! !2/1*.2M@ Q@*+*2(+/F051+C$*.#"327#"&547&54632!327#"xB7C@e2/1*.2M@&p\_XULL?EG?"pW\k(/(+/F0;22ˌ|rh,H373#'!!!!!mnCKT@p++*C!373#'27#"4632!!.#"mnCK?EG?\_XULMB7C@󊊥,,|rhpW\4 #73#'#27#53#"4632&#"CKCn#7/GTwy;?==_\Z@*w%|/C##73#'#327&#"432#526=#"&CKCnME<*.23RAtv.8_fN>hl!y )*so 4 $2673"&5327#53#"4632&#"b=0ZZ/7/GTwy;?==_\ZF5)=OO=(@*w%|/C '2673"&53327&#"432#526=#"&b=0ZZ/ME<*.23RAtv.8_f~5)=OO=(bhl!y )*so 45327#53#"4632&#"57/GTwy;?==_\Z*}}@*w%|/C 53327&#"432#526=#"&5ME<*-33RAtv.8_fb}}hl!y )*so 4#73'27#53#"4632&#"3@D"7/GTwy;?==_\Z]@*w%|/C 3#327&#"432#526=#"&3@D?ME<*-33RAtv.8_fhl!y )*so F#73#'##!#3!DLDm422&y6H#73#'##4&#"#3632CKCn12=K633?LOG`J^@1I(Ye 53533533####!#3 A24AA42%.,,y.53533#632#4&#"#P3?LOG12=K63U+nn+k(YeJ^@1IU\ 2653#"'&#"#43253#5!#3L- %@4 -@%?4{{,||M!/D;2()-1)+++|+\2653#"'&#"#43253#L- %@4 -@%?44{!/D;2((-1))d5!53#5!#3l||,||a((+++|+k 5!53#k4(()Z 2673"&5353#5!#3b=0ZZ0({{,{{F5)=OO=)+++|+Z 2673"&53#53b=0ZZ0q~5)=NN=)M)d$353#5!#3#327#"&547d{{,{{!3/1*.3M@ +++|+*2(+/F051s$327#"&547#53#531.5028L?_O$>f#&0A-R8)(ssd 353#5!#353d||,||4+++|+*}}s1#53#4)j%#"'53265#5353#53#3PdKAJBF:nM^^^^aN/";J+&+++|+/ 53#525#5'53#53#c>|f>3h3ss}*)}ss)H%#"'53265#53'#73#'#PdKAJBF9CKCnaN/";J +<A 53#525'#73#'#xwCKCn)*oU  ###333#<44ER3hO\ !#'#37373>33>@DQ2\ !#'#373>33>k 7!!373# 4H4++K 533#3#KĐEI5)O) k 7!!33# 4[DQ3++K %3##533#ĐER3)))k 3#!!3iB_. 47+< 3#3##53A_-<ċ5))k 533!!K54 L~~Q+< 53#533#q4ِĐL~~e)O) 37!!574 ssB1B+t212K57#5373#`{đB16)?1>)xP 333###3#P:284I5v&vR2#4&#"#673#eO29I=03HH4J[mD73%P 333###3#P:284ER3v&v<R2#4&#"#63#eO29I=03H`DQ3J[mD73%H 333###373#'P:284;nnCKv&vH3#632#4&#"373#'3HXeO29I=0mnCK%J[mD7&3##632#4&#"eB_.o3HXeO29I=0 %J[mD7P3#"'5326=##33r2;C)*%&0$4:ZK /1Q'R3#632#"'532654&#"3HXeO;C)*%&0$9I=0%J[RZK /1QD72 5!"&622>4."l%___F2++2F2++a((hEʇEEʇE< 5!"&5462264&"l-]]]AAA((gVhhh2 #2673"&53"&622>4."b=0ZZ0___F2++2F2++F5)=OO=){hEʇEEʇE< 2673"&53"&5462264&"b=0ZZ0]]]AAA~5)=OO=)CVhhh273#732>4.""&62tFsFUF2++2F2++___ EʇEEʇEFh<73#73"&5462264&"sFtF]]]AAANVhhh(#3#3##"&6323#"&#"3262$gaag$3 !2,,2! *+  +sDʈD#*%#"'#"&632632#32&#"33.",+U"J?@@?HL9:2/+N&''&}#J)<-XXSStiViioWUgR!#'.+#6323#32654&#"87>6:;7Q4CGqmH4'@hYSX-)ckD5bd+ViIVPK u "#63'3#v3H4#;.R!#'.+#6323#32654&#"87>6:;7Q4CGqm>DQ34@hYSX-)ckD5bd+_IVPK u "#633#v3DQ3#;.H%373#'#'.+#632'32654&#"mnCK7>6::7R4CGqm@hYSX-)kD5bd+IVPK H373#'"#63mnCKYv3󊊥#;.P!%"'532654&'.54632&#"3#VGLT@E:KYL`RMKJL;F7@fNa-I5 /59HF@Q$*gJKZ3'B8:M 0fSZ_ťZ#"'53254&'.54632&#"3#NHLE6DUGWQKCHDw0A]I[)I5 -$a.6F9>D+Y&3I@BHH!)"'532654&'.54632&#"#73#'#WGLT@E9KYL_RNKJL;G7@gNaCKCn /59HFAP$*gJKZ3'B8:M 0gRZ_ H'"'53254&'.54632&#"#73#'#NHLF6CUGVQLCHDx0A]J\CKCn -$a.6F9>D+Y&3I@BHXP$1#"'532654'#"'532654&'.54632&#"g@M3.*1/3VGLT@E:KYL`RMKJL;F7@fNi"f0F/+(-(/59HF@Q$*gJKZ3'B8:M 0fS%1Z$/#"'532654'#"'53254&'.54632&#"0A]I^!@M3.*1/3 NHLE6DUGWQKCHDw&3I@b250F/+(,( -$a.6F9>D+H!)"'532654&'.54632&#"373#'WGLT@E9KYL_RNKJL;F6@gNamnCK /59HFAP$*gJKZ3'B8;M0gRZ_ŊH'"'53254&'.54632&#"373#'NHLF6CUGVQLCHDw0@]J\mnCK -$a.6F9>D+Y&3I@BH<$#5!##"'532654&'|SD))_<5!#3###53<|4++, ,wC7327#"&=#535#53533#3#%90%,.PS,)),F$62653"&532653#"'&#"#432=2WW4. %@4 .@%?4!FR!aXXa+R!/D;2()-1)R$#"&53327'2653#"'&#"#432D\^L25C>/- %@4 -@%?4%HXrB4s!/D;2()-1)F62653"&535!=2WW4!FR!aXXa+R((R#"&53327'5!D\^L25C>/%HXrB4Ї((F62653"&532673"&53=2WW4Ob=0ZZ0!FR!aXXa+R5)=OO=)R#"&53327&2673"&53D\^L25C>/b=0ZZ/%HXrB4v5)=OO=(F62653"&53"&4624&"2=2WW4FdFFd/B//B!FR!aXXa+RCdFFdFB//B/R#"&533276"&4624&"2D\^L25C>/ FdFFd/B//B%HXrB4dFFdFB//B/F"&53265373#73WW4==2tFsF Xa+RFFR!aȥR"&53327373#73^L25C>/3DdtFsF HXrB4%XF$ 3&532653#"'327#"&54g4==2W] 3/1*.3M@+RFFR!aX)*(+/F05R$3327#"&547#"&53327i3D6101*.2EH<^L25C>/'>"$/:.;2HXrB43333###7#73#'#JAQ:OC1REPT8RuCKCn&<3333###7#73#'#N@Q6LE.RCLP7SpCKCn;'6F( 3#3#73#'#648nDLDmkoZ47$33#77#73#'#j54TUDLDmJF( !#33353#53486224oZ}}}}U %!55!5!3#JI5+++++~W %!55!5!3# EH4)))))LʥU %!55!5!53JS4+++++~}}W %!55!5!53 EN5)))))L9}}H %!55!5!373#'JnnCK+++++~H %!55!5!373#' EnnCK)))))Lʊ 4632&#"#:F 2%&2"3DXH , 0U #3##3#b 94B6o*&U "'63232654#"3254&#JIEJwCK>YT.-0/\b !dNGJ XR}!!#}@4+Q #!!+3#8 (B(+&\ !!!!! @*++U %!55!5!J+++++~F !3#!#x4426&y2532>4.""&62ąF2++2F2++___X**EʇEEʇEFhd )53#5!#3||,||+++|U 3 ###3<<44Oh##3#4B6]&%733#####3b>14#`:]%21F&ZP 3#333##4:28v&vW 35!5!5!WE1E++z))5++262>4.""&62F2++2F2++___!EʇEEʇEFhF!#!#Fh42&QW 3#632#"'%4&#"3264CFslkt 5RZ,)),[QnvymaX VZ !!!!5ZJ+++T0<3#5!#|++Q( 33#3648koZ4 %#5.6753'>4&2b^^b2c^^MCCMDDbbb XX&ii:jj< 3###336978Dsg733>53#5&71;>2>;12*mm mm*) #535.54623#5>59Ax<3ee487^TJHGG9JWV))GUI5!-PF1M?*:F-)/-5)v58ҥR$2#4&#"#673#eO29I=03HH4J[ID73% 7327#"&5373#%9/&,.P<3>I4@*->SQ"&533254'353#53'73[K24@~-3-w22sI HXrB4nsl}}}}+ 327.#"#&'#"&54632673^=4UA-B'4#%3IgGYXH4M.1rsӐ_nr=T}PwN$%72654&+53254&#"#4632#"QMZb($B?A8333O]V]yA U]VO)BFFbuaZT!($ 3#5&3368)3*8k..#<%"&547&54632&#"2654&'"&Z^pR[XIHEImkSD?CC=P ,#J8A.PDvrlyzjjzwb Q$%27#"&54675.54632&#";#"JILJZa:>87^TJHGG9JWV))G!-PF1M?*:F-)/-5)v58<!32#"'53254&#"5475#P@hOUfXFKIE@\Ɯf)'ԎiZ?B-X,- AR$2#4&#"#6eO29I=03HJ[ID73%<2"&2>7%!."___3$&0&$$&0&$^OtF))FtO*OtF))Ft 327#"&5%9/&,.P<@*->S\ !#'#373>33>7!##'37T4X&R$#"'#3327D\R&225C>/%$B4< 3>53#rM73=YF̉Ԧ9+732#"'53254&#"54675.5475#5! ;#"lX^\REKIE:LYICGno@EEhw[U?B-Y+-GgS>j+)),]<"&62264&"[]]]AAA Whhh) !####5!#|22ON!))T$ #"'#4324#"32cc7.33s*;!E!32#"'53254&#"&54632#5&#"yMOkZFKIF>W`mr_D52'MRg~?B+Z,-x s7"&632;#264&"U^^`(V&K^-CCC )@Yjjj5##5!3!))Q3254'3#"&54@~-3-[KB4nsHXr$!#5.5463"4325>54&#"2]haB-DLG`@Xi]GM@" ux.|t [u| , xj\{-A<$ 3###335867Kxl7$33>53#5&70<>2>;12mmrmm*33254'3#"'##"&5473322H@01.%#"4632#5&#"!!327>uo@:3!" :@0| *P!2&#"#"'532654&'.546MKJL;F7@fNa[VGLT@E:KYL`3'B8:M 0fSZ_/59HF@Q$*gJKZd #5!#3!53{,||{++|++d 353#5!#353#53d{{,||_22+++|+*}}}}H53#"'53265PdKAJBF9+aN/";J   %32>54.#"'632#"'##5265#5!L;22;/-3I.=1WSNQ$]cuY+=h+! 3632#"'##3332>54&#"1EAAE14001$/1dxk~}!YNgM!#632#4&#"##o29VI34B:'3+&WkU@*U 3 ###33#<<44I5Oh0P 3333##3#P2:4Is5v&v7 2673"&53333#5267b=0ZZ0U87*49,D=&F5)=OO=)BGU0,=sF` 3!3##5#F242Q& #3##3#b 94B6o*&U 32654&#"'632#"'!!22SK[e$) iiPF@oT`UM" rl +U 73254&+532654#"#"'6320/\bC>YT.-4JIEJwCK- XR*GJ #!d}3#!!4@+ `#3!>5!3#5!#5l +342[[^/Qˠ\ !!!!! @*++#####33333|d3\>2>\3d`1Z>2>Z1xssR<<K!72654&+53254&#"5632#"'5LJ]g//?;JJMIP[HIH!UZYQ+14#`:]%&ZF !3#!#x4426&y22"&2>4."___F2++2F2++hEʇEEʇEF3!#!Fh4&QW #"'#6324&#"326kt 54CFsl3RZ,)),[QymnvaX V>"327#"4632#5&&:77>uo@:3!0| <3#5!#|++Q7333#5267787*49,D=&BGU0,=s %#5.6753'>4&2b^^b2c^^MCCMDDbbb XX$jj6jj< ###33978Dsg:?` %#5!333424+ˠQQ<#"&533273#q7FdT3>OF/33 &Wk1U?*&- 333333-222QQ&(`%33#5!333~2,42y2+QˠQQ 732654&#"5632#"'#53'3LEP\$%pkccKA)T`WK + fisk +3!3'#"'3632'32654&#"0_T\@>1,^V$&D?@M%&me1 RndPZ 32654&#"'632#"'322SKZe%) iiPF3oT`UM" rl W5!#"#5632#"'53267p !!39B?779S`m*! 0!&".5465##33>322>4."xtG'F00FPR:G''8&%%&8&%% AɳAAԋAAԋA'5&54632##"#767&#"3mqGC4R7:;5>)-XSYhc+db/T5Dk8. KPVIK4&#"5632#"&46;#"327l+EPJLNaBDUYbu$$GA;+mL/ ,Ej Uc(:?K*"&=46327#"3>32'2>54.#"`Xnw831:aPN.QQXX'&"@OA { , ^vC-0x{*,^F7P,zouWY3254#"32654&##"'632=,+00[AYbNC=!3#5!#5j "210<>% vvC%#"4632!32!.#"G?\_XULL?A8C@=,|rhpV[373#####'335?W/_b/Z?.?Y0b^.W?Q$"'532654+532654&#"5632JLIJDH((VXK9FGHIT_78>9a -85v)5-/)-F:*?M1FPU 73###3;0:/B::U 33###62673"&53;0:tb=0ZZ/::v5)=OO=(Y 73#'##3<<11&#5!###5265Z}1SJ3:(GK*:5+3#333####V+3;`]=2.+\1\|kK #3353#{0011<2"&264&"]]]uAAA恁hhhK###10 U$ 632#"'#4&#"32UDUe`cb8.3+GK:,*<xlg!H%#"&54632#5&#"3267`ur_D52'MRUN77+~x sqrs?5!##?u1(( 7333#52>7776-YT-1.<Z+NT$#5.46753>4&'#]ii]2]hh]2GMMG2GLLG 3 uu uu A #'##337978E %#5!333101(r  B%#"&=33273#n5DcP19PA111?K614 3333334-/-  /73333#5!3,},)1,(  r  %4&#"326'632#"'#53Ee!6 KE !of^bCD~3:<JLUP (9!33632#"'32654&#".~/!'\RP[A9/&"F:?JJV`Q 322>4.#"MD..ENNUN(00('!!'u}duMgg/\\/.3767'.54632#5#"5&#"3.;59?qhH<1AF99 *)YPYbD ?=S> , 18;6C%#"4632!323#!.#"G?\_XULL?Hs4A8C@=,|rhԥpV[C!%#"4632!3253#53!.#"G?\_XULL?22KA8C@=,|rhC}}}}pV[ #53533#632#"'532654&#"# b3?LOG;D(*%&0%2=K63T,nn,j(YekZK /2P^@1IT !!#3#91I5( B32#5&#"!!327#".BB=/$,OR7<9@+HA$ wW ^c'*9nZ73254&'.54632&#"#"'_LE6DUGWQKCHDw0A]I[TNHC$a.6F9>D+Y&3I@BH s1 ##575314>)}sssc ##5753#531422)Z}}}}A6 53#53#52>4ss)*$2#"'##5265#5!632>54&#"w900:,,1G-<("$JF]fH T?(*HM(.;:P.(%#"'##3353632'32654&#"?D4,../C@-+/.`N K7LH6 !#4&#"##53533#63222=K63bb3?LOGJ^@1IT,nn,j(YeY 73#'##3#7<<11߇5s&ͥU 73###33#;0:/Ht5B::7#52>733&2673"&53ǧ-YT-1.7b=0ZZ0Z+NT<v5)=OO=)K 333##5#K011rr 53533#632#"'32654&#" _3) iiPF322SK[e$Q/ZZ/ rl NT`UM 53533#632#"'4&#"326_1!&xmdhR?-Mn#:(PJ,,KKTQ 2;=2'2"&32>7#"'&#"'632325.#"___4KB 0)(L@.*N?.KB 0)hn9oS6- 7,bn9o< %"&5462%3267#"'&#"5632325.#"[]]]B@AB(I;)+H=)B@AB U\OS_(!#(!H\OS(33>32&#"#(5m+&!}?U&Q> .+G<33>32&#"#<4vV,%eA#YQ= -,EU$#5&#"327#5.5323!!7=&2kvB; bDw\L#5&#"327#5&46322'MR/r_Dx sq۪ }z!53!#}24ڠQ!53!# 01 ( 33#`64oZ41$ 33#i63f]A22"&2>7%!."___2*2D2*,*2D2*h^AA^,^~@@~< "&5462%267%!."[]]]BBBB yp__p+o__65!##'] 53!53!53%8{8{8'!'53&47#53>32&#"3#3#327#"&'!JJM g]>::
]g +T+~."b+T+b".~%m33###'##3#53#T-$'('%PP,mQN'7!ljX*N5!'7'7j X*{vEd !!-!!d?3@!!-vmd 5!7'!5!'7 '7d33?!--!Wy5!W""/5!/rrt\3"t-\3rWy 53!53!53!53!53!53AkkkkkkW""""""""""""/ 53!53!53!53!53!53Akkkkkk/rrrrrrrrrrrr\ 53'53'53'53'53'53"""""""""""Pkkkkkkkkkkkk-\ 53'53'53'53'53'53rrrrrrrrrrrPkkkkkkkkkkkkWy 53#53#53#53#53#53ATSSTSSW""""""""""""/ 53#53#53#53#53#53ATSSTSS/rrrrrrrrrrrr\ 53'53'53'53'53'53"""""""""""9TTSSSSTTSSSS-\ 53'53'53'53'53'53rrrrrrrrrrr9TTSSSSTTSSSSty!!#"y"t!#"rE-ty!#Ery"t!#ErrE-ty#!5"y"t!#!"t-y!#!-rEyt-!#!-rEW\3!"W"/\!3!"/-EW\!3!rW/\!3!r/-EW\!5!3"W"/\5!3"/rW-\5!3rW"/-\5!3r/rt\!#3""y"t\3!!"ErEt\ #3!!(r"t\ 33!!("E"t\3!!rE"t\ #3!!(r-ErEt\ 33!!("E-ErEt\3!!rEErEt\#!5!3"""t\#!5!3""rCto\ #!5!3#G!q("t-\ #!5!33-rE"("t-\#!5!3-rEr"t-\ #!5!3#"r(rt-\ #!5!33-rE"(rEt-\#!5!3-rErrty!5!!""t !#!5!"y"r(t !#!5!5"rE"(t!#!5"rErty!!#!ErEy"t !#!5!ErE-y"r(t !#!5!5ErErE"(t!#!5ErErErW\!5!3"y""/\ !!5!3!"W(r/\ !5!5!3!"/("E/\!5!3!"/rEW\5!3!rW""/\ !!5!3!ErW(r/\ !5!5!3!Er/("E/\!5!3!r/rEt\ !5!3!!"""t\ !#!5!3""y"rt\ !#!5!3""rE"Et\ !#!5!3""rErEt\ #!5!3!!"r""t\ #!5!3!!-rE"E""t\ #!5!3!!-rErE""t\ #!5!3!!#"rE(r"(t\ #5!5!3!!(Er("ErEt\ 3!!#!5!(ErE\E("rt\ 3!!#!5!53"ErE(\ErE"(t\ #!5!3!!"rrErt\ !!#!5!ErE\ErErt\ !#!5!3!ErErWrt\ !3!!#!rErEyErEt\ !!#!5!-ErE\ErEr=!5!""""at\3!3e""t #!!!!"""aty #!!#""W"at !!!!!e""t !5!#!5!""ya"ty ##!5!#e""W"t %#!5!#!""}a"ye\ %!!3!!"""aW\ 33!!3"ay"y"a\ 3!!3!e"ay"e"\ %5!5!3!5""ay"W\ 3!5!3e"ya"y"\ !5!!!5!}a&ye\}"ay"et\ !!!!#3""""at\ 3!!!3e"a""at\ !!!3!3!e"e}"a"et\ 3#!5!5!5""aa""t\ #!5!33"a"""t\ %#!53!5!3"e"}a"}a"}e"at %!#!=!""a"""ty ###!5!""W""t %!!#5!#!5e"""e""}a"\ !5!3!5!""a""W\ !!5!333aa""y""\ !3!5!!5!}"a}a""}"at\=!5!5!3!!!!#""""a""at\5!333!!###a""a""W""t\ !!!#!!5!3!3!ey"}a"e}"a"}a"a}"Fw( *V   D  i  ~ P  8 e 4  _Copyright(c) 2019 M+ FONTS PROJECTCopyright(c) 2019 M+ FONTS PROJECTM+ 1mnM+ 1mnItalicItalicFontForge 2.0 : M+ 1mn light : 23-4-2019FontForge 2.0 : M+ 1mn light : 23-4-2019M+ 1mn ItalicM+ 1mn ItalicVersion 1.063aVersion 1.063amplus1mn-italicmplus1mn-italichttp://mplus-fonts.osdn.jphttp://mplus-fonts.osdn.jpThis font is free software. Unlimited permission is granted to use, copy, and distribute it, with or without modification, either commercially or noncommercially. THIS FONT IS PROVIDED "AS IS" WITHOUT WARRANTY.This font is free software. Unlimited permission is granted to use, copy, and distribute it, with or without modification, either commercially or noncommercially. THIS FONT IS PROVIDED "AS IS" WITHOUT WARRANTY.0S0n00000o000u10j 0000000g0Y00B000e9Y 0ng q!0k000Z00~0_UFimv0jR)u(0g0B0c0f00u10k0TR)u(00QM^0Y00S0h0L0g0M0~0Y0L0Qh0fq!O݊<0h0U0[0f0D0_0`0M0~0Y02Y  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a bcdefghjikmlnoqprsutvwxzy{}|~     !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~glyph1glyph2uni000Auni00A0uni00ADuni00B2uni00B3uni00B9AmacronamacronAbreveabreveAogonekaogonek Ccircumflex ccircumflex Cdotaccent cdotaccentDcarondcaronDcroatEmacronemacronEbreveebreve Edotaccent edotaccentEogonekeogonekEcaronecaron Gcircumflex gcircumflex Gdotaccent gdotaccentuni0122uni0123 Hcircumflex hcircumflexHbarhbarItildeitildeImacronimacronIbreveibreveIogonekiogonekIJij Jcircumflex jcircumflexuni0136uni0137 kgreenlandicLacutelacuteuni013Buni013CLcaronlcaronLdotldotNacutenacuteuni0145uni0146Ncaronncaron napostropheEngengOmacronomacronObreveobreve Ohungarumlaut ohungarumlautRacuteracuteuni0156uni0157RcaronrcaronSacutesacute Scircumflex scircumflexuni0162uni0163TcarontcaronTbartbarUtildeutildeUmacronumacronUbreveubreveUringuring Uhungarumlaut uhungarumlautUogonekuogonek Wcircumflex wcircumflex Ycircumflex ycircumflexZacutezacute Zdotaccent zdotaccentlongsAlphaBetaGammauni0394EpsilonZetaEtaThetaIotaKappaLambdaMuNuXiOmicronPiRhoSigmaTauUpsilonPhiChiPsiuni03A9 IotadieresisUpsilondieresis alphatonos epsilontonosetatonos iotatonosupsilondieresistonosalphabetagammadeltaepsilonzetaetathetaiotakappalambdauni03BCnuxiomicronrhosigma1sigmatauupsilonphichipsiomegauni0400uni0401uni0402uni0403uni0404uni0405uni0406uni0407uni0408uni0409uni040Auni040Buni040Cuni040Duni040Euni040Funi0410uni0411uni0412uni0413uni0414uni0415uni0416uni0417uni0418uni0419uni041Auni041Buni041Cuni041Duni041Euni041Funi0420uni0421uni0422uni0423uni0424uni0425uni0426uni0427uni0428uni0429uni042Auni042Buni042Cuni042Duni042Euni042Funi0430uni0431uni0432uni0433uni0434uni0435uni0436uni0437uni0438uni0439uni043Auni043Buni043Cuni043Duni043Euni043Funi0440uni0441uni0442uni0443uni0444uni0445uni0446uni0447uni0448uni0449uni044Auni044Buni044Cuni044Duni044Euni044Funi0450uni0451uni0452uni0453uni0454uni0455uni0456uni0457uni0458uni0459uni045Auni045Buni045Cuni045Duni045Euni045Funi0462uni0463uni0472uni0473uni0474uni0475uni0480uni0481uni0490uni0491uni04AEuni04AFuni04E8uni04E9Euro arrowleft arrowright arrowdblleft arrowdblrightSF100000uni2501SF110000uni2503uni2504uni2505uni2506uni2507uni2508uni2509uni250Auni250BSF010000uni250Duni250Euni250FSF030000uni2511uni2512uni2513SF020000uni2515uni2516uni2517SF040000uni2519uni251Auni251BSF080000uni251Duni251Euni251Funi2520uni2521uni2522uni2523SF090000uni2525uni2526uni2527uni2528uni2529uni252Auni252BSF060000uni252Duni252Euni252Funi2530uni2531uni2532uni2533SF070000uni2535uni2536uni2537uni2538uni2539uni253Auni253BSF050000uni253Duni253Euni253Funi2540uni2541uni2542uni2543uni2544uni2545uni2546uni2547uni2548uni2549uni254Auni254BSF430000SF240000SF510000SF520000SF390000SF220000SF210000SF250000SF500000SF490000SF380000SF280000SF270000SF260000SF360000SF370000SF420000SF190000SF200000SF230000SF470000SF480000SF410000SF450000SF460000SF400000SF540000SF530000SF440000uniFEFFEXy3V ZY\\\\P-}xPZZm,"xxxxxxTTxxxxxxxxxxZZ2JnJnJxJnddnJJJJJJJTTTTTTZ2Z\^xx}|J#x||iTW|J|^lxxAmdiii}>JJiii}iii}xiii}=iii}iJii}ixn}Jii}xKndTdinTiJiJixJixJiiixJi2l>iTiii}ixxxxxxiiiiJxTxJnJnTTTTnJTJJJTTJTTxxxxxxxxxxJnMTTJTJTTTTTJTJJTTnTTTTTTTTMMMi}niMJd}dTTniiTnxJxJxJTxJ&xaaaaaaa\ruby-asciidoctor-pdf-1.6.2/data/fonts/mplus1mn-regular-ascii-conums.ttf000066400000000000000000000610341416357056400261540ustar00rootroot00000000000000FFTMh^OS/28Vcmapcvt S fpgm/Legasp]glyfa7y< Dheaddq6hheawT$hmtx?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abc,K*PXJvY#?+X=YK*PX}Y ԰.-, ڰ +-,KRXE#Y!-,i @PX!@Y-,+X!#!zXYKRXXY#!+XFvYXYYY-, \Z-,"PX \\Y-,$PX@\\Y-, 9/- , }+XY %I# &JPXea PX8!!Ya RX8!!YY- ,+X!!Y- , Ұ +- , /+\X G#Faj X db8!!Y!Y- , 9/ GFa# #JPX#RX@8!Y#PX@e8!YY-,+X=!! ֊KRX #I UX8!!Y!!YY-,# /+\X# XKS!YX&I## I#a8!!!!Y!!!!!Y-, ڰ+-, Ұ+-, /+\X G#Faj G#F#aj` X db8!!Y!!Y-, %Jd# PX<Y-,@@BBKcKc UX RX#b #Bb #BY @RX CcB CcB ce!Y!!Y-,Cc#Cc#-KPXYF+X!YKRX!Y+\XY+!y(>n(>Tr&Zv2fx@Z&>TrHx *@Xjx2X  " : L x  @ b ~ 0 > r  l f "$|,F<,|n$ (Px<dt*:JZj~$6Lbt.DXl.F^v(B\t(BXn":Tv<^ : l !!D!""`"`!*3!'3#! f!X13#53d Pnׂs 3#3#dPdPndBBBB2K/"'#5&'5.546353&'654'K80H.52180_YH1(%|f] ffU?djP!P>V^diJqZx_# 62"&42"&424"&24"<|zEEzEozEEzEhhhh"PނRRRRRR)";533##"&5475.54632&#"327vL>&RPPMNin37bW;:5 (JZB<''r>HBhe6\9KZ EXHGI 1 3#n< }t 673#}L[cc[L(&UUitw #>&'3wL[cc[LNڴUU)_''7'7'37ʪwJSTIw[4!~66~!WKK(7+ 3##5#535$T+BB~J#673F*x%iI5!i"CC;353/ #IM<2".4>32654'&#"`D22D`D22C88?88$TؓT$$TؓTbO7UUIRS!'573ReNi&P73!554#"5632^EVPZrDBB|:J2cA$2#"&'53254&+532654&#"5>Tax+9-*:(P[UN62EQ0>YL# ILEBCH58*I( %##5#53##UT\TBBlZ3632#"'532654#"#!#%8alG@G;B<`"K 1mI%Ma|BF#2&#"3632#"&54>2654&#"=627HA5AWS[^cV3[+70.4551Ge2pvJTPmbLMWoXK 5!5!#`^RXSBB_2 #-">54&"&54675.5462'2654'l9.497;_dB;0>bb=1;Bm[7=y>9m:Q M;49TfbDfe7R]^Q8_hHbfBCCNF<""'53267##"&5432"3254&=645GB5ATVDN'2[,7002j1 Hd2v8HMfeSiT65353xxxz~@ #67353F*x%Sx|7N%5%J|PP<5!5!<||{BBBBAN55%5A|JPPPA%#4>7>54#"563253P! tU_]a[c_n7]+#5^=R-TL'C$(N#{$/354&#"327#"&54632#"&546323275&#"x4.SR(E8>?;GzvywW]AKJFCC'a!#)(&8:w4&JŲddA`wsdY@$+= #3##3#Q0TdX@&K!73254+532654&#"#"'632!&5+PIA<+(PKKP=6:MC @>E6< ;=T j7#5&#"327#"&54632R OZ634?x}t?9HʸA 732>54&#"#"'632!AK)W^!<FCCF~C 4~ ԭU 3#3!!J@BB_ #!#3T@mB@-%#53#"!2&#"32kJV:>A7&J#@l#mH< 33###TTP,&lZ )53#5!#3uu@uuBVBB<#"'53265#5RlSC]62fN#H6>BK 33###3]]TTJhd3!hB####333#sOVIP(nIQ^(T4l>&F ##333#TTPP00&(2"&26&"ddd???`\K #"'#6324&#"326mt(TKPulREJ++KDqnxVN P(j"&62#.26&"nddd13)@XBz??? Е$Z:N>B\F#'.+#63232654#"?8/?V;630TKP0\J+?_$dA1>M F"#"'53254&'.54632&7?,1oT[EI\t2=^Qe^OLF=52B1kV-R=|7H*kLU_P,73#5!#ЙBBh<"&5332653\\T4893P Zd&OA@Pd73#3RdVP&v7333###3BP?1NKj>FPKT.&2 33###3mV\mmXZ"1wc 33#3UTZwcH"K 5!5!!!5O^BBBBt#3#38/3#/ILHnth53#53n8r8##3#NdNz>2t5!288^*#&'3^FZJK5354632&#"3##Kx>N.,%&# R>F_K C 6B(>J<526=#"4632327&#"}hw-0inSH{q8%$%BC@gXz%zZ[K#4&#"#3632N)8;RR9BOLT@W;Y[iE ##5753ETth>xxx<J 7#53!52653Z`h> @axxP #'#37_RR=A%3##53ފ>>>!4&#"#4&#"#632632!N!P9N8)6J3'?'?#5MpF3#632#4&#"RH]qRP3@1"(Iah;/22"&264&"ccc|66|6ZZZK$ #632#"'74#"32RKZhed_0-{/$%8q 7$ 5#"&54632327&#"W-0_dehZKq8%$/{0s n"#6ykRAN2P"#"'532654&'.54632& g(5gHc[TGOB=7*;[J[YMINN &HKC#(+',G:DHAA3#327#"&5#53530/+.6TBddR>:& C AU*>K3#"&53327WRH]kNP,=0#(Hbh>,2733#3sRdVF7333###3ILA0HFf@HPFR(d4R\7 373#'##3lTZjjVX6-$%33#73zUSNQnP !3!55#PT>v>>At%;#"&=4&+5326=46;#"-(!>2MIE+-55-+EIM2>!(<D=H&6GOB;<;BOG6&H=D$*3JKt%.=4&+532;#"+5326=4671-(!>2MIE+-55-+EIM2>!(-<D=H&6GOB;<;BOG6&H=D2'&/.5767r+ #}r+ #Tc%)< lTc%)< /-3##5".4>2 6& PPyHHyyHHyXH}xVHyyHHyyH/- 0%3!5>54'&#"5632 6& ".4>2n5FSKXU/.53H鸨yHHyyHHy@@?1,I$**KIJGHHyyHHyy/-%532#"'5327654'&+575#5! 6& ".4>2LThbPCHH? !!!O:YH鸨yHHyyHHyNHX\G$:29@@HHyyHHyy/- '3##5!53# 6& ".4>2KZZL LLH鸨yHHyyHHy >||>pHHyyHHyy/-%53632#"'5327654'&"#!# 6& ".4>2*5R\.6rGCK=L"n'C5TH鸨yHHyyHHyXQX/8E!%<5 '@HHyyHHyy/-+;C67632#"'&547632&#"&#"32765".4>2 6& }(6Y0267]i5,9=s:952cp}YRZH鸨yHHyyHHy;@@wHHyyHHyy/--=EU327654'&62"'&547675&'&54&#"67654 6& ".4>2<##%<>#""!112#+|7997!:+ 76!5.$H鸨yHHyyHHy[*..*%%&=.%(kI*++*I1$" &-=&$ %&HHyyHHyy/-)1A%2767##"&547632#"'52654'&#" 6& ".4>2J*$+1Wd67]a458=t<>8DtD#"9;"!#H鸨yHHyyHHy5-YbYZ239:oNTADF=<#""!>HHyyHHyy/-'73##54'&"27"'&762 6& ".4>2;FFoRRZ&&&&&&&zH鸨yHHyyHHy}si40044007FEEF$FEEHHyyHHyy/-'3##5'3##5 6& ".4>2rEEoFFoqH鸨yHHyyHHy}sirsiHHyyHHyy/-!)9%3!567654'&#"56323##5 6& ".4>2:s%& 1=8?>#"%#FFoH鸨yHHyyHHyLLAC:0+W"+)MDHEjsiHHyyHHyy/-!)1A#575#5332#"'5327654'&'&3##5 6& ".4>2=&w{5&%G<263( FFoH鸨yHHyyHHyV@LL((GW/.S$3/ 'siHHyyHHyy/- /#33##5#5#533 6& ".4>2y}~FFo@@?XH鸨yHHyyHHylsittJlJHHyyHHyy/-'/?3632#"'5327654'&#"#3#'3##5 6& ".4>2,"= !$&S6/5.1$< FFoH鸨yHHyyHHy,-Q[05Q"4./LLsiHHyyHHyy/-"2:J#"&547632&">763%3##527654'&#" 6& ".4>2H''EFN1+N*+(V!6FFo%&%H鸨yHHyyHHy`V[54vxQIJ'+X'si ";9  "6;" HHyyHHyy/- #+#75#5!%##57".4>2 6& %GD[4FopyHHyyHHyXHNyLLzsir&HyyHHyyH/-%2AIY#"'&547675&'&5462%3##5>54'&"27654'& 6& ".4>2%RFG)(# JJxFFo%$H&'NH鸨yHHyyHHy~!*6HV+)J2'%/>LL>+"siu0",#"N$+-(HHyyHHyy/-#19I$2767#"'&54762#"'53##5%"32654'& 6& ".4>2^!6?$$(''')+V,.FFo',%&,H鸨yHHyyHHy&*Z'12XX43:;tUXJsi5>:;" @=6" HHyyHHyy/-'5=M%3#56767654'&#"56322764'&""'&7632 6& ".4>28;'#/84;: !!NN:I""""II#!!#~H鸨yHHyyHHyLLH4(@=++W"+)MICD3443344{HFFHHCCHpHHyyHHyy/-".4>273#733#PyHHyyHHymIIlHH]HyyHHyy nsC*rnsC*/-0".4>273#632!5#567654'&#"PyHHyyHHymII=1&'n^%#"#>@]HyyHHyy nsC*\+-:ADyPPnHDFM)+/-6".4>273#332#"'327654&+575#PyHHyyHHymIIs *(272273#!#33535+573PyHHyyHHymIICC??x]HyyHHyy nsC*NttN/-4".4>273#!#3632#"'327654&#"#73PyHHyyHHymII <#$2.5.7R'$B<"]HyyHHyy nsC*0/4"U60[QZ/-4G73#".4>2'654'&#"'676325&#"32'.'&'&54632#"mIIyHHyyHHy&'##>!-+(+*Q-,%%JEi ,%$*& nsC*&HyyHHyy5[U10 Q,+NPN}>@T 2> 59@/-"".4>273#3367675!PyHHyyHHymII]BJ%#5]HyyHHyy nsC*Pytq|P/-$4DS32654'&'567654&"73#".4>2'#"'&5476762&'&54"(()GFR+$JJmIIyHHyyHHyX&'*4D!&/"!$1J)+VH4(#"'>LL.nsC*&HyyHHyy("%(d!  #/-3G73#".4>2327673#"'327654'&#""'&54632mIIyHHyyHHy'D?!0-+.,[+%''GB|H*%  nsC*&HyyHHyyg1X\b T+*O^Rx>= <6< 9/-*6D63235#567654'&#"".4>2&"276&47632#"8/ #&=[  :</yHHyyHHy"""""""&''&c\+,+:A$2JPPsCEEM)+HyyHHyyTFFDDFFD&0011001Q5!Q..5!t \3.t=\3Q 53!53!53!53!53!53AkkkkkkQ............ 53!53!53!53!53!53Akkkkkk \ 53'53'53'53'53'53...........Pkkkkkkkkkkkk=\ 53'53'53'53'53'53PkkkkkkkkkkkkQ 53#53#53#53#53#53ATSSTSSQ............ 53#53#53#53#53#53ATSSTSS \ 53'53'53'53'53'53...........9TTSSSSTTSSSS=\ 53'53'53'53'53'539TTSSSSTTSSSSt!!# #..#t!##.U=t!#U.# t!#UU=t #!5 .#.t !#! .#t=!#!=Ut=!#!=UQ\3!.Q #.\!3!.=UQ\!3!ÒQ #\!3!Ò=UQ \!5!3 .Q. \5!3.Q=\5!3Q.=\5!3t\!#3#...##t\3!!.#UUt\ #3!!2# #.#t\ 33!!2.U #.#t\3!!U#.#t\ #3!!2#=UUt\ 33!!2.U=UUt\3!!UUUt \#!5!3 .#..t \#!5!3 .#.!t_\ #!5!3#-/#2.t=\ #!5!33=U.2.#t=\#!5!3=U.t=\ #!5!3# .#2t=\ #!5!33=U.2Ut=\#!5!3=Ut!5!!##..#t !#!5!#.# .#2t !#!5!5#.#U.2t!#!5#.#Ut!!#!UU.#t !#!5!UU=.#2t !#!5!5UUU.2t!#!5UUUQ\!5!3...#\ !!5!3!#.Q2#\ !5!5!3!#.2.U\!5!3!.UQ\5!3!Q.#.\ !!5!3!UQ2#\ !5!5!3!U2.U\!5!3!Ut\ !5!3!!#.#.#.#t\ !#!5!3#.#..##t\ !#!5!3#.#.U.Ut\ !#!5!3#.#.UUt\ #!5!3!! .##.#.t\ #!5!3!!=U.U.#.t\ #!5!3!!=UU.#.t\ #!5!3!!# .#U2#.2t\ #5!5!3!!2U#2.UUt\ 3!!#!5! 2UU\U2.#t\ 3!!#!5!53.UU2\UU.2t\ #!5!3!! .##Ut\ !!#!5! UU\UUt\ !#!5!3!UUQ##t\ !3!!#!UUUUt\ !!#!5!=UU\UU=!5!....[t\3!3_..t #!!!! . ##..[t #!!#..Q# .#[t !!!!!_..t  !5!#!5!# .#.s[.t ##!5!#_..Q#.t %#!5!#!..w[.s_\ %!!3!! .#..[Q\ 33!!3.[s.#. [\ 3!!3!_.[s._. \ %5!5!3!5#..[s.Q\ 3!5!3_.s[..#\ !5!!!5!w[2s_\w.[s._t\ !!!!#3 ##....[t\ 3!!!3_.[.#.#[t\ !!!3!3!_._w.[._t \ 3#!5!5!5..##[[..t\ #!5!33.[...t\ %#!53!5!3._.w[.w[.w_.[t %!#!=!#.#.[...t ###!5!..Q##..t %!!#5!#!5_..._..w[.\ !5!3!5!..[..Q\ !!5!333[[....#\ !3!5!!5!w.[w[..w.[t\=!5!5!3!!!!##.##...[..[t\5!333!!###[..[..Q.##.##t\ !!!#!!5!3!3!_s.w[._w.[.w[.[w/-".4>2733#PyHHyyHHyLUU]HyyHHyy]x2*/-)".4>2632!5#567654'&#"PyHHyyHHyVPH464c/2./UW]HyyHHyywN+.>ECDDyEIGK**/-.".4>2332#"'327654&+575!PyHHyyHHyK2Q " !9HHARa54TL]HyyHHyyN>07$L/.XIND/-".4>2#!3535+573PyHHyyHHyQQZZQ]HyyHHyyCyyC/-/".4>2!3632#"'327654'&#"#73PyHHyyHHyeI&34"G;MAIr6..,T0+ ]HyyHHyy!28%"K8/YP.,/--B".4>2"327654'&#"'676325&"'&'&'&'&54632PyHHyyHHyo><)1q^5601U2 )(@<59X B67  ]HyyHHyyPNq>L45[U01 W/.E  6B!"8A !/-".4>2!367675!PyHHyyHHyF WY--4H]HyyHHyyNgyxD/--<K".4>227654'567654'&"#"&54767'&547632&PyHHyyHHy@/;7997y021129"!:9F 2327673#"'32654'&#2#"'&546PyHHyyHHyn01U. %))D?9?;rx45b  !!76 @]HyyHHyyfV[12 Z-.E|;:@/-".".4>273#276'&"4762"'PyHHyyHHymII%%%%%%%"TT]HyyHHyy nsC*GFFG GFF31133112"Fw" 2c  kLc D  i ~ D     A 4t   > S k '5Copyright(c) 2019 M+ FONTS PROJECTCopyright(c) 2019 M+ FONTS PROJECTM+ 1mnM+ 1mnRegularRegularFontForge 2.0 : M+ 1mn : 23-4-2019FontForge 2.0 : M+ 1mn : 23-4-2019M+ 1mnM+ 1mnVersion 1.063aVersion 1.063amplus1mn-regularmplus1mn-regularhttp://mplus-fonts.osdn.jphttp://mplus-fonts.osdn.jpThis font is free software. Unlimited permission is granted to use, copy, and distribute it, with or without modification, either commercially or noncommercially. THIS FONT IS PROVIDED "AS IS" WITHOUT WARRANTY.This font is free software. Unlimited permission is granted to use, copy, and distribute it, with or without modification, either commercially or noncommercially. THIS FONT IS PROVIDED "AS IS" WITHOUT WARRANTY.M+ 1mnM+ 1mnregularregular0S0n00000o000u10j 0000000g0Y00B000e9Y 0ng q!0k000Z00~0_UFimv0jR)u(0g0B0c0f00u10k0TR)u(00QM^0Y00S0h0L0g0M0~0Y0L0Qh0fq!O݊<0h0U0[0f0D0_0`0M0~0Y0M+ 1mnregular2  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~glyph1glyph2uni000Auni00A0uni2460uni2461uni2462uni2463uni2464uni2465uni2466uni2467uni2468uni2469uni246Auni246Buni246Cuni246Duni246Euni246Funi2470uni2471uni2472uni2473uni24EBuni24ECuni24EDuni24EEuni24EFuni24F0uni24F1uni24F2uni24F3uni24F4SF100000uni2501SF110000uni2503uni2504uni2505uni2506uni2507uni2508uni2509uni250Auni250BSF010000uni250Duni250Euni250FSF030000uni2511uni2512uni2513SF020000uni2515uni2516uni2517SF040000uni2519uni251Auni251BSF080000uni251Duni251Euni251Funi2520uni2521uni2522uni2523SF090000uni2525uni2526uni2527uni2528uni2529uni252Auni252BSF060000uni252Duni252Euni252Funi2530uni2531uni2532uni2533SF070000uni2535uni2536uni2537uni2538uni2539uni253Auni253BSF050000uni253Duni253Euni253Funi2540uni2541uni2542uni2543uni2544uni2545uni2546uni2547uni2548uni2549uni254Auni254BSF430000SF240000SF510000SF520000SF390000SF220000SF210000SF250000SF500000SF490000SF380000SF280000SF270000SF260000SF360000SF370000SF420000SF190000SF200000SF230000SF470000SF480000SF410000SF450000SF460000SF400000SF540000SF530000SF440000uni2776uni2777uni2778uni2779uni277Auni277Buni277Cuni277Duni277Euni277FuniFEFFEXy3V Z\\\\\P-xxPZZo1xxxxxx@@xxxxxxxxxxZZ2JnJnJxJnddnJJJJJJJTTTTTTZ2Z\//////////////////////////////[[[[[[[//////////\ruby-asciidoctor-pdf-1.6.2/data/fonts/mplus1mn-regular-subset.ttf000066400000000000000000001724201416357056400250710ustar00rootroot00000000000000FFTMhOS/28VcmapM" cvt S fpgm/ egaspglyfheadd6hheaw*T$hmtx locaހmaxp^x nameѨwpostoq prep+t.vheaE\$vmtx\  ^_< y3V3ZZ1   jM+ @ \tZ3@@l!s(K}i)(i/<RPA(ZFK2<7<AA#K7AU_-<Z<KdF(K(FF7<2K/n2AKA77K<Ki<PAF2K7nPAK27-PAK2PC"A F->d Pn7K/uF777UU<UZZ<Z F(((((4<<<<MAAA<AAAA7777ii<i2F22222<KK<K-AAA7A7<7A7<<7 7U7P7U7U7<7-<-<-<-<<< UUZdPPZiZi<<KPPdAdAd2d2AFFFF<<FF(2(2(2FnFn<<FP<<FP<<7A7-7A<K<K<K<K<A<K-KPKP<<KsUK<(ZKFU(<KU72- Z%HFH%C2H2F2P-K2-2 J;-/H2-#UUs7FZZ< KF-<KKsUAFFK<(<K77-242#*PPAANz7HKKN$A2AKA7-7::+'0SS"&77 z:Pii<" NK-A (22KUsz'(2x#u//////////////////////////////![[[[[[[////////// 8  ~_cu  & !"!!!!$s$%K%l' br  & !"!!!!$`$%%P'vywi_Q5=[Zݏ    !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`absefjyqlwkthxom}Xdon~c9zr{,K*PXJvY#?+X=YK*PX}Y ԰.-, ڰ +-,KRXE#Y!-,i @PX!@Y-,+X!#!zXYKRXXY#!+XFvYXYYY-, \Z-,"PX \\Y-,$PX@\\Y-, 9/- , }+XY %I# &JPXea PX8!!Ya RX8!!YY- ,+X!!Y- , Ұ +- , /+\X G#Faj X db8!!Y!Y- , 9/ GFa# #JPX#RX@8!Y#PX@e8!YY-,+X=!! ֊KRX #I UX8!!Y!!YY-,# /+\X# XKS!YX&I## I#a8!!!!Y!!!!!Y-, ڰ+-, Ұ+-, /+\X G#Faj G#F#aj` X db8!!Y!!Y-, %Jd# PX<Y-,@@BBKcKc UX RX#b #Bb #BY @RX CcB CcB ce!Y!!Y-,Cc#Cc#-KPXYF+X!YKRX!Y+\XY+!y(>n(>Tr&Zv2fx@Z&>TrHx *@Xjx2X  " : L x  @ b ~ 0 > r  < X l 6 R b n HVt6h(N8Vt2bR|Bj V^F|D~2\tFd(VNx4` 4n Bv  R | ! !0!\!!!" "*"@"h""""##.#V#~####$ $$$:$R$j$$$$$%%*%J%l%%%%&$&J&n&&&'('V'''((4(n((()6)r))*6*r***++*+R+++,,@,n,,--*-Z---..&.H.j....//,/F/z/////00$0@0T0t0000111,1B1t11122(2`2223 3<3r3334$4@4j444445 5>5V5z55556.6L6p666777B7r77778.8R8t888899R9`9999::8:T:n::::;;$;6;X;;;;;<<<>2>b>z>>>>? ?*?>?b????@@@6@L@h@@@A A:AjAABBB>BnBBBBC CHChCCCCD,DfDDDEE(E:ELEdEzEEEEF$FLFbFxFFFG6GGHHHIJJKFKLL`LMVMMNFNNO OOP>PQQQ&Q4QBQjQQQRR.RVR~RRRRRRRRSS S2SDSTSdStSSSSSSTTT,T>TPTfT|TTTTTTU U U2UHU^UrUUUUUUVVV0VHV`VxVVVVVWW*WBW\WvWWWWWWXX,XBX\XrXXXXXYYYPdPndBBBB2K/"'#5&'5.546353&'654'K80H.52180_YH1(%|f] ffU?djP!P>V^diJqZx_# 62"&42"&424"&24"<|zEEzEozEEzEhhhh"PނRRRRRR)";533##"&5475.54632&#"327vL>&RPPMNin37bW;:5 (JZB<''r>HBhe6\9KZ EXHGI 1 3#n< }t 673#}L[cc[L(&UUitw #>&'3wL[cc[LNڴUU)_''7'7'37ʪwJSTIw[4!~66~!WKK(7+ 3##5#535$T+BB~J#673F*x%iI5!i"CC;353/ #IM<2".4>32654'&#"`D22D`D22C88?88$TؓT$$TؓTbO7UUIRS!'573ReNi&P73!554#"5632^EVPZrDBB|:J2cA$2#"&'53254&+532654&#"5>Tax+9-*:(P[UN62EQ0>YL# ILEBCH58*I( %##5#53##UT\TBBlZ3632#"'532654#"#!#%8alG@G;B<`"K 1mI%Ma|BF#2&#"3632#"&54>2654&#"=627HA5AWS[^cV3[+70.4551Ge2pvJTPmbLMWoXK 5!5!#`^RXSBB_2 #-">54&"&54675.5462'2654'l9.497;_dB;0>bb=1;Bm[7=y>9m:Q M;49TfbDfe7R]^Q8_hHbfBCCNF<""'53267##"&5432"3254&=645GB5ATVDN'2[,7002j1 Hd2v8HMfeSiT65353xxxz~@ #67353F*x%Sx|7N%5%J|PP<5!5!<||{BBBBAN55%5A|JPPPA%#4>7>54#"563253P! tU_]a[c_n7]+#5^=R-TL'C$(N#{$/354&#"327#"&54632#"&546323275&#"x4.SR(E8>?;GzvywW]AKJFCC'a!#)(&8:w4&JŲddA`wsdY@$+= #3##3#Q0TdX@&K!73254+532654&#"#"'632!&5+PIA<+(PKKP=6:MC @>E6< ;=T j7#5&#"327#"&54632R OZ634?x}t?9HʸA 732>54&#"#"'632!AK)W^!<FCCF~C 4~ ԭU 3#3!!J@BB_ #!#3T@mB@-%#53#"!2&#"32kJV:>A7&J#@l#mH< 33###TTP,&lZ )53#5!#3uu@uuBVBB<#"'53265#5RlSC]62fN#H6>BK 33###3]]TTJhd3!hB####333#sOVIP(nIQ^(T4l>&F ##333#TTPP00&(2"&26&"ddd???`\K #"'#6324&#"326mt(TKPulREJ++KDqnxVN P(j"&62#.26&"nddd13)@XBz??? Е$Z:N>B\F#'.+#63232654#"?8/?V;630TKP0\J+?_$dA1>M F"#"'53254&'.54632&7?,1oT[EI\t2=^Qe^OLF=52B1kV-R=|7H*kLU_P,73#5!#ЙBBh<"&5332653\\T4893P Zd&OA@Pd73#3RdVP&v7333###3BP?1NKj>FPKT.&2 33###3mV\mmXZ"1wc 33#3UTZwcH"K 5!5!!!5O^BBBBt#3#38/3#/ILHnth53#53n8r8##3#NdNz>2t5!288^*#&'3^FZJK5354632&#"3##Kx>N.,%&# R>F_K C 6B(>J<526=#"4632327&#"}hw-0inSH{q8%$%BC@gXz%zZ[K#4&#"#3632N)8;RR9BOLT@W;Y[iE ##5753ETth>xxx<J 7#53!52653Z`h> @axxP #'#37_RR=A%3##53ފ>>>!4&#"#4&#"#632632!N!P9N8)6J3'?'?#5MpF3#632#4&#"RH]qRP3@1"(Iah;/22"&264&"ccc|66|6ZZZK$ #632#"'74#"32RKZhed_0-{/$%8q 7$ 5#"&54632327&#"W-0_dehZKq8%$/{0s n"#6ykRAN2P"#"'532654&'.54632& g(5gHc[TGOB=7*;[J[YMINN &HKC#(+',G:DHAA3#327#"&5#53530/+.6TBddR>:& C AU*>K3#"&53327WRH]kNP,=0#(Hbh>,2733#3sRdVF7333###3ILA0HFf@HPFR(d4R\7 373#'##3lTZjjVX6-$%33#73zUSNQnP !3!55#PT>v>>At%;#"&=4&+5326=46;#"-(!>2MIE+-55-+EIM2>!(<D=H&6GOB;<;BOG6&H=D$*3JKt%.=4&+532;#"+5326=4671-(!>2MIE+-55-+EIM2>!(-<D=H&6GOB;<;BOG6&H=D2'&/.5767r+ #}r+ #Tc%)< lTc%)< $1533ni P |PL%27##5&7532&+'6958;<<;859=#5354632&#"ߧ4*BBZP//).//%54'&aRdPTQ2:gbYORdPTQ2:gbY#/u #/u +WM["D%3,LYCb1+WM["D%3,LYCb@*Z@*Zbr53#53"PPb #!%27#"32&#"26&""&62 %$+)%&)+fff(ԆԆ75CW~ȭ:F""&54;54&#"56325!#"327IS-=C>BT8:hlE=0*&0E?5 6;]h77L/1'+ -2 '57'57ˎ_F__F>5!#5>wPtGdF75!d,HH ##-#'.+#63226&""&62%32654&#"r9"A?+3C=аfff(ԆԆ*"!$ S 5pr9Rȭ:ƪ*$ P5!PT77n462"&264&"nRtRRt ):)):tRRtR:)):)75!3##5#5357R(HHHH$c"56323#5654&*216jԕ'4#sj00d(m"5632#"'53254&+53254(/5/89HN20-.M/8 c240R^5T-(1M<N|3#xPK$#"'#3327H]B'PP,=0#( >,/t "&46;###JjjJF7F ;m753זu$o73#"'532654N#GL61*3%+183EI& /$5573#hi<<:5=J}F 2"&45!&264&"OOOhb,,b,fffN77HHH72 55?5577ŏ<Ŏ_F__F_$%35#%573##5#533vgimpFhi<<):@3*|:5=J}bb/%/$%"56323#5654&7#%573#b*216jԕepFhi<<'4#sj00d(|:5=J}$(3%35# "5632#"'53254&+53254#5#533vgimpF(/5/89HN20-.M/8 c:@3*|240R^5T-(1M7>n_P! tU_]a[c|U7]+#5^=R-TL'C$(N#'###3#nPQQ0TdXVj@&#7###3#|PnFQQ0TdXVj@& #73#'###3#QlxlQOQQ0TdX~j@&#463232>53#"'&#"###3#U #%E2F #$F0QQ0TdXWD4& ##WD5% ##j@& 53#53###3#"PPxQQ0TdX*j@& ###3#"&4624&"2JQQ0TdX LlLLl):)):j@&lLLlL:)):)###!#3#3#N_l+M }@B@B7$$5&#"327#"'532654'&4632R OZ63+HL51*2%+Ӂt?9H+23EI& &"gU 3#3!!##'JGnP@BB(U 3#3!!##7JӖPn@BB(< 3#3!!##73#'JPQlxlQ@BBU 3#3!!#753#53JyPP@BBZ 353#5!#3#'Zuu@uunPBVBBBZ 353#5!#3#7Zuu@uuPnBVBBB< 353#5!#3#73#'Zuu@uuQlxlQBVBBBZ 353#5!#353#53Zuu@uuxPPBVBBB* 53632#"'32>54&#"3# FCF~zz~FCT!9E(RT!yyPV*үF 3} VF ##333#'463232>53#"'&#"TTPPG #%E2F #$F000&0WD4& ##WD5% ##( 2"&#'26&"dddnP????`x\( 2"&#726&"dddTPnM???`x\(2"&#73#'26&"dddQlxlQD???`[\('2"&7463232>53#"'&#"26&"ddd- #%E2F #$F0???`WD4& ##WD5% ##\( 2"&753#5326&"dddPP???`킂\4 $ %''7'77AAAAN....#72654'"''7&546327&#"C? :O.G2"dnO.G2#d9C?8[]}aLE(^G 8;SA""&54;54&#"5632#'#"327[h!$9NRRNhGGrnP!WL=4/$ WNA)!CJt;=16A""&54;54&#"5632#7#"327[h!$9NRRNhGGPnS!WL=4/$ WNA)!CJt;=16<&"&54;54&#"5632#73#'#"327[h!$9NRRNhGGiQlxlQ\!WL=4/$ WNA)!CJtڂC;=16A,6"&54;54&#"5632463232>53#"'&#"#"327[h!$9NRRNhGG #%E2F #$F0!WL=4/$ WNA)!CJtSWD4& ##WD5% ##;=16A&"&54;54&#"563253#53#"327[h!$9NRRNhGG@PP!WL=4/$ WNA)!CJtl;=16A/&."&54;54&#"5632#"327"&4624&"2[h!$9NRRNhGG !WL=4/$%LlLLl):)): WNA)!CJt;=16lLLlL:)):)(/94&#"5>32632#327#"'#"&546;3.#"#"326!IHQ!A<<((*0/0U";,1=ZUOwR27%"i>+E ==r$ kOB`4,QJ]a#aFIw@=02[A$$5&#"327#"'532654'.532JEMND95#HL51*2%+aiD4YvgghhA+fEI& ' 7 &#"#'327#"4632a_87dnPE?i{ !##537#7ET6Pn>< !##53'#73#'FTMQlxlQ>Ȃiq !##53'53#53ET$PP>Z227&''7&'57 264&" u',`Ieupz99z9,F?5K 0;?.}$]]]F'3#632#4&#"'463232>53#"'&#"RH]qRP3@1"C #%E2F #$F0(Iah;/WD4& ##WD5% ##2 2"&#'264&"cccnPD|66|6e>ZZZ2 2"&#7264&"cccJPnH|66|6e>ZZZ22"&#73#'264&"cccQlxlQ?|66|6=fZZZ2'2"&7463232>53#"'&#"264&"ccc# #%E2F #$F0!|66|6WD4& ##WD5% ##ZZZ2 2"&753#53264&"cccPP|66|6ςZZZ<N 353535!ZZZ|BB&#72654'"''7&546327&#">66N-'93 ceM-'92 c5>66Zt2- @#7(H@r#7(H@r Zt8'K3#"&53327#'WRH]kNP,=0#gnP(Hbh>,K3#"&53327#7WRH]kNP,=0#%Pn(Hbh>,<3#"&53327#73#'WRH]kNP,=0#^QlxlQ(Hbh>,K3#"&5332753#53WRH]kNP,=0#5PP(Hbh>,-$ %3#73#7zUSNQ|Pnnf5! ###3#d,FQQ0TdXR<<j@&A""&54;54&#"56325!#"327[h!$9NRRNhGG,9!WL=4/$ WNA)!CJt<<;=16 32673"&###3#PK3T3K\\QQ0TdX+//+JVVj@&A *"&54;54&#"563232673"&#"327[h!$9NRRNhGGK3T3K\\!WL=4/$ WNA)!CJt+//+JVVt;=16$###3327#"&5467JQQ0TdNWP3*16GLJGj@&5!:I<70MA$","&54;54&#"5632327#"&547#"327[h!$9NRRNhGsP2*15FN: ?!WL=4/$ WNA)!CJt0C7I:270;=1675&#"327#"&54632#7R OZ634?x}t?9(PnHʸA5&#"327#"&532#7JEMND958;luD4PnYvgghhA75&#"327#"&54632#73#'R OZ634?x}t?9QlxlQHʸ<5&#"327#"&532#73#'JEMND958;luD4QlxlQYvgghhAw75&#"327#"&5463253R OZ634?x}t?9THʸ"A5&#"327#"&53253JEMND958;luD4TYvgghhA 75&#"327#"&5463273#'3R OZ634?x}t?9QlxlQHʸ6<5&#"327#"&53273#'3JEMND958;luD4QlxlQYvgghhA< 732>54&#"?3#'3#"'632!AK)W^!fQlxlQFCCF~C 4~ 9ԭ7##"&5463253727&#"!G^fgba./3/$%8q?Dtn!oa 53632#"'32>54&#"3# FCF~zz~FCT!9E(RT!yyZC3үP 3} C753533##"&54632527&#"RAAG^gfba./S/$%8q?GCddC~In!oaU5!3#3!!#d,JR<<[@BB7 5!&#"327#"4632d,/_87E?bXA|P 32673"&3#3!!#PK3T3K\\YJ+//+JVVF@BB7 $32673"&&#"327#"4632PK3T3K\\_87E?bXA|U533#3!!#T{J*@BB7 53&#"327#"4632T=_87E?bXA|U$3#3#327#"&547#!#+%2*15LH OJ@B#- &IE35/B7$)&#"&54632!327#"'327#"&54a_87tdd[YE?o@BB7 73#'3&#"327#"4632QlxlQh_87E?bXA|-#73#'#53#"!2&#"327QlxlQpJV:>A7&#@l#mH<##73#'26=#"4632#327&#"QlxlQ~op-0inSHq8%$%BCЂb]z|Z[- !32673"&#53#"!2&#"327PK3T3K\\JV:>A7&#+//+JVV@l#mH< '32673"&26=#"4632#327&#"PK3T3K\\-op-0inSHq8%$%BC+//+JVVb]z|Z[-53#53#"!2&#"327TGJV:>A7&#*C@l#mH<5326=#"4632#327&#"Top-0inSHq8%$%BCbb]z|Z[-3##53#"!2&#"327sZPJV:>A7&#<{@l#mH<#7326=#"4632#327&#"sZPop-0inSHq8%$%BCDDb]z|Z[<#73#'33###3QlxlQoTTPP,&l<#73#'#4&#"#3632QlxlQN)8;RR9BOLh@W;Y[c 53533533####35# 53#"'&#"53#5!#3U #%E2F #$F0Auu@uuWD4& ##WD5% ##BVBBBU463232>53#"'&#"##53U #%E2F #$F0TIWD4& ##WD5% ##>Z5!53#5!#3d,uu@uuR<P 32673"&53#5!#3PK3T3K\\ uu@uu+//+JVVBVBBBP 32673"&##53PK3T3K\\T+//+JVVa>Z$353#5!#3#327#"&547Zuu@uu+%0,15LH BVBBB#- &JE35/i$327#"&547#53#53+%1,16LGO#3hU$JE3M@>$xxZ 353#5!#353Zuu@uuTBVBBB*iE!##53ET>`%#"'53265#5353#53#3RkSC]62U>SSSSgM#H6>B&BVBBB 53#53!52553##53KhRwhQYxx> @dxx><%#"'53265#5!'#73#'RlSC]62QlxlQfN#H6>B< #53!5265#73#'Z`QlxlQ> @aaK 3###33#]]TTBsZPJh4P #'#3733#_RR^sZP=P #'#373_RR^d 73!37#7TĖPnBB檪A %3##537#7ފ]Pn>>>檪d 73!33#T)sZPBBA %3##533#ފ>sZP>>>d #73!3nFFThB2 #73##53nFFdހd>>d 533!3DUTEB2 533##53kUފE>> 3!573hnnT Kf0K0>F #333##7TTPPPn00&0F3#632#4&#"#7RH]qRP3@1"Pn(Iah;/AF #333#3#TTPPEsZP00&0F3#632#4&#"3#RH]qRP3@1"IsZP(Iah;/ < #333#73#'3TTPP_QlxlQ00&0<3#632#4&#"?3#'3RH]qRP3@1"cQlxlQ(Iah;/3##73632#4&#"RZZZ3#3##"&6323##"3L'kggk'R ,6 6,@B  Bj33"*64&"2"32632#327#"'3.#">>A!"D<<(%*0/0I%"Dv\\\@::r$  YBB>>6aFCUF #'.+#632#732654#"K/?V;630TKP?Pnj0\J+`$dA1?_G>M n "#63'#7ykR(PnN2檪F #'.+#6323#32654#"K/?V;630TKP?sZP0\J+`$dA1?_K>M n "#633#ykRsZPN2<$73#'3#'.+#632'32654#"QlxlQR/?V;630TKP?0\J+>"$dA1?_>M <73#'3"#63QlxlQykRvN2F##"'53254&'.54632&#"#7,1oT[EI\t2=^Qe^OLFP7?Pn02B1kV-R=|7H*kLU_P,=[P##"'532654&'.54632&#"#7(5gHc[TGOB=7*;[J[YMINCgږPn &HKC#(+',G:DHA$<'#"'53254&'.54632&#"#73#',1oT[EI\t2=^Qe^OLFP7?aQlxlQ02B1kV-R=|7H*kLU_P,=3<'#"'532654&'.54632&#"7#73#'(5gHc[TGOB=7*;[J[YMINCgWQlxlQ &HKC#(+',G:DHAF$0#"'532654'#"'53254&'.54632&#",1oTl$HL51*2%+ [EI\t2=^Qe^OLFP7?02B1kV'273EI& %"-R=|7H*kLU_P,=P$0#"'532654'#"'532654&'.54632&#"(5gHa#HL51*2%+ TGOB=7*;[J[YMINCg &HFd 163EI& ' C#(+',G:DHA<'#"'53254&'.54632&#"?3#'3,1oT[EI\t2=^Qe^OLFP7?cQlxlQ02B1kV-R=|7H*kLU_P,=ق<'#"'532654&'.54632&#"?3#'3(5gHc[TGOB=7*;[J[YMINCgYQlxlQ &HKC#(+',G:DHA7$#5!##"'532654&'Й;GL61*3%+#BBt2>3EI& +A$$3#327#"'532654'.5#53530/+$%HL51*2%+7-ddR>:& C+03EI& (!CH*>7#5!##73#'3ЙT+QlxlQBBh>-*3#327#"&5#53537#7㲲0/+.6TBddRnFF>:& C AU*>x7#5!#3###53Й{{T{{BBCCA3#3#327#"&=#535#53530/+.6TBddddR>rCk:& C AUuCr><("&5332653463232>53#"'&#"\\T4893P #%E2F #$F0 Zd&OA@PdWD4& ##WD5% ##K'3#"&53327463232>53#"'&#"WRH]kNP,=0# #%E2F #$F0(Hbh>,WD4& ##WD5% ##<"&53326535!\\T4893P, Zd&OA@Pd<<K3#"&533275!WRH]kNP,=0#,(Hbh>,4<<<"&533265332673"&\\T4893PK3T3K\\ Zd&OA@Pda+//+JVVK3#"&5332732673"&WRH]kNP,=0#K3T3K\\(Hbh>,+//+JVV< "&5332653"&4624&"2\\T4893P,lLLlL:)):)<"&5332653#7##7\\T4893PKn7Kn Zd&OA@PdpA3#"&53327#7##7WRH]kNP,=0#uKn7Kn(Hbh>,<$ 7&5332653+327#"&54iT4893P\b+%2*15LH!&OA@PdZ & &IE37K$3327#"&547#"&53327WR?4P2*15FN5kNP,=0#&:7I:252Hbh>,333###33#73#'P?1NKj>FPKT.fQlxlQv&333###33#73#'LA0HFf@HPFR(iQlxlQ4R\l 3#3#73#'UTZQlxlQwcH"!-$%3#73#73#'zUSNQQlxlQnfb 3#353#53UTZ'PPwcH"K !5!!!5#7O^-PnBBBBT*P !3!55##7PT,Pn>v>>.K !5!!!5'53O^TBBBBTP !3!55#753PTT>v>>< !5!!!5'73#'3O^TQlxlQBBBBT< !3!55#?3#'3PTQlxlQ>v>>!#4632&#"R>N.,%&# :_K C 6B #3##3#Q0TdX@&K!73254+532654&#"#"'632!&5+PIA<+(PKKP=6:MC @>E6< ;=T js3#!#TJB #!!+3#FdFB&U 3#3!!J@BBK 5!5!!!5O^BBBB< 33###TTP,&l( 2"&5326&"dddx???`@@\Z )53#5!#3uu@uuBVBBK 3###3]]TTJh##3#TdX&####333#sOVIP(nIQ^(T4l>&F ##333#TTPP00&U 35!5!5!UJ6JBBm@@+BB(2"&26&"ddd???`\<!###<|TP&hK #"'#6324&#"326mt(TKPulREJ++KDqnxVN PU 3!55!#`T|BB:BB73#5!#ЙBBh 33#3UTZwcH"53#5.6>4&P_ZZ_P_ZZ_;11;11WW aa / ]]j ]]2 33###3mV\mmXZ"1wc-%>53#5&533".*MPM*.P _`11`_   #535.54623#5>5|26i4-jj.4i73(?B,,B?)Z )53#5!#353#53uu@uuxPPBVBB肂 33#3753#53UTZPPwcH"P%"3##&'#"&54632673'.#"32xPLPEbI\ZK3K) M e%Ed>abZZz[aaH"&%#"327#"&54675&54632&#";3#h$<:NMOQ]f>5kcXRIKI98$dxPd+. EPF3L [9IE&!VƪF$3#632#4&#"3#RH]qRP3@1"lxP(IaD;/A 327#"&573# .2(04TBdxP8%FAU|H"&5332654'353#53#7fLP*845(S'PPPn Hbh>,h|o~|l^%!#&'#"&54632673'.#"32PEbI\ZK3K) M e%Ed>abZZz[aaC$&7#4632#"'32654&+53254#"RVc[`?8BL70-2FBKQ#j8/xf\V@U cMN LTKF>x@V$ 7673#5&3*WZ'R'ZW*zϿ+2 "4&'&"'26&54632&#" 4p3D829z9Ha[QIKHqXqWpmW ^]]`$I5kcXRIKIp$d+. EPF3L [9IEGV25#5!32#"'53254&#"&54'TkKSIMKF{>0YOEK)%okF$3#632#4&#"RH]qRP3@1"(IaD;/22"&2>7'3."eeeR0J00J0bo--oBo-- 327#"&5 .2(04TB8%FAU|P #'#373_RR^-#'3#~XNSWuz&K$#"'#3327H]B'PP,=0#( >,2 7>53#3?/R9SnVs<{ȉգ4-*475#5! ;#"32#"'53254&#"54675.D^\TNN`mNUIMKF{7?WE?F!`->>|DRBQJEN&%EhP22"&264&"ccc|66|6ZZZ  ####5!PPH66>>J$ 4&#"327#"'#4632j;9Z%8qRd_0-RWXn`Џw;3254&#"&532#5&#"32#"'KF{9BerD4PEMK=j^IMP)%vgiDF-  32;264&""p(^'Fz99z9>q?]]]/##5!"R6>>H"&5332654'3fLP*845(S' Hbh>,h|o~|$ #5.5463"4325654&#""PZdbH&4nnKUdZn, q{Hh^%wESk3E2$ 73###3pSZopUXo*8|h-$%>53#5&533".*MPM*.P? _``_ s#!3#"&'##"&547332=33254YL,A2%5  5%2A,L-04P40y||:88:||yz㲲ÔU 3#3!!#'JnP@BB(U 3#3!!'53#53J}PP@BB#6325>54#"##5|*4=B  $%32654.#"5632#"'##5265#5!O :26@86n=Q)56B@iDEE^~g2x\B7_B33632#"'##32654&#"gOB@DH@9L##$%,ewngK^XG4&#"##5!#632#)7.!R~m,7WGR H3#BBSmK 3###3#7]]TTݖPnJh0F ##333##'ZPPTTjnP00&- 32673"&33#52>73PK3T3K\\mZ!00%,'&Z+//+JVV2E3E"5;<` !#5#333#RPTh& #3##3#Q0TdX@&K 732654&#"5632#"'!!$-G@KX"NRT@IXNBBBK!73254+532654&#"#"'632!&5+PIA<+(PKKP=6:MC @>E6< ;=T js3#!#TJB`%##>5!3#5!#5XV!9/TPBV]ZKh⠠U 3#3!!J@BB#####33333UPJ)P)JPURNI)P)IN``Y88A$2#"&'53254&+532654&#"5>Tax+9-*:(P[22UN62EQ0>YL# ILEBCH58*IF ##333#ZPPTT00&F ##333#32673"&ZPPTTK3T3K\\00&+//+JVVK 3###3]]TTJh725#5!###hTTZ^@B&2mg####333#sOVIP(nIQ^(T4l>&< 33###TTP,&l(2"&26&"ddd???`\<!###<|TP&hK #"'#6324&#"326mt(TKPulREJ++KDqnxVN P75&#"327#"&54632R OZ634?x}t?9Hʸ73#5!#ЙBBh-33#52>73mZ!00%,'&ZH2E3E"5;53#5.6>4&P_ZZ_P_ZZ_;11;11WW aa + ]]b ]]2 33###3mV\mmXZ"1wc4` %#5!333TPTBhh2#"&533273#\4@dRR2D9)RRSm6G3#&# 333333#P_P_Phh&`%33#5!333cP/TPRPBhhh#53632#"'32654&#"x liehMIR'@9?NBiltm^HYQ?*!32#"'3632654&#"}LRNQWL32&2>4."B:E&6LL7(C6;E%%ER. .  >y5?ܦ?B<ʀ<<ʀ<.5432##"#76?&#"38?PKT036;V?/+J\`_?0J1Ad$. M>A"&54;54&#"5632#"327[h!$9NRRNhGG !WL=4/$ WNA)!CJt;=16A &62654.#""&=46327#"3>32d7 7?hf[w86:4[GD(SR\7Sx=!3#5!#5W //OM‘?>73uu7&#"327#"4632a_87E?bXA|35##'3353373#'#.GJUSHG.I/GGRUJG/H"753254&#"5632#"'532654##89HKIRXdl5>f]QOMN:<=V!&EI9[ L3FPE .+dK 73###3WKUJjbbK 73###3"&532673WKUJ\K3T3KjbbVJ+//+JN 73#'##3WXNN'#5!###525SOXZf;NJAd$###333#cKCK!C-YPK[-I!SIhA 7#3353#5MMOO22"&264&"ccc|66|6ZZZA###OM3K$ #632#"'74#"32RKZhed_0-{/$%8q A5&#"327#"&532JEMND958;luD4YvgghhA7#5!##қN;;3-%33#52>73pW;NH  Xje_"B )0*$#5.467536'#"ZddZPZddZPnnPnn L`7 373#'##3lTZjjVX6: %#5!333NMO;r33:%#"&=33273#]0@dON0D:'NN=L.(+ 333333+GcIcF33'73333#5!3E^D+MD;33r3 %4&#"326'632#"'#53:S!#@9"mdafOCt£003MPWQ ;0!33632#"'32654&#"zImJ "PJLVG=J 5,/6KXdR  4@:1S %4&#"326'632#"'3xE]!&*FA#umjlPKN-34MPVR S75!&#"#5632#"'5327k J32&2>4."@TK6HH7KNUKKu@%%@%o{^ss;^^^^& ;5&#"#"#767'&54632#NT5##KF5808Q;0rpmPDNx51,%BoTC 7 &#"#'327#"4632a_87dnPE?xxxiq ##5753#53ETPP>Z<J53#53!526hTZ`xx> @a#2#"'##5265#5!632654&#"{804>54m;O)5-RG^iK UB=&B/;C*HD)"%#"'##3353632'32654&#"BF>5HHJ@>##%#dP ʻL 1A>/ !#4&#"##53533#632N)8;RUUR9BOL@W;YGCddCS[cN 73#'##3#7WXNNPn'ѪK 73###3#'WKUJ[nPjbb-%33#52>73'32673"&pW;NH  X5K3T3K\\je_"B )0*+//+JVVA !#5#333 NMOrr2 53533#632#"'32654&#" PR" NRR$-G@KX?KPPK;IXNB53533#632#"'4&#"326PN#umjlPK%E]!&*FACCMPVR -34(#2"&267#"'&#"56323265."dddR?v? +K5 +K5?v?`fg3$'k3$&/gg2!2"&267#"'&#"5632325."cccU8h8 -F2 .F28h8O@@P%@%=O@@2&#"#33>!$r^UnU5 F,HlYF22&#"#33>!#WhT_@3 C+F48[CK$327#5.54632#5&#"RMPomt?9R mþȔUL32#5&#"327#5.UD4PEMJ>!K`kvggdesz##353TPhڠz##353NK3 3#3UTZwcH"'$ 733#3zURZWJ.( 2"&267%!."dddP????`yyDyy2 2"&267'3."cccS8r88r8aMMaB`LLA5!33x"p 53!53!53^U^U^"(753&47#53>32&#"3'3#327#"&'GGKlbB;=;>G  G>;=;BblB@BzE!YkB! BkY!Ez#m##'##3373#!#53#%-% &8%&5)MMmJ##S'7!//KL,,BS5!'7'7K//LB,,unKl !! !!bӗ"-.E/##/(nsl 5!7'!5!'7 '7b..-"/((/##/-3##5".4>2 6& PPyHHyyHHyXH}xVHyyHHyyH/- 0%3!5>54'&#"5632 6& ".4>2n5FSKXU/.53H鸨yHHyyHHy@@?1,I$**KIJGHHyyHHyy/-%532#"'5327654'&+575#5! 6& ".4>2LThbPCHH? !!!O:YH鸨yHHyyHHyNHX\G$:29@@HHyyHHyy/- '3##5!53# 6& ".4>2KZZL LLH鸨yHHyyHHy >||>pHHyyHHyy/-%53632#"'5327654'&"#!# 6& ".4>2*5R\.6rGCK=L"n'C5TH鸨yHHyyHHyXQX/8E!%<5 '@HHyyHHyy/-+;C67632#"'&547632&#"&#"32765".4>2 6& }(6Y0267]i5,9=s:952cp}YRZH鸨yHHyyHHy;@@wHHyyHHyy/--=EU327654'&62"'&547675&'&54&#"67654 6& ".4>2<##%<>#""!112#+|7997!:+ 76!5.$H鸨yHHyyHHy[*..*%%&=.%(kI*++*I1$" &-=&$ %&HHyyHHyy/-)1A%2767##"&547632#"'52654'&#" 6& ".4>2J*$+1Wd67]a458=t<>8DtD#"9;"!#H鸨yHHyyHHy5-YbYZ239:oNTADF=<#""!>HHyyHHyy/-'73##54'&"27"'&762 6& ".4>2;FFoRRZ&&&&&&&zH鸨yHHyyHHy}si40044007FEEF$FEEHHyyHHyy/-'3##5'3##5 6& ".4>2rEEoFFoqH鸨yHHyyHHy}sirsiHHyyHHyy/-!)9%3!567654'&#"56323##5 6& ".4>2:s%& 1=8?>#"%#FFoH鸨yHHyyHHyLLAC:0+W"+)MDHEjsiHHyyHHyy/-!)1A#575#5332#"'5327654'&'&3##5 6& ".4>2=&w{5&%G<263( FFoH鸨yHHyyHHyV@LL((GW/.S$3/ 'siHHyyHHyy/- /#33##5#5#533 6& ".4>2y}~FFo@@?XH鸨yHHyyHHylsittJlJHHyyHHyy/-'/?3632#"'5327654'&#"#3#'3##5 6& ".4>2,"= !$&S6/5.1$< FFoH鸨yHHyyHHy,-Q[05Q"4./LLsiHHyyHHyy/-"2:J#"&547632&">763%3##527654'&#" 6& ".4>2H''EFN1+N*+(V!6FFo%&%H鸨yHHyyHHy`V[54vxQIJ'+X'si ";9  "6;" HHyyHHyy/- #+#75#5!%##57".4>2 6& %GD[4FopyHHyyHHyXHNyLLzsir&HyyHHyyH/-%2AIY#"'&547675&'&5462%3##5>54'&"27654'& 6& ".4>2%RFG)(# JJxFFo%$H&'NH鸨yHHyyHHy~!*6HV+)J2'%/>LL>+"siu0",#"N$+-(HHyyHHyy/-#19I$2767#"'&54762#"'53##5%"32654'& 6& ".4>2^!6?$$(''')+V,.FFo',%&,H鸨yHHyyHHy&*Z'12XX43:;tUXJsi5>:;" @=6" HHyyHHyy/-'5=M%3#56767654'&#"56322764'&""'&7632 6& ".4>28;'#/84;: !!NN:I""""II#!!#~H鸨yHHyyHHyLLH4(@=++W"+)MICD3443344{HFFHHCCHpHHyyHHyy/-".4>273#733#PyHHyyHHymIIlHH]HyyHHyy nsC*rnsC*/-0".4>273#632!5#567654'&#"PyHHyyHHymII=1&'n^%#"#>@]HyyHHyy nsC*\+-:ADyPPnHDFM)+/-6".4>273#332#"'327654&+575#PyHHyyHHymIIs *(272273#!#33535+573PyHHyyHHymIICC??x]HyyHHyy nsC*NttN/-4".4>273#!#3632#"'327654&#"#73PyHHyyHHymII <#$2.5.7R'$B<"]HyyHHyy nsC*0/4"U60[QZ/-4G73#".4>2'654'&#"'676325&#"32'.'&'&54632#"mIIyHHyyHHy&'##>!-+(+*Q-,%%JEi ,%$*& nsC*&HyyHHyy5[U10 Q,+NPN}>@T 2> 59@/-"".4>273#3367675!PyHHyyHHymII]BJ%#5]HyyHHyy nsC*Pytq|P/-$4DS32654'&'567654&"73#".4>2'#"'&5476762&'&54"(()GFR+$JJmIIyHHyyHHyX&'*4D!&/"!$1J)+VH4(#"'>LL.nsC*&HyyHHyy("%(d!  #/-3G73#".4>2327673#"'327654'&#""'&54632mIIyHHyyHHy'D?!0-+.,[+%''GB|H*%  nsC*&HyyHHyyg1X\b T+*O^Rx>= <6< 9/-*6D63235#567654'&#"".4>2&"276&47632#"8/ #&=[  :</yHHyyHHy"""""""&''&c\+,+:A$2JPPsCEEM)+HyyHHyyTFFDDFFD&0011001Q5!Q..5!t \3.t=\3Q 53!53!53!53!53!53AkkkkkkQ............ 53!53!53!53!53!53Akkkkkk \ 53'53'53'53'53'53...........Pkkkkkkkkkkkk=\ 53'53'53'53'53'53PkkkkkkkkkkkkQ 53#53#53#53#53#53ATSSTSSQ............ 53#53#53#53#53#53ATSSTSS \ 53'53'53'53'53'53...........9TTSSSSTTSSSS=\ 53'53'53'53'53'539TTSSSSTTSSSSt!!# #..#t!##.U=t!#U.# t!#UU=t #!5 .#.t !#! .#t=!#!=Ut=!#!=UQ\3!.Q #.\!3!.=UQ\!3!ÒQ #\!3!Ò=UQ \!5!3 .Q. \5!3.Q=\5!3Q.=\5!3t\!#3#...##t\3!!.#UUt\ #3!!2# #.#t\ 33!!2.U #.#t\3!!U#.#t\ #3!!2#=UUt\ 33!!2.U=UUt\3!!UUUt \#!5!3 .#..t \#!5!3 .#.!t_\ #!5!3#-/#2.t=\ #!5!33=U.2.#t=\#!5!3=U.t=\ #!5!3# .#2t=\ #!5!33=U.2Ut=\#!5!3=Ut!5!!##..#t !#!5!#.# .#2t !#!5!5#.#U.2t!#!5#.#Ut!!#!UU.#t !#!5!UU=.#2t !#!5!5UUU.2t!#!5UUUQ\!5!3...#\ !!5!3!#.Q2#\ !5!5!3!#.2.U\!5!3!.UQ\5!3!Q.#.\ !!5!3!UQ2#\ !5!5!3!U2.U\!5!3!Ut\ !5!3!!#.#.#.#t\ !#!5!3#.#..##t\ !#!5!3#.#.U.Ut\ !#!5!3#.#.UUt\ #!5!3!! .##.#.t\ #!5!3!!=U.U.#.t\ #!5!3!!=UU.#.t\ #!5!3!!# .#U2#.2t\ #5!5!3!!2U#2.UUt\ 3!!#!5! 2UU\U2.#t\ 3!!#!5!53.UU2\UU.2t\ #!5!3!! .##Ut\ !!#!5! UU\UUt\ !#!5!3!UUQ##t\ !3!!#!UUUUt\ !!#!5!=UU\UU=!5!....[t\3!3_..t #!!!! . ##..[t #!!#..Q# .#[t !!!!!_..t  !5!#!5!# .#.s[.t ##!5!#_..Q#.t %#!5!#!..w[.s_\ %!!3!! .#..[Q\ 33!!3.[s.#. [\ 3!!3!_.[s._. \ %5!5!3!5#..[s.Q\ 3!5!3_.s[..#\ !5!!!5!w[2s_\w.[s._t\ !!!!#3 ##....[t\ 3!!!3_.[.#.#[t\ !!!3!3!_._w.[._t \ 3#!5!5!5..##[[..t\ #!5!33.[...t\ %#!53!5!3._.w[.w[.w_.[t %!#!=!#.#.[...t ###!5!..Q##..t %!!#5!#!5_..._..w[.\ !5!3!5!..[..Q\ !!5!333[[....#\ !3!5!!5!w.[w[..w.[t\=!5!5!3!!!!##.##...[..[t\5!333!!###[..[..Q.##.##t\ !!!#!!5!3!3!_s.w[._w.[.w[.[w/-".4>2733#PyHHyyHHyLUU]HyyHHyy]x2*/-)".4>2632!5#567654'&#"PyHHyyHHyVPH464c/2./UW]HyyHHyywN+.>ECDDyEIGK**/-.".4>2332#"'327654&+575!PyHHyyHHyK2Q " !9HHARa54TL]HyyHHyyN>07$L/.XIND/-".4>2#!3535+573PyHHyyHHyQQZZQ]HyyHHyyCyyC/-/".4>2!3632#"'327654'&#"#73PyHHyyHHyeI&34"G;MAIr6..,T0+ ]HyyHHyy!28%"K8/YP.,/--B".4>2"327654'&#"'676325&"'&'&'&'&54632PyHHyyHHyo><)1q^5601U2 )(@<59X B67  ]HyyHHyyPNq>L45[U01 W/.E  6B!"8A !/-".4>2!367675!PyHHyyHHyF WY--4H]HyyHHyyNgyxD/--<K".4>227654'567654'&"#"&54767'&547632&PyHHyyHHy@/;7997y021129"!:9F 2327673#"'32654'&#2#"'&546PyHHyyHHyn01U. %))D?9?;rx45b  !!76 @]HyyHHyyfV[12 Z-.E|;:@/-".".4>273#276'&"4762"'PyHHyyHHymII%%%%%%%"TT]HyyHHyy nsC*GFFG GFF31133112"Fw" 2c  kLc D  i ~ D     A 4t   > S k '5Copyright(c) 2019 M+ FONTS PROJECTCopyright(c) 2019 M+ FONTS PROJECTM+ 1mnM+ 1mnRegularRegularFontForge 2.0 : M+ 1mn : 23-4-2019FontForge 2.0 : M+ 1mn : 23-4-2019M+ 1mnM+ 1mnVersion 1.063aVersion 1.063amplus1mn-regularmplus1mn-regularhttp://mplus-fonts.osdn.jphttp://mplus-fonts.osdn.jpThis font is free software. Unlimited permission is granted to use, copy, and distribute it, with or without modification, either commercially or noncommercially. THIS FONT IS PROVIDED "AS IS" WITHOUT WARRANTY.This font is free software. Unlimited permission is granted to use, copy, and distribute it, with or without modification, either commercially or noncommercially. THIS FONT IS PROVIDED "AS IS" WITHOUT WARRANTY.M+ 1mnM+ 1mnregularregular0S0n00000o000u10j 0000000g0Y00B000e9Y 0ng q!0k000Z00~0_UFimv0jR)u(0g0B0c0f00u10k0TR)u(00QM^0Y00S0h0L0g0M0~0Y0L0Qh0fq!O݊<0h0U0[0f0D0_0`0M0~0Y0M+ 1mnregular2  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a bcdefghjikmlnoqprsutvwxzy{}|~     !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~glyph1glyph2uni000Auni00A0uni00ADuni00B2uni00B3uni00B9AmacronamacronAbreveabreveAogonekaogonek Ccircumflex ccircumflex Cdotaccent cdotaccentDcarondcaronDcroatEmacronemacronEbreveebreve Edotaccent edotaccentEogonekeogonekEcaronecaron Gcircumflex gcircumflex Gdotaccent gdotaccentuni0122uni0123 Hcircumflex hcircumflexHbarhbarItildeitildeImacronimacronIbreveibreveIogonekiogonekIJij Jcircumflex jcircumflexuni0136uni0137 kgreenlandicLacutelacuteuni013Buni013CLcaronlcaronLdotldotNacutenacuteuni0145uni0146Ncaronncaron napostropheEngengOmacronomacronObreveobreve Ohungarumlaut ohungarumlautRacuteracuteuni0156uni0157RcaronrcaronSacutesacute Scircumflex scircumflexuni0162uni0163TcarontcaronTbartbarUtildeutildeUmacronumacronUbreveubreveUringuring Uhungarumlaut uhungarumlautUogonekuogonek Wcircumflex wcircumflex Ycircumflex ycircumflexZacutezacute Zdotaccent zdotaccentlongsAlphaBetaGammauni0394EpsilonZetaEtaThetaIotaKappaLambdaMuNuXiOmicronPiRhoSigmaTauUpsilonPhiChiPsiuni03A9 IotadieresisUpsilondieresis alphatonos epsilontonosetatonos iotatonosupsilondieresistonosalphabetagammadeltaepsilonzetaetathetaiotakappalambdauni03BCnuxiomicronrhosigma1sigmatauupsilonphichipsiomegauni0400uni0401uni0402uni0403uni0404uni0405uni0406uni0407uni0408uni0409uni040Auni040Buni040Cuni040Duni040Euni040Funi0410uni0411uni0412uni0413uni0414uni0415uni0416uni0417uni0418uni0419uni041Auni041Buni041Cuni041Duni041Euni041Funi0420uni0421uni0422uni0423uni0424uni0425uni0426uni0427uni0428uni0429uni042Auni042Buni042Cuni042Duni042Euni042Funi0430uni0431uni0432uni0433uni0434uni0435uni0436uni0437uni0438uni0439uni043Auni043Buni043Cuni043Duni043Euni043Funi0440uni0441uni0442uni0443uni0444uni0445uni0446uni0447uni0448uni0449uni044Auni044Buni044Cuni044Duni044Euni044Funi0450uni0451uni0452uni0453uni0454uni0455uni0456uni0457uni0458uni0459uni045Auni045Buni045Cuni045Duni045Euni045Funi0462uni0463uni0472uni0473uni0474uni0475uni0480uni0481uni0490uni0491uni04AEuni04AFuni04E8uni04E9Euro arrowleft arrowright arrowdblleft arrowdblrightuni2460uni2461uni2462uni2463uni2464uni2465uni2466uni2467uni2468uni2469uni246Auni246Buni246Cuni246Duni246Euni246Funi2470uni2471uni2472uni2473uni24EBuni24ECuni24EDuni24EEuni24EFuni24F0uni24F1uni24F2uni24F3uni24F4SF100000uni2501SF110000uni2503uni2504uni2505uni2506uni2507uni2508uni2509uni250Auni250BSF010000uni250Duni250Euni250FSF030000uni2511uni2512uni2513SF020000uni2515uni2516uni2517SF040000uni2519uni251Auni251BSF080000uni251Duni251Euni251Funi2520uni2521uni2522uni2523SF090000uni2525uni2526uni2527uni2528uni2529uni252Auni252BSF060000uni252Duni252Euni252Funi2530uni2531uni2532uni2533SF070000uni2535uni2536uni2537uni2538uni2539uni253Auni253BSF050000uni253Duni253Euni253Funi2540uni2541uni2542uni2543uni2544uni2545uni2546uni2547uni2548uni2549uni254Auni254BSF430000SF240000SF510000SF520000SF390000SF220000SF210000SF250000SF500000SF490000SF380000SF280000SF270000SF260000SF360000SF370000SF420000SF190000SF200000SF230000SF470000SF480000SF410000SF450000SF460000SF400000SF540000SF530000SF440000uni2776uni2777uni2778uni2779uni277Auni277Buni277Cuni277Duni277Euni277FuniFEFFEXy3V Z\\\\P-xxPZZo1xxxxxx@@xxxxxxxxxxZZ2JnJnJxJnddnJJJJJJJTTTTTTZ2Z\^xxx|Jx||dTW|J|^[xx8fddddxx-JJdddxdddxxxdddxx6dddxdsJddxdxnsxJddsxxFnxsdTddnTdJdJsdxJdxJdddxJd2xs[-dTdddxdxxxxxxddddJxTxJnJnTTTTnJTJJJTTJTTxxxxxxxxxxJnMTTJTJTsTUTTJTJJTTnTTTTTTTTMMMdxndMJdxdTTnddsTnxJxJxJTxJx  //////////////////////////////[[[[[[[//////////\ruby-asciidoctor-pdf-1.6.2/data/fonts/mplus1p-regular-fallback.ttf000066400000000000000000057511141416357056400251600ustar00rootroot00000000000000 FFTMhgOS/2@wVcmaph$nHucvt efpgm/`egaspfglyf=R`pheade,6hhea d$hmtxf lHkernHLOloca(lXmaxpC name{fXipost߸P{_prep+.vhea+g$vmtx?s`g@k  J'}_< y3V{33Z>{1  jM+ @ \tZ3@`l!"kF2]7O(2KF-2P0<P_#l.lQlIlSllUl7lNl.l0kPAZ_cA7(#VU(UKU<U(U=syUIUYUU(XU(lU=<<K#--}Ks2U(G$2BP (B-(( 7=-=P3s[2P3s%K8K:(=K=-K72.F-#*-)2-##K<WZ7"Cs$(K<#W<U1(ZA<P1(<-Z|*|0(3Kv#_-|9Z_4444cA######U#(KUKUKUKU==s;=#U(((((^-#-KKKKbUQP$2$2$2$2$2$2x2 (((((((((>>s330-8K:(:(:(:(:(PD-.F.F.F.F-##$2#$2#%2( (( (( (( (U-#-KU((KU((KU((KU((KU(((=-(=-(=-(=-U=P1##<4=3<4=3=s3sEsis3byU2P-KIU3sIU3?NUsNUs!U8KU8KU8K#U8K(:((:((:(k((lUKlUKlU =<7=<7=<7=<7<2<2A 7K.FK.FK.FK.FK3FK2F-*--#}K#K}K#K}K#Kn#W[UGP(y#A( (#[-G2:(KK---< (#Ps7U2P72(P8K(a((((Y?MlU=<77F 22 7<KFR7K#P-P+2+7:KMFlPA2#-F2GKW:}ZCs UU`-]UUsUUK#$2;3(:(K.FK.FK.FK.FK.F(-#$2#$2U#x26(-(=-yU2P(:((:(XK:Kb UU`-(=-UGUU8K#$2U#x2#-D-#&2#$2XT((KU((>7<4(:((:(uTlUK.4K.F=<7<2U=PU-s2A-}K#K#$2KU<((:((:((:((:(-#K2[--( (#A7#K<-#*##KU((!7(>-#'##((-KK22GFG22P (n!FA!-!F!-7({({2SP((((^<JFJ-^<J-JF}}7(FFFF(_G(|K<((7#nZ2w-{2AAAAAAAAAAPP(FF((gdG(J-#<<=}nKnKFFG(AUKAK<!F!-U^KkU A ( APJFF_}-A#VU-U#KU}KU(=syU#YUU_K(UXU7F<#-FR79~- -8Kn<F~-DPA#:( -&78K0-n*K-#3K2#+<:(73A(n(Q-<F(-#A7A<F:(<F7yU:F+((((E(*K(:(W( (<UK#A-H2C2-8F ([((FbU=K(UK4A(AKUKU*<-U(=<=s=U9<yUU(U#[UVU-U-KU(>#UUyUYUU(UXU(<(#-UKUU(JU[UFUl-$2GFKKy(((2 -^K^K*KkKYK:(NK=K (%-2(-)2}K3AK Ky#KKFK(((((#K(73s3[^WK#*K^K2(NK- 7(y#&FA(:(O##O##(((:(- 7- 7((/;9%U|K([#XU=K3UK-e-dU K(2># -U7KUdK#s#((UKU:KUWK( (</2A#K(-22((KbAK3AU3K=s(2U4KUYKU}KK3AzUK3s#$2#$2U#x2KU((-(--(-(2M- -+2XKK^KK^K(:((:((:(FF(2((2((2(K3A-UKJUK-j--227=<#$2#$2#2#&2#$2#$2#$2#$2#$2#$2#$2#$2KU((KU((KU((AU(KU((KU((KU((KU((=3=s3s(:((:((1((;((:((:((:(a((a((a((a((a((K.FK.FKFKFKFKFKF-#-#-#-#;q^P-P}G!-!F0<!-(A7()<=F}_xa(((<7.2#.AU2b<uxxMxuMU-Z(KKKK#e(e(eFeFK4U4UFPZ[[-K}}---(O(U##(-#-#KKE-q(|#l2-(777iiKO(ZZZZZZZZZZZZZZZ7UZZ(F(FZZZZ1(1(1(1(1(pUpApKpKi7i7i7 #\#*K4P_x=>2222AAAA-iiiUU}:=EqC$aa&CCbanxz3azz<=ZZ..!kuaufWUUg]{naxg]I9H8G-PFg]XG_K4xM8MaPCaWP&&&&&aWWxFIMd3aul1i?PA[PpMzaqgwm\Rp`>4nC/whT6,wmm\P<mcPFSgqR@66gd&&&D::g~IdP>SnC{Inuq<ds]x5C1?:I<<'-T75((+7F&F<#ZYP( F46QiE/0(0))(s(,F"(+*-v2!22D5CA<4<A8<<<5D.AA,5+577522, ( ##  #  #    #  #            # !        (  #           +                                                        #       #         ;;?8/?6.280)I50)/G9#A&+I22<<&(6_Zd!  $Uba!-H.+!G-0!N/"0$*)*****!$***$$4%%( $&#]SPZgAHe"eX!444 &0#(:/-'5*+?$50C,+,5C!22'&& `(&. !N--1"(M(+#!#9" + ++ )$ 0*u_____]]]NMi_]_25+(2242WW(+/5(51% N& -! /(##H<(#67#."BB$i5KXKN=KI9.K9!I7PKID02<dIZ*%;KU!),AD.A#KDD:FKFDF<Kx(F0<K,AD8AIF?<<I#]ADI$9<.7DD= >>D>#P<D#IACD>2D:D9:AC<:3<DD?$<D<M<CC5<A9<5<K?D>4<:A<4<27?:DA>C?2F4A<?4<:-(?F??-DHAD:A/?//D.4DHD74?D4??5:A:-D:5-AA:A4?AA7F>>/$5:545;744/4WZRMZRRHNMRHRMHHHHHHHHHHHHHH<.,!F.. /'*$0."2)) ')!4&'5%$.'$ <"  !'("$F<<<!%82$ !$<94"%$!"!%<+4"<$8<9- <F5%3<<???!9C8C;F$#D99:4G%:%I:,6,9,,,,+<,/,.#//'#!#5!"""!!?&!!!!F,!!$5:!!&!!)74!!!!6#!'!!-!5''! ;2$6/!:"(5)/#/HR1/2>(8N:!<CA0&5F>0<<MC<>-CG$29=3!N"ND%(A")/2<715$ 575+/+)9]#999(&23//0*-#*-**  *## #  \:\:52X?"50&2:?+2?:???2505?K?<2<*?.5*X5$5?500I<500:)25555('C()++I&(4 -<f5//52dADC2:425H/5/1///"//(/R5/2043<*IA</ %  %/%%%%%%424404<<<<<nWH5PC2(+20.7;>9-0**-'Af34-|-&  )* !!&&,!"!!!""!!  !!!!!!""!   " """K   """ " !""";$ ""  "" "   #; "   "  "    "     "    $"F#$$3$43A<#9!' %2<  /   2254422+2+*/(&/3+(-2,/ 4&1.&!.'!!!/2#%+#'%(/'%1* !4++.&-/#- (%1#..4&%' && !.!0/&!% %%&#' %&'((! && %&%!*,"  !% $!  "4. ! & !'& &""#    *#*!%(" (&"" " *!" !-#! "!'!77: 7(+ $+-* +* ,?**8!?!*"$+N,"5F/"5\5<IB!!27aZ1-229K,IIP1!KK6I:D2-A(<$3D?#H20?MC#?<D/CK(DMDC/4"!<4??7<<M<<\E;E!*:.a#$$*#0F9,%((4?((-((-()- ('(%)(()-())))% (') '')))     ')% )$)%      ',=&H,""-,F<F<<-<#<*BH!&0F(((("!12'')2.?---!3!!2203@30!000(0(000$3+#!!0333!*$$))!()!"(&!$0!!!3," "#! '$!!)' $ !!!!!($3  ! !& ! % $ !!! % !!""!!!$!98%(7#;;;!+ :+) '5)'0 *599'$99++269)&!.5)@9p%.02#) * --9,++&,'&,''2,*(5+FF$$""'!"" "##"#!##"""##0: !#"" !##""!# "!##" !(!F&-&27/6"##0q_gqqNNCl ?<$<!D*?: a*<AD)(9<59H5?<,95-%!.%%%%%xFH!AHC4HCH% !5.%5%5#5$$5*5$5%AF%AA%/I;2HK8>'H7M7AM<<A?<<#DC7CQ7<A777<7<2 I93#32##!  " " "  "" "      "9 5 2/5C5C/57 ZWW#(2), ) ,    :)PN:2<&2$<",P*9+<8<<,''1151<51$,5)F)11'(($((('))()))$)()()!)$&))())))(() ))! ))))")))))))*$#)))2))0#!)<5:****%*%#%&!%%%2%<8!:((!#(((#!%( %(%%*%#%$##!%%%%%  %*% "%:%%!%%"%% %%% !1++2"?//KFX.3BF5()&"5&<2.7&&*2/& $/6'#E=&-.#:<('(&(&F((:5&K#% 2*//U"v(# 55bb4+1#% W5'}II{/<0<l4L&&<#0$%'(         "",&(:<</<502:<$!<<$22)&25<9!<9725($%2(.,5&*(25<2/5A"#2,.87/(,99.-<)-29*0.+<*)<<<*)(92,<%%:#949/8< '%"<925# ++$4$.)<$75)52,*#2<**"-9-,<#8)-')$5*1#&&*00*5<I\"6FF1I8#3+95"*0**'!)""#"######"## "##    " "   $  F<<?<D%%CE4E#57%%%C9CC-2<2+22922222922920-22+>2-29252%220222229--*20&2532-9&&2/9250/522*/20222-2--+-+2*00-+2-020-02--2+*---++%**-&-*%*&*&-2&22$-2-&---'-,0&-&-2<<< :&9%####H>+!-!"#(--.-:"+((-"3:)#::;-"5,"'+0)))))###0'11-'!1 1,'1'$'#,',',#'!''''*#$$'  '!'' '!''! !>/++A++:####+#+#2###.###&#+'<<2&2$$1+++++++++++"+++++++++++++++++++++"+++++++++++++++++++++"+""+"")&+""""""+""""nI59.$" #/#!!*#!F7?474 *//*///(///&////&///'(/((((((E94<# ") " ""$""""""""" "%%2PKKKKKKKKKKKKKKKKKKKKKKKKKK/JRWHRW]HMMHMHMC\M::MCMMHM?MHCM>MMMRRMR??RM?MHH:M:H?:?M?/% !  . )!4 /,FI<%?$IIC$2!I%/.!0<-1**-F /#####2/552**F#F(" +C6"$". +)'-$!5)%)$''''''(''"$C%+&+&+<<#!5!5.*AAZ<8!!H!!!'!6) H)!I(*7<)*  &* ***(X<4422))95" a,&62%###<---<---/$-#hgPsn Dzw"$a  "l<q=]<9D_W__PESeS.</<8(/,1I!5,7-(-(t)35&DVA3>$.()A7][:?Ax $rs $r ~OYw~c  ' 7 : ` !"!!" " "" "5"="C"E"H"S"b"g"k"w""""""""%%%%%%%%%%%%&'0050=00NNN NNNNN!N&N(N*N-N2N6N9NT@TBTFTJTNTQT_ThTjTqTsTwT}TTTTTTTTTTTTTTTTTTTTTTTTTUUUUUU/U1U3U9U>U@UFULUOUSUWU^UcU|U~UUUUUUUUUUUUUUUUUUUUVV VVVV)V/V2V4V6V8VBVLVNVPVSV[VdVhVlVtVxVzVVVVVVVVVVVVVVVVVVVVVVVVVVVWWW W W WWWWWWW(W-W0W8W;W@WBWGWJWQWaWdWfWjWWWWWWWWWWWWWWWWWWWWWWWWXXXX XXXX!X$X*X1X5X:X=XAXKXRXTXZX^XbXiXkXpXrXuXyX~XXXXXXXXXXXXXXXXXXXXXXXXXXXXXYY YYYYY"Y%Y'Y.Y1Y8Y>YDYIYQYUYXY`YbYeYhYjYlYnYtYxY}YYYYYYYYYYYYYYYYYYYYYYYYYYYYZZZ ZZZZZ Z%Z)Z/Z6Z_H_J_L_N_Q_S_W_Y_b_f_m_q_s_w_y_|________________________``````!`%`+`/`1`C`F`K`M`P`R`U`Y`c`e`m`p`u``````````````````````````aaa aaaaa!a'a4a=aDaHaLaNaSaUaZacahanaqasawa~aaaaaaaaaaaaaaaaaaaaaabb bbbbbbb!b&b*b0b2b4b8b;bAbIbNbSbUbXb[b^bcbhbnbqbvbybbbbbbbbbbbbbbbbbbbbbbbbbbccc c cccc(c+c/c:c?cIcMcPcUcWc\cicncrcwc{cccccccccccccccccccccccccccccd ddddd&d-d6d:d>dBdNdXdgdidodvdxdzddddddddddddddddddddddddddeeeee$e,e/e6e9e;e?eEeHeMeOeQeYecefelepereuexeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeefff f ffff f%f(f-f/f6fkLkNkPkTkdkfkjkoktkyk{kkkkkkkkkkkkkkkkkkkkkkklllll#l5l8l:l>lBlNlPlUlWlZl`lbljlplslzl~llllllllllllllllllllllllllllllm mmmmmm%m*m2m5m8m;m>mAmEmZm\mcmfmjmlmnmtmymmmmmmmmmmmmmmmmmmmmmmmmmmmmmnn nnnn!n&n)n-n/n8n:n>nJnNnVnXn\n_ngnknonnnnnnnnnnnnnnnnnnnnnnnnnnooo oooo o#o,o1o8o?oEoToXo\o_odofonopoto|ooooooooooooooooooooooopp pppppp'p,p>pLpXpcplpppxp}ppppppppppppq qqq!q&q6qyAyIyPySyWyZy`ybyeyhymywyzyyyyyyyyyyyyyyyyyyyyyyzzz zzzzz z.z2z=z@zCzFzPzWzczkzpztzvzzz}zzzzzzzzzzzzzzzzzzzzzzzzz{{{{{{{ {&{,{9{F{I{K{M{R{T{V{]{g{l{u{{{{{{{{{{{{{{{{{{{{{{{||||!|*|8|@|C|M|P|V|`|d|s|~|||||||||||||||||||||||||||||||||}}}} } }}}}"},}0}3}5}:}?}D}F}L}N}P}V}^}c}f}h}r}v}y}}}}}}}}}}}}}}}}}}}}}}}}}}}}}~~~ ~~~~#~&~+~.~2~5~7~;~>~A~K~M~V~Z~^~g~k~m~p~y~}~~~~~~~68:RT`knpruwy 36;=FJRVXZ_bptwĀƀ̀΀րۀހ )/139>KNQUfknqzƁɁ́сӁځ ,.379@GZ_dfhkorvy~łтԂׂۂ߂ (+269@EJORXw|Ńʃ̃΃Ӄփ܃߃ ),1=INW[acfmquzĄƄɄ˄фڄ!&-5=ACJNWjm~Ʌͅυ݅ -NPUZ\_kqy{ĆdžɆˆΆنۆ߆ )47;?IKNUWY`cfjtvxćLJˇЇ #1;@FMSWY[^adhkpwňψՈ݈߈ %*68;ADLV_dfrtw҉ډ݉ #*-146AIOVX\_flprw7FHJLUZakyČȌʌΌьӌ܌ތ dfkptw̍ύ֍ڍݍߍ *5BDILY_drt|Ǝ͎Ҏߎ &*/38;?DFIN\_dŏΏяԏ #.28CEMUW[_bdikĚϚњԚٚߚ%(/2HRWZ`gx &(,;\^alozĝuyĞΞҞٞܞޞ!;>KNR_bgjlw Ypzn   / 9 ` !"!!"" """%"<"B"E"H"P"`"d"j"v""""""""%%%%%%%%%%%%&'0000;0A0NNNN NNNN!N&N(N*N-N1N6N8N;N?NBNKNMNVN]NbNmNqNsN~NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOO O OOO/O4O6O8O:OU@UDULUOUSUVU\UcU{U~UUUUUUUUUUUUUUUUUUUUVV VVVV)V/V1V4V6V8VBVLVNVPVSV[VdVhVjVtVxVzVVVVVVVVVVVVVVVVVVVVVVVVVVVVWWW W WWWWWWW&W-W0W7W;W@WBWGWJWNWaWdWfWiWWWWWWWWWWWWWWWWWWWWWWWWXXXX XXXX!X$X*X/X4X:X=X@XJXQXTXWX^XaXiXkXpXrXuXyX~XXXXXXXXXXXXXXXXXXXXXXXXXXXXXYY YYYYY"Y%Y'Y)Y1Y7Y>YDYGYNYTYWY`YbYeYgYjYlYnYsYxY}YYYYYYYYYYYYYYYYYYYYYYYYYYYYZZZ ZZZZZZ%Z)Z/Z5Z_H_J_L_N_Q_S_V_Y_a_f_i_p_s_w_y_|________________________`````` `%`'`/`1`B`F`J`M`P`R`U`Y`b`e`h`o`u``````````````````````````aaaaaaaa!a'a4adBdNdXdgdidodvdxdzddddddddddddddddddddddddddeeeee#e+e/e4e8e;e>eEeHeMeOeQeUebefelepereteweeeeeeeeeeeeeeeeeeeeeeeeeeeeeeefff f fffff%f'f-f/f4fl@lNlPlUlWlZl]lbljlplrlzl}llllllllllllllllllllllllllllllm mmmmmm%m)m2m5m8m;m=mAmDmYm\mcmfmimlmnmtmwmmmmmmmmmmmmmmmmmmmmmmmmmmmmmnnnnnn n#n)n+n/n8n:n>nJnMnVnXn[n_ngnknnn~nnnnnnnnnnnnnnnnnnnnnnnnnooo oooo o"o+o1o8o?oEoToXo[o_odofomopoto|ooooooooooooooooooooooopp pppppp&p,p>pLpXpcpkpopxp|ppppppppppppq qqq!q&q6qsDsOscshsjspsrsusxszsssssssssssssssssssttt t"t%t2t:t?tUtYt^t`tctjtotstvt~tttttttttttttttu uuuuuuu#u%u(u+u0u7u:uDuFuIuKuOuQuTuYu[u`ubudujumupusuvuuuuuuuuuuuuuuuuuuuuuuv v!v$v&v4vBvGvLvRvVvjvlvrvvvxvzvvvvvvvvvvvvvvvvvvvvvvvvvvvvvwww www$w)w7w:wy@yGyPySyUyZy]ybyeyhymywyzyyyyyyyyyyyyyyyyyyyyyyzzz zzzzzz.z2z;z?zBzFzMzWzbzkzpztzvzyz}zzzzzzzzzzzzzzzzzzzzzzzzz{{{{{{{ {%{,{9{E{H{K{M{O{T{V{]{g{l{u{{{{{{{{{{{{{{{{{{{{{{{||||!|*|8|>|C|L|P|V|`|d|s|~|||||||||||||||||||||||||||||||||}}}} } }}}} }+}/}2}5}9}?}B}F}K}N}P}V}^}a}f}h}q}u}y}}}}}}}}}}}}}}}}}}}}}}}}}}}}}~~~ ~~~~"~&~+~.~1~5~7~9~=~A~J~M~T~Y~]~g~j~m~p~y~{~~~~~~~68:PT`jnpruwy 36;=FJRVXZ^aorv}Àƀ̀΀րـ݀ )/139>KNPSeknpxƁɁ́сӁ؁߁ ).359@GX_dfhknqvx~łтӂׂۂ߂ (+268@EIORXw{Ńʃ̃΃Ӄփ܃߃  ),1=INW[acflquzĄƄɄ˄фڄ!&-5=ACHNWhm~Ʌͅυ݅ -MPTZ\^kqy{ĆƆɆˆ͆نۆކ )47;?IKNUWY_cfjtvxćƇˇЇ "1;@FLRWY[]achkpw}ψԈ܈߈ %*68;ADLV^dfrtw~҉ډ܉ #*-136:AFHPT[^`bfikmpŠĊNJˊϊҊ֊ڊ܊ފ &(+39>AINVXZ_fkorw7FHJLUZajxnjʌ͌ьӌیތ dfkpswˍύ֍ڍݍߍ*5BDHLY_crt|ƎʎҎߎ &)/38;?DFIM\_aďΏяԏ .18CEMUWZ_bdikĚϚњԚؚߚ%(/1FRWZ`gx &(+;\^`lozĝuxĞ͞Ҟ؞۞ޞ ;>JNR_agjlwb*"!0_^]\XRNMKD875+! ǷǷƷ÷·|{zxwvtsqponmkjhfc_^][ZVSPIHGDA<53+* ߶޶ڶٶ׶ֶԶɶĶxvmjea^]UOJIHDB>74. ߵ׵ֵյԵеϵǵ~xvumigcb`^[ZXWVUTRPNLGA@?<;970.,+'&"! ݴٴ״ִӴҴѴǴƴĴ}{zihgc_^[ZXVRLHCBA@=<:8710-$# ݳܳ۳̳˳ɳdzųó~gfea]\YTROMIE.-,*(' ղԲѲʲȲ}|urqlgea]RQOGBA<950.-*)'&$ ܱ߱ͱ˱ʱȱ~|xvsrmkiYWVURQOLC@=:83/-)'% ذְ԰а̰ʰȰŰݰzusomledba`_^ZWSPKIDB@7641,&%#߯ޯܯدկЯ˯Ư¯yrROIGD?62߮ޮԮѮЮϮήͮʮɮǮƮ®~ztrqnmlkjigd_^]ZVSMJHGFEDC><;:432+ܭ֭Эϭ̭ͭǭĭíjeSOL<8/.#" ۬֬լԬҬЬ̬ʬƬŬ~vqmjda`XRQPONLHGFDA<;6521.-$#"! ߫٫ѫϫͫʫī}|zwonlkg\ZVTNLJGECB;:70'!  ܪ֪ԪҪѪ̪ͪɪªzyt_TSQPOHGFEDA=<85210-+(#" ܩ٩֩թѩϩΩͩ˩ʩȩzxwsrnd`]ZXQMKJHEDB?=<760.-+*(# ި٨ѨΨ˨Ȩ}zurqponhfb_^YUTGEA?=:43/ ߧ֧ӧҧЧϧΧɧȧƧħç~|{zwpnjied`[YXROMCA@?>:763-+)%# ئצ֦ԦҦΦ̦ͦ˦ǦĦæ¦|{yxvskgf_]\YVURQOLKIHFED?=;-+%# ߥܥϥ̥ɥȥǥƥå{vtrkhda`VNJIG@?<;95.+)'" ؤפ֤ԤҤͤƤä¤urjic_ZQPLHF@1+)!ޣܣڣ̣ͣˣɣ~zvurqnli^\Y>=<:/ ߢݢۢբ΢̢ʢɢŢĢ¢}zsqomljhUTNLJIHCA6410,+(' ءסСϡ̡ȡǡšġázxsnmkiea_\YRQNMIHA1/.+&%" ߠݠ٠ؠҠѠΠǠà}{wuolk_XTQPMKGA=, Οş}soieVQECB<9/.-+* ߞڞٞ؞מ֞Ϟ˞ƞ|vutsrnmed`]\[L?43-"!۝؝֝ҝѝ˝ǝ|skc_^YWHG><2-)(& ߜݜ؜ԜҜМɜŜœ~yxspaLIFDCB@=<;9632*)'&$#! ߛݛۛ՛ԛϛ˛ʛțǛzmie`]JIDA@?:9431/, ۚښ̚ʚǚĚ~snba]WUSQOND1,+*)&# ə|yvrpk_\ZVNKF@=7' И͘ʘɘǘØ~}{nkcba_YSIB>;:865430'ܗ֗՗ϗΗǗƗ—qnhgfa`_WURLEBA@;.,)%"ޖٖזϖ͖Ȗ}|{yurolkfeaZXSRPONMIHFCB>6432/+)($#" ܕڕٕ֕ՕԕʕǕƕ~|tsmkia_^\TSRPJHGDCxvutrqpgfedcbWUPMIGDB?<93.-" ܓۓӓГɓƓœēzyrpomkba_\YUSRC610/*&ߒݒْҒВϒȒǒĒ’~}|vp`\XWVTRQNMI=<82/("! ܑԑБőÑta^VQF?;:953.,#"ސӐϐǐĐ}xvtpomlg_NM@=-,)'! ԏӏЏΏ̏ÏtsrligXF'&# ߎێڎ׎ҎŎĎΎzpnkh_^\VUTOMKH?>=75+֍ԍЍύ΍̍ƍ}|ywsmhgb`_[XWOGECA?87.*$#" ߌ݌،֌όƌ~xvuc\[VTD=9876531/.-*$" ߋ݋؋׋Ջԋϋ͋̋Ƌċ‹{vrpie_^][UQONJB@:96531|xrj^NM?>:865320/-+*#"!  {wmgdaYWQNLKJIED@=<*&߈҈шʈƈȈ~|thfba^]WTSRLJFC?=:6530#! އ݇ۇ؇ևԇӇˇɇLJ}{zxwspnkjifc]\[ZYXWUTPOH?=<;5/' ܆Ɇņ~zvojb_^YTSRLJIFD72"  ߅ޅԅȅDžŅąqljfba`WOHGB@>=;:80("!ׄӄ҄|yvp][PDC=:90&%!*"! ڂ~}solkhgfec\[ZYUTSPNKI@?>=:8753/-,'#" ݁܁فЁ́ˁɁȁƁ|unfVRPLIHGFC@=<3,*'%# ŀĀ~}zyvtpkicJHED?;|vrqjcb`][ZVU ~~~~~~~~~~~~~~~~~~~~~~t~a~^~X~V~T~M~F~E~D~-~+~$~!~~~~ ~}}}}}}}}}}}}}}}}}}}2}/}&}%}}}}}||||||||||||||||~|o|G|C|=|;||{{{{{{{{{{{{{{}{x{w{v{a{]{Z{P{K{G{;{"{ {{{{{zzzzzzzzon.O+7?rYo#o#rY   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`ab=sefj?yqlRwkzthxanlm}dovSen~Cc019:569QNO>z7;F(>r:;<{?=),K*PXJvY#?+X=YK*PX}Y ԰.-, ڰ +-,KRXE#Y!-,i @PX!@Y-,+X!#!zXYKRXXY#!+XFvYXYYY-, \Z-,"PX \\Y-,$PX@\\Y-, 9/- , }+XY %I# &JPXea PX8!!Ya RX8!!YY- ,+X!!Y- , Ұ +- , /+\X G#Faj X db8!!Y!Y- , 9/ GFa# #JPX#RX@8!Y#PX@e8!YY-,+X=!! ֊KRX #I UX8!!Y!!YY-,# /+\X# XKS!YX&I## I#a8!!!!Y!!!!!Y-, ڰ+-, Ұ+-, /+\X G#Faj G#F#aj` X db8!!Y!!Y-, %Jd# PX<Y-,@@BBKcKc UX RX#b #Bb #BY @RX CcB CcB ce!Y!!Y-,Cc#Cc#-KPXYF+X!YKRX!Y+\XY+!y(((((Px`lLddHX4\ ( p  h @ | @ ` $`(PhTL<dL(T8dl8Dl4,p<X`|DlX X ! !T!""`"###$$H$$$%%H%&&\&'''((())d))*@*+8+,D,-p../(//0h011(1\122t233X344D45 5`566P677l88X89D99:P::;X;<<<=H==><>>?T?@(@p@AHAB@BC0CDDDE0E|EFF\FFFG$G`GGGH HpHHI@IIIJ J<JdJJJKKHK|KLLPLLMLMMNLNNOPOP PdPQTQQRdRSSXST<TU4UVHVWDWWX0XXY YlYZZpZ[,[\ \\\]]]^0^x^__D___`D``a$aabPbbc0ccdTdeedeff\fgg\gh0hhhiLiijjpjkkPkl(llm<mn npnoopopphppqdqqrHrrsslsttxtu uduuvv<vxvw wx8x|xy ydyz0z{ {@{t{|(|t|}(}}~X~D\P,4xTtd<`8Xdp$,|`@,l `,x$|TPX`HdPLt` 4x(h ltLt<l8|$@l 4\0Lh4`4p@t<p4Tt8`(P ,Pp@\tH (X8`XTt@ L| l TÐ4hİ Ő ƄTLjTȬ<pɤH0ˈ4X̘<͈8ΐ$ϔDШTѼҌdӴ(TTլlִ8׈(؄ LٰLڠ(|۬`xܬDݤ0p4|T8h4t`h@x`dD$|(XT@tH`\4|h P8<(pth4,0x8\ x0(XL(@ P<tL $ T     \    X   4    d p T4@hlH4X$\T<|td0H 4  !4!!!"L"##d#$ $h$$%l%&&''())*T+ +h,,d--l../t/01112`23`34@455p56x7(788899`99::d:;0;<t>?x?@D@A4AB(BCxDDE$EEF(FGGGHdHItJJK0KLLHLLLMhMN,NNNNNNNNNNNNNNO O(OPOxOOOOP P4P\PPPQQ,QDQhQQQRHSS$SLSSSSTT8T8TUU,UXUUUV0VlVVW WtWXX8XXY8YYZZ\Z[[[[[\$\@\x\\\]0]T]]^T^_T_t__``D`l``a(abcd eLefgHgxgghdhii`ijj@jjkk4kkkl4ltlmmHmmmnTnno8opppqLqqrr@rhrrrs0sXssst$t<tltttuu,uHutuuuvvvHv`vvvvww4w\w|wwx(xyXyyz zHzz{{L{L{p{{|}}|}}~~T~~~ @hD|<x$Lt p|$`\H<0dxD pD<,X TlPph`8lt8DHPp$`,( 4pt P<|0d$p X x@ L4d@€xø4ĐhƐ Dǜ\htX˰T̰P|ͨD΀0dϜ0tд ф,ҤtӐӬ(HdԤ0Ք(\֔h4؀<٘lۄ,l(ݨX<Ht((\@ d\DXHt$d4P`0T4Xhh0<l$xxt,X`t  @  D  @   HL400Tx(8HLL4 L!!" "#P#$%`& &'(P))*H*+,x--.p//01\2 23X4<45678X99:t;@;<=@>>?<@@ABdCCDlELF@G`HHIJ`JKL$MMNPOOPlPQRS\TU$UVW\WXYxZL[0[\]^d_T`Daabcdefg`h8iHjdkplhm<n,o(p q0qrtuuvw|xlyzP{|H}t~\txX0 P@D p |80p,\$08T$PdDldl|ĄppƬHȄɘ,h` |ф<(֐؀٠l4HܴDݠހHߨp<(t<,|<t,@h(Xd8tH tD  \ H   lp|\,tx\  !"|#\$`%8&H'()*,-|.p/l0124X567H78X89:@;;<=x>?@@A<BB<BCCtCD|EXF,GGdGHTHIJJ8JJK|KL@LM$MlMNHNODPlQQRRS SPSTTUTUVW@WXYZ\[[\ \]^h__`abhcPdPeHf0gHhdhi4j k@kllmmn nodppqrs@tXuuvvww\wx$xxyXyz(z{T{| ||}T}~hd,\$<4 Pt@(,lxlH<|\4$0p<(<8D\hDpL|4T,`T|Llt¸hĨPƐHɬl(̴͘DјҌ4ԀHT h8۴܀D<$ttdXd4(xlHT4ddp,px@ $  ,  ,pDt PDT|   !"d#(#$%&p'D(T) )*X+d,P,--d-.H/$//0012@234458567 78889:D;8;<=d> >?D@@ADBBCDExFPG8H HIJK4KLMNTO OPQ$QRS TUUVW0WXYZ[\]`^(^_`abcdteDfTg$ghijklpm<nopqrstuvwxyz{|}~@<0Ld4\D$dHx`  `<$X LlL TT@ 0XtDh@<h4ĨlD @ʤX   lҔ|< ټ(H$0<XLPtH0DP`h\ < |   d,8|\h(T| $ !4!"<"#$#$$%t&&'H'())*,*+,4--.`./018203(345|6`7@8t9l:P;d<|=h>`?p@AAB,CCDdETFDG$HIIJKLMN NOOPDQ`QRST<U4UtUV@VWXXYZZ[H[\L]]^_4_`a@bccdefgi<ij0jlkkl0lm4mn(no\op@pqdrrssttuvw\xxyzX{ |D}}~l0\xD<pL<l |tTHPPDDtX$HdD4$h,tx4H8hLXǐtɌʬd\̀,ϜH8՜Lph<tpt݀hߌ(x0Lx hXx( <|D     L ( xLl88<\ 0pD t! ""#$l%\&4'((4)`*\+,.4.//012p3<4(45x6D7$78T99:;HP>?@@AXB4C,CDEPFGH@I<IK,KLMXNOP|QR4SLTDUV$VWXYtZZ[\`]]^_``tadac$ddffghijtkTlTmXnto<opqrst\u(uw,xyDyz{|~ ~\p,0 $0Xtdpt@`<H TD(Xp4T\0,0 8XL<<< HXdհTLڄ ܀PDD|Tx$Xx ,D0|H x4XT  t @ L 4  L<,T`(x4!!"#t$($&&())*+t,(-$./00123456789`:X;;<=>x?l@AtBTC(DEFGHIJKLPMHNLOP,QQRSTUVWXhYZ[\]^_`abd@edf|gLh(ij kLlXm8n\oHpqtrpsPttu\vtwlx`y{T|D}T~x(plx 0T0`| H@P(xlh@Œ\x dpL($4وڸ`hdP L @h(xd@(<,Pt xl`X (l<$  <   T  H``\ TXd  !l"T#4$@%X&0'$(0)*+,-.//|04012l3345<667899:\;<;<=>?H@(@ACDtDE,EEFGGHHIDIJ`JKXKLLMNNOhOPQQ|R0RSSTDUUV<VWHWXYDZZ[p[\]\]^_(_`haabtccd,def\ghhij8kkldlm|nlo0op\q qrhrstpuuvTwwxdy@zz{,{|}~(~<4|P88t4`< H8<HT4hpd`(`Dh8`\ƼǨ\,8LDTp\@ڤl`D |x4\pdX$P$ @ x   l    , ( $ D           4    H \ !8 "d #P $4 % % ' (X ) * + , - /, 0@ 1T 2 3 4 5 7 8 9< ; < = ?h @ A C D F F G HD I I K L M N O P P Q S ST S T< T U V V W X Y Y Z [ \x ]D ^$ ^ ` ` a b c d f( g h` i\ jH kT lt m n o q< rD s s t u vX w, w x y z |, } ~< ~ |  l 8 ` 8 T  0 \ P T  h H x  8 < h 0 h h |  h  D P \ @ ` l  l L \ d  Ì ` < ư d T  D ̘ d < @ Ѵ Ӡ T P `  ، \  , $  D 0 t @ @ 4 L  | 0   X 4    p t l (  4         t          "@ #T $( $ % 'D (h )H *h + , - . / 0 1 3 4< 5d 6p 7 8 9 :l ;\ <` =P >8 ?L @D A B C E Ft G H I J K L M N O P Q R S T U V W Y Z@ [| \ ] _ ` a cT d e g h i< j4 k( l< m n p q s tL u v x, y` z | }4 ~|  ` T \ ( X 0 8 H | x `    t 8  l   d p 4 d < ( Ĉ  L Ȝ 4 l x H t @ $  < ٴ ڼ L ܘ $ p 4 p 8  ` D p 0 8   $ h 0 (  h ` p P 4 4                     0 0   ` " # %L % & '$ 'l ( ( )L * * +d , , - .X / / 0 1\ 1 2 3L 48 5 5 6 7 8 9 :l ;, ; < = > ? @l A B| CT D EH Fd GD H@ I@ J< K\ L( M M O P8 Q R S TH U( V X0 Yh Z \d \ ^4 ^ _ ` b c$ d e e fp f g ht i` i j k8 k k l` l mh n n o o p@ p q r@ r s tD u u v wT w x yh zX z { | }x ~( ~  l 8 8 t  t < X 0 H t h T 8 @ L L L  X ( | H  T 4 Č ( Ȥ ɜ P ˨ ̨ ʹ  Ϝ ( а P  ӄ Լ H ְ H ٬ l ` (  x \  \ @ x L d $ d D D t L \ x T   H   t ` 4   D   X     p ,      \ \    ` L  ! #( # $ & & ' ) * + - ., /d 0| 1 3d 4 6\ 7 8T 8 9D 9 :t ; ; P ?H ? @ A( A B C( C D E8 E G H H I J K Lp MH Nd O( O P Q R S Uh V W< W X Y Z@ [ [ \p ]( ] ^ _ ` a, a b c dH e, e f h h id jP k l` mD n$ n p, p q r s t u w w y z@ {8 |H }< ~`  $  \  h X h 0 4  <  D \ @ | \ 8 T X \ ,  0  H < ,  | @  | d t \ d <   L ɀ ˜ (    ,  0  p 8 T  P T d @  T 4 ( L 4 x ` d    H    d H         8 d l d      P !X "d # % % & 'd (L )\ *P +\ ,( - . / 0 1H 2d 3| 4 5 6 8 8 9 : ; < = > ? @ A B C D E G G H J K LD M0 N\ O P Q S T Up V W Y( Zp [ \ ] _8 `h a b c e f@ g h i j l m o pH qd r` s t v( w4 x z {0 | }  4 < X P h , L ` x , P $ 4   (  D ´ ƈ  ʘ ̀ @ Ф D ՠ ٨  ڔ P ܀ 4 |  ߀ 0 x < ` ( ( 8  4 H   | 4 X ` \ T <T      @D8X@!"P#x$%'0(),*H++- -./D/0112,3$345\667|8089:P:;?P@@ABCDLEXFDGHHJ@K@L|MOOPQRSTtUlVpWPX<YXZ8[x\t]D^(_X`4ab|cdefhi$j@kHlpm|no\pqrsu(v\wtxyz| }T~ p pDxl< p0$04,80l$|p $HLLh$¤`,xƐǤ@ʘ8L̈́ΐϰ,$Ґ@ԌD֨t04ڄHܔxPd(d $`x,P $<H|`    x XdXL, !"#,$8%l&`'l(@)H+,-8.`/012h3d456789;X?@ABCDEFHJ0KLN`OhPQSpTUW0X|YZ@[H\] ^\_L`pahbcTddedf$fghijTkklm0n$oopqr@sstuvpw`xy|z|{|}~   <D@,`p$8XpPDP `ÜĠŸȄɔ<ˤL(ΠdTP\ӰԀ טpt,ݜtP@P<,,(4<,8\@      (,Lx !##d#$X$%X&4&'`'()`*<++,-h../0d112t3<34t556|7789|:0:;0??@ABCdDDEFGxH|ITJTKLMNODPXQ(QRSTU|VTWWXYZx[\`]8^D_4` aabcddetf\gHh4iHj@kTlpm\no\pPq4rs4tuxvwxy{|}$~\h\,<<0L`@ p@4<`$DLh<T l ļň(0ɜʌhЀр<T8@Dڜ$4hhXPXDL4p,lLpt|T 8 8    l 4< t!"$(%t&(()*+,-/(/0p1P123l4<55678h9h:`;h<|=d>D?l@tAxBCDEGTHIhJKxLNNOPR$SpTV(WTXZ`\]p^_\``ahb\cdffg|hpi i|j jk8klTm,mno8opqr<rstTuvvwxx<yHz z{|}~XhptDT4 \<(@phpLL0,|p T$,P PhðhŌ`ǰ`L8Ϡl`ҀӀԠՈ߄XXD| 4  xP,,Pt      0tpx! "P#x$%'(@)D*+,./001$2L346L7d8h9:;<=?@A,BdCDFPGpHxIK4LMO(PQRT<UdVtWXZ[H\^_D`ac0df(gij$kdln0oq0rXstvHwz{}~d<4|4p(\00Lx,|t0t4t4 <LthTH8<, (TΔP l|`( ۈhhl<HP4dl4L<  <H,8       xDDd HTx`||  !#`#$%&8&'()*|+|,x-.x/x0D1D283P456789:;<=?@A8B@ChDFpGHIJL(MNPQHQRSTUVWXtYlZd[\]^_`abd\exfghik lm8noqrrt@uv w xdydz{|~H<  8\t X$@`(|<DPtH(l\hhpp$$PʐPLԴ,0@@dH(8XD0t,8tXx l  t\XHXl8 !("H#8$\%&')\*+,./ 0T13x4678:<;=>T?ABDF8GIhKLNPQS TUVXHY[P\L\^H_abbd<e0efh<ij4kHl|mnphq\r stpuXvdw$wxy{L|}LTXX4`(HP@pPtxHHx(D|L0Lx,` (@<PLDt\4h<8Xx4h$h,l\Xl PLl(lT4 Hx<h@|<\xp!*3!'3#! f!X3#53] IW{{F J3#73#FP

54#"QCQL=]4Kr`C~svRd 7-gY[aFP3q5<"^5S)9> & xGQ]W8jB 9T)BQLC7] 6?&T.& :K 3#KW CFtT 6673#&Fd^LL^ W޶W-t; #6'3;d^LL^W"W2X''7'7'37ݥg4dc4g@<4&&4=88PD 3###53CD@@<73#edJPyB5!P)@@_353_]# #MX.= !"&626&"5}!\\[SFQ!#'737PzA&I"'632!!5>54&'ccfkvT>՗ME@ImȦCCWGJS!32#"'732654&+575!Ujq}lRTRX\_hICfar{4A2VTGE>8%#!3##5!53m[||O^OzAAU!3632#"'73254&#"#!;JkvfVTTRMO4F#tjz0B/MQ.z7< "32654&"&54676329Md^SU^aRyŭ>EqodN]dd]R`JCMowN$ !#5!N֯sStxCm(.=!+2"&54675.54>54&#"2654VPCIMVVMLSSI[]db`Oy21_pp_@d\7'#"&546"32654&2zɳz FpouU]`RMd^䑅C vNrtCbZVafQYc5353]]]}P7353PIed^nA<3%5%<6FRZ5!5!Z==u@@@@_Z355%5_FRFA"!4#"'632#4>7>53Ϫhmvxu~**) +P1#"%V:f#D#WL/K".9$,E7%){{(x+7%##"&546323533654&#"327#"&54632#326=4&#"1RJ[YLQ3Ni jO#^~ӡ7;129:13qBpefoA9@Q80DФΦsZMHCBI# 33#'!!## Z UJI_&}U.!"3254&!"'63 4&+324-CZ^]XYPFX_NuC1: >X bDJF (v"327#"&54632&hYbħbY9<@̫@<9U "3 4&#"'6324--4/ĸYXZW >ֽU !!!!!G[U@CCU !!!#!=P@("327#5!#"&632&YJJq̭cZ!@7V<;6Uq !3#!#|PPP1&is33sW& #"'7325ąUHGC1%C%UV 33 ###Dai`PEdU !!eHjDU3333####UQTPJH&T{Ut 3333##US|NRX&X( &6 26&#".B||} TU5 632#"'#3264&#"UhcB9PP:;cige7>sktxbVS (j "326&"&6 #.}}||Bk_K|(_5槧UTͪw*\@O=U?3632#'.+32654#"UWdRK-,XSV5NPPwp5/g_LfjH#~ML <"#"'732654&'&54632&EL|iyp|`WmJOCTwiqaW=6a+$lVag?B>DA,<Q!###<PDjK` 6 53 &53vNQ:EA#33#ySZu&-3333###hOed||&|-] 33###Z^[0:rh 33#|[Tb[5K2 !!!55!KwwCCCRst3!!<<23#2MYNUtc#5!!53qtI5!K<<3*#'{sC*2'2#&'##"&546;54&#"'6326=#" m^Ff@HV59I^Q V)8/Ee5isZgGE'506QEWgL;.;/}-3cH8GP"'##336324&#"326Cs7FI7qbpr*QIDVVDGS bX_fll_ajm("327#"&54632&/XbgSF@KRtzRKCmd`r";#{#=#- 326=4&#"463233#'##"&uTGDUUDIpbq7IF7s`rimja_l҃_;Xb(7327#"&54632%!.#"sdPMLT`polwz@RHKWUb(9*|~ :W^_735432&#"3###7.0%"6-JC<3>C32#4&#"#KF]6XUH8D:`I]07mv)aKsL("264"&462l[[[;ކކoooK$"'##336324&#"326>q7IF7sbps+QIEUVDGS [Xbfll_ajm-$"&54632373##326=4&#"_spbs7FI7TGDUTEI bX-[smja_lK 3363"#KGXoKoy?za7 2&#"#"'732654&'.546_QMS:=5FfYg\kUR]:>7EcYe(;'*&$* NO2;1-*(, KA@L23#327#"&5#535&4.* 3;UFss:_IF]6TOP@pM]07_iJ# 33#uPg%-3333###sogosOdood::A2 373#'##SVT#$ 33#7tNNbTK !!!55!K1s1BBR=#5354632&#"3#},?YYrkEB4<*ECCZIi<_iB>^*]//]*^>>Ј__`+]>>]+^00^+]==]+^00```#7535#533333#3##5S׼^[T5_5yb5_5t33IIIhh323!5>R8@T$BGQqS^M,1B;6oe44oi0K!32#"'73254&+575#6@EPMF824f1G&4>:EH"/X$)/(N#73sKqfNK$3#'##"'#33265IFX1HHH5><]T,2(P@mK#t! "&463!### __FF'_h753_]܌-$U;#"'73254H)UZC6 .9m064B<L09$'73#m@@i3JmZ/ 75!$462"6264&"ZOkkk xDDxD11ttt8TTT_2557575575_ L H323!5>'73#%#R8@T$BGQqSm@@G:M,1B;6oe44oii3JmI&4).2#"'73254&+575#5!%##5#533'5#@EQME823g1G&GB;;E#>:EH"/X$)/44&cc2!22A"#53327#"&54>7>58V0%!%hmvxu~+!){{T.I7%*f#D#WL#9/'"6# #'3#'!!#&rK Z UJI_C&}# 3#3#'!!#fK Z UJI_&}##73#' 3#'!!#Zd[nZd Z UJI_f&}#3#"'&#"#43232 3#'!!#@R-E5!?Q/C7!O Z UJI_.$R-%&}#53!533#'!!#II Z UJI_*&}#"264 3#'!"&462!#z>..>-| Z UJI`HfIIf-@--@f&fHHfH }# !!!!!!5##3#.,IP:C@C($v""327#"'73254'.54632&hYRj#UZD6 .9n ħbY9<5 -14B<L)" ɣ@<9U#'!!!!!qK G[U@CCU#73!!!!!KqfG[U@CCU#73#'!!!!!+d[n[dG[U@CCU53!53!!!!!kJJHG[U*@CC#'3YqKWC&sJ#733KqfWC&] #73#'3d[nZd-Wf&' 53!533IIW*&#53632#"'73#3 4&#"#uZVĸXXP-303-]@7W@@ > Ut3253#"'&#"#432333##o8!@R-E5!?Q/S|NR%H.$RTX&X( #' &6 26&#"XrK;B||}9T( #73 &6 26&#"KqfB||}9T(#73#' &6 26&#"d[nZdB||}\T(#23253#"'&#"#4 &6 26&#"%/C7!@R-E5!?ZB||}-%H.$RJT(53!53 &6 26&#"IIB||}*T- 1$ %''7'7711121Q1111-#46327#"''7&32654' &#"-ġqT788hárT687hBX|EdhBX}m4I*Jh4I*JhY+SL+K`#' 53 &53?rK>vNQ}EAK`#73 53 &53FKqfvNQ}EAK`#73#' 53 &53Ud[nZdvNQEAK`53!53 53 &53IIzvNQ*EA #7333#?Kqf[Tb[5U5 4&#"32#3632#"ge7>:;cPP9BB8S :usktxP))#"'73254.54>54#"#4632/:/ANK5w1:1<"&462326=#"-- ---m^Ff@HV59I^Q VIfHHf8/Ee5is-@--@-ZgGE'506QEWgL;.;/fHHfHl-3cH8G2K-8!.#"327#"&'#"&546;5.#"'632632326=#"-OFBS^GOGQ_Ah=HV:32#4&#"#.C7"?R-E5"?F]6XUH8D:`I-%H.$R]07mv)aKsL( #'"264"&462qK[[[;ކކooo( #73"264"&462+KqfK[[[;ކކNooo(#73#'"264"&462d[n[dN[[[;ކކ҄ooo(!23253#"'&#"#4"264"&462.C7"?R-E5"?[[[;ކކ-%H.$Rooo(53!53"264"&462\JJ[[[;ކކboooPD !53535!CWWW=@@-"#46327#"''7&32654'&#"-oO;)**BoO;)**B*9O["*9O[|'7 9J{|'7 9J8ocU6>ocUF#'32653#'##"&5rK5>:_IF]6TOP@pM]07_iJF#7332653#'##"&5 Kqf5>:_IF]6TONP@pM]07_iJF#73#'#32653#'##"&5[nZd5>:_IF]6TONP@pM]07_iJF53!5332653#'##"&5YIIL5>:_IF]6TObZP@pM]07_iJ#$  #7333#73KqfNNbQNg#5!#!!#3#[IS Z UU<<@&2 +5!2#&'##"&546;54&#"'6326=#"i[m^Ff@HV59I^Q V)8/Ee5is<ֽ- 3#326=4&#"463233#'##"&v]dCITGDUUDIpbq7IF7s`rmja_l҃_;Xb#53632#"'73#3 4&#"#uZVĸXXP-303-`<8Z<< > -g$53533##'##"&5463235326=4&#"IuuF7s`rpbq7TGDUUDIGYJJq̭cZ=VV=%55ᨎ!@7V<;6- 23"&5326326=4&#"4632373#"'7326=##"&@ii?FdESDEXXEGPHnau8FUMGJXR6u[t=VV=%55R]kh[ Ziga}aW# ;bp@^(53"327#5!#"&632&FNYJJq̭cZ*!@7V<;6-*53326=4&#"4632373#"'7326=##"&MSDEXXEGPHnau8FUMGJXR6u[tb]kh[ Ziga}aW# ;bp@^(73"327#5!#"&632&=aTJYJJq̭cZ!@7V<;6-*73326=4&#"4632373#"'7326=##"&TJ=SDEXXEGPHnau8FUMGJXR6u[tD]kh[ Ziga}aW# ;bp@^Uq#73#'#!3#!#[n[d|PPP1&iP#73#'#33632#4&#"#Zn[dIBmXUH8D<^Icmv)aKuJ#5353!533##!#)!#gP|PhhPP|&32#4&#"#3fKwF]6XUH8D:`IF]07mv)aKsLUt73#333## =aTOS|NR X&XK7333>32#4&#"#=aTF]6XUH8D:`I]07mv)aKsLUt73#'3333##fdZn[dS|NR9X&XK73#'333>32#4&#"#d[n[dF]6XUH8D:`Iqi]07mv)aKsL#Z3#733>32#4&#"#l^dCF]6XUH8E:_I]07mv)aKsLUt#"'7326=##33tOV30%"6-OS|ZS@3>/^XK4&#"#33>32#"'732658D:`IF]6XUNV-0%"6,)aKsL]07mv[R<3>( 5!"326& &6 [}}|%BU<<槧UT( 5!"264"&462pZ^[[[;ކކ<;jt^GOGQ`@ed?hK-PFBRIWEHVVHEpp Sd'8*<77<,W^`qooU?!#73#632#'.#'32654#"!KqfPWdRK-,XSV5NPPwp5/g_LfjH#@ML K#733363"#KqfGXoKNoy?zaU?!3#632#'.+7332654#"PWdRK-,XSV5NP2=aT|Pwp5/g_LfjH#ML K733363"#p=aToGXoKoy?zaU?%73#'3#632#'.+532654#"2d[n[dPWdRK-,XSV5NPPwp5/9g_LfjH#@ML  73#'33363"#dZn[d~GXoKqioy?za<#4632&#"#"'732654&'&#73?wiqaWgEL|iyp|`WmJOCTKqf0Rb/>,=6a+$lVag?B>DA7EcYKqf@L(;'*&$* NO2;1-*(, K <'#73#'4632&#"#"'732654&'&!d[n[dwiqaWgEL|iyp|`WmJOCTRb/>,=6a+$lVag?B>DA7EcY҄@L(;'*&$* NO2;1-*(, K<$/3254'"#"'732654&'&54632&#"#"'{.9n |`WmJOCTwiqaWgEL|i)UZC6L)"?B>DA,=6a+$lV#064B7$04632&#"#"'73254'#"'732654&'.7e[_QMS:=5FfY>8)UZC6 .9mkUR]:>7EcY@L(;'*&$* ND4H054B<L* 2;1-*(, K<'73#'34632&#"#"'732654&'&#d[n[dwiqaWgEL|iyp|`WmJOCT9Rb/>,=6a+$lVag?B>DA7EcY@L(;'*&$* NO2;1-*(, K<$Q!##"'73254'##</UZD6 .9n) Dp394B<L0$2$#.5#53533#327#"'73254=3ssK&4.* #."UZC6 .9nJN<:_IF]6TO-%H.$RP@pM]07_iJK`5!3 &53 5[NQvU<<{EAF5!32653#'##"&5l[5>:_IF]6TO<<{P@pM]07_iJK` 2673"&533 &53 5$dE@ii?4NQvO5%=VV=%EAF 2673"&5332653#'##"&5dE@ii?5>:_IF]6TO5%=VV=%P@pM]07_iJK` 3 &53 5"&4624&#"32NQvAHfIIf- -- EAfHHfH@--@-F#&32653#'##"&5$"&4624&#"325>:_IF]6TOOHfIIf- -- P@pM]07_iJfHHfH@--@-K`#73#733 53 &5Dq_Dq_QvNAEF #73#7332653#'##"&5}Dq_Dq_5>:_IF]6TONP@pM]07_iJK$` 53327#"&547.5vNhcGV0* 49MI3tzAE-59;7+;6F$B"32653#327#"&547'##"&55>:_I OV0* 49MI^]6TOP@pM,;9;7+QF@07_iJ-#73#'##33333#d[nZddRhOe|||&-#73#'##33333#d[n[dodRsogosOd҄A::#73#'33#Nd[n[d[Tb[5#$ #73#'33#73d[nZdNNbQ҄53!5333#JJ[T*Pb[5K2#735!5!!!5.KrewwCCCCK3#5!5!!!5(eK1s<#]$53533#3632#"'##4&#"32#uI7qbpr`s7F}RIDUUDGG3 3254&#'3254&#"^]I1L=PFX_w29uCCZb)8  +*'(+,X bKs JF@><U.73254#"5632!"'!!296.29dSB @rkAP3632#"'##!4&#"3267qbpr`s7F*QIDVVDGS_bXA"'632#"'7326&iXbƥbXi9<@ʭ@<9( "&5463254632&#"&#"327ħD=PV20&!6-[hhYb ̫;ZS@4>99<@(v!"&5463254632&#"&#"327,tz&"NV.0%"6-CD\dgSF@K { /[R<3>#md`r";##53632#"'73#3 4&#"#uZVĸXXP-303-]@7W@@ > "'#&54>323 4&#"YXI1L=-4/E  +)'(+,- 5!5!# 54632&#"327Sdސ82.682A,krH 2!5!#'##"&546323326=4&#"F7s`rpbq7TGDUUDI<Xb_Jmja_l($"2#"'73254'&54>54&"2ކMd\`QMSvsHO[[|si(L[<#"'73265!!!!PV30%"6,=9[R@3>C@#535432&#"3##"'7326-0%"6-QV-0%"6,9C<[R<3(>$5!#"&63254632&#"&#"327TJq̭RCOV30&!6-fwYJi@7V:ZS@4>6!#"&54673332654&'#~G$6VS6$#()#@:%cgWgc%: $ GPQG $Pn"%32654'7#"&=4&#"#33632ELNO7G9rg8D<^IIBmXUPFoyr}~cldaKuJcmvs "&53327XQW,6"%5 R[7>3<7 5333##7WW<f<U37>32#654#"###uN.pL&4mi`Pt6B0-@G*gdP!#%##432&#"3%3_I.0%"6-_K<3>7 5333##7MM<R<(#''7'37#Q1N#Nb=>8=oSE7EP;#%#"&'##"&533265332653#'X3>I;wYSM9>=LN8>7SPKd3;28j`kSFXKSFcM&du#"'73265333#QZ-0%"6,S|OSXo[R<3>X&XK$33>32#4&#"#KF]6XUH8D:`I]07mvaKsL( 66  267%!."(Bq $ TVB(\"#"' &6323254'26&#"K:/ ġb7||}07ICK[T͋Y6.7(0!#"'"&46323254'264&":/ކoLq7w[[[0-:IC !$|F@Y6.ooo(23##"&632327&#"NNMjġfP6}8008}& +T+D($s3##"&4632327&#")JJ:KooK:[O  Ov$$o  6 #&54>32#"'#3264&#"VK/L;B9PP:;cigeC +('(+,;A$sktxVSM$&432&#"3632#"'#4&#"326M.0%"6-7qbps_q74QIDVVDGS<3>_[fll_ajmU?32654#"'632#'.+#3Pwp5/65RK-,XSV5NPPP6ML;g_LfjH#<"'632327#"&5467654&gWaqivTCOJmW`|pyi|K,>/bRAGB?gaVl$+a6=72327#"&467>54#"'6[eYcE7>:]RUk\gYfF4vSMQL@AK ,(*-1;2ON *$P';(F !!55!SUCC;CC$327#"&5#"&546323#'54&#"32,6"%0-VQ;QVICROK*0#a9>3<R[2@:52#%#"'7326=#"&5#53533#327LS-0%"6,UFssK&46.!A]P<3>2IZ<3<C<Q#5!#327#"&5,6"%03VPDD5>3@R[K#"' &53 533254':/)&QvN"707ICAzY40F0#326533254'3#"'#'##"&55>:_I"7D:/)&F]6TOP@pMzY4007IC]07_iJ7 &5475#5!2654&'5!#Hƛ9cwwc9 ǜeAA||AAeٜK"&5332654'7VQrfKOO Aᩧçr7>32#654#"#3QhOJ0oL&-JT^xHB0/>G5q5#$%7>32#654#"#73R9W:qL,;5NbQ\ʑeB0/>GT|TP75375!5!3#!!5k̢w磈e<CC<CC"P75375!5!3#!!57\xzn1s9<<9<<2%4&+575!5!32#"'7326_hIjq}lRTRX\GE>CCfar{4A2V7!#"327#"&546;5'5!Ih_\XRTRl}qj>EGTV2A4{rafCK!#"327#"&546;55!D`[YQMOMdthc';EGT[2<4zs`d<F!5!32327#"547>54+575K0\~g^esY?<<s>?@L%9*z ';9P5!654&#"'6323#!!567Z'EMKccfkv=@nLT>M"<\UGJE@Imb\[32#4&#"#%53'2653]6XUH8D:`IMnFMi]07mv)aKsLxnn=Cl d# 73#'3#!!#3#\dZn[dIS Z U9@&2$/#'3372#&'##"&546;54&#"'6326=#"։nZddrm^Ff@HV59I^Q V)8/Ee5isZgGE'506QEWgL;.;/}-3cH8G] 73#'33dZn[d+W9&Y 73#'33dZn[d&Mq(73#'36  726&#"dZn[dB||}9TC(73#'3462"6264&"d[n[dކ [[[q:_IF]6TOqiP@pM]07_iJK` 53!53'5!3 &53 5IIn[NQvgggg88EAFu 53!53'5!32653#'##"&5YIIn[5>:_IF]6TOb<:_IF]6TObKP@pM]07_iJK`3'33?3#/53!533 &53 5"L )) L"D;-',:_IF]6TO9ZP@pM]07_iJK`3 '3533533 &53 5HfrII4NQvgggg:_IF]6TObP@pM]07_iJ-.#"'632#"&547!326dPMLT`polwRHKW Ub(9*|~ :W^_# 53!53'5!#!!#3#IIn[IS Z Ugggg88@&2u (353!53'5!2#&'##"&546;54&#"'6326=#"VIIn[m^Ff@HV59I^Q V)8/Ee5isb<CCfar{4A2VK#5!5!32#"'732654&+573#'3'chtdMOMQY[`DydZn[d<<d`sz4<2[TGE;$73#'3'2653d[n[dmFNjq=Cl dU  5!5!!!5632#"'4&#"3 ewwyZWĸYX4--4/CCCCq U|  5!5!!!5632#"'4&#"3  0teZWĸYX4--4/<32#4&#"#3#KF]6XUH8D:`I^fqK]07mv)aKsL#3!#73#!#'!#.54624&"2iLqg%UJIS%IfH/->..>{_$;D<#3HHS@--@-2 +3=2#&'##"&546;54&#"'6#73326=#""&4624&"326 m^Ff@HV59I^Q VKqf8/Ee5isIfHHf-@,- -ZgGE'506QEWgL;.;/-3cH8GfIIfH{-,@--# #73!!!!!!5##3#Kqf,IP:C@C2K 1<#73!.#"327#"&'#"&546;5.#"'632632326=#"Kqf-OFBS^GOGQ_Ah=HV:ocU# '33'3#!!#3#_qn_rIS Z U@&2$/'33'32#&'##"&546;54&#"'6326=#"_qn_rm_F e@HW59I^Q V)70Ee5isN:_IF]6TOz_qn_rP@pM]07_iJFK` #."#4623 &53 5@EdF?iiNQv %55%=VVEAF "#462#&32653#'##"&5LdF?ii@5>:_IF]6TO5%=VV=%uP@pM]07_iJ<#73"#"'732654&'&54632&=aT EL|iyp|`WmJOCTwiqaW=6a+$lVag?B>DA,7$732&#"#"'732654&'.546=aT_QMS:=5FfYg\kUR]:>7EcYe(;'*&$* NO2;1-*(, KA@L<Q 73!###=aTPDj273#327#"&5#53533=aT&4.* 3;UFssKF/;IZ<>54&''>54#"'632ͶA:JhXr[hx>H6q;H-'?:biJ@NWKebB=>54&''>54#"'632<8F\xRl\\r:Bܴ(xU.8":,hHS99>I7rOL4n0Uq73#'3!3#!#dd[n[d|PPP9_1&iP73#'333632#4&#"#d[nZdIBmXUH8D<^I9Kcmv)aKuJU$j33>32#4&#"#UQ(yEplNJZQQx>D[ecY-(2233632#"''67#"&546326=4&#"3254&#"q7I*23;KAX@4$+:`rp(TGDUUDI+#I&_; 906?,)a$4mja_l92A#5326=3"&54675&"2642MdeMJSSJ_abbDKPQJ*dJ^oo^Jd*HOPP-#"&54675.532653&"2654MDFKI\\JKFDMZZZ fXD_R:;GG;:R_DXJ@AKKA@K25!5!!#"'7326=!5wwQZ.0&'6,cCC"!9[R<3>9CK!!#"'7326=!55!K1LS-0%"6-19<#53#!!#3#4M'IS Z U*@&2 +2#&'##"&546;54&#"'6753326=#" m^Ff@HV59I^Q VMM8/Ee5isZgGE'506QEWgL;.;/P--3cH8GU$!!!!##"'73254'#!G[)UZC6 .9n)@C064B<L0$($(!.#"#"'73254'#"&54632!327s@RHKW'UZD6 .9npolwzdPML9"W^_.hB<L("|~ Ub(9( 53!53'5!6  726&#"IIn[B||}gggg88TC(u 53!53'5!462"6264&"\JJnZ^ކ [[[b<LCX"(64F%M:'b {#816?+6SkB9/K",3#33>32632#"''6754&#"3254&#"IF]6XU*23;KAW@4Q18D:`^#I&]07mv{ 906?,)az;aKsL92%7&5#53533#632#"''6732654#"ssK:<3;KBW%!64Jp?$'3,P-<< 7906?"-So/#/$ '2653mFNj=Cl d-n 6"32654&326=4&#"4632333632#"'##5##"&DVVDGSQTGDUUDIpbq7I7qbpr`t7C7t`rl_ajmeflmmja_l҃_'_bXXb-$n*6###"&546323533632#"'#%4&#"326$326=4&#"I7q`rpbt7C7tbpr`q74QIDVVDGSOTGDUUDI-[bXXb[fll_ajmmja_l#7#'737#/3'mm88Z68UJDZ7юG*I*@(v"#"&327#"''7&546327&]!f>LhYbYI-@0ħ4,#@% W9<@ ^dfέ H@<(?#7&'327#"''7&54632&#"p1'2F@KR@21"dz"Xb 3+= ";#CHIWimdb#P 5333#!!#uSuueHc<;7EcYe[_;'*&$* NDc"6dy-;1-*(, KA@LKj72#.+55!5!q^,e[12;4`#q )63 !"'5#54&+3#323254&#"XXQFX`]]uuB28BZb3-=Y bK@&JFj@ r>< #533!33#"&') #gRuOgh b<ff<###3#ZS Z Un&U;3733#3#'7#!73#9H9uFEu#E@F{@CaSaSC&(D *&#"373&#7327#"''7&546327LKWutE)MLT`0&2to$&2h_Vfa1 (9* ?CG~ <?> s5333##"'7327TUHJ@ <f<%C%7$53533##'26=538NjmFN<4?Q\\ज-&4632373327#"&=##"&6326=4&#"-pbs7F-6"%0.VM7s`rHTGDUUDIbX>3<R[bmja_l#!#53632#'.+#32654#"uuWcRK-,XTU5NPPPPwp6.>@Wg_LfjH#~ML #3363"3##5#53GXiKoy?mX<<#53'3!733##'!#3#xK^HH[KxT*h&\T<0!;0@JJF$b "#3363AR<82c1A389?2\ 3#5##5265=92cAQ\9?1A32p\##526=3327#"52`AQ= k[=1A3$. eP\\ 2>54+'326?3#"'3"T7&&3!?)K@8;J  5d QX0 ?Y8($\###3333UGBBGU;?BDB?\8P\73#73^??CJ]CI^3- #73ddJ F 3#edJ- #'JJd7-# #52644H3))3fH5):)5(-# 463"3"(H3))3ufH5):)5($I2#5654#"'6GRz={e6:DD9iVJ!0%2$S#5&54632&#">yRGDD:515|$j9D%0!'#VSrZ%5%~][u~ZPoZ'557D^Z~u[](&E##3#][t[(&E373#3][t[Q(N#73#'d[nZd҄(N#'337n[dd3P<5!<[<<FN3#fK-N3#-fqK$C3P-->fHHfH@--@-K$O473327#"&K>YNU1* 49MJzA9,;9;7<N23253#"'&#"#4.C7"?R-E5"?-%H.$R(N#73#73Er_Dq_N(|573327#"&5ƞ? "(:2Z$>2(b254&'.54632&#"#"'7E'>7?:<81/E&@9A;B8/L. .'(.+* 0(*0+-$J\ 3#'##7'33?ehANM@hfAK\}}z2$S5&54632&#"yRGDD:6e|$j9D%0!JVA!5!#PF&A5!53#A[PPF&A5!3#A[PPJFJ&JA75!3#5A[PPF&A35!3A[PF&PN)3!I0NPN!#3!II0N(Y73#'3dZn[dF5!%5!F[[::::F J3#'3#P

-->./IfHHfS-@--@fHHfH-a3#-fqK#a'33'3_qn_ra<a#73#733Er_Dq_a<.23253#"'&#"#4.C7"?R-E5"?F-%H.$R},5353}CCC,kkkkno!##n<5KL##5L< 5no@33!n<@5KL@!53L@5 F!53!5Bw&F!!53FwC<(&!'7ѪX 327#"&=31($ 02S4MnA59Z2A732654&#"'632#"'U@EShcXBCKRztRKT"r`dm#=#{#(%537&#"327#"&54632JPCCXbgSF@KRtzRKjj#md`r";#{#A753/632#"'732654&#"IKRztRK@EShcXBjj=#{#;"r`dmP73#53edJD^FN#73KqfNFbh #7353!53KreZII#!#73!#3#]KqfIS Z V9&_h753_]܌ !!!!!#73_G[UKqf@CCI( !3#!##73\|PPPKqf1&iڌ-z!3#73#WKqf&Ns "26%#73 &6 CKqfB槧TTd 33##73`\SKqfb[5! 3!5>54&"!535&54'#73o>ƛcwwcǨEKqfǜeAA||AAeٜ1A 327#"&5753!537#73%2.* 3;UFfII`KqfG.;IZoZ# 33#'!!## Z UJI_&}U.!"3254&!"'63 4&+324-CZ^]XYPFX_NuC1: >X bDJF U#!SlF# #!!+3#Z9: Z :B&U !!!!!G[U@CCK2 5!!!55KwCCCCRUq !3#!#|PPP1&i( 5!6  726&#"uB||}LBBTCs33sW&UV ##333 #PPDai`dE#!###3US ZnU!####333JMQTT{H&Ut 3333##US|NRX&XK 35!5!5!KKKCCi@@.CC( "326& &6 }}|%B槧UTUq!#!#UPP&iU5 632#"'#3264&#"UhcB9PP:;cige7>sktxbVS F !!55!SUCC;CC<Q!###<PDj 33#|[Tb[5#%>4&'5#5.46753coocPPPcooc kk C bb X kk -] ##333#E[]Z^:rh0F%653#5$33NPNP7 3!5>54&"!535&54 >ƔcwwcǡǜiAA||AAi՜% 53!533IIW*&53!5333#JJ[T*Pb[5-L"#73#&'#"&4632673.#"32:Kqf&.2L*[|WlmV@]:H(r6S/8@G8cNl}(Py`_u]lfdn-"&5.54632&#";#"327#"&546#73?Czka^WO++ugU[cbr{EKqfD)8H%8#PU;22b!8%PF0MEK$33>32#4&#"##73KF]6XUH8D:`IKqf]07mvaKsLNnw 327#"&5573%2.* 3;UFqfG.;IZoFF53!537#"&5332654#73aJJG:rgHDLOOKqfbV{clCPFoyp-L%#&'#"&4632673.#"32.2L*[|WlmV@]:H(r6S/8@G8cl}(Py`_u]lfdnP$&432#"'3254&+53254&#"PauQFX`/A;3p{M@MCdM=Y bKkq LG98DDM#$ %673#5&'3#2yP>I>R{1nܾ( "2654'"'&54632&#""&54 HO[[jMd\`QMSvsކn_cooc !N=H(;'IE||-"5.54632&#";#"327#"&546?Czka^WO++ugU[cbr{ED)8H%8#PU;22b!8%PF0M7 5!32#"'73254#"&54675NXIR`wJB =Bz|n??Ys\;VH{9K$33>32#4&#"#KF]6XUH8D:`I]07mvaKsL- 2"&267%!."IWWDWWpٌBnw 327#"&5&2.* 3;UFG.;IZoK 73#%##3`)_NN,# !##'3QdN6b&K$3#'##"'#33265IFX1HHH5><]T,2(P@mK# %>53#3X@OJlgR-ʉե%<,74675.54675#5!;#"32#"'73254#"&<]MGL?=|XecWWhvfqJB =Bz|FiN7-N<<OxD: ~#=#mdfk;-)#%(U2;##"&46264&"(m;h>no [[[<A ooo-$##5!QM4<<F7#"&5332654G:rgHDLOO {clCPFoyp($!4632#5.547>54&#"c[>BYy|I|[cO1!A[l ARKvu uQ" l[Yv->#$  %##333#TVSW]uo2A$%>=3#5.=33^WH}J}HW^J3ll鎒ll7!%#"'##"&547325332654'7kPzzPkSHPF2lJl2FPHSwwrs]ff]srA 327#"&5753!53%2.* 3;UFfIIG.;IZoZF53!537#"&5332654aJJG:rgHDLOObV{clCPFoyp( #73462"6264&"+Kqfqކ [[[N32&#"#54&#"'62gVU.!#2&#"#54&#"'62%#73g.!#=M^T^M=#!.g4Kqf֎M;;;;Mx( >32&#"#54&#"'6253!53gVU.!#4&'#z||I||I[cc[I[cc[ F kk kk (&5!##"&'##"&547)26=332654(U.jP;OzPk.M0Fd;Il2F<<#6&'&'7%&'.?'' *)2,G-w@ *"&2,G-wV@82: )aP%83: )aP%-D !'7!'v>>":,:$,2 '&'&''&'7&86#0208)q=086302!8)L=q2$%'.''&'7&x4@&4p8~4&@4a8p-33"&547##6H3^M6Nm[(J"0OvPvL4:;cPP9BB8S :usktxK$ 4&#"3267#"'##33632QIEUVDGSHs_q7II7qbpfll_ajme[b(v%27#"&54632&#"hYbħbYh99<@̫@<9U,!####333JMQTl)U&K$###333#DCJXYK 6$"534632#"'#3##54&#"323uxnjus_q7I}RIETSFG<FU54&#"##5!#6sgq_WO:PAxgo~CYNLU(CC&U #73#!KreSlF(v327#"&54632&#"!z|hYbħbYhx [9<@̫@<9y@<"#"'732654&'&54632&EL|iyp|`WmJOCTwiqaW=6a+$lVag?B>DA,s33sW&' 53!533IIW*& 73253#"',J@TUH^%1%!%3254#"5632!"'!'>5!_+5/+00\S8WHC?A @qllT"A,zyU!#3!3632!"'32654#"PPJP01\SP+6_]/}qlu VX<##5!#632#54&#"kPAUytNQ[O`CC&wdWUV#73##333 #IKqfPPDai`EUt'3###333uerNSO|RXX( 32673"&33#'267?FdF?ii[Aon,%55%=VVE`C?ZU`q 3##5#3!!PJP|&i# #!!#3#ZIS Z U@&U.73254#"5632!"'!!296.29dSB @rkAU.!%!"'63 4&+323254&#".^]XYPFX_NuC1:CZb4->X bDJF r>< U#!SlF-`7!!>=!3#5!#5N- TJ ICTiAAbCi㠠U !!!!!G[U@CC(\!##33333##FVUFPFUVFeS11ye#"#"'73254&+532654&#"'632_{jcfx//tzTQ[hnvm}jr>@;HHBHA6;9@<[LUt 3###33"RNSO&XUt 32673"&###333?FdE@iiNSO|R%55%=VVXXUV ##333 #PPDai`dE{!#!'>5!{P,c`(2* ʏ@A$CdMyU!####333JMQTT{H&Uq !3#!#|PPP1&i( "326& &6 }}|%B槧UTUq!#!#UPP&iU5 632#"'#3264&#"UhcB9PP:;cige7>sktxbVS (v%27#"&54632&#"hYbħbYh99<@̫@<9<Q###5QPDjD( 33#'267[Aon,E`C?Z#%>4&'5#5.46753coocPPPcooc kk C bb X kk -] ##333#E[]Z^:rh0U` %3#5!3!3q]IP|PCiK<3273##"&=3XrO:PPCS|NjQ(& 'rUT )3!3!3TN M OiiU`7!3!33#5!3 M OZJNCii( #5!632!"'3254#")28dSP286Arku U!33632!"'3254#"P`P29dSP296&rku U. 3632!"'3254#"UP29dSP296rku F5!.#"'632#"'73267 xhYbƥbYh|[@y9<@ʭ@<9U2#"&'##33>26&"PPււʩϑU-&#";#"#7675.54632#/5pwPPN5VSX,-KRdWP LM@#HjfL_g+2'2#&'##"&546;54&#"'6326=#" m^Ff@HV59I^Q V)8/Ee5isZgGE'506QEWgL;.;/}-3cH8GF %"&=46327#"36324&#"326,myLE@Qu]6v[sv.SDHUUEHR ܋| < Yo9Ww|]kdZ ZkiK!73254+532654#"#"'632%,GFHP'$BYAGKyg>8GK4mc20*P  G7-=  EK!!#K|M?7(Q 7!#>4=!3#5!#5hiFIiI<_Le45aO\<4xx(!.#"327#"&54632s@RHKWdPMLT`polw"W^_Ub(9*|~ 2!5##'3353373#'#W5NO5J5ON5-""'632#"'73254&+53254MY^`kzC?EE{rbc[Ufu,,#8%H8)D M0FP%8!b22;UPK 733###3(RLRLf^K 733###362673"&53(RLRLfdF?ii@f^5%=VV=%K 73#%##3`)_NN, !##'>JVy:7Εj> WK###333#DCJXYK \6K 7#3!53#5NN'NN("264"&462l[[[;ކކoooK!#!#KII6K$"'##336324&#"326>q7IF7sbps+QIEUVDGS [Xbfll_ajm("327#"&54632&/XbgSF@KRtzRKCmd`r";#{#=#-###5!O5=( 3#'26733P4vlQX'R`=EdQ-$%/###"&632333632#"'#64&#"32327&#"I-?R__R?-I-?R__R?-=96))69I>96))69/ / //yj776j7272 373#'##3SVTV9KZ %3#5!3!3WC4I&I>x6A3#5#"&=3327IICZlUH7NU< Ma˽K3K )33333HFH66K733333#5!3FHPCH>66x#Q%4#"32632#"'#53 +&)-+0vzSH{ 6aV>K}!33632#"'3254#"5HI+1vzSHI(/,aV' {K 3632#"'3254#"KI+1vzSHI(/,aV' {F75!.#"'632#"'73267g2bQBCKRztRK@ELf32#"&'##$264&"KH~~elle~~HeUUVqq2nnn(7.5432#5#"#7>?5&#"3&aKuJK #73#!!KreM|N ?(&#"!!327#"&54632CCQa1eLF@KRtzRK#]V7EcYe(;'*&$* NO2;1-*(, KA@Ls3353sMMMnn" 53!533IIMb$ '265353mFNjN=Cl d\nn63254#"'632#"'#'>5!(/,&+1vzSHRt95P, {4aVДi?V[K/%5!#3!53632#"3254#"HHI+1vzS).,ԠaV6 {#?53533#3632#54&#"##uIBmXUH8E<]I<>,472654&+532654#"'632#"327#"54673#'3Z]q|..nq[`knhw|\AzB= BJjdZn[d9OMHHBHAq.?2[L(is%#V;FF*27254&+53254#"'632#"327#"5473#'3Фgu,,ӞMY^akyC?EEzr}{>A BJd[n[d2b22;UP#8%G9)D M0FPIW:?F%653#5$33NPNPA$%>=3#5.=33^WH}J}HW^J3ll鎒ll(%66  3267#"'&#"'6323265.#"(Bjgk*Pt0*'*Qt/*'gkTgu~m<12f<12;gu~(%6462"'3267#"'&#"'6323267.#"(ކ5V@AV 4ZF 4ZF V@AVEKLF-#"Y-#")EKL#6"#33>32&65ZUTL49 -):uN@B#%>32&#"#3{OE20 $&0/gR-SPB>'<%#6'33'3"#33>32&_qn_r65ZUTL49 -u):uN@B#'33'3>32&#"#3nj_qn_q{OE20 $&0/gRNSPB>'<%(${$%>32&#"#73$6  726&#"v"IC20 $%0-NbQ5B||}\%V;>%>TgTC($v"%>32&#"#73$462"6264&"u"IC30$%0,NbQ:ކ [[[\%V;>%>T,#5.675353>&'#5PPPPllPl \\ > \eeee(l#5.4675353>4&'#5B`pp`J`pp`JJJ?FF?J?FF \\ \JJ mm JJ mm-Z-53!#5##"&547326=332654'7#"&FBCbCc|bUdU<=NPM=8K$JF=iiWcMtqPcVYtsL-Z 1#5!#5##5#"&547326=332654'7#"&'.@?x<bCc|bUdU<=NPM=S?7(%[N7fV=&4*9DO#3!!|CCFD i9%DO53#5!5lBBii9U` 2673"&533#7+##3333dE@ii?h=J+ ''SO|RO5%=VV=%XXK`m 2673"&53333#7+##dF?ii@!(RZ;C+, R5%=VV=%^6ޠ^(3254#"'632!"'#53533#286.28dSP{ 8rk<;]];#33254#"'632#"'#53533#(.+&+0vzSH{{J, {4aV77U5%#'#"'#632/3654&#"32@H6B9PhcY5C,Wge7>:;#sk4.n\(hPS K$%"'##33632#'4&#"327'36>q7IF7sbpk8@/sQIEUVDQCCB [Xb?u_fll_aj5Uz!#!53S^IlڠK!#!53M9C7-U 53!!3##-S<F<-8 535!!3##-|M54&.O:PAUinX(C&Ckdh_K2'>54&#"#!!6{v W\FO?/Ia81bk>KDC< <(`!##333333#5+#FVUFPFUKI!FeS11e2!5##'33533733#5+'#W5NO5J5OAB5Ҷx#$2#"'73254'#"'73254&+532654&#"'632_XS*UZC6 .9m {jcfx//tzTQ[hnvm}Sk154B<L)">@;HHBHA6;9@<[L-$3#"'73254'"#"'73254&+53254#"'632UEEJG(UZC6 .9mcc[Ufu,,ӞMY^akyC? M06J/54B<L+ %8!b22;UP#8%G9)DU`y%3#5+##333 `I#PPDa,CdEK%3#5+%##3373ZBNN`>xU335333###5##UPXJ TV JXP@WK233353373#'##5#KIPFOOFPޘ퓓#53533#33 ####qPEajaPG54&#"]PPAUinX]O^i&Ckdh_K/632'>54&#"#!#8C|vW[EO?/IIbk>KDC< 6($v""327#"'73254'.54632&hYRj#UZD6 .9n ħbY9<5 -14B<L)" ɣ@<9($#%#"'73254'.54632&#"3224%UZD6 .9nozRKCCXbgSFT;/14B<L* x#=#md`r<`Q %#5+#5!#I2CDD2 %#5+#5!#C1˾>x==s 33#|[Tb[5#$ 33#}XM^\@533333##v^[T<bf<($#5353333##5IZX׵M#:M^\M:-`##3333#5+E[]ZLI':rh02t3733#5+'##3SBCTV%ʶx(`Y!#!33#5!#(rP^JCi(!#!33#5!#(MIWCR>t6xK`32733#5+#"&=3XrO:P]I2CS|NjQ(i 'rA?33#5+5#"&=3327IWC+CZlUH7NU<6x Ma˽K3K<%.=353673##qcNFaNH,;F|M]˽C6UF%4&#"#3632#WrO:PPCS|OjQ(x'rK3#3632#54&#"IICZlUH7NU< Ma˽K3T$!#">32!327#"&'#"&=33yS wdt `Q?0B²;=?O^SRA-j%.#"#>32!327#"&'#"&=33#RHKXIhlvydPNLT`i G8>("W^_Vq Ub(9*p7F?>+$T.4327#"&547.'#"&=3;>32!327#"!#" n9. 6DZU*u`Q?0B wdty ")L<B451O^SRA-²;=?$j4.#"#>32!327+327#"&547.'#"&=33#RHKXIhlvydPNLT`n9. 6DZU*J[ G8>("W^_Vq Ub(9* *L<B451yZ7F?>+s33sW&(\ !32673"&##33333## ?FdF?iiFVUFPFUVF%55%=VVeS11ye2 !32673"&5##'3353373#'#?FdF?ii5NO5J5ON5%55%=VV\Ue2'>54#"#3336[tAHPPDa }rCs`#EK 632'2654#"#33%3cjbpF5NN_:bXeu5!{g=I+ ((,c`(2* Cʏ@A$CdMy`!3#7+#'>`;C+ &$Vy:76ޠΕj> WUq!3#"'73265!#|PQV20%"6-P1[R@3>K!#3!53#"'7326NN'NQV-0%"4*93[R<1U`!33#7+!#|Pg=I+ ((P1iiK`n7#3!533#7+5NN'N`;C+ &(6ޠK`<3273+#535#"&=3XrO:P2J^CS|NjQ(&'rA3+#535#"&=3327I+CWCZlUH7NU<xu Ma˽K3U`k!####3333#7+JMQTg=I* (T{HiK`###3333#7+DCJXYa;C+&% \66ޠs33sM# 32673"&#!!#3#?FdE@iiIS Z U%55%=VV@&2 (332673"&2#&'##"&546;54&#"'6326=#"]@EdF?iim^Ff@HV59I^Q V)8/Ee5is%55%=VVZgGE'506QEWgL;.;/}-3cH8G# 53!53#!!#3#II?IS Z U*@&2$/53!532#&'##"&546;54&#"'6326=#"VII2m^Ff@HV59I^Q V)8/Ee5isbPZgGE'506QEWgL;.;/}-3cH8G# !!!!!!5##3#.,IP:C@C2K-8!.#"327#"&'#"&546;5.#"'632632326=#"-OFBS^GOGQ_Ah=HV:@;HHBHA6;9@<[L-*53!53#"'73254&+53254#"'632?JIEE{rbc[Ufu,,ӞMY^`kzC?b M0FP%8!b22;UP#8%H8)D25!32#"'732654&+5754jq}lRTRX\_hICCfar{4A2VTGE>K 5!32#"'732654&+575Mjq}lRTRX\_hICCfar{4A2VTGE>Kj5!###333[bNSO|RU<<XXK 33###75!(RLR7[^^{<<Kj53!53###333IIONSO|R*XXK 33###%53!53(RLR$II^^Z(53!536  726&#"IIB||}*TC(53!53462"6264&"\JJކ [[[b&x?U  53!5333632!"'3254#"II?P`P29dSP296*&rku K}  53!5333632#"'3254#"IIHI+1vzSHI(/,baV' {-U%#"'7326=+#53!!3#eQZ.0&'6,5C|\Q<3>9<F<-85+#535!!3#3#"'7326/|WLS-0%"6-999:rh023733#"'7326=+'##3SBLS-0%"6-(TV9w\Q<3>97g533333####<]Z^[T<J0<:T<753'33733##'##7AVSVT<<#153#!!#3#4M'IS Z Ua@&21 +532#&'##"&546;54&#"'6326=#"M4m^Ff@HV59I^Q V)8/Ee5isZgGE'506QEWgL;.;/}-3cH8G#!4#"'62#467>#!!#3#Y@<GL&!M"'UIS Z U6)#&@&22="'62#467>542#&'##"&546;54&#"'6326=#"?<GL&!M"'bm^Ff@HV59I^Q V)8/Ee5is6)#&ZgGE'506QEWgL;.;/}-3cH8G# #7373##'#!!#3#Zd[n=jf:AZdIS Z ULP@&2ZE )4#7373##'2#&'##"&546;54&#"'6326=#"dZn>je:B[dm^Ff@HV59I^Q V)8/Ee5is҄LPZgGE'506QEWgL;.;/}-3cH8G#  '3%#73#'#!!#3#7>54#!!#3# :4AGOL%!G)Zdd[nZ"$IS Z U6)"2n#@&2om;F"'632#467>54#73#'2#&'##"&546;54&#"'6326=#":4AGOL%!L"&dZn[dm^Ff@HV59I^Q V)8/Ee5is76)"'eZgGE'506QEWgL;.;/}-3cH8G#%3253#"'&#"#432#73#'#!!#3#e6!@R,F8!?Q,;d[nZdIS Z U#E|,#Omm@&26A3253#"'&#"#432#73#'2#&'##"&546;54&#"'6326=#" 6!?Q,F6!@R,:dZn[dm^Ff@HV59I^Q V)8/Ee5isf#E|,"NƄZgGE'506QEWgL;.;/}-3cH8G#1 #73#'53#!!#3#Zd[nZd(M'IS Z Ua@&21 (3#73#'532#&'##"&546;54&#"'6326=#"dZn[d'M4m^Ff@HV59I^Q V)8/Ee5is҄_ZgGE'506QEWgL;.;/}-3cH8G#3#732673"&3#'!#!#Kq?FdE@iiZ UJIS3%55%=VV&}2,77332673"&2#&'##"&546;54&#"'6326=#"qf@EdF?iim^Ff@HV59I^Q V)8/Ee5is (%55%=VVZgGE'506QEWgL;.;/}-3cH8G#33#"&532673#'!#!#frLii?FdEZ UJIS3=VV=%55%&}2,7#'3"&532672#&'##"&546;54&#"'6326=#"JKeii@EdFm^Ff@HV59I^Q V)8/Ee5is =VV=%55%ZgGE'506QEWgL;.;/}-3cH8G#)-2#467>54#"'32673#'!#.!#L&!M"'Y@<0?FdE@M> UJIS >M3)#&6%55%3O ( O}2!>I2#467>54#"'32673"&2#&'##"&546;54&#"'6326=#"՞L&!M"'Z UJIS >M3#F},#O%55%3O ( O}2:E3253#"'&#"#43232673"&2#&'##"&546;54&#"'6326=#" 6!?Q.D5!@R,~@EdF?iim^Ff@HV59I^Q V)8/Ee5isg$H-$Q%55%=VVZgGE'506QEWgL;.;/}-3cH8G#1 32673"&533#'!#!#?FdE@iiMSZ UJIS%55%=VV&}21 ,732673"&532#&'##"&546;54&#"'6326=#"]@EdF?iiM4m^Ff@HV59I^Q V)8/Ee5is%55%=VVZgGE'506QEWgL;.;/}-3cH8GU153!!!!!NG[Uf@CC(1 53!.#"327#"&54632M@RHKWdPMLT`polwW^_Ub(9*|~ U!4#"'62#467>!!!!!Y?< GL%!L"&G[U6)"'@CC(04#"'62#467>!.#"327#"&54632pZ@;GL&!M"'@RHKWdPMLT`polw6)#&dW^_Ub(9*|~ U3253#"'&#"#432!!!!!68"?R-E5"?R-MG[U%H.$R@CC(,3253#"'&#"#432!.#"327#"&54632%7!?Q-E5!@R-n@RHKWdPMLT`polw%H.$RHW^_Ub(9*|~ Up #7373##'!!!!!+d[n>if:B[dG[ULP@CC(_E '#7373##'327#"&54632%!.#"dZn>je:B[ddPMLT`polwz@RHKW҄LPUb(9*|~ :W^_UY  '3%#73#'!!!!!erd[n[dG[Uf4@CC(HE &'3%#73#'!.#"327#"&54632fqdZn[d@RHKWdPMLT`polw4PW^_Ub(9*|~ U!+"'632##'##73>7>54!!!!!:4AHOL&!G)[dd[nZ"%mG[U6)#2n#@CC(tm%9"'632#467>54#73#'!.#"327#"&54632:4AGOL%!L"&dZn[d@RHKWdPMLT`polw76)"'ePW^_Ub(9*|~ U%3253#"'&#"#432#73#'!!!!!66"?R,F8"?R+;d[n[dG[U#E|,#Omm@CC( 43253#"'&#"#432#73#'!.#"327#"&54632%6!?Q,F6!@R,:dZn[d@RHKWdPMLT`polwf#E|,"NƄWW^_Ub(9*|~ U1 #73#'53!!!!!+d[n[d(NG[Uf@CC(1 &#73#'53!.#"327#"&54632dZn[d'M@RHKWdPMLT`polw҄_W^_Ub(9*|~ G4#"'62#467>3Y@<GL&!M"'W6)#&z&B4#"'62#467>3YA;GL&!M"'{M6)#&Bs153'3xMRW&s1 53533sMMMMMOnn(1 536  726&#"fMuB||}TC(1 53462"6264&"Nކ [[[W6  726&#"Y@<GL&!M"'GB||}6)#&=TC(%4#"'62#467>462"6264&"qY@; GL%!L"&ކ [[[6)"'if:B[dކ [[[҄LP7>546  726&#"?:4AGOL%!G)Zdd[nZ"$B||}6)"2n#TC(vm&."'632#467>54#73#'462"6264&":4 AHOL&!M"'d[n[dކ [[[76)#&e6323254'3#"' 726&#"Y@<GL&!M"'Qġb7D:/ ||}6)#&=T͋Y4007ICK[C(/74#"'62#467>46323254'3#"'"6264&"gY@; GL%!L"&oLq7D:/ [[[6)"'F@Y6.-:IC !$|:_IF]6TOMP@pM]07_iJ)K`#4#"'62#467> 53 &5Y@<GL&!M"'vN6)#&AEF*32653#'##"&57"'62#467>545>:_IF]6TO@<GL&!M"'P@pM]07_iJ6)#&K #73#"' &53 533254'MKqf.:/)&QvN"707ICAzY40F'#73326533254'3#"'#'##"&5Kqf5>:_I"7D:/)&F]6TONP@pMzY4007IC]07_iJK '3#"' &53 533254'_er]:/)&QvN"707ICAzY40F''3326533254'3#"'#'##"&5er5>:_I"7D:/)&F]6TONFP@pMzY4007IC]07_iJK24#"'62#467> 533254'3#"' &5YA;GL&!M"'vN"7D:/)&6)#&AzY4007ICF9"'62#467>54326533254'3#"'#'##"&5 A;GL&!M"'5>:_I"7D:/)&F]6TO6)#&P@pMzY4007IC]07_iJK.3253#"'&#"#432#"' &53 533254'`8!@R-E5!?Q.:/)&QvN"7%H.$R07ICAzY40F523253#"'&#"#4326533254'3#"'#'##"&5.D7!@R-E5!?-5>:_I"7D:/)&F]6TO-%H.$RP@pMzY4007IC]07_iJK1 53#"' &53 533254'9M:/)&QvN"707ICAzY40F10'53326533254'3#"'#'##"&5M5>:_I"7D:/)&F]6TOP@pMzY4007IC]07_iJ '333#bfq[T<b[5#$  '333#73#er_NNbQN1 5333#(N[Tb[5#$  5333#73mMNNbQ84#"'62#467>33#Y@; GL%!L"&[T6)"'b[5#$ 4#"'62#467>33#73iY@<GL&!M"'ZNNbQ6)#&3253#"'&#"#43233#Y7"?R-E5"?R.[T%H.$Rb[5#$ 3253#"'&#"#43233#737!@R-E5!?Q.4NNbQ%H.$RG53GBBPyC5!P)BBP=5!P66=5!66=5!66G5!GBB}$*3!3MHHI5!%5!KK::;;- #73ddJ F #7dJI<73#edJ- 3#-dJJ( #7#73I^d^dCA #73#73>CJ]CI^ 7#73#734CJ]CI^n( 3#73#(^ICV^IC< ###5353II<A<F#3###535#53533II<<<}L"&462V<32&#"!!!!327#"&'2NNVy^Tcb}y_cT^y585~@<9j^585^j9<@}<m ##'##3373####5b1b37ww846mm-@-uxKb-!))NJ00Fxb''#J00Fd))xsb5!'7 '7N))JF00xb%7 7300Fv))NMxb 7 '7!-!Z))¹))>20000xb ''7 70000))¹))>unKl !! !!bӗ"-.E/##/( ' '#'###/((/C"b..nsl 5!7'!5!'7 '7b..-"/((/## %37 73/##/(bbӗ"-.Mnl 7 '7! !!!7[""5..f.I####/((( ' '7 777'####/(((""5..f. !73#334JUZS_&}-( !2#&#"32738 /Q&yy&Q/ ז(-$27.#"'>32#"&5462654&#"tE ^\#i,,}+|rR_dMR`aNy ?%眜voOe^Ld`R\eK !5!!5!!5!U[GC&C&@K;7#5373!'7#53#5;5# 39DuE@PFn5HFCaS&aSC&@&|#7'7&546327#"'32654' &#"F8V)}uAF8V)}u-Z\[--Z\[?^*sZɮI^*sZɮF`DF`# #!!+3#Z9: Z :B& 3%!;#3P:Z:PB&( %#"&46;#"!!;xxXs M sX ֌@VE8EV(v%'7.546;73#3#;#"'7#?#"9R_xK+9%]s76  E7F7,Xs FM}Sk{g@8@3MțVEF =75!.+532+53267F sXxxXs 8EV@֌@VEF=b!&7537+53237+'7#53733267'3.'F6%9!VgxY$9Of7?7:Xs L<8@h]WkgS@VE86NK3!KTU$!#!#URRJrU$3!3URRrJF$o ! !!5 5o3DSDDDPB5!P=@@Zl5!5#53533#Z=C-????$.#3hOO-$B3#-OO"KaD7'#5'7'75v @ Du6vv6uu6vv6u}V"&462264&"Z??Z@>,,>,?Z??Z,>,,>}L"&462V<CQMD631c2B('Hgnx44>:EI 2Y$(0~@%M-35#333##%#5#533߬'Hgn\99F]%Mcc0#0(2(&#"327#"'##"&46323632.#"326y+*{@<UkkU@<R6;GF<7QCttGKMBANI(2' ,#"'##"&463236324&#"326%.#"326'nR@<UkkU@<UkCF<7RR79IR6;GF<7QV|ttt^ANICGKU7GKMBANIU!!F#7!!l>FF'#'' 9::92(''((''''7'9X:|2o9X:|2o2(s'^' (sK''# 0!##3Og0# 033#uPg00K8D"#462#4bDއDjZBuuAZK8062653"&53aDވD+jZAuuBZ->32&#"#"'7322RG44 ++K2RG35 ++KEIND [nIND (I+>32&#"#"'732%>32&#"#"'7322RG35 ++K2RG44 ++K2RG35 ++K2RG44 ++KEIND [nIND [IND [nIND #Y+A>32&#"#"'732%>32&#"#"'732%>32&#"#"'732!2RG35 ++K2RG44 ++K2SG25 ++K2RG44 +,J2RG44 ++K2RG35 ++KEIND [nIND [IND [nIND [IND [nIND 2:*1%>54&'7#"'732?.546?>32&#"RD[I:VpdSG44 ++JVqdSG44 ++J_D[J:K iE>bK[f PIND [L[fFIND [ iF>b-uDHO%>54&'7#"'732?##"'732?.546?>32&#"37>32&#"# MTHB_omSG44 ++JSG44 ++J _pnSG44 ++JSG44 ++Jx=MUIBnND?MI wZcytIND [jtIND [l xZcyjIND [`jIND [+,,ND?M(^bfm%>54&'7#"'732?##"'732?##"'732?.546?>32&#"37>32&#"37>32&#"### MSHB_om RG44 ++K RG35 ++KSG35 ++J _pnSG35 ++JRG44 ++KRG35 ++KwT=MUIBnND?MI wZcytIND [jtIND [jtIND [l xZcyjIND [`jIND [`jIND [+,,,ND?M7.7#46?>32&#"7'7654&'#"'7327zCf SG35 ++J \zV*-]UC"SG35 ++J"Iah IND [a Z))d GmBIND [ r7(4;%7#"'732?.546?>32&#"654&'>7'7'RV*!qCSG35 ++JZviSG35 ++JZvER@2Sw-KfRAZ):IFIND [B_j54'7'#"'732?.546?>32&#"-w(UKe"*VhSG35 ++JZviSG35 ++JrKfRA)wPs sM g)Z jFIND [B_j^tRF/@{AkAvjZk{@ubfPB_(  !!%!.!> &6 *wQ)w0*wP*w0(  267%!." &6 X  0 ~~.~0(  7327'7'7&#"64 &6 ZxyZNoZyxlN0/OOұYlOpY0( 7&#"32654' &6 ZyoZxN\0POyzOyY0(  5! &6 26&#"<0 ..0Ъ U/33!!UPvFA!#!5!3PvPJFJK%!!#!KPFlK%35!3!KEPEFlF72 5!33#7aPgK<<)72 ##35!֢OgK)<<72 33#'5!Pg )u<<#%!7X//$##3WTnTkJ#$933#34UnWkJK$ #4&"#4,RR䷛n}}nP &5326530ԴRR淛n}}n_h753_]܌# 535353^^^^^}YYxph %53!53!53^U^U^܌a3!&a!!!|/&|U-$7!mn-$%!!!-m/na$7!ڶna$!!!|/&n=!!=m&>!!!l.l|U2 )| 2 )!| ]0 U=0 /m>QqN7 N%%m2 >> 2%! !qq>5# AM0 L UAM0 /4{AMN-M AMN%3M5N>FC *i*C ll*ll**-  JJEsO>i  6 &6  ̸H F h #'+/'7'%7'7'7'7'757%53##'3bhEbh86<86<N82 F>}V"&462264&"Z??Z@>,,>,?Z??Z,>,,>H  6".4>2d¯KK¯KKdsK¯KK¯a!!!|/&|Ua %7#7!!!-ѝH6w|/&ڢ' |U]Z %3#7-S60 (D:?&'7?Af^=f3z[7d=p6462"&264&"=ZYY7N66N YYZN77N6 %''/I.P/I/O0#,R $3 >N%#4'&#"#"'&543"3276'&'&546233276=#526'&'#"'&'$ !$9 9FR ̼}}I3$-(@b$# EG̼}+%@01 !($9+) U }}I1+9-@ %#HJ x}+1@E-767!'6!&;2LR+e>iL+VE:9:HƗ06Z;DOM4q "67&&''4>3267rP_Btm=liP)IV4[]9Ƞ$W3R{85u4vC &6  6& f*If*$/ # Q/99a/3 #aQQ/99/ # # # NKN/9999aZ/ 3 #3 #aNNxNN/9999&C7%#!!oIC?C3!5!yI6 ?7 5!3#!#wII/JDr_C ##!3!53IG/\Jsb/!b%_ii__YYa/!>4&'!_ii_%_YYnz !5!!#5! T FF>FFxp!!x(,,n4%%n^]]?uuz455%z^?uRu?]`3/ !&7#33TV^^V_YYʳa/ !>4&'!3#V^^VTr_YY60n4%%%5'75zx)׏FuuF]MFFM]z4%'55%YzWFuRuf]MFFMn/#!#3%!5#35!.&_/IIz/!3#!53#5!&00IbI/@r<6323267#"'&#"2267>3"4-))0))-4-))-))0))-4-))0))-))&*%%*&&*%I&*%%*&&*%%*&I%*&.};67&'.546aedEq^ d{Fte홵̌  ן/''.; !7&?&%67&'.546FA7/A$RA81B*IedEq^ d{Fte"ZY D#[[!Ň  ן/''t #467G2$R'@"LF)O`!t &'7&'#4677/A$B81B*>EG2$R'@]ZY DmM[[!Nf|"LF)O`!\ .53@'R$2G`O)FL"t!+#%4&'.547>54&'7'$sARWKX>SUD-6H_U%i2+.D#D%!j5E<@*;)&4N(?UH*k} !#!%!4LI7LtI}Lu ""'&#"'>3227632&'.! %>%  ,R;ED!!00!#>)x;v#"'..'0k*]O33@O*A+:{!(1%>54'#"&54675#5353!!632&#"6'327@T`Z6d@Kk]Da+:|l#9,j=E($]?`&MDR p54'#"&54675#5353!!632&#">'327Tm}~B|NXuIACB&.G>BsR_40&'xS1]Sf'@~~@ }o0H"uG8=>(7#4%3267#"&54BoH7$G#E#N#A(u2@mۂt }de\qu7#4%3267#"&547FCHME+\/ e-F1=N-}>wb632'>54#"?3"і}pyai3\JwAwTg2@Cf$32'>54#"73"ܣ| ?rYFm=6D%F<f$!632327#"&'.#"''!?3"! +31 ;=C= L)pRG+94>,<3%56f?Af &!632327#"&'.#"''!?3"m "))7A? IKPJ$Ov,Ci )J6PD$B8LD17]g8B$Ek{$*43533#632'654&#"#"&54675#%7&3265E#xtpjX#4>Hmvl0N45W#$*4353!!632'654&#"#"&54675#%7&3265{I/+ފu+/>JWi4XK7E3emX4& @[r C?^K>vOV<*_s$kd<2R!(U+0653673:#"'732>5<."+'%7aHZ%)2 XDUvp5)  !wJ|DuJEoBGEC{XXs $<0,6C0>g! -U, ;A7&?&53673:#"'732>5<&4."+'&'7<1,<'V=;%>.!HV.08 YDUvp5   !tJ|DuJf@fCfB QSJ}!aGUC{XXs !B976C0%I}N"/}ŵg$5&'76767&#"327# 546327&'#527&'#52 I Q OH$@C{ˇl} {wjo!!9=9?@???R`/ApHFALc+?S_/ApHFAKd+K<?9F@9&'.546767̭<46P*,Vq'$67.&(/8|{( !7&?&&'.546767SA7/A$RA81B*; 52P*.T"ZY D#[[!N}(%98/&)19n !533#'>=!'&7oTI.pr3=700K22GBUB&*IZDP aV )7&&'77!533#'>=!8*9!$:)~2K11K2J.pr=D8 .[BC4TIXI X tCUB-JeQT5!#"&5473267:>>Rː8zL>DDs_a-wOx  7&?&%5!#"&5473267;-0<1a=7(=.:>>Rː8zL> J[\l [LUDDqs_a-wOg*&'767&#"!27#".546327&'#52< I XP!\Cvco%q{ ufR%tm8@FI?C(SNEC)GU2aq4e~C]T 67&?&&'767&#"!27#".546327&'#527)+7$W85"9, I WK#UCvco%q{ ufR%tm5&CRE`WAS~GSUGC~(SNEC)GU2aq4^qC}3267#"&547) 5F8i:EAфz ^w@f 7&?&%3267#"&54A33A(VA81B*N 4F8i:FA҄z"T` K#[[!Nz^w@ԲI-)!53!!'>75##"&463235!3264&#"II .jSooSL7K78JJ87?;@Fk] Cmm-lhHHhG9- +37&?&%!53!!'>75##"&463235!264&"<1,<+Z=;%>.I) .jSooSL7JpJJp QSQw!aGU킂?;@Fk] Cmm-lhHHhGH :36%53>7#"&'7326=327#".5#5:3JHgj%8"&&w :OA{C\I+ 6kA6CO3C 5.8*D!8F3<C8W6<B3675367#"&'7326=327#".5"#5263%7&?&IGDv>~%8"&&x z :OA{dtIdd:" :LZ"C/Tg&5367!!>32#"'732654#"'67gJ  788åyx xmH<@P(QC$f=GCuu$pioCbR2(]T 27&?&5367!!>32#"'732654#"'6760%8*^8-)92 J "188åyx xmH<@O%&NGQTJN_CBUCNCti$pioCbR2(>63 !'2654&#"x/qwj=Ett`];X$3 !' 4&#"X'y0`MźI,~yKGJ 7&?&$3 !' 4&#"7)+7$W85"9,'x0CRE`WASMźI,~yK_ %327#"&54675#_;B >KěFs G t5 K #7&?&%5 %327#"&5467';1,<1a<;%=.;B CFě QS\l!aGUFFƓx F z6 I76% !27#"&547&N(). I;EE_FtohC !7&?& !27# 547&'767[<-0<+Z=?!>.)+#N- J[Qw h?UI[Fكa B94/&1&'&'#"&54632253673#'67&#"3265ck`v.eCepepofBN}EJwCmLLDICR>A3a6Q*gX[OMV.BY? EIBh$b29=Tx} 5!%&7#"&54673200K22 ymE;619rjhbDDP `CeT+p0.(W8;M'.6?I763267&'#"&4632654&' #"&5467&67&#"&'32%&#"32B f|%/Ep'3 ?pE[YJL@fXcYEaRK\Q$vZ):0k:&2 ;C+23*Xz24SQMY%u\C 4'&sP~M0*?\u`8h>3䦫^Q`86+"#-8+6353>32&'#"&4632654&#"#'675#.#"32IFcG $1COebRXLVY=lFWQ5],=(2<=1ho_J`J%1+!vYVD39Wp*cf.cvc.2()4M#%>54&'#"&54$3232>Tx?LL-HyΦ٨P('0*+/ 7~Ϡ ^Nza!+#&'#"&54632!5!533%&7&#"3265Ii3H7gqph?=:I;11H22@?C<&2i2I-]TNUCX %_n?FPT %-77&?&!533#&'#"&54632!'&7&#"3265:%:L:/PL4xh8LC1o2E6]TNU׺X !_n?FCW$,4>462#&'#"&54632!5!533.%&$4&"2&#"3265LlL=.Ii2D<grqh>=/Iy%/H11H2g+<++<@?C<6LL60H<2i2E1]TNUBBJ X <++<+&%_n?Fa"!32654'7&'#"&5467'!akk|sxb77M)]^4qcE?nty,E;8FbjNWQ .7&?&!32654'7&'#"&5467'!<1,<+Z=;%>.kk|sxc77M)b]:qc QSQw!aGUE?nty{+E;7IepjNPO*2462"%!32654'7&'#"&5467'!$4&"2LlLLl4kk{sxb67N*b]9qcK+<++<lLLlL|E?nty{+E;7IerjN+<++<,& &,!#"'732654&'.547'!7&%'67z,7A1h^PW8DW)=<1|@e9D60]@X0B_:$M:D[2Ui,A'C5&L>=Y/_CT &,28!#"'732654&'.5475!%7&?&7&%'67j-7@1h]PW9DW)=<2|?(%?"c@2@@e9D60]@X0F [5$M:C\2Ui,A'C5&L>>Y._CSXRogH=&9 >7&%'64&"26#"&'#"'732654&'.5475!5!>32@e9D6eE0]@X+<,,>Y._CB(4&RU7'67>32&'."_9qFQ=/,?h4H+.(;p4Wd2,c32&'."C@:-B.\B17B*qFQ=/,?h4H+.(;pO"_U W#Og!NeWd2,c32&'.""&462"@..@.9qFQ=/,?h4H+.(;pQrQQr/@..@ 4Wd2,c7.'#3#&'#"&546325!5!5!5!.?&%&7&#"3265:%:LKm2O8 em_s?6,t32&#"326511H22+<++ qCC:|5e8eX]PC\CCq$\19BWF,6"&546767!5!653&''>7&'32>H x ooIVS"BJ9B:&)0/vn+35ZxZ)',ZUdCCk"]` 5=)XsP1>0A^C&|SW8:p3I#28B3533#32>54'7#".54767'#"&5463275#%7&32654&#"ZI#ac]]+G/v{~0 ##ARQB3%N%rx'so]*&+%]{{Cbi+%%F`W=('1 "^`__$i:E\8Y~;C54&' #"&5467&&#"6'327&F ]p50Fm|xaVcbEa\Rj$)dV,6[|>)9KAr0* >jTV&pD wWsh7<>(^R]Xd+53>7!!!!3254'7#"&547#53467{Ls[Gw GnQC]9JC&CvvH18-otk:WC&Us37632#"'732654&#"&'&''67&'767&E .,N^eV840/8@94( Bd*>5G5;(ZSE>R`*X ]OT` A ;349 <1[!2?$TQ6B 347632#"'732654&#"&'''67&'767&IC2`r{h@I = BF|WE.WK{!'33>753'67&'76=#6C+`Hv}}RI fsD*;bA'[l a_shis;I;%BZ1P'ա'! $a##+3>753'>7.'765#>4&'7Mf\#GPI{*,MDsvtp }|J\?@2 K;3m#>7K hi=,s!!&'#"&546323&#"3265#k,ZPSd]^c)1II2(yy0*>,}6j-[WVCAQ RZ5>uw!!&'#"&546323!&#"3265m.tad}oxt;=MGl?9@8#7:6pliRTYzixGRa >3 #"'73 54#"'6?3"'BRbl|N\MKDL>[4B߄ D ˝O=CH33>32!'2654&#"#K2csWSo JvFz|lm+%654&#"'5!5!63 # 54632654#"32pry,[xdW&Źrj^CIgh#(SR|6UABڋ:R#6/$V-,31/353>32327#"&547654.#"#'675#?Is0:2 /U(.i'92 :I`g1ioiZVk0bP@49[44@Xi;WZ649Cw\i2cii63 !"'73 54&#"'5!5!xg[(oWna^Cr{Zk@D F NMD=7]ACo$353>32#"'732654&#"#'675#BIp6`iyfB<52GQ?F]B>G2kLD5>iare0FX,PX?%353>32#"'732654&#"#'675#PF`E|{PJC@]mUZfN3Ee8>dSB@R<#"rJwac?*#%,x@RA@FQ!632+6323267#"&'.#"'67&54632$54.#"'%5!7&%7>54#"eWA#;N<") 7$.!Y+.91}8:~m[ $rda9nN>G#h9?8xOD]i$G$&'(2-5<)*#JC*[T)>d r%D:&j{o $-[N)5#"&54%.#"'67#5367!!63267#4'327Bw-/%54#"73";1,<1a<;%=.ܣr ܺ QS\l!aGU?rYFm=6D%Fj2&'732>5<."+'67#53673:#"W5D3WV, Z<_?[9C C&'.H9F!?$/rQ!' ?QVRN 60-Wg#'>=!5!533&7WWOCE'G((Gr#?.bgr? b YCW 7&?&A7/A$RA81B* "ZY D"[[ NBW"2646"&462@..@/53{sQ(*gRIc{AAT(9I",5z 5!'673'>zg(5cL~$kDDk2>[_A@75O 6$7#Eg-_M)n3eMiqIa 6$7#a1tQwʋ6b]"{!53!'$5!#I4G}} BCGi#!53!'>=!#FMW KF_+) !#!!5!#>)BbBBqw !!!!5!![[FFFCu!533##"'73265'67!G&G?HN.!Ӱ|~~@G%Ar:wg!533##"'73265'6$7!gK.QL]TJ&#h{D9R- F &s=JuwU "3!#"'732>=!'>7#5!6K *3(SkZJ*(0TdC  VJ9чE H ;l6@͖FImQ -7&?&%3!#"'732>=!'>7#5!660%8*^8(.92$K*93SkZJ*(0ScD #NGQSCV_fG/' H :j6?~ɑFG\7%%'%'%P YgPv4  F F  F  F RQ 7&?&%7%%'%''%60%8*^8(.92IPXgPv5#NGQSCV_ F F  F F pH!'67!'$v;6K  1b0.5F`>7'$!'6!&?&7)+# / z95K $d8-)8,CRF0;2CJJNS># '>7!'672c<K}F)D%o)OC4Q7>7!'67!# 7&?&1a<K }60%8*^8(.92%m)UGF*KNGQSCV_O!!5!!Do^Fn J 7!5!!5!&?&7)+3Ne[85"9,CRFF2ZWASC 353!533#'>=!#5#CKhO KUF@F@/Q '7&?&353!533#'>=!#5#:(;O;,<#K^Nx`&K,XE;rb?[F@F 4eq@ 7$7&7&>53I74,+ GH/H"GwG 7$7&?&7&7&>53I77)+7$W8(.8,,! ACRE_CVSGH/H"Gh|5!&''67lF6"@NHH4w@t4TQ5!&'7&''6?&I(7)+0F6"@N8(.8,{HCCR4w@t4CVS6 %#"&5'753%'>7327Y M Z/Is + (=? X&G([Hb<91NO@?( ,Q$*%#"&='753%'>73277&?&wY M Z/Is + (=?7)+7$W80'9,X&G([Hb<91NO@?( CRE_PISws '>77&su PJVELTҧ%H%,mC 7$67&?&7&!M#7)+7 S8-)8, JVELT)1 33CR>fJNS5mO'>7&'767!'>7! C#3g94VlI %FleVICGXt0Q~";\J%7'>7&'767!'>7!&?&7)+ C#2p94VlI &h8-)8,CRFneVFCNNt0Q~1/ECJNSP5!=#52$7!!'>7PtW| QFF(/D,FD<Q!'267!!'>7!5!=#%7&?&cEW} `{"7)+7$W8(.8,"E  FDFCRE_CVS2?'>7&?&2hյF)G"H( H"8C$*im} '>77&?&}ˈ=77&?&7&?&yL7)+7 S8-)8,J--L-L--L. ~=CR>fJNSMP5!!!'>7!f)H{_FFF/E+FQ 7&?&5!!!'>7!7)+7$W8(.8,A}H{_#CRE_CVShFFF/E+| $'#MPBjIj=D.l  7&?&%$'#A33A(VA81B*OP"T` K#[[!NsBjIk=!SPTbDI-G)g5!5!,nKKKKqi5!&''67&'7670|s1zyi.h{)FF؝bf;l_\DQaI=HgR!53!1&'#'$!>PLVo/PFjvP:gm&G1Gr'7$!T,G>:ѻ4@ 7'^IbQ^*I+}|U#Am6( 7&?&7'G<1,<'V=;%>.eKZJQIq*J+ QSJ}!aGU&#Am6- 7'4&"26"&462KUJQGP*J9+<++.(,?eيc J[Qw h?U0iEl2d@Gb -&$%.5462327#"&54&"2%/LlL<- ?eيc+<,,<-WB)6LL6/G *l2d@Gb T<,,<+i !'$!  j#G gR7&!5!&'7'$K8-)8,xj4 7)+ 5JNSI[CR#G dP462#"''$!5!&4&"2KjKK5  jz*<**<5KKjK!G I <**<*&9s7>7>32&'.#"&!UPR7%(=^8F3 )*}W(mh p60e:L/08 k&/ %7&?&'>7>32&'.#"\A7/A$RA81B*5=!UPR7%(=^8F3 )*}"ZY D"[[ N/(mh p60e:L/08 &/ !)7>7>32&'.#"4&"26"&462&!UPR7%(=^8F3 )*}W.@..@jQrQQr(mh p60e:L/08 k@//@.rQQrRD !53!!"'73265!'6%7&]yPe(UBE"HN]E^E\OHVFM+ E ) :Q &,!53!!"'73265!%7&?&677&SyPe(UBE"r7)+7$W8(.8,^JHN],E\OHVsF M+ E )CRE_CVSrY:W%+3!533&5462!#"'73265!'6%7&4&"2SyP$LlL4)(IC[H?!HN]E[E\OHY+<++<{&46LL6,E #M+E *z<++<+g|5!&'7>7g%ܞF>DB:L#GGOe_+-Mk@n~f ?$7$7$~nv   PE 0N CNCON 2N3.L 1L0I7.''676%&Fu[H p!I}SNOx O!C= FCe(dp767&''67&1j9N>sw7{-);im䩀r8gÆAP!!!!327#".=!5!5#1 (<=qoxyNX8%HF==' G 8XOFHf7%'>7'7;L_A66QKLJY TEV42,{BDc)E)>7%'>7'%P'xR8GhS_P_kIm?57WZ5I5C) !3!5!!%b!) BBS !3!5!!;1 -FF1 !!5!5!5!5!H-1BA U !!5!!5!5!-S~JF Fnr !'$!5!n $MMr;*F#QFF" 3'>53RP#I#޶HC 3'>5>7+3P-][)PL"T}IPr+B'_  %6$7!#3EGQ- ={m7#!%!!P^R>G4"6 #!'>=IW* YCOi !'$6=! uT$HgI!533#3##5!53#!!uNN̠HHHxxn z 5!'67!3!!iZ61NWOf}FFnF8oDFa!'>7!5!67! 7Gs#FEZo 7&%'$$'`e %O2DPZDV-8KuQ 7&?&%!'>=!#!57)+7$W80'9,W KF#CRE_PIS*FX3x!#"'732>=#'>7#53653767>]S/ip.b_G6@ C-V3KB9EWIo#'>7#'67I})M9yG B @nW'?3qQ'$6=!#!&'?&', M"8(.8,@@SHgT='CVS<Q #7&?&!533#3##5!53#!!:(;O;,<#NNˠ,XE;rb?[HHHxxdJ 7&!3!!'67!5!&'L8-)8,QNm()iZ61-JNS`DF6@O7nF8nF21sQ7&5!67!5!&'7'>7L8(.8,(Gs"7$0 73CVS|EZoF=':[#F")53j"]B5!].BLLK7.?vdGc^2p+7# 7&?&7.A7/A$RA81B*)?vdGc"ZY D"[[ N2p+x!#!xyS5W5!5~WMMC!!#"/3265!Cb'T@z;(^FV) F +l1-3%327676767#"'.5'7P??4:D@ M.-,NB:I%'$ ՄE R({VaV$&'%52E6?!5!!!#"/32>=!'>[f!FJ9B()5nq0FFqQ8B G /h8S:'767!5!53!!$''67&I2[=TPYRm^uguFF艙:F8YBXxzI 5!5!5!IVlX FFFFDD< !!!!5!wpDUFF< !!&'#!<pP*PFJ>xE'&'%5!!#'$g2V!,N*H9~DD8:u.@-8(75!67!'6!!!3##"/32>7-  N9'OC > +79ZJC 7  iB5f]CxpE *F9T"7'673!5!!!!!#"/32>7!Kd$N)4=l%JD[qW+0~uGDB}@H D -G7!%!!53#53#5!3#3n1[D2, W>ED>EDED5 7!5%!5%!5!!53!3   wwAB(5!!#'$7&'5!IV-)N&FX/jBB<,̚@מr;nBB(3%533533#!#!!##5353KMlOO&DDODJ}D+'3533533##5!##5353333LMppMMppML=BJJRB::7#%!!3!5352$7!#uRhimFFyD-#DE DF+!!#"/3265!&''>7!#!6=!5wn)T, 6f,:B&!,0%3265367!5!67&'#"'5!'>75!g#(!y[s#6tq1fq/ٔ'O)n`3q(g*f*7:AAUHEE%K9)).HO5I6K8J9MM=cRL7##3363#5##33]L~.~oKKKKLLa?;0}wN2OUzP1 $(!5)!!#!5!#!53!!!#5!#=!!5!  I~IVLV~ILO9SZccZ9뚚]7&>ҰD&73(7/%267#"&5#&''67&'765#5353!%> F *%"]/#at1hVO0FdX'VVP,MEUS*) "E{Ji9_Cs=kH0>/7 v:q^;gN__(R+NO=FCD2kl1uDhzDV)E+ N.H{F97&!!5!!5!5!5!!!!(,,4,C JBE=DDCDDC4%'-!%3!533#3##!'>7#536=#53&'7a YdNNNNLI7=A AYu6p_=5`A裣EEVwA93]EEY5Efj3dk6PW&]6'67&7>7$'UbM0yVVy0Mb?EewUYYweEdQ$#"'532>5#'67# '>7#5!"JEI~};&!I6w4DV@\ I Ry(}88kٞFF_di~767&'#"'73267& )vHIRpp,nt;` K #c@:JOO>ONνOE3&''$7!'6!x}(τ!!;Z5YJ h*Kӂ>}xBc53 ):E/2673$7!5!53!;# $'/h%F!2oLPL]DA=5%P#O3EER>6Duq06!!!!!##'67!dttP;Z@AKBD䐁,:("( %!!#"/326=!5!#&'%'67>f(N8qk0&RBGDCDF9\DX9SD'ET*D(E@Zp"n[5y0#%3# $''673$7!5!5#' %!mA=4#R@h$F)"vN>N\Ben~e$H0tCBUB'C|CX)# :!#!5!5#5 %3#5'675#53"&53673267_P_; KKkr ~i h-JZj"rt9:F()QAqAe A5B jnx%E$?p:%K8P,$ , >==)# <35!#335#5# %!#3#3!&'#'67!535#535#5!5#PP9 yzp P pzy0kkkrrrr5AO>kBr=v`BllB`v=rBk>J (#,F!&'#'$7!5!5#5 %53#5'675#5"&53673267s!P!s< IIXt im[1HWcog65A &%n@юsBjjBs/@J ?5AOAK?R<'f77=ML+,* s|+#".54>7!5!3:>/M0+]UM@{øY r(}x98M/ 0HPW'+ =7<8FF^,! ,I1(7!%267#"&5#'67#5353!': J.+,\/0PGN]dZ$"Ef?ZF% ,= -67!! #".546%!5! !:>,?I \A[M 3+SH=:A)v_K_ &)Ci09@"'/)?άAA/9E8-D3753%#"/32>7#327> 7#"'.5'7NL=,-#XF( L6_JIk$  M 987lZNf$%#  -I)6 D 8n.<!5!'CHC(''p'G*F")3327>7#"'.5!#333337L )( 0H 4*6(>WJH`K`G68BR\Q!.XG@b"9!5!5'67!5!!!"#".54$7!5!3:> NkEPcv)P 8,ZKBý5?+_O_"2xx1#CM}AA-)2$)1 +:?3c^  -%(>7!5!'35#535'$73#3#5!#%267"#".532KNiXr޷IK[H -$!-0-L/>C B6BCv/?IC9?M$. !+!'-O267#"&53'$77&?&'6726='675367!5!67#"/JG +'$d6M>($@'>(!?">;+B/hkRC}]nuug#?'k]CFIU#* $D"+B*GdkSK`bc)^ A L$*??H3AoL(B*=$V35'35#%#3##5#535+35#53533# #"&5467!5'67!!!3:>$%18D+:02 ()C?/A5 ;4 -P "&*.[67!!5!!;26!!#373535#35#!5!5!'67!3!!"#".=!#!5+5"!&!d&r!h:Y L-! sRJB(mK &K>>9>9LYM)&Ax$ A???????AAAkGj @#100:  Ad1* -e|&'67#&'75#6267#"&53#3&'7#53&'#'67673#"/326=&''26367#767#5!&''67&2,H)(:=! 1/-=!G3D,* w!m,#92"- (&?K$@45GX8<4()) <8#0CFIU#* $D"N"'8L8jR,[uA@R$$5^+B3 :3"2 "9950 3/8! -' "/32653z)T(PI+V)vs5!#"/3265367v(R-nk&(>mFFwU)F*\g2'767!5!!'67!#"/3265!5!&+c]b} 2 6\1hI'R.nk%(TԍP98>T\BB~[" Fub7MSU)D*8F_!A 5967!35#%'67!!3##5##"/326=!5!5!5!5#5%#3<%$,T6WI B'1ZZM(N'pi!'cI9bU8,5/{/?31A+jT+D)j>A}(;}26?%!5!5!5'33##5!#"/326=!5!5!5!5!53&'735!5!53!!368I1FFM)V,eZ1' mh-6H5>irTro7ddd@O?3XCA[>dAd>GGCdCKKCV26 D!5!!5!35#35###5!#"/326=!5!5!5!5!5!5+5!5!5!53!!!!!FM*W,eZ0( mhmMErTrERGK/MMM>6/C?4:K>G<77>CC>77D75!5!D`HHdHH5!#"/265!5!!5!!v&R#zsH \HJ"F $#H FFC5!7&''6767!5!!67&ChDb3NHb,FJCDDy4-7 DAAnA67!5!67!'!5!!!!-! L+R zT hqhqB_T! BBQJB<!!!!3!53#537!9L `(W9(wHoEuEEHC4%'!!3!533#3##!'>7#536=#53k0NN&NNXW5JK (DD"cE8;hPDO(D< %#!%!5%!5!'5!5!Nv&&\pp䥥>AAAAA"5!67!'#5!!!37&7&A'Z"3XL+R !] " "+BĶ BBG0B<)D=C<)D=C848<'>736733#6".53673:>75!5! $ I/+KaUGL (6& & F56\A.)AvBf  -P>J)I? @ &U<BB5JU!!5!53TIID-!327#"'.5#5!53!q9bKPk&'' P75< F '(&F.6-!!5!5332>7#".5#'>=PM J+/*27,v*de)CCx## 2?5CMC !PG?._wAA!'767$''67&!53!!67!&'7DAWWAFBa}}_Pg5i,"PP\XBECkkCEBX[{{Db.hp9tAA*767!5!53!!67'67&6$7&'4DZEPtXq @b>k`~=g. 56ILDqqDh\;g':B*IZW:'lPo<~O@,<!'-!!#"/3265#'>=!5!5'67%7&%Oga&5vk*`d1G])J) Ea9G9;:ܺ4DD 56&#5!%!5!%!5!53!5!#"/326=367N P**S/xs+(3u;wtAPP ??X8SK&B'"3+;.#5!%!5!%!5!53!#"/326=!5!5367!5!N Pk*S/xs+)S+w_:e@@PP?UK&A&P?3&==J,51 *!5!'677&!5!53"/326=+!! m_-]^0u4wPp9Vl'N(Oe7`66m2AAYYD+@U)7;*!5!#5!!!5!53#5!#5!!!#"/326=!$OzPL,Ll(R9Vl'U>BBYb҄CsU)B+t7; ?!5!#5!!!5!53#5!#5!'>733:>7#".5$OzPoKhK.K N%- M .*&69-\HBBY^_%A!|l  $%&*- !51"(.!5%!5!'5!53!!#"/326=+'67%&'  Pk(R9Vl'N<-]8_s4xSSC C1 #'$;hQw*f16yl0THE* #'6##!5!3N>F(JGOAO'fHE FF5* #'65!5!L/4!9IH)-|W>T;HHHH * /#'6%3!#"/32>5!'>7#536L+6(=ILK%% >xv/  Bn^7Uc@ 0yNBB }xSטS. F >rÍF7>ӡCQ(53.''$!!'>5 PN%v*-z$Wl--2:*#.kk~C9҅;BOBf:bخ* #'63&'/NLV'[G$O"mJE!~HxDeI 7 0#'6#'65#5353!32>7#"&L'2!7Iʁ/zqN GF##J?QnE`F% 53%""繫N,d]+OR)wP,~AA~_{2?)b_ * +#'63267#'67# '>7#5!3"'M+.):K[WF//r K/_x:IQ, @xo"T9E *}7K FFtTU "&''6=3'6=3.'9Zg9RKvU3doQk/}Q|0X""u.nP>b7>b7޽a>B܆* #'67&''6767&N36%JG%H`EJ 0dN_1L8H C)=En {) * (#'6!5!5367!5!!!#"/326L+6(=IPEbW@fs$O%WS#! 0yNBB }FqOjDD^FFW'D* #'6!3!5!!5!53!L/4!9I2P-|W>T.EEF- J#'6737537#"/32>7#327>7#"'.5'7M--(?J cMI!H > I $A0/H"  J211N?6IFg t K5Gx"̺9)/E=xh'g#g= 7&-AD@,fG* &#'6'67&'767!5!533#&'K*+!7I"V5F3gLoNaΛaN5T )BJ`u|FFx4E1k* &#'6!533##"/3265!7&L0/"7IOee(U7pi5*"P7#5!#"/326#M+.):K7EcJJ8al5R  4n[/9v"T9E Y7GCd8 F K*1 * #'6!#!5!'$7L'2!7IP6xas#J?QHsH F GE#3 (.#'6%3%32>7#".''%&?&M--(?J L . ,-/"  AZ:D<5 1^J4S K5GzpDbqR%SI%Y|Dn[0IL.U#/ "&''675!!#"/326=!#!$['"J3lg-# P/n?qq?nBBxW(E,p $767'6737&%3&''>ՉP L8za;e\O-5ba=Jf;$anC-,KBp=D c/~+`n(pwMt0A$Gbq * 7#'66#'>7&'767#5!&'#"/3267&'M+.):K3q 4Yk{W8I`R 8 2$ 4n[/yq"T9E U2K7Brf/wWnCiD LM F 0L0Sr* ,#'>7767!'6!!!&''67&M0("KvJI3U_1v6oD 9s]$jn ddS,R_}lt5<2'BA͈]:B9ih:C6ay * +#'6"/3265##67'6767!K!x.Fl`Z K}mZo20 @/Q F,)%/EP-EV5:V)* "#'6##!53!#5###!#K+("7I=33L'2!7I0?B!N&PN#J?Q~CC>)`__y/f * !#'6!!!5!!5!5'$7!L'2!7I 1xam.#J?QDD.F D GD!#, &''67!53333!!!%""MNO~,~AA~DRPB ; 3#'65!53!#'>=!3267#"&5K$3(7!5!65#3L'2!7IMJSFFK-.Xh#J?Q74kC?C@Z;,lA'4*  #'67#5!!!3!53#5#K+-"6I#h# gL11'R7T EEaEE\Ca\1 -#'6767!5!5!5!53!!3&''67&L)+!7IfFJI*PQxK5Q{bcACzzCAtO0B7]Y;B-Qh: !'#'6%3!!.''67!5!?&K*+!7I5N0 -k))k0 ,3VQ3LN5T FW>CۄC>VF1OX0S: /5#'6327#"&''67&''7&53%6&'K*+!7I3BMn&P&I A,-r3˒;Me-WT^0^SN5T $lNY~ja6D6Ds~~nEt_BY3Z@* #'6!&'#'67!5!53L)+!7IV/[La5b:LK5Q)DG/;D#,$(%7&''6767!5!!67.&''675!A\RDc+<6H"1= """,-35 CuCC|9-s~AA~AA* ,8#'6#"&=#'>7#5353332633##!5!M6/(?Jk? @$oyL  PM^!_5G6@@?:c6>+MAkk+UCC * &#'675!7&''6767#5!!67&L'2!7IW%DjQF"F>A;@7#J?QEEs)90DDD׸s 8  #'6!5!#367!#55!L$3(P?FjaZmK2+"K %!{1Hyi/2LT<`Q=MMVUI?=JY%rY"F5] '39Ar6w , 7#'6#!#=#2>=# '67#536533#"/K$$w4HH(IzCJ8?<SUJ "".S1H0[ h?+?Ce1B(pBB 2 (#'65!#5!53!5!##"/3265L'2!7I^KP"k)Xv-#J?QoopEEW'D+T9 "#'6%!!5!537&5!63M$2):G vOK>-K,pk8M6i%FAE DD F6F - 5#'6&'5!&#67'67 73#327#"'K$3(;Ja n^g~*mu 0/jb ^'BKDAF cZ C^>'D>$FAE @DT?BMDgdCDD;.53 (#'6!!!!#5!#'6#536K)/"6IxN i 2MK:E,O'N;T 'C6E}i 66GU?E'E>* (#'6!&'3##5#53'67!5!53K*+!7IY-[Me4a3MN5T CGAAU;C * &%#!%3#'#'6!5!##"/326MdM+.):KK(T*Px> .T9E DD{V)E 7 <#'6%!#5!#5!53".53673:>7L'2!7I+KK%N 3;> L'/@2@K & IA#J?Q8ؖd!  D @4A 9>E" #% 4&'677&&'#!!#"/3265!5!5#5'673K>P*5k;aESr&Plg# |SE`:ReeRm"v 0},>.9AV(D+A9.>n- 4#'65!46=#'673533#!!.''$7M$2):G F$1@U)FN $f'.v!/%FAE EbP# %;{{CEjC-ji.Cn * Q#'635+365735#35###'>7#'6735#53533533#3#"/32>7#L'2!7I#tc qKqqqqKzum2detK#KqK &':0 #J?QA)$AM$)kLz9>2f7%CRRRR펙* D)KK!4 !#'6!!!!!##'67!P42(?KQ;?X>AJ ([9G{CE~./& 3 2#'65#/>7!#"/326!!+#M11"5!32'#326K'!9KGHA|.5$$ A'+B(#Q L*H*X \niCCiU*iY*μO4LٷTt 8 .#'6!!#5!5!5!5!5!53&'73673!3#L'2!7INH$ʿ)&D/+8!F0#J?Q:DDACI:GQTC7#5365L'2!7I+2G+2d7(K!4N LS?KG TS>wJ?QTH?`aE\^O[ED^P0FnD;[1 "&#'6#!#5!!!5!5!5!53!5!M$2):GL5O  "P%f%FAE M5m5??Bmmd * 8>D#'63'>7'67#"&53&'3:>77&67M)/7IKo.v` Us~f-.,]4Ks*Zp4 >O:==VE>GX#N;T xD<8B8I9M:>8&HuKV9CD% ,*. 'rp$rEc!c ; 2#'6%!!5!5367%7&767&''67&L/4!T 'BBwSjy#p.mx4}QST^SBBCbaDAERa17=36=#'#'6%!!#5#&''67&'767+!5!5!535#K)/"6I K+ RBA1>)7J NY/GFN;T BCF?oD` D oR&C%>6L&?10S8FCUU}FF0 * 9#'6#!%!5!3'>3%"#"&533267<M*28IIDOJ\a5WQJB <J &N?T wA743\65B! /q /(1%2!&'#'$7!5!53&''>'67&'n!'P%$nPK PB47E7W4Hb6lK ea-Se'B?;APBYY` BJ?Q5E;nN:C7} IAPy:jTI4 #<#'6'67&'767!'>7!'>7!'67&'767!M$2):G Ώ/P1M=Z?mz'R2C)G'p6K K6L2?Kh:%FAE ? N(;-93>\V15 w8:4'C=?f.<01AOly * &*8#'6767#'67#5!#3'67&33#"/3265K!x.F'+U"3U2v#j +RH HdKM9X2sT*F+; 06#'6#3##"/326=!5!5!5!5#5353!!!7&M$2):Gppp'W\U+ &P>2cJ4R%FAE pB[+C0BpCAkkA2TX1_* 1#'6'>7!5!5#'673533#!#&'#M$2):G&i+@%8C^)I NN%]O4%FAE N?BRD^O% 9'uuCD?xbQ 5 6#'6!5!!5'67#5367!!!#"/326=!#L'2!7I||%H N P$J#WK& N/#J?Qx||,EA$?,0AD1K$A^;#/ &*8!&'3535###5##5##!#"/326=#&'!5'67$fjj~hJJM3U> hXc cXj=TT&RJ'D 'â5n>(9**9(>n7 J#'6%!#5!#5!53".='75'$7%23:62>7M)/"7IJIO.+11R^.hw $ %'MA@#N;Q:Քg D D^@5#/D03!% GEF * ")/#'6533533#3!53#53#67%7&L'2!7IMN}}8}\90Jk3l5f#J?QBEEBe}/A}.5k4~7 1#'6&'67'67'67!5!53!!67K)/"6I&7Gji ??@Sn(O%0[Q5]hL'N;T [DddfL*BT$B =73HD{{DOg.tW1 ,28#'65!6=!5!53!!!!.''67&'%'67K)/"6I6 M"5?$q)*v#>*6C10V$:C9$'N;T C-AkkA'%CgE4kl3Eg;L~sVhdaf *!%)-35#35#5#'6!#3#5%#!#;#xJ!K)/7K۽Mt1uuu#/lSPN;T E/?CC *  &,#'6'>=!#.'%!5!7&7&M*28I w9=7:d+3Gh^, &N?T ;\ߨҔ=K}AA8V@RD$TAP < "W#'6367#67#67#;67#%5367'67!!!3#3##"/3267465!'67K',);G V    N #6w9H  @G >F*6Z9$^ KE7E 1;~~;cVgSyAGs~~AQl5&32A3sA`Z@2"?# ,  * 6#'65!=#'67#5!7!5!3!!#!!.''$7K,)":I E#):M3Yk, -d(/6I2Q 6A s7,)SvAAA')?s A>EpILoE4 * 5#'65!5!5!5!!5#5!#5!5!&''67&'767K$3(A<??bF.!?&AC$?06I"L38O * !%#'6#367+!#!#55!5!M*28IxLL3GM#f &N?T W@9;E?5]@'* :?#'635#35#367#!!!#5#&''67&'767+!5!5#K)/"6IžR I- QBF3A,= H %'N;T ]]]-6`?NN@aDZ D gK%C"66H)?10JrN|c4/ * 6<B#'67&'#'7>7&'767#' 767%&67%7&M)/7I>I>< Ob`5,HUkgo ;6(~Z4^1j1f#N;T A MB me/0?UC0@ ma?- .Zj-r[4en2g * ,#'6!5!67+!#!!;#"&'M*28Idg*H ?mL5_A>G#7&N?T AZw+MADRkff * RX#'6%33#67327#"&''67&'#67#"/326='675#535'673&?&M)/7II A'<:T(<O CPq$yT&j+ ;gA%D/%! 7L 3[V0P <<4;7#N;T CwqZifQMN?;>Z CU)A+D CC!9?gPn o 7 E^#'667!7.'3267#".='67'6276767&>7!&''67&'K,)":Iwf>>AiSA R(;8H(((/.( E,_X>A8J1:A(IInA|oZ=@9I2Q =PNVrm#+ B''' O<3AZ^QQM(7!">aP9'A+OW#AC=F6!+$  -%!5!5%!5!!53!3'67&''67&'+++lH5$I TO0?N7Z5$J NA08A6ABJ6 NIMz=iQ6 HHMf>]H * 9#'633#"/3265%'67#535'673#&'#K!x.FGcKJ3@/Q sT*F+CB ?*= By1km)ȣ * >#'6#3735%5#!35#%767!5!3#"/326=##5##3&L*/!6IKJ73huXv?1bE JKR/zQ=Qw:{{{)J79AA2NF(?)r9 * 9#'6!5%!5%!5!"#"&=#'>7+!#326L$3(#'6%'67$7&'7&'7##"/326=!5!5367!5!K$3(;J.HAL.')/D3&:=E>;&JAPJ;!GY@D(`pDAF a-u,|/`DJ\tLLwApL(B*gAI),@@N6 - #'+/#'635#!!!!5!5!5!5+!%5#!35#535#L$3(;J 'JBK[ DAF Fzx>AA>x;>:A K#'667#35#365#'67!3#3267"#"&5#'67##K+("7Ii0#"&|+LJ .76G !c1&&*FK O1Q=94;2fVYcM> ?2; -**9# -5BT@ * )#'6!5!#5!5+!#!#&'#'6M*28Ia{"M8'^"bNf&&N?T aAUJUA@E@ A ?#'6%&''676767&'5!5#'67!!!!.''>7K$3(;Jtc6/8I;H3='7<C0@>h9I ;-q+.xDAF n~08Ban]V+5AK:1`|?AHAwLKxA!sH* "&#'6#!#55!5!5!5!5!M)/6IL=N#$))D]#N;T ?,+,AACC??@@ * .#'6#!%!5!5!5!5!!!!.''>7M*28IL3f.`&qj-0pw&N?T /?Ad@@dABhFtHHtFhB < E#'635#5#!!#"/32>7##'67#'6735!53&'7367L*/!8IM '.&,&_A+ Mm&j I"IJO9Q}G6}- D.RRn@v. A/75C;= >- 1 7#'635#35%35#35##!5!5!53!!!!!!#5!5!5L'2!7IFK'N6;N:#J?Qdjj:djS?cc?SZ??Z 6(.4:>67##'6'67!#&''67&'67$7$7'3S+1lI !x.F/h4E Q1Z`pna@0+4ݍ]G)8JKOC-P 5k )AdD4 B&F?&? 13DC*Z<_([0v?v2[5>4}k A %;A#'6%!67#'>5!53##"/3265!5!537&K'!9KO%M$H+57$/N8FA*UU -M:ER>P * "2#'6535#5353'>7'6765##33#3#L'2!7II\}4MRjQoiMM#J?QAD_T:0gL(C*6ED~DA7 A#'6'67!5!5!5!5!5!53!!!!!!67.'67'675K()"6Ii<O@3R>5FURv ~.1@Zx ]*DI4T BKc@_>\A]]A\>_@WJCN-UE]8@7؏60A5C ' 1 $*0G#'6##"/3265#5333#'677&767!5!&''67&M!%"7It3C'MQ9A8>.!A"IDATcr?g)aEPk(pNV:/QCS(D 'aC^A~q| ݡDDxR@PvyM=O 6 R#'63&'#&'#353!#5!5!5#5'67#5367#5367!5!67!!!#3#&'#K'!9K"M/%+1OO"HYuT N> EسKmSBH*X )-%7?B4\\AAe4K4JCr>*,;$.?/3?(*;,*>pEJ5K5e A ]g#'6#3=#35'35#!#&'+23:>47"#".=##'67#536533&'#L'2!7I,M RY!$L ""%  J ;.0")*L!VK`_#J?Qelii;ll;i "0CTA $ , 22; /?@^C*wwUooU A :#'6#36735%5#!35###5!53'67+367!!!533L$3(;JCP#OWd*=~K"LdB=ODAF v2DA5v=#53#>=#537!!#"/326=&''#5&''#!5!#'6!F(3;{'F(3;{* :*F8" -"4"F!-#2"K*'K'!9KDp!uBA1Dp!uBAiO)E*Y7*^[-87*^\,8ic[H*X   4 /3!&'!5%!5!&'!5'67!!!#5!#5'65!hP<<  -zvN M&O5_ -((*Q7NsZC:A%#C6CZs!++Q:mxx * '+#'6#!#5%35##35#53533#3!K$!x.F~KLHITM-Q C-f--=ss=AH < *.67!#!#5#'653&'#5!53!#35!( aM.NL'2!7I%PP"\$m_k^l +|+HJ?QB^lAbbArXB* *.2#'673##35#35%3#"/3265#5##3M !w.FMMVN B$ia$坝D(Q PMcx}}"U)D*.xx;} * 5H#'633#"/32657&''>767#5!#67&#67'675#5353K!x.FGYK53!#353#3K$!x.FKKqKKH.6=.'LCJԢM-Q :mm55wl9]گ46 6#'667!!53&'#5!5!5!53!!!#3!!!#5!5!M)/"7I0$%<&LN 8j&,N/#N;Q[afVAAUgAp=OO=pAhTA|== * :#'6375!=#'67#5!7!5!3!!#3#.''$7I$!x.F%G1$':O2uh)Z%,x38:P kA s8*'WsAAA')?s A=ClHJlE4 9 &8?#'6353!!&''67#5!6!5!##"/326!#3L'2!7I-O ,#[>K%L1[l%KK#J?QNP/+C K^@`P!A&C%.)BBU)AC; 2 "&*2#'673533#3!535#535335!5%!5!5!#!L'2!7IL||IKaaaM:#J?Q3dd????dll>g++C * #'!5!!5!#!!5!#!#5#'65!ccK5#MxNqK$3(5#'6##'63533#367!#&'@ ""}B</),+C< |31@5/KJ!!1G M@!G .]8g)b@G'XEG[vI& ǹ5 H .a2e*='C/X ?/D1PC1ZDݞVO@H\Z3 )-5#'6!5%!5!'5!>7!!3!#3675!!!#K()"6I&  IM K KMI4T VV8SA6 !+A=:YYA1 ; 6B#'6#5#3:>7#"&=#'>5##5!53!!!5!5!5!L'2!7IM3 F()(]*?w)inKO']-S#J?Qkl &'& 1v,;&`^^BBAA 6 h#'63&'#&'#:>7"#".=!5!5'67#5367#53&'73673673#3#&'#5!K$3(8KI".'8 M $H>;KPJxRahQ#c)E)(B L ,E)sFZ&OAK6DAE ,B;,, ' *+3 V/b:E;oA=1AO2DRVbY[MK:JA86Ai?=5U0Z$  * 2#'67!535#!5!'35#'>53!#!!3#5!#K$!x.FdyL/2=.'L:MLM-Q :mmd=pd9]ۮ4dCp55 1 *=#'635#5#!!5!5!5!5!5!53!!!!"/326=!#!3L'2!7IK1M2P/`b# ]NP!#J?Q@<CC>A:C]B A <#'6'6#673#!5#535#5!#3267"#"&5#M*28I2j"]e1BH +&#Z+s&N?T 9Y8@2n>>}AD 058@ 0T* )C#'6!&'5#!5#;5#3&'!5'6!#"/326=##5##5##M0(">I[TYU-s/tttODBcE@&F- tGtHsKN.Q+ATPNjF'0**3$Fh_J'B& 2 +#'6!5%!5!!!#5!5!5+353!!!#L"5(:GRR>N:MN1%BEE jj]?-= c>VE=Oo.@]K-C?U-\A@)BA * -#'6!5%!5%!5!'!!#5!#&'7#'67M*28ImmmM- MKm+e!&^![&N?T hhee:b?|@@AT=QL5/\@B9P 1 C#'6!&'346=#35#'67+!5#5'673&'#!#.'L'2!7I^VYY 7H*EKu.i9A 22&oCIKY'EYf"wbxD(Q @@17#3!#'>7+!!!#"/%3'67#K$3(?9'{;V&'ED.De!2 %0A35##3!5!3#3##5!535#5!5+5!#%#'6%3!5367#53678V[EPZ}R{M?K*+!7IxJ8  N XSHITT=TAnnAT=9N5T V??#0@0, ) 37;?C#'6!5!#5##5##'>=!!!#"/326=%5#!5#;5#5!K'!9K2@e@eFR:4,i05 @, e eee)H*X k1f9`ϙ<5?z=3'67&'7#5!53!#3#'$77'$SHf|KUqpL'2!7IP"ENxpipV N b 9QM[Jg $Ej +")+ =J?Qk;'B&V/RîE)%"+>NN>'$$)<'O>-`6e5x2>0) "1Q#'6!5+!5!#367!#5'6733#63:>7"#"&536K*,;J?LN 'N (MOvn8 I )!"c.MeP6] 9ek+!- #K+:A7ADaA:C!f )"*,)4.8u# 9 A#'6#36!5!!57&'#5!#'67!5!5#53533673!!&'7L'2!7I"M~~, NN@!!N>QrJA(%-p#J?Q>uinn9x++XGHgA?ff##uiA;)916 A#'635#67#7'67&''##35#53533#367!#&'J!!1Gj@ ""}B<)JnM`G&G .]8g)b@G C/X _'XEG[vI&LEE1ZDݞVO@H\Z 6$6!5!#5!!!#'6!53#5!#5!"/326=#5!#gL38CK$3(V?\\?V>Q?&767#'>7!#"/32>7#.'&'7'67&''67&K.)6F(~7C&B&J'998/4/K  !+ * "BB2@3 # 797/^C -&,P7"C1."1 09XH,GW 8:51CV[2SO+W4X yNM37lq898 #($ .%/d: ,']8+,@% HD3t[^ 9P;BI1JA('5VI/Cv 0 %GMS35#35!35'35##!%#'667%#".=323:>7'&'7?&,Kj2K.)6FA'D'I)989131K !" ( .LS+XyBC2A1K;BW4X vhq675 #($ )"4O>3A * -39#'6#!%35'35'35#33#"/326567?&K!x.FxIZYH_K(6B(:>fG':B$G&GAH&D0Q{?DcAd?*6)(5A&G6T&$=45+u$=45+Q s } x } E:@FLRX67#3#"/32>7!'#'667#53&'7367!367!677&'77&'77&'7 lK10$jN-CSL'2!7I0^s!C$> I MQ/,C) A \>V; H+D/3 B wtTH!J?QxCI(CFOI KD5 Q(6Czwn~ o$]i nX/KING F #'+W#'66767#&'32635#35!35'35#7#".5#'67+367!#67&K'2!7ILkkGP*(;  3/*04)< ' VI Lap6.J?QQk   vzzzz5!'>7#5!K*+"6I($K%rNv#KN$vf11;{f881`o$N5T mDDH@>\?IAPPAH@\!\?.}}-AIGV81h? *7;Q67#7#'67&''#'66733533#3##5#537353!!&'#'67#5!* ;*)}P@<+,K'!9K,1E MTTeeM_HWN@h$wNw$p8FQ"'B|26/_7(#/$H*X utf UUA@qq@`@iW=` _=Nr@#4 2?L3!!#5!5!&''6'67&''673&'&'&''6'67&'L_P_D UE%EV@a+t$o$B`Gc va,co){D UE%EV@a+t$o$Fva,co)AA &'*495*P65[i9Lj Jgo>nn> 7&)9L6P52 &'*495*P65[i9Lj 1 9L6P52 2 .9O#'6#3735'5#;5#3##5##5#5353353'>=!!26=##5##!#"/K'!9KxHvMKKM-Z6&HI):#;@H*X m[[[[8XXX[@NNNN@VVV4;[> A\F!A5  Y#'667#753533'67767&'7673#&''67&''>7.'&''67&I$!s,FK5 N9S(B+G,51%?-)?3-3D 'T3_#b5Ao$s>27 &0N5-6BRv(rK;8:P g*CnnC,k|815Y_W< NY N:DdN;O[]M>LevN.2!niXI9KLU?W? *+/37C3#3#!!#'#'6673673#5#5##33!533533N)6K*+"6I0p9N L LJJL=9Z9ZA0@9:N5T v玢&)(8('?ZZZZZ9Zą F PTX`#'6#3735'5#;5#'!'>5!53!!33##3#"/326=##5##35#53735#35'!!5#53J" 1G|HI &@"1N1118WF HHK  G,X 77775888hb=aƩ7TT=1i@j/7#'67#535#535#53533#I$!s,FD9 ֚I)D (R0b([8;g-n:7&2RM \5pdL8:P Z , Cg FBD֛UP7#'>7#'67K*+"6I||y7G  6K""N 0?/M?(6'Q.F)j1P*D0qQM'v_ N5T 6604M '?0<<?[pM,/'C?'0 d4F'2;d * !%+1K#'6!5%!5!'5!#3!#3675!67%7&%267#"&5367K!x.Fpy I H,M&xW&`+! B L$G>I1\\ @/Q ZZ:WAA;"8]]7J3P99=L7N~8KQI6V7f3~F 6 ")d#'65#5#!35#735#535!#367#%5367+5!5+5#535;53;3#+!#!!#&''67&''67J" 3GU U5!"RLL99LPL<f99f>c) =J58;@(IA, 39 / D35#35#5#%#'6!!5!5!5!5!5!5+535#53533533#3+!!!! ”>K*+"6I6F4 IKKIBT||||N5T xBBJ:D>?TAXXXXAT?>D:#4>!&''673&'!5#3%#3'67+!#67+!#&''&'Af_TT`qD(5DKVy ZQ}+6JVl/b{7\'0G]Ann>3Q44Qb9d*&G`k.Mh5aLaL32XL[ * $k355#!5#;5#&'#!5!#'6".='67#5367+535#5!#3!!#&'!3:>7"({t4{uu+ >K),"3I6CA" /-jOF϶Oo?;w5/(: M (A699iiiii%#IaxP:T  B2I:9AA9 (:G4B(&) & $+ * !,i#3735'5#;5#67>7#5#3#3##'6732>=#'>7'675#535+35#535'67336533#"UUIWUWW?L),]I !w.F 8 f <;=]SSDABǜOLSH,PGGGG0GGGQ 'W":=<D(Q =X;/;%3z4n?NL6K*P@sH@J=W_DA) 8JP#'6&'#35#35#5367#' %!#&'!#5'67#!#"/326=!#5!!K'!9Jp   pwU {|g HHHDOViJB]X  GMH*X  L~J>"?0A $ >[/=1sq1"@7W{vU)B)/ U#'667#5!6=!5!5!53&'#53&'73533533673#3!!!!!.''>7K'!9J" 7վc>!;DXE:&Aa"7"sw-/|u#H*X CFT5= :;I>=YRD-X  JJC%)CZZD LRX#'6&'#!5!!5"/326=#5'67&'767#5!67!!67&'#%67%7&K'!9JH+/H)BBfA)' ?9^L8:7382#M <$35.>3@G]D/!qU/X*ta+\H*X T^^TORR}B !4 H3J?9+1?;CA.% #&AI;6@!E@F4H)'ޕAU7]/c>8EX6R* KQW]c#'6!67!67! 7&'!&'7&'33#"/32>7!'6'6'67&'77&'77&'7J" 3G n 8+JFIM(+=C4; N R-+$\B,>?h6T<";S8L 6 I!3D-X :6%:!AC#0.=07<>5$SX($HO7eP6] ?'3@KK@4&?iGFh++ FCm?1)@KK@*0?4B*A@L?,@>ii 9 =_#'63!535#535!3#67'675#535#5!5#5353!#!#3#267#".=#'>7#5!#L$3(;J1{|ssssK07Hggx$N){ii<J')&/1'lmm DAF ;;S9DD9Y 9; c9D=O75#!'67#'67367#53533#3#265!K*,;Jw651#sMwM"-s,< < =C IYYi-!- Qs "K&*h6 = =<Jop^ nwP6] 4eN& ywJR++ 3O~ I_ -(?;;?*+>X ;,<oqP0@Q AS *+?;;?/&>]Wii < %)-15G#'667!#!#!!!!5!5!5!5735+3=#3735%53&'#5!53!#3L$3(;J"I5 0S/ NNjNiDAF Z4958x!6>:AA:>68???q====c=85?XX?<1=* #'+/48<@#'635#35%35#35##5!35#35%35#35##5!5!5!5!J$x.GMMN9MbyJ6M-X J0]//-0/b4a55-45gAA@@tAA * #':>BF#'6%35#535#5!#3%5#!5#;5##!#&'7#'67'!5%!5%!5!K),"3I3{F϶At4{uuOD؞poadn[[[1xP:T 2777??76TTTTT^4?8?481E08.@h//_//0/6 (,J#'667#%35##5'6!#3#5'35#%#53&'#53533#3#3##5#53I$!s,FX l A3PFm0M% _M8:P xpqwW-?^M: &Dv/>XCusAddApxCCC= /u{#'667#!!5!5!5!5!53&'73673!!!33#3267#"&''67&'#67#"/326='675#535'673&?&J" 1GC%h<4<ۡKLI O--P$  ;LF bxr\RC KS7$F:!m$a4J5 G? z/>B/? G,X .5;`??B;?A)5*& 'A?;J@A#B7*6-,4?06PC > O.=2 @MA6< < ?K%,,;.;>37S#3'353#3#3!5'#'6673673#35#5##!35!#"/326=##qM,4K'!9J4r@LJSxK sA]X z,@@@@5@5@<4/:H*X {r 2 (5 -%@@QNV(B*9 4 "'4X\#'65#;5#!3=#37#373567#3533533!#!!#.'#67'675#'6=!5!L&'"7IxxxxxxxxHxi?9#^KxKHZ6*A@FUs,V\U"OW;=DD0Q|AAAAAo??????(56AAAA^h<;)(AY A#C`0x88 < *0JV\#'667!!5%!5!'53&'#5!53!#367%#"'.=3327>'&'7+!!&'7J" 3G$r$e$P/}#E(>'JE%I)FA-=L .(%0*-EU&OTO<1G=GD-X F); DAA5;^@+9AXXA+9@NdjU c/&HgV/2?7)"7 c_"c 4 !%I#'6!5'673&'&'#3%#3'67+!#67+!#&''&'L'2!7IShTh_S:>N/C,+&Ic L=j!#Fj ZZ/JX,H&3:C9#J?Q#22AIB:>>9f(&KZm0!Bj2YDWG0/ZCZ* "&*.R#'6%!#5##5##5!5!5!!5353753535##5##5##367!5!!!#"/326J$x.G;KII9xxJxIxK  E1=,M-X ܣգ8AA44b44b44b44@#??2A @ '3;[#'635#!!5!5!5!53!'67!5!!5!5!5!##5##&'7326=#535!5!#3##"/J" 3Gl,S0.@uN/_FG(773(@B==0<D-X lO1441:77:!'%888T771331 -E@$9@ "V81::18m6"4K `o#'6!5!%'>75#5367#.'#"/32>7#'67#53&'7#5!53!!67&'67'6=3!53#5!J" 1Gh #C7#( 7,&5 I;%dE ,$P1/y_ * _#p+T3BdOPPZ G,X _-0+%8J27 QS. 6=6P(8@9 ?XX?" $: G;Q 2! .c-)Ex , ,48<@DH#'635#5#3#'#3!#!#3675!3!535#!5#;5##35!J$x.Gw]] *9bJavbI#F2N<)iiii]]M-X JMMHCQE>M<2=Jh| %AAJCC ; :OU[#'635'355#!5#;5#5353!3#!!!5!5#535!5!5!&'73!53='6&'7&'7J$x.Gq%qqq`NTTJ&B,?*8J/7;;HHl?e199141?1VJTHX[??%"M>9LH=8MF@2 04M#'635#5#;5#!5!3#3!#535#5353353#3'67&'767!'67##5!#J" 3GݩuvvNԴIKKvvwZ:9PQR4Wt+aKJD-X ?]]]2????AAA]A3< ,-71IG26Lgs <$(-@DHL673#5!#5#'63&'7353!5!#5!#!#&'7#'67'!5%!5%!5!A KKK)+ 5I @cM3K>MU~[ tb]WEEE7+8ϓ`CK5W %"-$8eeAqhs.3:B4%F0=#3q77g7707*  $(26:DHLPT#'635#35#!#!'#3=##3#3';#5##35#35%;#5##35#3575##3J" 3GrK&M@@@@CIJCAAA8CIICAAA~AAAAD-X TZ`ZTTw r;++Űrww;++Űrww7rr7w* |#'667!!5%!5%!5!'5!!!3#&'#"&#!&''67&'7#'67.=33:>775!&'7#67'67#53537J" 3GvR9<hhh}I85,5 6:</ b:_xE2%KZ{\ FP& @&&11 >R4(M-8JD-X &&x((N((''U== '&D? 44.%A>;@# &.!;+AR> ,U0!V  O>*' 9 "&*.S#'65###!#3635#355!5!5!3#3#5##'!5!67#535#53533I" ~1HF'4S->o=,Gz!2IG,fQppKl G,X ?,+Ą@sinnAAACC??dtlA-5@++ZE@4F`A?ff ) "&x#'63535#5#!5#;5#5!35!"&=#3#67'675#'6=!5#5##5##5!35!#5##5##!#3#673267H #1E,Lʂ&D(J\*ΣIc#;K IxxMLLRGEA>H%~1F0HxGEEA?D ]CSZRRRRdF*DH1Va>;!z(ԕؙ@X0NNN< ;/*gUIB5X &LLLL>g* M8IG Q4B?@A95/; "KlK"m90D/< I }#H$'BA@*Kf((,'fff0$#,fee7+8||`CK5W %"-$8--|::$5""5$=MNBTB OI PFHO=QO? ) #'Sl#5!3#5!35'35#675#%67#75#!5#3##5'67#'#'6>=!!35#5!#'673#&''67&'^K.{H.zzzz.Lz$ s# )J{x6*L5H #1E4!{ih6;?&6,T#U05\#`.(fa8829+8N oBBBB:rR<79I5W N<599*r )<_:0=2<>083=Kn); +3'>5".5332>745"Px|/mf+,+PA  K +#@?:ѱ !)->PD9;M"/;/"#".5#'>=#5!#32>74nK +#+,+x|/mfHA  9;M"/ !x@?:ѱFF->PD?<<7&''676767&'>53%3327>7#"'.p:w;,$oV)d_LS^?O=N !K($?",.7)( F FPC/Ũ" -?:09: 8,5!"#".5#'>7#5!!326M ,$!??) (sN!$OEE;46H+#$I?AEE ;/&*#!#3267"#".5#'>7'!!N$'TJ 4)*YH&goj ;AAO& &0E??7A?6F>7#"'.5'>7'6767!5!53!!67&'7&'32 K($?#OM lq3B1P 3;޼:=>p<&-\. !->;09: *u 0C,CwBccBmBA&*05  66<B7&3'>7'6727>7#"'.53677&V<\K;HN*{ u|(H 2+7%?N hX>]gM)z*o.nt+mqCB8L9I>O*#& 5:6-Y17`%^k?MW7#3!3#326767&''67&sJ -%!YH(MXM$'T2ehO2C0VH\4j>o+ufb46H+&0 8?0~p. ;~75INS!XT6N6Z.\8;1TC2->67353!!!!3:>7#"&5#'>7!5!5#_e.G P@%$  H +)#|? (5퉭+;BE /$"3;= $J9]C&EXI8'+17%"#".5#'>7!5!3!!326&'%'67fM ,$!>>( '{P#+ObOFBHL8]AX946H+#$HA?8CmC ;q!n{}#u01?!5!"#".=#'>7+!5!5!53!!!#3:>~J 2*)7!5!&'#3267"#".=#'>7+'67!&'!5$b$I9$'UJ .#"YH  `N@B$b=2LBA2B lC/5 1-0=% &0ረ$Bn/:(Ci+OJ@HC)A H#3735'!36'67!!#2327>7#"&#.5#'>7##K#-:%"TJ T(<' )$K%$$(/B%oM# 944D#?49 )967#".=#'>7##!5#' %!+T;L/b$#  M121.4.{ KO> OK3J5cYE=*  #$121 +A'}2n]A-? b=?5 7;#!%!5%!5!'>733:>7#".5%3K*!pp=I N$# M .*&,4-5M,"ԕ=@(A$zs +!$-26 0+6%"#".5#'>7#673#!5#535!5!#326sJ .#"XI&ȧuGXVT-0>%  &.4?-6C/t>>A7 1)A 'FL67!65#)5#%'67!!!'$7##3:>7"#".=&'7:3#-2"TJ T(<'d]M#\! K 3,*<=1?D4D@L4994Qd\D#?49QAH? ,!% //9 B:/:C/6@D673#5!#53&'7353#!#3267"#".=#'>7'!5!%#CL@L%E)#PND$'UJ .#"YH  DX:H<345<@R& 1-0=% &0؅#Bj@G<$+I35'35#3#673673!##53#53'>7373:>7#".=~}`p t O KH}} K  %$ M3127;.充?| B:82)9>%qBNBA'g  .'/;=:  1=_35#35#"'.5#'>7+35#53533#3#327>7#67'675#'67+35#53533#UN"  4 ,:ww&icKLp LN9? 92G+ KLQEHE)490p(fCPPCf,JPqة"?O,Bn6](fCPPCf9!5!&''65bЧ).7)F]V<>D<\#,!5!5!5!5!5!!!!!&''67'S'""7CAAAA ~AA~A.?#!5!5!!!#"/3265!#'>=#53&''>=#53&'Msfs&K:Vd%! J"3ES2*#<#/:!3ES2*#<#/iDDiP(D%AHA!< A0XB-kh0A!< A0XB-kg/&,2<F!&''67#5!&'!5#!#"/3265#7&7&767&767&5~Yffstm@mMIZA" "JU#NP"JU#NQ5J1LU1K5oQ5J1LU1K5~/DD?EbAb?-8..8G6U%A 'a5&;465&;46cz yz y&!!'3tG)F>G=w'Cj' T+ '677&7&''6766%&l5iFi53DhD6e1aJLJU:8О8_7 D!`I- !!5!5'67&SOFN6EhJi-FFy& #,&'!!#"/32>7!'67#5'67!&'!5a'A;>"16R{W >)LW/f:G'b=9LX- DexPQ:=4B{(l[X`D2#$!7#3!53#5353!5367%7&\0|ܭN0Nvp68X14{FBBEEB^c0A-5k5|2#!%!!3!5352$7!#67%7&|Pgliu+%,EED& E<OCOj7sN<[fU7\AVF>GUABYYYYB>< "!5!!5!#!!!5!!&'7#'67NN=pƱ%!trehb@@DP>TJ4-]AB:O &4 '-3%5#;5#!3=#37#3735!533533533367%7&Fꥥ+ꤤFdFFFF{o*v%乹ꪪBllllD\6gE:OX>Z(B I35#53535#535#35&'###5'67#535!5!5#535!5!&'73673!33##!hIIh!h+# F%HRRhe__eO__@bq+qb@bv"".AOAv 6- 6Dfj5##3735#35!5!!535#535+5!#3#3!&'7#'63#5'675!5!".=3673:>7!5!LUỻKN~$xFNN 5=4P "`$$ G42N00-0]0]00-744--4471<;@71+J.;*%+>1>`/:4" #"" d4_%!#!#"/326;rN*'Q *>W/V)DZ7#3!#"/3265!&''>7!#!Nt)T,>K+ Nr7o|V(D+?A>l,VbCB?d!!!%!#"/3265!#L. )T,|N""ENV)D+ q!7 -!!=!35'35#%!3##"/326=!##53!53 IU^^&Rxu'L^^EPӌ==E\CP%D%8Co )-33########53!3##"/3265#~hJJMSSSS3U> ##yyiChCT+D+T#  A3#3#535!35!3##"/3265#'>7##"/3265#'>7UT_TLL;fW ),@&$^8fW ),C&$''EhhEV(D+'R4MV(D,'R4M$)-13=#37!3##"/326=!##53!5!5!!!5!!KOff'Txs*Mff:\muAP%C%AuW??uuU )1%#!%!5!%#"&=#'>5##!#"/3265#327kIL^L,v]&pJM>&Od-*9DFA<:w"=9:1goW/V)C*&b6 *.2!!7!5%5!)5!5!!#!53!#!#"/326%5!5!Pkj+OjPP(R,eZ1% ,EEEE8FFF?=M/pB?8888a  !5%!5!!5!!5!#!#5!!#5!vv7PP_&(NRKK6KGH+"+1HH!- EIMQ%5!%35'35#3533#3#3!!3##"/326=!#5#53!5!535#535#535335#35!!NмcPhh'Txs*Lhh;x뼼NMMMMM7M88;;7;<4>3P%A%3>4<;7;;8;r;;M- Y67!!5!#365!#!%5!'>7##5'67#5!!!!!3:>47"#".=#5'%5 YN d,T&1M!$)\Y,~P 0 d& H 5-,:>0'4h ;;$__,v447#".5#'>=JfJRM J+/*27,}*j# 2?5CMC !WJ>B+175!>7!'67##5!#5!!!!3##"/32>7+ MOD+zI>I ,/+X[C[ . ٜӒP@=;CO[. C"<0! 5KQ#5!#5!!!+".5#'>7#5!#;:>##"/3265!5!537&5DKR,MIIHsh]aNO.B@mU54''$7&'&''67&'767&''67#5!#67&'##"'HXL@LO3 !AT =(H[MH<"UG$o|7PP5Qc[1"!"PZ.9)q⡥ 38)%b@`.(5,(#8!=$&*)7' C67!!!3:>7"#".=#'>7##5&'7+3%$/ iJLJ!^*J<#3Z$$ K 3+*:=0]*L,AI2>L"1/$AWOeטD8Q">(+ (#)+*4IB!za7 ;62-E0"(!5%!5!'!#5!#!5+!!!!67%7&88RI@IOfxs){#aa:ZݜChCC>W9b=7#5!535335!!!5#5!##3&''67&'767!#;:>sMIIHsh]aNO.B@mMR,5DB(C3%1#7V$uQO\-Ob4!U850J7!'67#673#!5#535#5!!!#"/7&'7I@IR)D 2D4 Dw#@N5$$YUsu{avƾo'N==8dq&>$+pcgwSo[h>nWW\\9$@9_6(=@8QQ8J< 4>$5UQ:" [!5%!5!7!5!!535#&'#%5!67+35#535##5!#5#3#3!!#&'#/326=##5##5'67Q.,)['OyyCLCyya/7$MrK!" PK&D]::07.f..->%!==:.8..8.:<,CD9=KC-; 7&$7++07DWhAi:0>#)&''67!$''6767!7&7$cXN[ hN`؂Y~$Z? $(>UF6B}( A`KDCL^bJEArOv']@0J=DD"W@O$' &1&'7'67367&#"/326%'>7#5!AX:VD >k?e?L)[I;Tj]{5c"@%s_# 1P gk+doŜ)eZ]y&et9vT+D?R|DD* (67!&'7'675!67!'#5!!!3  E[@й0@w  jh)doã&*/ -35#&'7'67333!.''$7!5!=#535E[7'!!&'767M714H %=^.p/sEdOZ;]NyOEP~up# ;+/ !CKC<M9X26IOU#3=#67#%5367#5!5!5!5!5!5!5!53!!!3#!!#&''67&''677&675N/'ZD:RDGG1O}"MN!;F8>J9?=HR4E2XC~AAc4B#%\<$8C;A75>CC>5x;{k?e?*-f--=ss=AHgk+doŜ)*= +175#5##3673#3#3#3!#'67&'7'67#IоM(52EK jh)doƛ(SAYYA=+d)q%* 7=%35#%&'7'67!#"/3265#3#3!535#535#'>5#!#E[7#5!5#5!53!!!#267#"&=#'67&''>7!&'{jAAAX:VD?e?D>e$`i#O #jE(()`)aTA<<+JHuFsj8LGggk+do)<L:>`b<%$$ )z=A<5A.8$~5"<]J4"A)HP$1 /5;35#35#!#3=#+!5!5!53!!!+&'#'6&'7'67muI6O(Kk pOlAX:VD >k?e?^cc^^o??YY??[Bc nBhgk+doŜ)43 5;A5#5##3673#3#3#3!!!#5!5!5#'67%7&67t KssPil,m3Hy0_B2JalC>GkFQQRR%@  C!5!#5!%35#&'7'675!53!'67#5!5#' 7!#!#!#&'#5-J^AW;VD@o?j@:9P0M$k,q8Ki {'d"iMtЩ)-hi(doƛ&;AA;=>L9?:%?3 E9O;=Gc] J}&'7'67535#'67.53673:>7+3#3#&''676#53&'767!5!3'67#3#;#"&'=4>=D!%A@@$QC=7 JmA!! D0/0* u>82B>z*IE4ND536<4BS|!<Z/N,*y('r$}&~An4&%Pfd5;8C  -,-@nA HK1*Ru8;E]fX&lD\G+5=BMAAj\DC7,2A C=!32>7#"&563;#"&''67&'J *`:B57// ? < ;a G q?ϨΫHO|'zN2$%H>\C::# *KQFLD#A5B`QDRcrT;Uz_NA6327#".5!'>5#"/3265####3533\  <   *4=.$]/!4'{IuHIIhu#OoP2JƿdU)D)WS.kk27'67#53533#&'#327#".5!'>5)TKT)WKV  <   *4=.$KCCKY]Ihu#OoP2Jƿd,327#".5!'>5333#3!533\  <   *4=.$M^IIhu#NpP2JƿdCCC&%"-D%32>7#".=#'>=!67#%!!!535!5!5'$7!L J*/)RE&pwTF&AM=8r U7h  %+&3<3 #h$BfUS"^AA-g<h/C!5%!5!%327#".5!3!#367!'>53!535#535#5!#3#M..  <    I *4=.$ҴEE7AIhu#Np$"3)P2Jƿd >>N9I;;I9#1 ;GK7!5!67#6#'67'67&'#5!#67>=!3276745#"&53!5335335!#..B /K/1E!, BN<ICJoKpkg?@BT>.'A#A IZ=/;E0%  ]!F뼼??] 3#5!#3!@NNlOO77R)S767&''67&%3#5!#3!/nFEJuiz7rg4MMUMMq9U|d3co7qv77R(P #3!3#5##!PP7979XZ7!#!#73!#5!#ĬEPlP5xDw77Hg-3333!!3#5!#3!!PMMMMMWj??cDA*07=C'67!5!!3#"/3276?#'!3#5!#7&'67677&If  (^H) \KK\KU7QF:E'*V2(=hI4Go;3mT6UkBBE8  = Q iy660-Pb)d9Li/3hFT.WIN0Qg-hH %)@!3#5!#"/+33265367!5!'#'67&'767#53&'HK>Ku<YA mT="C.7=)$55<%A14P&c669c &*1A?R+EZnUKPg??dH+>3BFep'>7#5!#"'532>=;th5]h8,/&Ur}=**R;IFrӚW2 J @Y"%33#"/326"NP(P){u#(x}FU*Hep+767!5!#"'532>5!&''>7&(V\  *) UrpC  [y1hK q5oxf@*:`FpG# J Gp>c=W5Q;MDX-6!%!&'#"/3267&''>7&'767! @BB8 ()!UrpD$* !n3kwsR=!'>7#5'67!&'7&'#"W?"#0z}645iFKuJuKFi567>D*7#5!#"'532>=#"&5'73%3267=~q7ju;:*.$A[b, # T*-*_+_gK2CR3LE_ܡZ4 H vIFLE"MD7D9& 5!%%3"/32653767&''67&]K1UO* M$3v`;ML]d9XQe8af{sD*T*7]` e4|]7l4!%33#"/3265#5!#3###53QKM&Lvn"N{sT*G*DDDCD4!,%33#"/3265536='673#'>7QKM&Lvn"\[!RYai7\V{sT*G*/DCUGD$W=&^SEDK;?3;%33#"/3265'>7!#"/326'67#'>7#HvK%J2OL.! 0>cGI L[S5#Ê2%L%Z2U#KA{sT*G*@4Io :a6 FLl2l]ԗN1I눥4#13###'>7#536=#5!#3#33#"/3265K @A9:8 svn^^^JM&J-UO) fqG:=B0rfBBBsT*G) 2 23#33#"/3265535333#&''67#53=?4KL%J,UO) O7#5!#3'67&dKM&J-UO) +BN* Hp2Lq դ,bP{sT*G)%:+;apv7StBB<@?L9U='<'>7#5!#"'532>5367&'#'67!5353@~p9ju;#*.$A[b-+(+: 7)8/=0 4?=K9HTKR3LE_ܡZ4 H CIFqV"BL!WI9 /PDqb9.MF0'1%33#"/3265&'%'67##5#535#5333#dKM&J-UO) -<0D?,,@A?*CMM{sT*G)wuWonDDBgB#1%33#"/32655!2>5#'6+!#!#"/]KM&J-UO) e {2K%)@SN{sT*G)״':^2&BǶ7G(#@'6767#535#53533#3#67&'7&'#"/326# '6#5%% 7/N)2gp#C42D 7fT1FTBQ> EDBssBD4C B6BCv/?sT*G):)<%33#"/32657&''6767#5!!67&#67'675#5353KK&J+UO* 4;aM>!>.!)ivyrpuL{sT*G)8 "57,C{fCCkm +AACC Ass38<J&'#'67#5367!#&'!55!!!#"/32>7!'6733#"/3265=')D!IN G!G=:\0uq -1I^X? K, KL%J,UO) IYTN@UA+"0AN@)C++=AAJ x(CEOG4vsT*G)/'B%33#"/3265#3#"/326=####35#535#'673533#3H~K%J,UO+ 0 K:KGxF6G gK{sT*G*jI#D #h^jAs22h2*xx@s%)-;'6!#3#"/326=####35'!5!33#"/3265;3K̥&>" _K\E 6KL%J,UO)  {?0lS,D+WsT*G)-6 O3&'#!&''67#5!67!53&'73673673!3#&/#"/32>5#'>7#5#VQ/31-E@NxY+ޒ++D8-Z# N 4)F5(UtE@;@*nb,#!H#u 6=Dq:,-92&G;\B9:CK@RR_fd]OV8WC<7B[F1DLr*EKag1OVKD{sU)G*?1I0/:)AAD%CD(1901U:xDrrDe1n`-r1?%33#"/3265#3#"/326=#&'#'675##35#53533H~K%J,UO+ +<.X(XOO'R{IO{sT*G*^XT+A*zwf=Seod>vJXAYY51.<%33#"/3265767#53533#67'67&6$7&'JK%J,UO+ -;8&O:A2b=BJpdoeQ?C]bI:F`{sT*G*46HBCkkCkN4ay#8B,QtF3Ή'sXHf0fIu87 O35#5#33#"/3265'67#'6735#53&'73673#3#"/32>5##5^Kw KL%J,UO) $XK }Ip I{ &> 2 KU}-PsT*G){Cq,A245CC5A)}UjS)D ,UN{*)3B%33#"/32655!&'67&'67&'67'675#5!#67K}M&J+UO) )H2E8OQ1E/mH2E9MN3E/nH2E8OQ1E/ \ڑ^{sT*G*AA[fqd`aXU[fta]dXU[fqd`aX`CAAB?+ "(.7#!%!5%!5%!5!33#"/326567?&K   IL%J.UO(!n::Ck4fF7Hj{{zz7+35#53533#3#3267Ix3VQ. K; 2 Q:'XAYYAXmX=Ucnf>o>zsT*G*5B)-;35'35#'5!&'7367!!#"/326=##%33#"/3265 I$!"KJU@ LKL&K,UO* L||=wA;.:B8C92ADU%D,[ܰ7T*G)= 2Y35#6#%&'7#53673#3###'>7#5365'>7&'765#5!&'#"/3267&'|zK`.,G.*[P7(J!4a>aaK/2=,(WZ_8GST98)8  ' $;aP4eNXWS;PM3OٳW@CRkE\^O[EDaJ3BvDV=0E~_y.[LClD :H" F 4R0Gq D!5!!5!33#"/3265"/326=#'>7#'67#'67+!!!JJK}M&J,UO( /P<, #W1L'N(D2VV-82l@-Ok0s[`CsT*G)A~_;04VD20\|6+2Oqq)(-Μ0< #'567!#!#553&'#53533#35!%33#"/3265$FLKS@P@#H~K%J,UO+ ]mcg +|+BuUAbbApZB`sT*G*C#C%33#"/3265"/3265!#!#353#5##33#53&'73673H_KY{sT*F+xC &WD*/dtA]MnP\f`Q,)#'5;AGM!67>7!67!3##"/3265#533#"/3265%&'767%'677& :+!M K(e%FNH CKL%J,UO) 18R/RoU Yq~,L>0A+b`.Zg;/ >3AX/A/5AsT*G)-AD/F;M;S@18M+Rr7=]7Z9 !37E3##3533!&''67#536!5!##"/326733#"/3265JJ1M"}J0FGB#C.QK( K}M&J,UO( %C;<P3'CF^@^K{%@*C*))BBU)AssT*G)  E!&'5#;5#33#"/3265&''>7+35#5'673&'#3#5SOI׌KL%J,UO) 1b%^kIՍ24tWt(e>MOtsT*G)>5pXGu"D%wJ E!% IX{kPB%E\+< #E67!!5&'!5!33#"/326533#&'#5!'6='67&'7#53FT2=' OC9?K}L%J,UO) L7>^c*KB=Z *WKB,c'4CD5$ v5[sT*G)]AZA/!A 8uO/jz D#)2E%A,#)E%33#"/3265%&'767%'677&5!7!5!3##"/3265#5!7xKL%J,UO) 18R/OoU Yq~,L>0A+b`.ZN ]%FNH v {sT*G),AD/C;M;S@08M*R{7=]7Z=_AAX/A/NAc#0>W%33#"/3265'67#535'$73#&'#5/675#5353#5"&5367267H~K%J,UO+ &UpY TY(SMO 8hzA@K ?-AR@fV=NVa=\7!'67!5!&'7367!#!#"/26=#7&7&373#"/326S:'72HmY'$Y!S#D%"FLESB6 SO`BSO`=KM"G1SI-" bmBCCIB?6~A33+0- -AfrP#9 $G44Z44U'> C  $(6!5!#5!35#35!35'35##!#55!33#"/3265'LMKC3K}M&J+UO) whllll:h,K,AAsT*G* JN5#'#33533#"/3265$73#3#3#&'#5'67#535#535#535#3dM````oH~K%J,UO+ $ [y8FF5W(ZMO&U7KK\p9q?l9K zl!  9_!&'5#;5#6#&''67+35#5'673.'#3#'>7&'765#5!&'#"/3267&'K><mmmgIY/9IHhGs"6waRYZOq6AJD49%%  & ("2kW.]MOeAIMs?S31.6NBBDL E"'IV}bDA'EA0FTs,U8lC^ DMN F 5S.Ls2<!=A3535##!#5733#"/32653!535#535#5#53533##3#5!mw2MMJ{K%I,UO(  7!5!67#>%33#"/3265!53353355!'67&'#5!#66 EK}M&J,UO( IK;)  e+:9\fFIe9 XsT*G)ؼ??{?4A MZ>D  CG3&'!5%!5!33#"/32653&'!5!!!#5!#5'>='65!5<'v42KM&J,UO( Xf:"07{KJ/6,'(F"/'*C6AsT*G)N@?"'&2++kN6MÏ JTj ' -1CIO35#535#5!#3%5#35#;5#3"/26535!26=#5!##"/'67&'7"TI$UTTTHg#\S2 K &60@?0^96;AL7HDAAAAAA;nnnnn0sF+T*z>>??:@!3Gd,hIcM.Ke ) !+5?Z3=#;5##333#"/326567&767&767&3#&'#5'67#535+!#҇H~K%J,UO+ E.F)8;+D1oB0F)8;+D3qE.F(:=*E3|W"^NX$RM<=3533#!#".=!#67&'#"'%ڟ DW!YYIK%I,UO( V  ^^ U{N =RaC9;M #434,++Y(@55=GJcX?3"N$-:6;FsT*G)A6K638M?+1*9"/'<`ֱ7:2>5+  ':7 )/*;&B.M6>5A I/74R35#35##5'6=!!!67#!#"/32>7!'67!#53&'#53533#3#3##5#53D$3IYD#:'72HmY'$Y!SWtGN2oNyilM?7y!-B86DbmBCCIB?6~e?K/>==>D6?P>ii>&-As&'33#"/32652>7#'&''676767&'767#5!"/'>7&'7675#535#5'673&'#3#>767>OE4EHiK).+,sT*F+VUQ @&? 0=*!EK[Iu?&>,<*>26/J!60-*4+r,*7-JUwcRA90@>2sT*G*7f2Cbl.Bc*NZK^bp7!5%!53#5!'6=37'675#5367#'#"/32>7#'67#53&'7#5!53!#67&'6733#"/3265_\LL=EWN >2'2)!/lN ;) P+ kR. Rh!AHiK<"WN )$_@)EvI-c0&:H45OQ. 7 ;2R@@|;?XX?#; H@Q 0 sT*F+%#)7;?Qc3&''6#5!#"/32>5# /67&'#5'67#37#3'67+3#&''67+3#&'@/2A6bN2kW- gVY?+ A W]&;?wa%IIII/\!B1 0)4 !%/Y!>* 4'4!!#;7@0j32CخsT- F K`FA0*:-IV}7d-&8C.6*SA7b1'9=.4(P % !3l6#%3&'7&'#5'67#37#3'67+3#&''67#3&'765#5!&'#"/3267&''>7&'#&'HZ ;3.UYZ19Bwa&IIII/^A6 )!3$/Y7 :%/  % ""2kW.\MOA7@L<.N +%3%%cO26<;lbDA'0*70IV}7h,2:.'&VE7e &TFzCmD MN F 5S.JrE0F}IX%)2<-1V`p5"3!#"'532>7!'>7!5!6P,/%UrpE % 5[mE 5TK]4 J #st;FߣFb((3%'67#5!#673!#"/32>5#'>7#536`=wUEL-%% >xv/  Dtb9ZiC C,ECC32xSטS. F >rÍF7>ӡCf6 -%3#%#5##'32>=# '>7#536533#"{MKP6 OX:LH M #%!6HQD??I ?#r:eFb>7!'$7!5!673!#"/3#"/326567&'7$7'$k" `EMG (/'bmxP%Rnf% \|BDK"Xq@m[T+`gc?V?4A?6`zR'A%[*D1pn t'd6i&( ;35'35#675#>7'67!2>5#'>7#536533#"/gY & .Re  ]bC]X M "!5fbѬ>gAQ0B 8rŕn'eC\oO|ӝN. F .4&CZ67#2>7!'>7!5!67!#"/&''67&''67#53673?67!5!&''67&EDS'$) %LOh (/'H&KnX8: 3>'s GM$e=5MS.4cYkwjE`$Q@MIX83 `gr,B'oY?-' `zR'A<1`0@+G/KTA*-1AjX$XGJeAAZE/>2T2&< ,H(F'6767#535#53533#3#67&'7>7#536533#"/32>5#'67&'%% 7/N)2mj%D4135 twK  7fa$ `c>."A EDBssBD1>PpTC6zy7ݡT1 F ?j,36d 3&G%5#/67!#"/326!3+#%5#'67#536533#"/32>sj+f)M 6]mhFHqL  IL>FD dgI%&.XI* J /;`5 FN.-E&2l(c BnFFnF H :!($<C#35#'67#536533#"/32>%'>7#5!#"/32>5#!#!3̘ IJ>DC dgI%&.XI* /C[ *,8ND( jCMJK2m(c BnFFnF H :C;'aB6B#levN2( H5#'>7#536533#"/32>%'>5!!!#3#"/32>7#'>5d LM9ED hkI%&.XI* 6N=%d+-&E> 898@0j3_C\on]/ H :`5j֧(BmA,H< B$V.eN88%2>7!'>7!5!=3!#"/!#53&'73&'73673#'$,!'Py R=FVIOFVfLJR-6U3&'#36733&''67#5!67#5'67367!&'7&'#!#&'#"/32>5#'67#5HL6F N >8^&6E8PB'6 N 5#'>7#536533#"'53!535367?67&'7&'&''67& ch8`Y y|K  7fS]#Ma2?7i-2=7/<08=TD9=94:./f&\A>k7eCRcaTܟU0 F CCiZj}n1@CXaNH"m{+4sgKO1I@Q=VS-1'7;3!#%5#'67#536533#"/32>#3!535#5353335KM IJ>DC z}I%&.XI* ŴJNE52m(c BnFFnF H :`??Bmm>11L7>7>7#5#67'67&'767#5353336533#"/32>5#'67&'1G?2J2&25 t/>-U6=BׅfY`O,:)&O`K  7fS2 eh>*3/Ȃ"_Q*1S?ZR3^x"8>.QoF578DCuu?5vv5ߢU1 F ?k,:-{:"( !S5!&'67&'67&'67'675#5!#67>7#536533#"/32>=#'674JH2C8OQ1C/YH2C8OQ1C/ZH2D9MN3D/G o^}I,/gjI%&.XI* IJ> AA[fqd`aXU[fqd`aXU[fta]dX`CAA1UC\on]/ H :j(&?((&X!5!2>5#'>7#53653!#"/#3#67#"/326='675367#5#535#53533{3 ae7\W VYL# 5fb96;u;[Y!F"RM |Y]|+%?MS 8rŕm8cCzQn]՜O- F ZB. ? pN&A+` A L!&Z?UU1&G35#35#%#3#&'#'67+35#53532>5#'67#536533#"/HbbbbӪBe#N@ODt&K_KOdg>d] gjK  7faVAXJ@>6Cb_>n'XAYY0>j,gB7}bRݟU0 F M-59=AE%!#"/32>7!'$7!5!67+3&'7#5!#3!!2365#75#%3535 >AImV&#Z!OjM?/6@QU\߂y*CDID?8|A!`&?? /&$,*ZZTTTTTZZ@ <`3535#7#36%33#"&#.5#'67+5'67335362>5#'>7##2327>7#"/Jgdd=K>989-\w];> 'K5#'67#536533#"/53533'677&K4>0Rs `c>`W nqK  7fa9L">=?:,$;(;S(D ' 7#53653!#"'532>5#'67##5#535+35#5#53533533#abb*G~Da47 M "!6fb( \a8%MbEEEHGJJKK?O8RݭC\on]ӝN. F 8rŕm8*%?O?@UUUU@+(!^35#35#67>7#5#3#3#'35'35#'35'67336533#"'532>=#'>7'675#535+35#Tppppp=8: wooooahT [`nI%&.XI) GH?ayoIGG 0\":=/ H :j' % A K<=4:# !?D35'35#675#!5%!5!'>7!>'>7#536533#"/32>5#!!#TbNN + L # BMO M.5+gX&U3dNTT9T?8826C:C{ -@A"K:3̵7 B%!,8<@De7>7#'#53533533#3#3267#"&=#'!!##5735'35'35#5#'67#536533#"/32>-(X%KKKKKKU  = E$&68)YJ- ?@@;: svI%&.XI* kF:@U@PPPP@@[=$&$ +sLc$,EA6c@MMMMM7Mi._B==2 H :#6k67#'67!#&'3#"/32>5#'>7#5367''67##"/326='67#53&'767!5!367&'F#,7o6EQ5)TOn[(,C 35'`S"C&gzCJ(394'b7WI E^&nOMA/46E7@a qS@.+BWZV)y #ArS7$D*F,42C_`W:+tUC*1!5\H#H\Z+B/jEyDW?-2;CHAA]a D#9>UF6 s35'35#3&'#33&'#36'5367#53&'73673673#3#&'#"'532>5#'>7#5'#"/326=#'>5367kiii5I1!'/|T"E)1 Lv'G"];O! +-'PD =']q"2'.I: m /<SC\!:A-?03*@@G93MC39CJ9SKZdXcPMX3C2:Cg>I!~x#CW\N:&lM%&&6W'D+9SŮ^=j9( %5;A[!5!!653%'>=3&'/67'67'>=3&'/67'672>7!'$7!5#5!##"/H46 L9a[I <|mK;Z?+C<0A?]XI =rL:\?+C<0A%#S M:f< =@`umll+'/<t_-.0,_2=*^gjFRUI"AOM<t_-.0,^3=+]hkFRUI"AOMN_fe?V5.A"<U!5%!5!33&'#36!5!'67#5!67+35#5353!533#3!!#&'#"/3267#'67#5""M G66A _`OMM߇ _7622?kc:$U OB::1:#(-/&!->1A;-=IIII=- ;=5>]Z"A.[A=1n! ( &V\b6533#"/32>=#'67#567&''675'675'67#533'675'67#53#5&'%'6'$I%&)NB% v HH>CB [,i2W"hXCZiPFWI9u@ V@D^G:rF39]{sO|q']\on]/ H :j'aC9,OP @2EqI:9C]LN79.7?;MJM<9,9?7*O>@=<1G#7d?;} A+6#26353=##6767&'#"'27#".'#&'!#"/32>7!'$7!5!673''675#5'67#535#53533#3767#53533W <{C2iCO&#,9VO 82& f>>,?))[>AImU&#N# I`<cWtM-!!~~HV$eH 7Y398 8U.lbp1WmaI8F6G'`= x*CBHF?6~A @@/=#A;19;;914&1FAZZ 0 W7!5%!5%!5!!#67#!535#535#53533#3#3536533#"/32>=#'&'7#'67#K\F<< iЭN¬rI%&.XI* EE>BemIlKC22e2222n.;_::060<@@<060B[ml\2 H :j'*952*I38,B+/ `35#35#5#67>7#+3#3#'5+535#53533533#3536533#"/32>=#'>7'675#535#5ߕIqq1qBi8: tFqOqIGiiKKooKzI%&.XI* HH>bzBToooow2\й?>G ) #-Hi3=#;5##367&767&767&3#&'#5'67#535+!#%5#'67#536533#"'532>wwwvvvv[B-E$;;)C2fB-E$;;)C2fB-E$;;)C2h?f"mCNR%LuLv AB?== ceI%&0SE* <TiG@BX?7j'bB[m=2 H :@]a%#3'35'5367#'67!#3!3673#3#3#3>7#536533#"/32>=#'!#'6735#'}}}} J(@G/D .'pA~?A loI%&.XI* KM4Kc<}}DDD?44&2Vy&!A71?-<'5)#?D5D5H3\C\on]/ H :i45pG_pH +6 !'-39s35'5#;5#35#%#5#3+3#67>67%&'7&'7&'7'67336533#"/32>5#''675#535+535#535TppppppoIp39M@=>Q H $/F3">O7#536533#"'532>=#'zyy866 8 ^@sD;|TlƵBsam(A)p?K < K$967 kmI%&.XI) GH?j87?147 <; >36' '9+?A 19''6.OT XQIO SH@N KE :J 50ZC\o>/ H :j' (  Au3535#35#675#735'35##3=#2>=#'67#536533#"/3#"/3265.'#35+35#'6!#3#3#75#>7&4n]]nnZ2@r^^^^]]] k66>11giI%&(K=,C- , xoGXE<]%94]]]FFP8q +++++Z??4=q?s===:j'aCzQO|/ H -C!A qK-+چPEO=+;+C4R 76dhlp%#3'35767#535#3#%5#'>7#536533#"/32>#3#3#3#3#3!#'67#535#53533533#37#335#9 <> dfI%&.XI* nUq L #G2AUiiKKnWWVVɗ><<8 55(j6`C\on]/ H :5 8<4>3@=,3.RUi5?<<<7! KF  Mj8N"MG%*9 GH `5Jp>8ԛ)$B"/326!'>7! 7&KF  Mj8N"MQ%* =zkAe9 GH `5Jp>8ԛ)7|1F,'>7! #"/326!7&''676767&P7EoM&*&DzB FCAYHC=PCHCG:5Jo =5̝+ DNY %++ DŜ mG''>7! #"/326#'$#'>7#P6N"Kl&*&DzB V&3[Q)}2s+N5Jp7:̝+ DNs7T6M扗G16#'>7!&'#"/3267&''67&'767# 6N"KT :9=./)DzA w3r^P7AW2O^g?I`5Jp7:DX9 D+=Dhچ7Ql1ZOrF<'>7! #"/326!:>7"#".5367P7EoM&*&DzB F(") J 7,-6=5O"!5Jo =5̝+ DN ,&---6 'T@V,FF%>7#"'.=!5!5!32>7!'>7!#"/!32")  N 2/(q^Pk%(% "3 Ib7EoM Z&'7! #"/326#&''67&''67&?L4S/N+Ol6N"K{&*&DzB _!Z4;3*:r3jV9]1X;Km^9c;/MVa5Jp7:̝+ DNƥ0>7-6n7qI'[6W&F,6'>7! #"/326!?67&''67&%3!#3!K7EoM &*&DzB HS2^K8$F&H=59=+EU4WDU7K+JJ5Jo 3:ǟ+ DP,4GNP`jdDB1K1Q988QZ6dDL 8T%#3735'5#;5#"/#"/326=##5##35#'>7! 332>7!3533&'73M;* #$#CR MJ37#EnM #(I6>',7\\\\:XXX,6@ 4 @N5LHl *:ĥ+M@Y & )/==3"0<G+Gz&'%332>7#35'67#53673#&'#55!!!#"/32>7#'67#".5'67!#"/#:>7]/"#3 U"q<N Ƙ:n":36G $ #';M@/  J$e 61+:8:;U'K4""1Nz (B(  BURE<00*A{@TA2!'AO@(A(&A{AAGx&C"@>/Kvy4=?  (-*. +6=@ :,0L <#5!%!5!35#35!35'35#/>7! #"/!#!32>7!!!NOeԴR#EnM $)&9d tJC BO4F@sDDDD3@LHl '8+@-Q) ;mx-27> 7#"'.53$%TI$ L 2-(_H`G;;& P -#?A (A-/>KK'& //P@W6 * ,#'67367327>7#"'.5O?D(JGN/» #$2/'9 K #$",@?,H"'iEE O7S7DTWT.X0' /3#5'67#5327>7#"'.5367;NNs(+H 0+#8BP|2 '6E#61DBSYS (]K5S8* )H35##!'5#67#5!#3#3!!"&'%".53673267KI{D F "8ʫi(9y26*No{.DRH .'~OR:TTזED5 ??i>B9FS@ g5 7!###M@=22O 5BLC-f%.Q;@3S)AMu_ !!!#!!5!5#535!5!!3#M+^+BLC-f??<@@<_ %#3=#35'35#%!!!#!#5##5##(DMfJLJ{{{;{{;{BLC-f&--_ !1!!!#535#5353'>7'6767##33#3#KJMa8:?lT olJJBLC-fk@iAL졣30@/!A 9~C{LAr?v]'+5;AG5#5#3!#'673673#3#3+3!!!#7&&'7'67~K4^>D Dʙ K}%aF'G*]V%cQ=_MC+DMJ^bM>1111<%,!)$%W&&Q&&*&-#"-=-q=/66/63%%](@DH&''&''67+5!#67+5!#&!&'!5'67!!!##3%#3CLLC*F0+:G3Z*-Jj GEd%Fo aX)PЋfSVcKvAP'88'ZD7+*A3A50Hm 0MMj!5M.GA_D>-/211*>G\IA-fdddN!!327#"'.5#NLg9bKPk&'' cF< F '(&DM0!3267"#"&5#'>5#!!#!BEH &n4 2B7-*2+ LX# ;47F+ DKdfI=&;(84ZaOE?i !!!#767&''67&'N/}`OBRfj7}j2{ BVC2a7Wmq'wb1ch:cl_,5!=#'67#!!#!!!!!!.''$7<.5<\7K;8~$l(*n$/hAI8%bLC-fB)>AP-;$PP$;X].8%!5!##5##5#53533535367!!!!#5'67!!!#gIIIIOvjPFiPiSE(HaH+ #####'>7#53533333iMKEG<@;KKMFdRQ,KF]R`(1'3:>7#"&=#'>7#5!653!3!!#!5!& G-.+]0$NP_P_ **,7=76~6?/hE'=='EE2+$##!'>7#536='67!3P =\K1@O6 `i#ZhPFWwh0A)XeF@m6 E`=.PeCw26!#!5!#'67!!}PO:SA~BKc^DqD%t*6+C44 '#5!5!53!!533##!'>7#536=3PoPoNNt Ub/RG NBBԼEUA=6ysE1uu02' &'%'67!#!5!5!5!3!!PEFDP8]DX9eNe}N}ww~yEEC[CW%!!!#!!5!!3!w=Lm!LFn(Fx>W%!3!!!!#!!5L!mL=(nF>xF(B $(,%!!#5!5367!5!#367!#!!%!5!5!!5!>O+"L$O&)M#   U BB=?44-@.-\cssssvvv+1!-!&''67#5!53!#&''63!!#!5!`R-OVCr(/Pk/d|/E-~P_P_C4AR4Q:mR;AaaA@9Sn6hQK=4t^BB/7 !5%!5!!!!!!!#5!5!5+!5*z=cPcO)fjj7#'67#5###535333#"/32>5#'>7#536%33#"/32>5#'>7#5365M,52p\0 <+9bM[[MG 0C0$ b ==653 \_aI 9C0) h ==854 TW(*%-s%B@IK=7wBCdCע:e`1D 8lg?17zA4!:ea0D 7mf?17yA569"/3265!#!5!5!53!!!73673#3##5#535#53&xu +^KvgLgv'C*n*D&LNB+Y?MM?YV(0cKOaPN>l>>l>B(= .2!5!5!)5!73673!!!#5!5!5!#3&'73&5!  Y D,1[;-F)0\P\M)%D1+ bnsssGjWVQFbdBBdQ9MZEnnB HN#3735%5#!35#%###5353"/326=!5!5!#!5!5!533&'73!!#3#%7&DN \M[[Mi_$ JCN2:56CQ#?*eO-UVVVV6NNNCZClB '@5L5?TT0 .7?55@P$7AG7M' 3$%Q%W~MrGoJ565!53!3&'5PP*eEE:|I?z?617!!73!!!#5!#HPmhNN+ED@@1*",3!535#53533##67'675#53533&'W״O~iY~OOnAA?pp??B%B ?pp~HxHlB%265!#!#"//O)V+bV)F%;!!'65 %!3267"#".5!#"/32>+q:`J 3W]; N  .I15M]M$'*Lgc6GAD:*:B8%n%&2  ~u'> E %*%"/3265##!3'>7'7676761f`" Kt"K'?if0F, TW(`>>*veD,F4C/A"+4N%!%265!#!#"/!!#67!(O%O4KF'Ox+ TV)FB^5B.C&A5M67!!327>7#"'.5!#"/32>%'67!!!'>=/8!*3=BME  N)('_M?WO$%)4xf,g"TJg$;5?=D7<1+Z*?63( +#7;6"H}%?KD?09Awj;fة#&-35#35#7&''67!!67&"/3265##!?eK? (pg+hb KrB" 63DD8#FF+ZW((5%"/3265##!%7&''6767#535#53533#3#67&Fhb KeEM:E :94˶N15~l%2F+ZW( F= DDBssBDX %+17#!#"/3265#3'>7'6767676?&%7&sJy"Jf`" J'#oh>*ucF+E 4C+:%+5""x{-6 f3&'#&'!3:>7"#".='67#5!67#5'67367!&'7&'#!#&'#"/3267H#%8QAQM 4$T@=LRJ>K^&6E8PB'6 N :4AjBH;[g_?*P!=7%"/3265##!67!#3#3#67'7367#535#<hb Kep0K)_NNF(>b-22F+ZW(o27?A=@=.B [ AB/ !37!&'#!#"/3265#%'673&&'#5!#'675!FVNJKH>1@:-xwBoMm0KL(uGOlgZW(F,!fL_z\Db)qC(//k"Lt %!H35#75#53'>7'6767676"/3265##5&''67!#67&'7!Go+\`i\0~gi62{6 2xF;@ G>(>>?{&cT:"D5A*5:F,K-7@ C 7X&w L&/ !'62_?NF:5 ( ?!!'>%327>7#"'.5!#"/32>7u--2:*#65!6767$7 '6#53533#;:>7+".58/7650&,;%TaΆ&!'9'9RRI[&k^+'4 MFGG^fY@A&I:$ߣi@@  "111   *.35#!!!!5!5!5!5+!%5#!35#%'6!!35#MJcDgT`8N@ h[5!3JSJ/Z0=9X8S99=JdK?WK i&+<$ T$aa]]6Z<HTeC#KR$XV,bU*Cߢi<[ޭ4Z53.''>!3&'73673#353673'67#'#5#'>7##336=#'>5!MpS*7h #vB)exr"@!!9p!C!^FDGC)C'$31FK FB8;; :FFB'+;$ Tkxx|-@XX@.ٜ;31A?L4CA4,@ 1Ag`r_,Sr58+UB@R-KDj<[ޭ4 C!5%!5%!5!67!'6!!'67&'7#'67+!67!5!!!!!&'>ePPx=MN I60__gWN  =rLz ϲL00^11,15..=(W?ߴ>"!*8<1KP7739/! @87!7=AG%#!%35#67'6767!'>5!##"/3265#5353&'75!7&FFTme/C'+;$ TCA.b]& Lt@2K?GmD D;gC-B^o[Iߢj<[ޭ4BKN'E,Bzzyu??\VR  V35'35#67#!'>5!3267#"&='67&''67!#67&'767#53!#3#$%~'+;$ T  ? @o.A4"1>KI;B?o;7?4 c|kk:diz[ڢj<[ޭ9)|01: ([8$ 5W.AX'%# Kha~C =ziC"$  Q#!'35'35#35'35#!'>5!53537&'3#.''#"/326=##!>7$JI&,;%TK-:71=0ZE52P,m1*.@6KgCVl993:WAA2Ai5!35#67%&''>67!###6I+++c>22Ix'+;$ Td5:2j<)<-4G({bNJpTTTHH?@@g?HHcߢj<[ޭ4TKW*WQ;@)F4$NV /A&`*CF $+[3567#7!67''>5!7&##;'67&''#"/3265##3533673#&'a9m1 & C%?)G7'+;$ T;@/;.h=8m(o69,4>7EHA!A 'I5e$c;;Ep( KcrM#Ej<[ޭ4U` b9Lh6EQi88Y,B-H4 c 19?QC9@OOE -^%67#735'35#675#%'673#&''67&''3##5'67#'653&'73&'73673!35#5!#0 %PPN*8S/B 0G9j%l>@|&xA8̪ h>[ڱ::7):CB(N9@C1=@L;;H7&''67$%&G{VIo#H|TNPw?30= FAh(<(%%7.''26767!5!5!5!53!!!!67&C]D) nJDJPJ$BEB%$F1 DDBssBDc(9 @7$7$75!67'676767.'7&'!!&'#$7''67hHA-X*4.H** AL@+L%qڋ[ 9?sl;rc#<#!?/' ?NXPA !|Y"$-0,?W2BHS@J8R=B/W#9OU[6%&'7&''676'67.''276767&'7;'276767&'7&'&''$7&'$'$UI)"wCAm^>29M8ſé#0'G#'2f>*3I#4$G#'2f (>=/> } ?j@G9=*8XZ$.?BhR@=N <EK@8+6WJF@8 9QV N;@9<-G>?8f?=} A676!5!&''67&GJWS]ƕ蠞hޗFF߽}UDWSDQ776!5!&''67&%&'7GPYS^ʛ䜧Ri4pMm嚬FF~UF]UFR0^`2eX# '%67#'67!5!3&''67&''6uG G2D|Kr#yÇSsh5vkp%Dbj=@9^g5sO 9'767!'#5367!!!&''67&SABkGJN:9L+ L~یȆm ^l1wBN'4?BC5A}Z9D?ij>D8]c-767!5!&''67&%767!5!&''67& IU}&|-W&_(}g!2_[/CE48+:h(^]~ᝮDDRDWLBL7Rk~DDXT4FMiDgs. !!!&''67&'767!'6biJƎHFCzD9m'BA͆_:B>lk?B;^tnw5<'%%'673673#76!5!&''67&= 4HKRKKI%m*H.\$dj*i4C LU禮DDsMBPwxO>Mx106<767!5!&''67&%3##"/3265#5333#'677& I]u%w+T&[l(fq4K:ҪPZ DBC!?-(?"y족DDwMDRyKBJ~aCS(D 'aC^A幙dz" 135#5#6#3?67!5##5'67#5!!&''67&gzH)S\))M0<0tPv&yQQq*oOi^82-$CQB*EpM@RlpN@JuB "9&'!#53&'"#' %3673#767!5!&''67&"HL6L" 5:%k)E&L:NxMNVĵĤlF@9G=J4CAC"DGOOCJ5*]HRj??^RCkf#CTF%@FL!&'767!5!&''67&'##"/3265#535#5'673.'#677&5VPECIZp$*R}&Ue(amC5MA Ȇ2xlKUfIAJ @$@GGc`裱DDuNDVs}LBJ~AW'D+A~).CbiNC<~s ,h| 'J&''67'67'6767#5333#6?67!'>5!!!&''67&`+&@)*X@2B oE#i`r`>_CMBgF+A!CAA '7I[3&'!5!!5!!5767!5!&''67&3#5!#53533#'67#5!#&'7#7&'#5!#'6761-Y   HQd%Jm%oOYu'vUhHHMZ:/)9[C#Ge!AgIIf*194/.`//EDDsKCOryHBHyF}}-7:2D88cE??517!!!!#5!#!5!5!53! i6NN6iP4'??DF "%!5!#!%'>7! #"/326!BM7EoM&*&DzB FP5Jo =5̝+ DNK )73##!'>7#5!#"'532>=K)(6rf8_j4*.$A[b, # q<@>wR3LE_ܡZ4 H vIX 73##!%265##!#"/MXi(O%O4KF.MK<+WV)FK#!%!!'>7&'7Nl/Y6;9v5"'DQ<5E/K;6{N' 73##!#5'6736736L5HFM5!'>7!NNr>B>p@#!ߟ(6p6:Bgix3G)`K73#'67##!6#5!EK)~McF +q< .,@O'_-EF9I 73##!!##"/3265!K5)&t'SEsn@(P]`?#FV( F +l9 7#!%!!!5!##"/326O(9v`)T*Px> >DDV)A.7 #!#=!7&''67676%&NN;v;$0gV+l^LNiF!6S6A~+/,7( E LK  173##!367327>7#"'.5'67K)zN0Ʒ #$2/'9 K##",?@,H"839P]`?#V7`7DSYS .X F94$*6=!&'767!#!53!#5!$''65!XC=;N& KWPQM2 h 'BX)P7!'67#5!!O_ "&"EH L9,z '<=`pO! E OcG<pCC%.P%!5!!#"/3265!!!#5!M1)T*dhM5V7V)E*P@@K 73##!'6=#5!.'K)4{2Y%,-@M>Yv,FWX><I #73##!##"/3265!5!!5!#K0Y#K+f\(# ' ZSj?&H_-F5HFFD=773#%!!'##!67#"&5467!5!3:>www-1G)K [)G `MFIEzVJ*(3 WV2Cf$B< 6LRL27HAA2 =20: )-67!!&'&'#5!#'67&''67!5!Yz!]qo-5>>O$O?7cWO[gK`$Kp$Z=64gG?C00fE;K;OF7B}-A2* 7!5!%#5!#'673&'75! ZNNn`"鷷!A[55zzA}}AA<1#!#5!!!5!5!5!53!5!NNp[[pP5m5??Bmmbd "#!!!#"/326=!#!#!5'!5!Mm'QvU(+PMcWXV(D+y~X?I' %73##!!533##"/3265!7&K5#}OXX(U7pi5*%DP;E8P]`?#DZ,E0{Z %#!%!5!!#!#"/3265!jJfM4&P *RP<W/V)D??*@$!57#5!#'67&'767!'67!NNMM|BP7WC6j!p? ~PAa66M4"?7pKN/TKrzgW; &B%%!5!'!!'65 %5!#!R7+r9`SK7Lc(B:*EC?"66M;4,236=#%!!#5#$''67&'767+!5!5!535#x;K1 gWM;:8H%KEnP^,IIBF?gEi E w]#C F4D.?26O:FBRR|IH-K 73##!3!5!#53533#Kk(N+VN-FFDDUB !%#!%!5!!#!67!#"/326pK^N#,N$&Pd,*P>0JR@ BCV)D! /!5%!5!5!5!#'67#5367!5!67!5!3#!!h 4H66MSi*`X ]]0"!75l.9gW// eBAo>:2A-:>A$6)< (,67!&'5!53!#&'#5!#'67&'75!UHhvPs^`NNE6yd7Cbc.?@-\CggCtTF-B~,, B0CE[(,%)&'#'5!67!5!!!!&'#5!#'675!T85PK) $lCANDN=Fl{D4K\ZMCQTBBYLCUH .,,:.#HZ;A%%73#!&'7&'!5##!675!'670gYW{+20m#7#3#%3!!.''67##!3?&Oi wwN& -f()j0K 3VQ3L%XOVpFW>AۄC><1OX0S. #!#55!!#5'$7&'5!NNOV$N2^#5w5BB&ta@}[Qj=eXA573#"/32>=#'>7#5'##!67!&'#53&'pp\/nN>&%/~p"!&K_4G&CS3J%=]PD-M:CȜ53*#@|yoyDɜV!?#/#'!&'7&'!5'675!3#5!#!675!)feeriLir/?OO=<,n>OOn>5>77>5>nnCC=>55w5FK" 73##!6$7!###'67M91NWW8##Mf_#5E-r4F\3&,D;273##3!53!!#'>=!3267#"&5kkJN']m2@I&r (CH&+L.xxCY?;%\|# 64@?  #AD:)=73#%&'##32>76767&''>=33267#"&5ll}gY;!J $J>I;@02g2pVMg^)+I&'&O)+7,(3%sLu H@;:2:# 6GKE"B:, .67#3##3#35#5!3#"/326=&''ZllJI#C1ZQ* *w11w,=?Zd@ WgCU*E*>ppAF 073#67#'67#5!3&''67&''67##!6ppP^2:A*.(:qVu#{_t'pg;$9ISZ$n3#w)DDUZAdG?IlqE;Dm/ '@ KK3+73#!67!'67!'#7>=3.'K)`)H +V>M(/H-ޟKa)*aq7#'67#'>7#'ppK7I Ene0 !ϕ/'g'^0W&gDW']Pn@˛ 1=`5 F (o9jUЗN8H凚b'wD 773##3"&533267'75367!5!7#"/3265ddJL#K # F!9/Vź{{++cK /73##!767!5!5!#3##"/3265'67#M#BM  R\\"J4KX" &ܩ +LN RgBBDW)B0A Bxp#!67+!!!#55!5!NNN2* @A3@5?b@,(!5!!5!5+!!!!&'#'6 L'P%NAFlFA?EAF #!%!5!!!5!5!5!5!5!!!!O/,,C>@BB>t@@t>0 #!'5!3!5!5!3!67%7&K MxM;.o*v%>Z<-"7!5!!!!5!5#'67353#5!#!{*ACk9J POO&?CCPN(:nn66~K  73##!'>5!#./!5!M$:9;8160YO#MV?]7a8UC,(,&'#'5!67#' %!!&'#5!#'675!O33HG#?"lL8NDN:IjD4FPQECCH CIB'LECOH$(,,8+$HVLA@573#.''##36767&'767#5!53!!6767&'kk\:G I57Q:sq7@;OHY6:gaC&1SZo " . 9@ ,\L~1!#R^CxxCxrCO"U\ 1%#!%!5!!'>5!#"/3265!3#3!535#53fIsD}6?>9-"(Txs*25P;V2Or#V)C*U:s<7'!!3##3L14H %=^.e,r6kkJup# ;+/ !CK?>9A +LN8'9A7!5!%'>73>733#6".53673:>7#5!# $ I >KpUFL )5& & F566NN!A)'A\ ~Cn  ,L=S,  *$+6757++pA773#7&''67'67##36= 7&=67&kk/?4/ARJ;:5:= I%!0D2:6C@KD4*]PBR<E dia8@3Y҂BF(l8qHD  XI1'73##&'#'##!67#535#53533#ww"P.OLW4K TLSZBBq2@ DBCCF &3##33##3%!5!##"/326HHkkI$c:%Kg,%UZd@ !DDqV)E?.")-D7#37'67#53673&''67&'67##767!5!&''67&Hb87Q[ G Q$ 4) Cv%p?).(6XUD:LYl>`)\AMj(lNN@ ,4CRU^F 360Dt[?Xz4j(/Z$ ̟DD~R@RwyP=N< %35#!3=#37353##3!#5####KkkI0RKKJZd@ ?$?<' !%)73##3%#5##!53!#5'35#!3=#3735kkINJNKNSZd@ ?Pxx?A㢢I &,273##!$7!!#"/326=!5!&'%'67wwK #YY%D/dX)! _E60B7.('FBE%]Pn@*8DES+B)Ec )eyV/~#/  .7#!!&'#265##!#"/&'!5'67K^yssZ( Ls%O4KFYVVY<HIGZZ4, %V)Dn>)1441)>n] 73##!7!5!5%!5!!53!3K+++lH+VNABA, %73##!3#5!#33#33333#3ppI-IISIIHMHSZd@ (w??TYbDGL73#!32>7!353:>7#*.5'##!67!#"/}}e +)zB4BM '!IC<&,5! !KU(K ""1NP]n0$6AB?3@5<@  " ,?< 鉶 5,=@I5!73#!!!!!##'##!67!*O0,J M)P#J SZ CE䑃@  <# (!#!#=!#&'#'67#535'67PKMn.:AOI8f,6H]R]?+?CeBE-n{0z?B ?+=$: -:7!5!67#7#5!#/>7!!3# ''67&'67&'>T /"QNNJ4+EFrwل]U?*]+J ~i/etAp Xn# a++c1.G{?AOM5=.C;_.I ;EWu6qRjS94 %573#%7&"/3265#5!67&53'##!67qq9&p] @,NE;NbVo3[! Z,I9v-R?A?@C'BgiY{#gr:I(AAhN3T|~<++173##'##!67%3##"/3265!5!57&ppTKIh)K>> D/ZU" 7?XEACSZH=(@ D_-E5D%!.  6#!3#!%5#!5#3:>7#".5#'>=!K]H]fRM J+.)?@) *}u; # 13*CMB#$J@d?+~y7 0#5!3#5!%5#!5#5!5!!!#"/32>7!'67KjHj ;z 0!26ezT K4-8wwww==AA*~o$C;D>7`D7 G73##3!#5!#5353".='75'$7%23:>7ddJpJLJN&65.IQ YN  & L 70SZd@ Քg %$D D^@3#/D07)- 5;@ D !173##!7&''6767#5!!67&!!5!5#53533wwK >bH@0/-='2W"NkB{<7I"#9.+Ci~DDnq3DDCvvC=8 $(.6!'67!'6'.''>=3!5!5367#5!#H5H>w7M 1\9Dk+-iMs^,]NNO;)c !B`I05["DxMGo@!R!DDAQ9QF4++c   %+#!%35##'6!#3 $#3'67&'iH`9U[AG+&`vB)V;$,2%'67&'767&%3##!67'5!53!7&n^X6I2HM2G8ZZLsC?F$N5sV7ZL\@?AOdUUbM@AAa[b?!e{#m*sBwwBB0pw-x>6 6:67!&'3##!67!&'#5!#'67&'5!_DG qX\}ppIMKeLrlNL- yNB20Ha X2<=1Zd@ t+@yZG2E 55mB1M=M<)8D/ 473##!536=#53&'73673#!#.''>7ppK(7C2.6@(E(//)`%+p*}n?~?: ECHOGVbRQLCEn@1de/@1k>; &473##!767#5!533!67'67&6$7&'L0+481O=J*1hC;Rln[8G\jR6RkSZd@ :*AOCkkCiV%/^y%9E1SkC1ʊ(kTGh4kJ|7#K ?%35##!5!5!&533&'73!67327#"&''67&!'>>G,Y3J2,8A;3 *F!F+g+$H^%X&y$u9eW<&"͠FbgAAL**L8+">GCǢt8T"b`WP )5!5!;5##!%!5!!#3!3#"/3264 J(RMgzg&P *]}C==<>YV)D< ,73##3#!#=!%.''>7#53533#ddIH?IR&9\\9&FZ J ZSZd@ ;-f-@HyL,^^,L8hAAhD6 S73##37323:>7#".='675367!535#53533#3673#67ddJ%m)#3 L >;3\MNx p=WAAXXB<\YD:O'PBX1>0Ջ6+!??A (I  #!#!#53#!#55!#!#PN}O~MM~OR]h7+W++W+8A $(873##3%#3!5#"&=#'>=#735!#3#5!#35#5!ddI)r'[7!J8O%A*kLҷM^MiSZd@ .V&BR:7%7&nn9MNkkwKkJ+90KR5l6iq<%BE@QB/x;0@}.5k4D4 )73##!3!535#53533#!!5!5#53533#wwK kNNWVg<#AA@vv@AA@xx@>%  $73##!#!#5&''675!5!ppIKNv||x SZd@ *5`5>sHwuHqAA\2, :@7!5!#!767327#"&''67&'!535#53533#!&53!#7&'7MA#@4V$C^H!h(g+ڼMK6>><9_KUg e'9MK`8:?eCAbbAC|eZ!TlD1 *073##3#'6775!##"/3265#5%'67ddJM61`:$7AM#G4A<+! X8iSZd@ >%Me%DDDDbU)D*D BS|':#'!5!#5!#!#&'7#'67'!5%!5%!5!OPy"roRRR~P?9==A<6/H4?07#536=3ssJh2@LL LB9>@ K+LN@@e>]AA]>ooCc)4$bRC$77$9  $6!5!#!%!5!5!5!##"/!#5!3265!5!##"/326(O(9v`'SON(9v`)Q(h9:qLAAU(2\??W-C:* QW73##333#67327#"&''67&'#67#"/326='675#535'673&?&eeIpI :"<3R! :M>L\%jM"I6 CI<"?*  0D .Qww#J*B u<6.;0SZd@ CgYgl|MKO8;_Wf hA( 373##!!5%!5!&'%'67"/326=!#333I~~'83@55F-h=^hj\eg^kC,HcU%C "&*.73##335#!!!!5!5#535+!%5#;5#535#ddI󄫫{#J5SZd@ ;zx>AA>x;>:<  1#!'5#!5#33&'7+!#3!.''>7!5!K]HfʑPHK,CH]Q@+{ɖ12؎z;Zx<6';7'C\#F"ZZ"F%[C:6 I73##!%##"/326=!5!5367!'67#5367!535#53533#3673#!ssJ%K,gb(" J"84f` -;=>;M.nG?9\0<VR+LN@UN&A+N@:)G,;#=-4A>RR>q giA01=M.3(:B!##5#'>567!5!#67#"/326='675#5353#5!#CzNJF8ZBД^2GN = P?#]KL`MNNn@Ys21@ B ?b > p3?V ? l?TTG++c<B @73##3#3=#35'35#26=##5##35!5!533&'73!!#"/iiI-z. KKK'!7B,.2 XSZd@ Cxx::x+jZASS$$7,AZR)?D 9>73##!35#35#367#!!3#5#&''67&'767+35!5#ssJjdbI- REF0?+< H+LN]]];(`?NN@dBY D gK%C!99G%@10KrN|c%>D  !'!5%!5%!5!3##3!!#67%7&wwwkkJG;Mcg,0Ud%l'j^{{zz7'>36767&>7!&''67&'ggJec99AeQA%J43H '&&d,2(Yc: 2 E1J/9$2GGN?wlL>92]Pn@*Z=PHXqo"B(&' .R>]IAbVPR-(7&>bP:%A)OT$A@5F1$ +/77!5!!!!67.'#67'275#'6=!5!#5!#),OIL2D=S_6upwpC5J"V NN&y <8-&9,2""AZ @#A [8t::++2<<I73#%767&''67&3#"/26=####5'##367#5367!!353__%jeZ,B[Tj&[vX;=.0MJ14"I}CL pw"MSZ:9*.0D322(88J(H ?0#xCBTH17~@ zC2"$C97TA"&*26!5!5!5!5!'6!53!!!3#!5%#3=##!#=!T T2,9LwPw<$d@ @EEM K7#'65!#3#.5!ddIp$Te~NCb( }hUgn?~V:x`#(BkB {Mr" `AMz!Bk}AAC/%.JPV73#!&'7&'!5'67'67##367'67!5!#".=33:>7'&'77&fffNADoQBGF&D#H=L %&S5C@4C7w5/ +6<B73##33#3#"/32>5#'6#5353'673&7&7&bbJ怿 '9. f 75BA5FM/I*G.\:T)U.WU1V%|*zSZd@ DZKv D?V&e'D\BPRr5[.A>yAAy>@>a A'773#3!535#535#'67##3>5!#3#3!535#53533#kk]$3;<I"GٳN]P??>]j3'@FS*A]>AA=kk=9 D73##!5!#67&'##"/32>54''67&''67&''67qqIn #;64AM?_2["(BJ&(*_I!!߂ e cP[^{(TRBBD[0nRȃ@v2(Sda!B"=@*c?iB.rR=Qr4(A.=Kr<2 *!5%!5!3##3!!3#!!#5!5!5+35xx__Ir"NMfjjkI)"9D)'PxX'+K]L,sjMLtM .6;e2<4:ƇU&u>86V)A+ !=j^x6'=1>U-U<; 2>73##3267#"&=#'65##5!53!#5#!!5!5#5!__I4D"![)=~s$ςJ M KRx%;SZd@ A $0v-;QĒ^^l BBAAK +/35'35##3=##!!!!#"/32655!Kx)Tun+>__7[_[[6cw\ i*U*C*o:4<@7!5!'35#%67#7&''67&''!'6=!67!##5!#5!AP0eP}\Qx"oK50()8IzM+I (3 NNc ܓ(Mv1UzH,B4T8'?"3DV4*<]1DVDf %A++cAA?% $4:@73##!3&''>567%'673.''>567%'67xxK LNM>F>BE"E$Lh%)r>F>BE"E$q<@>Rs)E::E(uZag_"Qbh{QDtMOtD'uZag_"QbjD? :73##!'67!#"/32>7!!#5!#673#!5#535#ssJG8=K Q34K\SA? MsIwoX^+LNc1 "-AJN4++.D$e=uu=r> 7Ne73##3767#5!&''67&%767#5!&''67&767#5!&''67&?67#5!&''67&ddI+3B!+-2 ">^&Q=DA5>@!N6MYCFV%S;=,7B'32.K&lO@A4B@!V:Q\FQq%kM?n?~V:U265;BB\B*0!!H-:#G8CL8AUBBrR'B!56 :.B1"57=AAZI6/,h99-l6LVEKbAA_7#B(CE';#CR4#5%#3'67##367#535'673#!#.'#mZ'"qG]:y*M >Ry;\bJJ\k7!ZoC?*=Cl8CX'B/]< )73##35#35#5!#3#3!55##3335__Hեƥikk]Fx@ 4BBBBB:6.2D%67'##3673#3#3#67#535#'>73#"/3265##3S- HHB uuu.F#;$ DU6 2rET?;1@@ m 03?A= A=5'NZ(F,WL&AF =A67!#!#5!#"/326=##5##5!5!#53&'#5!53!#3#55!W/%#PP'"@TJ"PKM ,|P|)MD]/3.4232AD0<ADu.4AFFA3/u<A ?73##367!35335!#"/326=#####53&'#5!53!#3#__I, M98A MG4&V M c(8SZd@ U_NfffC!BL]WAbbA`T4# >B'6=3&'677'67%#&'#'##367#535'67%3R']ZJ(u49+B /A2DaC<4)(J%B GY'jq/9 F8ZIGOGl.BC0fY8t6.B@ C?+= Z<A D67!&'!5!3##37'67&''67!5!#5!53!#&'#5!#Z? Ekc`v(T__H'rJ=!*5{HH?*JO>IlqOL>OE(:8*؟NPn@*A*@3:/YvMlZZgL>,A ++226 %C73##33#3##5#535#53&'7367!!#"/3265!#!5!5!53!{ddI_G]> @%=7$JK5IOSZd@ 6>l>>l>OJP^NcMYU*C+Y?MM7B;?#!#5735!5!5!5!5!53&'73673!!!!!3673!53&5!RRK vm2K$L2mwL +,,.-p?F;FA.2*6&$'AF;F?p,.4BB+ii?1.26D35#5#367+35#53533#3+&'#'##333#"/3265FFGsk9/CIB2Cf^BIB^DZAA65#3##3'67#5!5##53533533533#+5#!!!#&'#5+aaKk;;MgKMOOMgYcMmss>Ui@%bCYvCI;CRRRRRRCAICnaCez>* 973##!353!5335######367!5!!!#"/3265qqIwFF_F_F^I Z (D. SZd@ ʧ66$,BB5+BC? V73##367!'67&''67&''67#5!67!'67!3#67&'##"/32654'ddIx ecRiZK2K &y$A33AG?])^ :F"0%WC xkB{W 7C K6c=Ii#O:;4J/#;)7A8 { 4ARN6A)S9pP;M 8TW?A=f?K ?P73#67#'%5#3>7#'>7!##367!33!.335#"&=#'3__!'(] /|3C-q/t|H:G (-tkTMWC&>9V#]P>$3&1w+)Üg47,\]>AkBf;@u &?).wA;fBk R\)H}vt>8Z2; !04!5!67!#!#5!!!5!5!5!53!5!&'+5!#!5!YRRrYYrTQcH%',,=>>=AJJC(#!CZZFQU73#!5!!#"/32>7!3673:>7#".='##!>7+!!%5!ssLr24/.SD$ k :#%"" G1325:-('I.[!I$SZR׵FC4N688   ('' %%@ ' [-S*OO4H "&8%##335#35#3#3##36733"/3265##!%H}LgJ zb8 2xGSB@ pw_AeAhH%2 $(fVZ~F,WL& A !&835#35!35'35#!5%!5!3##!!!#"/326=!#!Y!ffI(8H&M\# M&LOOOO9LHH:HZd@ C3B<A !&*!5%!5!3##3!#5!#5!535!!!#5!``__HM(LN9SLKjj9`Pn@*稨Z==KAA?;"*A#5!3##35!53!5!#5!#5!>533267#".=M__H(P2JWK>xx`Mu3*I $%$*+# Pn@*BYYB\\ȉwt&J Z2014/%-AKU73#!&''##367#5!&'!75#75&"/326=&'#!&'67&'6}]]uHBBfJVIpVJB!><"@[C5 "@9H)F#>I4-:@ F`Ac?-4*/)5c/)5/8A 'U/8&G6T&L   z {<9 :#5!!#5!%#3%#3.'#67'67#5!!5!53!!!!6J.G.͝靝;H`d";n VUxPx|,C\ܤkkk)H>L)?,Ɓ#@>A ?M@II@AR@9:, R73##3'>7#5!53''675#535#53533#3#6767#5!#"/32>5#!!.'eeIq J/L&ddssMqqff"F`Q7 %1?2 UB8"ok+,SZd@ ZDiBAN0"> r9\m>$A3B "%>c2>%@qkA(B9btU)D ( !3#5!3#5!!5'!5##!=#5#!5#!#5!5!5+!+KjHjNNc\P\MM<[[9W[WWaaaaAABcB?1 ?&'353!5%!5!67#3##!673&'.'#67'676aQPaKMMJ< xxK xO&4BVKgx2e_Y D @s?LJAVVff:^L7DAM<@VmtZC+N@?&=(t?2A H" FE4!5!#!67+!!!#5%!5!!#53&'73&'73673#$` aOl@N!C-!$C."0F'N6N0/6:¹7)@=B(FAF=1=?  A73##!!5%!5%!5!67!'67&''67+367!5!!3!!&'vvJ}}}W?AtH2*:tN>M lM@fpq<@>U88k7758(76A)*.=:Yz"AA:G8)A@??K >73##!!5%!5%!5!3&'7#5!5+367!#3!.''>7vvJzzz|)-~MMV*=hf',ovq<@>fMMMM6M/#>A>1 8+/#>4UA_<=`AU5-7 ;?!#5!#!#5!'67#!!5!5#&''67#5!53!#&'5!KKKz4Jz(s0rSE(FW?Z&8LfX'rI0H\//:ϝ8E[@@' '284'@,7Gk@GG@(!-=5O"5l<<D' #)KP73#!5%!5%!5!#3!!&'7#'6#3#".=3673267"!!#dd(K v#v{ lJBP@M #HC<I & LCKSZu66e77.6j>3B=F93+N1?+D 3="=$2 (HI"04:@F!!!#"/32>7!367!3###!67'65!&'77&'77&'7,&U:( / P vvK ?*> < T9P7VAY$u0 BYV/4*H<@J$< nq71}}Xk f^OYYP"=HH=A4 KS73##3#36!5%!5!73267"#"&='67!535#53533673#67!#5!ddI75vvT&n0K"B46D5C豱N5&68XEUÞ!MvSZd@ L%LL6L 8! 0%?.K;L9AA102)FG;.,/76 l,,DA>73#3!535#'67##!67#5!5#535#53&'73673#3#!!!#ssH;q2Ke!p FG[o>`BBo<?B?_>XA:/7DB949AX>_?(4> : !%59K%#3'35#%#5!%35#326='5#35#;5#"/3265!5!5!!#"/#5##5##gFss-K!==s==pb!  .9+=6=GgP<ʢ::/E+B7U*Z??M@6A1 G73##3%5#;5#.'7#6!53'>7#53353353#!!3#&''675##3ddI'>B0$JOJ>a5?5B/ISZd@ eee (k ?% =$?MhbU6 Au6/4 $QX%67#7#'673#&''67&''3#3#3#"/327#'67#535#535#53533#%3+#.4 #G!8H&D "M.Y(R58`,h83 $)M='"]0qT}}M@DCI,Z3EEDכYKbb>HcD7Dk;<8<>CG1C-C/76</1 CT7#35#5#%'67#'+&'#'+#367+35#53533#367353.''>T<<=D" /-@%3O!E/H3YCQI[3"AxHx>F FYE /V\1#I`SZnh NNBJL$wi$@ Yck'XAYYAXh78D(6H!^bH2/0 ,7\7#3+#3#3#"/32>5#'6#5353'673!5346=#'673#3#.''>7SGEQIx*?5 Z :7=?4HLu<[2E'(-#.i.: !NR!5!67!#!#5!!!5!5!5!53!'67#5367#5!&'+5!#!!3#"/32>7#%5#Y KaL~rYYqS/"Rdy#,'W>$ '7A&&++:>>:ADD6?[A A$#A"}f A **ii 4  &*.73##3#5!%35##33#3#!!!!#3%#3}ddI.Kr>AlAKm'UUUUSZd@ >&5#   9DA #X^3267''767!5#3#!53333&''67##365353!!!"#".=%'6oOb*4!Ixee'EFD>':"5KB I-L'$2 7.-95. x;.;9;- >#%#-0XXf_ZZAAgqeZ"$@ c6;5A;5"#*9 KVSP7A'15AK]7#3###'>7+#36!53!!3553'>3###5353353'>%#"&53326ASY@tD@ >?H*'NoM282C@UOK39)"2 SZFs?>E( +@ 7 PPAs77B9i>?ss77B9%g_: #144 M#3=#35'35#7353##3#3#3!!!#5!5!5!535#535#535#53533533#3,҈>ddI?WW?"M;RR;uMMy\smmAssAmSSZd@ mAsMBB蹅>GHHG>KHPG;7AA~AAZd@ ZZ(HH=}7ZZqm7$mJ1rD #\5!35#5#3#'67##36!#!7&''675##35+535#'273+3#"/326=#67&dJdzz=zee09= I+NMCR99J8JzHQwkdIz4E+!&@@YYYYZf"@ h4:BT<`:',8$91'5!#"/#3##5#535+35#53533#%3zxxxnG0}B=)! 1U4wwwI4BvIuZ\!:Add9]UB@ +,Uǫk)V(D=T??TnT?__?TuZ?* [u67##3735'5#;5#3#'26353>7533#6733#"/326=!'>='##367%"&53673267*H譭eeCFggKP "$EUR [7D/()IeDKX-H_]pc.=C')w"*"LLL3HHHZ>I;d<59@4WA"8n),@ QCr ![.97GA$'$ ?# %+FJ35'35'35##3#3!53#5353353367?6673###'&%#||||||Hw+!+'&KzK)R+<+V<*(hVwBJS*+?%"UBnnkk:g= zL@@AYYYY U^!dY!?>Y,S0E&FhFV(M2\ 5K <BHNT73#35'35#35'35##3353#3!535#535'##367!#'6&'7&'7&'7~eezQQQQTTTTCQQQQp>>0@MM4IX0F 0A/:B9D q(C*t09B8/SZDDD@@D\ *@ o+,Ab^|_ ]mpviydgt:= #)_!=#3!5#"&=#'67#7353##3&'7#5!5!#35#53&'73673#3#3##"/326=!y &l6CAA$[ gRggHFS*pJFG Bgg Cp_" OEW77S, (8+.@;Q4#Ok44Zd@ TL?-?44>"$+)+( 0>4q4?TK$A &O;J A3 *.2:73##335'35!#335##3&'73673!5%!5!#!#5ddIvG%E'(,G"uuI!MSZd@ VVXXXVW9%3?;601ZZ6S,z,:; #+/>7#37!5!67#%#!3!535!5!53!5!#5!%5!53&'+5!#3Jp [:P I(IjM T @ K'5>PZ]B>>BAJJ@<>Z<DH`73#3267''67##365353!!!"#".5?67#5#!535#5335333353#ee Ub*3x09B I+M'$2 0($95. J!Jx}=@DDD@>~SZ-># f"@ h6;5A;5$ }#-0XXfAAP}}P:> %=CI73##3%'!5&'#!!53533533##3#5!#367#5353'7&'67ggH5:`%*LIBcywIvMބHQHMJMHf:B2'-3.225!SZd@ ]O)\S$jSSBB?>7#".5%7&\\KuK"B=,7S`Pg{uB$;$EGM" B373./.^9C.9-SZd@ .);+9Az"1<.9<n@22AXXA5/@^;|OckRS7  )+)  " Z!d``:=,T&'#'##3673#673#&'#&''!!5!5&''67!5!!6D!.3KM G TY^#H ʊD%/EF:5/7%9*"e.5.3$99eFJ4pbR<i1@ o -(AZp~ '-A=Qi>84F R3D7/6E8>v SZ]]ZZ:W @AA/+!9k3775!67'67#5!53!#&'".=375!##"/326=aaK``?-haaa"6L8   33 1 6'J1,6P,7%9.)Z)% @Iq"GaW SZd@ \\99\\\1%&<  L[ ^J-,/NN/3'OU"$! p-$>>II%B(?A< &.2M73##3#5!5###5##5#53533535!53!5!#5!2326=!#!#"/#ddIKύKKKKMKH6  AKQ:ISZd@ -BB><==<>LLLL<>><<<)ݳ "`D#=79@w7#367'+##535#53533#3#7&'#"/3265#'>5'67&'#"/3265#'>=#535#53533#3#767NH#4/&DKKTzuuKxxZ%)3 *".5(=E9G:S0 *#.5)aaKgggK Q /I7GxN RX@RMSZd@ '{'z'Z;($%----Z-Z-->>>O 0< >1 #8W!5!35#35%35#35#'67#3##3!#!#5#5!5#53533#5!5!#3#;#"&''61 2 ]]J 7RH7 NC 0Vq&M.01 $`73##3!5!35#35%35#35#&'#65'6767+5#5!5#53533#!##&'3#;#"&''6]]Ju1 :1lC 0VH& H7 N 7H^!9)/jM.07GA+6A/+Z/- !T7#%&'33#"/3263+#2>7#'.''>76767&'767#53#"/'>7&'7>75#535#5'673&'#3#>7676@C:-9]B8G2F-B=JU: D!'Y^ [gLK(- 6'2'QSZ+.-,sDU)F @+,L>P  @#? 2=(FPMIn?NcM&>,<+>@.8@=G00;6hh;IJ8*/ <=(<  @-9A>C t&B$v/7B5/SZd@ RE4<02~WBBKWASSSSAWk48A% "e +.1v[c\s gjjdbmq\\n' 8<@Yw576?35#!5!675!#3#3##5'67'767&'765!5#+'32654&'67##!#5!326=!#!67!#"/!YPYl iH6ʏ=1="4.+*H b$K 8#.;E".>N+?O&@"=:=/G*726I"# ^LX P $Kf.q]N "-#:@>59015N$1?$!>K]C>QENͦ "O$ E"<  "&E^#5!3#5!35'35#675#%67#75#!5#3##5'67#'65!!35#5!#'673#&''67&'KgHgOT2 zƥ2J24W8LJT8O)B 0F8i%l=>s&q;2ga8828 **R xAAAA;oV >: <599(w 2KL1[OeeIdU?*$3GC,N>)FB+R#E+HS:(# e/Q\%epAT7?&11a111111a11113H#$2Zd@ &(42&*(1#5)<&%*(3'4",g#%3 BFJ`f73##3&'&'#5'67 7'5#;5##3#3##!'#3=##35#53533##"/326'7&~eeIH&/Q2 I+VD"7! % 5*!nooH?doo9HBB)!H56>%9&SZd@ V<: *"+/0,MS4@AJ7CCCr)4)4:_.Z..C6AAAA8C #MN!P 46$(,048<@GN35#35##35#53533#3#3##5#53575##3#35'35##3=#&'#63+#&'7#535'6767+35#53533#3#3##"/26=#m7777:j~~Hvvkk{{H~~x6666N8GGGGGGGDVGBJI*;*5|f& ;{J} 755+9+3.dkT?aa?TzS??Sdd75#%35'35#>75#%3#'267##5'67###3!5'263#5!#673#>7#5LL ,5dee:Jm.0I 2 FsI;4X Itt6612 %>>2;4q>>2; 1Z?#w>?#@ wB>AA>I<@D; ; !%X#5!%35##5!%35#!5%!5!!5!35#35#5!!!#.'#5##5!&'7#3#5##5'67+!67KcGc""""\l ZzTLGEy 1`GLcLP a3K~3K))))(HHH5512#7< 4Ol5#5##367##3##'673673#3#3#53533#&''&''67%367#53533#&'#'+#;RRRRRR)_ !NQH8C@ V@ >I@@@@MA2'- #*&#0BV/lFwI:(/AF0T#DKKԕؙ@ew<6/OZ3A99$ E>3] C@B?@AVVA6BI`6N:/'**<P>9zL7_n>AA>SQ6HMm^-@ 4A %-4;L7##267#535#5##3#3#765&5#&'#63+##6767&'#"'%#"&'&'''675#5353=#'67#535#53535#53533533#33325!'6767#5!#&'L7(__2nn} (x ( ,##CFL8uC8<#!)3.! ';0U4dd7'pQZgg-NNl B:>&&N3DSZ c;(2%303SSCh0.& @1- '3F# $ pL&:,$E3)951> 3X(143%29::::91559&1::RA4# !%)-@DJPTZ`7##3'#&'#35##33#5##35#35#35#!#5'+3675#3'7&7'63567?&2H:5$>$?LNC+4/"T++~,xz{bR2/4jLb*-̧MORZTI@TTQ^rH#LR R/ "'+/37;D~7#!5!5#!5#;5##35##35#'#653535375353#67#'675##5''67+#36!!#67+5!!!#"/.'Se feea b\\AAEn!$# lq\F'7 BQI- I+>*n ##4R6 SZX1}44444 S,,,m' ,,O-- Y,,O--z$*!8 0w#}d' @ +!;ʌk5D /;+ 49 (/R^7#%67#67#7&''&''67#!5#3+#!#&''&''67#53533533#53#5!#3'67''67''67'3676767'%'67#5!#"/32>5#L@$*)@$*0)'"6!-$"6 /#E rRCFLv 0)'"6!-$"6 /#E uIxMDJJDOjV(b!)N (VIZR&^n T!]I`X/S WH !61( c=SZ11'%$,!- @9'%$,!-;FFt3k##~k,9 5 9 5: :1 9 6 76 7 ,$ 50?,<PNWW #!#=!N:Nb*-f-CNZ*<!5!3:>7"#".5!#!#"/3265!e ".,($0 I  $:-+1>2M4&P *fܟ )"#'/   ]W/V)D*R #!#=!3.''>5LDLT0L/Y''Z/*-f-@HuC;.fe/;BM!)#"&5#'>5#!5#32!#5!#OdJL,362+-*-9GENLJL,LXdb1;' 65&ZYT@:??Z  #!#53##!!M4M6If7\7 k`R "#!#=!3!!.''>7!5!LDLT1J {/^$%_/{ *-f-@HAr<:/[\/:;sAR !'#!#=!##"/3265!5!537&LDLTkD8g_($ ZKj?JB@?*-f-@H,AY*A.;Akk&^~#vH5#!#5#'67%!!'".53673267LXLJ+4"AF@1/) Kcc'n8@G %!/-p-ZCB4J\<8 !>V7l@/3 69A! N !#!#=!%&'#'67#5!53!#MLMN,]J],^J^*-f-@H;e;AAM -135##!#5##5#'>7#5365#53533533#!LNLG?92.5 FGJ4qV-f-^A?]1-&H2AFwA~~~~AHR +#!#=!7&?&767&''67&LDLTd;H2=4q;;9;.z^=Zox+vzs)i{*-f-@HB#la!g"[n];:A@Y6YFfL6FY@H2#!#5!5'67!!!&'&'!#"/326=###LXLE1%ц%A>`VS^q042D9&M/-p-4482?]:^?)-GVUH@? qR  #!#5%!5!#35!5!53!!3!LDL2JJsT*-f--=pp=AHM %#!#5'&'7!%!!5!5#535#5!#3#LNLpC,696:J{ 4*-f-T1'@FD>>:<<:H 7#!#5!5!!5!!5367!!!#"/326=!#'67LXLKK@h Jtr"C`Z K#4n:/-p-E|EE:0>1*>( 9<.K+,HStH!?#!#55#32%#!#"&=#'>267!'>5#5!53!!!#"/LXL>/oL`T0y]v/oI( 04YbMI1D0uO/-p-~U':"=k^o-7)O;YL5.c<^^<%"l<H ;C#3735'5#;5#!!5##5##35!5!533&'73!3#"/326#5!#ΩLz@/LI Lx!@* =,#C6L@L_TTTT5PPP+<8977!98q2#; --pH *#!#535#5!%!5!!!3!537#537#5!!3LXLrK9|@zUD/-p-LL_B,XF#!'35#!!'67'67&'!5!&533&'73#67327#"&'#5!#'Hҏ@{ 1F;8\JZ634'' !*>)@  ; .!=2VL@L:J1A .-7Y?,/.(&?rXwo-u[<7G--pH I35#35'!5!#5!#'67#5!5+5!#3#3#!!33!5367#53>7!!5#Dz ̲PTL@LG06J䝼 Zj %=&9?x--p @P4++498O q66(4 :OH ]7!!3&'#&'##5!#267#"&=!5#5'67#5367#53&'73673673#3#&'#5!@@ ;L@L4AIGI>EIa]Gg'8' EA %8hCVTE@)&), --pSF '&' 1?,L3:-M8('7 857>? =757+-7-"8L.:0K"7 H$,<7!!!5!&'#5'67+5!#67#5!##!!5!5#53533@FwJ%,jMj pJک R>8*8L@LL_U*.FD|D:7DS ( +2+1X--p;77;644H #'+37!!!5!#5!#!#&'7#'67'!5%!5%!5!#5!#@FHTJWh[Zf~~~mL@LƓ9eO&*83'.*7"8.e33_33+3N--pH !.7!!!5!!!3!35##5!#5!#!!5!5+5!#@BhrD’= &L@LzJƣH6>i--p77/H ]#3735'5#;5#.'#6!#5!#%&'7#5!5'675+535!5!5!!!!!3#&'"#3#"/326=!СH顡~SUXK>K`DN!QG+@+.&iivPU K?....%,,,%--3*)6:2($8.:.8$/$* ?6688 *(/ H %)J7!!35##5!'5#;5#!5!67#!#5!#5!.'#67'675'67+5!@ff@ fffb1=+XL@Lyf'.ANB[e'-SG T*B]XCIƕCq.CCC:&'(3--44#A024Uw1+4 `5 -<!!!!5!!5!JJEQFFE.%7'67#53533#67'6=#5!.'6BFKX>4{2Y%,FBBCQ>Yv,FWX><, !!'>!!5!!5!53!!x'&.29*"?eNCg:aDDbBB!F(5!67!!#'675367!!5!#53533#?7LGjO73EBH6+Mo+ND?/ :)Dp5$K.?L?HDD$BBF4!!5!5!5!53!!!!5!5!5!53!!rr%P%9P9AA@vv@AA@xx@.-P37537#"/32>7#3:>7#".5'#67'67#535337MJ!-0 > J3*%4 I $F<9AJAe JN:oނ+hNBrDO.FBdFFL{=nA ("3#67'67#5333333#5!#WW:| +?eeIMII7IB EJ+EwB pII/"(!###'>5$7%3#67'67#535NWW8DJ'擓,< 5M~~F\3J5E-rCFI0EC'"3#67'67#5353!533333# >D 78kk:YKMCo!CN/GCFFp D*4!!!&''67&'767!'67'67#53533#676'%7t[#cn e`3F0P]05 -AjjMJ@'BAʉ_:B=gj:C8b|jr5<0;F-G CCs"{$9.283#67'67#535'>7!#"/32>7!5!67kkH7 B-kk4f>h?07"5!!!#"/32>7!'>5#5!533#67'67#535+P$@<4vi/!sr8]b, NR>D >5ooDIMG H LwX8FD#C|!CH3EC.3 367!'67!>=3.'3#67'67#535dn.G +V>M(.JnKa)*a^b*8Fzz71Ex%gpx::B*kk)[B&CR,FB"(&'#'67#53533#67'6!5!#|u4tqLh "TssLzzG#uo ;FER-G CC~ 5DD22,)%!!5!5!5!3!%67&'%67&'|QPJ̖%L UD7>A6XπL bN<@N,NBBA>AJKq.]~d4QBu*|ezg);&95!53!#'>=!3267#"&53#67'67#535L N]m2@I&r $C !#!E$>D C1ppCxxCY?;%\|# 6FJF#AC!CJ2EC)1A35#767!'67'67#53533#6765353!'67#3&''67& B7S\:~m8 E*kkLii2<M+>#Ekdsqg[WcԺ;=FD*GCCjaaCLF 8:ArR,B-ab,B'Xa '2%#5##!53!#5'35#!3=#3735%3#67'67#535MKMLMhWW:| +?ee?Pxx?A㢢C| EJ+EC' #%!5!#!5!5!3#67'67#535hKO*>D 78kk[OBBICo!CN/GC)"*.!5!##5353!533##53#67'67#535!XLMMLXLMMLK: C1ppp@BBT@&CFM.EC!"(.3#67'67#535!!!#!5!!5!&'7%'67tt1Q >-gg*"NC:9C4?)LBF,Cs&CM0GCQuEPEBqobz{+ &9#'6%3##"/3265!5!57&3#67'67#535K&=8K== D/ZU# G>XE@CrjjG- %JkkCG<> D_-E5D%!C~CL1C C4 26%5#'#335% %!#3#3!!!5!5!535#535#5!5##3ӷP9 zxnnxzJÇH5D f>A>yAAy>A>a &* (8#'67267#"&''7&'77&'77!!5!5!5!53!M3<$TI,C-KJ7  N OZ+XW*W,qGP@h 9*HvY3GETQ MX0)8'55 C#`}υAA?}}?'G V!32>7!35#*.5'67#67'67#5353367!#"/#3:>7 *% G@:&,5! 4xU7 8FzzK}K%K ""1N)z?2??0$6A5<@  " 1 9Q!DO.FC: 5,=@B?3@5/3A35#!!!5!5!5!5#5#'>7#536=#5!#3#3!'33#"/3265[GC A<:58 zmiiiF@JM&J-UO)!DK$>AA?S\{/4)`IA$KAAAnauT+C)%; =6$7&'3#6767&'767#5!53!!67''67#5357*a8K^lV6Tpl7Rxiuc+481 O=J:#kC;R /Doo1ˉ(jQGl4mM8]C-&-OrH:*AOCkkCiV3#`y%9(\.FC$5!5%!5!533#67'67#5'67!#67.'#67vvMvv/D8:pH#!7]Q1SaMn}-}hz  CxBB>*D}BCD[GA[,^ER2@5׍A5.#!43#5!##'>5$7!!!53#67'67#535KMML@9>7; .F"';B:xxfM66O'L!5F-/NB4CACCH+EC' '%#!%!5%!5!'5!5!3#67'67#535KQaay*>D 78kkp䥥>AAAAICo!CN/GC$*:533#67'67#5%7&''6767#5!!67&!!5!5#53533Mvv/D8:p=pO@26/-X%4(Ll,N)BB>*D}BG##O.Ci~DDiu:DDCvvC=>35#3#67'67#535&'7#5!673#3###'>7#5365uu1Q >-ggK,1G+2Z7(K!4N LS>KF TS>hC}&CM0GCTH?`aE\^O[ED^P0FnD,j 1,%'67#53533#6!!533!!!&'##5 C5ssLzzTT1P1Ϙ}&nPFR6CBB`"rCC3n@D*HU%Me%D-C"AT3ECSDDDbT*D*D BS|'<#,J!!!!5!5!5!!5!5#5 %!53#5'675#5"&53673:>7JJs< yIIXt im[1H\^kk7A &%0d=UAAU=?I ?5AN?a@I?R<'d57;L +,* A&G&'#67'67#53533'676767&'5!5#'67!!!!.''>7w\6 7k<< -AjjM\6H9H.@2*X//A=g7J5+l)-sry/C<=F*C ??bmV]8)AI;0az ?AH@uLJwA!sHK K67##3735'5#;5#%367!3#"/326=!'>='#67'67#535)$G驩X>I .>gX `8A,&3K:;0;gg`/412]*>0 "?(;T+A+ld0R̫N,~CL1GC" $735#!!!!5!5#5!5+!%5#;5#535#'67#53533#6 f4KA >5nnMUU&Lzx>AA>x;>:B;,C{BB?V73#67327#"&''67&#3#"/3265#'67'67#53533#676=!&533&'A=8 8%C4U >E$JP|1W+   \>(jD*} 3?nnHdd:/EK08&0(C˙n̄6P!TY_M6Twt<0 BH#%FP?+CCCxH))H% /"(>D%'67#53533#6'67 7&'%&'33##"/326=!5!&'7 4@ooMbbOk:@=H8-A);PNN%Q+^Y'% Pe3fQCV6ECCpeC~y,HF{vI9`i `gYBZ,C0B`U4Va 9$+AG%'67#53533#6$7?&%7&$7##"/326=!5!53&'7x YttMppJ-0(@:'A'@>4A7p}3d̿gI(Xd],POd3fOCP7E CC|1#]8b)$>7#7$AH$L,+g C[+C0Cjj\R1T\!B 6I#3=#35'35#26=##5##!5!5!533&'73!!#"/3#67'67#535W. KK'K'!7B,92 XZZ.* ~ 74ggTxx::x+jZASS$$7,AZR)? CBV0EC4 1Q#'67'67#53533#6##5##5#5353353".53673267K/;"DG 70ccIff,͝KKKK,.,Mss'~ELF ,&jCYE7J\EK-CBBwdBWWWWBaaaa  F_E#GLw0Q( zK~0=(=@!80$C2P /:*D}CCDX*58!O1!@'67#&''67#5!53!#&'3!!#!'67#53533#675!0_! BA16:3U+$$N) dP,OW#N3N 073!3!#3675!!!#)!!aa7%z D%dd=M K ߌ&LVV8SCFM:ECqA6 !+A=:YYA1(7Y67##53&'#535#53533#35353327675#"&5#&''67&'765##3#3##5#53."kEMJ ? 4d<<3$6882=G,)?@ tMCd^KwAA`bAg>KK>gA% 4+$C#|FR/1Dq4pD:3@htb??b1#!@7O?G?]]]]??O7@!#19 4F!!#353#67'67#535%3!!&''67#5!6!5!##"/326HHOjjG- %JkkM "Y= G&L1[l$%C;<+C~CL1C C%/+C LZ@]P"@'C-&)BBU)A$?!53#5!#335#5335#'67'67#53533#67653!#353#3JJIIF}/64y RkkL__01I }Hŏmm55 wl9798&C @@t4F>0#!#!!!!5!5!5!5'!5!%673#5!#53&'7353 ND;;X'!C!L@L(E)#Pc=wBBw=c<=D77.:<@<  )@35#35#5#;!#!#3#!!5!5!5!53!!767!5!&''67&ʌKyyGP@B5JJ*4\Pfn[Kc']EXzSVSS<2=SXAAy@NN@kSXwAAiM7>:VC1;+Aa='+>5#5#3!#'673673#3#3+33#67'67#535L #9@J HŴ9ii @EEM K5!>5IL | "9VVJbb+!7%>C  1B $?C  0C!]>A]>ADN+D CCl)V(D+}  D+z Yͯh)9SȦ<:;T!5!!5!!5!5!5!53!'67#5367!!!#"/326=!##!+'32654&'67#0JPJ'%q@| N %N$C-J@) N"M8,?7-GR- @)1GH2 >g??g>::>lBAd@%@; <$mAAQM)M3;6A!&B1LX (,?5#!5#;5#'#5!#3!!#!!5!5#535+3735%3#67'67#535kmkkɯ#P>FKm#aa3; 80ddfAAhd=}AA}=d2hhhPC"CV4EC! &<535!;5##!'35#3#67'67#535#"/3265!#3!3FäbF/饥dd.* ~ 74gg*<aC# %I::ŶXxCG=CBV0EC*V)D+F4 O% 9#'67!5!!!5!5!5!53!!!#&'#5'67#5!5+5!#L-4#RH,haJPJz\mMylK`%2&Hu]Bf0AAl?KK?=I@?Dbf>?7R=9% )<!5%!5!#!67!5!!3#;#"&'33#67'67#53zzLptI<]vX07E(9Lss/C 27#!!##53#5353!533#3<<7#".=#'>7!5!YWVHgWPW  !! J232E>*!}yp];;S9DD9[ 9; c9D=O7!!&''67&Y"nIM: nM>ACJ,l* PZ?MRG:L'G:N>d^YAnTAl>KK>lAc_Ax== wiw_ZM="'AQ6C6VO;?6Qu$ K!5%!5!'!!#"/32675#'>7#'>7#'67#53533#67'67#5!!!nnKCK/M?)1*T.H*m5V)F4m3! 1>kkLrr>XWti/NKK:H>AjZ62-ML-3$z@(/G,B x@@ *+Y>>0~6 9 A#36!5!!5%'67!5#67'67#5353335#53533673#!#5!#$CUU P?@ 5CssLpO>Ke>=?MM17#536533#67653!!'67'67#53If|&"B0&t*E|fkkK ;,=@B;?*>CMb03(J:C,@t4wl9798&C @< 'H5!!!7!5!!5!!5!5!5!53!%'>7&'7'67!#&'7!>7LJPJk@Cۤ * |f6y wTT7TTTTg??g>XX>D@>9!BB4; 2'&;0;Q:-)5F"^%62367#.'32635#35!35'35#'35367!#67&'7#"&5#'67+5#67'67#535 DiZ@J&⹹Fx LRb< = 1,(g3< ( LIx5I J%kkqTi  vzzzz=3&'/67'67'>=3&'/67'67MfMGP@a[I <|mK;Z?+C<0A?]XI =rL9]?+C<0Avv֢AA@xx@";t_-.0,_2=*^fiFRUI"AOM;t_-.0,^3=+]fiFRUI"AOM4- AW35'35#'67##335#53&'73673#353#5#!53!!!!5!5!5!#"/326=#'>5x%TIIWt$E.F EiVHHX6PJf2!lXP;5,7/_9[>+o0?-.:31=+3?Ϫ B88>m??m9gOF!?MkJ/.xd; !GM%##3#3#'67#53533#6#3##"/326=#535#535#53533#3&'7VJFYYYd  ,/VVJbb.AAA=I?||K88C7F@4 ijDN+DCC(pBY-C0BpCAkkA>(]O*R"1/=E!&'!5!3#67'67#535##5##5#5353353&'!5'67!#5!#9KQNmuii39 >1kk1MMMMIA@JMM@^[?XCCL,GCB@bbbb@____upC.5$$5.Cp,,%/ &JPV!&'%7&&'7'67!!5!5!5!53!!#"/326=!5!5#5'673&'#!'6%&'-PHF/#RV%P/X[#dRAU}-MJPJ<?E;,H]F. ;99>h;> >R# ACa`DA"RQ kQ4FcW_([[$7 I35#535##3=##!#=!33#6765!53!#33#!535#'67'67#53ٷKLL__GO00/.3;} RkkJ;>NJJ545<@ rSS?>@:Nj:<59%C @!2 %->!5!#5!35##!3#67'67#5355!53!#!#"/26=4I«F7dd.* ~ 74ggLIgEH;0]`+CBV0ECmCHHCW(E,S!5!'33#67'67#53&'##"/32>54''67&''67&''67#5#5!##6zLnn<< 1>kk9AOEb&eFN+5=IN" |$~ e$g`$j41$>sUL@=F*C @7,`IbGaMZiaKC 24$^=b-/cS"A O3535'35#5#3533&/5#'67#5!5#535#5#5!53!##3#!#&'#!!5!5#5>N6CPC6a?P?adFGGGEE9GGGGF4ZZ4F=HHAEf=H8EXXE8H=fEA-3,l??l+3' 2OT!5%!5%!5!#3!!&'7#'63#67'67#535".=3673267!!#&&&K?x#x l]]<| 9-aaje= L &OH@I]1K"66e77.6j>3B=F93+N1?,C"KN-FC?%=$2A(!I15;AGM!!!#"/32>7!367!3#67'67#5355!677&'77&'77&'7,&U:(  TXll)4 5;ll'?* < T9P7VAY$u0 BYV/&8H'CBV0EC}}im nqXk f^OYYP"=HH=@ =!5!5#!5#;5#367!!!!#5'67#675!3!535'67#535u=b bccwA#G  =J9J>1D<3M <4ll~.kl 'A .)!1Xn??lO,FC1 2C!5%!5%!5!'3#67!!&'7#'67#5'67#53535!5!53!!3!#\\\bb43 ܟz$y#jgtm 0CCA:N=O@6-V:?4J3A(FXCՠ7AEEA7i %C"(.>q3>7#&'7#367#&'7#7&&'7'67!!5!5!5!53!67!!!3#3#+'3267465!'67#5367z J6H:K(i t R5K=O)l#NY$P.X[#dR.qC3J?JPJi;I  =E ;F+1]F%KFQ '+ J%%$% 90<-&$%$ #F9'994<.;393[f,p]??]>MM>f "< EY<)@<%=$ Yx<;K2(@0W!5%!5!5!!!#"/3267#'>7#'>7#'67'67#5353367!!!!#5'67#67ooX 0?/M?(2'Q.F)g1P)D0nQM'v_` :7llKvA$G  CK": GF 6604<<?[pM-/'C?'0 d4F'2;dECfq '?0/ -@gA Td5#;5#!3=#37#3675#".=!3#67'6!53!!3#673:>7!5!5!5!53!!RV@%\HL;Yھ5:MwPzx}>!"E2/m+I1RRRRRo:::u,Tz44S 6(d='3VV@:L*11&(%( >>V<;;567!###``I````JPJO]FO>GԑFaN 6666/666AAl>::>D,,:@@:,,:66*J #B )@A.+;k#5!%35#!!5!5!5!53!!767#5!535333533327#".'#&''67#"/326='675367!5!6767&GzyJPJ#** x:NvH;V eAA1:23k5'l@!CA> $\x4+<;4, .:??g>::>5"9?/<<<(ddR5`|^P?Q4F6nN1 %98 ;% 55& 07F(< 2Y67!!5%!5!#3!#67'67#533353&'#5!53"&=#'67+!#3:>7" #zuuZs:C <4llK^!gOV*n":M(. D$#54=C.II4CN@98>-#@Z.EeB)4=@VV.E@41ϊ' !-+7 4 ^3=#;5##3!!5!5!5!53!!767!5!3'67##"/326=#5#3#67'675#535+!3&gggggggiJPJ!-<6;.FJ#w,D7,+:4=>! z7bigFJ^GGyGGG2GAA`>FF>5%&16AAT;ALI-*>:A 87C 8&> L7836"<J!5%!5!&'#353!5!!!5!5#5'67#5!67+35#5353!533#3!!#&'C::EPDZa"OMM߂][CCC2CJ(22(BB/R??R(%">4C<*/@LLLL@/"%( 3  $(0C35'35!#335##3&'73673!5%!5!#!#53#67'67#535I*D*+."H&ggK0LYYF# :3iiVVXXXVW+33?:800ZZ6S,z,?C"AT3EC<=(l%!!5!5!5!53!%#!+'32654&'67#53&'73673#67.'##"/32654''67&''67&''67JPJ7M),?7-GR @)1GH2Gq!G 6308E9R'S~ 5?",-JJ hg_^Ps Zgg??g>FF>iAAQM)M3;6A!&B1LX+?!%*/(0,?FD'8.>/lA@C 5OM8;7 \?9CaJ/8,H/&5+;$A +c3267''767!5#3!535#5335333353#33#676=353!!!#".='67'67#53gRe*3!ImADE#%"-0YYgAAQ„#@t6;5A;5-*, 9 f"@G9%C @8 %+N35#35#!35'35#3!!!!5!5!5!'&'7?&&'7!'67#5!5!5!5+!!!!!#DRPHHKHqG4I"d=7U3<@O@FE_N_NEEEE1EX5AAAA5 >; =.D5;+!>JJ?#6M7541+1457E'0l!=#"&=#'67#!=#3'35'67#53533#67&'7#5!5!#35#5'67!&'#53&'#3#3##"/326=!d:#> r5Xnx-R KccK``00lIV'uK=8<-rL3EQ'F5\HnnC"q_ NH7//\)R-@ZH=(*"227!5I@=;95Y+`@j`QD.>L9,5FQ??499>2PBa>=aBP1+Q7 $NR!#5!#!#5!3#67'67#535'67#!!5!5#&''67#5!53!#&'5# K?KKHA__5*  =+ddH,T"z&k&V 77,05)=%a%OX @<&<="+H\//:ϝCFP9EC3F^@@)""730"9*5Gl@GG@&)*:5:(,r<<9* G]m35'35#&'#6672654&5'67&''67&''67&'767&'767#"/!#67&''67!!5!5!5!53!I8!?]$z}oq l34:8!;.)2jPJPJb>>6?=J!66< 5 V98;XI37.E0#8 .,'  !0'!cP5;:)(3,4&'?'P-*=cAAc>::>7 ;K67#%35#35##5'6=!!!#53&'#53533#3#3##5#53!!5!5!5!53!! "!D$3IYuFN1"qNDŽTP@8@DH<7oRÞLC7}!&?==>AC?S>xx>Z??p=YY=-;%5=^b#3'353#3#3!5'673673#!!5!5!5!53!!5!53!76767767'67'767&35#K@e2HE @PJLz' 1#D-8 :0>Tf{ =&p+Z B*F<;;;1<0<96Vq*)7??d>88>]?@@?< 42=8<=k] U(33^@#?< @ ,49=#!%!5!#5!%35#!5%!5!'67#53533#65!53!!!#5!IX;FQ_}}q 66hhKZZ< 1P'0LP^@7ϩ).77/8UDJ/CCC}5;AA;rg==7 W5#!5#;5#%3#67'67#535'67#5!5+5!5!5!53!!!!!!67.'#67'675o#ooo^^/: 7,__{b.H )N,12?669BG^!p.'#XQ HHVA!AR5EjABC_A;:APPA:;AC;3E*G8>#@)u,?:? t99 i35%5!53!'67&'5#'675'67#'67#53533#67535#535#53533533#3#3!67.'6\(P)a[oj Z1Rkl ,7__IZZGML 3?<3=>Gbx)+3Q==>DD>6:*8'<+886.==>3? p(!B1L2T4E_AA% 3=6=6====6=6=;D4-?+A-7!='j( F&=M_&'35#!!5!5!5!5!#5'673'3!%'67&'767!5!&'3#5!#53533#'67#5!#&'7#<)$?rJI4~nBgz05J&oGW8E-KH%-^Id"gSPHGMX:&$T<Kb>-�s?r??r=]e=!!53533#&''#"/326=##!>?&'7!!5!5!5!53!!'H@ 8$ @ (I Y@1h/*q-%RFJ^AS 64->+gJPJF)""(!:Gx<{<{{'5)=+R:;=o/DF2=1 X>7>YG5-G ; &BW]c35'355#!5#;5#3#67'67#535535333##!!5!5#535!5!5!&'73!53='6&'7&'7aa``__)> 53ddNNN1Z'>&5+5<;0:52e4< Co&B+H11p11>Ay%AW2EA\;HHl?e199141?1TLSIRa??(QA>FH=>GO7<  $(,04N#!%5##3735#355##3735#35%5##3735#35!!5!5!5!5!#5!35!!#!!NyLggggFF>  '+/37;`#5!%!5%!5!&'#65##5##5!5!5!!!%5353753535!'6767#5'67#53533#67!#.'NJRR#*ʭJK,k,̛Q3D- }z -9aaIWW'8 ?;DIP%%+$*(- ,zz$77$,++M++M++M++[558/)&J.FBB ::EN %7  _5#!5#;5#%5!53!!!#533533#6753675367#53#.'67'675'67#'67#535o#ooo2*O*{iH ^^2*$O*J@-?30B?]!m301WR +fWlf 7,__lllllf?DD?,g9999A/xtfJ3999(:71&@+j+=;?o+#B2A/R5EoA9 p35#35#3567#5!53!5#'675''67#53533#6767#535#535#535+5!#35#5!#3#3#3#.'#6@ b!/<+EAA!>!.:/304''''403/:'5.2=#`#|F%!!5!!5!3!!TTzPzEEFF5!!!5!!5!5#5 %!iTTi>GDD.FDSD(' 53!#3!5!!5%73#'675&iPA:.KKCWeQ/7)F.EEFZ$d^B)'*E/.r%'$#3!53!5!533%3##'>5#535#33PGIIXL;!7׹Hq.EEF{_)/D%32 %#3735'>=!#5!!!5!5!5!53MY=40KjabiPi(i/A9+?M>>M?II<(?!!!5!5!5!53!#5!#736%3:62>47#".5pJJpP-VK@KxK I1-B)  K +&VNFSbQ%?a==a?PPȊ\tS=T!<1 ' *.4 "<(B!!!5!5!5!53#5!#5'>733:>7#".5pJJpPoKhKK N$# M .*&,4-@`>>`@OOȊu,A( +!$-26 ?; #=%35#'5#;5#535#5#!!!5!5!5!53!!!5!5+535##5!#5#3+zzFzzzzz:z)~P P~T22zKLbLKz^:nnn:Wnn S>>SATTBB^WʌW?;!%4%67!!!!5!5!5!53!#5!#5!5!!!53&'+5!#!J(~P P~TL6LbrDV  PX"/*<B>>BAJJ@ʯ<>VATTAW]]! <N67#!5%!5!3#67'67#535675!5!'#;#"&'7!#"/326=!#J!ss^^"F @.jjb'F 4N-'X4H>+E#&#K&^P*! sL~)!JODD:CC&AT3ECk%7BB;7.E@0=hMBB19@(0P735#!!5!5!5!53!'67!5!!5!5!5!##5##&'7326=!5!5!5!#3##"/k:6:tVt:;vt}nIK3C8A0F60vZPP!9<lO1441:77:+#885W771331 -F?':A !V81::18m7!5C3%67!6!&''67&'BxHYJ H!!~JBO/ ):EyTBXVBUyy_O8<#)G26=#'>7!5!53!!#"/'67%7&767!'67!&''67& ~RX8QHP;\Mj;oM5LgnMj}"x<LѾٝW s?08~cAXXAG$AS-['ku'r4F46OL2:P!=`H?EXT E=/C3%%67!767!&''67&''67&B'5VI&V1IG!ﭤ!~U>B5R;0DFRFNx~6,EwUBYVBSwmH95HHX;  59%67!!5%!5!'5!!!!!&''67&'7#'67+!675!yNtR00Ж\n aR(S߹ƚW?WuryPOL+66x7758mAA":H7+ACAA+(-)8+<~eN*4q.Bj1:G IUOjshVOTT!۪d*M5:$S7 7-0/UMdYVB@=BH[B@(#<)#'63'67&'76265##!#"/Ei4@I ܱ)g\=/L=1i(Na&OID3 4:DUAZQ.;:7|+DV)F9327#".5!'>5767#'>7#5!#3'67&\  <   *4=.$'WQ3Mv-Qx  ٫/efIhu#OoP2Jƿd915Xfa5Ca??4+>>7@~CDC17>7!'67&'767!767!'>7!'67&Ǝ@?`1M4V6N櫼]3A?vH":=Yݛ/-F!=-D([+>3F/Uwy=069Ono6=,@ :*A%V*> *8#'67%!5!5367!&''67&'%767!67&M-#$CI)PPFDȋ'j?36.J_4!!'Bs<)^ C&JAAXX2'>T9B?b`A>:XYv@396PQkA8\13O92 *?C!5!5#;5#767!'67##5!#5!!'67&3#3!#535#5353!53#3hܠ噙3sYlAg'tMpMԌ\PYKMMs?]]]O1743LE28Jesz>1A14????AAA] 3 0C^67#67#3=#;5##37>73'67&'>73'67&''67#535+!#3#&'#:& 5c@'"(kkkjjjjL7v!C 1֜c55,% N&F 4q0<>9$(ChGƨ?m)d>ID$?T 5>Kg +Cggggg8g!w7;%=Q=5%(B ==f:A3=kAF}FAcU9Ra9'5!53!!.''67IPѲ)01Տ)FFT<@珏@7n]}V}]ʤ$01Փ$EDDE?@6xw7@?̀41 %7&3!!&''67!5!65~;]G7!5!6=!5!PP4sh!—12׎!h1 Bb1C,ee,C1bB D:!5!6=#' %!!.''>7I>ǟ$01Փ$wDDSD'Dz=@6xw7@=z%1 &#36533#'3!3!.''>7!53!PPPEbh!—12׎!hbEx   uBb1C,ee,C1bBQI-)5!6=#'67353!!!!.''>7I6I?w>KP=x#.2Ҏ# ^D hP*5'{{C Dr6@1po3@8p:9@!5#!5#%!!#"/3267!.''>7!'67!5!5!5!5!53!!v -;2#š01֏ N-9QnPnZZ!Z>G3<AU*A&UU&A*U3 Z=HAPPAH,78&'#'67!5!67!!&'!55!!!#"/32>7!'67Y5!5!53&''>'67&'nλ12׎nPK NI4?B6X4Hb6qK ea-Uc'C47"#".=##%533&'#'mHMr'(K#i.(8 L (A30/54K#]LyG]Jwoll;oo;l+@\C/, *&CQA -% /#'(*7!  )@YwwXlmW9A 17#!%!5!3!!&''$7!5!6!5!##"/326O(P k(o Pj 49v`)T*5B6<|T+/BJ]BeM"C&B,')CCV)A,6#;!&'!#"/326=!567%7&'67!5!67!!&'!5=_Z<e(N6PK0& O7R!2`3cD)lMN r)l_\_gTShCF#B CYw(~_1oo0q>kC,. '(C_>1T45Q,BG3&'#&'!353!#5!5!5#5'67#5!67#5!67!5!67!!!#!#&'# f:;34;PQPQL[` _Ne ^WP8%8GH7ddAAm1D1HEs>$2;'*@%(0@/";2$>qGH-H1m,7 9&'#353!!5!5!5!5!5!5#5'67!5!67!!&'#!!![=X?]PJmVi mLOr h]mCIZ[HqqzuAAu$2;$.?%(0?4;2$>qGH3;\:a=p%?,r3h'"5@+K #D67!5#33!!.''>7!5!#'>7##'67!!#5#"&5*/!(32Pn̟34ݔnPbKh*Y>L! SLQ%-LD*l%2-*n-J_A8\Bh@@hB\8ATuv57,]`Gy+?,+H'@<,3L#3#>7'675#535#535332>5#'>7#5!#"/3!!.''>7!5!5ꪘq N6cP+EP,.AZLP#23َ$\9d<&>o9\7#536=3RXRL2 mLOr GFLGNNfV.JTOVyxWUAWA/(ANA+/0*ɃCWr%;TAC$*55. /<#)@!#"/326=#'>7!5!53'67%7&3!!.''>7!5!;\M P_7WFPT9p:D;;tP>PPp!̚34 pAG$A H1AA]]/](nw(wMA9_BkCBlB_9A,7 ?&'#&'7!6'!#&''6767!53'67!5!67!!&'!!!!!;-`0:+"722s\RF^-19JR mYOo `\V**=2;=02#!N>Abi#"C9VA+AKzA)#%A}HA":>:=:.'*:3!!.''>7!5!53#5#'67#5!5!53#3!535#53533Pn̟34ݔnfLLh8[Y5I ƷFO)PA8\Bh@@hB\8AȆ9'3j>Ku7CCExx   V!=#3!5#"&=#'>7#7355!5!#35#5'67!&'!5!&'#!!!!.''>7l9 lF+vX^.TGpMxVmg4", fhmV-34ߑ-B//F !5$,24F4+#d..=1h.)C0CFl+%$!>mFC0C).1=-GAa<-40 >S3@6/A'0!!A7TAP5 X2DC3/J#1H&'#5'67#53&'73533'673##!#!67!3!!.''>7!5!#/VJV,~WÄ(@93;+`J_)A,9&@^LLNTPu$Ɨ34ݔ#u52s>^F4>P;6H#7QAE!=B;?C3) 1;?4VBh@@hBU5?/J 4U35'67#!#!67!3!!.''>7!5!5#&'#5'67#53&'7'6%gh4a+20:%9^_LLNTP}(34ݔ(}GR`'zaJU$}PŇ4)/9 1 7"=|!/!!:< 73) 1 9>2NBh@@hBN2> :6M8iCrfZD87!5!`7YXIIA2&A.|?-&=*?*)=,>DQ5;LGI 6:>ASS#C#f]! RYPp!̚34 p0?%,/Z]lQ U.!3K T3!7*K:&=')6W=#@ I4/=h8= Y:kO?9_BkCBlB_9?#G `5#5##3673&'#&'7#5!5!5'67'67#5!67!!&'!!!!!!#3##"/326=!ުJJA#\&Zv,*bhnA.!M!v2I,A'V! *,=-M>-40 >`:@$4040472=@P$A &@2!2/Jg67#3!!.''>7!5!3#5#'65#535#533767&'7#'67!'67&&'7#5!533##"/326=!Q)5Pp!̚34 pIIXM9>7׹Hq25170-2+AOc'cM"-c6)N`'mPSS(M-?I# ]K!)"sO?9_BkCBlB_9?U΢9'3@?ņ#!( $%6)C 9Lt5 <4+<^^<_5>S3: #Q  $3[%!5!!5!!5%!5!#!#55#5##33673&''67#5!67!#&'!!!!!!!5'67    LLJ JL:n<2"M#p8:,N,*[`n6f777706'*'0`0000&/ 7 *2<(E>.3,$>I/A000006:Fo659$%67!5!67!#&''$7&''67,o+5N, L,x0 8|Kڃn/EU]XSER3P+?)C2!*!.967#%767!5!&''67&&''67&''67#53673F7D I$l(@ -\$dq*n:58+\*V:8 ;7"iu K `8W,.詹DDuMBQx~K>J2>*Z7W1$.3BAjo84"."267#'67#53673&''67&%###53#5!#3@/@ 5 ;8gr K \@P3:ES~,}M5 NS.+)4CMZl8@h2NKY8Y1AD DD".$@67###"/3265!5!5367!5!&''67&''67#53673=;@ 'Q'fb(K7!'C2> ]@R=@<3F1T,O65 ;8grJ j.KV!&&Rz= 8K*1>T+* "|2S0^8Z.#'4C`Gl8[R<8֞# F !܇_)l:!.&.%3#'67#53673&''67&'67##5##X0<9!iu K wBT5BGb,Y8*HAY KICeY$3B9rcD;^3LBR&''67&''67#53673F7D N !@94.83cO %)'( 2 ]58+\*V:8 ;7"iu K `8W,.:>F# "&wDC@ <+Q2>*Z7W1$.3BAjo84?AA%67!%5!67'.=#5!53!!327+!#&''67&''67k9(4w$K&(& yPg:bK%9i&ږ[ 7#5;#:9ep I U0C68(M{"nI(6(=gVnkuuL >=753 t«84CMZl8 8d0V2\@T+i)( 0rkBBBFH:>B kq!1#F'67#53673&''67&'67#767!535#53533#3&''67& :9ep I O,/6-Lw"qC%-*6[D>mr=?PEk}wxts"!4CMZl8 8J0H#[@Z+j#+unwadACzzCAsP1B7]Y;B-Sj!.H67# 7!!.''>7#&''67&''67#53673346=#++6[ pt*a&'e(v$2(6& Kx"qC%* :9ep I gpV"-}SD)DA=3om4=AXV@?0>+]@Z+$"!4CMZl8 YS !.#17=E'67#53673&''67&'67#2653#"/'677&>7 :9ep I O,/6-Lw"qC%-*6[ M8\@QEM"7#'>5#&''67&''67#5367353532.<g+C$@<5vi0!(sr9]c,Q--%R{#pI/) :8!epI NL (DY=G H 1X8Fݹ67.\@W*"2CfARR!!. '<!67#'67#53673&''67&5!!!#5!#'>7),E6(=g::9ep I U0C68(M{"nI(D4tMK-3&UgT.)(84CMZl8 8d0V2\@T+DD{66bJ1HU!.%,04%!5!#!%'67#53673&''67&'67#%5!5!LK :9ep I O,/6-Lw"qC%-*6[~X[e"!4CMZl8 8J0H#[@Z+j#+u*BB$1#A'67#53673&''67&'67##&'#'67#535#53533# :8dp I F2-$O"uF)*11[N.KMV7[M*4CMZl8 ۭ;7%'d@]%b)zBBu5BCC56H#3=#67!%5!67#5!5!5!5!5!5!5!53!!!3#!!#&''67&''67 _6%nHkHuTu;ZZx7[(bj &;Q@C~AAc4B!S<8C;A75>CC>5x;{7&''67&''67#5367367%&'7&'7} u %$4F5 CIRY,6+H<# I ,#Ak"c<% 87`j G J'&GB_3YKNHc4eIumUC"*ICtC>A?*A+6 6'?*zY?W~/"4CRU^F 6A_PQ/KYSS0TU!1F%35#67#%!3#"/3265####5&''67&''67#536735!53!(*7/(6[ CC3 MJ/5 Lv"pC)& :9ep I M4X‚+&)uU*E+=D-*W*[@[/!.4CMZl8=mm!6$+?C#!#5'67#53673&''67&'67#%7&''676767&5!MO@ :9ep I M446&.Mx"qD, '05[.BSMC&J5G;:~*0!6S61!#4CMZl8 ?O0=;]@Z0c0} :"& E O&. '.6%!5!5%!5!'67#53673&''67&'67#!53!3#i;8fr K b=.5'3R-N/#<8E VEAE.4CMZWMEB18=X8X0s*7}B!1#';'67#53673&''67&'67#!!'35#53533#3#5!# :9ep I P866--P~"uG)+49gHNLPNL(4CMZl8 @N0B7]@Z*i1}mDDD'??!.D67#3!5!#535#'&''67&''67#53673673533#3#-*6[ !)9,,/6-Lw"qC%* :9ep I @ I NU#+u@DD C]Toi8J0H#[@Z+$"!4CMZl8 NH FCDC)# A%67!#!&'367 %!!#&''67&''67#5'67!5!5#o=,-z|Jֈ%4=;l|(ؔYw$;[C׀z?X4)yWopV..Z-= b>[G;6gJ(L;N7\ A>)FG:7G[>].$Kd'67#53673&''67&'67##"&5367'&'3:>773'>7'6746=&x85_j G G,)5%An!e9'G_}dcJL9@;&'&!#gg zD<6x92H4F Ni7BD%67!%5!67!5!5!5!5!53&'73673!!!!!!#&''67&''67i=+' EG#%IE$7#".='675367!&''67&''67#5367335#53533#3673#67&'6KQ%n*#4 L ><4^,"r HHpQGP+#ZvH OFM`!gYg(6L2#=, 7#'6735#535!5!53!!(7EG ~L%/0 &Af!_;! 85 ak  8& w c()h w I#LI&$ZX-TJ5T3=9uS?Sw+4B_XbX<?W*A$PP$A)V8Z=HAPPAH!.#;K'67#53673&''67&'67#%7&''6767#5!!67&!!5!5#53533 :9ep I P'+6+Kw"pC&)-6[+>_BA!*0,A&3{$T N!#4CMZl8 3C0D\@[-k!0z"#C$+Cl|DDku5Z@V,k"0}FC2aB!.8<@67##!#5'&''67&''67#53673673&5!5!'05[3KOy >446&.Mx"qD,$ :9ep I tJsvV0} 5`5sC?O0=;]@Z0!#4CMZl8 0otIv~CC^!.#?O'67#53673&''67&'67#'676=#53#67'>753#3###53:9ep I V736+,Ox"oH(0-=g8KiJ @*@ >@<66 N bllMll *4CMZl8 BN0D8X@T,k$/F#PdkBBkc+&G"F:8#BBBnB5.#+/F7'67#53673&''67&'67##!#=!%.''>7#53533#w 85_j G I/,5 'Al!d;##&4FH?IR&9\\9&FZ J Z"4CRUOU >L09:|Z?Y~+g +-f-@HyL,^^,L8hAAh64 R%67!&'7677>=#'67!'67#.'!#&''67&''67#5!67i?%5pY\!pG_!`\:B8r;L0W47.–t'7x:1 ~:+T 7,,4hjY|Jx2,7W!44D67#%!!&''67&''67#5367335#53533#!!5!5#53533#-*6[,,/6-Lw"qC%* :9ep I OOU#+u Ahh8J0H#[@Z+$"!4CMZl8 DH@vv@AA@xx@1#'+/3<W7'67#53673&''67&'67#%#3735'5#;5#73!#3535!!!#"/32>7!'67u 87`j G J$/5#Ak"c<%%$4FK렠*KMoJ ,.I^X?L+"4CRU^F 3O/?*zY?W~/e"*f[[[[9UUU?c@??&v'CDKT8v'% &,2W%67!7&7&'6753#"/32667&'7$7!#&''67&''67#5!67"i=+'fNMWXQ#Y bL;P7].D5g=P?R>XT"%JKnV1?0˄A2C ``W[.#'+LPT7'67#53673&''67&'67#%35#35##!#!#"/32>7#'67#5!6?35'35#u 87`j G J$/5#Ak"b=! %$4FK!05;nPBA.;M"4CRU^F 3O/?*zY?V*i"*x~_$)/A_gd:T?/~~6x.#*/Gj7'67#53673&''67&'67#%3>5'35#%#!+'32654'675367#5365#5!#"/32>7#'67{ 6-]gFsH#4 =b]90:;bVWU F #:.6DJ 1-j@%MVYqP %H1)h!a7T 2CfAMTrr^a "E1]k M.4CMZl8 BU0W*[@[/g&)uR]]<]ss};A AW. N67#%5!365!!!#67.'#67'67#'67&''67&''67#536*"2FA G D)!'->55AH9V"]BGM G'HYF)$Au!j:* 85_j B !hAAOU .-4CB]F>N)]Dd;C:@AC g'*:+a?_ !"4CR.$kq7'67#53673&''67&'67#33#67327#"''67&'#67#"/326='675#535'673&?&x87`k H J,)5" Ai%e;&'2HI 4%<5L  :J=5G^$gK!I6=P< ?* :5 ==ffB#v86 o=6,<0 $4C=jOU =G0<0xW?V|'p"-lC|hPof}K=<=Y~CV)A+ DCC#6>nXekA b67#%67##3735'>7##&''67&''67#5367367!3#3267"#"&5%$4F'*)I'hyQI2**5#@m!b=!! 85_j G k9K *63H#!a0F"*.?67Am@(g@ |;G/?*yZ?V*!"4CRUOU q ,?76 -33> -.#',8>D7'67#53673&''67&'67#%35##!3!5!5!3!67%7&| 85_j G K**5#@m!b=! %$4FIz#^|rK͚W/ZC*j-^"4CRUOU ;G/?*yZ?V*i"*O=BB^gH`3hI7Lb8X. LW67#%35#35#5#6%&''#5'&''67&''67#53673>7#5!!!'767#67&+2A SF2I*F25F$Hyx 0>b$]9&85Yd G J"(</D/5D4C>($q}0_DDCX[@=C 7&3,uT?Rz''$4CRUOU 0FBB^?=a-*T35#5#667!#3?67!5!&''67&5!675'67#5!#!#&''67&''67A!Z7&kԉB0MJ*5YU_q[Ll(aIT4Ȕ,9 4Z(bc$*;^AC4G0@>? TJJd??YD+>2K<-;'8O< <4??zf99f>c)=F7%4;D(K?.%$4'7 c35#67!7&7&'675!67'67&'767!'6=3533'67#3&'!#&''67&''67eX8!m`[qc`@ d c''[KB,@/GT8 c>aMBBY]uMq5Y|(n^&#;S:sI/A[;!(=&a<&.=.:B\9[<,) / .;;+*>d.a}AA:' I:V5&=;"*r'67#53673&''67&'67#&''>73'6767#7267#".535!#5!53!##"/326=s85Yd G @,/4*Bl$e:+!+AQ60"+6VA +q'`5|D%!"''7KP&19.) 4CRUOU 4E1?"]?Z!i!!7+.(4Bf +$>F8Can5=/, + .77  deeFA "3 W[67#%&'!5!#5!#!&'#67'&''67&''67#53673673 73#325!#&4F U[ u?0OMZ,`j)5&5 'Al!d;# 85_j G 1  Qb ̺EDF +-2 Sih++8i+?G ?{hIA09:|Z?Y~+"4CRUOU mZ J)M"4CRU^F 6I3?*zY?W~/g3-v0F?7v/='5\j,. COS5#%67#"/326=####5#5&''67&''67#53673!#5!5!5!5!!5#3|#&4FtA3 MI>#/,5 'Al!d;# 85_j G >"F2SSE +'C&fW>L09:|Z?Y~+"4CRUOU qcD#G9EA)BE\\?;I1<:aW5aj??ic4]d]U/^d?\\. a67#%67#!5%!5!!'#;#"&'!#"/326=!#'&''67&''67#53673675!#&4F!uux{-(V4H<)#K&^P*! uM7(5&5 'Al!d;# 85_j G Y#F .IF +)!JODD:CB;7.I @%.F6BB1'teIA09:|Z?Y~+"4CRUOU mXj1/%!."&*P7'67#53673&''67&'67#%!5!!5#!#&'#5'67#5!5##5353!533#}86`k G R%;?b!^;'8E'GGLYcMmkSSKGLRR04C>> 85_j G F&(+) HKJ GJ+)Cp"h;# '%2GʨVptVVVV4CRUOU .;CK00)71'<]?\'e'p.j67#67!7 7!5367#53&'73&'73673!!!!&''67&''67&''67&''67#5367367%&2FT8 1=EoiMC pC$H)H!XnX=e_ip^DA=p; Cp!h;$!85_j G F!'RH)8RFH4?6=(;89:NE6HJ`MNN;<=!;gH/@(:=%=//Ik--)]?[)44CRUOU ):w.$)-15FN'67#53673&''67&'67##!#3#;#/67#!#&'3!53!x85_j G H'*5$@n!f;%!(3F7JWWWW-d)FjC>04?)B2jD ' 4CRUOU 8F0@%|[?Z/g/-}z.Ou0"-F+;-<AAA .$(,06<BHc'67#53673&''67&'67##35#3=#677&'77&'77&'77"/32>7!!#3#3#x85_j G H,%5$@n!f;%%$3F'B&> M<K &:"p1b]I10) 4CRUOU ??0@%|[?Z/f"*b_\\ftzn$aw ml$VdaZ-oa<;C pvA\:_;bEi67#%5!#5!53!32654''67&''67&''&''67&''67#5367367#5!#67&'##"',4F2FNAN"z%~ k%dRx$+&5 @m!f:% 85_j G a}v$=49ALBb&c  AI+5=II3YYY&H(^;c-)kQ;Tf'?9/cZ=@/9+{Z?[|/$4CRUOU vkEXAAm_=N,aFbG^EXe^I.$Y'67#53673&''67&'67#'67&'767!5!5#673#3335#535#53#3&'x85_j G G,)5%An!eC@tzFfTBMMHg}' 4CRUOU =G0@+~Z?Y*j&%A(=P#U::WBMg-B"Y>`r`>_CMBhK&A#9;;b67#535#''>7'676=&'&''67&''67#53673753533!67!#3#.''>7'!7FWT!*54@=*+ )5K7!H))5%Ah!_a$}O"]z?$(CTB%S35oXC&-J4!9?:F/B&vW?Uy, 4CRUOUQ%WWCx'(AC[-E%{MO}!E'^B!%o67##67#537#3735'5#;5#'35#'73673#33##&'###5'67&''67&''67#5367335#535#53&+ 1E,$.;,lppIipiippEG߯55NLKpJK('@u!i;)85 ak G  xxJ#!OZP,E8B7#'6%67#53673#&''67&''67l 11Xb A J'*0$@a(`>$)6Rb3334444qx'8 jy*1' Es%^3R#,b A C6814)@b)e;$# 23 2CXOKX L09:|Z?Y~+g +kAHAd@#*\`67#'67#53673&''67&'67#265#3#3##35#535##3&'#5!53!#3#"/'5#8 85_j G J-*5(Aj!c;#$$6F wCvIyO}6+OML?86:4!4CRUOU ?G02UU>=1M(Ap>#BF^7'67#53673&''67&'67##!#3#"/326=####35'35#3#5!#53&'735336w 85_j G I5&5 'Al!d;##&4FiJ8D; LIFGgJEIVGQMU"4CRUOU IA09:|Z?Y~+g +~?R+C)l0?<'03楥-/+B<; (7;W!5!67##!#567#!!!535!5!53!53&'+5!#35!3&''67&''67#536r N$N>& 8EP} OP xG ~K-3+/&Ai!`:!85 ak H&.,,l!#=>>=AJJC%!#CZZTJ9P8L2wW?Uv&04B_ . 6=AEW#5!3#5!35'35##3=#'67#53673&''67&'67#%5#!5#!#5!5!5+!+GnF 87`j G M/4!@i"`= '!5FNH*JA\\7X\XXz"4CRU^F F33=&wV?T}'q&)aaaaAABcB. ;k67#%&'#35###5!'5#5367#' 7!#&'!#5'67#5&''67&''67#536735!#"/326=!#&5E=[ ȰF C aj* r?Po?6E6=tGWJ#01Bo!c<( 85 ak G ~F/7A;G8 TC$A#LJ,4JJ>!?0A '>Z2= ,ol-=8W{3F;[?W}!$4B_BTJ5LU)B*9 {67#%35%5!53!&'5#'675&''67&''67#5367367'67#535#535#53533533#3#3!67.'6%$3F|Phd| JE1H, @n!f;%85_j G V\DSȥMM.@425AD\r'3BK"*==>DD>,785/==>3? m(9/|[?Z/) 4CRUOU )75<)-ީ'#-C;=6=6====6=6=;E21:+;28!='k"% A $(/n!5!67#67#5#675#'!5!#!5!!5%67#!##!#&'7#'67#'&''67&''67#536735!53'qFc8UAj+>o&www;%$3FD-g ȉb j^[$&**5 @n!f;%85_j G |N2-2g.9:){'C2+(u.-^--"*@,J54<:A54,I1;.=4ga;G/9/|[?Z/) 4CRUOUsG.#7;?CGk7'67#53673&''67&'67#%!#5##5##5!5#5!#53537535326=##5##5##367#5!!!#"/t85_j G K/,5"&@j!`<#(!7F KJK.򖖖n`E_E^K _ '7$4CRUOU @M/<8xW?Vz+f$&ܣգ8AA44b44b44b44\ @#??1A ; 1c35'35'35#35'35'35#67!!#&'7#'67+5!67&'7#'67+!#&'!#&''67&''67<_6zjuu]= ElO=iV=4I+!&OFo`F7KuqU2  7[(K$=P:11a111111a11114B(&4-+*)1"5*; .#'+/3UY]ae'67#53673&''67&'67#%35#35#35'35##5365+!#3#"/32>7#'635#35#35'35##5365+!#3#"/32>7#'6 13W` A I'*1$@`)b=(&4Q3334444qx'8 jy*1' Es%^3333333ry&8 iz)1' Eu$^ 2CXOKX :J9~D/-EAXl+ $0^K"*`MMM00.02* a!9/|[?Z/) 4CRUOU "-!1:/304''''403/:'041=#`{2 3567#>7#27#"''67&'#3#3#3#67'675#535#535#&''67&''67#536736767&''&''!&533#67&'7>Z#2:# % 7 =F<09M:f?&naahhhh05 ?Ijjjjc(8 ;[\5 6-]gFr-C "0C *-1 zH / A-L4:==1BD2%ylvB4.BV7989;9J=C.B S;E;Bpa;7+4jOAWr(. 2CfA24%5&!0&8#t}<bxgLfSXa25!!!#"/3265!5!5367zx'R.nk%(ThDDdPFV)D*FyVe$A267"#".532'6?367!5!67#"/32657[H -$!-0-L=|`O=JcQqk<*XC( `C9?M$. !HUdDDiKE&U)D,6 ->!!#"/!!#"/26=!5!5367!5'>7#267#'67#!Z` 20'Q[|)QHSkNdOHMz/! MM m0/H4BH#C #|BF(92Z2:2DsZJe?/>(5!!!#"/26=!5!536?!#5!53!##_p&R#zsH V'TJ\KuPuKCCaQ#EJ"E $E]7All!F6%5!5!5367!5!3##"/3265!67!!#'675367xE&QGZ`o%N]Z! <LFpO73EBH70*C\4?BB`H'C?B D5/ /*Dv5$K.?L@Q:% 2'67 %&'%&'5!5!5367!5!!!#"/26u$K@R# 'H%yL=;AKdmS/?u|)QIRkNDx/HKKNF5as'xaCD/8AAZ;CH#C "5%>%6!7"/326='75367!5!7'6!#&''67&'i?C$]F!B8xDXafO`iFAAha(6>%!#"/326=!5!5367!'675367!5!5!5!533#3673!!'R,pk'&k0_YDO`R6%PWeRR>o)i`A5,=K35  07!3!5!5#!5#;5#'5!5!5367!5!!!#"/26_.MɄ]4XW~u)QHSkN 'DD5C>,BBP4CZB-A ^>_H=9D1CXN'AJ5!7#"/3265'753677.''67'6= 7&=67&&(6>jo*!P9ip2,A02BXRBC59=4.;65>6FC=T.0DDmReES+D+ GCU.I?E aia8^BF 'l8qHD  G/865!!!#"/26=!5!536?!#53&'73&'73673#&_p&R#zsH V1MG\K!C('%C-$')F#KCCaQEJ"E $EZ4=50;HE+EH:O=6#;:H5!7#"/3265'75367767#5!53!!67'67&6$7&'*(6>*!P9ip2,R3--?9OHQ1-uH;VtAe8IjvV6T|DDmReES+D+ GCU1 #DUCkkCqU(*a{%8D/Sy91͈)dVKi5lQ8)/5S7&'#'?&'767#' 767%&67%7&5!7#"/3265'75367>Q0=N-mP5 +PL{aH ]br65\2^0|d0_(6>*!P9ip2,n%- OC$xT/ . FLC0Ajc<o. @tYm.r[2gl0eDDmReES+D+ GCU75=_#5!%35#&''67&'765#535332767#"&5#3!53535!67#"/326='675367H{{4(-880>6--+JC 4d1f7NIJv?bU!C!RM `rqc7,9_E.??p4sN23*1`pF% 4+$C#}@>>P<7'67677#"/326=&'#3'6767&'7&'7##"/326=#535367!5!$''>"'b=Xl#EJX[ oqfQ#(E'6* "+@)C.>Z% =)50A7& A/zFGbwe) {{l=@(ma<*E 5B0[apY(F,erT"!cu%]HEa~CXiAiJ*B(dAW$*@@I-//;$Dj67&'5!5!5367!5!!!#"/326&''67&'7'67&'76#53673#3#!7#537#537#533#5)4177 T2KI1Dhxr'SA[s"'o:!.#(!!.#('3&8A1=46)/=46)$@3-TL<e\Nn=LG #G@.%<<@1@_3A H*$# *$/%#*&)/!av@ > '5;6>>6;58=v#f!#5##5##5!5!5!!535375353"/3265'75367#5!7!!!#"/326=##5##5##367!5 KIIQx7+;*!fm2",4i| .-<, kFiFiK Vܣգ8AA44b44b44b44 D,HLLDDeMfE?1A @#9T*H  !#5!#5!53L@LP裣R7 1!#5!#5!53".536%3:>7zLTLzP=JJ&& P#=WEWN/,[Wؖd ! B?I> @4A 8=D" 17 ;!#5!#5!53"#".='%5'$7%32>7<uK\KuP9O *"QEBAFA-rn-E8EՔg 6:A   # DD`B9$3D312:5/> %!53!#5!#%#5!#!!#"/326=!5!WuPuK\K&m&R#zs%$ Yll몪BBDJ"E $D2> !'!53!#5!#!533##"/3265!7&WuPuK\K%ZP,Z! /;^X70%67!!#5!#5!535!67!#&''$7&''67 l4,D~uK\KuP"!M4n,b;hH^PT%zzgtB@P CCBj=e;p7#5!!326!#5!#5!53>VJ +" z=)t>*+QuK\KuPAA+.:# 6)8?/CC /ՔgN7 !#5!#5!535!53!677&pLhLpP2~P~Z=c6p9mdEE+../:> /5!#5!53!5!67!!'677&''676767&AfKpPp( P _9YtCdQE(_.ZJLDQ6zzllDLJAND0S. De!> $!53!#5!#5!!!#5!#'>7!5!\pPpKfK#v!4 N%MNgt2%]]dd{BBCAx66&D6D '#!53!#5'!5#!!=#!7!5!53!#5!#MLLLML(PK0K:E:?ݞ!ll͍07 )!#5!#5!5# $''67!5!#!!3uK\KuAU.@Bt.H (hMN-y7g٘gD^|j5JGYAAA&HP767#'673'67&%327676767#"'.5!5!#5!53!##"/326=(H9. Gj/=I ͩ*_>Z !+*"$ K -89,97HKP3!AV9" *:.*^qo62>G?H.H' \  7:7&EmllC!A "5A %!5%!5%!5!%!#5!#5!533!53 ...L6LP<{ߞgBB4F> %!5!7&!53!#!!!!!5!5!5!5!5#\=DA=?uPuFF+f+'KX'Wbll@BB@>7,04!.''>7!5!=!5!5!5#5!53!#!!!!)5!"23ٍ"1>yPy>1//R/ AEnF~NN~FnEA_>[,SS,[>_]]0J 7;67!&'!#5!!&'#5!#'67&''67##5!535!xSO_a\Lb]L2O$OL*aOKV!kLP$;XH(++(Ɍ&+>(.>*)hBA<x8MF !%!5!!5!5!!#!!!!!##5!53!!JM  6=J`NKP- _DA'sB6`sCF&!5!#!67+!!!#5%!5!!#5!#5!53$`aO4L6LP6X+&/"6<!`<@ /!5!!5367!!53&'#5#5!53!##!!!!#5!5!8@8P4?)(%Fp%+YDPDP'<prPr0xx_a`YhAAb_ YY a`Av@@><+/!5!5!#!#5!!5!5!5!5!5#5!53!#!!!5!6D6ZPPTIPITAAAA6212|AAM3C@57!5%!5!!#5!#5!53&''6753!#"/326=!#&&;L6LP@2D;6@?0D5P;(R,eZ0% PXX54''$7&''67&''67#5!#67&'##"'T@LPLO3 !$o|7PP5Qc[1"!"PZ.9)qXX 38(&b@`.(qP=Jj' C6·dd77,,20"?$S=ArxC___ҜlD@HpuA1CAd?vpt [ej9A A&'#!%!5!5!53'67#5!65!#5!53!#5!!!3##"/326KgPO(9:O LPL #:`)T*jR3h8";tA5"o>%PPߠ#!> 9Q,AV)A=A"&*6%+!5!5!!!#&'7#'65##3735#35!#5!#5!53iOBB沁!xPL6LP]M>>M:E>GA5-S5@0%ee9kekk~~Q3C=PV%3#5!#3353367%#"''67&536723:>7'&'7##5!53!#5!7&PPPPP&W7=9Y # E@9%ttiK:| 2/+9 &acNPNAg:S;=;::SRs!}S{&). 3&C"+y){ %88+0ZZˌ.{)hi%h!A\%+".5#'>7#5!535335!!!5#5!53!##3&''67&'767!#;:>sM #A>6sg^bNN.@AmMR,5zPzB'A;$1&:X#vSRR,UV3U %41s-)6 (-0!$=8?0A Mh_@VV [>hJ1!6&0L)? D>/42?9M#  ) NK  ,0!5!#5!!5!!5!!5%!5!#!#5!#5!53!#%5! 0Nl    LL-JK~P~K{TIPSSSS9P,~,ۏXX!;;"A G3535'35#5#7&7$5#'67#5!5#535#5#5!53!##3#!#&'#>N#pa?P?apqGGEE9GGGGH< <==CEAB~HHAEf=H8EXXE8H=fEA[NK K35'35##3=#5!#5!#5!537.''675!#!5+!+!#"/326=!67. ~MNM~PhA-8A{LuMpMu!Aq\! H?HH5G|H}GG䥥Z]B^ (*A iS<47".=#'67+35#535##5!53!#5#KR K71n:-vwNIPI;;B==u>>7=>BfZ +$;79uNfCiB>;kGGk;H 7H%!5!67!!5!5!5!5!#5!53!#!5!&''67&'7#5#5!#73#5'675&e oE>+@- ,KP6ӗpW93UA;Bvl<+,KKAFQM$73+?A458.xNN8;@54@!,:!L:!GZ %!C%,ktH<U[d&'7#&'6767#7!&&'!5'67&'7'67##5!53!##&'7##"/326=!567535!674: 44+!49#R-48uWm^mwjRH<7%RKP.1?b0d~.(N6PK0& ({T4Q5p?(,('1J--(0c^[=I9=;V1)O=="*4* 0PjxNNUAaa3a_5F#A AKl*oS>9g<<%K LP!5%!5&'#!#5!53!#%5!!!3!&'#"/32>5#'67#'67!53;67!5!T42JK~P~KH5xkM?:<,nb*# ({JWYtxP++W++ !}NN!44#>>2=XU?AEVw>*})>/G>+H8O%!5!67!53##'65#535#53%!5!5!5!5!#5!53!#3#!5!'67&'7#5#5!#&'7a<6FFED;;5D6h,KP@FF?bS02OD`?9kb|3+?AX;S&O>du(837/kNN.8j6? .9 K;?44 (K $(DW67##3>7367#3>7!5%!5%!5!!#3#!#>7#5367!5!#5!53!#&'7#'67+Y    .~DpzP r} JK~Pt wx_PN 4; ?~44g5525!9Z=9>%^BO)2793&A+92A< Qc5#!5#;5##5!%67%7&7!#&'"#"&=33:>775!#5!53!#"/326=!5b|⚚BIU373]!]L"M/D"$78N  $8'):J a)@6#JLP(R9VQ6'kZZZZZC[#bH6#*6**5(WT4pZ %,kuNuCCU)B+DC"F KU355#;5#35#35'67#5!5#535#5#5!53!##3#!#&'#&'#5'67#5%33&'!3]?P?]:3P3XP]>>]DDDDDDBwAAA-? I?6C?WE@%%$@EW?.-/@}MMH MSY&'#!5!!55367!#5!53!#5!!#67&'##"/326=!5'67&'76767%7&;5=/A;l KLK >3E,+C):Xa\H#FpE3' QScW9->!AA3Y8a0,r,r6IA>JNN8<NN'1Ԁ9A l5#>&=>)'E5B3S'_92:S4T/A M_q%!3232667#35'35##".5!5!53!5!#5!53!#!!!!!!!!53&'#53533#3"/326=##!~Zi-!O3 78.576BP"IP+B???p!/M/cp$IF I- 42&@==3=" 7.ICKK&771717C7)=:AA:/776<652'7&!533##"/3265!>pQBQ]P+Z" /+&NFV)F*<;%+!!#3##"/326=!5!5!5!5!5!53!&'7c*[" /lGPG4dp-v_CpB[+C0BpCAkk<]N6QZ/77&%767!53533!533##"/3265!5#&''67&DP;E8 5bH!N5OVV(U4ib2*H 6U=:8CK,BX2g\oEEZ,E0ʋua,Y]p>ts7@G!5!'67#5367!5!67!5!67!5!67!!!!!#3##"/326=!&'7#t\7aQ$;  _Nu yx 'V%"*]R2Pg)=]s:0Lz?@3?5)<-+A4:A+-<;#?s?P$B&CT4TI.1*"8>3!535#53533##67'675#5353##"/3265!5!537&9KO|FEtOW(U4ib2*1NDP;E8AA?pp??B%B?ppyEZ,E0E56&*.26<#!5!5!53!!!#3##"/326=!5!5'#3735%5#!35#&'7KBiPiBf)[! /sPGd)[q'q"M9?OO?95@P$B&@5UUUU6OOO=D<<;< "(N35'35#675###"/3265!5!537&"/326='67'>7367367ۅVK(U4ib2*@NBP;D:"pZ $~ - L :*2[[9W}@EZ,E0EoC/e?Y{D/B<-->8Y-$1QW35#%#3#3267#"/3265!%3#"#".=#'>7+35#53533!537&VW-OSJ1@.pi-)~SSJ 2 Q:5#535#33767&'767!'67!'67&33##"/326=!5!7&IIXL;!7׹Hq8AF?->E8?GE&Un)`N'+eO<UPSS(W\U+@5[N8M'{_)/D% *0C=2*/C5F<*8EkAy&>8DlC[+C0C1O^0_56 Q#3735%5#!35#&'#6&'7#5!5'675+!5!5!53!!!#&'"#3##"/326=!PH M+Zr$ԯKCiPiC.k@"$'V! *3bGGGG1@@@5:F@3BHN!5!##"/326=#'>53!!##"/3265!5!537&%5!67?&%/F492"Hk,K'S4SN1)MBM=B89@9><;:!>#xxmA5Bw@R߶"_BEZ,E0EH??ga|jriq7> T!=#3!5#"&=#'67#735&'7#5!5!#35!5!&'73673!!#3##"/326=!l-lG*w-p_*^n#MD( G^'V! *3bW77S( '9+.>p65%Lk44K:I>2?44> #<+)!$>4q4?TM"A)K65@!5!75!5!5!5!!5'675#5!#67&'7#5!5+5!#3##"/326=!7}iDp5k4G[r J)Y#1)hU+T:86@::\99T :C;0@::@VL"A &P5@+'!'-V67###"/3265#53537&&'7%'6#3#67'675#535#53&'#53533533#3ZK'R5SN0*LAP;B8&F##G'G+U˹`WwRE>ENxrGVNOEZ,E0ELQJSLV[`h >Y]!5!!5!&'733!#3##"/326=!&'7#5!5#"&''675#753&'73673!!!#3675!}}(aE'XC/'V! *CcN'\pI+A`U=E%!H1K}..5G,56#"<0>0"26.@(.<#&*$+ &<T//' 3#"/3265%67&P'Tz)Fk0L1lrIiCLD'V)F+E+'  2653#"/'677&,7' P&Rnfe;{Ax8DtNEN1Ze24,HW(D˫$%-O)=$!#"/3265#'67677&(S?KЏJHI!A`FaEU)F*=nO*7>$9A 02653#"/'67%7&3!!.''>7!5!$ P A8[a5XBUr9lP;SDQ:o'PxW+)lMoPP9o>XoadegedV)C+s#,>BFJX^d7>7#'#53533533#3#3267#"&=#'!>7'!##5735'35'35##"/32653'67?&*$Q.DDKKDDLs ;$@"'24)P.?6 J-L1P3KABDD>&D(jE;@U@PPPP@@[=5. +sLc$.J%"! ,3c@MMMMM7MT+E+( 9'2".5#'67!5!53!!3:>7"040׼+cO"%+"+ K 3'< Y@U*FF OCQ9?L%.9J283!!'67!5!:>7"#".537&O[ָ+c(+"+ K 3'&040N"".jU/V'FW@R FOCQ9?L%. H  9HE8FH  EK67$7$7 '6#53533#;:>7+".5&')!*=*x8Lf .:1_+&:$M &"KD=_zj#CF194B6U9_9=n9v@A9D9}FFE   %*.3 &^OG)KK97CG35!5!53!!3533#3!3:>7"#"&=#'67#535#5353!5CaPaI*+ J /)'z=IbAbbA\\C? 1"(23< 6I@=?C\(I%5;CIO#!##"/3265'35#3!!'6#53267#"&537&3533!'677&Km4>0JJ}52D%bQ'G 92=:=LC">=?:/";&;S(D ' <F`4FEY>E &>\%[aaAnoqV_h& '>5!%!5!;?95/ZX:T=N5A2 #35'35+!5!3##5!'67!5!6=!5!N]]M8"4:i7+0C?C@]AQA,/7C3.'#'>5!#5!5JX,1KGBMAN5!%!5!"&5#'>7#5365333267/5=.'[XbL-%{yN %-H !Th=bۨ.?"8>A7~B/CC/ 22=; / 5'>5!%!5!3673:>7"#"&5/5=.'[XfN"4.(?'  L / M:8OTh=bۨ.?Ew=Ey03#&.0?% O0 #!5!#5#.'!'>=!7&7$ QN=6+a"6KC #}6Җ=L}:\"A9U@TD#UAR*  H!5!!!'6"#".='%5'75'$7%%3:>jMGh;VM #9/*686vr`Mq*5("1 an5x:A !'  Q>c>a ??= a$>$c&>'E  #-  (3!5!!!'6265367&'#"/5!'>7WL[g5!'>5!!uKQ&)$'{n)$u76.b2, u<' F *Ǟ=Oۼ5N*  ?!5!!!'6'6733#67".53673:>7jMGh;V.F*Mrb15)Mgu*@H.-[s4s:A AA?6d4u<# 1"(?A>-  $!5!!5!!!!!!#5!#!5!'65!W8LG O1K`367#9)$$eh;VLe[;-7[b9+"J<G<=Y:)4I>bi)2"[EB   L767#67#!5!!!!!673:>7#".5#3'67&'''6p2( BqK @ns {B F//.11)  (SBA#,1:V`|7D=N,A/FGh;Van?iZD^vw]DWl?DeVPTSVE5x:#  9!5!35#%!!'6%#53&'73673#3##5#'>7#5365{6g619E=@-:>CLb13&K;C3# 7!5!!5%!5!7&''67#"/326=!#!5!'6!!z}47B->C>)D(9!J/`_, Lg !/ὤ;&9 ,!5!!5%!5%!5!!'6#&'7#'67+v+++H'g7%53673#3##5#535{L6g9D34>QBYk53&J:>=@-:>CC  @O!5!35#5#%'6!! %!+!#"/3&''675##!5+5!5#26=#67&'o}uh;V B*R) {MJ;Y#T~K=H )#42f@sYYYYf:)9)$9 1'>?(< ]:'-OO V    8<!5!!5#535!67#!5'67!'6!!3673!!#5!#!5!o8/V;V (6D`D5mNaM2aAFE1E:)9A&)KGA)!! J X!5!35#'67#67!'67&''67#53675'67!53&'7#'6!#3!&'#!#&'kҒEC2gEG@&3t&oH@<`9N/R>1Wf&n@k5\u$};,: "22j-<$; . .7:. eN75-=8<(":5; 248915;L~":L536A"H  #i!5!5#5#!35#735#535!#367!%5367+5!5+5#535;5!'6!!;3#+!#!!#&''67&''67ke I.!yMM22M`9N/ƻM<!5!67!5##3735#35!5%!5!#!#5!#3!#3&'#'6k*>F@@ITKR/{I`9N;0"t==0?o=m??CC/A,L,; : !Y!5%!5!67#%6767#'67'!5!'6!!!!!!!&''67&''67+5'#'))נG.-YkI@%jN|dAw_:N" yo(.OKnms]?+2/"YBFG"#95522+'OqTepJ. f=U8E:5;6 2:,=//;#*%6+E<$6 "SW[_cgq!5!35#5#;5##35##35#&'#6!!67+5!!!#"/2.''675##5''65!5!5375!5!3#>7!kj[ό ڏP XS/_6G ? ,,HUFI$!29Nn'L'.C 1}44444 S,,,m' ;ʂw5F /;(:/{)d:,,O-- Y,,O--zCe\#3#5!'$7!#3!3!@LL (LL$P$?u%CB? :';367!3#5!3:>7#".=##33'67N֔KK3)%3 L $F<9AJBKKꤿȟ'r%D(z3( <,28>D"  sPD\#!3!3#5!#$P$LLhL= #zII:=>367!!'!#3333%#"&5467!5!3:>XB]'G rz-F0IDHJHL :7/pFZ(  6Cj*%@:DF"# 18FAA1 6+51"0767!535#53533#3&''67&3##3333DAmr;7PCh}zupu@G@7C7a{`fACzzCAuN1B3^X9B-Pj\@21'!&'3!&'!5'67!53!53!5!'67%jeeLfQQf׫LPwcEtYG\\=ÒiD43))34DiÄAAz#huX1%!#!#"/326#353#5!#335#53&'73673CbM8'P*0xJJJJx""C("h2!D,>W/V)D9ghAbN[h\k_T?" !%!5!5%!5!!53!33##3333@@@FFY?GA5B6AB\@"-$%!5!!53!53!535!#'>7!5!!!@%=LNLb%MScr2v +(H||66!D0C8}TCC=4x5/ )#3533#5'35+35#3735%3!#3333IMKޑMAICAFA@ԭ,@A b\@0")5##!#5##'35'35#3353##3333nG0JK?G@4C3A?w?$A"\@&* 8#'673353#5!#33267#"&''7&'77&'77M3<$TI,POOOOhC-KJ7  N OZ+XW*W,qh9*HvYؾ::;;3GETQ QT0)8'55 C#`}2#%5!!5352$7!#3!353#5!#33fQflfPPPPRBBYAB/J>B::>:8#%!5!#3673#55!3##3333pK MM?G@6B69@FQ O=@},\@?"7!5!&'#3>7!#3#327#"&'#67'##3333^> #  +( D 3-8iZhFA9C87?H/_BEC[Ch»+BK!A;+) &!53!53!53!'>=!!!#5!5!5!5!!MOM#`8*#(IP-yVuu5HBBz??212!&'3!&'!5'67!53!53!!#"/326=!#!)ibbLfQQf׫LP1"J3lg.# PGYY:ÒiD43%%34DiÄjW(?,[?#9&''367273#327#"'!5!&#67##3333Lb?7B[ +* A?<h"[ZF@5A5`_  EAAp[BmM3C\@"B>P@:1!%!!73!!3#5!#3##3333wzNMMj=FA;B;+'ED@@ \@?<A353##3333'>7#536='>36767&'7&'"3###JUl?GA5B6`/QD twP% 3 ;9G46.)j08 n<6,nWfh\@0" 6&'7&5!367'>73&'#5!###3333VjUUk0yc0b?zL;O$WAFx/KJ'(G@6B6L[qtX+j,{uZh29{WtK" 55x@5(*8!5%!5!73#"/326=!#'67333&%3##3333mm>`L* KnU! M5c:C:`KP?GA5B6*qq!Ca||a9E6.@CA>!1+2%"7Yw !@ZB-"@,;BAxxAN7!353!5%!5!367!!!!!#"/!#5335>\HEO O [<4D&hKKVSiJJ6J.*58!9>< y 76i?" B#373567#!5#!#3#5#&''##3333367&'767+35#{K}DJ- ۜRF@7?7>h8E)@%9"H<\\\\>&dd'=?NN@hBU D dH%C@bi-:I%C13KrN<7a%67!367'6276767&'7&'3267#"&='>7!&''67&''##3333[7:A/_ - <1J*63$?TP> %@-/F %%$[(6?uGC=qf}M904FA5E5udN:%A*MS$AB8B+ @,27(D!.''>5#5353'67567&'367&''##3333#b')hPG6# D ><..8?ZD5/3"(%9"F@2A2?=D,__+D<~?gg65=@\W TGMq4XK7_ FL@V0A6bM'T1<1 -393!53!53!!#5!#5!535!!#"/326=!567%7&1LLPuK\KuP&}'M8PK0' c{]3]$,q)qkC@@SA;@A@e.jG6O_8^*1 ;#3=#35'35#!53!53!5!#3#3!!!#5!5!5!535#535#˯`LP&:yymPmyyOlggAllAgkk7"KLLPeP]"DOuWIOQ() H 7)II8Hge1A3@s} M!@:F G &!' ))1* 75!5!!!!53!53!53#'67!67!!!!!!!!MOMlM)(0r6L L9))QZ=ZZZZ9Z/ąK4I /%-3 5?Z9Z9ZA5";%3!535#53533#3>5!#3#3!535#535#'67##3333ԯN ?%$ƠF4:> GA3A3 AA=kk=Vƕ*A]>??>]k, G,*6 63!53!53!!!5!5!5!5!5!5!5!5!'>=!!!!!!!!1LLPIY;_:*$(8 b}}IAAb>I?\>B5H@B>\?I>X6 =3!53!53!!#!#"/326#353#5!#335#53&'736737MMP bM8(O@`_7(0xJJJJx#D+w.F$ksAB  F=K)KAAJ?65' ,F!5'673&'&'5#35#;5#3##3333'326=##5##5##!#"P:3G8VX''0#FiiF'HNEIJ\@C &]I($6"&*6D!&'5##!#"/326=##5##=#37353!53!53!&'!5'67>l_WW4M1#MPJJJMMPfb$bf.66ll<8 C LllllkWjSB$,##,$BSj59X%67!'67&''##3333367#535#53533#!#3267#"&=#'>7!&'_:<I851GA3A3?N ./D &&&Y&U@zIJCpi~l8JFA=3<-#?/P,o>`b<%#% )z:0%x2!!<`G4"A)GO?/ N&'&'35'35+5'##3333367$73##5##"/326=#535#53j#1I/I#G P:FA5D5A'7)'--J!?.SK  PY3;=!>=!#"/326=#'#"/326=#LPL=,"c1(z? lX J2#. lX" CP&v7##3333ȥ:::ܥ?7#'GKI GJ GA3A3VptVVVVUpKDK00 @01$6F735'35#'>=3.!53!53!53#!##5353353'67#'67!"o<'ZsKrY):kLPL>K>>KGB'$7>P$E $Ʋ@QB,j]]j,BkkA/+AZZZZO_sW .Al0" =K35#!#3=#'#37&''675##35+!+!#"/326=#67&3##3333㘘vFk92$<JIHGI;\S 4'?G@4A3______u^]=,D LsLT*B,ځ 0\@6-Q35+33!53!53!#".5!'>=!32'.''675##535'6%3#67&' ІrMMPe= *% ' +3<-$ 8@A"wGar ip̓$iii`b}}h7޳J2D=uTo:#< s(89: =l'I *#5!%!5!#5!3#5!%#3%#3#5!#335335PNROLPPPP0XAE$7D9B49AX>_?(4>BBq4 @,04,>67!#!#!!#5!5!5'!5%!5!33##3353&'#53533#3$jKOcc6?G@7ʇIOM :63/:f.9A~~A9~BB7=b\@?63?RR?54?0"  *.2#5!%35##33#33##3333#!!!!#37#3}JV;?e?f?G@7B6K: JJKK7!367!!!!!%&'77&'77&'7TT@ >&=G@5B5*U:( / P_, ; I: E8.JJ7H h\7tk4@ BYV/4*H8>>u0qQ [hWQj>">GG>); G!5%!5!'6&'77&'77&'77!!#"/3267!367!53!53!53!!!!lB"7A4 C @$ > $A;J;Sf!%YLPLP r44.4hdXTbSW UV NGJL&<++<.rC8:\NI]$-- F@2A2PZXRv:QEF0>=5+64@FA<:2?$CB&9C%H>6(A>Y""S@7TIBB<@592Xf3!535#535#3#67'675#535#535#53533#3#3#:>7#".=#'>7#5!#3##3333Tgd^^]]$At7(XX_NgXX#J $%#+.% V__ ??GA3A3];;S9DD9Y9;e9D=Ot /7e/340-?GA3A3m+2;`??B;?A0 8%+ 4A?;DFA F6_S.?/6RA ; R-=2 @MA5< < @5=+-;*4W\@54 P&'#3%#33673&'!5'67+3#67+3#&''&''>7##3333 ><3F#ffff?uT~LWQTe"HV ;7TEa[H/CK(= *1:1S, GA3A38D;AXieH2M47I92_, ?]j~4M`2ZBXD''WDWE9 @ 6 .:IMSY3&'!5!!5!&'!5'675###5!#"/3263!53!53!5!#3!#3675!67%7&<=3f--_Y-."jTKo.D4 MM P  KӜT#S" \"l:NL<;sN?()(.D]{5=A#A 䥥f<<%u(<<&;4<)c6/95>5'M537#537#533#&'7#'67###333333673#3#333#33#337ORT[ +j&i$(`[F=-B,;2 KC11SRPOm?5|KorsrGBzCyFAFY:WH:1a?=@T@b%!BgCzB,5CCq;9]ae35#3!53!53!2>54''67&''67&'767!!5#"'55!3537&'3#&''##5!67#55!5!MM P XFM`H 25:.!C6-9&0G965*A8khA/6#8*I;0Y)*`KCn u//^åf5P>(:%;-ED6!; -,&))-3&9078jA;P>4@AwG?ha"$j77k88;  Qj&'#!67#35'35#675#%67#7%3##5'67#'653&'#53!53!53#3!35#5!#'673#&''67&'""p"!⣣2q0  Х2J24V8L"QM P MG"T8O)B 1F9i%k?Cm&q:2+5%.,--&46616'-K p:{R =: 5%\ww\7#<377(w .<_73#&''67&'673#!#67&'7#"&=#'67+367!53!53!;Oa><".@䋋8 p^B*+@5D0X V.}CG|I 2 % 'dfMIM'Mb*$5!/.0d0/i]1 FM P DIN  H)5$! YVXXXX4VC 8A88'/D2zmO@9:A888 8>59 G:*05#AN$07*)) -r*.OY.f '4GKOSW]%#53'35#3#5!#33533%677&'7&'#5'767&'767677&'7535!535367&'7&'#5'767&'767677&'78񹁁_PPPPP 7" 2DA~6 .4# )!80* 7/7MSh2#1 *5 2DA}7.4# /8,/ 7/6MSh1#.ܱ:@22 ^ZZfhQ   D$99= :8O8GDqa;\kLR66h::d77d77dO^[a^   D$99= B0I>GDqa*\k[I ; *.2Rk#5!3#5!35'35#675#%67#73!53!53!5#!5#3##5'675#'>=!!35#5!#'673#&''67&'KgHgl72* yMM P Ozơ.J~.4X6*"JT5GE 0C:amAAm*k92򖖖,,(, &@x0 Szz?UU66666H 7ὄDEv9,11/j&8R+!=%34$:$,54NcMvMBM>H8<AS)W*Tǫ)#'67'>53&'3&'3 5B2:VLKW6!A#3Jd6!A#3M/v5KͦovEEV+ #7&'67&'67&'67%&'733!!"&''675#z[3L8^U7L6[3L8]U6L3[3L7_W5L34aE4ZM.ӳ.<]$T=ūڬ ֡ Ӥ .nC.Z02D2@BA@9@+= 8<!5#5#)5#73673!!!&'#5'67!5!5+3&'73&5#OC0%q9"F$(uPێMp%C-'#d ^```MJLPBA;>AG?LL?GA>pB,BJE^^I !!!!5!!gGGGf&9#!!5!!'6#5367!!}$-_M;C O !BEEOá.JD?@,ODna(*%'67#5!5!!!#"/32>7!'67##67RKRCd(??Dj^<!0Lc"q]=A-DB0FgWJ H RF[,3 !5!!!#!!!!.VP`{CE2aD4 %!!5!!5!&''6&''6LQK fL1CW8[1K gQ1E\9U1lDDDD& ba}=v{@) e`=m> B273673!!!!!!!!!5!5#'67#5!5!5!5!53&F$!"H6 C=7^@4'>BBn:@^>YA;1!#5!327> 7#"'.5!5!N8bOLp%  N 2/(q^Pk&&& ZBI=!5"' 4>? '(&r3!#5!327> 7#"'.53!5!N8bOLp%  N 2/(q^Pk&&& PBD=!5"' 4>? '(&1!5!327> 7#"'.5!#5!8bOLp%  N 2/(q^Pk&&& N=!5"' 4>? '(&B?-1!!327>7#"'.5!#=#>gZJ!) N ::8\Zn')' N= 7)-EGD&)&%?C-KO!&'!5!5'67#535#5353!533#3#&'#5!327>7#"'.5!5!q!!S`x*jἼNNl*kZM2TGFc !M20/~6TMY'/($3j(qP@ZA{>eeee>{AX@Hc2b) ) )352@{-6 ]3&'#!&''67#5!67!53&'73673673!!#&'#5!327>7#"'.=!5!5HL%^&׋0D.0f N ,*F )#]k\M2TGFc !M20/~6TMY'_+C=r'%GBjA68AQ-BUWa[YDTAAA:4AjBH;^2N) ) )352@V0_<  \!567%7&7!535#535#"'.=!5!5!!327>7#!5"&#.=!5!5!!327>7#3#3ku'{ą(|ỻ >. v,,4(M $G. v,,4(M $G<)kk:V6^::HS:O?k+#'67!5!67!!353!#"/3265##*KHQ)]# N (>O4#M"QH!# Oolg^@BD?;8;DkdCD$0/'!9'>=!3267#"&57&3+'3265####353"@=546 G"]B @]C@@1=IA6zľ0% J]"E-,/0 G-yQJ;?767&''67&#'67#5!67!!353!#"/326=##-m4Urm1m#KJS$dO %/N)#M LE" N7&35?410&C4G1L$?!3"- R:D{C+'2CA9ZZCBT/1+%!!73!!!#5!#3+'3265####353~}OML1=IzeOAbbA`TܛzD1!3735#535#%3#"/3265####353!#5##3673!Z9>.MzIMIM}L(/U*E &cP,@8M F5C+%7735#535#%#3#"/3265####35#5!!#5##3673!37?<}MvHIL}L(T\U*D&kS#B",@8M F5@ ;5#3!5!!5#5#'>5!53!#3##!#"/26=####!Ob9*&xPr'<+OE> MKUTTToo<^ܠ$VVAT@OU)B,@A2(=!5#53533533533+3!35##"/326=####!5!#5!#5!!HXnnKPKnX?!QI!PK"MfM,@EEOOEE@mmCC)(aȇa:'+7;5#3'>53"'5326=####5#5!#5!5!5!5!!5#3wC3T@JOVA3 MJ==#8$+SS >8U\C&󾾏D#G9EA":#!#!#"/326=!###!5'!5!73533673#5!#53& NDR"EcK&" PLHXgD (P%C%L@L@?Q'C(l0?<,E<;%>楥1/'  8!5%!5!!5!!5!#!#5!!#5!3+'3265####353ddmmO N/5Lw.7G7AxGRKK6KGH+"+1HH0 G-yQJ5; #>%!5%!5%!5!'3+'3265####353353!!3#&'7#'67+CCC17#+'3265####353yyw}#A'%CKE/D#i-- D#Y,Y mk .7G7AxGMQQ:K6:@FOOSB;AC H $+,4Az'? tc50 G-yQJ/' #4:@5!!5%!5!%3+'3265####353!!535+#5!##67%7&oQ=77s-5E5?tE tM;E9S.YG)~b.ZBBaa:ZO0 G-yQJCCCEb7jE;Ie:_ /' "5M!5!!5!#!#5!%5#!5#;5#67!&''67&'7#5!3+'3265####353^^K'EMbjkkki?AbY>8WCs\w.7G7AxG32g߹5PPPPP1EI=75="2B!==U?0 G-yQJ"<S!5%!5!&'#353!5!'67#5!67+35#5353!533#3!!#&'#"/26=##5##5912:Pa OMM߂a"A#L!QHD PKA>>1=f#+*$<<->2C<-?FFFF?- ^DA]ܿ/')c#3'35#3#5!#3+'3265####353!5#"''67'6767&'4&'#534&533&'7#6732>75n??IIIVIm)0D/>mD2'"&-+,"M~ N?E&.#y#5%7 *;Q--px0 G-yQJR:`<)+'5(?*8 q 3@ - D! )*.g_mpP<&/6 ]c67#35'35#%27#"''67##!67&'!+'3265####35333&'#53533#3&533#67&'7#,>2C<GB-Eo*G#4) z)0D/>mDm\)L'hI&&8-99-FSRGgg;`_aLD46,4v0 G-yQJVCA\\ATE}?igFnG"Z^(' ^35&'#3735'5#;5#3#&'#5!#'+'3265####353367#53&'735#' 7369 M=HHᛛA0W(KK,3F3@sFqV{ (>,'>}y= p;7AzA97D{aaaa7]]]DOAUNI,,U.o0 G-yQJKVA>=DLA-? W/<"&*T67##!#3#!!5!5#535735+3=#3735!#3!+'3265####35333&'#5353vG |O喖O[-5E5?tEsTO80=58x!6>:AA:>68???q====L?<1=0 G-yQJd85?XR<!q67#73!#"/326=!#!#!75###67'#3&'73533'67367!#&''67&''#"/326=&:0PW"BsS' PMQj3&|Fy'4.,ES++>/)0YKX18@5TC'D 0G=f$nE=q ^=: -<%/Dx a0U*C+q88?M$J]gSWiC03FB8<@D^} *BR,$=(40*=",Cd+'1= R5!!#!5!!5!!iPiHWH FF/!!!#!5!!5!&'7%'67cPc:JJAOF8]AY8ETEBzl"s{}$w|26 #3!!!!!!#5!53!5#'6K _kP7?V?d:CCDD{-0###53#5!#3###53#5!#3OֹOmAD DDDAD DD4=%+%#536=#5!673#3##!'>&'7!!">-L%;N^b5VQ347L63DM{5E_[N\EDJyI9?wUDESh5xP3<!77'676=#53673#67'>753673#3###53:d}ʑ>-L+5vD@GI_j4YQ|yb>-L+5եNC*Mh5E_[WSE5]<DO9A}m(YE_[WSEEPP>pAa`A{>>*- )D35'35#%&''#3##5#535+35#53533####535#5'673&'#i\[gKKUHKOӰ gCj!dcc:\.SxxS S??SoS@ee@SD>D:>dc@:I$"7&''>367&'7676767&C{WEhlz_4;!r?peIx?6#0,4 Dmb63+`M+]#"77&''>767&'7676767&!5!#"'532>nAJ-B  ( LQlj,&P:EEY?*FDC|*R)("Fnb> &2*Dos>,M8|{Fd7IG(G7>7#53653!#"/32>5#'67&''6767&'7676767&B@6'8: M "!5fb( \a84 ODa^+ "G6D@R#4F6@ziopvTC\oO|ӝN. F 8rŕm8!@$D{|n> , .Ky #NA# Q767&' !5&767&' !5&'73#5!#3767677&'73767677&+)C8 E/5 C8 E0>9$II,II0$?*=&6'?Um : J,'?*=&6'?UmOSeL"E8LaAeL"E8}`n77N ihx6te 4dno `qx6te O<0 -x767&'3&''7&''767&'767677&27#"&''67&'!&''67#5!&3767677&'7'3!678,"N7 2n >*&?7 7W6( 70;3?(@8;Z!?W%f2to0O_ZM+U9t=K).9:5=%D79bp>/ ?`!o<236D$D0(L2v!$h}>"AU09 EL!NO&SU! G6:H)=&BHV$O!>!EH0cA#3V('9Y!SJ%VV | 0Hzh0$"AF.-:'A3))/@ !!'65!53:WCg>UfPD;7w @ !!'65!53##"/3265!5D\!f;UPf(T637>S??fUBhR6;IQ.C@+:&'5!&'#67'673 %3#327#"'!'>5!53!I{fx*{u 5!4ep c*BN!b9*&xPr@L (A\ =9=8< OE?+<^ܠ$VVA W%32>7!!%673:>7#*.4=!5!5''6!53!!!#"/. A _z8 bK60J.  K/)\RL3:E#*N1;.U:LvPx #%1UEr.(  + .18 Џ/Q=&=*3VV@#397%@!%!5!!!!!!#5!#!!'65!53BkJ0OOf;UfPAAl66U˿;7m@ ;35%!!5!5!35#!!!3#!.''$7!5!6=!'6!53LGOw#@@4y,-}64.9PsP'```;gbAG?I?WV?I;OT='3V@17!67#''>5!53!##"/3265!5!537& x1L.K!""G9*%yPyfD8gL;# xMk=RA?;F4 mj@/A=^ڡ"ZZC{Y*B.C'j{#pA"9!5!!5!'>5!53!#3#!5'35#767!5!&''67&b9*&xPrJAJntUiM|ӕlUThh<^ܠ$WWAT@@T&$S8:[@@kL0@%CB&@3=A :67&'!!5!5!5!3!!67&'''>5!53!`mGMG94?';Lh^M/(rGF;607,E/ R9*&xPr7:>[!bRhMjCC@T@6;@[x(bOdN#ߠ<^ܠ$VV@ ;35#35#!35'35#!!#5!5!5+!5!5!5!'>5!53!!!!!!JQNSI;a9*%yPy=aNUUU6N@tt@KKD>?=^ڡ&VVA?>D@%H!'6!53!#3!535#535'673767#567#533;#"&''67&3-7L}PydHW SS9$/Z<8PF6ܔ>8L,I7(ފU='3VV[@@C?'? %S.L_>^V<}i5(A.:C474C7A #c&'#35335#35%5##35!67!675##''6!53!!!#&'!323:>7"#".X9W8ZI \`M3 U:LvPx pZ% X"*  K <22;=0DSQFYYTWW7TT7W<)Lr-;G3=*3VV@ '5!53!!353!53677&'7?&&'7Ja;*&xPrMNK3?9F E IB5E/Q=M5ݴ??F=]ݠ ZZAqqqqkybh agmjatq? S35#'!5!5!!73567#%7675!5!5!'6!53!!!3#.'#"/326='67&[N'[N_KF%X/O85('2,9LwPw<<#CVUb%[8&I*RK% $e]4XM;>JJJq4I=.E?$%o;MT=)3VVA>@"K>D.<+KS,C(irS<+78F S%#3735%5#!35#35#35!!#"/326=##5##!5!5!5!5!5!5!5!'6!53!!!3# K6L8#HvS(" KK6-]-\=MP|@@888857777r77l0?< "057;741߸=(;SS>1h@ A  &,0>35'35'35#'!53!!'>57!!#67?&733#"/3263P'+;$ SJ/Z0=9X8S99=JdK?WK [[XX4TVVCj<[ޭHTeC#KR$XV,MU*CA7;%35#35##!#5##&'#''>5!53!!67#53535#`glM=uII/+9K1T)';$ Pp0lxK^AxnI,,(3TaLxEd^<[ޭVVC{A\Aaf&''5!6767&'#3#3:>7#"&=#'>7#53=#5''6!53!!67&'767#3yCB{V3&;$;/<(A+;69=?I;Z/ G+),Z-(iqQ9J R9LwPw ]H5G4S,D&uVdcW;3+B8IB$FBP>%>!%e>z "#1.0/8@SB>S$":=)6SSA%)17A*M-76SF IY67!355##3735#35!'6!53!#3#33##&'#5##5'67#535'35#535#53&'#wHK:MwPAAW#XKKX"WҼg.,;BBLLpA#Rl35'35#'>=3267#"&=#767!5!&''#"&5367326767&!!3+367#'6!53#27$&?> [c@(E="o,LER`PQz ;L]1Jhvv2AH gJIA~ |Fh 2,8M}PBB3?,RL6D((( '$PB?Z??wN4!?%@>'9! X4;;MCE6HYA<"*,2݌T=&4VAAX#5!%35#'535#'6!53!!35!67#"/326=5675367%+'32654'67##!)FYa2,8M}P~ qC?QDz?.?6-##5+ciHL4 *4)tA+H:'B2V^:H݌T=&4VVAH:771;F;< 7<)x]}D@@#.iYoxs>pA"'-:PV%35#!!'6!533#3!535#5355!!7&'67676##"/3265#5353&'7~2,8M}P}F9D DAs`-D*C A-b]' Mt@4H?DMA݌T=&4V8:C::C:82,G65=*? ET@7CYN'E,CuuupK O_35'35##3=##3267#"&=#'67!'6!53!!!5!5!5+5!+!!!3!!!!5!5!5!>V>=K++*q,s!nR>=MP|`CK}K4T\P'\v1 ..-/\.[//" ! %63I ;>{=(=QQ<51*3''3*Zk75::57A  =S35'35#35'35#'!!'6!53#3#3##5#535+35#535337!#"/326=#'>5 }~2,8M}PI@BI%/2U5#F9.%LL7G+;;qq>C;B7EG',=*'=1@ ~2,8M}P@9J>Ml jA89@N 0=3&'367#'6!53!267#"&=#'#3#"/32>7#'6735#5'67&'767#5!6767&'5!&''67&'7(|DF~7(/\=MP|g ;#)/d[. $(HSS+J Λ*-N,4(@/2/@$H223<0F3:r,AMNkVM{`@>/0=:%DMMD%61S߸=(=QQozU;1/9"&):%"./'/.42&3-?j 99H3%; -,";(1'F M!5!5!#3735%5#!35#%!!#&'7#'67+!5!'6!53!#3#!#5#535#!gMahvlgoL\=MP|O 33/r????2;;;a*09:D8'$K2<*;*߸=(;SS>3<\\<3 K !%)Y]f327'67!7#5!%#3735'35#5#!5#;5#'75#'>=35!'6!53!!!!!#"&5#33!53=!-^+&#L1ĩFt(tttm}-49-&/(8FPuuC#E;M-07l &#--R))))%)[[[[[d. 4Y8TlnjR@)HKK?"0!7G)~)>>W1 K !ITos5#35#;5#%35!!35##675#6#3!#535#5#67'#'6!53!#3&'7#5!#?&'#".=33267&#3#3#67'675#535#53~ABxAAȼP}}B)}U^ȹF!*<60?yx>9FPȱ4:%60 9.$:,b++# F29?/}}JAA*\4%<1&;;.9`p:8[&  !z/=,@90=67E393/"767#567#5!33!!"&''67&P<-):kX"ReP@IBL,R73.+g?czAnzBBxpAC1D8FU:9CJD%"9767#567#5!33!!"&''67&3!5333'$73#F<+$-iEA^BAI;O,Q50MLKlac.+d7aqAsuBBxpAzH4C9IU>9AQ@AAyD @DD%"9767#567#5!33!!"&''67&%#3!535#535'$73F<+$-iEA^BAI;O,Q50/nq\v.+d7aqAsuBBxpAzH4C9IU>9AQ@AAD D @D%/ 7;35#7533!#5#;5#767#567#5333!!"&''67&%5#L/I靝<)#`=>Q7BJ9K,N1.ҝ@vvWG+^/TpAvrBB}kAsN8C>P PTNNz+Z@]tApxBB|lAzI5C:KY=V?\\?V>QQ7BJ9K,N1.UPA.6j>+^/TpAvrBB}kAsN8C=#735767#567#5333!!"&''67&#3!#35#5!Hf (P7!J1F)9%^L<)#`=>Q7BJ9K,N1.6ƫ%GVTˑ,Pp%?:;0fneej+^/TpAvrBB}kAsN8C7#53653NN ]x2GJ,NuHJW;5YmH@@2'##5353!533##=! OOOO. JBBTJB 4<2!7&'#3##!'>7#536='676767&-0;z7#. $ N br.bR <X-\NJHNP n-v,q3(/EZA?8xtE-jDwf L4/!!5!5!5!5!5!!!!533##!'>7#536=311NNj].SWO@@e>]AA]>ooCb(;"aNC&77$0'.>%533##5!'>7#536=3'65#5!5!53353#5%3#3!535#5353NN(.ISNe9TQ4JMMƷGNrrBF;R@B!11!6)0p>=v/CAACk4<Wr67#7%75###67'#3&'73533'67367!#&''67&''#"/326=&533##5!'>7#536=3:03&|Fy'4.,ES++>/)0YKX18@5TC'D 0G=f$nE=q ^=: -<%/NN%.MTNDx a?M$J]gSWiC03FB8<@D^} *BR,$=(40*=",Cd+'1= RnnCߤE;Q@C))<4!3%327#".''%&?&M u<@D36A#iKYQFk 'aT)T4_dDm{Y'*bڀD\*:/8:7<8$5!&53!!327#".'5!7&<K &), $H^ JM> $XY$^GFE`aDFs}Z&H AA8*78:<8!%)7&5!&53!!327#".'5!5!#`S$g7K &*, $H^:A8- 079,297#".'?&s= @3'$K  "%& F^ DE9g5LA7? CCA,C+>+BBEu|lEblM"UJA*DT)P2/X%67&'#767&''67&33#&'#'67#5327#"''67#5!&'!5!&533&'73#e`/ k+EX?+7)B:&-+NBunt2>7!'67!5!5!!!#"/)# N.L  )-(qi}4!B]C,cwQ# E W,!5!!5##"/32>7!#!'67!5!5!!   '&9]Z+ P J*2\>|L D4I8V:8ÿBݚH^!3%"/32>7!'67!5!5!!!P]A  J"C d!1MjE k|"3BYG,+5"!!#"/32>7!'67!5!55!K */(J^'! L0Ld~.RWhI! ?IY)(AAAP' @G#3#3735'6735!5!533533#!#"/32>7###'>7'36=#5MI,LM #cN& M)yn A0^cFCRRRRNgM) DQbL4=0yo?0AMC 67.''6767&%!!#"'532>7#'67!5!5!HX>J&wQNOt0  P~3 K e~ E6Ej y#UK`y].E 5ab 1 B2-`23:>7#".5'#3#"'53276765#'6735#5!7537537#"/32>5# i%*#3 I #C<7LQ? a  #'_) K ZMIB +$ IH" 9*/6:B!  #!>b,&E 2BԿ#ѽ<(VD$)h(=:!5!!5##"'532>7!#'$7!'67!5!53&'73673!  ,2:]Z+ P! K*9F%"H&}:C, D,UR qBu,A510I9?&B}+=7=C#3#"/3267#'6735#5##"/3265#'67'677&o '_)1 K CaA+ -CU$F 26tAr5EL5F3UKaw_,E D2BKDV)E+DaO# F2!26J#3#"'53276765#'6735#5&''6767&'767#5353!!6767&'T  #'_) K [:G @M?iy7+ ==N E\>0h]Cx'0>b,&E 2B :* DZQ12NcCxxCvvMB" ZY0J35#5!#3#"'53276?#'67&''67'6= 7&=67&O #9cX" fKt?4/A PM&M59>4.02"2:6C@R8< !BUK,'E  2!H;Ecia8^BF &l8qHC  d.5 [3&'67#%767!5!&'!!!#"/3267!'67!5!5'67&''67#536733'67&E6D7A#)F!#"/326=#'>7!5!53'67%7&!!#"/3267!'67!5!5;\K |MQ=IHPW; 2X767%67!!#"/32>7#&'7'67!5!5!!!#"'532>7!&'7'67!5!5Ay. ; QcZB DV#_B8" O H WmcH @_#^J7" +F5O9U3;4Q:T4(FgpA-C #68;"sB(Fyt:#C 989$sB>K!67.'#67'67##"'53276765#'6735#5!#353!!!!!!1NC0=8CGT"~8-\o :J #&a* K M^yyhA^KGN#\D8&A8{?5A%&E  1 BUK(AM;O;S97([35+335#5!#3#"'53276747#'67&''675##35'676767&'7.'3#67.斖 #'_) KB@/FwK_(:-M4),BRLC _&!BUK,&E  1 r G, C2YI AdWcDE,v 5 Pٱ  I-  @_35'35#35'35#'!#"/326=#'#"/326=#'>5!6#3#"/32767#'6735#5<D6#?C  1=$>C  1A!/ %lJ$ ^F]>A]>AC)V(D+}D+} Yͯh)0aTLRE 3 âB0%GY]%35##3#"/32>7#'6735#5!#3#"/32>7#'6735#55!#3#5##3675#v %lJ" ^Ht &lJ" ^HJ} HGav-TLby^,E 7_c3 âBTLby^,E 5ab3 âBDDDUD66pPIp*9 2R3=#;5##3#!!#5!5!5+3&'73&'736735#5!#3#"'53276?#'6¥󥥥JNH?% B-#v"%B+'@9#E$* #9cX" mKssnnn7#'6735#536735!5!!3&'67&'767&''67&'767&'7'67&'767&''67&'767&'4zT,5S@0 DF$ &lJ" ^HuG@"8;,&').(($&4,&').(($&.%').(($&4,(%,/((&(,,FK75N*A*AK-PTLby^,E 5ab3 âB9S#,,AA-,/$/ %$6:,&/ /,/$/ %$6:,&/ /,.$/ %$660&/ /,0"/%)/30*.,8 '49=AEIOx#53'35#677&'7.'#5'7>7&'767677&'7535!535367&'7'#5'7>7&'767677&'7!!#"/3267!'67!5!58񹁁y 6! 2G@~6N# /7%6 075ITf 1#1 *5 3 EA~6N# /7%6 075ITg 0#.S Hg|c9(N-jyM30RMHKPTA9I3 4(29 0AVPKV9H11P44P11P11ELNGQJ9I3 4(29 0AVPKVI>-'xA<. ! Ug/9A%67!5!67!'!37z P,P $W~nBZ_,FCbiBfw'%5!5!5!5!3!#5!5&'%'67(WCbN\O>]PEFDP8]DX9?Bl,Aww~y3DN67!'$7&''67&''67!5!>7!'67!3!67&'##"/32654' 5!oy}- L:%L 03PK7RYX}-#.OZ+=DUa#p&.9a=Lm%Y@;8R5(;)9A8  * ~AXO3K)U8rM;L9XY=A=n4*;M'675#535#53533#3#67#5#3#3##5#535#535#535333##5!5!5!5!5!5<MfPk=TXP5PPXbbN{0? M;CA??AC;F > =5C;E>??>E;CA??Z>,AX>V>-D +J!>7!5!#3735%5#!35#%5!>7!67!3!&'#5'67!5!5+5#5!#!  6=PJ :L 1ޠPɊMBbB #5555.6667qP# Q`7e:D(;/__/;(D:#͈#| 6$7$7$%@a&Y(8(+j\;<77:6496-%+36=#5!#3###'>7#5;#%6767>7r#xxxM AB;:: vĤBu3|#|3GwO3R{HZkBBBFG:>B kX^Ir0{NO/V+vW0\|.A 067!$7$753&'#5!53!#3#'$7!'6hr JkPoV`:M!:E)V"u:{#y#;#v?@A``ACD)C-DMțcH4H\MNv,McEr0zKP0VS2\}.';C9 qV_9aOIsyrRBaV8^a5`>fBANUw767#5#%676767#".='>=3533#3'3:>7'>53;:>7+".51HSs*{~+E+T| 0//-,& S")7!L0;   :B>K !-,i'!/ M ;70i`V %WWa6U9_9=n8x?A8Id$$%# 8 ZEPľ6;5A@0+1.{   )" )/2 %  E3##35676767#'>5!#"/3265#3#3!535#53HHԶy2z"{2#˅2JpD>M7iixzkkM5P<WCt2zKP2UR3\|.W5Tìk#V)C+U:s<7#67'&'#'67#5353>V85/&L$?,a$pzLi2nImG2Lt NJ.g2v1M,F+l(^gM~Brq5AP~rBBFq2yL+vV3\|.BcN1V6:j׌pBB)'#'-39?7#5!'676767#3!535#535335!7&676767Iz)M[mh/Nu,GH3,މ3H3%CJ\C:BZ??ZARRKrrbDXSFp0|JP0VS2W*,06<C67##!#3##5#535'!5%!5!'53&'#53533#3'676767XIͿOv=={NOKt3{/~3J4T2/:#Ff-:AyyA:~BB6=i@63?RR?72@uEq0{JP0UQ1\}. ?EK#!#3!535'!5%!5!!5!##"/326=#'67#5!#67'&'6767HWW5]6?( q/2`6V7AT9&ޓ3R{5-;u3|#|32@@2q::09]8!A }eR(J`JKR1\|.+\OIr0{NO/U3$7$7#G+>`+gQw`U~:X`;F;0*7 -3#'>7%!!!#"/32>7!'>5#5!53'67M61W}3?2c-zU$@<5vi0!(sr9]c,O_7h},8 P9{Q%UDY=G H 1X8FDBWz)* 1H#'67/67%'>=!3:>7#"&=767!5!&''67&M2,V=)S;a(K:a  B-*,55!53!'67#3&''67&M2,V=)S;aB6SZ9|m8/,M+>#Cjitsg[*9!Nl$NuAXy#YaԺ;\ޠaaCLF 8:AsV+B-dd-B)Ya4 %W#'6735+365735#35#'67"/32>7###'>7#'6735#53533533#3L0/V<'tc qKqqqq_S2f7%CRRRR펙*4 *#'67/67?&!!5!#535!5!!3#M2,V=)S;a'(W2~*9!Nl$NUAXy#xD!IABDDDCDDC* $#'67/677!!3#!!5333#M2,V=)S;asUZgK*9!Nl$NUAXy#~DDDD1 %#'>7!5!5%!5!'67!53!3M52Oq/='\\\rU;aTmM"<%O9{Q$KA@W{$;B* /#'67/67!!5!#535#'67353!!3#M2,V=)S;aWKת.LW"H O*9!Nl$NUAXy#DD Cod P@DC4 '7#'67/67?67!5!&''67&!!5!5#53533#L0/V<'S7!!!#'#'6767'67 TmJ NfI#+K0/V5M%M \T7M2,V<*NY3N::Jj,NNAVA^A.c@#5 P#'6767!'677&'!#&''67&''>7'767&'76767%&K02V<&t^>?T;;&9s&w)-oF3(lQ:Rs7 s8<2 8%Ml$J5MHy@W{#U n :\I9!?*IO$>>;F2!:c3@!oA4&XR*S]6 vr/ T; 9?E!&''67!#"/3265!5!5#5'#'67673&'#677&g\XR#T;a I&OJ! 30!0K0.V=~O6.kn=@=w:bL#'67/6775!&'67&'67&'67!!5!5!5!M2,V=)O;]hnJ7F=ST7E4J7F=ST7E4J7F>QQ9F2+]*d9!Ll$NKAXy#GAAYgsb[f[QYgsb[f[QYgv_XiXBBAA74;67!5#'67!5#53533#!!3#;#"&''>7]$G=i(M2,V< O*\23D%/Jj,76!53&'73673!3#;#"&'M2,V<,Jj,$(F-)w=/H)2^27C * 9!Nl$U\A.c@#J jnHXBQENbNfZDBCDZsyc4 >#'677!5%!5!'677!!#!5!#3##"/326=!&'7#5!M2,V=)||S;a5K2~`gg(W\U+`E4PX/~9!Ll$NwKK:HAXy#u<7535#5353'>7'6765##33#3#M2,V<,Jj,77&''6'67&'6733#;#"&'M2,V<,Jj,7J'67#'3265##3673#3#3#67'>7367#5#'6735#8zP9bB 5 gJcU%D e4 - F8'K((~W<>&DS}'F(%\F+6d -4?A=@92BQ 8830Nf!6,F #7#'677!5!!5!#367!%'67!!5!5#535!5!!3#M2,V=)kkONS;a+]*q9!Ll$NwX^g-3 2%AXy#AAb:Z>>Z:@ BH!5%!5!67!!!&''67&''>7+5'#'6767!!'67}}^7>^a?kjS=C1'7r%+I ( K0/V2S+G  T<`MM6F!0BA;S@.@&BE#?53?39X-"% '&7#Nls 'A&J@W{$4 *.26=C#'67367#'6 %!!3#5!#!5!!5!!5'>77367K2,V<*X h=XA dl  MMMKKKJj,66,<497=T2DU_Il%7#Ml$N`@W{#5w44w>}=-1: ?5%%26;)%,<36/&=?Z@[=}>5QW%67#7%!#67'675#'>7#%'>7!5#'675333353673#&''67&'%'67+4$P1,`' QII0?:L}7 *6M*+^/AKFJ@: C "P1\#\5@l1}=3Y@j?&>&-DfEDC><G,&F>/ Kg~ 9ODcP:M]\N2Wi|XBT{ 7-17Y_e35#35#%'>7!53!!!!#5#'675!5!55#67%#".=323:>7'&'77&2ooooJj,< &N,H%:K2,V8 QoC%C%K'998030K  ! ' ,HW)\zAC2@0f A.c@#"XXANGD"9!Nl"3N7dcn00/ #($ "23G<2?{5PV%67#7#3#67'675#535#5!'67!5#'6753353353673#&''67&'%'67+4$r_=Lfr+*6M*+^/AKFJ@: C "P1\#\5@l1}=3Y@j?h/ Kgÿ~ 9ODcP:M]\N2Wi|%"BT{ 7 17U`f5#!5#;5#'>7!53!!!!#5#'675!5!567".=33:>77&'7!5!!&'7o#ooo[Jj,< "N,H%:K2,V8 SF#?"LK222KQ ' F79 =T+P<2B>B1A.c@#" SSA>GD"9!Nl"H>9ixRioZ !w5  )() ;:.AA7;qegq;m%67#7'&'7#635'35#%'673533#673#&''#"/326=##!67&''.'#'6726367#5/2 &=\{U> Nf&:&C "K0U#U35T$ !@2JjP28 , +K(&]: jT%.-H? UU:RBT{ YY?V9u BFDמ[J:GTSH$C<x FY,* ,45/Kd!6X8m 5 gms%67#7%'677.'#'7>7&'767##'6753353353673#&''67&''67#677.67?&'3#3Y@ju768IeG./C4/>M.&a)AKFK@6!B "O3X"Z7?g.w;26 *=C*ML-SW5">!8;<-BT{ rH #? W40>;NB'0Kcϥ٥| BFDfL:J_]L6Ue{-,3)E>2GW-^N 4O`eU6D9  '-7&67327>7#"'.57&$GKI "$41': M  "<:F/F!HK*J-D[EY68< KPK-Yd' 3'67?&PE6FA@$D&W~V %06<B%367327> 7#"'.''67&677,RHEQ$$41' M!# <:F/A(as)TRCHGIJ(J-bju7 4,& GQG'D<4@=DPDM !#)IOU"&=!5!5!#5!327676="67%#"'.=3327>7%7&?&cHPE00 P 71]RU,B,\ $"#ÁB7q !3"%. ko212+V8 &!&[57&'7?&767!5!#"'532!&''67&!U,D+^ $"#0O:FI!O #%CA( |?U7PEsAS=B:ai_ !;2.~m%U"]Y'Qdu!jZox566*V8 +",XU*M_T"<$3;BJ D 8J@',=)+KA@#' %+3'67?&7!533##"/3265!7&N>$><.?>NYY(U7pi5*KOC^AD>W~e vDZ,E0|"&/5;A!!!5!5!5!53!67%#"'.53327>7&'7?&uVVuPU,D,\ $"#7&'7?&e:bK±Pk&(& {PU,D-[ $"#$><.?X F /,F ~e vA 28>!'6!53!6732>7#"&5'7&7&Y:GzPk=G@ (5#  K 4/+u;GE+J*ԭ<0llB L1$49? !BY?K@G,# <3#"/3265677&?&5!67#' %!!&'#'67M"F&ESc8B8hxAQ8C5Q=dH>GK@"e||"f|F!B rx #~!~C;E A?ACCC^CopAa!1=CI!5!#!53!#5!#5%5!67%#"'.=3327>7%7&?&KOPOKPTU,B,\ $"#7#535333265#"&=#'&''67PMVM1._gL  ? @#$#>$>CC~~t+|HAkk+@@?:n= ugXe 25;?3267"#"&5'6=##&'75353!#5#'673:MH '#g-"w.F89M"J;$< )MK# D::P 1 EvJ<`1+ lr Rrtt+22 ~"/ %+1?H!&'673327>7#".5?&%7&&'!5'675!'67)feeV*@,\N #%C@(<J#%"OOM\yb8#V +0+,V1G_.Z !}wՒn>5>77>5>nnCCw`2KZ' )!'3#3'67?&53#53#5!3#3(`N>$><">w'#rwWHE%~e \`UDHE%DED!D&,LRX"/3267#'>7#'>7#'>7!67%#"'.=3327>7&'7?&3bH.)$g#^;V$4`5U2U\1D!EW5U,D+^ $"#0O:FI!O #%CA( |=W7PEsAS=B:;DlD*7#".5?&?&&''67&''67#53673?67!5!&''67&V/FY+B-`N #%C@(<J #-2D9L,$n!,;##m;B1Z0OiA+-6Af"gQTtAAgR:@?\J6@.F[8"&%!5!#&'7367!#53'675!ZK6%9$ NMFK=$=Z9@kohbFQ O=@O~[ 7837=3#"/3265####'67&'767#5367!!3533'676&A>MI22)9'/"<N0 M xt"5MN=$=CD1#_lC.H42 f~bweD/;13De\O~Q 1 '%!!'673&'75!53!!3#5!#35!w=$=,Ot<:PNwM49 ~ lr *D'??r'  %#!!5%!5!5!3'67&'7K9xxK=$=;!9%[ABB"~[ qkt/ $8!&''6733&'!5&'76!#"/326=###zf_U:=$=)MXP>3k4&<; g8*UPN:Rki ~v?)(69- & op >lU*E,p !  :@F#!5##3735#3567%#"'.=3327>7&'7?&NrLU,D+^ $"#0O:FI!O #%CA( |=W7PEsAS=B:LB;ox566*V8 +",;UW+M_p""B#?EK!5!&''2676767&'!#'6%#"'.=3327>7'&'7?& Еv3Bw^YKIEF7;N @.[7Q"#!>B9FH"N #%C?)>F0DU1U>T>A;@Irz0>B_pcO0.`.X)/)&M.T0HB/B"q}y6 1#!#=!3'67&'72676767&'7&'LNN=$=;9 . R7#".5?&?&4'!uN\"TJg!2vjV*@+]N #%C@(<J#%"V7#3:>4767%#"'.=3327>7&'7?&T,=G  Ϩ(]9i-03#9Ofoo)+2!!KXK!> +5.  *#+ox566*V8 +",;UW+M_p"' 8>I#'>5!%!5!3:62>7"#".5367%'67&'#37-4G1,RH&n!-I "B55;<<K"U;$< 7KK#,Tj'e.?/ 4"&8;C  @s<{ !WN~r'&*06767!5!&''67&!!5!5#53533#3'67&'7;K{sCOHyhwse5NM=$=;:*_KNoBBY6(A*HM2B(@LCCAssA~e  lr m' MSW35+365735#35###'>7#'67&'7535#53533533#3#"/32>7#%'6732m^ lKjjkkKsum2deoI&; KjK &':0 g=$=)NA)$AM$)kLz9>2f7%top O<CRRRR펙* D)KK ~(*.47.''6767#5&'735#53533#!!67&3'67FXPF[(F6#:O%6B^dj67"/3267#&''67&''67&'767#'>7!67%#"'.=3327>7&'7?&*EK23bH.)$m<<) 7!!!#K=$=:9U(M  TmJ NcI#=}}ppp'W\U+&2TX1_ "_je~WAkkACpB[+C0Bp'"&,25!67!'#5!!!37&7&3'67&'7R.NIr)e SCx {{~!}aK=$=;!9%5Bõ BB;BB<'D=D<(C=D~[ qkt 9;[al653!#"/32>7#'67#533#"/32>5#'>7#536%33#"/32>5#'>7#536'67&'#379L,52p\0 :(7I5C0$ ^ ==553VY`I9C0( a ==543RU<$<:KK3 (*+'s%B@IM=9tB:UD 7mf?59wA;:UD 7mf?58xA4 "_je~|!<#)/OU[!#"/326=#'>7!5!53'67%7&67%#"'.=3327>7&'7?&<\M Na8YEPU:r9D;A]]-a'ky&v%ks565+Vµ8 +",BUW+M_n"'-39?C%"#"&5#'>7#5&'733!#326&''67'673uI #_/lp)u`$9M%3; D<@A?AN0F.=$=)M55H, !CHA=9=hY`bmC# ;rl{~z ~!,28X^d'67#5!#6?'>=!3267#"&57&67%#"'.=3327>7&'7?&QQoJ:}@J.=2m @ = ;HD>;U,D+^ $"#0O:FI!O #%CA( |=W7PEsAS=B:B,DBB5;<0l# 7ELD#A1m*Y#nox566*V8 +",;UW+M_p"' $%#!%!5%!5!'5!5!3'67&'7K @rrvK=$=;!9%p䥥>AAAA"~[ qkt!5 ,2KQW67#3##!%&''67&''67#53673673327>7#".5?&?&CDG|KY-85m^-N2=-x FM8gY+B-`N #%C@(<J #-2D9L,$n!!B%EKQ!!5!5!5!5!53&'73673!!!67%#"'.=3327>7%7&?&E"I*)KEU,B,\ $"#lAB,E7E6 :6Al>ko212+V8 &!&[55!!67'53.''67'67'67&'#37@F4)]8FB<M-S|!#U+ACF;$< 7KK#,G'e߷.CJ"uA1ml0At !WN~r!8 &FLRV\!'67!'6.''>=367%#"'.=3327>7&'7?&5367H5H>w7M 1\9Dk+-iMU*E)^ $"#7&'7?&535#!#3#&''67MU,D+^ $"#0P9FI!N #%C@( zBQ6MHpAS=B:Dn0iG!4%ox566*V8 +",:\Q+Jco":?_?: 67!&'!5!%'673&'7767!&'#5!#'67&'mH J:~ae1c=$=)Ni<;uNJiR{o,MK'/PA& La O3=?1 ~ op m(a$&@{ZA4E55rE1L7#".5?&?&'5!**NO^V*@+]N #%C@(<J#%"VRR8QY96 40Yu~` 8#V +0+,V~2:I2F:!tzUU' %)-#!#5'673&'7673&'75!5!K O =$=)Nm<: yRR z5`5' ~ x{ ;mpHuv !9AA\ "6  &BHN#3735%5#!35#%!#!5!5!53!!'6%#"'.=3327>7'&'7?&PE@{K@mPm@.[7Q"#!>B9FH"N #%C?)>F0DU1U>T>A;]]]]7VVV;`?@UU@?h`.X)/)&M.T0HB/B"q}y' "&,2#5!!5%!5!%5!!#"/326=!#3'67&'7N>zzrb$&P2\k& zNK=$=:%8(!]]<]ss};BAW~[ kou( :!5%!5!3'67&'7%73#"/326=!#'67333&zzN=$==;">`L* KnU! M3e=B=eKP*qq7%7&?& %3673!$'#5'67!53&'735#!U,B,\ $"#7##3'67ʺe&j I89HK0&,&_A+ LlK<$<}GH@v. _a lrjm58A9-5C;= 38}- D.RR~[ ' ,!5!!5!#!3'67&'7!#!!#5!5!5#rrM(K=$=;%9$AP'zV[e~[ .uxoCqDDq < !^367#67#67#;67#3'675367'&'767!!!3#3##"/3267465!'67 U   K<$<R ' :9 `2I @G >F*6Z9$g KW1;~~;cV<~^\GsS~[ ARn$%5@op,%~2A3sA`Z@2"?# , A Q67#65#;5#3'67&'767!3#3267"#"&5#'67##0#)K;$< :9n8J .76G !c1'*IK L9467Ycf~[ . lr $t !?2; -**9# -5BT@:D 1#'-375#+!5!5!53!!!+&'#'63'67&'75#PhI/M$JkmMmK<$<:9#L>1XAYYAXϋbCb&mDl~[ %opm78QU[a%67!7.'3267#"&='>7'>36767&>7!&''67&'3'67&'7c9;AeQB(F43G '&&d+:*RZ 65E1I43.2GGW?vlV96;K=$=:9u=PKUqo" 'B(&' .V<eOAbVYI9(6&>dN:%A(PT$A@=C0#~[  op m' -135#!#5'673&'737#537#5!!!3!5!JM5N=$=)Mi<9WPjf||+c+, ~ hYg}|=iAAiA8 -3SY_#5'6767#367!#&''67&''67%#"'.=3327>7&'7?&I+8FI!R),Iq3I `:-h]hgU?,*31U*E)^ $"#7&'7?&PK@P@^PKLT.@/\ !?<4BL8 N $1/$2=0HN1P@Q@B<eeeiii7;;7** Y}^$(+    1K:2<"m|-048>D#3&'73673#3267"#"&5#'>7'!5!3'67&'7Kq"!H- 9%H .|8;H $c.Z{,|i:{K<$<:$9#=OI;RKNSKA 5.1?& B!<@1?^~[ htp '.28>%33#"/3265%'67#535'673#&'#3'67&'7GcK8:[J66 op QRUz~Q  "  $(.JPV35#35'35#35##535!5!!3#!!5!5'35#'6%#"'.=3327>7&'7?&𤤤HH(@.[7Q"#!>B9FH"N #%C?)>F0DU1U>T>A;ĄNNFFAAFN??N;`.X)/)&M.T0HB/B"q}y"'2BHNT5!5!5!533327>7#".='67'6767!#3!!!!677&?&R O6O; #%C@(<J #-2X:B?=iCR|=8$V ?<) ,V2<3!A"&+mAbKRCi=mrYu` 17!!!!#3>767%327>7#".=7&^\\\sO:aJ+Ne Nn4MKU+@+] #%CA(<I#%"R@B=11^11-2z;373;4A 0  - A M 4TlxYj8#V +0+,Vu"buq14@'67'67#&''67&'#3767#5!53!#&'3!!#!5!O>$>50_! BA16:3U+!7$MM1.L"N) dP,OW#N3N, e4sE3;W4J7fO:!)h^U~qhhAaaA9?Tm9kKDJ\BB'*.4:!67.'#67'67#53!!!!!!3'67&'79WK3<;GG^#=G]d 'AVV+$>>K@$A ?>hAcLIR#^F3'A7{?5A #AAM;O;SA~[ ' op m K %+EKQ35'35##3=#!!%"/3265!!%67"&=33:>77&7&)ES+)A?BF_2F6 D (#<7&<">__7[_[[>\ C*oi*U*mak- *"+(.0s6D6@@]ti ' N&'#53'67!#"/326=!5!5367!5'&'767#5!5#' 7!#&'eSLNzK<$<c%ICKZ(" OOBh!!9Kl> {*[ _vYJb]MP~[ ?KK&A&F?/&8 8yzo|GT>a?-= g>^O=-C. 2 &1!5%!5!!!#5!5!5+353!!!#%'67&'#37ZZ;N6LN.<$<:KK3 fjjCC>5x;{II>B;BC0~' AG%#!'35#375!#"/3265#3#3##5#535#535#'>7&''67JDzK#%!^AW@# L#*B%4;$< *>>:~`lk#V)C,U9h;XX;h9UV7QWN[  ;  >#5!%!5!3'67&'7'5!53!!#"/326=!5!5367!5!M/|K<$<;95N4%ICKZ(" SPN+Ph:em~[ "pog@PP@?UK&A&P?2)==C."F9?Z`f#5!%35#%73!67327#"&'''$767&'!5!&533&6773327>7#".5?&?&InTZJ-;2<4Q9!>WW(BT&!H8=GJ)V*@+]N #%D@(<I#%"V A ~[ B lr xA%06m%#".=323:>?&367''67&'7>7!#"/32>7#&'7'>7#'>7#'@998/4/K  !+ * 'BB2@39K>#B&J3;$< ;9,WD -&+P7#8vIPB.KS)(Dnk'L2D$m5<(898 #($ .%/d~hq"R[ 1 op .=&HD3tkG1>ae=06W[: [25935!5!#!#=!%'67&'735#53533533#3!3fL5Of=$=;: xppKMuuMl+C+gg5  op >A?dddd??~= 39=5#5##3673#3#3#3!#'>7&'767'673 IͻM: : K+Ku>$>(Mԕؙ@BP EBB?@A9R=+5`R 4A} CDi ~ "6 2W]#3735%5#!35#&'#667%#"'.=332>'&'7'675+!5!5!53!!!#&'&'7PGlQ/@-YhI ,W1NK4H"N #81+|:-Ra&ķKBiPiB0q#9$5Z?>OATOOOO5HHH9NdiV c0'N`V/G2A5) < >:87&'7?&%535#5##3VH\@.[7Q"#!>B9FH"N #%C?)>F0DU1U>T>A;ؤ;ULAALU??q`.X)/)&M.T0HB/B"q}yww6$*er673327>7#".5?&?&67353367!#"/32>7#'>7#'#5'675#%'67#6767#"V*@,\N #%C@(<J #-2X:B?4C2MrP$I "!EgZ8 .|'`)W+.MXKp8?1)kP'GcBYu` 8$V ?<) ,V1A;~~[ }`pZZ9 !M67'6'$'$3'67&'7'676767&'7&'!#&'#'67#!}y#.mK;$< ;8-0+/I /3AaO?#; wYnosXw(- Hc7\/=-.9w*?'9!?!_~[ ' op #CdCN 9jk ...?V3AJzFA.Q )9@DJ%!5%!5!5367!!!#3!535#!#"/326=!#'67&'7673'67{{~Kb *?%N%WL'# {N 7!(:N)M=$=EE9Fn> +##>;L<KQU[%&'!#67&767.'!#5!#3>7&767&767!3'67&%'673&'79G/G=J_wr<%BM9K4EN1K9M9K4EK3J /K7I H+K:L3GN1J9s2NW7$K+XIGD=$=)Mi;:(907,=-6DSc^I\`qbSc^IYc!:b,, NRPf\K\`q/&77@/';.9 ~ op m ' /5;Q#!%!5%!5%!5!673327>7#".5?&?&#&'#'67#5353+K%%%V*@,\N #%C@(<J #-2X:B?yXH-9?KB`$AK eeaa7^!Yu` 8$V ?<) ,V1>Z: / jma~ "45;V\!5!##5!#5#5353!535!67!!!!&'7+5'67'673327>7#".5%7&M9bMMMMm/P ~[O,Od'LPj%cA*_8VN #%C@(<J#%"V)!>)7F2F=,C-@Kz|b,Y8#V +0+,V{!tz|' *0;!5!35#!!!!5!5#535#'67#!#!!3#%'67&'#37Z Z GJ$.,h}Z{J!&%+1N]ci767%#"'.=3327>7&'7?&#&'#5'67#535'67'6=3.''67%'67!U*E)^ $"#5N5[0fSAU\>T > '< ^IY惃]ITMtYtqiWouA &1!5%!5!!#5!#5!535!!!#5!'67&'#37ssMLN( @MF=$=7KK4jj9`K稨Z==KAA9 / jma~ "> >BH_ek!&'35'35#%&'#"/32653&'!5!#"/326=##'673367%#"'.=332>'&'7&'7SBYHH%I/UO*!FhL\LhzFZR  MhKQ/@-YhI ,W1NK4H"N #81+|:-Ra-e?>OAT-..??5:gA T+A'''&$$&'U%8 $ APssUNdiV c0'N`V/=2A517hZ c' AES&'35'35#3'6726=##&'7673&'!5!#"/733#"/3265NQGYFK;$< K+9FK4{*G/H GaK5ZI d:PFDcc9^~[ F'Hop ^eF,&&&,CK$>Op9I(B)@ K!5%!5!67!3'67&'767!!!!!&''67&''>7+5#zz_7;pK=$=:9]1G d@jgU==7'7r%.IMM6F!3?>~[  op $w .A#;U?-@&AD#?54>09X- 7"A %<HN67!!5!!5!'53&'#5!53!#367%#"'.=332>'&'7+!!&'7b' rPr vQ/@-YhI ,W1NK4H"N #81+|:-Ra&PZ?>OATB24-9;A?8.AXXA:,?NdiV c0'N`V/=2A5*!2hZ c' "&@#5!3#5!'67&'#3775#!5#5!5!!!#"/3267!'67K{I=$=7KK4ޅυ&"  )*DuZE L+" / jma~ tyyyy==AA!*~p$ B.a69f " DJnt>=%35'35##3=#&'7#6'675!#5!5+!+!&'7#"/267%3:62>7#*.4=7&+0  1'zNuPPu.K5C6J:5M!HV2@3]'q$0IFFG&,4 +_T,Oz:L ^CC9C|C|CC C 2!; I*2*3"hoqe;Yx`*  " 312 38J5H;' Ft&'#!67#"'!&''67&'767!'67.=3327>7 %3#&'75!&'7!67'67#53&'"# V"sr !O,H~ŸǚR32HahP{\s"t J =<:C 7R8F78M72iWG%RP7.Y0)E &9Z>#+0;> &? # =M@9CPKC4)'36,-@@-;?b"2`L&9*4@ ;+(+&_]%=#}'+62#3 /#aK.#&A$P (.4m35#'5!'673327>7#".5?&?&33&'73!67327#"&''##!67&'!'6=!&.W\rA*_8VN #%C@(<J#%"VW!T&?YH>;25j/*7GZno::|b,Y8#V +0+,V2:I2F3!tz|($8#)AqeJf}Z%7G@:,*-#1wziJ>KA&,7=67##".=323:>?&367''67%767#'&'7>7!#"/32>7#&'&'7'67&''67&(k#0998/4/K  !+ * 'BB2@39K>#B&J3;$< 7> m5<( ;9,WD -&+P7#81&! -5=PB.KS)(>2@"V[2UO1LN+?V898 #($ .%/d~hq"R[ 9')[: [Y op .=&HD3tZa 8U<1:Q"I0CxF  Y_35#35!35'35#67#63267&375367!#67&'7#".5#'67+5&''67+9LkkGP*K L_p6.;  3/*04)9x( WI;$< #vzzzz= 300R65<0Irr!?K;$< :9_&MM}K ?=B; (,,?(!%$*Q7Nrxx~o ! op UtyTL !++sK2Vϕ C' %GLPV!5%!5%!5!'3!!&'7#'67#&'7".=3673267"!!#3'67%%%K=x#x lh":Cie< L &NG@I +$G<KK;$< "66e77.6$>3B=F93+N1?+@+hr ?%="2 (~[  C37;?CIMSY#5##35!5!533&'73!3#3##"/326=!5!535'#3735'5#!35#&'73'67&'7OK'O(:*2IFuu J fb %ION-U\+bK;$< :8=119r5@GG&%3@5#?|P$B 'z?4(MMMM5HHH7M;7?~[ 8 lr x ' 8<B355#!5#;5#!5!5+&'7535#5!#3!!#&'#'63'672nn'qnn1G49ͳ,g$nLv"K<$<XXAI nzRnXAAXIAnY>_ \>R~[ .&Dag35'35#27#'>=67!!!#"/'>=!3267#"&=#767!5!&'&'7'67&67%327>7#".=7&ߞ: ,B'*476XL20('A %$%43C;5VX7=cWtiX\S+Ne)qOMU+@+] #%CA(<I#%"R@B=& 1/-\eH&7}#; n^:8D<-@(%' { AR!93.E<<[;*!8&9( />3;408 2zTlxYc8#V +0+,Vn"buq"BRXtz767!677&'7767&7.'.''767&'767#5!&'7367!!677&'6%#"'.=3327>7&'7?&(-2a6468D>=\{ ET2JE"E 6 W-!JX(-2E'#H!6468D>=drm@.[7Q"#!>B9FH"N #%C?)>F0DU1U>T>A;;2DG: /LQ#yz OFJ2>hx A*">C;2DA*.=.:0!9AG: /LQ#o L`.X)/)&M.T0HB/B"q}y "12Y|35'35#?.''276767&#"./326=##!:>7"#".=367:>7"#".=36767%327>7#".=7&?&AJR@B=5526RW<IH=B901<#y  % [4=5'  ! ' O4=5=TlxYc8#V +0+,Vn34;3;,"buq 74:_##5##5#53533533'>333267"#"&5'67&'#37!53!!327#".=#KKKKpH,MRLmF" C E"`<$<:KK3%K>1[JK DADDDDASSSSW9&CJ 046?  / "_je~"MMAP2A!&*\P1 ,>!5%!5%!5!3'67&'7735!5!53!!3!#5!!&'7#'67\\\K;$< ;94O/LJn%p$eaWAAs??3>n~[ ' op x7AEEA7iuAA=L;NA5-W9@3J ' %+15;P355#!5#;5#5!26=!5!!#"/%67%7&3'67&'7535#5!#3!#2nm&rmm^D 84HHnG1Jr0eV0YLK<$<:8˰DDDqqqqq??AA;@B^-dD0L]1^w~[ 5kq]NDAAD "<Z!5%!5!3#"/3265?&!5!'67#5!67+35#5353!533#3!!#&'&'7&'#'67M"F&ES@A/B/a OMM߂a@DC.@>Q&G81E6:g9`6W>>1=F!B nuu^->2C<-?FFFF?-"YQki*0**^*Xm1 "# @Fagm#3735'5#;5#7#3#3>567!###'##5#535+35#5353367%327>7#".=7&?&bbIcbccԑzJbN" 9N`GNU+@+] #%CA(<I#%"R@B=88882888c//A #B =3A;d;!DDD!5!!5!#!5#!5#;5#%!!#5&'767!&''67&'7#5!3'67wwM#dGł\mG&89oE@z_<9q4JwglK;$< 32gPPPPP4Hd=!/EF=87=&2?!==V<"c~[  ' #'+1^67#;67##3>73>7!5%!5%!5!3'6775367!3#!#!#&'7#'67+&'7>7EZL[LLLK;$< P; FP <FΘq"qe\zK#8 ) "" c % % % % Z99m993:~[ :34L:63x4A:B76.J0=0;lr ' - "/NTou#3#3#3!&'7!5!5!5!5!535'675#535#53533#3#67!5#535#535#5353367%327>7#".=7&{LD+NeUAP$?jrPxU+@+] #%CA(<I#%"R@B=05/:*)33;4 84427" ; 650=44=050 9 )*:/50=44TlxYc8#V +0+,Vn"buq 'JOSY35'35#'!#67&'767#53#5!#3#33267#"&='67&''67&'7#363'67wF6E- 9<;d88.O/#bw  ; %>p+??(79g?%@K<$<'&'7+!!&'7#"&='75#'>=!53!!!FҎ'vlK60!HE'='IF;_ֱҒ.:*<'! '%+1GMSntz!55!##"/326=#'6=3!!'677&##"/3265#5!537&'673327>7#".5?&?&";(+A/71?Hhu<::85#:!I"B)_X# M;O<=:'A*_8VN #%C@(<J#%"VZUUZGZZB 794*JBO$TG3F,B6C-X,OK<$<UQQ `}<^==QQ<2Q[UTmAAfS7<9V7.<)7&'7!53!!33##3#"/326=##5##35#53735#353'67#35#53qFH%A#8 #O%--6WD FGJ/K<$<؝77775888ha=P kqN(TT=1i@j/7767!U K$\EG.S&>=MP|$41K 5-+.Fn ϻC60_af#G*MF[; ]!'E* KB @@@@@d3333|**YA"z=(HKK<3*5;5!&"FM 37."@;:># *8A6 =$=K:>KNN~ ki3VVA>@?A4B'E:E)=VQ.C)ThI8+:'673327>7#".5%7&A;=1l%\:?AFW:MPI ~cDdu_S,Od+E'",CO FLm]$;j"h8*WgA*_8VN #%C@(<J#%"V5$$[0"^ $#Q<-! 3 <B35'35!#335#!5%!5!#!#53753&'73673!#5&''67'[[K=MWK"$D*+."H&I;$< VVXXXWqZZ6S,z,,~ H92,3?:800 ;R[  7 g3567#%353'673#&'3#3##5#53=353&'#'67&''67'&'767#53&'73533'6̉C]) # r 6RkK<$<@2I\8__ooMM0[EA (L;5 '0u3$(69X;C>BA6{P|5JkC8@I$#.~[ yJC?NE@S=@}}@=d7E:561b3"#2\~& ndTaBK?J@#?QB" 28>DJPkqw#35#3=#&'7'67%#"/3267!!#3#3#'6&'77&'77&'767%327>7#".=7&?&Q8a8UE V <V :U+@+] #%CA(<I#%"R@B= 62h//WAT.GPM*muv+?<_|=/6266UaLKDLCR>.A2>H'8TlxYc8#V +0+,Vn34;3;,"buq 4 :@FLR5#5##33'67&'7673673#3#3#3!'677&'7&'7&'7iK;$;;98L L8,?,C39 G )E,/BAF,7____<_~^ <rzs3!/--'B_<_<_AMDgn]ew zdjpth ipwb ' #)-1C#5!3#5!35'35##3=#3'67&'775#!5#!#5!5!5+!+uG#xF$乹K;$;;9N@ISJA\\7X\XX2~^ <rz}aaaaAABcB1"(N%#!#&'7#'67'!5%!5%!5!3'67&'7535335!5!53!!3533##5!#5#O7ǐlmceifffK;$< 96|IdM dIwwIIqNu4?8@74.I/9+Bu::o;;4: ~[ B lr 88N?@@?N88A4444\ <"&*.4M67!#!#!!!!5!5!5!5735+3=#37353'67&'73&'#5!53!#3!"I5 0S/ NNIK<$<:9jNi^84958x!6>:AA:>68???q====~[ %op 85?XX?<1=N "G '28SY_35#!5%!5%!5!#3!#535#535'67373!#36673327>7#".5?&?&lJ7dI[MMwV*@+]N #%C@(<J#%"V3' -Hq::09]~[ "@ ~ }!20G[QZ&ZS$8!A } h K !@FLRX35'35#35'35##3353'67&'735'67!#3#3!535#'6&'7&'7&'7____bbbbC____K<$<753@K)G 0BB0[A& 2C-=C9F y(E'{35C8/DD~[ 8`}Z0&n:AD@@1|f^|_ xhmpmr^gt "A#'+1LX^b#5!53!#5!!!!!5!5!5!5%!5!5#!5#;5#'673267#".=&'7!#5!!7&'!!I|P|I3ʛ|ᛛ!?0\7V7<3I #B96GF= >V^IVITA==WY3QNN041661404/6FFFFF nQ-Ne} R !&'{@.(,5V_n$hb./ < 39dj67!!5%!5!67%#*.=33:>&'7373&'#5!53!#3!5!!&'7+5&''67 *<='67!3#3267"#"&=#'>7#!!53#5!#55!5!5!3'67&'7%? HB,$5o=H ;&)H  "P&9 {ZD[wMML3*K;$;;9 !9 hw*Wv <;=  ' T8V9 5$@s''&2200S00~^ <rz} D U[y5#'67%53'>3+#!67&'!'67&'#376=!&533&'73#67327#"&''67".=33:>77&'7&'7=y<$<#.6yF-#9!*:& &KK3\F[&61&4$5 A-G'  > PA%C;I!?%483MZ#*  J;= FR,TF3D=G0YppU ::7-$*}kL8CW _je~[@;f}20( .+AbXoe&)11*(_tr ( % 121I<0;I|p ww '/37;A!5!#5!#5!5+5&'75!35!+!#&'#5'65#!5#3'67yK.H59+(*:2g$rMy!{K<$<{\?7#".5?&?&I8!?]$z}oq l34:8!;.)2jP$V*@+]N #%D@(<I#%"V>6?=J!66< 5 V98;XI37.E0#8 .,'  !0'!cP5;:)(3,4&'?'P-*=Yu~`w8#V +0+,V2'&'7&'7'G  &"I$ \=MP|r6G'd.G E(?(LF %()FA-=L .(%`#+ET+Pa=/K=I==p==2> %6=3=2>53*5#$2߸=(;SS>h M=fj ( lQiqW 63# &H}l/H3>644af"f D &QWb%#!#367!3!!.''>7!5!5735'673'673#&'#5'67#53&'67&'#37K3JM7P(fi,0sq"85-"%BLLɮ HWB$.8*PyEG.LDE;Y*X2PBa>=aBP1>b/.: 8 .;O92 ,_jo~| 7 JNT5#!5#;5#'67#5!5+&'75!5!5!53!!!!!!67.'#67'6753'67o#ooo b.G98 )N,12?667DI\!p.'#XQ HHVK<$<BC_A;`}w\:APPA:;AC;3E*D:@"@)u,?:? t9~[  ' 37=Y5353753535##5##5##367!5!!!#"/3263'67&'75!5!5!!!#5##5##xmGkHlK  3-<, )K<$<75 $`%KID44b44b44b44@#??1A X~[ $`}ND8AA8ܣգ"6IY_z67#73673#&''67'675#535#5!'>7!#'675'6733533#3#6767&''6773327>7#".5?&?&$1 '@4"C &J/["_6Ah%&`MY +3M(3a+g\78HFGM}}MF=#, 8V*@+rN #%D@(<I#%"V94(!IEne>@9\)>88 7(*O#-Phsy8#V +0+,V27#3'6733#6727#"''67&'#3#3#3#67'675#535#535#5&'735#53533#3&&'7/KZ& 8K<$<?J -"C0J =F>39O;i>)qffiiiiL 4Ciiiia 6J69>=3N  ~[ {=YrgvB4/CS7989<9J =C.B W9C9?$ae c=__=cceSXa 7 "&RV\5#!5#;5#3#5&'7'5!53!!!#53'67#53675367#53#.'67'6753'67o#oooQ8*O*{iH=f$O*J@-?30BDX!m301WR +fWK<$<lllll9+av?DD?,g99B2A9xtfJ3999(:73$@+j+=;?o+~[  "# "Z`f#!'35'35'35#67?67'&7.'#5##5#3!'7>7&'767#' 7677.7&67%327>7#".=7&?&B#៟?&?$F>);(@)C6<?(*@LMFbk2L41DY Tf4Q,]^8a{&=B.>5U+@+] #%CA(<I#%"R@B=:\**R**()DMRK<7#3'67&''&''676733#6727#"''67&'#3#3#3#67'675#535#535#5&'7!&&'7 JG & 9K<$<D .!,")3%8IE #3I/!C0J =G=39O;i>)qeeiiiiH 4Ciiiia6 69>=3  N> ~[ '3<21*+0"03*&Qy')3Ja{<~]rgvB4/CS7989<9J =C.B W9C9?$ae -tOeSXa ' #)/\35'35'35#35'35'35#5#5##3%'67&'7!#3#3#3#3!#'#367#!#367#L\<$<:9c'M#"3KKi96&77i772777i772799l8849 , lrm$794849=,%>&1~n~|($ 7 #)W[_%5#5##367#535#3#3'67&'7#3#3#3#3#3!#'67#535#53533535#!5#y ?R K<$<:9 M#"9l9=NN<>3@Y 55(>~[ , lrm?5!8<4>3@=,<>&7o5?<<<75#%35'35#675#3'67'267##5'67#5!5&'7263#5!#673#>7#5^^ʔ.7f#K<$<# HI{$* / 9 * NN85b!J}t6612 %>>2;4q>>2; 2~[ ?#w= ?%I<@D;$0 $5;SY_ow{735#67#653'6%'67#'673'53.''>'6"&=33:>7&'&'#3!535#53533#5!#5!53'67&'#5!#6 4ω "2SDT9)*1;D CfP=f"zKi{?*>)Z'F+ C %#PI@4AD0">"0J DDLI//t- K214<AAT51*;#$;EG;3[u+?]99U>dB=`< qo=# &' 322@T&U=4yyE::E?CCYY<<>.? `"3"47;?CGMv|%#53'35#677&'7&'#5'767&'767677&'7535!535367&'7&'#5'767&'767677&'767%327>7#".=7&?&8񹁁y 7" 2DA~6 .4# )!80* 7/7MSh2#1 *5 2DA}7.4# /8,/ 7/6MSh1#.sU+@+] #%CA(<I#%"R@B=ܱ:@m^ZZfhQ   D$99= :8O8GDqa;\kLR66h::d77d77dO^[a^   D$99= B0I>GDqa*\k[ITlxYj8#V +0+,Vu 34;3;,"buqF?*7&%3%67327#"&''67&''%&4=!&533&)_LS@h+I4)S,J J,(v5Pm:/+bNE 69;#CƝ|MWxf^7C7ƺAZ;OAI5$L833&'73!67327#"&''67&'!!!'>=!&LPB']QN6\%G/x:( $H^'p2*‚I[9/*2;63#507$Cʜ9W$ndC?FDAZ$$L8%&'733&'73!67327#"&''67&'!'>=!&X}4tbLPB']QN6\%G/x:( $H^'p2*‚Im9/*dr2hn-;63#507$Cʜ9W$ndC?FŹAZ$3:C'>7'676=36773!67327#"&''67&!5!&533&=!&KPB']QN3  BGŹAZ64*IO!67327#"&''67&'#67#"/326='675#535'673&53?&I-E9e)%F]#[(t!o-nCYj? UR`] agRX NVM<;NJ7#5353353%5!&533&'73!67327#"&''67&4`J:<>63KJhMQK[SG*A$G1_-$H^$](p$k;AH1>ACJ*O%%=!(3CȜlʃ8S#d`yK@NA; 0W6767267#"''67&''%&'7%&'77267#"''67&''%&'7%&'77FzH,;G+D7/xߤ?-N eQ wo0JzePD8/|@.* N rg qy5Hk&0C :9F;);M>bAB39EC 4163 <.A#H6>>*;NAjI!C<F<?97#!%35#&''$75!&53!!67327#"&''67&'L| \W\U /K-*E"G,e1!$H^%b*%{;/<U";$C,F,<C%OO%Cu;X%jd??B#KKQW3###"/3265#'>=!&533&'73#67327#"&''67&#3#'67?&1M9 I:&"Jx2,7WL**L8+"9LCˡo5P!ZYv==D]>e{mN[^9-,IO!5%!5!67327#"&''67&''7&537'#3##5#535+35#53533#%&'7  ]F/@?^ DZ&P!e'd'tsM 񪪪MZIM'4B7#735'35'35#%3767327#"&''!##53#53533533#3#3267#"&=#'!67&''7&&'73/f'L 6%@6O DN"IXzK-RKKMMKKU  >IG%,??'g~Q$)6>5+kG;MMMM7MuEjYqm/ENR^B#6c@U@PPPP@@[=`(+sMc#*C!Ia D qBMOLR'2 ]3=#;5##3&'7%736737&5376727#"&''67&'#3##5#535+3&'73&zzzyyyy)6>5+B>-"C).zL 6)@:PCN%Ml&k~MzG1#=( dqqjjj:q0MOLRNbVVIQ` yvEziNje5O!Z^lL:Sx QAAQX9OWV/ a5#5##3&'73673#3#3#367&!535#53533#!&53!!67327#"&''!#'6f8;=D1G FF/>ܾM K)=$E-Y$ $D^?2?%yK!![!IIII7LDZD"PNy>/6+(5+9,O^7d?;} AuE|Wyr-AJNTD:Ic K7*O>@=<1G1 @2EqI:9C]LN79.7?;MJM<9,9? rCMOLRA5#?67#%&'7'6767&''7&53767327#"&''67'675&''>=3533#3'3:>7#"&=75367536W 4)6>5+c<)1,@5TB#rsL 6%@6O DN"IXz&&^03*86!M /:   A0//e,W/-A&A(U_"MOLRwB3;8O D xuEjYqm/ENR^B: 7A -hW|EPľ6;5A=3.$%# 2: cA[f< %,  $(,Z`#533#535#'35'35#&'+365#!5##3376727#"&''67##5#535+!'7&&'7}Cg?Uzzzzz3FzSWblcPzzL 6)@:PCN%Ml&(:LzH)6>5+A\\\\\7X킴 B(7aaaaXcD_Nje5O!Z^lL:"ABco>MOLRAy}5#35#67#>&'7%3'67#73267'7&53767327#"&'''67&'#5!#>767&'#"&='>=3533#5!FpΈ  /)6>5+Hĕ>T>sL 6%@6O DN"IXz&0Q .b,  / iG#q8|m*F#(7!LǠ{)HO|6"*"4@MOLR3>0-#&?6 ,0 xuEjYqm/ENR^B9A ;#%+AV <*,?YEQ͒.8T882/ kq#3735'5#;5#35#35%67327#"&''&'7#'67#535#535+5!#3#3#67&'!535#53533#!&53!!&'7yyFygjB&E1_ #D^F!G[)#&GN<!5!'>=!#55!~7!'65!!!!.!5%!5!'5!(.~ b5#'65!!!!!#"/32>75!B 6*goq:sj*??J`c0''+\kA5ơW;0eޅ3 A='{|-CHH)??/"'35#!###'>567%5!!!'>5OpK NN:>C!Ցy{mBE#G"F\/K6E,nDD_ԃ%I  9!5!'65!5#!5#;5#5!5##5##5##!#"/326?p=sME~~~\\~HGK(F- q*&:ppppp??bPJ'B   #)9?EI!5!265#'65!!!#"/'7&67265!5!#"/'7&675!U j9g_G8$\B&H5&=!!tKX>I88 "4Y< 0(^SN[lZ(f>4/ A55@à38QQQQ!9M !( ==1[ͯ:  8!5!'5!###'67'6765#535#535#'65!#3#3#ef Nk[mE$nd fy9ga??}@_t(..9?:D=DA1 D>RYu(N8qk0&WCDSD&CET*D('!%'675#53533#67#"/326=XlPN] _W#K#_S( TI FFGV(D+2'!!67#"/326='$75!5!53`\iq+Z" / PF,5?=3X*E-^FDIdF5'@27>745#"'.53%'675#53533#67#"/326=R J 4*6(>L `LMUA D]!GSI! j .fZR\Q!.X68FCCDU)A,4'3!##"/3265!#67#"/326='675#5353|G'S?z;(G5 DE> UR1X?QLFV( F +l5CBV(A+E C4'!5#67#"/326='675#53537&''6767&G5 DE> UR1X?QLH`BJ.aM]4xCBV(A+E CY<Ep v(2'4V".='7'$7%23:>7'675#53533#67#"/326=.0.2d<vE "  L 6/8B<||L||T M->IFUD $ #H$$DBD(EHF1#$ 6:@ -FCC E!V(A+2' -!!5!#5!#67#"/326='675#5353?L. ?E>IF3D%Y||LvDDDD5CCV(A+EC+'1##!5!#5!#3%#67#"/326='675#5353N&kG'4B:M1 C08BxxKmAD DDBCV(A, E B2' -!#!#=!#67#"/326='675#5353KMpN38P>IF/SECL?+?Ce5CCV(A+ F C+'(N6#%#67#"/326='67#5353'>7&'767#5!&'#"/3267&'Mn XG'4B:M1 C08BxxK^5\laM8;JR 2 *$ 4n[/pqd\4JЏBCV(A, E BB7DyX.eMnCiD LM F 1M4Vv*'!L#67#"/326='67#5353"/32>=#'>7#5'67!&'#53&'Tf;&,=>HF89H0wwL/nN>&%/~q&:m:G&CS3J%=xCBV(A+ FCED-M:CȜ5:#6yoyDɜV!?/' +G%67#'67#'#67#"/326='675#535375!3&''67&''67_1:D(/x?1 ?>>IF;<:C||L\%9qWu#~]u'rh;$8d]o3#{CBV(A+ E CIDD[TAcH?LjrE;Co/](/ ?#67#"/26='67#5353%33#!!.''>7#535#53[i(. 5.@(7F&.HG6zzMmP z'`&-u'xCBU)A+ECDEl:>,\^+>6qED&'*L%'6733#67267#"&5367#67#"/326='67#5353t 83MS\=F'# e1M[a0{qMT-'!9:M1 -D/IvvK4P-C  E}+qCEKS%( 9J~4Q nCCV(A,E CI767.'#3#3##"/326=#535#535#'>7#5!35367!5!3&{D&NA5I\Nh1M+#G/nd($ע'V'T!.w v]{v :lbOk3wYe?J]9];GP(A*D;]9]IHIDD s5>?IF3D!\{{MDDBBDDBCFU)A+EC+'!/5;C#67#"/326='675#53532653#"/'677&6$7kt#3 *7@IF5CB=}}MW M9\? "QEQ!DEL+F4 =?DxCBU)A+EC+FT+Eٴ "(/B35#'333!.''$7#5#"/26='675#53533#673=#53NN<~&g(*o(( F@IF&@6A7#"'.5!#5#67#"/326='675#5353[+=MIH  M ($ aFCUP!2Mc1+ J>$2?=,B.nnL> 7*-3=> -f%?CA V(A+ EC'!B#67#"/326='675#5353"/3265##67'6767! S&)3#9!1*3+32bbK`X K_rYU6&xCCU*A+ F CF,'"'EL1F S5:V)2'I#675!&'767!5!3'67##"/3265!#"/326='675#5353|;/9hd.V8[FqUn 02P;;4CAL@4% 8B<"NF>J8VKtBBUE4=,OTBBoa *Do`)F`V(D+=>V(A,F B,'!7#67#"/326='675#5353&'#'6!5!#gvG')M:M1 C0B8xxK|u4tqLp+so tBCV(A, F Bp;F?DD2/' Y'>=!3:>7#"&=767!#"/326='67#53533#675!&''67&*K9T  C-+,5=!3267#"&5ax6= J3>IF;<G6||LMN*]m2@I&t (CH&VBBV(A+ EB*CxxCY?;%\|# 64@?  #A4'7!###'>5$7'#67#"/326='675#5353NWW;DJ'?1 ?>?IF=97E{{MG\3J5E.qMCBU)A+ E C'?p'3:>7#"/32>5%#67#"/326='67#5353".5#'6=#53533>7#536533=@8)t#!, ,D< @/(K1<(:>ZZICH9 OLQ6HCDDI76 TVI@ =6K^'2" !  E 5-CIU*A,ECB !* m@^ FPF\:h.n 14< &/*L%67!753653!!!&''67&''#67#"/326='675#5353d5,3KW @sfoodP8Az4%\35:5:M1 =6#WxxKm$ dB4774B>:A|[8@>cc>B:XY;BCV(A, EB1'7'>5!#./!5!'#67#"/326='675#5353 w@A7ַ80[ ?x;4 B:?IF=9:C{{Mߴ*c8UCCBU)A+ E C.1.P35#767!'>5353!'67#3&''67&#67#"/326='675#5353 B7S\:~m8/,M+>#Ekdsqg[_: 1.?#2?63>1nnMWcԺ;\ޠaaCLF 8:ArR,B-ab,B'XaC AU)A+ EC&6)?C#!#5#67#"/326='675#5353%7&''2>36767&5!M NT@/7:M1 E,6BvvKAdQC" JDK6N-(!6S6C CV(A, F C2 %=* E M!G?a3:>7*.5!5#5!32>7!'>7!#"/#67#"/326='67#5353.J;JM -%G?h9@ 3;,  m7M;3XK !$1Nvh2* +>=?151L!kkL B?3@+2:#&% ARb0Bm 5,=AeCAU*A+ F C.''P&''#67#"/326='675#53535!.'#67'67 73#327#"' mO{_-*1.?#2?63>1nnM^4U[m #6Pe ȿ   AD]b CAU)A+ ECYC,Р&BCC EAAm\BDxS<8'1 >#67#"/26='675#5353#&'#'67#535#5353!!R`/784@(7F&B5X&zzMQ-RLa0eLxCFU)A+ F CBDnABCC!'A%#5##!53!#5'35#!3=#3735%#67#"/326='67#5353NJ N KNW0%3)=?1A%L!kkL?Pxx?A㢢CBU*A+ F C!' 1=35#!3=#3735#67#"/326='67#53537!#5####LY0%3)=?1A%L!kkLudMLKRCBU*A+ F C?$?!/ =#!53!#5'35#!35#3735%#67#"/326='675#5353KMLMY0%3)=?1A%L!kkL@ԭ,@A +BBU*A+ F B' Fh35+365735#35#"/32>7###'>7#'6735#53533533#3#67#"/326='675#53530m^ mKkkjjxD0 Ktum1ddoG!KkK U+%89!1*&832bbKA5AM5X D)KKkLz9>2f7%CRRRR펙*CEU*A+ F C/' 2%#!!5%!5!5!#67#"/326='67#5353KIhhiB )E@)7F<;A5$7!#&'#&98DzzIzzC/3E?H?8%AX SW:DG% NH"4@MXF CCFV(A,^>-0 <#' -QW]!67%!67!'#67#"/326='67#53535367!3#3##"/3267!'67%&'7&'7 t q yd(/-0=?1I-@kkM;I!DJ RY,6+H<#dJ!XE`4ZMNMa3fLuUC;CEU*A,F CCtCyA?*A+4_QP/KYWO0SV%1%5%!!#67#"/326='67#53533!!!#5!#rYB )E@IF<;A-K/pm7L6hD>CV(A, F C? F3F#+G3##"/3265!5!57&#676#'#"/326='675#5353== D/ZU# G>XE@Cd+%`.K&K3=?1C&B.nnL'D_-E5D%!7C |Q?. U*A+ FC''!'-A#67#"/326='675#5353'67%7&!#!5!5!5!33#HX6)1>I5#<9I3xxMAW.F.DQ;F;N.NtB CU)A+ FB#qqDDCYC%87%!5!#367!#55!#67#"/326='67#5353nK N MnsiB )E@)7F<;A5#'>7#'675#53533#67#"/326=K<w_5..GeMB y,l} E8zzLii6(-8A&6A0F?; B%.A%tUFCCFV(A+''8<!5!###67#"/26='675#535335353!533##=!XL@`8184@(7F&B5X&zzMSMLXLMMLp@9GU)A+ F C8BT@B%'%3!5!'#67#"/326='67#5353!!#!!!!wwiB )E@)7F<;ACBV(A+ECE2aD1'%:!#67#"/326='675#535375!!!#5!#'>7H1{L%N)?H?N.S0M[\4MK4B%cuT.$CE V(A, FC:DD|66[Q:HW*3!N#67#"/326='675#535353653!&'73!67&''67&''67Tf01 +@EC? 6<C5wwLNER)YU@4YT)I/fR|/yTQe7mOD4;8bmxCBV(A+ FCCAFFA,'7*9'C-ԟbK=J_gB2Ik`=r+, i76#67&"/32>5#'67.''6767&'7#67#"/326='675#535336767536533>!9 KlV_!T*UD x DHC  3FHZ>&)3#9!1*3+32bbKP"?+D:G(@01YJ Ii7d F &J|n$# 7E[*CU*A+ F C) 3@7|86}En؝R/  3%I%5##67#"/326='675#5353'>7!#"/326!!+#xA2 ?>>IF;<G6||L98\I _njFKM~CBV(A+ EC1E`58_6 FN6%E.!,!=#67#"/326='67#53533#5!#33#33333#3=b2*-5=?19-(EjjMII2IIGLHqCDU*A, F Cw??TYb4')AE#!#5#67#"/326='67#53532>5#'>7#5!#"/5!MO7}G' F5@IF9?7N T[<AM*HuuM07U~53<NCC?}@}BB}@}?!FFS(B C+? BF<)C}:0fD+'!A#67#"/326='675#5353##5!5!5#535#535!5!#3#3#[kG'4B:M1 C08BxxKO"=tBCV(A, E BOCC?}@}BB}@}?)Dd67#7#67673;#"&''67&''#"/326='67#5353%'>=332>5#"&58n $ }Q$@F`0~8Dc'dC#$03>-9!/2__J0871( 8 4H= CM*\QDPYrI>K~VhU6U*A, E  C?H;@# +LPDNC"B.@!0D#67#"/326='675#5353%3!'>=3537&''67667&ox?1 ?>>IF;<:C||L*m:0,O/EIAG .E?K>@s xCBV(A+ E CQD5]w-02D> ]&'!<@#67#"/326='675#53537 7!!3#5!#35!5!5#5!Ja@/7:M1 E,6BvvK}1tMK p{sC CV(A, F C[MD$Cm55C -2@O33&'73#27#".'!#67#"/26='67#535335!&'67#5!#67MU,9+*(&  < .% 82#i5- *E@)7F&2B)RyyM_j FMH}f92c.L">NBujH+BV(A+E B+\X7%7&6Z%3 ykkMNkkb+"=?18-<0jjM)J+90KW5l6ixC6BBE. U*A, FC/x;0@}.5k4-6 Z3&'#67&''67#5!67!53&'73673673!!#&'!!!!#"/326=!5!5!5!5'UM.ަ }a #,%C1.\"M!0&G$&# _g >Z!x)O4qk0&^A5@ +>I;E*U F:X5367!!#'#"/326='675#53533#676753675#535367!5!3##"/3263 Kb8TK&# <?1'> 95kkKQQ&&#I#39}CL!HMK D.6>Dz"0G U*A+ ECC/) s>DC\-FBB[B2C?B ('!+5?W#67#"/326='675#535367&767&767&767!'67!'67&K^G'4B:M1 C08BxxKhN8L2HM2K:xN8K4EJ4J:xK:L2HM2J:4_d]/c)aJO2ˇ]tBCV(A, E BVe]O\evbVe`LYhvbSh]O\ev41DG_Y=9\?+>&P>%/\#36%#6767!5!5#53533673!$7!#"/32>7!'67'#"/326='675#5353-4GJ[$0N3 9EcYd /3DwbF  K#J=?151<0kkM;C@9ZA=RR<;0(i\AG91?8"( DHUE* bt; U*A, EC1' ?!&'#!#5&'!5'675!#67#"/26='67#5353{`hRKNw*= ;wei=# />@(7F&@6AtH::+Ht_CBU)A+ EC#9 @!&'!5!#5!&'!5'67!#"/326=!5!5!5!5'$%!!\0Z>>HKNqwfwqi)O4qk0&Oz`/''PsPA(99(APs5:@5@ *:F7A87D7F.;!GM#67#"/326='675#5353#3##"/326=!5!5!5!5#53533#37&hpB )E@)7F<;D:zzLbbb&Pb\&ffN2_G4NxCBV(A+ECpB[+C0BpCAkkA2QT1\.4!1A#67#"/326='67#5353!!5!5#53533#!!5!5#53533#hp7* :4@)7F<;D:zzLOOxCBV(A+FCAA@vv@AA@xx@4')OW%!5%!5!#67#"/326='675#5353%#"'.5367327>75!#!YYzsG' F5@IF9?o:CBU)A+ E C .7.2m%:?B!B $"$'++/74Q%67#!#5!#5#67#"/326='67#535335!53!#&''67&''67#536R))2ag$IJK<#$B=?1:+$HkkLKNqKu*Zxy,tuT`*>Z>\[I"zz#EU*A+ FCSg :KBkF^;fEr0A*^,!3(j~BB&6 LP67!&''6767&''#'675#5353367!&'#5!#'#"/32655!cA E'p^_z*?uNB30-XK0A:>vvKdwJJgKupNM=!.:M1 J^ V0@@0,4/J>L=)8EC6q+@u]H2E 55i0V(A, ' E^#67#"/26='675#5353#"&5367'&'3:>773'>7'6746=&E_5- *E@)7F&2B)RxxM+-*[1KPI=NW1h+Ze0 =M7Kk.n\ Oirc1@nCBV(A+E C&:=9'GX!\"gLP9D>% ,*.&gazD<7<3H4JSn%BI&'#6!#"/326=!5!5!5!5'67!53&'73&'73673!&'!!!)l(N6qk.&R6TZjb*)@02)3@4+4<-B&4ch>U"&80AKN)C(EAb5&>I5#>3 V&xxMSS-*M4+D.1E#9C8#A"*CdE3kk2Ed'U)A+ F CC)*"AkkU`jqXjb_h AZ&''>36767&'75!5#'#"/326='675#53533#6767!!!!.''>7{D6# 4 A@H.@'78H&~/?8#/=?161D*kkLPP1b5I ,+l),s~O/.%BXxV] ,7'FAJ:+U*A+ FCC;_v?AH@uLJwA!sH&,.;K#6767&''#"/326='675#535367&'!!5!5#5333C["bE :86(0&>7"8M1 0@;A&'*L5!'67#'>5!!!#67.'#6#67#"/326='67#5353­ B7Q]9-&V&=@7CP=\d#JYW/#!9:M1 +H0JxxKAA.@@C f9[ڱ4CBYO9X)]Ga;C;BCCV(A,E C'[#3!535#535'673%533;#"&''67&'#"/326='67#53533#67767#567¥K[ĿKOc9TC5?,B,>,**$"9!1*3+32bbKUU1 *$,Z?AAD D9DBBxpA=,C1?E;C5C?yU*A+ F CC6fA^Anz A /`67##3735%#67#"/326='67#5353'67!3#3267"#"&5#'>7##y0#"&IP1!3=?161D*kkLC+LJ .75G !c1P%vbIL94;2AwCEU*A+ F C> ?2; ,**9# -mB'j@7!:GT#67#"/326='67#5353%!.''>5!5!53&''6'67&'8b-(&=?14074jjMڦ$k++k NH 906 /*:4pZ7TH HD17@yBGU*A,FBYCzzLg*H =dMUA>E'5XCBV(A+ EC_?T{,MADVnqb!'%)7U35##67#"/326='67#535333#"/32652>5#'6#!#3#"/aN8,848M1 :097nnKHgK;"WN  ua/l:63A9QCCX&A+ F CsT*F+9"?pR|9^2(@ZG0' .>!5!!5!#!'67#53533#67#"/326=%!#!!#5!5!5#rrM(H3xxLdd@*7A&6AI AP'zV[eF CCIV(A+CqDDq/').>!5%!5!'67#53533#67#"/326=!!#33#!!5!5#53rrrH3xxMddD 91A&6AI(%MP'&qq>lF CCFV(A,Afr?AA?&' "D#5!!5%!5!%5!!#"/326=!##67#"/326='67#5353N>zzrb$&P1]k% zN*i<*48A&61#:<(TzzL!]]<]ss};BAWCEV(A+ FC!B 1X#3=#35'35#'#67#"/326='67#535326=##5##!5!5!533&'73!!#"/WdY0%3)=?1A%L!kkLF. KK'K24C402 XTxx::xkCBU*A+ F C~+jZASS*'21AZR)?%9!?EKQ#67#"/326='675#5353!#"/326=!535333!#'677&$7:\+*30=?151@-kkL%>)GI dKO=s:n;:E1lqCBU*A+ ECWBM0C2Bd?|t{+u&)t~%{.22 1 3U#3735%5#!35#67!5!5+3533#3&''67&'7#67#"/326='675#5353VP.{I IPGqmgGCD\>*7=?15369llMVVVV$2;8?13?4;++>vED/L0e%*HL3533&''#675!5##!#5!!#"/326='67#53533673&'#5!MhZZ}14D4 K:N5*=?106@-kkLZzR~;+_AiiPaa`%!G %m6Y6B$U*A+ FB1fpI%!1%%' %GK!5!5#'>7#'65!#3#.#67#"/326='67#535375!`%ZkNFe8lYY"5!9:#91-@9;qqKHx`#(ClC!yNr" `AMy"Cl+C FV(A, F CQAA&' 'I!535#!5!'35#'>53!#3#3#5!##67#"/326='67#5353NWRM/2=.'LMMjW/#!9:M1 +H0JxxKmmd=pd9]ۮ4dCp55CCV(A,E C6 -3&'#&'##67#"/326='67#5353:>7"#".=!5!5'67#5367#53&'73673673#3#&'#5!32'E M+" %3<?1'>@-kkK-&6 M #F=:4??  bPX cL!X+E$+> M,E&nDU&K@K o3;;,"".CEU*A, FCv ' *+3 V.d7EXWaV^QG=GA;3Aj?<4V0Z #' X5#5#675!5#;5#5##35# 7!#3#3!!!5!5!535##"/326='67#53533!5#NV3̀́n3 jUllU'_,NT:<?1'>67kkK\ xu( 65Dg>A>yAAy>0U*A, F C-`'6)^35'35#%#67#"/326='67#535367#535!5!5#535!5!53!!33##3#;#"&'l(<0B=I5!C09AwwLnI 9^O<L;C@U)A+ D  Cc B7E;O>L;b@q C:IT? 3'?QW]&'#'#67#"/326='67#5353'67#5367!#&'!5!#"/326=!567%7&J040LW-  <?19- =2llKO*S L IV*QLG* ="ND /g==>m8gO9TUffUCGU*A+E$C;kB)22#Bd;.Q11KRCF$C C[y$a.lr-y%/4=Ccio!&'7&'!5'#67#"/326='67#5353367'67!5!67%#".=323:>7'&'77&)JKOzXCCX0A$<7=?18-<0kkMZzCA3 MJ=<=?151L!kkLSSG9EA=?151L!kkLhh.,G&L1[l$%C;<P3'C MX@bK!@%C*))3U*A+ F CC4BU)A :=^!#"/32>7!'#67#"/326='67#5353367#353!#335#535#'67!#3 TmJ 9=E1'* 4)<?1@ <-hhKQE5INfHHHfA")7G+F ܐӫpT, D"gB4EU*A+F CN(OK?&'9I535##67#"/326='67#535335353'>7'6765##33#3#8ĿT/;0A:M1 98>:vvKFJ\}5NR^eyfMMA*CV(A, F  C+_T:0hM$C!(6CD~DA>O]5!53!'67&''#'67#"/326='675#53533#676767!&'767#67&;N))`J4&.I$'#=L'%4+8.ggM]].W(F.}9F -3]fc3%5A%G%U*@,ECC =pe.>Q;?>ZZ07DS^AF|V/8Y&'%N!5#67#"/326='67#53533#5!#335#5335#'>53!#353#3W/#!9:M1 +H0JxxKtJJIIF}/64.'I }HŏmmZCCV(A,E CZ55 wl9]گ4*!1DN#67#"/326='675#53533!535#53533##67'675#53533&'"U1 4#9!1*3+32bbKO=KdWlfKLJH 6<xCCU*A+ F CAA?pp?? C'C ?pp~NqNXG2 7!-L#67#"/326='67#5353%!#5!#5!53>7#5!#3#;#"&',S'):<?1'> 4:kkKI4IP[3G FO:Y27A$3CGU*A+ F CN٘gTt LS@OAAADOhrT%1$*L#!##"/326='!5!'5!53!'67%7&#"/326='67#53533#6M)!B1GP p%N+8lE?E:nR;W&7=?18/A,kkLZZ"@T+D+>ƂAYYA=+f)t% EU*A+ ECC &' N 7!&'7&'767%3!!&'#'67#5#"/26='675#53533#673TOE*&E,E!%D)l?%G%ANd+fNk)gC>IF&@6A<{{Kaa@ ABBvQ\>bNW}|PB9u"n:v" V(A+ FCC +%'^3!#&'#'67#5#"/326='675#535335!#5#23263>7+.=#'65###67!AP Y#`Pe&_==?151@-kkL]jL F"K+.4J{#wJ_+* qA@:@}U*A+ EBe 6X'*o);F*!4 M_%67#67!'#67367!#&''67&''67#5#"/326='675#535353&'#5!53!#3yT1&#d)" h2* Lr0\o%{?\8E9 ( =?1(>L!kkL<%hN m'|Q2\AB 'EMU*A+ E CARNCZZCQOA*; Y#!!5!5#5%>7#"'.=#'65##5#67#"/326='67#535335!53!#5#2 F#* 32xo"Is2* +>=?1(>L!kkLsN L 4/ABBA>5-!)w,;L˒+BU*A+ E $Ce^^l ,='+L5#5#3!#'673673#3#3+3#67#"/26='67#5353 %M" 9@K Ii=# />@(7F&@6A @EEM K47"#".=##'67#536533&'#,Vg+*6'=?1>& KjjMXM RY!$L ""%  J ;.0")*L!VK`_lii;ll;iCEU*A, FC "0CTA $ , 22; /?@^C*wwUooU"2#EI3533#3!535#535335!5!#!#5#67#"/326='675#53535!Muu[KfL5Og2* (>=?123H$jjMafdd????dl+C+CEU*A, F CTgg ' 1S35#35#5#6767##5'67#5!!!&''67&'67#53533#67#"/326=MD49I~ ,>BS3M)K34I)J3Iv@'ggM]]0++4=?1&0x'CpBB^?ZDDESXAG@\_F CCCU*A,  :CY_'67#67#"/326='67#5353367! #"/32>!&'#&'#'67#53376735 M'* 4)<?1@ <-hhKSa.I  #(.7!3673:>7#".='67+!!!#"/#67#"/326='675#5353hhn Y )*1%% H4658=/$*lM0J/4/4aSPa.<0A:M1 98>:vvKR:OOr4P88=  '(' 9GlS*!FC{CCV(A, F C')-AG5#6##"/326='67#535335!#=!%3!535#535#5!#3#&'7"S4gH%.<?140 ;2jjKSI"K4.*52^-jU*A, FC->D>>:<<:M=H%')@]#3735#67#"/326='675#5353?67!5!&''67&7&''675##;533#67&]Mc$6 D:M1 B0J/vvK:QsqFTQwlxf1C7;E KKM&hF||||-C DV(A, FC (G9:OAAfE.>$A<*=17!Wt2%C z2$AAs  ?n67!'67&''67&''#"/326='675#53533#6767#5!67!'67!3#67&'##"/32654'z pjUoJ=H1 58!SqqKaa//ZK2K #%@94CID])b :F!0%WC }k K6a=Jj%U:;7M/%$W'A, FCC-(5A8 { 4AYL4H)V9oN;M 8TW?A=i$1)IOU5#!35##"/326='67#53533#6!!+&'#'67+!5!5!53!7&%'6^\,)=?1.8A,kkMSS I\bMb \I ,M,=)=!@2;-9ѢGU*A,FCCOUqCssCqKUATTP^Mx`PN!A)-;]35#35##!#"/326=53&'7367332653#"/#67#"/326='675#5353K,6N1K!KG= K >"XFS#%)-=?1B ?*ggMx}T&D,[A45@;4G@+A2i*T*GzCAU*A,FC / DXbl!&'75#75&'67#5353367#5!&'!5'#67#"/326="/326=&'#!&'67&'6FII'??'??'Bs :+bbMKs%ZJQTB. (8?-5D7 'BU*A,E#CC<:H:8+66DHA?8/C%CA*;F%L=2*B$9$J?CUH. 0ixB[\H(7E~$ 9@L;QP;L8 V(A, FC*12&47 #M35#35!35'35###5##5#5353353#675!#5!##"/326='675#5353RIIIIAllllAllll]C66}U)A+ E C.' K!5%!5!#!'67#5#"/326='675#53533#67!!3#;#"&'M?mH <[9,@(7F<;A7#5L@.dd_3, 'A=?1*=1=kkLqXr0DL6  7O?WW7S CBCU*A+ F  BWWA}AAA}!').Z!5%!5!#67#"/326='675#53537!!#"/32675#'>7#'>7#'67#5!!!yb5"5=?1A%@-jjM0K/M?(!*T.H*l5U*F4sNR)xb{`/OLL:G_CEU*A, FCAjY62-ML-4$z?N03Ex>>0~6 K Vh67#5#3>7#'>7!53'#67#"/326='67#5353367!33!.335#"&=#'3'"*3wF.u.pxH -&& :<?1'> 95kkKTu4I #.woVLdC&B>=#o*-&1g47,[^>BjBf;A- EEU*A+ FCh ?.)wA;fBk R\)H}QbK*7Y&' -\!5&'7#6#67#"/326='67#53533!5!5#535'6767#'>53!!!#&'31&(oW/#!9:M1 +H0JxxKVw0/66.'ITA6"FBYY4I9 4CCV(A,E Ci??i9N l9]گ4D>mf%'1 a< *!-Q7'67#53533#67#"/326=!5335335######367!5!!!#"/3265'H.ssKaa%77+>H1 AKIM fGfHeJ v  -D. FCC EV(A,1ʧ66$,BB5+B!' 9Hh%!5+!5!#367!#5%'67#53533#67#"/326='6733#63:>7"#"&536eK M M!SqqKdd//8,=H1!5(KWkj3G ' ],K[ek+*$ +K+FCCEW'A,=@8ADaA :>"j '$),(6.8q '' SW35#5#35'5#;5##35#5##67#"/326='675#535335!##3+!!#5!5!5'35#ʢI,a%3 F=?151@-kkLV{7I"N3HHHHXX;SSSZE(AU*A+ FCEK@xx@K:X&'*0h%67!7#67#"/326='67#53537 7!5367#53&'73&'73673!!!!&''67&''67X64B_35:5:M1 =6#WxxKU^{OC$C$X)G!Z_H=eXmp_J@?q0)n:PICCV(A, ECy4?6=(;89DDE6HJ`MNN;(=&;gH+"@';=%=01Hm: '*BFT35#5#6'#"/326='67#53533#6%+'32654'67##!%#3'67#5!##5_%+:?1:) 57iiMPPo19DJ( 1,p>-H+, -l,GeGS,A+ F CC f4FSID.6ocCCOCC&&'!'-3U#67#"/326='675#5353%!' &'%&'!353#5!#335!5!5!5!673!!Mb?)F):M1 =60JxxK`!C  #C KK[KK-G*hsCBV(A, F CA:AOBRRB$GVZBhϣ55?k=kthf=k"'#'I!5!#5!#!#&'7#'67'!5%!5%!5!'#67#"/326='67#5353|MNQϙi$hf`iKKK^_0% 1.=?18-H$jjM~P?7@;A;6.K2?-?IIJJ6HCBU*A, F C"C37;?Cek#5##35!5!533&'73!3#3##"/326=!5!535'#3735'5#;5#%#67#"/326='67#5353&'7OK"O(;*2GFss!Ji_! +IO^>#<=?18-<0kkL{,T\+_=119r5@GG&%3@5#?|O%B 'z?4(MMMM5HHH:C DU*A+ F C7K=7>#A2T%3!535#'67#5!5#535!53&'73673!3#!!!##67#"/326='67#5353;r2*sEG=nV!*.#<?1(@4XA:/A:9B49AX>_?(4>CDU*A+EC 8!a#67#"/326='67#5353353#5!#5335!5!5#'67'67&'767&'767!'67!!!!6\:,0<?133 87llKխKKWKKn)E&""=]M7/9>66,<48<9N6FN\IkyBGU*A, EBEw44w>}91+@ ?5%%26;)%/9.;2#=>[@[=}> I 5V%35332>7!5%!5!#67#"/326='675#5353"/!#5335#367!!!!!?J M~\>*7=?15369llMoUKK P0,fYVrJJ7HCB DU*A, F BI 98f/&8H8>>u0 ,!V#67#"/326='675#5353!3&''67&'767!5!5!673#3335#535#534X-->=?153+DllMGhnm@CBx|Hg^CVLjBDU*A, F BMBfL'A#9;!A(`r`>_C '!O}#"/326='67#53533#6'67>7'67#'6735#5!#3#"/32>7'67>7'67#'6735#5!#3#"/32>72:?14/ &FiiMBB*sigK / 5dE2 osifK 6 6dE3  qaGS,A+E  CC A9\= R9<5M &~sB96yt:#CACU4A9\= R9<6L &~sB96yt:#C@CV;767#5!&''#"/3265#'>75#"/326='675#53533#67753673>=33267"#"&=#'767&77&bA)=8#C/FBX ^MJp+/-47,'';#!##1<((-0,ZZJGG'[ J x&  ; 0\,4'YDK֖6#&6$!UGIfBBW>1C4HG5;(A+! J5Fv" U*A, ECC *&;6-%8"g`D[")  fx-39A'+@V FG]X*1LT!&'!5!##5##5#5353353&'!5#"/326='67#53533#67'67!#5!#9KQNmu MMMMIA4=+>=?1(>L!kkLhh# MM@^[?@bbbb@____upC.5$$)*$U*A+ E 'CC #p,,4 W[3&'!&'!!5%!5!&'!!3#5!#5'>='#67#"/326='67#5353367!5 300R65<0Fuu&"MMK JHLg#3'35'675#53533673673#3#3#3!5'67#67#"/26535#3#"/3267#7#'>7#5!C10KyyMZP/K H -3S)@ ;9@)7F&DB "4.9cg#$% x(jt.?>>Z E C:j !1/. 2 @>5?4?<05:CV(A+J?hn'C 5HZm)7##5!53!#5#3267#"&=#67#"/326='67#5353!!!!!##'67!]%kn |IML,3F''&V,T2* +>=?1(>L!kkLP*Us(KH_='wUTTS0   *(BBU*A+ E  BR>AA>)a5IC C V(A, E CUB9:U9S;I9M<;W@[9

P'Z`f67&'#67675'675'67#5!3'675'67#5!#5&'''#"/326='67#5353'$'$ʆ3.jV4~lQl ZQq SD#:hNTm!SDH;Tsza;(<?133 =3mmKg1m9"M!CG6GmN=8I_LQ@8.8? !>ULT=8.8?:5K;@4;'H3: U*A+FC7d?;} A%@ Y]67#675##3#3##35#535###"/326='67#535333&'#5!53!#3#"/326'5# 8(`|Ħ{B{K1/=?1(>49kkLh'N)<+QU ?86D*MUU>86N'A c*#'+MY3#3#3!#'673673#5#5##3#67#"/326='675#5353%3!533533N%;w9N L MX4 5<?104 4:kkKIIM=9Z9ZA0>3B1(8('?ZZZZZ9ZdC GU*A, ECąA;`#535#6%#535!3#&'#5''6!53!#3#&'#5'6!#"/326=!5!5!5!5'$7!!6gyVxj13)')H/H 3+:MwP9d&X:G@h uX$E3ng. rL~u//:B?G:BB:*3,,&|uF9,S='3VV@B:C=1:A}yH@3A:>4> *:B6=7: A6B(6+Ty67##53&'#535#53533#3#3#3##5#53%765#535333267#".5#&''67&!#"/326=!5!5!5!5'$%!!B Z ;L7^L#+.zzG7 &!#)i:C&74%Z6X-i)O4qk0&Oz`$ -.8849(6..6(9(%8+65564.5:JJ$; ^L1L>(940&Z=38V2925> 9:7:77 =7:"6 :v#3=#35'35#.'#>#67#"/326='67#5353&'7#5!5'675+35!5!53!!3#&'"#3##"/326=!Rm91^>#<=?18-<0kkL3Li'NxK"L'6/)= }}A%ka  eHGx@@1GG1@4GC DU*A+ F CDDB37#67#"/326='67#5353ddi>2KgMLn-oh+.syQ9!9'<?125D+kkKVV:R~CC>AWC=UUUU=CA>5TBa==aBU4CBU*A+FC ')/FLr%!5%!5!#67#"/326='675#5353'67%&'7#5!#"/326=#'67#5!#367#"/326=#&'7#5!XXrP#,8=?1*=59kkLRTWcB>"4:0RD@6TXLXL )RD@6(B>"5;G }ff:a`CD U*A+FC<*689h2(*?,>))<*689W,,">))22(*? #.(- 67#%#3735'5#;5#73#3#367&'7#53'6=!3267#"&=#!&'!!!!#"/326=!5!5!5!5'$%&''##5#535+535#535K21feeGeeeeK=:+2T+6F A R7#Nq>ORd*& `i)O4qk0&Oz:7TkOaD 0-D%%%%(%%%-9". $)9+,R(s ,P]X89F)!< & =7:925> 9:7:71008"9-( /5;|35!3653%'>=3&'7'67'>=3&''677'672>7#'67#5##"/326='67#5353367'#675!##"/KMGF .VN72:$<)LGF/_U9/y < <$=A)=&'(:?.)6JeeMO > 7Q4+24K\cll$.+;s`-.<.V-=(QXnPM R;s`-.:2R/=(PV}MO UPPM VL^ef?V5U*A,ECEN UP8 r0A5 Su35#35'35#67#7&''#"/326=##!67&''!535#53533533#3673##67#"/326='675#5353rr.2&M0U#U35T# !@2JeT-8/OEEGrGEE-;"C "xU#&41<()->ZZI@NN:Kr3 [J:GTSH# C8 JT27>>RRRR>| BFD=CH U*A, F C9Tw3!535#535!3#67'#"/326='675#53533#67675#535#5!5#5353!#!#3#267#".=#'>7#5!#;{|ssttB:"-1<(?BZZJII4R*hhiN){ii<J')&/1'n ss];;S9DD9Y 9.U*A,ECC <d9D=O7#67#"/326='675#535336733465?&677&'7&'7&'7T T/3K/~6A5!U/c&KD/J2 N%3 F=?151@-kkLcB$E EX53.398/C,: E z"D*z.7C;)D2F,Y;9)͎C4R*=$AU*A+ FC%bt %.<  "AH%Vd~gl n gdm{p"<"&*^67!#!#!!!!5!5!5!5735+3=#3735!#3!5#67#"/326='67#535333&'#5!53J/ ,Y, OOfM5H+/=?1D!39jjM]fO80=58x!6>:AA:>68???q====L?<1=3CU*A,F C985?X;9z%67#7'&'7#635'35##67#"/326='675#5353753533#673#&''#"/326=##!67&''''6767/2 &=DcVU#&41<()->ZZIGNf&:&C "K0U#U35T$ !@2JeP28 ,"%.-H?UU:RCH U*A, F C+?YY?V9u BFDמ[J:GTSH$C<x FY,* *>6X' ,~>=3&'3%#67#"/326='675#5353"&=#'#3#"/32>7#'6735#5'67&'767#5!6767&'3267767!5!&''67&)%!tEEtL&"1<(2#4)ZZJ/W38  #DPJ, I &8W>7-/2>2*8(='4)?#F)4173=;+  ;@%>5#a/>@R^PFr[8?WK=-N\\NTC HU*A, FC H`*&?w%C DPg?%((3"-'2>,+-&*).2(*.(? 6\" 4.-A??_8%A"3/&A#3D cio&'#!5!!5"/326=#5#"/326='67#53533#67'67&'767#5!67!#67&'#%67%7&F)+E+33fA)' -,0)=?18-)CkkM]]7VJ>47171 K/!08(=.CEY:8!~U0X)ta+^U]\VORR}B !'2U*A, E CC61MF3)0=@;A(+ )AG:;8!@CH4H#0AU7]/c>8EX6T K RX^dj35'35#35'35##3353#3!535#535'#67#"/326='675#5353367!#'6&'7&'7&'7VVVVZZZZDVVVVKK9]L]] ;*',,=?14249kkMBE'G9C-=C9F y(E'{35C8/DDD@@DXEU*A, F Cbq+,A|f^|_ xhmpmr^gt"' g35&'#3735'5#;5#3#&'#5!#'#"/326='675#53533#6767#53&'735#' 736;W9KK򦦓C0a&KhI&& =?18-'EjjMaaIQ (A1#@}O =7AE>@Eaaaa7]]]DOAaNI ,,R HU*A, F CC@FSA>=KEA-? W ' #EI`#!%!5%!5!35#'67#5!!#=#6#67#"/326='675#5353#3767#5!&''67&MXBB27FZS'&#1<(2#0,ZZJLh>)17;$C>MVF@[P68p9908N!B kBB4U9C FU*A, FCJc!S7CQBBvP4"?&=:)?$2? '%v35%#"/326='675#53533#63!&'7#'67#535#535"&=35#5!#326735.=35#5!#3267#3#T2:?130 C)iiM??)g-c%',M$]^')2?K:6(1?K$(%)kk]G S,A+ FCC ?KV9TO70-X==Z?k7"&t]@+/=?1D!39jjMIY>!5E[E5&AS&lo+.tn!CF@I= :;I=?1$6:4kkLExC!$i(C#$Q)G wK #Ms56J&#_-N#KKII5Ht\ DU*A+ BCF212I)D8MF;98#A$Cq *02: /D%)ek5##67#"/326='675#535353'>3+#!67&'!'>=!&533&'73#67327#"&''67".=33:>77&'7&'7=yI&"1<(2#4)ZZJ.6yF-#9!*:#\F[&61&4$5 A-G'  > PA%C;I!?%483MZ#*  J;= FR,TF3D=G0YppC HU*A, FCA::7-$*}kL8=}20( .+AbXoe&)11*(_tr ( % 121I<0;I|p ww; +MUx5#5##3673#3#3#3!#'67%#67#"/326='67#535375!53!76767767'67'767&rrrrrr CdoaaaazI7`0C a4#@1<()->ZZI6AOA&+7'<2<;)80?q='#67#"/326='67#5353367!3#3267"#"&=#'>7#!!53#5!#55!5!5! ; GB,$$Y*.0+8>9 > ;)aaKXg9I2#&)H  "P'6zXBYrMMM4/!9 hr(DU*A,F!CWm <";=  ' T8V9 6$ "@s''&2200S00!' -e5#5##3#67#"/326='675#535335#535#5!#3#3#3#3!#'67#535#535#5!#367#_$,6:?17,$FggM ξM 8j8Hɿ} % CCzEE6FZCE U*A+ F CdL5E?,JRq%35#3!535!5!53!'67!5#67#"/326='675#53533!!5!5#5!##5##&'726=#535!5!#3##"/k" S!.@F..4<((- -1[[JPr[FG(773)("=8807lO1441:77:!'%3 G U*A, E C>88T771331 -E@$9C "V81::18m6"3 @ ;Yk}67#&'6767#7&''#67#"/326='675#5353%!#&'!5'67&'7'67#5!53535!3.'767!#"/326=!567%7&^:"\nA$(.D{  5R0/VF2 ,4<((- -1[[I,%%BJbhUUnE5.)$2#A'P'S1 n@%]/ Q!@-AM ?yK5M1pZ.SD7:>'1K&2 3Sa\XCCU*A, E CWSF5<8Q**O::%(1(/! M>:  j9BAG"A ALi&pR-Ze.]-f&'!6!#"/326=!5!5!5!5''67#53673#3#37337#733#337#537#537#533#&'!! x)O4qk0&^ )8:899998:8:=7#"&#3#3#&''>76#53&'767!5!3'67#3#;#"&'-J#@>!9 01<(2#)4ZZJJGpp}}<  C +%# iu{>,-#6={)K_JC5ND3O>+m?Nl#:U-M(&u(# :2An+/'#U*A, E Ca0;4F  "%)!@nA L@54Er9;"h@yXP$pD\G+TFAAAfXD?;,2A C8DU6#A Pc!5!67#!5!!5!!5!##!#&'7#'67##"/326='67#535335!53'67#5##67'675#tIppE,l͍h ka`?//=?1(9.9ggMaN,gA_Da"*l+B2+1.-^--E,H64<:?83,H2;-> :U*A,E C}Gs2,?5 :+w'E' w!=#3!5#"&=#'67#735'67#535+35#5'#67#"/326='67#53533'67!&'#53&'#3#3#.'+'32654'67##3Q!E !C'**,9?q6*i@r3&!C*./<- 0:UUHBM18 0R%&!<{ö]CCmp/Q29 %S/ _CB//F! 1%$)72D0 @d..9A"`=1h.$'B D U*A+ F C8R"+%!>R;9#$.1=-EAO54PpVFD*:hcC!=*pt67'#'67#35#35##!#"/326=53&'7.'#'#67#"/326='67#53533673673#5332653#"/2.(*8 ] 8 K,6N1I/!(/R#%)-=?1B ?*ggMQHG 2G u DG= K >"XF/: N?).(5)&GLT&?)!tA 7 - >0&0AU*A,FC_f $&AjT6*_T*B=#(35'35#67&'#67'?&'67&'7&'7676753673767677&''#!!&'#5'67!5!5+&'#"/326='67#53533&(wwww*D$ $5*!7",$"6O J \!7",$"6'&8N,fiOke2376'e82-H+ $4^2: b<982%]$G<9 +JE_Z 'P\6&2#3JE_Z 'P\QZ p ACp`BattaB`pCA  " V)A+ F C ' %67!!5%!5%!5!'5!!!3#&'+!&''67&'7#'67.=33:>775!&'7#67'67##"/326='67#53533#675353>7jR99zuuu I85,5 38:C^<]~ x@4$I]{\ FO&& @&&11 >R4(M-!*!7?1 1-50bbMUU"ID &%w((N((''U== '&D?46,%A>;@#(-";+AR>,U0!W O>*U*A, F CCa "8*@67&'&'#6!&'#&'#5'67#5353!3533#&'#5'67#!#"/326=!5!5!5!5''67#5!67'67&'7'67&'767&'!#&'!)1,C0 %!0B3O^9.'#/E&<*S,vMzlMv,S*<&E"0.G&]6x)O4qk0&^ 9361"D'=*P<.0,3!%$.% $.&31   pppC6&+4=?1(926hhLI3_&^ o_[OK &]%J^djIou Y-+&P?Nghk4,5+,68*77i7737CCU*A+E C)=**;MD:W<*=)&='<#0$'$<#=9 2:>35#35#3567#%#"/326='67#53533#65!53!5#'675'67#535#535#535+5!#35#5!#3#3#3#.'#6@ b!A'9:/304''''403/:'5.2=#`#| ' #(!5%!5!675!35'35#>75#%35'35#675#'267##5'67##"/326='67#53533#675!5'263#5!#673#>7#5^^ʔ.7`(# HI{$&=?1&@0=kkM[[" :NN85b!J}t6612 %>>2;4q>>2; 2?#w= ?%$U*A,E CC B>AA>I<@D; '4-3^bfjnt#53'35#!#"/326=!5!5!5!5'$%!!677&'7.'#5'7>7&'767677&'7535!535367&'7'#5'7>7&'767677&'78񹁁i)O4qk0&Oz` 6! 2G@~6N# /7%6 075ITf 1#1 *5 3 EA~6N# /7%6 075ITg 0#.M309*5> 936256 563MHKPTA9I3 4(29 0AVPKV9H11P44P11P11ELNGQJ9I3 4(29 0AVPKVI>; 5#5##335#5##35'35#536=#5#"/326='67#53533#67535+5#53533533#+3673673#3#3#3!#'+3#3#&''67'dddddd>xxMCGLLR#+:( #" ,#LLIFF$AIIHxGEEA?D ]CSZRRRRdF*DH1Va>;!z(ԕؙ@X0NN4//4N< + T+A+ E CC*g>LLLL>g* M8IG Q4B?@A95/; "5%  &]v@xxtyQ6G$$K$$'$$$K$$'$ F & &'D U*A+ E/CC62yLQ   2 & &773* < /*< $ !B PTX\h35#5##5!'5#35#;5###!#3673#3#5'#3#!#"&=#'67'!5%!5%!5!#3:>#67#"/326='67#53537#3rRRG6,&s&M''QM.A`I<K  @I`;*)(f3M(DiiiӢ; 9: 3/=?16,F#ggMRR[,..4->>>>>Ow7.K` : -)!_.6(382-dI\ C\h11[11*1I  BC AU*A, F Cj.71"767!5!5!5!53!!!&''67&JIS=wPwYߛqACuuCAtQ-B1be.B+Sa71767!5!3!!!&''67&JIS6Pw=YߛqAJuCAtQ-B1be.B+Sa:6!#$''$7&'767!'6KzR{xLKEjsJO:P@6BCFfODQvsTDNjpxx)50%6!73#5'>7367'6!#&''67&'l4KKw - HMM^gDA?e[ 5 0#'66!7367!#&''67&''I!&!2Fw:!Hi5J CS&[o!ij'%.7D9Q 1,( k 7HDʧVI>L\eCA>`VK+75B%6!7%32>7#"'.5!5!5!67!#&''67&''l< $TG /72)% a\3I }AO'Sn"f^$*-8ϒ,( 83/;F;3;;B C;DϥZL>P]iDAAe`G+(5 /%6!7/6!#&''67&''67#5!#67|8"N]gDA=cVC,ECC7B%6#73!367!#&''67&''#"/32>5#'6#5353U8e7I\DrI%OZ(XT!*+/')0RI55;6.ZLށ._DY(Z J?Dؚ^J7#5!#367!#&''67&'Y 9<^^B BF@S/I]CuH%Pf&aO!#( -CDED\DD J?Dݚ^OF.ɸ[O$) 694:(6g&\A'CnnCj}n 1@CXa JD"_` PacO@NfuJ= 0mZKO1?JP=VS1)/5T!&'##"/3265#535#5'673.'#677&?67!5333#3&''67&5VPE4MA Ȇ2{jKUfGAJ ?'@sF6VZ/pN9gWitc` YaGGc`AW'D+A~).CdiNC<~s~ ,o|y]dATzCAsL1D3ZU8D0Mh9 Tm367#67#67#;67#%67#75367'67!!!3#3##"/3267465!'67%'67!#&''67&'L] \P ] F ` ` ^C%W? -g/F@^ 49 4;$/)#6 H0^,F =\?t#yBM&I>Y#:z-W] /A/#iA7? )@" - @@ BFDݗcM$G &,2T%67#7'6!#&''67&'%7&677&7##"/326='67#53533&O *`7G ,;j?{"}GZ&V>##<<2;.:5?6NeeO@OgxT; cj bD`?C35H35#35#67#7#367!#&''67&''#&'#'67+35#5353IaabbNF&ӪW3E $=b>|"~GW$T=%'It#aKODt'J_KOV,nAX 6SDgR;RffS:RmtIC VUI?AUb_>o'XAYY8L%67#727#'67#535#535#53533#3#36!#&''67&''#3#"/I 46*p- èOĪ]/F 59a%67#7%35'35'35#67?67&''!#!67!#&''&W8|^0=:Y2T/OS!'/)Kfa5J \DqF&OZ#6߆.{{zz|"~GW$T?#'25MA Ȇ2xkGAJ @$@#"Gc`iNC<~ 6SDgR;RffS:RmzUD*1W'D+A~).Cbi~ ,h|6^%67#75367#'67#535#53533#3673#36!#&''67&''67#"/326='6M -V--)6@ tM&k@>6WS49c5F (0h=x"}D[$VC"&0FCr^V!F!RM i}'ǔ8)$7BgA>RR>rymeA4- 6SDז^M;O^cK;Le{SB(/M/ > \N&A+Q?7 *C35'35#675#%6#73##5'67#535#5!#6!#&''67&'Z:M$v"xEN%"3$QN  ~PLN6 ɹ%>>ZZZZ>S9DٝYM;K\\L:)C7MM:M6 )1R%67#7%#5!%35#'6!#&''67&'535335!67#"/26='675367H ,J}8a3F .>b=~"EV'N? O:KK@Vj!E7AM: Hxg83'@9_. GADaRPP><7!3##5#J $>DllLKppK!XG"F,8c+IDk(oBe7F /=_?w"yFL'DD!' L P<3A I>lvSG_+"Y9,(:"4<"238J-2=L3H+ZK7KQ= >KDۚ^M;L_]OMA$GDKD*2'/3EK#5!35#%767!5333#3&''67&535335##!#"/326=!#3#K[WW3D4PN,Nѽ5]Q]kXR}#pO\Mˎ0J012 i>Вa|\aATzCAqM.B3UP8B-NhBPPB^^W(C, 6AEY35#&''#6767#'#367!#&''&'#5'67+535#53535#!!535335!5!!!!dd9"$*A^uzEШQ0E$5X=qDROFOC{|FNDOggO4=NB`5+?*$+)YDtp<*D] 0AW0.;49916!2tCCA@D*<66NN??==F>+@ _%&''6767#7%67#35#265#3#3##35#535##3&'#53533#367!#&''#"/= ukA! {{bAb{{Hv\N[xK-F (\6h#hUU>86 9PD۞WQ:NWWN7&A< d%67#7%#3735'5#;5#267#'67#535+35#53533&'73#367!#&''67&''#3!!#"/G %ArrLrrrr1'r2rILS .<#0,׸O0F (=_?w"yFL&EA'&46+cP(z<<<<3;;;LL .!5>/٦ BGDۚ^M;L_]OZ;v"xBP'G: /FR0/@ :MmqTZJ".33:::3f333(5,S= )c>f99f>c): N:DݔbQ;PadN=2Rgmz<57Jd'TTTTx/]D> 30>AY1F (#h7"#".5#3'67&75###67'#'673533&'767!#&''67&''#"/326=&9 * -H-6D^%JbւL&  F 5)+VF Π'YM6%{Fz%7-/E)[@0$1oK05+V:B(E 1H76!5!53!#$''67&JOzTwP]$tFFdKDPqpQDKd*F 367!!5&'!5!'6='67&'7#5!53!#&'#5|QWeẽmfv4 QByNBra.Ps[iO#6JL5!+)|4lvG,f} C'27I!AbbA]C5%A52:@T5!27#".'!5#&''67&'767#53533!&533#&'7'6736733#67 <3/% 8(841'3=*3IR2ABI]I )"16344 (H6KaaO2AAner"F=Za:IVlEuqd5O`oE@P}UB_YJ<':MCu ћBB@*F*.@FL67!%#&'#&''6='67&'7#5!535!##"/326=#5!'677&{TTd$u\RK|j>xJ8mg2P-K.@;>;2(=$35LM?^C3&@!1+ t,e̒ A'23L"?SSk<<5A=kzg`s^x8,+C%67!5!5!5!53'67'6765!#3!!!!5!53!#&''67&'7UGi/O1LH12PP.kPg_Îtc-i4KN;SA;hf6& ?%S>3;AS;SA``A_A/ A(C@+C!-6I !/*F#3#67'67#535#5!3!53#53#5!#3#%767#53533#&''67&Mj]]6P >9iis(|uufvv7OHM: *=3:*,B><[DC?*EDFDDQD DDD0]jfEE_]+LIr*?' %'%37#7&7&XPP,k0~-l0{FDGBD 9ga7m9id7l' -39%'%37#&'7&'7%#&'#'67#533'7&67gMcjM[Sg4fUxWp4m[sZ54 J1R)m1JA(@ /C/LDNEDT^^2\`bg2agA1)oD[}sEA?um|jvq yx% AGM%'%37#!&'&'7&'7'##"/3265#535#5'673.'#677&(?MRXMi5VPEB`4XHwG]3\JΪ5MA Ȇ2xlKUfIAJ @%@?D@"EGc`[e-\dhc-_j:AW'D+A~).CbiNC<~s ,v!,6:>BNTZ7>7#'#53533533#3#3267#"&=#'!!##5735'35'35#'%37#&'7&'7)#O-EEKKEEM ;$@""24(J- LKQLYGZ5YGrH\3\JkF:@U@PPPP@@[=5. +sLc$,EA6c@MMMMM7MCDE"DKb_.^bj`-_j*-$=CI35'35#%#3##5#535+35#53533#%'673&'7#5'%3&&'7&'7dc@$B>C?IBI4AKIL4GO"#!#!'6 %P HF>SBzFX1l/CF@>v6#!75!'>5 %!!&'#&.ez GG@7> 'ے{#rxP@B#5].HFA=c2DDI>B:9$' 5'67?&&'!!#!'>5 7&''67&'767b,9*,X P r@PCHk܂E8=BRRB=8Ee<4Q,[Q79M;LA /%1,B e2Fũ$,?"A-%3(9&&9(3%-+- E35'5#;5#35#%!###'>7##5#535+35#53533#3+36674]]]]]]WpK IJ/ L]ELD]+"ۓ|ckk9dddkF\@ @VS?__?SVW 5E,pN'6<B#&'#'!667!###'>7!#367#533'7&67/R6 OH/N!.?2ӒyIkK C@: JJZ/tH;1#;'6 >!8AL*v]42i,86E,p7F\2ARm|A)fdpZgjoi,# %@35'35'35#!53#53533533#3'6?667!###'&E*HCCIF>>7:6g3a65+)ّQlK)**-0Bnnkk:g @AYYYYALJ#c[.U8(>Fa$P5E-CdFZT"6C367#!###'>567#3#&'#'67#535#53&'#53533#3U%IjK C@956ՑyyOH,,GL?`,x=!'>5!5!53!!!#"<),5kq2P$FG9-H 4^;LۮDD\:2?7,28'#"/32>5#'6#53533!3673&7&7&\) #"0RI55;6.ZLZZn+0~4}'Ļ-簌5t H 3[2e%DDY(˜Ac7\3?X:@"o#"'532>5#'6#53533#767!!37537#"/32>5#323:>7#".5'75#("P: r 55:6/\Ms?G ^&CnG!<3 Gn { %- K =72:C9C O$> H .Ys\4bDD1P)}8C87*A -WJ$$  -%+04 EC$'FA;67!#53&'#5!53!#3#52>7!'>5!5!53!!!#"/Q1!%'M!/rPr.M%'p=.wP?>G(?I;M>\AGAPPAEC\JIV81l?\\?*#~},A=/Q#;#5!##535'67!!3!3##"/326"/32>5#'6#53533#|{{{L44 4`9I W ::&L)O\" *#PC2 m34:3/VL C!9q$-A*'CBA> H .Ys\2d! DD1P@ $G67!!6767&'#'#"'532>5#'6#53533#rt?Fnq2F%DXIL+L[In6Z"4M/,*#($P: z55:5/ZM),C[N5A742ZQ.H5J8r9\ t> H .Ys[2b" DDY(A"-O#"'532>5#'6#53533#767!!6#5!'67#3#;#"&'#("P: r 55:6/\MmDF\7GX J-S*B%@`<<4&> H .Ys\4bDD1P.m2$CcLOznu+CCQB6>A CJZlG@ -P67!!536=#'67!#3#.''67#"'532>5#'6#53533#js?G wh2FU357kCD6%O|!+`3#("P: r 55:6/\M}8C[NDG0.a&%CDME RTFD > H .Ys\4bDD1P@NTZ%#53533533#3!5735'35'35##"'532>5#'6#5353367!!'67#67%7&;;ILFFY՞#($P: s55:5/ZM,E )2=;O(T"#\&^Z;????;>>QQQOO7M> H .Ys[2b" DFH%0AV@*%Y(9K5Q:9AJ7H7 g35&'#3735'5#;5#3#&'#5!#'#"'532>5#'6#53533#367#53&'735#' 7369L6HHޘ@0T KK !"%C1 b2181,QMV~->1#5#'6#5353367!! 73673#.'#5!#p,D,HJ׍׍}Rg!@%BMi%)=#PC2 m34:3/VL?&E3qxD'@lR}KK[,//,[OOOO8LLLE8B@+157r36,('1P> H .Ys\2d! D/Zc.?%< w?=84@B8E##-/55!=!5!!!!'>7".533:>7Iy n%YNOS$  K 4/EDDED@Bև&,C#  %>+->HK#% " N35'35##36%!!67&'767#53#5!#3#33267"#"&='67&''67\q(ZbZ_'"7#"'.5!#5!#kNM?H8un?%#, K9@7@vyop"B@@%E  #.5. #/++5!5%!5!'!!!!#5!5!5+@@OiPiO7! #"/326!5!3"K7EoM &*&DzB HyxFT5Jo 3:ǟ+ DP}}7<!5%!5!".5#'65#535333:>7!#!")RLZK"cNT9JFssK?*%;'  KI ,#UJA p@aF% #%[ @BM& < #!%!5%!5!!#5!5!5!5!!!O,,pPp e[[:VDqCCqI !7#!3'3#3!53#53#5!#3#J"ؑ?(@4 i'CgDDBBDDBB (!5%!5!767!5!5+!!!#&''67&,,"?n{WzOzdd~q;[[:V +\6A\AUeUArM7$A+KG/C+.8! .!5%!5!'!!#'>7676"/326=##!,,OOK + 2kd2 M#DZZ9U=C;%B&2?*\E+zV)!  >#!%!5%!5!'6733#672>765#"'.5367P  D/OwX H <"%8=O *|rnn7#5365'$7!53,,O]Pjh:Z^iQ M`P3ii;bCTf';K>C,B1: )$7 +!5!!5!#!5!6=!5!!!!.''>7Pkzk,23؎,JOL?7AA7?9XF{LLzFX9a !5!!5!#!!5!#!#=!OgzP&Pzq]bq|j+R+ffZ  -35'35##!35'35#"/326=!'>5!I\KL lX :ZGY#7#'>7#'>7#'>7+!!!3bH.V%T6K&2d,V1eq+P3]Pe"48``;[D$}r^lA9++2 9!5%!5!'!!#5!!!#"/32>7#'>7#'>7#'6767  PPnp82/XF,[*S-H*5c#Q6h`%ek!NKK:H>n==<A peY62,MR/9&EW.8.Z 9  *!5%!5!35#!!5!5!5!5!'67#!!!!!!,,z370_@IU-0ii:ahZ+??b:SI36Y}ZNDN>C\p^^7Z*..h(-#2>+-;+(?%(2?,';-+>oEI%5,,>3&IFnI1'+35##&'#'##!67#535#53533##ww"P.OLW7K TLVwBBq4= ?BCCI5%3'3#!!!!!##'##!67!,O0,J K)P#J p'C*CE䑃y@4䟷 <P -13#3##!#!#52>5#'>7#5!#"/5!K"KM%f&Wv ,/CSIZ'@4 '2f2mku,<'`B1BQ1  *!5!!5!#!67!5!!!!;# $'""Ot*I 'iPcp}:vA=R+DyTY_+ /:.:AAg@uCATZK! '9!5%!5!%!#53'>7'>767676"/326=##!,,{OK& + kif`# Ku#SLL8G=Acr">C:/?1=*E+ZW(K*>BF!5!32>7"#".5367#!6!!#'673'3#w_#*  H 90/565J"I B<-4F||||=/ :(/8:D!   =!#&'!#!&5!5!?ggn6E5H&4w1OKfp@o{&$>:\z9 BBcZ KA 07#!3'3#'>535337&''67667&IȂ]`B/(NEG@G ٻ,B=K6Cg-@4 i'C2#]߱xxD@2 D8 6 ',=CI!5%!5!&'3267"#".53!!#'>7'676=3&''67@@x d`& ? 5-,:>0JqO'&wmKjI.U[X'jj,h@YY:S1!w K!#' q+-{AQB%C&D>4G=~61P/SI; 397#!3'3##3##"/326=!5!5!535#53533#37&Jͅ&bbb&Pb\' uuN3\J5Q@4 i'CpB[+C0BpCAkkA2NX1_: E!5%!5!35+!!3673!3:>7"#".=#'>7%53&'7@@qOw8'D/L"" M 1)(49,.(?0@YY9TA_IK9AB )!)*+2 p ?iZAE3<D' -397#!3'35##"&5#'>7#533!#326&''67J {{{{I'fY-khz)kXM ,4,E:AA=BO.E2%@*ZCCO!CHB=9CmC# <vi}|2  %+%!5!#!#55!5!!!!55!#3%7&67PPH>|,rrT@B/B0G%E+Eg+Z+??>>ddcddDZdrV-=!5%!5!67!!#5!#5!5!#!!5!67!#&''67&''67NNVU7"_L6LN'E5W(bj.;HAeAA3?-?"$CC;'A*&AL8*@:I1W?=$)2:A "(,<7#33'3##3!5#"&=#'>=#735!#3#5!#35#5!Iiiiir'[7!J8O&A+lLҷM^Mi@4 k,? M.V&BR:<0fmOtttc22tA(E'+/38<35#5!3#!!!!!5!5!5!5!5!5!5!5!5!5335!5%!5!'!!#5!8jj\\>^>P  NNn10b:`.1.77.1.00:-5H}--00.05d<<<<M3'3#%767&''67&3#"/26=####5'##367#5367!!353dddd%jeZ,B[Tj&[vX;=.0MI03#I{FL j}"{Mr,? -9*.0D322(88J(H ?0#xCBTE/9@4xC2"$C6:T$K!5%!5!&'!36327#"&''#"/3265#'>=!&5!#!!3&'73!6NNB mD-m#D$H^(f/x ,bP*0f9.+N29?@?6Wk8826oRo"}_.3wA*{q:8h-&,' ! ,567!!#67#"/326='675#5353NNzNIC7:@!Ȕ^2GN = P?#]KL`MT++?Tf(1!Sy B 9sQ.?X > f3?L ? b?OOD +/35#!#53#3##!37#537#5!!!3!5!aMNN~~~~J*U||+c+'@4 |=iAAiA?< [367#67#67#;67#%3'3#5367'##367!!!3#3##"/3267465!'67 U n  ە ffff= $)Hk9H:  @G >F*6Z9$ KW1;~~;cV<~yAGsS,? \AQl/,. @42A<sA`Z@2"?# , # 48#!%!5%!5!!!!67.'#67'675#'6=!5!Nx::),ETM2DO]g6ujX,pB7K"Vg2223x?>.+=,6+-AbA#Ca9~ŧ99H@ L3'3#67##3735'>7####367!3#3267"#"&5kkkk0#*H sPGIl;I  .75H !c1w'?n9467AmB'i@-<@*m "?2; ,**9# -2F #'+17%!5!#!#55!53&'73673!!!55!#3%7&67PP(D(**"G#>|,rrW?A.C1D&E'H^+k+?6.;35)-?==^^"\Y_;M`aU0 9#!!!!5!5'!5%!5!!5!'67+5!#&'7##"/326=#NxNN! f`%`1Ng,s!)Q:Vl'2@@2q::09[aG7>[MS6[M.nP'C$p?':3'3####'67&'#'##367#53533#6673mmmmIKI[&)=042K'C!JV%^nKnb>3 gVr,? XBf.</@4ʮEE@0F'DfM1 -?7#33'3#!5%!5!7!!5!5#535#53533#3#"/326=!#!IkkkkGcc PX&M\$ K'@4 k,? DD9D<CC>A:C0B C $(,!5!!5!#!35##!#5735##!#5%5#!5# ..OpcLKKL-q]bq|j+R+?>p==D U3'3#67!7 7!5367#53&'73&'73673!!!!&''67&''67##367hhhhT8 1=O|vOC xC$K)H!XnX=e_ip^DA=p; Jk r,? 8RFH4?6=(;89:NE6HJ`MNN;<=!;gH/@(:=%=//Ik-@4>MA 153#3##!67#!5!#!#553&'#53533#35!I~"n^LO8MPN!p'@4 MV=f q+9+@RQAbbARQ@llD G!5!!5!#!3'3#'>7#'##367#5!!!#"/32675#'>7#hhKffff+B/WIS Ht]^p/(,K>$*T/I*X1GLCY,? -1&s:E..@4@l>>0~6AjY60-NF C  *067#33'3#5!!5%!5!!!5!5+#5!##67%7&HjjjjD???zM=R=#'>7#'>7#'##5+353367#5!!!PP>>>>====aK/M?(X-H*R5V)G4_PU(4I:A{Iz\;;y,OLL:GAA)n[Ȁ2-ML-3%{@R134FL>>0}6 =F%!5%!5!#!#5#535!3#&'#5''6!#3#&'#5'6%67#5354  KL}xv_U.4H-H)]8NJ4q,T:H?^)~BY,d}lVV7R,,q=CC=a(@ɽPC+޺:5*?C=W`3JRYH1b RU=C4( S7!5!#!#5#3735'5#;5#5!3#3#3>567!##5#'>7##5#535+535#535NNffGffffWЕIbN 5DObDĝO+u+D((((((((OO-;!!0; B 4Aa 22;!!;-"< J!5%!5!&'#!5!!5!5!'67#5!67+35#5353!533#3!!#&'#5!#5""(!@ z`OMM߇ _76N N>::1:u?o@@H->1A;-=IIII=- ;=5>!!! LRX!5!!5%!5%!5!3#"/3265'&''67#535#535+!#3#3#&''67&'!'67&'7pUNNM"F&ES82+9[hcUNcnW-F.721B!7p88::09,F!C 0**?%=0P=897798=P0=)<%+3!'$]+>,V:V.;-<D U[&'!5!!5%3'3#5!67!#67&'##"/326=#5'67'##367&'7677&D#(@(zhhhhK -3&=0(;d>+ 0/oE,U"JM?,F7"D-(l[)]YTXUORR8(? A.% #&A?=77!C>K3H)$ەAB !+39P.e=:C40G3H)"L?=7EX6Y 44 !Q7#33'3##3=#35'35#735#3#3!!!#5!5!5!535#535#535#53533533#3}InnnnІ=7#"&=#'>7#5!#Ibbbbqkccbb191GffuN q``J %%$d-b {hi i>4 k,@ ;;S9DD9X 9; c9D=O#C>; 7/>,3+/;B-9@e$/cO*AJ .2.'+p eM&/.,?4@  2<+*H@" CIIIzt dfVvRo">70?FAZ&_ 5@$4%N2+t@4 k,? 7@yy@)G0gC3<\\f7!!!!#!#5HNN?xB@>@\/ '%5#;5#!35#37#37357#5!#353353GJLLhLJJ/C6@@ʷE7 835!!&'7!5!#3&27#"&''$7&'!#!&53!!674  x- D'`2n24(O%OjJ.74WJB9{{9B9?xx9MHf/D*aHJC6886JD)-3+<4m; 435#35%35#367#767+!5!5!!!#5!$''67&!74H#KCnjx9K/$ iVN]9*c:]21.:.-IrN??NN@]>` E rZ!C@3EL ?35!!&'7!5!#3&27#"&''$7&'!#!&53!&'73!67 4  w- D'`2n24(O&OKI']Q?J.74WJ<;ww6A8=uu5MHf/D*aHJCN)C41&507%SD)-3+<4m! 3<!5%!5!!&"/32>7!3!#'>7+!!!%3'67#:VAPxaP7#(dZ&GM34"D-(P6S!I%6,FRR:N:+:D,"+C)>?(B'};T&$/Ce&*A ;35'35!5!!5!#!#5!!5!5!5!5!5!5!5!5!5!53!3#!!!  NN\>^>P8jj\N11o00<@x,P,::-5,31?0;IIk?d,5 :< $(,08<@353!!3!#35!5!5335#37#3735'5#;5#!5!#!#5#3!!M7MMJ[ NN[ LL@141@L11FFFFFF6GGGL+k+jGL . "5#!%!5%!5!#5!%5#!35#67!#35!&''67&'7Nx::DM\VTMͺázJ+g2223S5RRR2@<*R>>NB*=@8=(.4.a> $(0#3&'73673%5!!!7!5!!5!5%!5!#!#5N(D(**"G#GLOOta6.;35)-WW7\W\\d^^6Z+o+  *.4:!!7!5!5!#!#5&'!#5'67!&'!55!7&67JPP+h#&GM&#g4.A01-;:,>-,?!>#BXS+~+RmFCCFl+3/#->tSS MWY8HW]K#, OS&'!&'!5!33#3#&'#5!#'67#5367#536533#3#3'67#5367#5365!@M"7}D*"NMD|5-PP*8s3 M JA,w&[ vThJ7I8?LO#!%!5%!5!35#'67#5!!#=#6#3767!5!&''67&NcNN ҰAP$JD҉@1CJ%,TNcq\Tt`KHo8827N"BkBB3W WJY W  -17=!&'!&'!!!7!5!5!#!#5'!#'675!7&67jL>>QRRQjJPPӺ9GM9;<:,>*)=#?"C'%%G% %dL(f(slOD DOlHKK~HNL.@QSF*R !5%!5!'!#"/326=!'>5 N(R+=SAa.*AB#V)E+.Uū>,!5!!5'>7!5!67!!!#"/326=!#6 )"g0$P $)Q,eZ-( PDox||.EIfA118#A;:J$AbH# 5;A35#35#'>5!>5!#"/326=#'#"/326=%5##5#lOF=,"[1(r?!lX Z0#, lX" !~4Ok) Mk)X&D+~1D+A\>\!: 3I35'35#767!#!#"/32>7!!&''67&"/326=#'>5!A"LPK 7/ gIZ bOH]#XCV _R  6A",^>A xnv`iX>$&@U4@6YT:A6OuD+v*Kɴm'U), %;35'35#3#5!#33#33333#33#"/326=#'>sqqqIIWJJHLH/S6u 3<_ 8Alw??TYbnm%W(D,2U02 &L35'35#'!#"/326=#'>5%&'73#5#'>7##336=#5!673#3tIm< gS ?:=J6&/C1%GGiPN:HEXII`0*I4}a\>AC)W'D+eC1VGHIH5d>38jSP|4UBVcCcB:2/ K35'35#536=#53&'73673#3#.''#"/326=#'>5!67(7C2.6<+F$4.)[$&]$$S6 5=! .]>AiECHOGV\XITCEo@0ab.6"D,}2Tūl& gA 1G35'35#!5%!5!67#.'#67'>73533"/326=#'>5!eCCJ?WOt!x,Sek  ' L#IUH  6A"^>AKKoU1?0˄@2C``W\D,v*Kɴm'U)1 !;A35'35#35#'>5!#"/326=%7.''673533!67&%5#\68+s? lX ?ND=  (KRl*{{F' 9L367'367#!!5!5!5!5!5!!!!!327#"'.=#535337!#"/327#'>hV,,( 29EXD,-+AN>k3-+ZB')(K5KFP..6# ,jAAX:P>>P:5 A .ARR4G ?Ig?/@9- .D!5%!5!35'35##3##5#535+35#53533#"/326=#'>5!ߎMZIM lX Z::,tdcc:\\0+AS??SoS@ee@SD+,Tƭk)W'," 1EK35'35#35'35'35#26=#'&'7>5!#"/%!53#53533533#3'6xEj H6$0A6<+%m;fS%HCCIF>><:6g3a\!:Aynnkk:gs++TN(GHMk)V(D@AYYYYALJ#c[.U@ &*aw35#35'35#5!#535#53533533#3%5!'67&''67&''67#5!#67.'##"/32654'"/326=#'>53$fbaaaCIIIzt dfVvRo">70?FAZ&_ 5@$4%N2+tH+d+;@]< Ayy@)G0gC533#3#3#3#"&535#33#53&'#53533#3\[[[=;r /F#0 0->/^+;!+-*h-KTH{K{F]< Aw& %A8>;5jBCGMM>9@@VV@G2>%1!!&'#'$!5!5/N/1E8.8E(1!53!!!!&'#'$7!5!5!sZNZ%N%}}CC@m@C(1!53!!!!&'#'$7!5!5!IN|ZȂ%N%Z|}}CC@m@C1!5!53!!&3##5#53'$N*N*GEEBBBzB'1#&'#'67#535327>7#"'.53jV/BXM>o-:M( 0H 4*6(>L yD1o>DBR\Q!.X68460!5!53!&'73!%'>=33267#"&5mNQO(]Q"r{9&_NK_=)'F #!X'fC5)507,CGYB&||l$ )t:=:D?'(!.'#'>7!5!5#'67353!!0v%j8N=p%}36I?w>KNGDUA@:XsW:@ASDhP*5'uuC'#&'#'67#53533&'jV/BXM>o-:M O"yD1o>D0~HxDeI(83533#&'#'67#2>5#'>7#53653!#"'5=!3267#"&55K~r5S8":K6c+2"@<546s G"]B sEc*Iu碑CǓ>A6zľ0% L]"E'15!!!#"/32>7!'67#&'#'67#5353cdM(??Dj^<!-Lb"~=M9+-K)D-j,~KFFgWJ H RLU>D-hfuFD(1-%&'#'$75##!5!5!53!!!#"/326=#!P!K@iPi@8fZ  AuuA}>XAYYAXT*A*xޚ'(3533#&'#'67#'6=#5!.'?KGP8)BK6c*3B4w2U$+sE*[碑C>Zu,FWX>;'%#&'#'67#5353##!5!#5!#3~=M9+-K)D-j,~KN (lD-hfuFDAD DD'!(3533#&'#'67#%67$7$7?KGP8)BK6c*30$1i81osE*[碑C2Eu4}KN4SO6\},(12!&'#5'67!5!535!5!5367!5!!!#"/26PPDg*XW pv)QHSkNC{aBjŋjBa{CRRLYBC,??K5BaH#C -1!#!#5'67!5!53!!&'#5!NNS P P#/z/oDnCffCnDu['0!533##"/3265'$!%3533#&'#'67#ZO[[(U7pi5*/uvMxkME816M6^.5DV)E+8DD+lj9'1!533##"/3265!7&3533#&'#'67#_OVV(U7pi5*$DS8F:MxkME816M8]-4DV)E+!{ID+lj =:/5#&'#'67#5353"/32>7!'>7! 7&t2W;)5I2P0~0IRz= 8K47YKj!&?U;@<qDi'c|˓w:CL F !܇_3Fi<8֞#"'1#&'#'67#5353'67&'767!5!533#&'y[2W;)5I2P0~0Ic#Nt9F6]H,O^uXqDi'c|˓w:CMBI[t{FFr2E/d'%%3!5!#53533#%3533#&'#'67#OVKvlNP86:K7b+2FFDDgD*tqD'C#&'#'67#5353#".5!5!5!#5!3262>}=M9+-K)D-j,~KvN %G@:=F=OO ,1/&5! lD-hfuFDk:>F#  %($wDC@"7#(1&35#5#&'#'$7+!5!5!53!!!!:!P!K@iPi@݈BAv vAq;XAYYAXŊ' !3!5!#5!3533#&'#'67#KGP8)BK6c*3lDDDD?E*[碑C(;4&''67!&''6767!3!!$'#'$7!5![RKK1hL_{U X8P}P}0C;(7j$?mL;3A:NQ7A1^>Z IdA{oAt tAo{A-1!!!&'#5'67!5!53!!5!5!5!~ P ~PCpCttCpCfBBAA(&33333#5!#3533#&'#'67#uJMIIYJ~Mc`X7$M(=.d)xBpIIC+'I[iE'5!!!#"/32>7!'>5##&'#'67#5353RxM*7.4vi0 nq8\_*'x=M9+-K)D-j,~KFzHr% H PX7H>D-hfuFD(1#)!!!&'#'67!5!!5!53!7&67%N%lNlD6GD2I+D,KBAtAB Cffl!S`@ljjp'#)/7#&'#'67#53532653#"/'677&6$7utCG9+-K)D-j,~KT M9\? IFJDEL+F4 =>EsE.hfuEE+FT+EЧ ";&<5!53!#'>=!3267#"&5#&'#'67#5353L N]m2@I&r $C !#!E$xAI9+-K)D-j,~KCxxCY?;%\|# 6FJF#ADE-hfuFE'+#&'#'67#5353&'#'6!5!#yw5<1)K*C.l+~Kyr4tgLk+rblDj;HXtFDh;w=?DD-&})1 *.35#5#!35#'67+!5!5!53!!!!&'#5#EP K@iPi@ PE_fffׄjBhyvD?YY?DyhBj__-1 !%7!5!#!#5!&'#5'67!5!53!!MM P P`,l,CnDuuDnCff<]5,##!5!#'67!#%#&'#'67#5353O)8C[+J mEK#;#3533#!#5!32>7"'.=&'#'67#i砠}KllACMy*;JD M %$]RN#-5"K)B/j+}DEz%?=43;? /d"oF sE'=#&'#'67#5353767!5!3'67##"/3265!5!&d6680J3N0~0J.V8[FqUn 02P;;4CAL@4% *hqDw.|/˖t:C4=,OTBBoa *Do`)F`V(D+=DU'$83533#.'#'67#%'677&7&''67667&0zKle\ 6 K&90d'v7!'>5##&'#'67#535335!53+L$@<4vi/!tr8]c,jCG9+-K)D-j,~KUNDY=G H LwX8F6.hfuEE5'B#&'#'67#5353"/32>=#'>7#5'67!&'#53&'uvW9:8#K)D-j,~K-nL>$#.z~^!;_2G#9M3G% &.sE.N uEEJD-M:Bɜ71.6}ktDʛV!~k5'+!###'>5$7'#&'#'67#5353NWW8DJ'P>9'5K,D-m,KF\3J5E-rIE.[vqEE2E35335353!#5#33267"#"&5'6=##5#&'#'67#*~LYM"J9:MH '#g-"s.HVA59;L'?-d)x{Ctt+22K# D::P 1 EsJ<^7+ȇ$ƀlE '+#&'#'67#5353!#&'#'67#5353UM4/FM7b04MF1|FOW1KOyD._3DD7ݹ6D58%6!7#67!#&''67&''&'#'67#5353w:!o0h5J CS&[o!ij'%.-1;)5I2P0~0IĒ,( -D2h 7HDʧVI>L\eCA>`VK#o'c|˓w:C( &*35#5#!35#!5!5+!!!!&'#'65#CM'P%gioooAGpGAu?~*}Avii19767!535##&'#'67#535335!53!!3&''67&ECxzBmb ; FI(A.`(sIhPJn||axbdA<%'ߑtEC7#5353332633##!5!#&'#'67#5353? <v 'XaL PM"d6680J3N0~0J[06: :n>+MAkk,VCCmDw.|/˖t:C+8###'>7#536=#&'#'67#53533'6733vN\\3OP{?SZZ7+M(=.d)x~MRʳ&OUNFTI>?FDi; ?E'HqƃiEC?[;,WeCz'33533#&'#'67#!!#!!767&''67&(~Mmfi:.M(=.d)xM8*0dK:I'GJG3K:Vb9jUKnC('GviEB>OC:\Xrw_s7xLY0aZ')!5!%3533#&'#'67#%5!#5!'>5!sK~MsnZ7+M(=.d)x3e!O f>5,J]CE'HqƃiEFF <~3E1/%!!'35#5353!!3#5!#&'#'67#53533#MPOM9 FI(A.`(sI]Ra 4DDD'??]%ߑtECC%'6#!%!5!#&'#'67#5353!#"/32>5#'>7#KJikr.O:2K)D-j,~K!..GeMB {,n F?VEc-7#'>7#5363!!&'#5'$7!5!sKhNK*/(_D& ~]W/IPP P d:(,CUZb>83qOC2xNChCh~~hChC, ,B#!#=#2>=# '6#536533#"/3533#&'#'67#GHjBH<@=CEH !!(M/YnFPL#J0.F 5)T&j?+?Ce1@(p+e F/gg/@! G pCN42uȉgE3=%5##&'#'67#5353'>7!#"/326!!+#o=M9+-K*H-j,~K95VJ _njFKMD-hfđ{FD1C_0=_6 FN%6E'G Y!32>7!35#*.5'67#&'#'67#5353367!#"/#3:>7 *% G@:&,5! 1a2W;%/I2P0~0IjD!K ""1N)z?2??0$6A5<@  " *Ci']k˓w:C?} 5,=@B?3@7D675!3'#&'#'67#5353".5#53533#3267MBXb ; FI(A.`(sI/6: ANB+~0 K #B;G@@*C%'ߑtECA! dd.E>5 9>E" ' ,D#6#"/326=&''#36=!5!!!#&'#'67#5353V$rEp] 7K\5q+K{^ 7(6I#;/a)uxI oC"gSE+%[\, RCCN T+Bb &MM ykEB9%/!!#.'#'67#535335!537&5!63mb ; ; I(A.`(sIMNJ>-K/km7L6hD9%(ۑtEC: F3F6 7=C&''67#6767!%353367!&'&'#'67#7&7&^N?304[AcC G~LcpGJgLuj 90L'?-d)x ?I=)301rJ] WD>m+@wZE6E> D/ZU" E>XE@CnJda=i*K&K 77J#2,Z%l'D_-E5D%!?B# yE<', x_E8+%!5!#367!#55!'#&'#'67#5353uK MMugu\*9/K)D.l+{K9@FQ O=@}Ea.qGuEE('-!5!!5&'#5'67!5!5##5353!533##!!1z PꞞMM8hmmBc||cB]sCAQBEEEEBACs'.2!5!###&'#'67#535335353!533##=!TL2h` <#*I(A.`(sIYKLTMKKMo@1'(Xg БtEC0BT@B%1!'N3!!&'#5'$7!5!7&7&'672>7#"&=#'>7#536533P P `UL`XGh$d F"#!E&v{o.aiN |NChCh~~hChC;#*<&Z:&0:(E_G8I\t &227>67l6:-tXE2204)?67!'5!!'67#!!&'#'67!5!5"/326='67!5!&'7wj[Zgb2hLP݋|Z2'%_lS'm,8))>>Q8=]H54<#:@I?NN?I@4< e}H=5Y=9')'.!5!!!#5!#'>73533#&'#'67#H\4MK1=%`s~MrkC(5'M(=.d)xT.^DD{66RL6HW7Cg*k;ƃiE/ 2#3533#5'35+35#3735%3533#&'#'67#KMLM~Mc`X7$M(=.d)x@ԭ,@A /C+'I[iE'7#&'#'67#535375#'>5$7!#&'#&I@8/&K+A,i+|K%AX RU:BG$ NH"4@MXsE.sV rEE>-0 <5/#67!!!!!!##'&'#'67#5353o+ f)J N2,J68;)5I2P0~0IqDZ <CCE䑃$} 'c|˓w:C',B&'5!.'#67'67 73#327#"'#&'#'67#5353iMx3P[g .#VV »00 AB!q>@6GI%>/d'v}IWh C,Р%AACDAAhaBmN5B&ʄqEB' !)%!5!5%!5!3533#&'#'67#!53!3666-K{q/[8":K6c+2_AAXEX*Iu碑CB'B3533#&'#'67#7&''67'6= 7&=67&(~Mmi[ 2.M(=.d)x?4/ARJ;:5:=4.0D2:6C@KD4*{C)3GvƃiER<E dia8^BF(l8qHD  X'73533#&'#'67#'>7#'67#!!#!#3&'(~Mmfi:.M(=.d)x*#6S6t5M8 :OC.(>auP9Mrm(1 35!)5!7&67'$7+!5!5!53!!!+&'#/<:,>*=#?"CKLiPiLKP9 TZY=L]_QCoKUATTAUoCr,2#&'#'67#53533#5!#33#33333#3frb1JI%>/d'v}IIISIIHMHyB% 4ʄqEBw??TYb' 23##3!5!##"/3263533#&'#'67#HHw:%Kg,%~Mmii7.M(=.d)x4DDqV)EsC(&GvƃiE(1+17!&'#5'67!5!535!!#"/326=!567%7&PPzP'M8PK0' m{]3]$,q)qC{aBjŋjBa{CRRd@@IA;@A@e.jG6O_8^4/7&!!5!#535!5!#3#3533#&'#'67#-Ki~M_[i7.M(=.d)xD!IABDDDCDDChC(&GvƃiE'/A3533#&'#'67#53'>7'6767676"/3265##!!sHlfL$3$H"6+X&nJp,aawDfy<>B@ >FxCQ-KQŊhEˢ?>(k^B/C4A(?"/F,WL&)"+J3!!&'#5'$7!5!7'>73>733#6:>7#".5367PP4 $ I >Kp& & F564TGLzQC|fCh~~hCf|CA*$AC i{C* &!'241 m)H=L*w ' H3#3#3##"/3265#######.'#'67#53533#53!3#__^^__)D% _H^H_J+2) H!;*X'ovHb^ &+A00%%%K+D3zzh6w#ԍoECCOdCiC-1 -&'#5!5%!5%!5!!53'67!5!53!!&'3'hPhC   'FPF'U^^U\\XX8TGBCbjCWWCjbCQ')3533#&'#'67#%!#3#!!5333!(~M_[i7.M(=.d)x$b bqK{C(&GvƃiEDDDD19!3#"/3265####&'#'67#53533#535!5!53! CC3 MI. FI(A.`(sIrg[ MU*E+=DՑtECC"ڂDmm' !EKQ!67%!67!%3533#&'#'67#5367!3#3##"/3267!'67%&'7&'7  R~LleZ .5L'?-d)x: CIRY,6+H<#uJ!LB_3YKMHc3eIuUC>C9ƀlECtC>A?*A+4_PQ/KYSS0TU'A!!!#"/32>7#'>5#'67&'#'67#53533#65 7 125WJ/ FH:TH4O1$:K)B/j+}KsoS: '.kAD9; C %R3aQq<%PrsEEEwPt7(=/3!!&'#'67!5!%5!#53&'73&'73673P~-P-~z\K%C+(.D2#q8#F!+DC:y:C0D-@N3HOIPD>@,<!&'!!5!5#535#5'67#&'#'67#53533673&'#3#ۀoj ' \ a8. I%>/d'v}IimV cCCA6H$&ʄqEB=ioH6A'F#3!5#"&=#'>=#735!#3#5!#&'#'67#53533#35#5!]r'[7!J8O&A+lLҷM\L24J$90a)uxJmi gn.V&BR:<0fmOtttc22R#>|hEBB=tA)&*.235#35!5!!3!!!&'#5'67!5!5'5#!5#;5#}I\PvXXXAAXHAs`Ai~~iA`sAH=)%53!!&'#'$7!5!7##5#535#5!#3##5#535#5!#3PPNͲNfB|fCh~~hCf|B̤BBBBBBB;%+?3!!#67&'#'67#535335!7&&''67&'767iN i#*lC>B; FI(A.d'vIah5pX6Zord[7I3JS3E:]];wB=Id`y#q ''ߑtEC<0mz-xA@_]B@APeTWcN'+/%!5!3533#&'#'67#%5!!!#5!#3675!uf~Mic/>7%M(=.d)x.e NuMu(Cq'@_ƃiEDDET66uBWm'?#&'#'>7#&'#'67#53533#5!5#'673533#$X!\M4U f+; CI(A.`(sIuoE$2?X&FtMDTACsUO6CAR'&'ߑtECC%0_M# !@uuCF1O5367!!#'>7&'#'67#53533#6753675#535367!5!3##"/3263 K a8SK&- $G#4+Z%knG_YAJ"39}FG"FMK D.6/.D}%1,I +RydEBB?$xAAC\-FBB]>4C?B /HM3533#67!535#53533673!!!!#"/32>7!'67'&'#'67#%#36(nHe_(.|N59Af9Du  /3DwbF K9<H5-X%j5CvCh?WA=RR=>.(daA/+AC( DHU<3 cq06DvkDm8=E#;#%#&'#'67#53535!##535'67!!3!3##"/326lԊ_,H8(I(A.`(sILLHH.n?I B>>%L)O\"  pCa'J`ߑtECC%#@}()A*'CBA; *B6$7&'!!67'67&'767#5!533533#&'#'67#&6c8HfqV6Wtv AQ:#wG;Uoe20(=6 Ov~Lga +/7 L+<,d)x1͈)eVIj5oM9Cl\1"c|%9E/NxH2$ FTCkC#z#_`ˋfE'"8!5%!5!'!#67.'#67'67#&'#'67#5353GGK/TF0NSFf'q'gWv$F+p2W<).I/Q1x.I CxADWGAT-^@T5<6֍B5C kDi'ekڜ|9C6 DH&''67#6767!&'353367!&'#5!#&'#'67#5!^N?304[9cC G n]gzq~LcpGJgLuj&OM 9;L'?-d)x?I=)4H0sJ] W0@A/K>m+@wZE6E55n $ƀlE,FL%67327#"&''67&'!3#&'#'67#535#535#53533#!&53!#7&'7C"@5W $C^I!g(i+׺_S,MVKJ{,DܾK K7=><9Zi h(<OMb::?iiASX7ZN({h%?)^2xjEƊDDDbT*D*D BS|'45!!5!5#53533#!!5!5#53533#3533#&'#'67#NNq~M_ZZ7+M(=.d)xAA@vv@AA@xx@CE'HqƃiE'$V%#"&5367'&'3:>773'>7'6746=&'#&'#'67#53533&+-*[1KPI=NW1h+Ze0 =M7Kk.k\ Vdy`1-5Z Z6 /J%% ,*.&gazD<5xA0H8H! SLN5 %}ĀoEB"'33533#&'#'67#!#!!%3!535#535#5!#3#(~Mmfi:.M(=.d)xM8*HnC('GviEC:YCg??L>PPdT&.0$T-J($aAXXAV8,=5H,F!<-&5>EAfS@`xx`@SfA38P&'#%3533#!!!#"/32>7!'67#&'#'67#'67#5367!#&'!5D+/.E5nHibH0  .1I^X? L,V 5BH!2.Y%k(!M N/P!RDCJXXJvBA%2y(CEO>=v)|fEô@VA$) (AN@+E/1C'-=#&'#'67#5353!7&''6767#5!!67&!!5!5#53533k@;;0I,Q1t/I>bH@04)G+-W~$NqD)r@Ւ7C"#9.,CstDDze3DDCvvC' 7%#!'35#265!#!#"/5!%#&'#'67#5353@G ٓ MKI"5fZ`^ 7(6'I#;/a)uxIqP< &WD*C&??QBb &5d ykEB)  !4\67!67#67#5!&''67&'75!&''67&'7!5!&'!!&'#5'67!5!5367&'7V?YI7"HA+7`zΥvR1.E;3)7ZmR>? i.JC[mXHlPK3@9.4q%35&657FAAA1:++: '077<*(+$*6#$77B- 6% ?cT@`xx`@Tc?H#,' *%!5!#!5!5!5!3533#&'#'67#aKovo~MidZ7+M(=.d)xTAAΟ9AACE'HqƃiE1/3#5!#5!#&'#'67#5353%!3!535!5!53!5!kmZ OM1 FI(A.`(sIPgC"2m55D  ˑtEC??Bmmd9)D3533#&'#'67#%&''676767&'3##5!5!5#'673533#(nH^V:,5H5-X%jgM: -6D;H1>$.Np /@]/FNvCq-JMvkDty,@Dkif /6BB>=%y0-||A*<BHN%67#3533#367!#&''67&''67#&'#'67#%7&?&'67S2!$_zKlg3"Ia0^i~*n|MX:@3]7,K&90d'vF4+I1G..H-FKCHCFh92ǬC7>>47CvX3S;Z7j DO!,MS'&yE~jEu|e}0 3E%3#67#%3533#673'67&'&'#'67#3##5!533533#aas>cnFid9J&H 2NC9  51F 5)T&j[VVMXMNNqt:V4ΪC ,CDZ7cE25*8ŇeDBBB2T3533'%&537&'777%67327#"''67&''7&''7&'#&'#'67#,wI`NDGNk-  E;1CU:ANqGXO 1$I&:,_&py1"IE >#+AG'==8AC(-;.B8<5^0C4W9SD)M@ f0&2eOƒgE, &=&''675!&''6767#5!!67&'#&'#'67#5353~}@BJ"L'3$?#/,QUX1 6I%>/d'v}I,sHyyHsAA艠S 6 C}CCzd+B% 0ʄqEB' K##3735%5#!35#'767!5!3#"/326=##5##&'#'67#535333&[p\H8[9g[d=)bEHK'/c'u}IzV[eUCqDDqeC'3#ʄqEC%!'GM3!!&'#5'67!5!7&7&'67!7&'#"/32>7#'>7#67PPڌYUUgLS&!W"[_%=#A,'-$CXC=!}u'hJ"?$O[^AH?NN?HA;"+<,t:*+<0;AT:VE>rq aYgm" B#0<*xL]hO< b367#67#67#;67##367'67!!!3#3##"/3267465!'67#&'#'67#5353 V {   T F , &3p=I) @G >F*6Z9$r K,@J%5,\&mqJW1;~~;cVgSyAGs~BTX072A3sA`Z@2"?# ,  ~bEB6:67!'#&'#'67#5353!53&'#5!53!#3!!!#5!5!(^^1 :I%>/c'u}IuSPI(PnzgC'3#ʄqECCgAddAznCCC' #FK35#35#367#'#&'#'67#53537!!3#5#&''67&'767+35!5#hUX6+I#;/a)uxIX}I+ SDF/@);!H]]]-6B% (7oykEB?NN@cBZ D iN$C"98G%=24ErN|c4/' !D\3>5'35#%3533#&'#'67#5367#5365#5!#"/32>7#'67#!+'32654'67l`a_FpGPL--0G7*U&kNZ]ta &H1)r!a9T{H';09DJ&1,n=,f5h@k Cfl3)LÀkEAEV@HSBc7 F tt8kcC3FSID.6m~ 7 ,B#'667!3'67&''67!#&''67#5353!#&'#5G"!x.FU)1G,dE4&/2`1FO._]no\K \`KaF+P v@RSk6@$78MC53j(AjM5#C(GEM@cuB__Buc@bsu(N 8%3267!!!5%!5!!!#"/#&'#5'67!5!5!367!!!724(4 Pv O _ɮ0B2m4415/c>hQ@Xnm[@SfA2)(3/'(,0#367+!#!#53533#&'#'67#5!5!L}L(MǂKuq&M<K)B/j+}_@9;E6>]@EZ%PR#sE&'( )?!5%!5!&'67"/326=!#3333533#&'#'67#~~'83@5553D-<nU! LK Kxw/Z3=K)B/j+}3tt>h=^hj\XqegC,HcU%EX59| sE'1+B3533#&'#5'67#%#&'#5'67#5353'67&'767!'67!>Ms@@0/6M8Z-m:lK-xFMCa1qGM^r4|fnAui)kM*\\?;I2<:aW5aj??ic4]d[P/[b?\\AG<;2@DBbI58[y%@'"4835%#!#5!#&'#'67#535337#537#5!!!3!5!U-b `-NnO/=I&=/d'v}I_MUn||XC++W  džpEC|=iAAiA) 26D3!!&'#5'67!5!#&'#5'67#535'6733#"/3265PPKr69j4F>n*v8WVVlKL&I$]V #`TAs^AezzeA^sA`>\-1h0hPBMS>R =&<Z=VN'?"7Ng%67!3533#&'#'67#%7&'3267#"&='67'>36767&>7!&''67&'c9;nHf_U5&H!2.Y%k@eNA#F30F %%%a+ 8 !u5 2 ::J06z03GGX?wlV988u=PKĮB#!-Oi|fErn"B(&' .Q?2ASeTN>(7&>bP:%A)OT$A@=C2!<Q35#35#'67#53533#6735!53&'73673!!#"/32>7##'67#'67&'#*X&msJd^<I"#J,%,'_A+ Mm'i I5J"}GECCl::9A9-,LB6 38}- D.SQn@w. To0ː?[35335!&533&'73#67327#"&''67&!#3533533###'>7#.'#'67#&nJUvK~48'=@ 81#B/R >F$GU,U( X('<70J#2,]$n;%OO%'"8#3+Ce͂6P"TYeG8Pv:"A,> '&x_E ' ;'!5&'##53533#!63533#!#5!#.'#'67#PBk**kBFFC #oFID#9I H/ %F6*V&l))AA&ڔ@BM--)_ĂhE;#'AX7&''6767#5!53!!67&3'>333267<5"#"&53533#&'#'67#=dL=( D 4% P**%JX[5RLJlJ B ;3vJb]X1$J'8,`%p\%{y'?(CmhBYYBuZ 3743\ /65B! /}C'2eOeE'0+JP3533#&'#5'67#%#&'#5'67#53533267"#"&5!'>=!&'>MsE;0/6M8Z-n9lK-xFMIt1NM16I&" Y.'gZud9_x[[@@C2<:aW5bh@@ic4]di\/cn@[[G,30>  -57]A'qauNe3bO''[!5#653!!'67&'#'67#5353".='75'75'677%3:>7^^K/67=0 P>c<` > A<a"<$c%>&G$  ! //.',28%!!3!5352$7!#%3533#&'#'67#67%7&Wh_F;xKuqC;3?K)B/j+}^.e_)f,fEED)E&OCkE~y4#sEMl:sM[x  M*! nZs:/C'2eOeE>J1J>?O%B '_0I}?(K?+3<QA42A8 <3+?s);IM'6767#5!53!#&'&'#635!!!!&'#5'67!5!5!5#53533533533+3n6( PiY:J%jPyyJPJy4:0.>MM>ON(i7*1 NN9<[I>WjjW>I[<9<22<<22KPsEEExDj5#;DU*E' #7=C!5%!5%!5!#4&'#'67#5353!53#5353!533#367%7&PPP[ ]6.J%>V9a;@DX>R'"1R!5%!5!3533#&'#'67#%!!#'6733#67"&536732>745"||Z~MpkZ7+M(=.d)x[7KS?%MRO O\)LWbjl0E & 0ii9bPCE'HqƃiE*A `gAA5.fw:.(-9=A5\\AAe0I2DBy . -d xjEBBg($2;$.?1#'?4;++>vED1J0e3 HL&'!5!#5!#!&'#67&'#'67#53533#673 73#325! U[ u?0OMZ,b`;2I'C-`(sIqf2%&  Qb ̺EDf-2 Sih++8g(?D, (|/ߎwECC"v HD5!!#"/3265!&'#'67#535335!53!#5!#5#67%7&z!>0E<% 6EI#;/a)uxIb P I,J[Fd<@>i:_M=SCC{CG$C #&ykEB^llґ2d!i)r&)A /]'326=!5!!!#"'&'#5'$75!#5!5!5!53!!!#"/326=!&'#5'$75!#5!5!5!50WOwT8UrPKTwPwT8 XOPKTwB!&3 ;+7H&0*FZZF>I`+z.911-[#3#"/326=#&'#'675##35#53533%3#3#"/326=#&'#'675##35#535˨'.! aK(hFMP}&P\EMc'+ [aL*5!#"/326=#'#"/326=#'67&'#'67#JKnFZV->6#?C  1@$?C  1B3..F6)T&j]>A]>ALCgGh).QŢh)V(D,} D,} 22uƄjE1 /E35#35#!#3=#+35!5!53!!3+&'#'6#&'#'67#5353sIMK`"fMe!ɏ[T17I%>/c'u}I^cc^^o??YY??\BcmBmC-3ʄqEC)>6!5!73533673#5!#53&'67!5!5+!#!!&'#5 XgD (P%C%L@LՏNDP|,E<;%>楥1?FACCAF?N 'H#353#5##33#53&'73673%3533#!#"/3265!#&'#'67#FDAABBDdA$>"B!epG_VX_!3aU7K)0G8+V&j/dtA]MdZSp`QC4D*C &_0TvŅmE1+A!53!!&'#5'67!3533#&'#'67#%#&'#'67#5353]oPoP֎(M{QC,5?M=`)s=~G)IMS)SMWWCkWAhuuhAWkffAKJ0@@i\8gpAAts9glwk6zAff/)28X^d!&'7&'!5'#&'#'67#53533675!'6767%:>7#".=327&'77&&HKKvQH>[0 a6@I#;/a)uxI]|AW=J2?&E"K='!' I686.1.M`-GW+ZB>5@-n:NNmH47//1:F & ykEB']kCCp]/OOP_p& %& /1/ #($5F=5?<q6%_#3=#67#3533#.'#'67#5367#535!5!5#535!5!53!!!3#!!#&''67&''67= V3%#irGZVT4 %G 4.Y%nP5@@i4Wnz#p{KS :J5C~AA\5H, B#-d xjE<$8C;A75>CC>5x;{/c'u}IxfjjF8C;*$):lxjEBceeFA ", + =B< ; (F#5!%!5!'#&'#'67#535375!53!!#"/326=!5!5367!5!L Cqn\ 3)2 4I%>/c'u}I>'N'%ICKZ(" HQJD5ez:e:Cl 3' ʄqEC5@PP@?UK&A&P?2(==C-4 AS67!67#3533#367!#&''67&''67#.'#'67#53&'#5!53!#3)" [Y/$$VvJb\JL g1]py%w~QM 8AP1ZAA 'AQ8OeE}ARNCZZCQOA9 "L!!#353!!&''67#536!&'#'67#53533#5!##"/326 HH:L"Z= 7 3I&=/d'v}IigBG$J2[l$%C;<P3'C MX@bK!@%C*))> &"džpECC'7BU)A:8NT'67#.'#'67#5353367! #"/32>7!&'#&'#'67#533767R6 H652 , J%:,\'nvJ`\*I !$)#A; 2{˄jEB0l0թD"SiLM>Wr=X7jBw> 5`dci1,4:@!5!%3533#!##"/326=+&'#'67#%5!53!'67%7&xfKfb+Q! ?1FN <7DK)B/j+}N7hB??:iM;ROZDQT+D+)0sElAYYA=+f)v%;?K#.'#'67#5353267#"&=#'>5##5!53!#5#!!5!5#5!CV b6! I#;/a)uxIbD%'%Y)=|q$hczILK{>'0yB &8YykEBA'&' 0v-;)d^^lBBAA3"B!5%!5!'5!>73!3!#3675!3533#3!!#&'#'67#38M K| qJ_WZLL/BJ%5,\&mVV8SA6 !+A=:YYܮB#A1`!~bE='+B5#5#3!#'673673#3#3+33533#&'#'67# %M""(x>J IwIibV 1"$I&:,_&pԕؙ@A9L@(W @EEM K/c'u}IjjvC;رBBBBA&ʄqEC106<S3533#.'#'67###"/3265#5333#'677&767!5!&''67&!pHjf!;5H 5+V&lZ3C'gMT9A8>.!A"LC?QQp@b'`CRg'qKTCS+TȄgElCS(D 'aC^A~q| ۡDD|P@Su}K=R' /3!5!!5!#!!5!#!#53533#&'#'67#5!yyK"UMFN~MpkX8$M(=.d)x@Ur\bq|j+R+C(%Kd ƃiEee' ?35#35%3#"/3265#5##3%3533#;##.'#'67#~KM B#f_$ݛpGKF#6KK, %G8*V&lZx}}"U)D*.xx;}ܩBNPM&_~lE4 4Z#'67%3533#&'#'67#%##5##5#5353353".='673673267K0?#EGvIa^C0&I%5.^&rKKKK,.,',C'Mow'zELF ,&jCXJ:K\®BK4)afEBWWWWBaaaa FBa7+35#5'#&'#'67#53533673&'#3#.':RKK%LlH0@O i6 8I%>/d'v}I^yL~@0mg&(o@PPD!tFJ%#(+%ʄqEB \|c?(#%JFt!D"zKJ{ '=%!%3!535#535#5!#3#&'73533#!#5!#.'#'67#m U4.*52oFID#9I H/ %F6*V&lD>>:<<:M=HfBM--)_ĂhE?!D!#!#53533#&'#'67##53=#'673#3#&''>7JInFSO;75.F 5)T&jMV(CF F q}Q?>$DW72DW ?+?}C*2uȉgE e7EdQ ":CE)^`.<;| AM##"/3265!5!537&3533#65!53!!67#'67&'#'67#<A*UU M=K7?9oFJDH#OQ(M#H%*757 '&F6*V&lB|Y*C.B&mx#xB)>'ZZA/ aRaA<#1\ĂhE' $2J35#5#6#!+'32654'67!#3'67#5!##5#&'#'67#5353D H';09DJ&1,n=,.-c*GRT 1(. 0I#;,^(quIe0cC3FSID.6m~C NCC&:Cj 6!}lDC '4g#"&=#'>=3326767#5!&''67&673#3#67#5'675&'#'67#53533#; 3_'.5%  >(;9&K1KH^bXX"|PB|g_aYa^K+22 0G8+W%jpGTN'@v201 ex.-%pfD"RCDdBBXC4C4SO8=4HI7@.]=>A;A -yǃnDCCX< Y%>7#7!5%!5%!5!#3267#"&=#'!!##&'#'67#53533#3#5353!533#3=6w7444*)C !"!Q,=HK)K /J$90a)uxJe\%;:ZZM4MZZdiI>NNLL7Nk\=%%% +sOh#'GA6q=z|hECCXV?]]]]??b67!'67&''67&''&'#'67#53533#67#5!67!'67!3#67&'##"/32654'%x ecRi*I&?-`(s}IlgLyOK2K &y$>54AG?])^ :F"0%WC xk K6c=Ii#O:;4J/#(!6f̈́oECCA(0A8 { 4ARN4C)S9pP;M 8TW?A=f6 ]3&'#&'#!5!!53533#5367#5367#5!67!!!#3#&'#5!#'67#.'#'67#*>!!~~rGZV3  N* 1ЭJh$$II"0 oS4 %G 4.Y%n(11*+,)XYYB*}3,-:$0?1#'?0$:1(=vBD!,,DBv , -d xjE' 9P!5%!5!'!!#"/32675#'>7#'>7#'>7#5!!!3533#&'#'67#xxK9K/M?(*T.H*g5U)F4nNR)9v+go/wIiaJ 0,I&:,_&pOLL:G>AjY62-ML-4$z?N04!f5>>0~6ĮB$20vƒgE '7]#3'35#".5!'67&'#'67#53533#65!32'.''675##;5'67;#67&'OOOp5$$ N'+BA0&F6*V&loFTNKD 6)=΢OhKAAKIJDVKA$;iY*μO4|+1\ĂhEBB;BTs5$A .@_>= f )G,6e3533#&'#'67#'675#535#53533#3#67#5'>7!5!53'>7#5!#"/32>5#!!.'!sHXRS3$H"6+X&n0Z bbxxMssgg%LA3M@4qJ/0:R; %1?2 XC8&ql+,vC@.KQČgE˹> Z9PҒoE}>3##>#;L<9:3BC00o'/+M3533#&'#5'67#%#&'#5'67#535367!5!'67!3#;# $'>MsE;0*;M8Z-n9lK-xFMIt1NMfv)J GyX,;<*&s:7R+>\\?@C25@aW6bh??ic4]di\/cn?\\ 5=L??H9*&1b>qC=MTF' #N35#5#3533#&'#'67#5#'#365!#"/326=#'67+#35#53533~|ĂsHXR744(H"6+X&nC|fxb4 %X8N> AIdqqMx)\!Cxw-5bČgEk)=1D+,(LE1 I5#5#!35#7&'67'67+&'#'67#53533!5!5!53!!!+&'#Vg^<*<9+>"!Z36;I#;/_*txIn!L!IZ!`L`66 UYWXK^_6Cp/ykEC/UATTAUpCp6P5#3#3##5#535#53&'7367!!#"/3265!#&'#'67#53533!5!5!53!6]6eGd=#P%=?$JK I*"F8*V&lpFg-O-kw~>l>>l>OJZTNcRYU*C+%Y4~lEB-Y?MM/ MWa!&'75#75&"/326=&'#&'#'67#5353367#5!&'!5'#5!&'67&'6FII'??'??'BaD7 'B+32F':B$F&GAF&7#!5!355#33#3#5!#.'#'67#53533#535#53&'736#'!5#"&5;)eCQt*-F"ۿKCJ- I#;/a)uxI^Y )/˶ E)}&CQ9K(`;#(SU7#5!#>7#5#&'#'67#5353L87YYɐ|ay 6 FI 4 4 OSJ%3%I'C-`(sI?WW7SCWWA|AAA}mCV6]GߎwEC)/E67!!&'#5'67!5!5!5!5!53&'#53&'73533533673#3!!!S'!P!|M"È!@$(WGrGZ) A#MBGBG=UB>KddK>BU=K;IA;,?J?Ic@;%-\ QQQQQ B*2w#†dEѷ:-DA63A600.%'-F!5!!5#!#&'#5'67#5!5##5353!533#3533#.'#'67#GGLYcMmkSSKGLRRzKtnR 7K'70d'w8hmmACnaCez]CYvCAQBEEEEB%C&&2GfEA K67!35335!#"/326=#####&'#'67#53533#53&'#5!53!#3#, M 98A MG-3J$90a)uxJb^$&&[Mc(8U_NfffC!BL;|hECCS`h]WAbbA`T'T%3#767#53&''67&5!3533#5367#5!!3#"/3276?#+5&'#'67#f__H=,$ 8/<+;,,>/D+;@dnHfZ9 k   5MC' RD4H#4*Z%lSWYmAAlG170=>08/GdhBBÙB/bBB!@kQ> A ݭzj>ydE',;W%!5!!5!#367!#5#.'#'67#5353'6733#63267"#"&536mmK N MkD"<!I(A.`(sI&JNgm35F ' \+IVek++& %K+C\%_ߑtECf@8ADaA :=#j#g+*4.8q'$*0M3533#.'#'67#'6=3&'67%'67%#&'#'67#535'67 oH\W%=/ +H 4+V&l+)_\K*u6;+B /A2Di=C48I+H+g.lu/= 7NCT7oÄcFxGPGi0?Ct0<AuJC?+=' ]367!5!3!535#!5#;5#767#'&'#'67#53533#67#5!3#"/32>7#&''67& 3;Idddd,1*$&o %G7*V&lpGhd2V j +2)(&#54!.'/El\?+j<(BvAA*/%%(=_6k ÀkECCNsAER,?Z_ V;/%/*,8#=2%-_%67#3#&'#!#&''67&''67#5&'#'67#53533#3675'67#53&'73533'6U/#(f6@/LY aK{g0Yjz%u{`>8A:o+(I'8,`%pvI^X F;d]օ;B?AA5pPo2Jq:R-*FF?MF?N`-CbG+?>K.TA;);G%!8jeECC0&5}cF?AR?J?">QB%<(.4:@!5%!5!!5!5+3673#!!&'#5'6&'767%'677&m<_M O ŬPPBf/fCtW#Zu0XP1C#|S&Zpp>e*CA2)9nACs^AezzeA^?K8K@5>8=>A ' _35'35#5%#36%35335!#67&'767#53#5!#3#33267#"&='67&''675&'#'67#w<g?%pG`6E- 9<;d88.O/#bw  ; %>p+??($!G7*V&lJ9>'NXJg!2=6BCIʢA㪪CL53`…lE|??l%9RxoG0CFFhWKMx' 7M!5%!5%!5!67!'67&''67+367!5!!3!!&'3533#&'#'67#}}}^A@rN665{P)M ubBlr5~MidZ7+M(=.d)x88k7758*63A'+1&=;Xz"AA:G8)AA=CE'HqƃiEC37;?C[a#5##35!5!533&'73!3#3##"/326=!5!535'#3735'5#;5#%#&'#'67#5353&'7OK"O(;*2GFss!Ji_! +IOT/(- 6I#;/a)uxIl,T\+_=119r5@GG&%3@5#?|O%B 'z?4(MMMM5HHH;B"vf<ykEB7K=7>08P35'35#%#5&''673533#67&'7!+'32654'67#&'#'67#5353OH< 7jMkED(>F;';09DJ&1,n=,T 1(. 0I#;,^(quI||B ggU7M%C3FSID.6m~QCj 6!}lDCK+17J!&'!5!#5#&'#'67#535335!53!#5'6?&'&'#5!#'>7?VKOehV6l3&'#3&'#67'33533#5367#5367!5!67!!!#3#&'#&'#5'67#5'67#.'#'67#0 8CV?5:9)0rGZV1  N) .ԳJn"$|Li\&# sW4 %G 4.Y%n0&(ORq+" 9 #0*B(y;.(:'*>##,>*':&07#53(f;77DJ$90a)uxJK*d N p#KNR11JQB%|hEB\4TAPPAH@\!\?.}}-A@hV81h?' 28>5!!5%!5!!!5!5++&'#'67#535335!##67%7&k"@]]n%L:YX6+I#;/a)uxI\t?W/\R*d/\BBaa:ZCCC% &7oykEBEb7iF;Jd:^)(+17?U'>=3&''67%'67'>=3&''67%'67#5!#53!!&'#5'$7!5!SbZI =yoK>(C,>0ACcRI >sM:,A-$@.CMfMrPP9fX)&.)Y+8'T_yKR7gU+&-$Z.:&U^x@I NEAHO__c?|fCh~~hCf|?2 F`3#5!#35#3575##3.'&'#'67#53533#676767&'7!#"/32>7#'67#NLMiLK񧧧1 B t~ 3EI!;+Y'ovIYU -( jf 94!D (33 [r3_ TYU,,dgg;dd;gh]!K4K.ӍoFCCr#/B'#N~\t[.C3bRq8`' F5!5!;5#!5!!5%!5!#53!3##"/326=!##&'#'67#5353AIgg` ?A CH E&Q_L32 I#;/a)uxI>LAKK9K#B BC3}-HYykEB1 +/=%!5!67##&'#'67#5353%3!5335335!53&'#5!#3Zi1Q:4!I,Q1t/IXKKLP>=k=X:[iDd)zIՒ7CÄAABMHQDB2 B!5!#5!35##!5!53!#&'#'67#53533#5!#"/26=-J²E;*MJ4,J$90a)uxJe]WaEH;0]`+CHHCq |hECC8W(E,$G5Naw75#67#%&''7=36737#"/326=#5'67%'6=!3267#"&=#5!&''67&'73!!&'#5'67!5!I/17"5-+EvL ++8CM L@?GA@ :P  ?!O;"|/@3RL_|hNoL@915yPP؎9"4.5,":(? -?1AwpkMGq\(+X/ -Q e(I\<2; "-%:?D?MM?D?' 8Z_!5%!5%!5!'#53!!&'7#'67#5&'#'67#5353".=3673267"!!#&]"- K0x#x lh!-I#;/a)uxIgb; M %KE>I *"F;K"66e77.6CVs>3B=F93+N1?+@{AykECC>$=#2 (- .h%#3=#35'35#35#35%3533#&'#'67#26=!#5#53!5!535#535#53533533#3#3!!3##"/FVpGWW);7G#6,Z%j MKFFӫ~~ML@@:kXNNN6NN6N=s==6Cb'9C${gD%0=4<=6=;8888;=6=<4=0P%A=BH%!5!5!!#3673%35#3533#3;#"&''67#&'#'67#&'75[IL oH]Z  x')@);&6 4 H 5*U&ki;;<<:Ng85 +8@C_ G0C,6:8?34 ,)/V ÄgErQ!Sm4 LP3&'!&'#!5%!5!&'!!3#5!#5'>='#.'#'67#5353367!5+)71L(C=-F$,MMKDXA:/7DB9+BAX>_?(4>F [g5#%35#35!35'35#67#627&'7#"&5#'67+.'#'67#535335367!#63267.J\-VD-D = 1,(g3< ( N; 9! I#;/a)uxIa%KSbRiZ@J&Q Lrvzzzz250vJjaP 1$J(7,_&pAC?7A+D=Q9=bS,C(fg_ZA036D@9*<@[>_.>=.:B&2eO†dE1 "3E!5%!5%!5!'#&'#'67#535335!5!53!!3!#5!!&'7#'67fffdUR4/I#;/a)uxIr*O/LMn%p$eaWAAs??3>>B+ *ykEB7AEEA7iuAA=L;NA5-W9@3JA "&Xj67!35'35##232>7'#3=##5!"#".=##.'#'67#535353&'#5!53!#3" "& A^_ +B 7,-+-+K2! I#;/a)uxI>!\ N a.5G2J^^8Z ^ZZbB21=  "(?"8W ykEB?J2?XX?I3?)# %Y#3735'5#;5#3!!&'#5'67!5!3#3#3>567!##5#'>7##5#535+535#535ffGffffPPۍЕIbN 5DObD((((((((5?H?NN?H?-;!!0; B 4Aa 77;!!;-6 .j#3=#35'35#&'#>#&'#'67#5353&'7#5!5'675+35!5!53!!3#&'"#3##"/326=!Rm91%R M .+I#;/a)uxI$Li'NxK"L'6/)= }}A%ka! eHGx@@1GG1@4HB1'kykEBCDB32 ss24 7v1,2 hD*dF%?L&A +JLÀkECIL**L4*6FC|ߠ}vW2;8g8b>a|qP[]' Gc35'35'35#53533#3#&''>7#&'#'67#53533#53=#"&=#'>7#!#326UJVV^gP=6(;$y,BF R 4%G7*U&kpGRK0'ZDNA!{kVd FWa kkgg0k%CtP5˰ * < #RVZ35#37#3735'5#;5#!5!#!#5#35#53533533#3!#.'#'67#5353#3!!?sppssApsppxM!LK QKsK?6" I#;/a)uxIpp=x11FFFFFF6GGGL+k+C&1@LLLL@1#&6ZykEC@GL4 "T35#7355#'67#53533#.'#!!5!5#535#535+535#5#53533533##3+3#3#ZZ/a)uxIfaW#72I#0i*IllMMssIne66eeEBBT#'y??D9?;:0mCIIIICm0:;?9%< m35'35#&'%&''767&'#!!&'#5'67!5!5+&''767&'7676773673767677&' 9 '#j &#J&nP%C; ,.I*'+;*04%;%42g O s$+;*04%;%44'< pp>e"Na "NC7I>5/g1ACs^AezzeA^sCA*>Fe68P>^Q(]OO]Sn{2)9Q5P>^Q(]OO]}q*03@Y353367'#6767&''#'&'#'67#'67&'633#;#"&'%nGR\4;=d*L=R67@H 5"0"#%>'H*G#4+Z%k7\H ;40'6CF *JK;^%(/y[xc1;^zp F=><><*XJ(, =:9CydEt1 D?Ii=QKHʺ" dg{*lADOevM' AGf67##3735'5#;5#%3533#33!!"&''67##&'#'67#&'775!3#"/26=##5##3&'7I"! O=)c"x-e8xjEBf99f>c)=K6!4;E"IA+84')-159=X7'67#53533#&'#!#5##5##5!5#5!#5353753535!'67#5!!!#"/3267!=*[%kpGPL94/,G"/KJJB|-N)x;  -0I^XA ECC*7lÀϖƖ5AA11Z11Z11Z11k;;bt<<+ j^ A#JG ' %+1T355#!5#;5#5!26=!5!!#"/%67%7&3533535#5!#3!#5#&'#'67#5nk"qkkm3 84HHnG2Is0aZ0VpGcʯFU5.7%G#6,V%fDDqqqqq??AA;@B^,bE1J`0ZODAAD䊂w'h8}fE'OU[67&'#675'675'67#5!3'675'67#5!#5&'''&'#'67#5353'$'$ʆ3.jN +# qaSi~ZTmSB"6gPTmSBH;Tsza;I#;/a)uxIZ1m9"MBjX2AkP;9F^OT=9-8? !=SOT=9-8?:5K;@4;'H3?R2 "N!5%!5!735#&'#'67#53535!5+35#53533533#3#!!.''>7kkbp` `:4I#;/a)uxI9)KaLMn.ph+.ouVV:R~CC'B ykEB>AWC=UUUU=CA>5UBa==aBU5=6<Ea3533#&'#'67#!!5!5#535!53&'73673#3#&''67#5!&'#"/326=#5!6)vJjb]38J(7,_&pE F {ٱ$IG8ASF`,U"8#dR A-GyB$2+†dEH??B;?A5?%+ #"A?; #=$ ]A2N<7&'#'67#53533#6735#ƫ_##;T/EZ/EöO40'&J%:,\'nvJe[SW>IGG@362#'Yl$A36@0:)5+@G6I6J<,/$>6YƄjEBB*M]J- MU3535#35'#335##5353335#53533533#3!3#&'7#'67+5&'#'6%!5#532uxIf}}KK}}a&g !Y"WiK2%"I#;/aYbPPehheh.B!PN7OB2+T<;6J"fXykE&' ,0GW5#735#5#35335!#3#3##5&'#'67#%#3?67#5!&''67&!!5!5#53533=^-xUUpGc4UPPUG,/G#6,X&iUUB!57,(I?O$SD0C,?3A#l"OJm'UQQ=QQ<23}fEĘQ^RTmAAhQ8<;R4/<);^_yAAy@PP@3 CIOU[5#5##33533673673#3#3#3!'67#.'#'67#677&'7&'7&'7rvIpL M A LH 1- I'8,`%p;,D*@ G x'E*/>AG(7_U__<_X[83(#1B_<_<_A )0$2z$ȄeEbstlew zdnlrk kn~[' :>U#!%!5%!5!35#5#63533#!!#5'67#&'#'67##3767#5!&''67&LLMMHQoHa]F*'5H 5*V&le=&223"B7LQB>SH68p9908N6V HCKBkBlE*>:ȄgE̲Jc!P;?VBBvR1#?$<9'?!3A/b67#!53&'##535!6=#.'#'67#5353353&'73533533673#3!3#!!.''>7e_,B5 I#;/a)uxIKQ>!6D\D6&@K{im*-rk!>K@I<DTX^%67'67673533#5!!#5&'#'67#%##"/3265#53537&#3!535#535335#7&T7B `-EoHZT-8TE,%H 5*V&l8;&WH! J@:'@&0Me>DD6 A0C SaNCeyU&F[ÄgEHD^.E4DPZ??ZAQQKqq[EYY4 ]#3=#35'5#5#;5#735#3#3!!!#5!5!5!535#.'#'67#5353335#53533533#3ڏFD -?FggF4O6F- 3 ,G8*V&lpGTxMM\smmAssAm(gmSSmAs"$+)+( 0>4q4?TK$A &O;J5 ]5#5#67#7%35'35#675#3673#&''67&''67##5'>75&'#'67#5353335#5!#M.CB, +b*l/C "G-T#P35X2e63 . &Iv ( . >G8*V&lpGZOH+&jj>m$ A@ $% F&L)bfbf8 s ;G $%F&}CIo-NÄgEy/4;D7?; %-98 8 59'7 478:3 + ?8D;,>Y$/19A6;9 *7 <6A:)>Y$9"m:>7#"&=#'>7#5!##675#535#5!5#53533#!#3#3!535#535#3#67'&'#'67#5353*J %%$d-bgg }CR )" 1GffkN q``qkccbb190 (I#;/a)uxI +.* !J=AXH==x(BjZ c9D=O ?0A %>Y3?0ks0& U)A %I8|fE' "&Lv67!5#323!326=#"&=#'65#35#5!3'67##"/326='67#53&'7#5'#&'#'67#53533#5!#"/#z\LE1 : {5 @3ww:^dB[%O %(91C %D@f::;);P:(,6o*9 Ob=:*E;)#+QBp |fEBB*2U):'KY&'!5!67#5!6767&'!5&'#'67#53533#67&'76753&'#5!#3E--C2B%":$61>;070D8=aQN^7 =H!2.Y%knHd_# WC692272$ 56 RY[Pv:QEFA?8?3$F@*=B%BF3)A>[$#V> / '#|fEBBRO;F=5+/<=JBBIIBB/ %.&'%767&'&'&'7'!3&'%767&'%3533.'76767&53767677&'3#67327#"&''67&'#&''>7#5&'#'67# (* $\/!',)0(:  m"G7.!$4nHN2(<(1"2*5F%)<'-,.;,-4:Q[+#5+6(>G"Q&WtoV%CaVC&O74@^"H#4*Z%lP#A; '6q{_?1I/SC`02d4-8A 0B"'C?QM*RR:)FG4PHG[VHa} )&?81,4#C5& 68C,>'DJPK+;&DL/2S>+RydE7 d67##373567#5'2654''67&''67&'&'#'67#5353367!3#67.'###"/ H`]U6?soTq0/I#;/a)uxIYf5K %>82;V$3(!6}ykEB%c @ IM5G*O?sIAK?T^EA<"&*R67!#!#!#!!5!5#5!5735+3=#3735!#3!5#&'#'67#535333&'#5!53zI"n"N띝N `lK:77+I#;/a)uxIf` N80=58x!6>:AA:>68???q====L?<1=<%7o ykEBA85?X; '7FJ!5!67##!#5#&'#'67#5353%!!!535!5!53!53&'+5!#35!{  N5NMB3+I'8.a)uxI$Q$]  N!U gH&.,,BJ*qeEB7=>>=AJJC%!#CZZ '  $)EIM35#35%35#35##5!35#35%35#35##5!3533#!!3&'#'67#75!5!aM:MMNpGWO31'G7*V&l^D0]//-0/b4a55-45gSCu8@5e7ÀkE̔AAAA @ /7<@#!%!5!#5!'35#!5%!5!#&'#'67#535375!53!!!#5!IKHFC_uuL'A1 1I'8.a)uxI>*P!>MP^@7ϩ).77/8|B_0"eEBK;AA;rg== D i%67#7%35'35#"/3267#'>5#&'#'67#53533#535+3673673#&''67&''#3#36+)u,N>"m6?9?3G 9)W&kpGTR)94Ii M ?#C "G.P"Q03S1`22*u%6 II7DAEpd7&|0< @DJhn67#!5!+!!&'#535333&'#5!53!#3!5#.'#'6%!!67733:>7#".5%7&uK"B=,7SpuxIc`PgR i6! I#;/auB$;$EGM" B373./.^9C.9-?);+9Az"1<.9<B:22AXXA5/@8%8W ykE0;|OckRS7  )+)  " Z!d`` 9y3&'353#&'#'67#5353&''6767##367#33'67&'767!5'673&'#&'!53!!#"/326=!67.'XOOS|M?V1%J'8.a)uxJ1/? 0# KG?$NKFL&UQ8%I!_=8R2%:&D(C6LYbH26bC$ WP7CD6KbC$ /@a eECH:m#AU}T.+#/+((+?PpvO?!.,-.,1 T+A+-; $  KRV_cgk67#!!'>='#&'#'67#5353367!3#3267"#"&=#'67#!!53#5!#55!5!5! % GB,$*QS - !J$90`*uxJSk8I*# %(H %!%O&. tT}%ZMMM4F*9 hp"-#7ZU}gDBZm <";=  ' T8V9P "@s''&2200S002;Q35#35##5'6=!!!67##53&'#53533#3#3##5#533!!&'#5'67!5!D$3IYE tIN4oNPP؎}buM?7y89F+>>;6>??>7:>G  HNTX3&'!&'!#3735!5!#!#53.'!##&'#'67#53533'67&%'65!>))pA8%8AxCX|NOOCK b33I#;/a)uxIC80!9".:494L+!!L((dL(f(siPD   39ykECPHKMaOECKK4 V&'#3%#3'67+5&'#'67#53533673&'!5'#5!#67+!#&''&'N24J$rr%rr,|'H5 :I%>/c'u}I^xU^MPZB chC>[Ee ZO/BR&B(40A1E7:B9f+$#ʄqEC#`dH70?FAZ&_* 7B$4%N2+x@EBf) lԋoEkyy@)G0gCFf%35#3!535!5!53!!&'#'67#53533!'67!5#5!5#5!##5##&'7326=#535!5!#3##"/}} S3G!:*Y%krG^,>J#> ֟]F}H(773));6607lO1441:77:7)O=ԋoEB?858!'%5R/1331 -E@$9C "V81::18m7!3AE[!5!67#!5!!5!!5'67#5#5!53!##!#&'7#'67#'675#%3533#&'#'67#)iL|!+a@ZANA-eȉb j^\h+>@qH][/A3,H!9+Y%j2)6.-^--1,?GG,H64<:A54,I1;-> @*{'CBl-w/ԏkE< _ew35#5!3!5!5#;5#'"&=33:>775!67'67#5#&'#'67#535335!53!#&'"7&'75!!#"/326=hhA1-vxhhhxl,AA%% 35 8#E3 2V1;35G!:*Y&lrGVP+!7-2 .&;J!I>h"GaW \\99\\\e5pY #"Id bK*4 n- ًoEBaNN7((^J P)$4$+ >>II%B(? ,LPT35#5#5!3!535#!5#;5#3533#!#3673#'#3!#5&'#'67#%#353~WW.2;IbbaaEpGOG4$MjXE"E  *4XtH)G7*V&lWWJMMAAƪCvX=J`x ./CQEO\20I#;/a)uxI@@s??5?a!9F^OT=9-8?v2* .:@4?5??,60)Dl 9F^OT=9-8?v)0 ' B0~ykEB'  $^#535#35'35#5#!&'7'!5%!5%!5!%#3!#.'#'67#53533#!#3+3!3'67+Fxyy;zYIzLe***tvYFK+! I#;/a)uxIWS V oGx/aD>H//1111<#-"(%%W&&Q&&*&-!%,=1.8W ykECC=/6M5#%K k67##3735%5#!35#!5!!5;&'73&'73&'7.'#5!#'7.'#'67#5353367!3!#5'#6#Fc;6 #XD r@h 29>72McM- I#;/a)uxI7h7H 0#H@ T IIII5EEE =s@@024.",,79 AH0,,7 3SykECWm ?"'' ' :Y35#35%5##335#5#%#"/##5367+5!#33265#;3533#;##.'#'67#rU1#FH 7&'#'67#53533673673#3#"/3265#B"D>((8\Ij(*9 oMAK@@2? * #G7*U&kpGJFG 4G ݘc-L+!9 (]J;5^^:X e?).(e !$:v00?A))PUkEC^k $7#677&'7'67&''67&''&'#&'#'67#53533'&5767677&'767#53>7#'6733#67&'##"/32654'6. 2/\! 9 87P?[c< 3= $PF9/'H"1+V#otH'* -!?/7/<9O_ 6?0wIJ Fz /''#2%6U" &-%'<. L5? FU38 TGb h;Kk&K3:3J/ i*g;bDC="YOkg * Ou ,Y[o".A3  tAO=)9(W4pR9OASZ<A= a ="(-35'35#&'#6&'!5+&%67&'7&'7676753673767677&''#!!&'#5'67!5&'#'67#53533.77.qqqqM##z ]0(47/5*&6$) *6M J Z!7",$"6'&8K)aeOme$G 4*W$hkG- *$pp>e4R[*!>-<91A I82%]$G<9 +T;fS$]O6&(-3JE_Z 'P\QZ p ACnbBcpv^B_qBd4piEB1Ia8` A#'+jnw3267'67!7#5!%#3735'35#5#35#;5#"&='75#'67&'#'67#53533#6=353!!!"#33!53=!RZT9 3%G㐐EWWWWI5fj&+A= $%H!9+Y%jqHQM%8OC# >1v+&0  ($*34_1111'1nnnnn[2 4 <Ǩf >^ԏkEBBU;EҒ.:*<( K1??i6 ' 1z35'35'35#35'35'35#67!!#&'7#'67+5367&'7#'&'#'67#53533#67+!#.'!#&''67&''67=NL2fWU?*$3GA-L>)FA,P28G!:*Y%krGa^>&=.GR8)#e1Pa{%jy7^7B%11a111111a11111I' &(42&*(2"5)<")*(3'-ԋoEBB[.g"&3 >F~~bdegh 'CUdN #C a"12@ <=980Q9C4Y) *j$͇lEBBGd)A > ,8:899998:8:=>3@Y"55(?5(8<4>3@=,=$!B\BykEBBc315?<<< ,@ -5KQ35##5!%5#;5#35'35#&'7#6'67!#&67&'##"/326=!5!537&3533#&'#5'67#&''67&'&'#5'67#5353367&'767#7M>&#1[ ,VKAB)*(+B=b5-\M$  M4U374 lMe)E*=&C"6'>'V&+0<,"-;?-72./$,'C&=*E)eMl(,$@,=8/:"(/@&#$5g2555))()!Y +>1@>44v*?<(=99=KG4CK21*7:! #'+09)KC4GK=997 ($ %'#=2 !'67!'6>=3.'6o;^4Pޱ45xw1 45E{,g77B*rs)&0 &,67!'67!>=3.'&'7678E 2_>V/8WaKn,-mPl0pMY8[ 12Du$gp7󋏏7B*mn)hNU3VLp}+w3$5!###'667%!'67#'6.''>=3.]K*,;/$ΒyH+3E0)==_K&'PoKF \=a)W6E,;+DD{ok*L&ij$L4钅H2@&'6767!'67!.''!#!!767&''!>=3"7UP_'HG2E/+=K$'TN#N<'J7I=1?9AL2lKyCT\Ơ(FDzliK&gj#?@4B4KFbiv_d>hLU/M.7㊅2$F!&'35#%67!'67#'677&3.'>=3.''!#'6K?=14_'G-2E/+=Bm'`7{:XG9FGfs$atKcJ~%&QIyVQec䧠(FDzlijjBc{ (hw*x8g?;ރ6K&gi$56fJl:a!'67#'6.''#"/26=####5'67#5367'67&'767&'3!3533>=3jI,1E/*<>^H%$G/ fH[F"Q)cx ?>a]LI!_YQF0=IDE&VL<7G \HP`K}2(FDulg*K%fi#DBT)EmtC)'?.*9)21C0;0+19@. .C=3TT+<Ӂ,2 /5L35'35'35#%!'67!'6!53#53533533#3'6?>=3.''&I;1E/*<>^#HCCIFAAE:6g3a9,*[qK}eH%$G'(Bnnkk:g(FDulg*@@AYYYYALJ#c[.U;%4F77K%fi#7H"3%GMS&'%!'67!'6>=3.'#67'67#535#5'673.'#7&67RJbwsKwmP~"%T?W [Zl& l]I^]<<"<]>PLBB-D{k_*>㐎>G*dd*A?J+C2Az-!JTpa?= 5zMxa0cJ [U"2 04FLR!'67!'6.''>=3#3!535#535335!##"/326=#5'677&XH>1E/)>=^L&&KfK_IRy?&P5̕@>7?%@23;Dulk*K&gj#K3擅aT==T?HH??HA4CAqp a~D[S-2 #4DU35##!'35###"/+5!326=!5##/326=!5!'67#'6.''>=3wwEwwI <?E  I ?hJ  =I#1D-*<>^Ez$ rAXkKxj?7h;?Q*6+?f?R*B+?(FDuhg*K$de#K3䕅,3 N_35##3735!'67#'#3#3#&''67#53=#535+535#53533533#3653.''>ހooIsH,2F0)<.Ŵ/Y![;@!#ƵmEPddHHggPQdKriLw!!tGbpdA{llll +DDxog&4?<AE)=)U{7@9fAG*ba)G=F2 *D35##33#3'#37#3!'67#'+5!6.''!#!!!>=3,9S53333I,1E/*<9@YH%$G I}_TfK}i ݡ(FDulg&ϦK%fi#-\BV;ׅ@ `%#3'3535#!'67#'6.''!#'67#5367#'67!#3!3673#3#3#3>=3(}}}}}}}I,1E/*<>^H%$G K$c< J%AI.D .'o@|}}}}RcK}DDDH(FDulg*K%fi#'5p"G_p?44*.Xw&!A71?-<-/)#?D5D5H<ՃA@k767#5#"&='>=3533#3'326767!'67#'3#7>=3.'''675#53353733* GMb&M")7"L 24I?G G 1D,%5/8-=/ )VV_3,ZES7:5A;5"30=Duhi"6:?*;5L#ehI.?J  <3!!!!5333OOtMD>FFlF!!!!!!5333!Z4,rMzDDDDE !6".53673267"'>736733#67.2.L~1NZ!G ,$  - H07Mb\K $)%L5T>C7AJ&-B{ ECX<25;'6736733#675!5!&533#32>7#".'?&G 8Ik MÆc',K "$% F^491( _/PH0ICCt՗CA?AABaqr`BjsS#UJ(^ւ1:E0E<1#)/!#"/326=!535333!!'677&$7w&Qnf% iMPJ16<*E4@-c.XJW'SJcyBB<>++o$%HF%S=!&5!5353353!!##"/3265#5'677&q?x>"<#E+\2 F 6%!Q$\q+X4J(/8'!۞MPJ0.D7uC?A=)? ) @?) >m`|jZ\8Uȩi0?5;>7B>yrWgd 8H67#535#'6!#3#&'#5'67#535!3#&'#5!535333!!Z/g}Y8N@4u+X7H?`'=|lT,9,3H.JKL WZ=M:5*?M=[c5MPWO/kf=MM=.D+?!PJ@@%b><67!5!!!'67&''>7qe,#WpT7#TU.u-q2$M\BBA7AE@D\OV88Ps*:A'67&''>7#5!!67327>7#"'.5#3#6Ѩ,cH\+-*Nsj|% " ""-F )1/,=GVI/J:L8>=.7StBB6d=l>'53;> !AGJ>5199d>4J67##"/32>7#'67767!5!&''67&5!#3'67&''67%">,*D\O3(R@iN<;ea6(,AHHm20(OLJgBBYC0@1UM9B/BJ BB6G>N5Z+5?,3A346=#'#367#5!67!!.''>7#'67&''67[hn">mt*a&'e(vn*M7Q0n 0 06Gii>6(WB-FD$DA=3om4=A?5Z+5?,3/(.4<67#75!#3'67&''67%'673&67$76$7s6i(J9C 0n e%gI{x|5 5%p5t7egFB#WBB6G>M7Z,,8036g>clCmQ2V`1e1i4o56"&<#!#567#7&''676767&5!5!#3'67&''67KL">BXBC&B9G0D/4/*M7Q0n !6S6Rii>6(=!'5% D [BB6G>N5Z+5?,3:I35#3567#75!#367!#"/32>7!;##''67&''67Js6iY)K ?^C -G' }(J9C 0n yx}}egFB#WBB6G4 ,7a6 D"5%TF$%J7Z,,803'G67#5!#3673533#3#.'#'>7#535#''67&''67!EA"BlLD Br%M9Zq. &7*J:J0n 4bm6>-\BB6G> );uuCDC3LKP1D@UDdFJ5Z-1?,32[67#5!#3'67&''67%37&'777767327#"''67&''7&''7&''7&&E*J:J0n MD@!MX,  G74FT7>0%lDۗ 4bm6>-\BB6G>M5Z-1?,3iI" >!/Aa ?3@A721=*J:<4dZ[1A4V;PD@3@%GC$< =A67#7%67!#!#553&'#5#3'67&''67#5!3533#35!s6( [MNA"C(J9C 0n wiPG$7egFB#h_k^l +|+Bgc%6G>M7Z,,803B&bbArXB3 $;?G67#%35'35#%5!#3'67&''675!>73#3!#3675#!!# o>M |*DA62g M K_ ތM=bdF/(VV8SBB@=>N7\3#@)3A6 !+A=:YYA1 #'+/E67#7!5!#5!#!#&'7#'67'!5%!5%!5!%5!#3'67&''67s6/;MVǑe#aa^YzzzMi(J9C 0n 7egFB#Q?6A;@<6.K2?-?IIJJ6HBB6G>M7Z,,803   $(:P#5!3#5!35'35##3=#67#5#!5###5!5!5+!+5!#3'67&''67GnF,}Do>pssO#HJeH |*DA62gA\\7X\XX:bdF/(aaaaAABcBXBB@=>N7\3#@)3A e67#!5!67#!5!"!5!!5'67#5#5353!##!#&'7#'67#''67&''67#5!#3675#[1AgIw ww<,Z4EEO D(`ȉb j^[! ^+|?,>1dj'w  zg,7A_cG2!#2)4.-^--4-<GG,G74<:A54,I1;.=2A5\$+6-2BBK7>/?(z'D2 y%>7+3567#%&'7'67#5!#335#53533#3&533#67327#"''67&'#3#3#3#67'675#535#535#'67&'% 7WS34:==10\` zvvHxxH / A-L =F<09M:f?&i\\ccccF N?ffff_zU*p;1.8 ,CWjK+'fSXat3BB7Ki>]]>i{~<~bxgvB4.BV6979:9G =C.B Q;D;A?5Y,$02 +1%>7#35#67#&''&''676&'7'67#5!#3!&533#67327#"''67&'#3#3#3#67'675#535#535#'67&'% 7WR^S3tB )-. 9BC %.N4:==10\` zvH / A-L =F<09M:f?&i\\ccccF N?ffff_zU*p;1.8 CCWjK+'$&1>25#4&,(0)&Uz..-KufSXat3BB7K{~<~bxgvB4.BV6979:9G =C.B Q;D;A?5Y,$0B "9'>=!3:>7"#"&=767!5!&''67&p.{e "!! F 2*)C&g<[Wz[׬ܝI9%m^A $% &(. A,aLOtBB\D'B/TU.B%DNH !S67&'>=!3267#"&=767!5!&''!#!!767&''!67&Q;:{18.)A '%'.>8VR0:`_oxpf!N#N<'J6I=1<<@M2:nM\ ]HL5%le? Z201 I%VJLhBBZG.>/UM7>84B4KFbix_d=bQV/M1)9S&9P3#3#67#5'6767%'>=!3267#"&=767!5!&''67&zvM . 5#+?1!,C+)*-;7OT9Adb{vsoNg>>$@'AK9B1L7&jh:Z201 C(RCGdBBWH4@4ZR=!3267#"&=767!5!&''67&267#'>567!!!#"/6822&)A '%'.?;WR2<_`ixlb!]`  0B '(28+cP IMe)5'ig? Z201 J%[ILlBBYE,>0PJ6?,DU^mp+MH/A&0 B!'6J`'>=!32>7#"&=767!5!&''67&767&''67&33#&'#'67#53d,?2A+)*->9WS09aaqpn bW"/ZQE.=/FH"1-Ebw"gXTLKTL.3IK;])};L7&kg:!#*201 E(SIKgBB[F0@3SP6A-GK809AE%IC79&4P9=1F:rDZb/IU!o[8yD&'5Tk#3!535#53533!#5!#'>=!3267#"&=7'>=!3267#"&=#767!5!&''67&㴟xIOFF7:96-  B 6#7-%, C/N>,NM09^\gtfd$^Ld>>dAPPޤff;a+2'o`_ "d5342'naD Z$), !PLJeBB[L-=0WN9=2HL  *FLi!5#37357'>=!3267#"&=#3!'>53!!3533533#'67&'767&'767!5!&''@ICY7( "A #""0*H,2 HW?CYD999O+@) ,;+!eRU8>1TM/8\^a pe_xx[,43'jcD Z110 b}Azh@T"_ SSSS>?(Uci1RE@M(?Q`!TPLkBB]I*=/QJ620&(G^3!673#!5#535##67'675#53537'>=!3267#"&=#767!5!&''67&%k`R;Gddddr̳ob^eK:'# A/e@/NN,7]Wj"qe_!TOe-BY>:R3'>0:?k%?HH?Q?6IC Z$), S/+9/F  +RVZ#5!'35##3'>=!3267#"&=##!!!67&'+3767!5!&''#37#3@Ԕ,98-$# A #!"0w.5I}`eMV6l5<5PN1|8_Uhu_]3333367#67#367#67#5367!3#3##"/3267465!'67 X  bt t{ r{ 5I3]Z5( K'sll||qBBMA?)A14( 28>!67%!67!5367!3#3##"/3267465!'67%&'77&% t t{ r{ 5I3]Z5( K'-_t+z+`-^yqBsBBMA?)A14۔7QF8J8OS7S(= J367#67#67#!367#%5367'67!!!3#3##"/3267465!'67 ^ ! * *3V%367#67#67#!367#%5367!3#3##"/3267465!'67!!!!!5!5!5!5!5!53 [    ,   2IYb .N% JrJsT"9+00+F33LK33Af0QEA42>8@ ;m|8>>:?<>CC"2%'6733#6727>7#"'.53676>N(/H 2+7%?O1 4W&B E}#/qB?JL&&-YJ5T8!  #F#!%5##3735#35'6733#672>765#"'.5367NrLD/OwX H <"%8=O *|rjj7<UO *"QEBAFA-q--E8E 6:A   # DCD HD+#C#'D(12:5/,:@FL"&='%5'75'$%%%3267"3#"/326567%&'7$7XH*mc%<->O *"QGP%Rnf% Y|BDJ)Sv=m]N/I5B;N9F 9f><#H,:,O,:-- C#xq\*E1`~iwq)eR5X2@ G#5!%5!53!5!5!#5!"&='%5'75'$7%%3267"OzP$X,LlI*8pr <0? K -"I;ⴴ:EE:MMw}/E 7 9 5 16$5 2597. 7 'H:djp".='75'75'6777;:>7#'#53533&'73#67&'#"/3267&67O]C x{x{25=`1E?.*8 M # C@7*J94.@@!;$@:8APH^.V%AK@" 2P>3>~]0WH ("DCDBD!CE #(*?kk,!+&5?1RF=_%lH{V:F)?.PR-RQn1k^';agm'>=3.''67%'67'>=3+".='75'75'6777;267&''67!'67}uMvZ$$b5E8xA=D yMjr + !#AC6O]C x{x{25=`1E?A?%]5E8{A>D C$jKKh&CgEEgN]bSIYbyC%jllf$"" ("DCDBD!CE%7}EgO[dRIYb)#["&='75'75'67.='%5'%5'$%%%3267#"'773:>7!"&='75'75'67773:>7G_*E@ ΐ -p} P -}: NSQR* TW6 H+-^*8M ݘM^6 H+-M36;D7@; %-99 8 49'7 47993 , ?8D;,""" 339A6<9 ,8 <6A:(""" 2#'&''673 %!!327#"'!67 [ Syz2%1%FB2P+ģb{`O$BFB|iDv!5.'!5!&'!#"&'!67'67!!!!326;FB2F. B,&r)%2?Hs˨2BI#B DCC?-<!5!&'#3533#327#"&'67!#3#327#"&'#67^MKoG7QSLe5}8 +( D 3-8iZh7?HEH3E (#K!BBEC[Ch»+-G 67!!75!!327#"&'!-?I \=YK]h%+D%"=j%'AeC@@dq_ (-G 4#"&'!5!325!67!!767&''67&D%"?ih%+|K?I [<[9&nk\@7EUPk/d_ ` (?s] ??'2Ai7;PMM+RH?b1\JrD:?hG-G !,0B7&'67&'#5'67#5!53!#67!!75!#"'!5!32w9;4:1V8A,:)g/hI\,YId?IZ?ZDKD%"?hy%+i"@G"CC"AE B3oGbH4BQ<:?4@ha<< (=(v_!'&.'#"/326536%5!'>7l9nu/qA(N'pi!'N"A|:`%y-f&,bv9SVT+D)gm]DD\;N{3 7&&'7'67p,vm-b5l+kc9@I:DMJ:LK /$!'*&'75!'67.'#"/3265367;am.ld`W-Vr/qA(N'pi!'N$1o9q{UJ9IXDD<9SjT+D)fVa,k!4"-7&!5!67.'#"/3265!'>7 c%>wl9nz2r?(N'pi!'g`,v.j+BCBAYBqgZ,cq7!327>7#"'.5!#"/`-[I.F(Qb,jK?I{ ;7I3=?! 8Fwq6! D 0 #7&&'7'67!##"/3265!_-VM.K-Qb-eO?I{I{=!3267#"&57&b-[I.F(Mg-jK;]=]8"@=446 G"]B @p[BX6ED6BJM6OG)>A6zľ0% J]"E/)03 (7&&'7'6?67!'6!'67&_-^L.V1Qb-eO?I{a7!'67_-VM.K-Qb-eO?I{7u"O$;ui:j{uoD&G@Tbb'y d(0AA??=*JEA?`-cCmDD4ZS+B1CCb>D2O0 7&&'7'67!!5!!5!_-VM.K-Qb-eO?I{7#3:>7#".5'7V-[I.F(Qb,jK;f>a I5-)7 J 'J@AC>@6ED6BJM6OG)FF^@LL@]"i#\o"l0 &,2867#'67+5!3&''67&''6%7&&'7670c1:D(%;s^r#}at'pr;"9d]-jQ-X3Vn,qT^=A;er3#{DD[TAdD?IjoE;Bm/\$6FC7HLK6MI6 27&&'7'67%767!'6!!!&''67&I-[I.F(Mg-jK:d>`:I5Xf2e6oU:z_jq fi6ED6BJM6OG)kw5<2'BAΊ\8B;gh:C7^{/ 335#%7&&'7'67333!.''$7!5!=#53-[I.F(Mg-jK;f?c;lOA&h)+p'(*|~6ED6BJM6OG)Ce7@,^_+@kCD$G  27&&'7'6?'67!!5!27#"&'!5!S-[I.F(Mg-jK;f?c;e>}@G A=A$#6Xx 6ED6BJM6OG)(%'A%@@ )Am[3 >7&&'7'67"/32>=#'>7#5'67!&'#53&'b-gB.L)Mg-jK=]8@;/nN>)&/x':u7GJM6OG )D-M:CȜ3.-6frD̙V&m4% 39?7&&'7'67767%"#".5332677&7&N-dU-R%Mq-hV>a7N-[I.F(Mg-jK;f?c;C"u@|/+m)+p'6ED6BJM6OG)cD DSD(D?=4qp5=?+228>D3267"#".5'6=##353!#5#%7&&'7'67=RJ *#00( &0KO,K-VM.K-Qb-eO:_<]8O#D9=N#/ cF<_0+ tt+*:6AH6FNI6KK)#' L7&&'7'67#".=##33'67536733#3:>Q-[I.F(Qb,jK;f>a<K /,'8<0JJs rOovK*1 6ED6BNI6OG)R39=  !sPEyn$D' 8&' '7&&'7'67!&'#'67!5!53N-[I.F(Mg-jK;f?c;X.[MX5Y5M6ED6BJM6OG)PEG(;E!1 *57!5!#!#=!265367.'#"/5!'>7PPF O#Csk:h}vrD&G@Tb(| g)g+U+dd*=8DG=b-`EjCD5ZS+ACCb>D2O!'%)%##!53!#5###7&&'7'67%#HKNMN-VM.K-Qb-eO;f>a<@й0@w 6AH6FNI6KK)  ' %+27&&'7672653#"/'677&$N-[I.F(Mg-jKc;B;f O!=&WH/$[EU'nFN3G4CJ6ED6BJM6OG6}+FT+EԹ=+ 0 !7&&'767%333#3!533_-VM.K-Qb-eOnG>DsELSvK6AH6FNI6KK7 \ D:FFp 2I7&&'7'67'>=!3:>7#"&=767!5!&''67&N-\N.J&Mg-jK;f?c;/O=k  B-*,55!#./!5!7&&'7'67 x@A7<0a"j-[I.F(Mg-jK;]=]8߶*c8TC6ED6BJM6OG)3 %!5!%7&&'7'675!#5!'>5!}-[I.F(Mg-jK;]=]8nj!O f>5,J6ED6BJM6OG)FF <~3E1 /7&&'7'67!!#&'#'67#5!5!5!53!N-[I.F(Mg-jK;f?c; X-ZMg/l M6ED6BJM6OG)VBDhABC3 %%!5!5%!5!%7&&'767%!53!3\\\)h]*U4[w)u^wK>I{=TmMA9?K8ELK9HO7 B!7 A7&&'7'67!#5!#5!53".53673:>7P-VM.K-Qb-eO;f>a<KKNADAM'- @4A 9>E" * -%#!%3#%7&&'7'67!5!##"/326Lh/ZB0C1N^.^N 4W?U3WO(S*Ps>0GB1CLK4KL'DDvV)E 'AEKQW%32>7#'35+365735#5#53533533#3#"'##'>7#'67!35#%7&&'7'677* k\ kKiiKKiK &-JKqvm1denI#ii`-[I.F+Qb-eO;f>a<6)KKA5AM5CRRRR펙*ILz9>2f7%S6ED6BNI6KK)$/ !'-#!53!#5'35#!35#3735%7&&'767KKLK/ZB0C*RY-^NU3B4W@ԭ,@A ߬0GB1CPG4KL8$ #)#!#5##33#37&&'767K[MI/ZB0C*RY-^NU3B4W6R6!Ax!70GB1CPG4KL8)6 -1#!#57&&'7'677&''676767&5!LN"-[I.F(Mg-jK;f?c;B`TC( 8R5#'>7#5!5!LO-[I.F(Mg-jK;f?c;PFWN7l%\|P,* 2f26ED6BJM6OG)yDlju,<'aB1!1 )%!!7&&'7'6?35!5!53!!3#5!#s-VM.K-Qb-eO;f>a<P!NsL46AH6FNI6KK)wDD'??(1 %%!!7&&'7673!!!#5!#W-[I.F(Qb,jKwK>I{N1MWM+'6ED6BNI6OG7 D@@) %)7&&'7'677#5!#'67!&!X-[I.F(Mg-jK;f?c;IG;RP7+!#3267#"&5#l,`Q-U9Ul,oSj@B@o/sBL.14H %=^.k "6CF7JLK6MI7<<p# ;+/ !CK 13%7&&'7'6733533#!#!!##53533v7-[I.F(Mg-jK>b_H>>M4?Zz*'*58!MK=]2Z?W>>9^T*D(8#'%!5!#367!#57&&'7'67%5!TM MN -[I.F(Qb,jK?I{77&7&Rg-dUZMq-hV>aa<EfKF,dD8#O/:==6AH6FNI6KK)),. DDBssBDu&'-39%>5##"&5#'!#;3#5!#7&&'7'67y oTG*b .32|,@KM#K/]B0E(Jd/aN7e?a7!%@0pmh#(FoC950--R4LC4GLQ5NO(! !'-7&&'7'67!!!#!5!!5!'6%7&P-VM.K-Qb-eO7e>];"N"dD%SAOEC'MBM6AH6FNI6KK)uEPEByyk{z$ 57&&'7'673#"&''67367!535#' 73S-[I.F(Mg-jK;f?c;55*5$7!#&'#&[,gN-U7Vk.lW>j;@;$Q[ BH;892[O"GAMd6FD8JLK6IM$<%6f/Q6F/ODD;=>8+!=G T7&&'7'673:>7*.5!5#5!32>7!'>7!#"/K-VM.K-Qb-eO;f>a<./)@(  L -%H?j:A! 6B. c6O:3WK !$1N6AH6FNI6KK)B 6$'+2:#&% A1d0Bn ?"=A1 @#37&&'7'6?67!'>5!53!'67#3&''67&[-[I.F(Mg-jK:d>`:B5V[8om7/,M+>#Bljvqh\6ED6BJM6OG)^ZdԺ;\ޠaaCLF 8:AuV+B-cb.B'Za!9 )7&&'7'67!!5!537&5!63P-VM.K-Qb-eO;f>a< OJ>-K/pk8M6i6AH6FNI6KK)DD F6F! 8>DJ#'>5!%!5!3:62>7"#".53677&&'767-4G1,NK%n ,I !A55;=;K"Y-gR-R/Vm-rQd@Bv<}6FF7FML6OI9!4 +7&&'7'677&!!5!#535!5!!3#P-VM.K-Qb-eO;f>a<'"d*6AH6FNI6KK)D!IABDDDCDDC3!%!5!!5!#!#57&&'7675!wwKL)h]*U4[w)u^wK>I{ W6R69?K8ELK9HO7 ^' 17&&'7'6?'67%7&!#!5!5!5!3!!N-[I.F(Mg-jK;f?c;AV/E.!BQ;D:N!N6ED6BJM6OG)#p qDDCYC'-39!5!&'#327#"&'#67'67!#37&&'7'67[ 4TF 8+A|#p{$7? ,[I-L0Mg,jK;g=d:7EBCmĹ-BL B BEC6ED7HJM6OG+,==KQW3&'#'67#5!67#5!67!5!67!!!#!#&''67&'!&'%3#"/3265''67&'7i[ ! _Nf  \TI;T0GE&$$&;C5;@L0M"F&ES! ,3.HEk=1.9,,@%(2@'191.=jCH+B7=40@'11'/G.@4BF!B =a+A,[>\-=,/ 6#36533#%7&&'7'67333!.''$7!533SM-[I.F(Mg-jK;f?c;vM;3%h'+q&7Cg   ~6ED6BJM6OG)Cg@-__,@eCM4 2=7&&'7'677&265!5!67&#"'5!'>7D-[I.F(Mg-jK:d>`:_F O0WI;Tg[x1c#A%s Z/Nz 6ED6BJM6OG)B@A@$*B`o[x%dr;S,AAhM?@W"8 57&&'7'67!!#5!5!5!5!5!53&'73673!!!L/UF0G.RY-^N4W?U3"N,0C+(1"F*0CF1GPG4KL'6DDAC3PFRLK?FCA  .4:@%>=#7#5!#3#5!#3735#3'!5#"&=%7&&'7'67|J0zxM'MDZÀ&>Z&j9!/ZB0C1N^.^N 4W?U31dhTAAtc22tttC5U}:.*H0GB1CLK4KL'"-17=C%#"&5#'>7#5!5#'673533#!#3267&&'767}F'(&a2_ l 8#/GX*I N76/UF0G.RY/^NU3D4WBJA$J9iC*EYJ!41BE)30CF1GPG3KL7#' 97&&'7'67%!&'#'>7!5!5#'67353!!L/UF/C*RY.^N 4W@U3%Z%^N4[%h,1*4Ca)I O0CF1CPG3KL%DTA?yhS8?ASDeH% 9'uuC!6 )-39?67!&'#'67&''67!&'#5%!5!7&&'7'67nGOB`n3K(|QL(9-QJ{Uym*Mj-VM.K-Qb-eO;f>a<JbW4>A15tE.F;Q*+5p$&@~V@6E 5?6AH6FNI6KK) -1%#!'35#7&&'7'67!#!#"/3265!GC./ZB0C1N^.^N 4W?U3K$:ld ?qP<h0GB1CLK4KL'WD*C ??9 R35#3=#7&&'7'67!!#"/3267#.''>7#'6735#535!5!53!!/]B0E,Jd/aN4aA_2. #4, ~n*+s K&'O9ZXw4LC4GLQ5NO&JXdV<?V)A$RQ%A)V)(Z=HAPPAH / A35'35%7&&'7'67!#5!5!5!5!5!5!5!5!5!5!5333##!!/ZB0C1N^.^N 4W?U3NO  O N::ff__H0GB1CLK4KL'AA^AVNNAVA^'2 8>DJ35!3&'735!#3&67327#"''67&'##3&53!#7&&'7'67 7 ?ੲF+74W3, B 93YIգIN/UF0G.RY-^N4W?U3B9{{G40Hxx9\/5,@&'3&'3=/PF0H8Fa.aF/M?K.A3A-ILP:JC'@+IN'@+K0BG1IHO4OH& qvM1HGNV!: >35'35#%7&&'7'6?'67!#"/32>7!!!#-VM.K-Qb-eO:_<]8X8t5M TmJ @nI"=}}TF7' 9?E7&&'7'67"#"&5#'>7#5!3!#326&''67N-[I.F(Mg-jK;f?c;K $c0ss-yc"O*5=F;BA?CM1G/6ED6BJM6OG)55H, !CHB;9CmC# ;vly~! ,07&&'7'67 7!!3#5!#35!5!5#5!P-VM.K-Qb-eO;f>a<1tMKqz6AH6FNI6KK)MD$Cm55C )% $(,#!#57&&'7'67&''675!5!K"N-[I.F(Mg-jK;f?c;~ w5`56ED6BJM6OG)pHwvHtAA\%+17&##'6= %$7677&&'7'67-/d7<M7744A50 EdC5.E-[I.L.Mg-jK;f=c; r?}A`.d!:C1f4@gZ190J4ED5HJM4OG); -59Q7&&'7'677&''6767#5!53!!67&3'>333267"#"&5F-VM.K-Qb-eO:d>`:@iT>#$L1/P'$8,K`e/XQKuK " B ? 6AH6FNI6KK)P"yz%.%C^vBYYB]r 9ò790\ 0+.:# /> FJ67#35#7&&'7'6?'67!33##5##"/26=!5!5!5!5#5#3v54$1 /UF0G5RY-^N 4W?U3s2RL % A77H#G%s_H<묬S-511y0CF1GPG4KL'6q (@&yAx* x'2 O7&&'7'6737&'777%67327#"''67&''%&''7&''%&Q/UF0G.RY-^N4W?U3pNDGNk-  N30BW;ANpH 0CF1GPG4KL'E >#+AG'==8A4533.A8=5_1C3ZEEE5B@ dC" ' 3H7&&'7'67'675#53533#67#"/326='667!###@/UB1H:Fa.aF0Q>K2P0BuuKoo96 4F=C3 6>F8o+UM =0FC1IHO4OH'0F CCDU)A,/j6O4D- F7 G`%67!7&&'7'677&'267#"&='67'>36767&>7!&''67&'d<<"-[I.F(Mg-jK:i>a<AeTA!)HlG'''e,!@+::A8J1:2/HI^AylR<9:v=OM16ED6BJM6OG)oq"+ B(&' .N<3AZ^QQ?(8%>cN:&A+OV$AC8F2!$#!'-3%!!3!5352$7!#%7&&'7'6767%7&jXUR{'.]J/N0Oh.eS4\>Z2+f.lv)k,kEED'E: OC7EG7JLM7JO)Ml:tL7#5!#326N-[I.F(Mg-jK;f?c;M.KP:F  ^0g'mq376ED6BJM6OG)ґgAA*+:# 5)8=/CC . B 28>DH%5#%35'35#%&'73!!#"/26=##5##!5!5!53%7&&'7'67%#3W24C439 XK2 KK6K/ZB0C1N^.^N 4W?U3υ:x*'21AZS(?+jZASS 0GB1CLK4KL'x!( 4#!#57&&'7'675!!!5!5#'673533#K+M -VM.K-Qb-eO;f>a<em{1#'EO(J M6w66AH6FNI6KK)CCXA *4nnA!A &,28!5%!5!67#.'#67'6735337&&'767||SG#cW!2rW~ $FM&Q(lZ*U3^s)r`wK>I{a<Lzx>AA>x;>6AH6FNI6KK)8 4:@F'$%&'7&'7'67!#"/26=!5!5367!5!7&&'7'67ZDB(2A1C)-B+AD5D8c&I'kbBF!X<=/^s-[I.F(Mg-jK:i>a<+B*iSQ[oNJbCuM'B)lC5*+??M76ED6BJM6OG)! (,28!&''677&3&'#5!#'67'65!7&&'7}^_U'L7h8lN6LK2;f>a<9k-VM.K-Qb-eOLaopFi@`%-n1*vK '55z")Etp6AH6FNI6KK< #)^367#67#67#;67#7&&'7'6?67!!!3#3##"/3267465!'67#5367 V    -[I.F(Mg-jK:d>`:,w9H  @G >F*6Z9$^ KEN #W1;~~;cVgSyAGs~M6ED6BJM6OG)ߒ2A3sA`Z@2"?# , AQl5& %<7&&'7%5!5!5!5!!5#5!#'675!767!5!&''67&N-[I.F(Mg-jKEIwLI;`>a<:C;Yb;AlnNjnZ6ED6BJM6OGlA9>A<)"L17N??aE.#?&CE$? 077 8>D&''6'67&'&'75!53!!.''>5!&'7'67I 568)&*<5rb9TI NA35CF]-WA)N*֫$n+,o!IMg-jK>U3C2l OC;[0F0fH:6 PBTr6\PDBG6A=5eeC>-VM.K-Qb-eO;f>al6AH6FNI6KK)fr?AA?(( %;!5%!5!&'%'677&&'7'67"/326=!#333``(83A55j*@A53-[I.F(Qb,jK;f>a<HnU! `MM 3tt>h=^hj\^nXq46ED6BNI6OG)C,HcU%$ !E#3735%5#!35#%7&&'7'67767!5!3#"/326=##5##3&II/ZB0C*RY-^N 4W?U3:DVp_;1bE IK[:{{{0GB1CPG4KL'),>4>AA0PF(?)r"(.4V767#567#533;#"&''67&7&&'7'67#".533'673#3>!. WA7WA6?/45>+//Z;0J  D9DD3 "4#5!!5%!5!7&&'7675!!#"/326=!#N>zz)h]*U4[w)u^wK>I{b$&P2\k& zN!]]<]A9?K8ELK9HO7 ss};BAW <L35#5#7&&'7'67!!#"/32>7##'67#'6735!53&'7367M /ZB0C1N^.^N7\?[41&,&_A+ Mn&n I"I"#J}G60GB1CLK4KL'}- D.RR p@u. A9-,LB6 38 %+17;!5!5#'>7#'65!#3#.7&&'7'675!W&[mNGeAnZ-[I.L.Mg-jK;f=c;Ex`#)ClC!yNr" `AMy"Cl4ED5HJM4OG)AA@ QW!5#7&&'7'67!##"/326=!'67#5367#5367#5367#5!67!!!!!#&' )-\L/T6Mg+`T9f>a<\ G"g_  I[

4&#"YJXSAc7K{`Jz~Yl@0k`bkKY8D>:C%^6T'8? '{IS^V6jC@O'CPLC7]9?L./%7 3#V BPu/ $673#&PoiMMi XXs/ #6'3oiMMiXX4'#'7'737$H$$H{{>>{{>; !!#!5!&B&@*@*n73#edJH;5!H@@353^K #KXV   &26&"pcccnFK!#'%3 P|B&632!!5>54&#"jp{g*SOigImȦCCWGJE!32#"'732654&+5%5! 'ovqWYW]aaiZCfar{4A2VTGE>%#!3##5!53&bOhOyAA !3632#"'732654&#"#!@Oo|lZV\beWRT9F#tjz0B/]ZMQ.z632#"&5462654&"nCJvtz~=XehgfCHowee\QaaQ[f !#5!yTaCq$!+2"&54675.54>54&#"2654愒YSEMRZ[QPYXN`big`Ox31_pp_Ac\7>54#"53~.#D#.P5&%''&pxW#WL$8-*.:$,E79"f#{{hx+7%##"&546323533654&#"327#"&54632#326=4&#"T1SJ[YLQ3Ni jO$^ӡ8;12::23qBpefoA9@Q80DФΦr[MIBBI; 33#'!#^XMM}&!%!"'63 4&+323254&#"jhbf![OciOQJ8Qfp;==YbCIG r><  &#"327#"&54632YhiXbǮbh99<@ˬ@/ 3 4&#"#"'63240;C;^]]^ >ֽ !!!!!J}@CC !!#!cyP@C*!#"&632&#"327#JqϴcZgYJ7X<;6! !3#!#%PPbP1&i!3V&#"&'73265<.ei_\K(!BHu 33 ###GhbbPEc!!mjDK3333####QTPKH&T{ ###33SpOS&[[Y &6 26&"B T !63 !"'3254#"ny1OHJGDMb jz "326&"&6 #.}}||Bk_K|(_5槧UTͪw*\@O=3632#'.+32654#"dnRK-,XTU5Nwp?<g_LfjH#~ML "#"'732654&'&54632&񱮏vli~Z_Rd{onsd*#iX`h?B>E@nti5!<<w3V*#'sC*'632#&'##"&546;54&#"326=#"[msdFqEMX=?NeV 95Ko=sx/[fGE(5.9PFRlK<./1fE8F"33632#"'##4&#"326"I:xfvwe{9FWMH\^FKY]`Vdno_`nm"327#"&54632&^joYKDOXzXOFnc`r";#{#=##'##"&546323326=4&#"F9{ewvfx:YKF^\HMWV`]9emn`_on%327#"&54632%!.#"AhUTPXfusp|fTWMO]Ub(9*|~ :W^_354632&#"3###Z]8,%)@3K9]Z<7D9\w{`V]ki]\jg!#4&#"#33632H=JBaIIFs]Z)aKqI_mv533NNNnn$7 '265353VN{-N=Dk d\nn$ 3%3#%##mbAbI?!3N>!336323632#4&#"#4&#"#F8Qg%5bQLH.7/IH/7.JIQ[``_i6[E_C6ZFhJ!33>32#4&#"Fc8][H=JBaX-5mv)aKqI"264"&462Gaaa@苋ooo$33632#"'##4&#"326F8|guxdx:IWMKYZJKYV`Zflmablm$###"&5463237326=4&#"I:xdxug|8YKJZYKMW,Z`Vemlbamla "#33>́KH0?}bt&'7>Af^=f3z[7d"/53k"D5!67!5!'>7Z rApcsuETuFѣ#F!_4'>537'67!5!02*=0q3FE"'4#V==WL 7'>7#a R,0$J>F?h`UXi=_{3'>=##5353~`]>>>Pt7'67#53533##"'732>5t$aR=JJ-%+(JN6v=}}=@&<Ec%'67'7'77T28$=#Y \= !`7X$?&N?S ' %3!53#53XHG>>>e/ !!535#535#e%/>=S<'>7 &'7&'7IV5<qG7 7!> j޵6 eq }.B5!.BLL<'>535!'670=0F;a6V!1A]DDq)k/ #'>:-_HX` hwkM%F+<#3'65##353DGBGF?_98 3!53#5!}esFFFF(%#"/3265'67#53533#k6,7+* ^u*dF__pQ. D (^Ր>DD/ "/32>=#'>7#536533W5:/$ ~:?;87ikD F =h+`Fb>o19y ,7'7'7'777. G  GF  F  F F 1'63'67#k:W Dۍ|5,%?=E3'67!#'>5#V=D D-lal#[O?%EMF4C-I%!5!!5!aFF! 7>=##5#53533533#KP)EIIEFII1dX%P@FF@j5 '>%7&7&'7FYsd}MOTYvGbYRi "I~B#B% C!,5!&''67[@BBG:A9Sm%m HH8ypFv2 7327#".='7537'67 &TTba63a lF S7&']k?FGw, E$%G+ԣ-63'67&'765#-W B@t:JM'K:Dd0-*E?LB7#53=#5273#<=FF8>Q+D F FVC%F- '>'7&'7&EEk\l>A A AAԦ-F)n[( #5!#'>5!OV$F=2FF1B,FFt &'#3s{HH0DW?O.?)#'>=#5353ʚUe#8=!GDI4GZI375!5!3JKKWKK5767!5!&''67&r2?<=cQB53A)P uP@8RVFFۧdY4n<]BR]&3&'#'6!5353+I@O2gGCR^ԕGFeTp4+;-EFD'6 `| I!JO=6 7'$GCH&BUEnY BnV7327#"&5367"1`dnoI32&&#"I%%).8_; / FĿFr89p6^p_U !7&%'653265#53533##"M?($?"@.@/9#F-) F)FFL,37>7!5!&e=(9W jL4?Hj5FbGGS9> &'7&'77&0B K C 1 K 2I 1I0$7&''6767&6@6+A>$F#:jl-F6 FTT  .&''67&'76SF?L74:6Jx+xFRC35L.豀i3n[?]5Jx(#327#".=#535#5!#333<=/.!ed^69) G 5YVFHH'7'77'67% tF 8';F.F,H0 dHjA*xI ) %3!53#5!ia_)]FFFA  !!5!!5!5!Am%JF D7 !'>7!5!7{|N.F&FF] '>533FS.HuF2F]8H #3>%53'>AmE,;F,>."  h B?)`[ #3>D‘HUzY:7#!%3#F>F6? '>=##!qDyHgTA  '6'&'7EHN(KM}2K.h[NBJaYCW 7&?&A7/A$RA81B* "ZY D"[[ NBW"&4624&"2RrQQr/@..@rRRrQ@..@/L#5.546753&'67'$=#5354632&:)!,?XXskXV I@ABCDEGHIJKNQRSTUVWXYZ[\]^_ab        " # . 7 8 9 : ; < = > @ A B C Dj G H I J K N Q R S T U V W X Y Z [ \ ] ^ _ a  t   t      2  ! " # $ % ' + . 1 3 5 7 8 9 : ; < = @ A B C2 DB E G H I J K N S U W X Z [ \ ] _ a b            ! " # $ % ' + . 3 5 7 : ; < A B C D E G H I J K N Q R S T U V W X Y Z [ \ ] ^ _ a b   2         ! " # $ % ' + . 3 5 7 8 : ; < = > @ A B C7 D E G H I J K N< Q R S U V W X Y Z [ \ ] ^ _ a b       " # % . 7 8 : ; < = > @ A C D J N X Z [ \ ] ^ a     !"#%.7:;<=>@ABCDEGHIKNSUW\^_ab     !"#$ %' + .3 5 78:;<=>@AB CDjEG H I JK NS U WXZ[\]^ab   B    !"#$%'+.3578t9:;<=j>@`ABCDJWXYZ[\]^_ab     !"#$ %' + .3 5 78:;<=>@AB CDjEG H I JK NS U WXZ[\]^ab   B     !"#$'+.3578t9:;<=j@VABCDGHIJKNSUWXYZ[\]^_ab    VV` !"#$%'+.35789: <= >BCEGHIJKNQRSTUVWXYZ[\]^_b      !"#%.789:;<=>@ABCDGHIJKNSUWXYZ[\]^_ab      !"#%.789:;<=>@ABCDGHIJKNSUWXYZ[\]^_ab           ! " # 7 8 9 : ; = > @ A B D E G H I J K N S U W X Y \ ] ^ _ a b!!!! ! ! ! !!!!!!!!!!!"!#!$ !%!' !+ !3 !5 !7!8!:!;!<!=!>!@!A!C!D!N!\!a!b""" " " "" "" """"" """#"$ "%"' "+ "3 "5 "7"8":";"<"=">"@"A"B"C"Dj"E"G "H "I "J"K "N"S "U "\"]"^"_"a"b ##### # # # ###j##j#### #!#"###$#%#'#+#.#3#5#7#8#:#<#=#>#@#A#B#Ct#D#E#G#H#I#J#K#N#Q#R#S#T#U#V#W#X#Y#Z#[#\#]#^#_#a#b$$ $ $ $ $ $$ $$$ $! $#$$ $%$' $+ $.$3 $5 $7$8$:$;$<$=$>$@$A$B$C$D$N$\$_ $a$b%%% % % % % %%% %%%% %!%#%$%%%'%+%.%3%5%7%8%9%:%;%< %=~%@%A%B%C%DV%E%G%H%I%J%K%S%U%X%Y%Z%[%\ %]%_%a%b&& & & &&&&& &"&#&%&. &7&8&:&;&<&=&>&@&A&B &C&D&J&N&X&\&]&^&_&a'''' ' ' ' ' ''''''''' '!'"'#'$'%'''+'3'5'7'8':';'<'='>'@'A'B'C'D'E'G'H'I'J'K'N'Q'R'S'T'U'V'W'X'Y'Z'['\']'^'_'a'b(( ( ( ( ( (( ((( (! (#($ (%(' (+ (.(3 (5 (7(8(:(;(<(=(>(@(A(B(C(D(N(\(_ (a(b) ) ) )))))) )!)")#)$)')+)3)5)7):)B)D)G)H)I)J)K)S)U)W)X)Z)[)\)])_)a)b*** * * * ********* *!*"*#*$*%*'*+*.*3*5*7*:*<*>*@*A*B*C*D*E*G*H*I*J*K*N*Q*R*S*T*U*V*W*X*Y*Z*[*\*]*^*_*a*b++ + + +++++"+#+8+:+;+<+=+@+A+C+D+N+Z+[+\+]+a--.. ......".%...7.<.@.C.E.N.W.\//// / / / / //// /// /!/"/#/$/% /'/+/3/5/7/8/9/< />/@/A/B/C/D/E/G/H/I/J/K/N/Q/R/S/T/U/V/W/X/Y/Z/[/\/]/^/_/a/b000 t0 0 0 0 0t000 0!0"0#0$0% 0'0+0. 03050708j090:0;0=`0@t0A0B0C 0Dj0E0G0H0I0J0K0S0U0W0X0Y0Z0[0]0_0a0b33 3 3 3 3 33 333 3! 3#3$ 3%3' 3+ 3.33 35 37383:3;3<3=3>3@3A3B3C3D3N3\3_ 3a3b444 4 4 44444444 4!4"4#4%4.47484:4;4<4=4>4@4A4B 4C4D4E4G4H4I4K4N4Q4R4S4T4U4V4W4Y4\4^4_4a4b555 5 5 5 5555555 5 5#5%5.5758595:5;5<5=5>5?5@5A5B5Cd5D5K5Nd5T5Z5[5\5] 5`5a5b666 6 6 6 6666 666 6!6"6#6$6% 6'6+63656768696:6;6=6>6@6A6B6C 6D6E6G6H6I6J6K6N6S6U6W6X6Y6]6_6a6b7777 7 7 7 777777777!7"7#7$7%7'7+7.73757778797:7;7<7=7>7@7A7C7D7E7J7N7Q7R7T7V7W7X7Y7Z7[7\7]7^7_7a888 8 8 88t88t8~888 8!8"8#8$8%8'8+8.j8385878<8>8@8B8C8E8G8H8I8J8K8N8Q8R8S8T8U8V8W8X8Y8Z8[8\8]8^8_8b99 999999"9%9.979<9@9C9E9N9W9\: ::: : : : : ::::::::: :!:":#:$:%:':+:.:3:5:7:: :; := :@ :B:C:D :E:G:H:I:J:K:N:Q:R:S:T:U:V:W:X:Y:Z:[:\:]:^:_:b; ;;; ; ; ; ; ;;;;;;;;; ;!;";$;%;';+;.;3;5;7;: ;; ;= ;B;C;D ;E;G;H;I;J;K;N;Q;R;S;T;U;V;W;X;Y;Z;[;\;];^;_;b<<<< < < < < <<<<<< <<< <!<#<$<% <'<+<.<3<5<7<8<9<@<A<B<C<E<G<H<I<J<K<N<Q<R<S<T<U<V<W<X<Y<Z<[<\<]<^<_<a<b=== = = = ===j==j==== =!="=#=$=%~='=+=.t=3=5=7=: =; == =@ =B=C~=D =E=G=H=I=J=K=N=Q=R=S=T=U=V=W=X=Y=Z=[=\=]=^=_=b>> > > > >>>>>>> >!>">#>$>'>+>3>5>7>8>@>A>B>C>E>G>H>I>J>K>N>Q>R>S>T>U>V>W>X>Y>Z>[>\>]>^>_>a>b???? ? ? ? ? ??????? ? ?!?"?#?$?%?'?+?.?3?5?7?<?>?A?B?C<?D?E?G?H?I?J?K?N2?Q?R?S?U?V?W?X?Y?Z?[?\?]?^?_?a?b@@@@ @ @ @ @ @@@ @@@@@ @!@"@#@$@%@'@+@3@5@7@8~@9@:@;@< @=@>@@`@A@B@CF@DL@E@G@H@I@J@K@N(@S@U@W@X@Y@Z@[@]@_@a@bA?AC(A_BBB B B BB BB BBBBB B"B#B$B%B'B+B.B3B5B7B8B:B;B<B=B>B@BABBBCBDBEBJBNBQBRBTBVBYB\B^B_ BaBb CCCCC ~C C C C 7CCC(CCCFCC(C C!C#C$C%C'C+C3C5C7C8C9C:C;C<C=~C>C?(C@CA<CBCDCECGCHCICJCK CNCSCT(CUCWCXCYCZC[C\ C]C^C_C`(Ca<CbDDD D D D D DDDDDDDD D!D"D%D.D: D; D<DBDCDDDEDGDHDIDKDNDQDRDSDTDUDVDWDYDZD[D]D^D_DbEEE E E E EEEE E"E#E7E8E9E:E;E<E=E>E@EAEBED`EJEWEXEYEZE[E\E]E_EaEbFF FF F F FF FF FFFFF F"F#F%F7F8F:F;F<F=F>F@FAFCFD`FG FH FI FJFK FNFS FU FXFZF[F\F]F^F_ FaFbGGGG G G G G GGGGGGGG G!G"G#G7G8G9G:G;G<G=G>G@GAGBGCGD~G\G]G_GaGbII II I I II II IIIII I"I#I%I.I7I8I:I;I<I=I>I@IAICID`IG IH II IJIK INIS IU IXIZI[I\I]I^I_ IaIbJJJJ J J J J JJJJJJJJJ J!J"J#J%J.J7J8J:J;J<J=J>J@JAJBJCJDJEJGJHJIJJJKJNJQJRJSJTJUJVJWJXJYJZJ[J\J]J^J_JaJbKKK K K K K#K7K8K:K;K<K=K>K@KBKC KDKNLLL L L L LLLLLL"L#L7L8L9L:L;L<L=L>L@LALBLDjLJLXLZL[L\L]LaMMMPNC OOOO O O O O OOOOOO OOO O!O"O#O$O% O'O+O.O3O5O7O8O9O:O;O<O=O>O@OAOBOC ODOEOGOHOIOJOKONOSOUOWOXOYOZO[O]O_OaObPMPPQQQ Q Q Q QQQQQQ"Q#Q7Q8Q9Q:Q;Q<Q=Q>Q@QAQBQDjQJQXQZQ[Q\Q]QaRRR R R R RRRRRR"R#R7R8R9R:R;R<R=R>R@RARBRDjRJRXRZR[R\R]RaSSS S S SS SS SSSSS"S#S%S7S8S:S;S<S=S>S@SASCSD`SG SH SI SJSK SNSS SU SXSZS[S\S]S^S_ SaSbTT TT T T TT TT TTTTT T"T#T%T7T8T:T;T<T=T>T@TATCTD`TG TH TI TJTK TNTS TU TXTZT[T\T]T^T_ TaTbUUU U U U#U7U8U:U;U<U=U>U@UBUC(UDUN<VVVV V V V V VVVVVVVVV V!V"V#V$ V%V' V+ V.V3 V5 V7V8V:V;V<V=V>V@VAVBVCVDVEVGVHVIVKVNVSVUVWV\V_VaVbWWW W W W WWWWWWWWW W"W#W%W7W8W9W:W;W<W=W>W@WAWCWDWJWNWWWXWZW[W\W]W^W_WaWbXXXX X X X X XXXXXXXXX X"X#X7X8X:X;X<X=X>X@XAXBXCXDXEXGXHXIXJXKXNXSXUXWXXX_XaXbYYY Y Y Y Y#Y7Y8Y:Y;Y<Y=Y>Y@YAYBYDYaZZZ Z Z Z ZZZZZZZZ#Z%Z.Z7Z8Z:Z;Z<Z=Z>Z@ZAZCZDZEZGZHZIZKZNZSZUZWZ\Z_Za[[ [ [ [ [[[[[[[[#[%[.[7[8[:[;[<[=[>[@[A[C[D[E[G[H[I[K[N[S[U[W[\[_[a\\\\ \ \ \ \ \\\\\\\\ \"\#\$\% \'\+\3\5\7\8\9\:\;\<\=\>\@\A\B\C \D\E\G\H\I\J\K\N\S\U\W\X\Y\Z\[\]\^\_\a\b]] ] ] ] ]]]]]]]] ]"]#]%].]7]8]:];]<]=]>]@]A]C]D]E]G]H]I]K]N]S]U]W]\]_]a]b^^^ ^ ^ ^ ^ ^^^^^^^^ ^"^#^7^8^:^;^<^=^>^@^A^B^C^D^G^H^I^K^S^U^W^\^_^a^b____ _ _ _ _ ________ _ _!_"_#_$_%_'_+_._3_5_7_<_>_A_B_C<_D_E_G_H_I_J_K_N(_Q_R_S_U_V_W_X_Y_Z_[_\_]_^___a_b`C(`N``aaa a a a aaaaaaa a"a#a$ a%a' a+ a.a3 a5 a7a8a:a;a<a=a>a?a@aAaB aCaDaG aH aI aJaK aNaS aU aWaXaZa[a\a]a^aaab bbb b b bb bb bbbbb b!b"b#b$b%b'b+b.b3b5b7b8b:b;b<b=b>b@bAbB bCbDtbGbHbIbKbNbSbUb\b]b^b_ babb 2"Fu!)Z  bAW D  i { B      8 4k   5 G _ 'Copyright(c) 2019 M+ FONTS PROJECTCopyright(c) 2019 M+ FONTS PROJECTM+ 1pM+ 1pRegularRegularFontForge 2.0 : M+ 1p : 23-4-2019FontForge 2.0 : M+ 1p : 23-4-2019M+ 1pM+ 1pVersion 1.063aVersion 1.063amplus-1p-regularmplus-1p-regularhttp://mplus-fonts.osdn.jphttp://mplus-fonts.osdn.jpThis font is free software. Unlimited permission is granted to use, copy, and distribute it, with or without modification, either commercially or noncommercially. THIS FONT IS PROVIDED "AS IS" WITHOUT WARRANTY.This font is free software. Unlimited permission is granted to use, copy, and distribute it, with or without modification, either commercially or noncommercially. THIS FONT IS PROVIDED "AS IS" WITHOUT WARRANTY.M+ 1pM+ 1pregularregular0S0n00000o000u10j 0000000g0Y00B000e9Y 0ng q!0k000Z00~0_UFimv0jR)u(0g0B0c0f00u10k0TR)u(00QM^0Y00S0h0L0g0M0~0Y0L0Qh0fq!O݊<0h0U0[0f0D0_0`0M0~0Y0M+ 1pregular2  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a bcdefghjikmlnoqprsutvwxzy{}|~     !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~                           ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~                            ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~                            ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~                            ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~                            ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~        !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"glyph1glyph2uni000Auni00A0uni00ADuni00B2uni00B3uni00B9AmacronamacronAbreveabreveAogonekaogonek Ccircumflex ccircumflex Cdotaccent cdotaccentDcarondcaronDcroatEmacronemacronEbreveebreve Edotaccent edotaccentEogonekeogonekEcaronecaron Gcircumflex gcircumflex Gdotaccent gdotaccentuni0122uni0123 Hcircumflex hcircumflexHbarhbarItildeitildeImacronimacronIbreveibreveIogonekiogonekIJij Jcircumflex jcircumflexuni0136uni0137 kgreenlandicLacutelacuteuni013Buni013CLcaronlcaronLdotldotNacutenacuteuni0145uni0146Ncaronncaron napostropheEngengOmacronomacronObreveobreve Ohungarumlaut ohungarumlautRacuteracuteuni0156uni0157RcaronrcaronSacutesacute Scircumflex scircumflexuni0162uni0163TcarontcaronTbartbarUtildeutildeUmacronumacronUbreveubreveUringuring Uhungarumlaut uhungarumlautUogonekuogonek Wcircumflex wcircumflex Ycircumflex ycircumflexZacutezacute Zdotaccent zdotaccentlongsuni0180uni0181uni0182uni0183uni0184uni0185uni0186uni0187uni0188uni0189uni018Auni018Buni018Cuni018Duni018Euni018Funi0190uni0191uni0193uni0194uni0195uni0196uni0197uni0198uni0199uni019Auni019Buni019Cuni019Duni019Euni019FOhornohornuni01A2uni01A3uni01A4uni01A5uni01A6uni01A7uni01A8uni01A9uni01AAuni01ABuni01ACuni01ADuni01AEUhornuhornuni01B1uni01B2uni01B3uni01B4uni01B5uni01B6uni01B7uni01B8uni01B9uni01BAuni01BBuni01BCuni01BDuni01BEuni01BFuni01C0uni01C1uni01C2uni01C3uni01C4uni01C5uni01C6uni01C7uni01C8uni01C9uni01CAuni01CBuni01CCuni01CDuni01CEuni01CFuni01D0uni01D1uni01D2uni01D3uni01D4uni01D5uni01D6uni01D7uni01D8uni01D9uni01DAuni01DBuni01DCuni01DDuni01DEuni01DFuni01E0uni01E1uni01E2uni01E3uni01E4uni01E5Gcarongcaronuni01E8uni01E9uni01EAuni01EBuni01ECuni01EDuni01EEuni01EFuni01F0uni01F1uni01F2uni01F3uni01F4uni01F5uni01F6uni01F7uni01F8uni01F9 Aringacute aringacuteAEacuteaeacute Oslashacute oslashacuteuni0200uni0201uni0202uni0203uni0204uni0205uni0206uni0207uni0208uni0209uni020Auni020Buni020Cuni020Duni020Euni020Funi0210uni0211uni0212uni0213uni0214uni0215uni0216uni0217uni0218uni0219uni021Auni021Buni021Cuni021Duni021Euni021Funi0220uni0221uni0222uni0223uni0224uni0225uni0226uni0227uni0228uni0229uni022Auni022Buni022Cuni022Duni022Euni022Funi0230uni0231uni0232uni0233uni0234uni0235uni0236uni0237uni0238uni0239uni023Auni023Buni023Cuni023Duni023Euni023Funi0240uni0241uni0242uni0243uni0244uni0245uni0246uni0247uni0248uni0249uni024Auni024Buni024Cuni024Duni024Euni024Funi0259uni02B0uni02B1uni02B2uni02B3uni02B4uni02B5uni02B6uni02B7uni02B8uni02B9uni02BAuni02BBuni02BCuni02BDuni02BEuni02BFuni02C0uni02C1uni02C2uni02C3uni02C4uni02C5uni02C8uni02C9uni02CAuni02CBuni02CCuni02CDuni02CEuni02CFuni02D0uni02D1uni02D2uni02D3uni02D4uni02D5uni02D6uni02D7uni02DEuni02DFuni02E0uni02E1uni02E2uni02E3uni02E4uni02E5uni02E6uni02E7uni02E8uni02E9uni02EAuni02EBuni02ECuni02EDuni02EEuni02EFuni02F0uni02F1uni02F2uni02F3uni02F4uni02F5uni02F6uni02F7uni02F8uni02F9uni02FAuni02FBuni02FCuni02FDuni02FEuni02FFuni0370uni0371uni0372uni0373uni0374uni0375uni0376uni0377uni037Auni037Buni037Cuni037Duni037Etonos dieresistonos Alphatonos anoteleia EpsilontonosEtatonos Iotatonos Omicrontonos Upsilontonos OmegatonosiotadieresistonosAlphaBetaGammauni0394EpsilonZetaEtaThetaIotaKappaLambdaMuNuXiOmicronPiRhoSigmaTauUpsilonPhiChiPsiuni03A9 IotadieresisUpsilondieresis alphatonos epsilontonosetatonos iotatonosupsilondieresistonosalphabetagammadeltaepsilonzetaetathetaiotakappalambdauni03BCnuxiomicronrhosigma1sigmatauupsilonphichipsiomega iotadieresisupsilondieresis omicrontonos upsilontonos omegatonosuni03CFuni03D0theta1Upsilon1uni03D3uni03D4phi1omega1uni03D7uni03D8uni03D9uni03DAuni03DBuni03DCuni03DDuni03DEuni03DFuni03E0uni03E1uni03F0uni03F1uni03F2uni03F3uni03F4uni03F5uni03F6uni03F7uni03F8uni03F9uni03FAuni03FBuni03FCuni03FDuni03FEuni03FFuni0400uni0401uni0402uni0403uni0404uni0405uni0406uni0407uni0408uni0409uni040Auni040Buni040Cuni040Duni040Euni040Funi0410uni0411uni0412uni0413uni0414uni0415uni0416uni0417uni0418uni0419uni041Auni041Buni041Cuni041Duni041Euni041Funi0420uni0421uni0422uni0423uni0424uni0425uni0426uni0427uni0428uni0429uni042Auni042Buni042Cuni042Duni042Euni042Funi0430uni0431uni0432uni0433uni0434uni0435uni0436uni0437uni0438uni0439uni043Auni043Buni043Cuni043Duni043Euni043Funi0440uni0441uni0442uni0443uni0444uni0445uni0446uni0447uni0448uni0449uni044Auni044Buni044Cuni044Duni044Euni044Funi0450uni0451uni0452uni0453uni0454uni0455uni0456uni0457uni0458uni0459uni045Auni045Buni045Cuni045Duni045Euni045Funi0460uni0461uni0462uni0463uni046Euni046Funi0470uni0471uni0472uni0473uni0474uni0475uni0476uni0477uni0478uni0479uni047Auni047Buni047Cuni047Duni047Euni047Funi0480uni0481uni0483uni0484uni0485uni0486uni048Auni048Buni048Cuni048Duni048Euni048Funi0490uni0491uni0492uni0493uni0494uni0495uni0496uni0497uni0498uni0499uni049Auni049Buni049Cuni049Duni049Euni049Funi04A0uni04A1uni04A2uni04A3uni04A4uni04A5uni04A6uni04A7uni04AAuni04ABuni04ACuni04ADuni04AEuni04AFuni04B0uni04B1uni04B2uni04B3uni04B4uni04B5uni04B6uni04B7uni04B8uni04B9uni04BAuni04BBuni04BCuni04BDuni04BEuni04BFuni04C0uni04C1uni04C2uni04C3uni04C4uni04C5uni04C6uni04C7uni04C8uni04C9uni04CAuni04CBuni04CCuni04CDuni04CEuni04CFuni04D0uni04D1uni04D2uni04D3uni04D4uni04D5uni04D6uni04D7uni04D8uni04D9uni04DAuni04DBuni04DCuni04DDuni04DEuni04DFuni04E0uni04E1uni04E2uni04E3uni04E4uni04E5uni04E6uni04E7uni04E8uni04E9uni04EAuni04EBuni04ECuni04EDuni04EEuni04EFuni04F0uni04F1uni04F2uni04F3uni04F4uni04F5uni04F6uni04F7uni04F8uni04F9uni04FAuni04FBuni04FCuni04FDuni04FEuni04FFuni1EA0uni1EA1uni1EA2uni1EA3uni1EA4uni1EA5uni1EA6uni1EA7uni1EA8uni1EA9uni1EAAuni1EABuni1EACuni1EADuni1EAEuni1EAFuni1EB0uni1EB1uni1EB2uni1EB3uni1EB4uni1EB5uni1EB6uni1EB7uni1EB8uni1EB9uni1EBAuni1EBBuni1EBCuni1EBDuni1EBEuni1EBFuni1EC0uni1EC1uni1EC2uni1EC3uni1EC4uni1EC5uni1EC6uni1EC7uni1EC8uni1EC9uni1ECAuni1ECBuni1ECCuni1ECDuni1ECEuni1ECFuni1ED0uni1ED1uni1ED2uni1ED3uni1ED4uni1ED5uni1ED6uni1ED7uni1ED8uni1ED9uni1EDAuni1EDBuni1EDCuni1EDDuni1EDEuni1EDFuni1EE0uni1EE1uni1EE2uni1EE3uni1EE4uni1EE5uni1EE6uni1EE7uni1EE8uni1EE9uni1EEAuni1EEBuni1EECuni1EEDuni1EEEuni1EEFuni1EF0uni1EF1Ygraveygraveuni1EF4uni1EF5uni1EF6uni1EF7uni1EF8uni1EF9uni2002uni2003uni2004uni2005uni2006uni2007uni2009uni200Auni200Buni2010uni2011 figuredashuni2015uni2016 underscoredbl quotereverseduni201Funi2023onedotenleadertwodotenleaderuni2027uni202Funi2031minuteseconduni2034uni2035uni2036uni2037uni2060Euro arrowleftarrowup arrowright arrowdown arrowboth arrowupdn arrowdblleft arrowdblup arrowdblright arrowdbldown arrowdblbothuni21D5 universaluni2201 existentialuni2204emptysetgradientelement notelementsuchthatuni220Cuni220Euni2210uni2213uni2215uni2216 asteriskmathuni2218uni2219uni221Buni221C proportional orthogonalangleuni2225uni2226 logicaland logicalor intersectionunionuni222Cuni222Duni222Euni222Funi2230uni2231uni2232uni2233 thereforeuni2235similaruni223Duni2242uni2243 congruentuni2250uni2251uni2252uni2253 equivalenceuni2262uni2266uni2267uni226Auni226Buni2276uni2277 propersubsetpropersuperset notsubsetuni2285 reflexsubsetreflexsupersetuni2288uni2289 circleplusuni2296circlemultiplyuni2298uni229Duni22A2uni22A3uni22A4 perpendicularuni22BBuni22BCuni22BDuni22BFuni22C0uni22C1uni22C2uni22C3dotmathuni22EEuni22EF filledboxH22073H18543H18551 filledrectuni25ADuni25AEuni25AFtriagupuni25B3uni25B6uni25B7triagrtuni25BBtriagdnuni25BDuni25C0uni25C1triaglfuni25C5uni25C6uni25C7circleuni25CCuni25CEH18533 invbullet invcircle openbulletuni25EFuni2610uni2611uni2713uni3000uni3001uni3002uni3003uni3004uni3005uni3006uni3007uni3008uni3009uni300Auni300Buni300Cuni300Duni300Euni300Funi3010uni3011uni3012uni3013uni3014uni3015uni3016uni3017uni3018uni3019uni301Auni301Buni301Cuni301Duni301Euni301Funi3030uni3031uni3032uni3033uni3034uni3035uni303Buni303Cuni303Duni3041uni3042uni3043uni3044uni3045uni3046uni3047uni3048uni3049uni304Auni304Buni304Cuni304Duni304Euni304Funi3050uni3051uni3052uni3053uni3054uni3055uni3056uni3057uni3058uni3059uni305Auni305Buni305Cuni305Duni305Euni305Funi3060uni3061uni3062uni3063uni3064uni3065uni3066uni3067uni3068uni3069uni306Auni306Buni306Cuni306Duni306Euni306Funi3070uni3071uni3072uni3073uni3074uni3075uni3076uni3077uni3078uni3079uni307Auni307Buni307Cuni307Duni307Euni307Funi3080uni3081uni3082uni3083uni3084uni3085uni3086uni3087uni3088uni3089uni308Auni308Buni308Cuni308Duni308Euni308Funi3090uni3091uni3092uni3093uni3094uni3095uni3096uni3099uni309Auni309Buni309Cuni309Duni309Euni309Funi30A0uni30A1uni30A2uni30A3uni30A4uni30A5uni30A6uni30A7uni30A8uni30A9uni30AAuni30ABuni30ACuni30ADuni30AEuni30AFuni30B0uni30B1uni30B2uni30B3uni30B4uni30B5uni30B6uni30B7uni30B8uni30B9uni30BAuni30BBuni30BCuni30BDuni30BEuni30BFuni30C0uni30C1uni30C2uni30C3uni30C4uni30C5uni30C6uni30C7uni30C8uni30C9uni30CAuni30CBuni30CCuni30CDuni30CEuni30CFuni30D0uni30D1uni30D2uni30D3uni30D4uni30D5uni30D6uni30D7uni30D8uni30D9uni30DAuni30DBuni30DCuni30DDuni30DEuni30DFuni30E0uni30E1uni30E2uni30E3uni30E4uni30E5uni30E6uni30E7uni30E8uni30E9uni30EAuni30EBuni30ECuni30EDuni30EEuni30EFuni30F0uni30F1uni30F2uni30F3uni30F4uni30F5uni30F6uni30F7uni30F8uni30F9uni30FAuni30FBuni30FCuni30FDuni30FEuni30FFuni4E00uni4E01uni4E03uni4E07uni4E08uni4E09uni4E0Auni4E0Buni4E0Duni4E0Euni4E10uni4E11uni4E14uni4E15uni4E16uni4E17uni4E18uni4E19uni4E1Euni4E21uni4E26uni4E28uni4E2Auni4E2Duni4E31uni4E32uni4E36uni4E38uni4E39uni4E3Buni4E3Cuni4E3Funi4E42uni4E43uni4E44uni4E45uni4E4Buni4E4Duni4E4Euni4E4Funi4E56uni4E57uni4E58uni4E59uni4E5Duni4E5Euni4E5Funi4E62uni4E6Duni4E71uni4E73uni4E7Euni4E80uni4E82uni4E85uni4E86uni4E88uni4E89uni4E8Auni4E8Buni4E8Cuni4E8Euni4E91uni4E92uni4E94uni4E95uni4E98uni4E99uni4E9Buni4E9Cuni4E9Euni4E9Funi4EA0uni4EA1uni4EA2uni4EA4uni4EA5uni4EA6uni4EA8uni4EABuni4EACuni4EADuni4EAEuni4EB0uni4EB3uni4EB6uni4EBAuni4EBBuni4EC0uni4EC1uni4EC2uni4EC4uni4EC6uni4EC7uni4ECAuni4ECBuni4ECDuni4ECEuni4ECFuni4ED4uni4ED5uni4ED6uni4ED7uni4ED8uni4ED9uni4EDDuni4EDEuni4EDFuni4EE3uni4EE4uni4EE5uni4EEDuni4EEEuni4EF0uni4EF2uni4EF6uni4EF7uni4EFBuni4F01uni4F09uni4F0Auni4F0Duni4F0Euni4F0Funi4F10uni4F11uni4F1Auni4F1Cuni4F1Duni4F2Funi4F30uni4F34uni4F36uni4F38uni4F3Auni4F3Cuni4F3Duni4F43uni4F46uni4F47uni4F4Duni4F4Euni4F4Funi4F50uni4F51uni4F53uni4F55uni4F57uni4F59uni4F5Auni4F5Buni4F5Cuni4F5Duni4F69uni4F6Funi4F70uni4F73uni4F75uni4F76uni4F7Buni4F7Cuni4F7Funi4F83uni4F86uni4F88uni4F8Buni4F8Duni4F8Funi4F91uni4F96uni4F98uni4F9Buni4F9Duni4FA0uni4FA1uni4FADuni4FAEuni4FAFuni4FB5uni4FB6uni4FBFuni4FC2uni4FC3uni4FC4uni4FCAuni4FCEuni4FD0uni4FD1uni4FD4uni4FD7uni4FD8uni4FDAuni4FDBuni4FDDuni4FDFuni4FE1uni4FE3uni4FE4uni4FE5uni4FEEuni4FEFuni4FF1uni4FF3uni4FF5uni4FF6uni4FF8uni4FFAuni4FFEuni5005uni5006uni5009uni500Buni500Duni5011uni5012uni5014uni5016uni5019uni501Auni501Funi5021uni5023uni5024uni5025uni5026uni5028uni5029uni502Auni502Buni502Cuni502Duni5036uni5039uni5043uni5047uni5048uni5049uni504Funi5050uni5055uni5056uni505Auni505Cuni5065uni506Cuni5072uni5074uni5075uni5076uni5078uni507Duni5080uni5085uni508Duni5091uni5098uni5099uni509Auni50ACuni50ADuni50B2uni50B3uni50B4uni50B5uni50B7uni50BEuni50C2uni50C5uni50C9uni50CAuni50CDuni50CFuni50D1uni50D5uni50D6uni50DAuni50DEuni50E3uni50E5uni50E7uni50EDuni50EEuni50F5uni50F9uni50FBuni5100uni5101uni5102uni5104uni5109uni5112uni5114uni5115uni5116uni5118uni511Auni511Funi5121uni512Auni5132uni5137uni513Auni513Buni513Cuni513Funi5140uni5141uni5143uni5144uni5145uni5146uni5147uni5148uni5149uni514Buni514Cuni514Duni514Euni5150uni5152uni5154uni515Auni515Cuni5162uni5165uni5168uni5169uni516Auni516Buni516Cuni516Duni516Euni5171uni5175uni5176uni5177uni5178uni517Cuni5180uni5182uni5185uni5186uni5189uni518Auni518Cuni518Duni518Funi5191uni5192uni5193uni5195uni5196uni5197uni5199uni51A0uni51A2uni51A4uni51A5uni51A6uni51A8uni51A9uni51AAuni51ABuni51ACuni51B0uni51B1uni51B2uni51B3uni51B4uni51B5uni51B6uni51B7uni51BDuni51C4uni51C5uni51C6uni51C9uni51CBuni51CCuni51CDuni51D6uni51DBuni51DCuni51DDuni51E0uni51E1uni51E6uni51E7uni51E9uni51EAuni51EDuni51F0uni51F1uni51F5uni51F6uni51F8uni51F9uni51FAuni51FDuni51FEuni5200uni5202uni5203uni5204uni5206uni5207uni5208uni520Auni520Buni520Euni5211uni5214uni5217uni521Duni5224uni5225uni5227uni5229uni522Auni522Euni5230uni5233uni5236uni5237uni5238uni5239uni523Auni523Buni5243uni5244uni5247uni524Auni524Buni524Cuni524Duni524Funi5254uni5256uni525Buni525Duni525Euni5263uni5264uni5265uni5269uni526Auni526Funi5270uni5271uni5272uni5273uni5274uni5275uni527Duni527Funi5283uni5287uni5288uni5289uni528Duni5291uni5292uni5294uni529Buni529Funi52A0uni52A3uni52A9uni52AAuni52ABuni52ACuni52ADuni52B1uni52B4uni52B5uni52B9uni52BCuni52BEuni52C1uni52C3uni52C5uni52C7uni52C9uni52CDuni52D2uni52D5uni52D7uni52D8uni52D9uni52DDuni52DEuni52DFuni52E0uni52E2uni52E3uni52E4uni52E6uni52E7uni52F2uni52F3uni52F5uni52F8uni52F9uni52FAuni52FEuni52FFuni5301uni5302uni5305uni5306uni5308uni530Duni530Funi5310uni5315uni5316uni5317uni5319uni531Auni531Duni5320uni5321uni5323uni532Auni532Funi5331uni5333uni5338uni5339uni533Auni533Buni533Funi5340uni5341uni5343uni5345uni5346uni5347uni5348uni5349uni534Auni534Duni5350uni5351uni5352uni5353uni5354uni5357uni5358uni535Auni535Cuni535Euni5360uni5366uni5369uni536Euni536Funi5370uni5371uni5373uni5374uni5375uni5377uni5378uni537Buni537Funi5382uni5384uni5396uni5398uni539Auni539Funi53A0uni53A5uni53A6uni53A8uni53A9uni53ADuni53AEuni53B0uni53B3uni53B6uni53BBuni53C2uni53C3uni53C8uni53C9uni53CAuni53CBuni53CCuni53CDuni53CEuni53D4uni53D6uni53D7uni53D9uni53DBuni53DFuni53E1uni53E2uni53E3uni53E4uni53E5uni53E8uni53E9uni53EAuni53EBuni53ECuni53EDuni53EEuni53EFuni53F0uni53F1uni53F2uni53F3uni53F6uni53F7uni53F8uni53FAuni5401uni5403uni5404uni5408uni5409uni540Auni540Buni540Cuni540Duni540Euni540Funi5410uni5411uni541Buni541Duni541Euni541Funi5420uni5426uni5429uni542Buni542Cuni542Duni542Euni5436uni5438uni5439uni543Buni543Cuni543Duni543Euni5440uni5442uni5446uni5448uni5449uni544Auni544Euni5451uni545Funi5468uni546Auni5470uni5471uni5473uni5475uni5476uni5477uni547Buni547Cuni547Duni5480uni5484uni5486uni548Buni548Cuni548Euni548Funi5490uni5492uni54A2uni54A4uni54A5uni54A8uni54ABuni54ACuni54AFuni54B2uni54B3uni54B8uni54BCuni54BDuni54BEuni54C0uni54C1uni54C2uni54C4uni54C7uni54C8uni54C9uni54D8uni54E1uni54E2uni54E5uni54E6uni54E8uni54E9uni54EDuni54EEuni54F2uni54FAuni54FDuni5504uni5506uni5507uni550Funi5510uni5514uni5516uni552Euni552Funi5531uni5533uni5538uni5539uni553Euni5540uni5544uni5545uni5546uni554Cuni554Funi5553uni5556uni5557uni555Cuni555Duni555Euni5563uni557Buni557Cuni557Euni5580uni5583uni5584uni5587uni5589uni558Auni558Buni5598uni5599uni559Auni559Cuni559Duni559Euni559Funi55A7uni55A8uni55A9uni55AAuni55ABuni55ACuni55AEuni55B0uni55B6uni55C4uni55C5uni55C7uni55D4uni55DAuni55DCuni55DFuni55E3uni55E4uni55F7uni55F9uni55FDuni55FEuni5606uni5609uni5614uni5616uni5617uni5618uni561Buni5629uni562Funi5631uni5632uni5634uni5636uni5638uni5642uni564Cuni564Euni5650uni5653uni565Buni5664uni5668uni566Auni566Buni566Cuni5674uni5678uni567Auni5680uni5686uni5687uni568Auni568Funi5694uni56A0uni56A2uni56A5uni56AEuni56B4uni56B6uni56BCuni56C0uni56C1uni56C2uni56C3uni56C8uni56CEuni56D1uni56D3uni56D7uni56D8uni56DAuni56DBuni56DEuni56E0uni56E3uni56EEuni56F0uni56F2uni56F3uni56F9uni56FAuni56FDuni56FFuni5700uni5703uni5704uni5708uni5709uni570Buni570Duni570Funi5712uni5713uni5716uni5718uni571Cuni571Funi5726uni5727uni5728uni572Duni5730uni5737uni5738uni573Buni5740uni5742uni5747uni574Auni574Euni574Funi5750uni5751uni5761uni5764uni5766uni5769uni576Auni577Funi5782uni5788uni5789uni578Buni5793uni57A0uni57A2uni57A3uni57A4uni57AAuni57B0uni57B3uni57C0uni57C3uni57C6uni57CBuni57CEuni57D2uni57D3uni57D4uni57D6uni57DCuni57DFuni57E0uni57E3uni57F4uni57F7uni57F9uni57FAuni57FCuni5800uni5802uni5805uni5806uni580Auni580Buni5815uni5819uni581Duni5821uni5824uni582Auni582Funi5830uni5831uni5834uni5835uni583Auni583Duni5840uni5841uni584Auni584Buni5851uni5852uni5854uni5857uni5858uni5859uni585Auni585Euni5861uni5862uni5869uni586Buni5870uni5872uni5875uni5879uni587Euni5883uni5885uni5893uni5897uni589Cuni589Funi58A8uni58ABuni58AEuni58B3uni58B8uni58B9uni58BAuni58BBuni58BEuni58C1uni58C5uni58C7uni58CAuni58CCuni58D1uni58D3uni58D5uni58D7uni58D8uni58DCuni58DEuni58E4uni58EBuni58ECuni58EEuni58EFuni58F0uni58F1uni58F2uni58F7uni58F9uni58FAuni58FBuni58FDuni5902uni5909uni590Auni590Funi5915uni5916uni5918uni5919uni591Auni591Cuni5922uni5925uni5927uni5929uni592Auni592Buni592Cuni592Duni592Euni5931uni5937uni5938uni593Euni5944uni5947uni5948uni5949uni594Euni594Funi5950uni5951uni5954uni5955uni5957uni5958uni5960uni5962uni5965uni5967uni5968uni596Auni596Cuni596Euni5973uni5974uni5978uni597Duni5981uni5982uni5983uni5984uni598Auni598Duni5993uni5996uni5999uni59A3uni59A5uni59A8uni59ACuni59B2uni59B9uni59BBuni59BEuni59C6uni59C9uni59CBuni59D0uni59D1uni59D3uni59D4uni59DAuni59DCuni59E5uni59E6uni59E8uni59EAuni59EBuni59F6uni59F8uni59FBuni59FFuni5A01uni5A03uni5A09uni5A11uni5A18uni5A1Auni5A1Cuni5A1Funi5A20uni5A25uni5A29uni5A2Funi5A35uni5A36uni5A3Cuni5A41uni5A46uni5A49uni5A5Auni5A62uni5A66uni5A6Auni5A7Funi5A92uni5A9Auni5A9Buni5ABCuni5ABDuni5AC1uni5AC2uni5AC9uni5ACCuni5AD0uni5AD6uni5AD7uni5AE1uni5AE6uni5B09uni5B0Buni5B0Cuni5B22uni5B2Auni5B2Cuni5B30uni5B32uni5B40uni5B43uni5B45uni5B50uni5B54uni5B55uni5B57uni5B58uni5B5Auni5B5Cuni5B5Duni5B5Funi5B63uni5B64uni5B66uni5B69uni5B6Buni5B70uni5B75uni5B78uni5B7Auni5B80uni5B83uni5B85uni5B87uni5B88uni5B89uni5B8Buni5B8Cuni5B8Duni5B8Funi5B95uni5B97uni5B98uni5B99uni5B9Auni5B9Buni5B9Cuni5B9Duni5B9Funi5BA2uni5BA3uni5BA4uni5BA5uni5BA6uni5BAEuni5BB0uni5BB3uni5BB4uni5BB5uni5BB6uni5BB8uni5BB9uni5BBFuni5BC2uni5BC4uni5BC5uni5BC6uni5BC7uni5BCCuni5BD2uni5BD3uni5BDBuni5BDDuni5BDFuni5BE1uni5BE2uni5BE6uni5BE7uni5BE8uni5BE9uni5BEEuni5BF5uni5BF8uni5BFAuni5BFEuni5BFFuni5C01uni5C02uni5C04uni5C05uni5C06uni5C07uni5C08uni5C09uni5C0Auni5C0Buni5C0Duni5C0Euni5C0Funi5C11uni5C13uni5C16uni5C1Auni5C20uni5C22uni5C24uni5C28uni5C2Duni5C31uni5C38uni5C39uni5C3Auni5C3Buni5C3Cuni5C3Duni5C3Euni5C3Funi5C40uni5C41uni5C45uni5C48uni5C4Auni5C4Buni5C4Duni5C4Euni5C4Funi5C51uni5C53uni5C55uni5C5Buni5C5Euni5C60uni5C61uni5C62uni5C64uni5C65uni5C6Cuni5C6Euni5C6Funi5C71uni5C79uni5C90uni5C91uni5CA1uni5CA8uni5CA9uni5CABuni5CACuni5CB1uni5CB3uni5CB6uni5CB7uni5CB8uni5CBAuni5CBBuni5CBEuni5CC5uni5CD9uni5CE0uni5CE1uni5CE8uni5CEAuni5CEDuni5CEFuni5CF0uni5CF6uni5CFAuni5CFBuni5CFDuni5D07uni5D0Buni5D0Euni5D11uni5D14uni5D15uni5D16uni5D17uni5D18uni5D19uni5D1Auni5D22uni5D29uni5D4Buni5D4Cuni5D4Euni5D50uni5D52uni5D69uni5D6Funi5D82uni5D87uni5D8Buni5D8Cuni5D9Duni5DA2uni5DACuni5DAEuni5DBAuni5DBCuni5DBDuni5DCCuni5DCDuni5DD2uni5DD6uni5DDBuni5DDDuni5DDEuni5DE1uni5DE3uni5DE5uni5DE6uni5DE7uni5DE8uni5DEBuni5DEEuni5DF1uni5DF2uni5DF3uni5DF4uni5DF7uni5DFBuni5DFDuni5DFEuni5E02uni5E03uni5E06uni5E0Cuni5E16uni5E19uni5E1Auni5E1Buni5E1Duni5E25uni5E2Buni5E2Duni5E2Funi5E30uni5E33uni5E36uni5E37uni5E38uni5E3Duni5E40uni5E45uni5E47uni5E4Cuni5E4Euni5E54uni5E55uni5E57uni5E5Funi5E61uni5E62uni5E63uni5E72uni5E73uni5E74uni5E75uni5E76uni5E77uni5E78uni5E79uni5E7Auni5E7Buni5E7Cuni5E7Duni5E7Euni5E7Funi5E81uni5E83uni5E84uni5E87uni5E8Auni5E8Funi5E95uni5E96uni5E97uni5E9Auni5E9Cuni5EA6uni5EA7uni5EABuni5EADuni5EB5uni5EB6uni5EB7uni5EB8uni5EC1uni5EC2uni5EC3uni5EC9uni5ECAuni5ECFuni5ED3uni5EDAuni5EDBuni5EDFuni5EE0uni5EE2uni5EE3uni5EECuni5EF3uni5EF4uni5EF6uni5EF7uni5EF8uni5EFAuni5EFBuni5EFCuni5EFEuni5EFFuni5F01uni5F04uni5F09uni5F0Auni5F0Buni5F0Cuni5F0Duni5F0Funi5F10uni5F11uni5F13uni5F14uni5F15uni5F16uni5F17uni5F18uni5F1Buni5F1Funi5F25uni5F26uni5F27uni5F29uni5F2Funi5F31uni5F35uni5F37uni5F38uni5F3Cuni5F3Euni5F48uni5F4Auni5F4Cuni5F4Euni5F51uni5F53uni5F56uni5F57uni5F59uni5F61uni5F62uni5F66uni5F69uni5F6Auni5F6Buni5F6Cuni5F6Duni5F70uni5F71uni5F73uni5F77uni5F79uni5F7Cuni5F7Funi5F80uni5F81uni5F82uni5F83uni5F84uni5F85uni5F87uni5F88uni5F8Auni5F8Buni5F8Cuni5F90uni5F91uni5F92uni5F93uni5F97uni5F98uni5F9Euni5FA0uni5FA1uni5FA8uni5FA9uni5FAAuni5FADuni5FAEuni5FB3uni5FB4uni5FB7uni5FB9uni5FBDuni5FC3uni5FC4uni5FC5uni5FCCuni5FCDuni5FD6uni5FD7uni5FD8uni5FD9uni5FDCuni5FDDuni5FE0uni5FE4uni5FEBuni5FF0uni5FF1uni5FF5uni5FF8uni5FFDuni6010uni6012uni6015uni6016uni6019uni601Buni601Cuni601Duni6020uni6021uni6025uni6027uni6028uni6029uni602Auni602Buni602Funi6031uni6042uni6043uni6046uni604Auni604Buni604Duni6050uni6052uni6055uni6059uni6062uni6063uni6065uni6068uni6069uni606Auni606Buni606Cuni606Duni606Funi6070uni6075uni6081uni6084uni6089uni608Cuni608Duni6094uni6097uni609Auni609Buni609Funi60A0uni60A3uni60A6uni60A7uni60A9uni60AAuni60B2uni60B3uni60B4uni60B5uni60B6uni60B8uni60BCuni60BDuni60C5uni60C6uni60C7uni60D1uni60D8uni60DAuni60DCuni60DFuni60E0uni60E1uni60E3uni60E7uni60E8uni60F0uni60F1uni60F3uni60F4uni60F6uni60F9uni60FAuni60FBuni6100uni6101uni6103uni6108uni6109uni610Euni610Funi6115uni611Auni611Buni611Funi6121uni6127uni6134uni613Cuni613Duni6144uni6147uni6148uni614Buni614Cuni614Euni6153uni6155uni6159uni615Auni6162uni6163uni6167uni6168uni616Euni6170uni6171uni6173uni6175uni6176uni6177uni617Euni6182uni618Euni6190uni6191uni6194uni619Auni61A4uni61A7uni61A9uni61ABuni61ACuni61AEuni61B2uni61B6uni61BAuni61BEuni61C6uni61C7uni61C9uni61CAuni61D0uni61E6uni61F2uni61F4uni61F7uni61F8uni61FAuni61FCuni61FDuni61FEuni61FFuni6200uni6208uni6209uni620Auni620Cuni620Duni620Euni6210uni6211uni6212uni6214uni6216uni621Auni621Funi6221uni6226uni622Auni622Euni622Funi6230uni6232uni6234uni6238uni623Buni623Funi6240uni6241uni6247uni6248uni6249uni624Buni624Cuni624Duni624Euni6253uni6255uni6258uni625Buni625Euni6263uni6268uni626Euni6271uni6276uni6279uni627Funi6280uni6282uni6284uni6289uni628Auni6291uni6292uni6294uni6295uni6297uni6298uni629Buni629Cuni629Euni62ABuni62ACuni62B1uni62B5uni62B9uni62BBuni62BCuni62BDuni62C2uni62C5uni62C6uni62C7uni62C8uni62C9uni62CAuni62CCuni62CDuni62CFuni62D0uni62D1uni62D2uni62D3uni62D4uni62D7uni62D8uni62D9uni62DBuni62DCuni62DDuni62E0uni62E1uni62ECuni62EDuni62EEuni62F1uni62F3uni62F5uni62F6uni62F7uni62FEuni62FFuni6301uni6302uni6307uni6309uni630Cuni6311uni6319uni631Funi6328uni632Buni632Funi633Auni633Duni633Euni633Funi6349uni634Cuni634Duni634Funi6350uni6355uni6357uni635Cuni6367uni6368uni6369uni636Euni6372uni6376uni6377uni637Auni637Buni6383uni6388uni6389uni638Cuni638Euni638Funi6392uni6396uni6398uni639Buni639Funi63A0uni63A1uni63A2uni63A5uni63A7uni63A8uni63A9uni63AAuni63ABuni63ACuni63B2uni63B4uni63BBuni63BEuni63C0uni63C3uni63C4uni63C6uni63C9uni63CFuni63D0uni63D6uni63DAuni63DBuni63E1uni63E3uni63E9uni63EEuni63F4uni63F6uni63FAuni640Duni640Funi6413uni6416uni6417uni641Cuni6426uni642Cuni642Duni6436uni643Auni643Euni6442uni644Euni6458uni6467uni6469uni646Funi6476uni6478uni647Auni6483uni6488uni6492uni6493uni649Auni649Euni64A4uni64A5uni64A9uni64ABuni64ADuni64AEuni64B0uni64B2uni64B9uni64BCuni64C1uni64C5uni64C7uni64CDuni64D2uni64D4uni64E2uni64E3uni64E6uni64E7uni64ECuni64EFuni64F2uni64F6uni64FDuni64FEuni6500uni6505uni6518uni651Duni6523uni6524uni652Buni652Cuni652Funi6534uni6535uni6536uni6538uni6539uni653Buni653Euni653Funi6545uni6548uni654Duni654Funi6551uni6555uni6556uni6557uni6558uni6559uni6562uni6563uni6566uni656Cuni6570uni6572uni6574uni6575uni6577uni6578uni6582uni6583uni6587uni6589uni658Cuni658Euni6590uni6591uni6597uni6599uni659Cuni659Funi65A1uni65A4uni65A5uni65A7uni65ACuni65ADuni65AFuni65B0uni65B9uni65BCuni65BDuni65C1uni65C3uni65C5uni65CBuni65CFuni65D7uni65D9uni65DBuni65E0uni65E2uni65E5uni65E6uni65E7uni65E8uni65E9uni65ECuni65EDuni65F1uni65FAuni65FBuni6602uni6606uni6607uni660Auni660Cuni660Euni660Funi6613uni6614uni661Cuni661Funi6620uni6625uni6627uni6628uni662Duni662Funi6634uni6635uni6636uni663Cuni663Funi6641uni6642uni6643uni6644uni664Buni664Funi6652uni665Duni665Euni665Funi6662uni6664uni6666uni6668uni6669uni666Euni666Funi6670uni6674uni6676uni667Auni6681uni6684uni6687uni6688uni6689uni668Euni6691uni6696uni6697uni6698uni669Duni66A2uni66A6uni66ABuni66AEuni66B4uni66B8uni66C4uni66C7uni66C9uni66D6uni66D9uni66DAuni66DCuni66DDuni66E0uni66F0uni66F2uni66F3uni66F4uni66F5uni66F7uni66F8uni66F9uni66FCuni66FDuni66FEuni66FFuni6700uni6703uni6708uni6709uni670Buni670Duni670Funi6714uni6715uni6716uni6717uni671Buni671Duni671Funi6726uni6727uni6728uni672Auni672Buni672Cuni672Duni672Euni6731uni6734uni6738uni673Auni673Duni673Funi6741uni6746uni6749uni674Euni674Funi6750uni6751uni6753uni6756uni675Cuni675Euni675Funi6760uni6761uni6762uni6763uni6764uni6765uni676Auni676Duni676Funi6771uni6773uni6775uni6777uni677Cuni677Euni677Funi6787uni6789uni678Buni678Cuni6790uni6795uni6797uni679Auni679Cuni679Duni67A0uni67A1uni67A2uni67A6uni67AFuni67B4uni67B6uni67B7uni67B8uni67B9uni67C1uni67C4uni67C6uni67CAuni67CEuni67CFuni67D0uni67D1uni67D3uni67D4uni67D8uni67DAuni67DDuni67DEuni67E2uni67E4uni67E7uni67E9uni67ECuni67EEuni67EFuni67F0uni67F1uni67F3uni67F4uni67F5uni67FBuni67FEuni67FFuni6802uni6803uni6804uni6813uni6816uni6817uni681Euni6821uni6822uni682Auni682Buni6832uni6834uni6838uni6839uni683Cuni683Duni6841uni6842uni6843uni6846uni6848uni684Duni684Euni6850uni6851uni6853uni6854uni6859uni685Cuni685Duni685Funi6867uni6876uni687Funi6881uni6885uni6893uni6897uni689Buni689Duni689Funi68A0uni68A2uni68A6uni68A7uni68A8uni68ADuni68AFuni68B0uni68B1uni68B3uni68B5uni68B6uni68B9uni68BAuni68BCuni68C4uni68C6uni68C9uni68CBuni68CDuni68D2uni68D4uni68D5uni68D7uni68D8uni68DAuni68DFuni68E0uni68E1uni68EEuni68EFuni68F2uni68F9uni68FAuni6900uni6901uni6904uni6905uni6908uni690Buni690Cuni690Duni690Euni690Funi6912uni6919uni691Auni691Buni691Cuni6922uni6925uni6928uni6930uni6934uni6939uni693Duni693Funi694Auni6953uni6954uni6955uni695Auni695Cuni695Duni6960uni6961uni6962uni696Auni696Buni696Duni696Euni696Funi6973uni6974uni6975uni6977uni6978uni6979uni697Cuni697Duni6982uni698Auni698Euni6991uni6994uni6995uni699Buni699Cuni69A0uni69AEuni69B4uni69BEuni69BFuni69C1uni69C3uni69C7uni69CBuni69CCuni69CDuni69CEuni69D0uni69D3uni69D8uni69D9uni69DEuni69E7uni69EBuni69EDuni69FBuni69FDuni69FFuni6A02uni6A05uni6A0Buni6A13uni6A17uni6A19uni6A1Buni6A1Euni6A1Funi6A21uni6A23uni6A29uni6A2Auni6A2Buni6A35uni6A36uni6A38uni6A39uni6A3Auni6A3Duni6A44uni6A47uni6A48uni6A4Buni6A58uni6A59uni6A5Funi6A61uni6A66uni6A72uni6A7Funi6A80uni6A84uni6A8Duni6A8Euni6A90uni6A97uni6A9Cuni6AA2uni6AACuni6AAEuni6AB3uni6AB8uni6ABBuni6AC2uni6AC3uni6AD3uni6ADAuni6ADBuni6ADEuni6ADFuni6AE8uni6AFBuni6B04uni6B05uni6B0Auni6B12uni6B1Duni6B20uni6B21uni6B23uni6B27uni6B32uni6B37uni6B3Auni6B3Duni6B3Euni6B4Cuni6B4Euni6B50uni6B53uni6B54uni6B62uni6B63uni6B64uni6B66uni6B69uni6B6Auni6B6Funi6B73uni6B74uni6B79uni6B7Buni6B7Funi6B80uni6B84uni6B86uni6B89uni6B8Auni6B8Buni6B95uni6B96uni6B9Euni6BABuni6BAFuni6BB1uni6BB2uni6BB3uni6BB4uni6BB5uni6BB7uni6BBAuni6BBBuni6BBFuni6BC0uni6BC5uni6BC6uni6BCBuni6BCDuni6BCEuni6BD2uni6BD4uni6BD8uni6BDBuni6BDFuni6BEBuni6BECuni6BEFuni6BF3uni6C0Funi6C11uni6C13uni6C14uni6C17uni6C23uni6C34uni6C35uni6C37uni6C38uni6C3Auni6C3Euni6C40uni6C41uni6C42uni6C4Euni6C50uni6C55uni6C57uni6C5Auni6C5Duni6C5Euni6C5Funi6C60uni6C62uni6C6Auni6C70uni6C72uni6C73uni6C7Auni6C7Duni6C7Euni6C81uni6C83uni6C88uni6C8Cuni6C90uni6C93uni6C96uni6C99uni6C9Auni6CA1uni6CA2uni6CAAuni6CABuni6CAEuni6CB1uni6CB3uni6CB8uni6CB9uni6CBAuni6CBBuni6CBCuni6CBDuni6CBEuni6CBFuni6CC1uni6CC4uni6CC9uni6CCAuni6CCCuni6CD3uni6CD5uni6CD7uni6CD9uni6CDBuni6CDDuni6CE1uni6CE2uni6CE3uni6CE5uni6CE8uni6CEAuni6CEEuni6CEFuni6CF0uni6CF1uni6CF3uni6D0Buni6D12uni6D17uni6D19uni6D1Buni6D1Euni6D1Funi6D25uni6D29uni6D2Auni6D32uni6D35uni6D38uni6D3Buni6D3Duni6D3Euni6D41uni6D44uni6D45uni6D59uni6D5Auni6D5Cuni6D63uni6D66uni6D69uni6D6Auni6D6Cuni6D6Euni6D74uni6D77uni6D78uni6D79uni6D85uni6D88uni6D8Cuni6D8Euni6D93uni6D95uni6D99uni6D9Buni6D9Cuni6DAFuni6DB2uni6DB5uni6DB8uni6DBCuni6DC0uni6DC7uni6DCBuni6DD1uni6DD2uni6DD5uni6DD8uni6DD9uni6DE1uni6DE8uni6DEAuni6DEBuni6DECuni6DEEuni6DF1uni6DF3uni6DF5uni6DF7uni6DF9uni6DFBuni6E05uni6E07uni6E08uni6E09uni6E0Auni6E0Buni6E13uni6E15uni6E19uni6E1Auni6E1Buni6E20uni6E21uni6E23uni6E24uni6E25uni6E26uni6E29uni6E2Buni6E2Cuni6E2Duni6E2Funi6E38uni6E3Auni6E3Euni6E4Auni6E4Duni6E4Euni6E56uni6E58uni6E5Buni6E5Cuni6E5Funi6E67uni6E6Buni6E6Euni6E6Funi6E7Euni6E7Funi6E80uni6E82uni6E8Cuni6E8Funi6E90uni6E96uni6E9Cuni6E9Duni6E9Funi6EA2uni6EA5uni6EAAuni6EAFuni6EB2uni6EB6uni6EBAuni6EC2uni6EC4uni6EC5uni6EC9uni6ECBuni6ECCuni6ED1uni6ED3uni6ED4uni6ED5uni6EDDuni6EDEuni6EEFuni6EF2uni6EF4uni6EF8uni6EFEuni6EFFuni6F01uni6F02uni6F06uni6F09uni6F0Funi6F11uni6F13uni6F14uni6F15uni6F20uni6F22uni6F23uni6F2Buni6F2Cuni6F31uni6F38uni6F3Funi6F45uni6F54uni6F58uni6F5Buni6F5Cuni6F5Funi6F64uni6F66uni6F6Duni6F6Euni6F70uni6F74uni6F7Cuni6F81uni6F84uni6F86uni6F8Euni6F97uni6FA1uni6FA4uni6FAAuni6FB1uni6FB3uni6FB9uni6FC0uni6FC1uni6FC3uni6FC6uni6FD4uni6FD5uni6FD8uni6FDBuni6FE0uni6FE1uni6FE4uni6FEBuni6FEFuni6FF1uni6FFEuni7006uni700Buni700Funi7011uni7015uni7018uni701Duni701Euni701Funi7026uni7027uni702Cuni703Euni704Cuni7058uni7063uni706Buni706Cuni706Funi7070uni7078uni707Cuni707Duni7089uni708Auni708Euni7092uni7099uni70ACuni70ADuni70AEuni70B8uni70B9uni70BAuni70C8uni70CFuni70D9uni70DDuni70F9uni70FDuni7109uni7114uni7119uni711Auni7121uni7126uni7136uni713Cuni7149uni714Cuni714Euni7155uni7159uni7164uni7165uni7167uni7169uni716Cuni716Euni717Duni7184uni7188uni718Auni718Funi7194uni7199uni719Funi71A8uni71B1uni71B9uni71BEuni71C1uni71C3uni71C8uni71CEuni71D0uni71D2uni71D4uni71D5uni71D7uni71DFuni71E0uni71E5uni71E6uni71E7uni71EDuni71EEuni71F5uni71FBuni71FCuni71FFuni7200uni7206uni720Duni7210uni721Buni722Auni722Cuni722Duni7232uni7235uni7236uni723Auni723Buni723Duni723Euni723Funi7240uni7246uni7247uni7248uni724Cuni7252uni7259uni725Buni725Duni725Funi7261uni7262uni7267uni7269uni7272uni7274uni7279uni727Duni727Euni7280uni7282uni7292uni72A0uni72ACuni72ADuni72AFuni72B6uni72C2uni72C3uni72C4uni72C6uni72CEuni72D0uni72D2uni72D7uni72D9uni72DBuni72E0uni72E1uni72E2uni72E9uni72ECuni72EDuni72F7uni72F8uni72F9uni72FCuni72FDuni730Auni7316uni7317uni731Buni731Cuni731Duni731Funi7325uni7329uni732Auni732Buni732Euni732Funi7334uni7336uni7337uni733Euni733Funi7344uni7345uni734Funi7363uni7368uni736Auni7370uni7372uni7375uni7378uni737Auni7384uni7387uni7389uni738Buni7396uni739Funi73A9uni73B2uni73BBuni73C0uni73C2uni73C8uni73C9uni73CAuni73CDuni73CEuni73DEuni73E0uni73EAuni73EDuni73F8uni73FEuni7403uni7405uni7406uni7409uni7422uni7425uni7432uni7433uni7434uni7435uni7436uni743Auni743Funi7455uni7459uni745Auni745Buni745Cuni745Euni7460uni7463uni7464uni746Auni746Funi7470uni7473uni7476uni747Euni7483uni7487uni748Buni749Euni74A7uni74A8uni74B0uni74BDuni74CAuni74CFuni74D4uni74DAuni74DCuni74E2uni74E6uni74F6uni750Cuni750Duni7511uni7515uni7518uni751Auni751Cuni751Funi7523uni7525uni7526uni7528uni752Buni752Cuni7530uni7531uni7532uni7533uni7537uni7538uni753Auni753Buni7544uni7546uni7549uni754Buni754Cuni754Funi7551uni7554uni7559uni755Buni755Cuni755Duni7560uni7562uni7564uni7565uni7566uni756Auni756Buni756Duni7570uni7573uni7574uni7576uni7577uni7578uni757Funi7586uni7587uni758Auni758Buni758Euni758Funi7591uni7592uni75ABuni75B1uni75B2uni75B5uni75B8uni75B9uni75BCuni75BDuni75BEuni75C5uni75C7uni75CDuni75D2uni75D4uni75D5uni75D8uni75D9uni75DBuni75E2uni75E3uni75E9uni75F0uni75F4uni75FAuni760Duni7621uni7622uni7624uni7626uni7634uni7642uni7647uni764Cuni7652uni7656uni766Auni766Cuni7672uni7676uni7678uni767Auni767Buni767Cuni767Duni767Euni7684uni7686uni7687uni7688uni768Euni7690uni7693uni7696uni769Auni76AEuni76B0uni76BAuni76BFuni76C2uni76C3uni76C6uni76C8uni76CAuni76CDuni76D2uni76D7uni76DBuni76DCuni76DFuni76E1uni76E3uni76E4uni76E5uni76E7uni76EAuni76EEuni76F2uni76F4uni76F8uni76FEuni7701uni7707uni7708uni7709uni770Buni770Cuni771Buni771Euni771Funi7720uni7724uni7725uni7729uni7737uni7738uni773Auni773Cuni7740uni7747uni775Auni775Buni7761uni7763uni7765uni7766uni7768uni776Buni777Euni777Funi778Buni7791uni779Euni77A0uni77A5uni77ACuni77ADuni77B0uni77B3uni77B6uni77B9uni77BBuni77BCuni77C7uni77DBuni77DCuni77E2uni77E3uni77E5uni77E7uni77E9uni77EDuni77EEuni77EFuni77F3uni77FCuni7802uni780Cuni7812uni7814uni7815uni7820uni7825uni7826uni7827uni7832uni7834uni783Auni783Funi7845uni785Duni786Buni786Cuni786Funi7872uni787Cuni7881uni7887uni788Cuni788Duni788Euni7891uni7893uni7895uni7897uni789Auni78A3uni78A7uni78A9uni78AAuni78B5uni78BAuni78BCuni78C1uni78C5uni78C6uni78CAuni78CBuni78D0uni78D1uni78D4uni78DAuni78E7uni78E8uni78ECuni78EFuni78F4uni78FDuni7901uni7907uni790Euni7912uni7919uni792Auni792Buni792Cuni793Auni793Buni793Cuni793Euni7940uni7941uni7947uni7948uni7949uni7950uni7953uni7955uni7956uni7957uni795Auni795Duni795Euni795Funi7960uni7962uni7965uni7968uni796Duni7977uni797Auni797Funi7980uni7981uni7984uni7985uni798Auni798Duni798Euni798Funi79A6uni79AAuni79AEuni79B0uni79B3uni79B8uni79B9uni79BAuni79BDuni79BEuni79BFuni79C0uni79C1uni79CBuni79D1uni79D2uni79D5uni79D8uni79DFuni79E3uni79E4uni79E6uni79E9uni79EDuni79F0uni79FBuni7A00uni7A08uni7A0Buni7A0Euni7A14uni7A17uni7A18uni7A19uni7A1Auni7A1Cuni7A1Funi7A20uni7A2Euni7A32uni7A3Buni7A3Cuni7A3Duni7A3Funi7A40uni7A42uni7A43uni7A46uni7A4Duni7A4Euni7A4Funi7A50uni7A57uni7A62uni7A63uni7A6Buni7A70uni7A74uni7A76uni7A79uni7A7Auni7A7Duni7A7Funi7A81uni7A83uni7A84uni7A88uni7A92uni7A93uni7A9Funi7AA9uni7AAAuni7AAEuni7AAFuni7ABAuni7AC3uni7AC4uni7AC8uni7ACBuni7ACFuni7AD3uni7AD5uni7AD9uni7ADAuni7ADCuni7ADDuni7ADFuni7AE0uni7AE1uni7AE2uni7AE3uni7AE5uni7AE6uni7AEAuni7AEDuni7AEFuni7AF0uni7AF6uni7AF8uni7AF9uni7AFAuni7AFFuni7B06uni7B08uni7B0Funi7B11uni7B19uni7B1Buni7B20uni7B25uni7B26uni7B2Cuni7B39uni7B45uni7B46uni7B48uni7B49uni7B4Buni7B4Duni7B4Funi7B50uni7B51uni7B52uni7B54uni7B56uni7B5Duni7B67uni7B6Cuni7B75uni7B86uni7B87uni7B8Buni7B92uni7B94uni7B95uni7B97uni7B9Duni7B9Funi7BA1uni7BAAuni7BADuni7BB1uni7BB8uni7BC0uni7BC4uni7BC6uni7BC7uni7BC9uni7BCFuni7BDDuni7BE0uni7BE4uni7BE9uni7BEDuni7BF3uni7C00uni7C12uni7C17uni7C21uni7C2Auni7C38uni7C3Euni7C3Funi7C40uni7C43uni7C4Cuni7C4Duni7C50uni7C56uni7C60uni7C64uni7C73uni7C7Euni7C81uni7C82uni7C83uni7C89uni7C8Buni7C8Duni7C90uni7C92uni7C95uni7C97uni7C98uni7C9Buni7C9Funi7CA1uni7CA5uni7CA7uni7CA8uni7CADuni7CAEuni7CB1uni7CB2uni7CB3uni7CB9uni7CBDuni7CBEuni7CC0uni7CC2uni7CC5uni7CCAuni7CCEuni7CD2uni7CD6uni7CD8uni7CDEuni7CDFuni7CE0uni7CE2uni7CE7uni7CEFuni7CF2uni7CF8uni7CFAuni7CFBuni7CFEuni7D00uni7D02uni7D04uni7D05uni7D06uni7D0Buni7D0Duni7D10uni7D14uni7D15uni7D17uni7D18uni7D19uni7D1Auni7D1Buni7D20uni7D21uni7D22uni7D2Buni7D2Cuni7D2Funi7D30uni7D32uni7D33uni7D35uni7D39uni7D3Auni7D3Funi7D42uni7D43uni7D44uni7D46uni7D4Buni7D4Cuni7D4Euni7D50uni7D56uni7D5Euni7D61uni7D62uni7D63uni7D66uni7D68uni7D71uni7D72uni7D75uni7D76uni7D79uni7D7Duni7D89uni7D8Funi7D93uni7D99uni7D9Auni7D9Cuni7D9Funi7DA2uni7DACuni7DADuni7DB0uni7DB1uni7DB2uni7DB4uni7DB8uni7DBAuni7DBBuni7DBDuni7DBEuni7DBFuni7DCAuni7DCBuni7DCFuni7DD1uni7DD2uni7DD8uni7DDAuni7DDDuni7DDEuni7DE0uni7DE4uni7DE8uni7DE9uni7DECuni7DEFuni7DF2uni7DF4uni7DFBuni7E01uni7E04uni7E09uni7E0Auni7E0Buni7E12uni7E1Buni7E1Euni7E1Funi7E22uni7E23uni7E26uni7E2Buni7E2Euni7E31uni7E32uni7E35uni7E37uni7E39uni7E3Auni7E3Buni7E3Duni7E3Euni7E41uni7E4Auni7E4Buni7E4Duni7E54uni7E55uni7E56uni7E59uni7E5Auni7E5Duni7E5Euni7E67uni7E6Auni7E6Buni7E6Duni7E70uni7E79uni7E7Buni7E7Cuni7E7Duni7E7Funi7E82uni7E89uni7E8Cuni7E8Euni7E8Funi7E93uni7E94uni7E96uni7F36uni7F38uni7F3Auni7F50uni7F51uni7F52uni7F54uni7F60uni7F6Auni7F6Buni7F6Euni7F70uni7F72uni7F75uni7F77uni7F79uni7F83uni7F85uni7F86uni7F88uni7F8Auni7F8Cuni7F8Euni7F9Auni7F9Duni7F9Euni7FA4uni7FA8uni7FA9uni7FAEuni7FAFuni7FB2uni7FB6uni7FB9uni7FBDuni7FC1uni7FC5uni7FCCuni7FD2uni7FD4uni7FE0uni7FE1uni7FEBuni7FF0uni7FF3uni7FFBuni7FFCuni8000uni8001uni8002uni8003uni8004uni8005uni8006uni800Cuni8010uni8012uni8015uni8017uni8033uni8036uni803Buni803Duni8046uni804Auni8052uni8056uni8058uni805Auni805Euni805Funi8061uni8062uni806Funi8070uni8072uni8073uni8074uni8076uni8077uni807Duni807Euni807Funi8084uni8085uni8086uni8087uni8089uni808Buni808Cuni8096uni8098uni809Auni809Buni809Duni80A1uni80A2uni80A5uni80A9uni80AAuni80AFuni80B1uni80B2uni80B4uni80BAuni80C3uni80C4uni80C6uni80CCuni80CEuni80D6uni80D9uni80DAuni80DBuni80DDuni80DEuni80E1uni80E4uni80E5uni80EFuni80F1uni80F4uni80F8uni80FCuni80FDuni8102uni8105uni8106uni8107uni8108uni810Auni811Auni811Buni8129uni812Funi8131uni8133uni8139uni813Euni814Buni814Euni8150uni8151uni8153uni8154uni8155uni8165uni8166uni816Buni816Euni8170uni8171uni8178uni8179uni817Auni817Funi8180uni8182uni8188uni818Auni818Funi8195uni819Auni819Cuni819Duni81A0uni81A3uni81A8uni81B0uni81B3uni81B5uni81BDuni81BEuni81BFuni81C0uni81C2uni81C6uni81C9uni81CDuni81D1uni81D3uni81D8uni81D9uni81DAuni81DFuni81E0uni81E3uni81E5uni81E8uni81EAuni81EDuni81F3uni81F4uni81FAuni81FCuni8201uni8205uni8207uni8208uni820Cuni820Euni8210uni8212uni8216uni8217uni8218uni821Buni821Cuni821Euni821Funi8229uni822Auni822Buni822Cuni822Euni8233uni8235uni8236uni8237uni8239uni8240uni8247uni8258uni8259uni825Auni825Funi8264uni8266uni8268uni826Buni826Euni826Funi8271uni8272uni8276uni8278uni8279uni827Euni828Buni828Duni8292uni8299uni829Duni82A5uni82A6uni82ADuni82AFuni82B1uni82B3uni82B8uni82B9uni82BBuni82BDuni82C5uni82D1uni82D3uni82D4uni82D7uni82DBuni82DFuni82E5uni82E6uni82E7uni82EBuni82F1uni82F4uni82FAuni82FBuni8302uni8304uni8305uni8309uni830Euni8317uni831Cuni8328uni832Buni8332uni8336uni8338uni8339uni8340uni8345uni8349uni834Auni834Funi8352uni8358uni8377uni837Buni837Cuni8389uni838Auni839Euni83A2uni83ABuni83B1uni83BDuni83C5uni83CAuni83CCuni83CEuni83D3uni83D6uni83DCuni83DFuni83E9uni83EBuni83EFuni83F0uni83F1uni8403uni8404uni840Cuni840Duni840Euni8413uni8420uni8429uni842Cuni8431uni843Duni8449uni844Euni8457uni845Buni8461uni8463uni8466uni846Cuni846Duni8471uni8475uni847Auni848Buni8490uni8494uni8499uni849Cuni849Funi84A1uni84B2uni84B8uni84BBuni84BCuni84BFuni84C4uni84C6uni84C9uni84CBuni84D1uni84DAuni84ECuni84EEuni84FCuni8500uni8511uni8513uni8517uni851Auni8521uni8526uni852Duni8535uni853Duni8541uni8543uni8548uni8549uni854Auni854Euni8557uni8568uni8569uni856Auni856Duni857Euni8580uni8584uni8587uni858Auni8594uni8597uni8599uni85A6uni85A8uni85A9uni85AAuni85ABuni85ACuni85AEuni85AFuni85C1uni85C9uni85CDuni85CFuni85DDuni85E4uni85E5uni85E9uni85EAuni85F7uni85F9uni85FBuni8602uni8606uni8607uni860Auni861Auni862Duni864Duni864Euni8650uni8654uni8655uni865Auni865Cuni865Euni865Funi866Buni8671uni8679uni867Buni868Auni8695uni86A4uni86A9uni86ABuni86AFuni86B0uni86B6uni86C4uni86C6uni86C7uni86C9uni86CBuni86CDuni86CEuni86D9uni86DBuni86DEuni86DFuni86E4uni86EDuni86EEuni86EFuni86F8uni86F9uni86FEuni8700uni8702uni8703uni8706uni8709uni870Duni8718uni871Cuni8729uni8734uni8737uni873Buni873Funi8749uni874Buni874Euni8755uni8757uni8759uni875Funi8760uni8763uni8766uni876Auni8774uni8776uni8778uni877Funi8782uni878Duni879Funi87A2uni87B3uni87BAuni87BBuni87C0uni87C4uni87C6uni87C7uni87CBuni87D0uni87E0uni87EFuni87F2uni87F7uni87F9uni87FBuni87FEuni8805uni880Duni8815uni8816uni8822uni8823uni8831uni883Buni8840uni8846uni884Cuni884Duni8852uni8853uni8857uni8859uni885Buni885Duni885Euni8861uni8863uni8864uni8868uni886Buni8870uni8877uni887Duni887Euni887Funi8881uni8882uni8888uni888Buni888Duni8892uni8896uni8897uni8899uni88A2uni88ABuni88AEuni88B1uni88B4uni88B7uni88BFuni88C1uni88C2uni88C3uni88C4uni88C5uni88CFuni88D4uni88D5uni88DCuni88DDuni88DFuni88E1uni88E8uni88F2uni88F3uni88F4uni88F8uni88FCuni88FDuni88FEuni8904uni8907uni890Auni890Cuni8910uni8912uni8913uni891Duni8925uni892Auni8936uni8938uni893Buni8941uni8944uni894Cuni8956uni895Euni895Funi8964uni8966uni8972uni8974uni8977uni897Euni897Funi8980uni8981uni8986uni8987uni898Buni898Funi8996uni8997uni899Auni89A7uni89AAuni89B3uni89BAuni89BDuni89BFuni89D2uni89DAuni89DCuni89DDuni89E3uni89E6uni89E7uni89F8uni8A00uni8A01uni8A02uni8A03uni8A08uni8A0Auni8A0Cuni8A0Euni8A10uni8A13uni8A16uni8A17uni8A18uni8A1Buni8A1Duni8A1Funi8A23uni8A2Auni8A2Duni8A31uni8A33uni8A34uni8A36uni8A3Auni8A3Buni8A3Cuni8A41uni8A46uni8A48uni8A50uni8A51uni8A52uni8A54uni8A55uni8A5Buni8A5Euni8A60uni8A62uni8A63uni8A66uni8A69uni8A6Buni8A6Duni8A6Euni8A70uni8A71uni8A72uni8A73uni8A82uni8A85uni8A87uni8A89uni8A8Cuni8A8Duni8A93uni8A95uni8A98uni8A9Euni8AA0uni8AA3uni8AA4uni8AA6uni8AACuni8AADuni8AB0uni8AB2uni8AB9uni8ABCuni8ABFuni8AC2uni8AC4uni8AC7uni8ACBuni8ACCuni8ACDuni8ACFuni8AD2uni8AD6uni8ADAuni8ADCuni8ADEuni8AE0uni8AE1uni8AE2uni8AE4uni8AE6uni8AE7uni8AEBuni8AEDuni8AEEuni8AF1uni8AF7uni8AF8uni8AFAuni8AFEuni8B00uni8B01uni8B02uni8B04uni8B0Euni8B10uni8B16uni8B17uni8B19uni8B1Auni8B1Buni8B1Duni8B20uni8B21uni8B26uni8B28uni8B2Buni8B2Cuni8B33uni8B39uni8B3Euni8B41uni8B49uni8B4Euni8B4Funi8B56uni8B58uni8B5Auni8B5Buni8B5Cuni8B5Funi8B66uni8B6Buni8B6Cuni8B6Funi8B70uni8B72uni8B77uni8B80uni8B83uni8B8Auni8B8Cuni8B90uni8B92uni8B93uni8B96uni8B99uni8B9Auni8C37uni8C46uni8C48uni8C4Auni8C4Cuni8C55uni8C5Auni8C61uni8C6Auni8C6Buni8C78uni8C79uni8C8Auni8C8Cuni8C8Duni8C8Euni8C9Duni8C9Euni8CA0uni8CA1uni8CA2uni8CA7uni8CA8uni8CA9uni8CAAuni8CABuni8CACuni8CAFuni8CB0uni8CB3uni8CB4uni8CB6uni8CB7uni8CB8uni8CBBuni8CBCuni8CBDuni8CBFuni8CC0uni8CC1uni8CC2uni8CC3uni8CC4uni8CC7uni8CC8uni8CCAuni8CCDuni8CCEuni8CD1uni8CD3uni8CDBuni8CDCuni8CDEuni8CE0uni8CE2uni8CE3uni8CE4uni8CE6uni8CEAuni8CEDuni8CFBuni8CFCuni8CFDuni8D04uni8D05uni8D08uni8D0Auni8D0Buni8D0Duni8D10uni8D14uni8D16uni8D64uni8D66uni8D6Buni8D70uni8D73uni8D74uni8D77uni8D85uni8D8Auni8D99uni8DA3uni8DA8uni8DB3uni8DBAuni8DBEuni8DC2uni8DCBuni8DCCuni8DCFuni8DD6uni8DDAuni8DDDuni8DDFuni8DE1uni8DE3uni8DE8uni8DEAuni8DEFuni8DF3uni8DF5uni8E08uni8E09uni8E0Auni8E0Funi8E1Duni8E1Euni8E1Funi8E2Auni8E35uni8E42uni8E44uni8E48uni8E49uni8E4Cuni8E59uni8E5Funi8E63uni8E64uni8E72uni8E74uni8E7Cuni8E81uni8E85uni8E87uni8E8Auni8E8Duni8E91uni8E93uni8E94uni8E99uni8EA1uni8EABuni8EACuni8EAFuni8EB0uni8EB1uni8EBEuni8EC6uni8ECAuni8ECBuni8ECCuni8ECDuni8ED2uni8EDFuni8EE2uni8EEBuni8EF8uni8EFBuni8EFCuni8EFDuni8EFEuni8F03uni8F05uni8F09uni8F0Auni8F0Cuni8F13uni8F14uni8F15uni8F19uni8F1Buni8F1Cuni8F1Duni8F1Funi8F26uni8F29uni8F2Auni8F2Funi8F33uni8F38uni8F3Buni8F3Funi8F44uni8F46uni8F49uni8F4Duni8F4Euni8F5Cuni8F5Funi8F61uni8F62uni8F63uni8F64uni8F9Buni8F9Cuni8F9Euni8F9Funi8FA3uni8FA7uni8FA8uni8FAEuni8FB0uni8FB1uni8FB2uni8FB5uni8FB6uni8FBAuni8FBBuni8FBCuni8FBFuni8FC2uni8FC4uni8FC5uni8FCEuni8FD1uni8FD4uni8FE6uni8FE9uni8FEAuni8FEBuni8FEDuni8FF0uni8FF7uni8FF9uni8FFDuni9000uni9001uni9003uni9005uni9006uni900Duni900Funi9010uni9013uni9014uni9017uni9019uni901Auni901Duni901Euni901Funi9020uni9021uni9022uni9023uni902Euni9031uni9032uni9038uni903Cuni9041uni9042uni9045uni9047uni904Auni904Buni904Duni904Euni9053uni9054uni9055uni9059uni905Cuni9060uni9061uni9063uni9065uni9069uni906Duni906Euni9075uni9077uni9078uni907Auni907Cuni907Duni907Funi9081uni9082uni9084uni9087uni9089uni908Auni908Funi9091uni9099uni90A3uni90A6uni90A8uni90AAuni90B1uni90B8uni90C1uni90CAuni90CEuni90DBuni90E1uni90E4uni90E8uni90EDuni90F5uni90F7uni90FDuni9102uni9112uni9119uni912Duni9132uni9149uni914Auni914Buni914Cuni914Duni914Euni9152uni9154uni9156uni9158uni9162uni9163uni9169uni916Auni916Cuni9175uni9177uni9178uni9182uni9187uni9189uni918Buni918Duni9190uni9192uni9197uni919Cuni91A4uni91AAuni91ABuni91B4uni91B8uni91BAuni91C0uni91C6uni91C7uni91C8uni91C9uni91CBuni91CCuni91CDuni91CEuni91CFuni91D1uni91D8uni91DBuni91DCuni91DDuni91DFuni91E3uni91E6uni91E7uni91F5uni91F6uni91FCuni920Duni920Euni9211uni9214uni9215uni921Euni922Cuni9234uni9237uni923Funi9244uni9248uni9249uni924Buni9250uni9257uni925Auni925Buni925Euni9262uni9264uni9266uni9271uni927Euni9280uni9283uni9285uni9291uni9295uni9296uni9298uni929Auni929Buni929Cuni92ADuni92B9uni92CFuni92D2uni92E4uni92EAuni92EDuni92F2uni92F3uni92F8uni92FAuni92FCuni9306uni930Funi9310uni9318uni931Auni9320uni9323uni9326uni9328uni932Buni932Cuni932Euni932Funi9332uni933Buni9344uni934Buni934Duni9354uni9356uni935Buni935Cuni9360uni936Cuni936Euni9375uni937Cuni937Euni938Cuni9394uni9396uni9397uni939Auni93A7uni93ACuni93ADuni93AEuni93B0uni93C3uni93C8uni93D1uni93D7uni93DDuni93E1uni93E4uni9403uni9407uni9410uni9414uni9418uni9419uni941Auni9421uni9435uni9438uni9444uni9451uni9453uni945Auni945Euni9460uni946Auni9475uni9477uni947Cuni947Duni947Euni947Funi9577uni9580uni9582uni9583uni9589uni958Buni958Funi9591uni9593uni9594uni9596uni9598uni95A2uni95A3uni95A4uni95A5uni95A7uni95B2uni95BBuni95BEuni95C7uni95CAuni95CCuni95CDuni95D5uni95D6uni95D8uni95E2uni961Cuni961Duni9621uni962Auni962Euni962Funi9632uni963Buni963Funi9640uni9642uni9644uni964Buni964Cuni964Duni964Funi9650uni965Buni965Cuni965Duni9662uni9663uni9664uni9665uni9666uni966Auni966Cuni9670uni9672uni9673uni9675uni9676uni9677uni9678uni967Auni967Duni9685uni9686uni9688uni968Auni968Buni968Duni968Euni968Funi9694uni9695uni9697uni9698uni9699uni969Buni969Cuni96A0uni96A3uni96A7uni96AAuni96B4uni96B6uni96B7uni96B9uni96BBuni96BCuni96C0uni96C1uni96C4uni96C5uni96C6uni96C7uni96C9uni96CCuni96CDuni96CEuni96D1uni96D6uni96D9uni96DBuni96DCuni96E2uni96E3uni96E8uni96EAuni96EBuni96F0uni96F2uni96F6uni96F7uni96F9uni96FBuni9700uni9707uni970Auni970Duni9716uni971Cuni971Euni9727uni9730uni9732uni9739uni9742uni9744uni9748uni9752uni9756uni9759uni975Cuni975Euni9761uni9762uni9768uni9769uni976Duni9771uni9774uni977Auni977Cuni9784uni9785uni9786uni978Buni978Duni9790uni9798uni979Cuni97A0uni97A3uni97A6uni97A8uni97ADuni97B3uni97B4uni97C3uni97CBuni97D3uni97DCuni97EDuni97EEuni97F3uni97F6uni97FBuni97FFuni9801uni9802uni9803uni9805uni9806uni9808uni980Cuni9810uni9811uni9812uni9813uni9817uni9818uni981Auni9824uni982Cuni982Duni9830uni9834uni9837uni9838uni983Buni983Cuni983Duni9846uni984Cuni984Duni984Euni9854uni9855uni9858uni985Buni985Euni9867uni986Funi9870uni98A8uni98AAuni98AFuni98B1uni98C4uni98DBuni98DCuni98DFuni98E0uni98E2uni98E9uni98EBuni98EDuni98EEuni98EFuni98F2uni98F4uni98FCuni98FDuni98FEuni9903uni9905uni9909uni990Auni990Cuni9910uni9913uni9918uni991Euni9921uni9928uni9942uni9945uni9949uni994Buni994Cuni9952uni9957uni9996uni9999uni99A8uni99ACuni99ADuni99AEuni99B3uni99B4uni99C1uni99C4uni99C5uni99C6uni99C8uni99D0uni99D2uni99D5uni99D8uni99DDuni99EDuni99EEuni99F1uni99F2uni99FBuni99FFuni9A01uni9A0Euni9A12uni9A13uni9A19uni9A28uni9A2Buni9A30uni9A37uni9A3Euni9A43uni9A45uni9A4Duni9A55uni9A57uni9A5Auni9A5Buni9A5Funi9A62uni9A64uni9A69uni9A6Buni9AA8uni9AB8uni9AC0uni9AC4uni9ACFuni9AD1uni9AD4uni9AD8uni9AD9uni9ADFuni9AEAuni9AEDuni9AEEuni9AF7uni9B06uni9B18uni9B1Auni9B25uni9B28uni9B2Funi9B31uni9B32uni9B3Cuni9B41uni9B42uni9B43uni9B44uni9B45uni9B4Duni9B4Euni9B4Funi9B51uni9B54uni9B5Auni9B6Funi9B83uni9B87uni9B8Euni9B91uni9B92uni9B93uni9B96uni9B97uni9B9Funi9BA0uni9BA8uni9BAAuni9BABuni9BADuni9BAEuni9BC6uni9BC9uni9BD1uni9BD2uni9BD6uni9BDBuni9BE3uni9BE8uni9BF0uni9BF1uni9BF5uni9C06uni9C08uni9C09uni9C0Auni9C0Duni9C10uni9C13uni9C14uni9C21uni9C24uni9C2Duni9C2Funi9C39uni9C3Auni9C3Buni9C3Euni9C46uni9C47uni9C48uni9C52uni9C57uni9C5Auni9C60uni9C67uni9C78uni9CE5uni9CE9uni9CF3uni9CF4uni9CF6uni9D07uni9D09uni9D0Euni9D1Buni9D1Funi9D26uni9D28uni9D2Buni9D2Cuni9D3Buni9D5Cuni9D5Euni9D60uni9D61uni9D6Cuni9D6Funi9D7Auni9D89uni9D8Funi9D9Auni9DAFuni9DB2uni9DB4uni9DC4uni9DEDuni9DF2uni9DF9uni9DFAuni9DFDuni9E1Auni9E1Euni9E75uni9E78uni9E79uni9E7Funi9E92uni9E93uni9E97uni9E9Funi9EA5uni9EA6uni9EA9uni9EB5uni9EB9uni9EBAuni9EBBuni9EBEuni9EBFuni9EC4uni9ECDuni9ECEuni9ED2uni9ED8uni9ED9uni9EDBuni9EDCuni9EDEuni9EF4uni9EF9uni9EFDuni9F08uni9F0Euni9F13uni9F20uni9F21uni9F3Buni9F3Euni9F4Auni9F4Buni9F4Euni9F52uni9F5Funi9F61uni9F62uni9F67uni9F6Auni9F6Cuni9F77uni9F8Duni9F95uni9F9Cuni9FA0uniFEFFuniFF01uniFF02uniFF03uniFF04uniFF05uniFF06uniFF07uniFF08uniFF09uniFF0AuniFF0BuniFF0CuniFF0DuniFF0EuniFF0FuniFF10uniFF11uniFF12uniFF13uniFF14uniFF15uniFF16uniFF17uniFF18uniFF19uniFF1AuniFF1BuniFF1CuniFF1DuniFF1EuniFF1FuniFF20uniFF21uniFF22uniFF23uniFF24uniFF25uniFF26uniFF27uniFF28uniFF29uniFF2AuniFF2BuniFF2CuniFF2DuniFF2EuniFF2FuniFF30uniFF31uniFF32uniFF33uniFF34uniFF35uniFF36uniFF37uniFF38uniFF39uniFF3AuniFF3BuniFF3CuniFF3DuniFF3EuniFF3FuniFF40uniFF41uniFF42uniFF43uniFF44uniFF45uniFF46uniFF47uniFF48uniFF49uniFF4AuniFF4BuniFF4CuniFF4DuniFF4EuniFF4FuniFF50uniFF51uniFF52uniFF53uniFF54uniFF55uniFF56uniFF57uniFF58uniFF59uniFF5AuniFF5BuniFF5CuniFF5DuniFF5EuniFF5FuniFF60uniFF61uniFF62uniFF63uniFF64uniFF65uniFF66uniFF67uniFF68uniFF69uniFF6AuniFF6BuniFF6CuniFF6DuniFF6EuniFF6FuniFF70uniFF71uniFF72uniFF73uniFF74uniFF75uniFF76uniFF77uniFF78uniFF79uniFF7AuniFF7BuniFF7CuniFF7DuniFF7EuniFF7FuniFF80uniFF81uniFF82uniFF83uniFF84uniFF85uniFF86uniFF87uniFF88uniFF89uniFF8AuniFF8BuniFF8CuniFF8DuniFF8EuniFF8FuniFF90uniFF91uniFF92uniFF93uniFF94uniFF95uniFF96uniFF97uniFF98uniFF99uniFF9AuniFF9BuniFF9CuniFF9DuniFF9EuniFF9FuniFFE0uniFFE1uniFFE2uniFFE3uniFFE4uniFFE5uniFFE6EXy3VZ3p\\\\Z-xxZZZnxxxxxMM))xxxxxxxxxxZZ2JnJnJxJnnnnnJJJJJJJTTTTTTZ2Z\Txx{xJx|gT\xJTgxx8cdggg{9JJggg{ggg{xggg{:ggg{g{Jgg{gnxn{{Jgg{{xIn{nTngnTnnnngJgJ{gxJgxJgggxJg2{g9gTggg{gxnxnTxxxxnJxxxnndnJxZ,xJxxxJxxZ,nn@TTTxTJ222ggnnnnggggX)))JXXxJgxJggxxngxg)gggqgqgqgqgqgqxJxJxnTT{JXX{XnJTJf:[JTxJx!nxJxJTJvpv22ZZZ99||ggFggMMGG{u9\gv|\Z    TTTZZnTZTJJJMggggggggxxxxxggggJxTxJnJnTTTTnJTJJJTAJTJ{{gggxnxgnTTxJxJTnwTJJJnxJJnxTJxxxxxxxxxxxxxJnMTTJTJT{TTTTJTJJTTnTTTTTTTTJJMg{ngJJn{nTTngg{TxTZgxJxJgxJE NxJ q  {xJTTTxJTTnTTTTxJTTThTTTTxJxJ{TTTTTTn{{J{xJ{{{T{{xJ{{{g{T{TTTJw?OO;@g))EE{Jw?OO;@gw?nxJw?OO;@gggw?Z,Tw?ggw?Z,gTw?\\\\\\\\\2ZZZZZZj\xxZZZZZZee\xpHpHxx!caaTZZ2ZZ,,,xxxxxxxxxMM'ukaammx8888PP,,xx,,Ud{ddP\xCRC----%%--sd((--((--%%r!!{{1kE94ZW9108 >4S?VG//<nn4>=L-\5IMt  u#[S\ <x93BD9CngxCIdk3Q s-a& r93A< I LI S n S yId  ]QM?q4/q/  KS? {ifU3+u{u&Z    sgbCl5H_f$WaM\?59WWW%52+7+%R#7LVlM)*&C>999v%/:WA> 25\W&&\iav7Wa?WWW/& &!+!!+5+222\2%002:222/222522)-H22222-20!22+""2022$+2-222022*#/(-)22%7/2()3$2(+2!+2+(2!2'-%2%+22 2222222%82222-/222 +&22%+&+3(2 222&2#*2%)!&2+2*32+222*33#&&/,2!2-2(*'2'&2,2&-(22&3-!20#)0 22&( (20!* 22#3! 3Ii XW&?A/5+F9I1& +Z0U-s\/F995M(/M%]%XPWM&N/HCaWWWMWWRWHT5U5-SU&-F&M+M#+)DZZ3MMM7M+U@R\/WWv?qqHCEF;)F*F55F49FAF)5F&5++%FF<++F F3#< F9FC< ++<F3#%/:77'4&74(4)44$&+++44+M+44M0&&4 4&,-3&44%A25?RMMMMMMMMpqRMMM29X+1&(5WW+%#&5&+2MC77W47&<7\\WWRWWWMWRWWWh4##a\_#iW5+W<7?0(v+kWa5a]i\%<("5RW]W"2+R5MD(>U W7"\M-:!"0W)&H5W\WNRM/\CMW5C+W.W5C-N0'9"(1SW%_$R!&-!HM&(NW9(70+MWR24MS&4WR%R WW)NW-->WW*!M"7M9W&9&+352!IH!-#09M+R%5(W+(++,%"R+(!K229)!N(ND +5&  #++/ 5DM&&ID 9F#MMMRMMHMMMHMMHHHHHHHHHHHHHHHH_(/H4:>H#%)H0!+5H:H1C2F!H9HH++9H-#(5+)%  #HRRH"HH7H #H&H#HHHI4/!+-%*H5+9! I )C5$++H%2%!%#C!C>%#HM55*44!!!H) )R(* M*)5d+++C+/#%+&%0% %5<<* #..."....+...<%..+&.+&.+.9.&#.....((+7.......U.&%).0.......!...!..#.M..#*\DR7'&R9C$!>%7!M%%%%%%%%   5!-2& +5&&5N555&05%S\\SSROPSPPPOPPOPKMPPKKFFFFF959++M:/-:29$:3+9+ !++2:4&&:%%++#+2:&&5&#-+:+:&D&(:!:# (&5!!&(!LWNGz#lRfaaab/&R++5!+/N+145545!5*555 5&5  \W&\ !/8949,aCC-/WW75 W5 ($$(**W\?W5</&C'WN%PW#HMP(752BC7=550C)%2+((2+2(!!2(('!(%(((((%(!'%'%!'<57WW5--/9+'-5*-5)'$$+5-R&55554"!5# 5M5'5$75M&55/5&549 5 +%5$&/52R5+5M5*&%5!5*&R&5##552(555655K5 (55.+%+5 9/55-55&5'R)%H(5+ 55 52%5&*%9*5%5,("2"!/0*-00-aWR:RRHRC555555555555-5W+55-55555!55-5+&5+55-5555+#15$'5555)0)059535*+5&5-5#!(5%&5+055%555555#+&255&5&)-55*#"552%+55(!*5"555+-55%55552555555$05!+(!552&&*5/4'#3 !5555-!55#5>555$0#5(!5++&''''%'''+#'$''&%&&%'*& &' *0-5570/995/59&%%%dWWMN>W%NaSMRMNNS)N%NR*+'WRMUUNR!R5RIW M4W NH5+N%R>R%H<NR5R4 H(>#5HMHa-%WN N<0MMPN0*-+5/: ++++5&55455+555++55"555+5!+45+5!5++'555555%55*5'M+5155+5(0)%5#&1$55+M5-5'5555+05+(5:5+5+5505WW!55-!5&0+(55)55R5+#2,*055> &55%54+5<% 5!,550!5 55&)+5+5+-&* !(#"+!)5+55(+555 &550#-5+&-55-#555555/ 555,&54*5+*5/(5$+9&5 ( ,5&5555(*/5)5-5('5#555-% !5 #*( 0555!555%(*,)**"*)**)*Ha<*+W!W\\>-&"5* )MH**PP6255P65P\\+FRC-!99W/5@5(5AA5A)4AA$WA/>A+AA-A7>*55+55>AAA+@%A5-A&A++AA? $7=4AA>9+#A(@5@-($A/5&A#-*9A"5A7A!*5%9%4A>A A%A4AA@ A*AAA+%55+&("7-5>+A!AA9+A#A#>>#>+4AAA5AA/,5A&2A55 AA9AAA*+A%A)*/@(-*0A(A#%A>-44#'!%AA *%+A++/%39001AA2+# #A#9AAAA@@(+@A A0A!/A5A# +A%!(5H?\!"@?)-5?3'!9'W&R 2)'%+R?5W??%?C04R&9&%(3?%#9 ?4?!>?4+4!?#??C%775Q+*P65%5<5Z555 '&55!5K&*,,",,,,,,,),$,!&%,+,,%,,#,++ ,,#%#,,)#,#$-*#/ %'#++di"&W-+$W0RW-"&5(5WRM!W55RRR4RR75%-2*!$N,<((-%!IH M*CCl R%*5 :255MMi#W+SRW(+-'MM?5/-!"H!'(97MH!M#,M<k+!DJJJ;W#D&!&%&&zR\.M(--) )R0<4W#59-5*W7N+5+RU5-#:S! W+>(&5R%! 5' +5(W7+11ka5<<W5N95++W(4!WREP %$N+# IR !N#HM+3&+--K#(- DM"X555R5555))759%55*R"%W5$+5#05!5H5# 9W#<9>9955979+9/5"( 99/-5)#9999%*5&+D9 &#%#?   (<<<+*#<% +S<2<  1%!%%%)!!#)!&%&!!#!&&!555!55555#$5+ W5>&509!5++( 555*%% *555->---(--&-----$---+%!7-I---*--&#&---++-!'"-!--------*.-- --.-#%** I---# -.-.-.*.+(-.-.*.->,!,--&.++"&/!%'..#./ --.+..!*.*!MMNMIIHHIHI:I?D$-1%1W/5RM1M0M/79H5&X& & ]5+55\S>*-7@S+IM<%--%I% (%-!- 4N<5>NNN+MM%$!+H&M-&5'NN95+R):M#/?#>&4N%/2NF5!N79MN/NNNH*M99*(:/ (M(' ((R:_'/1+5C2-92  5 !         !       S*0 %%#%*%+*#-%%%%%%%+%%%#/%%%%*%*%*%%%&%%#*&%*#+%%*%*#%+%*%%%%++#+%( %%+%%%**#%#+ %%( #( * % ++  % (%(%*    & * +   (*  (   ((* % (    #   & %  (  (((  "! #+M0/&ZW+4-5+6%-W$5(55!05 &451I&M55555-+# 50555,555555,054!7&+&* 55#! 5+5%5(.+(&+++*+)%55!+5(5#-(25--$5+"!)5(090+5#55755!05505&555#1#555&#%#5%(05(55WaWMMR55M&!!2PPU55MU5UNCU1UU-%P'U9U-(U+9D'%&USNU("?*!%0+A!%:5)-U&C>UUNM/*M5M!7++-R+5%5UHPPD+5)*M#+5IH&9/HH/ $<(*MR-N(KM-0%P0D#%I#% 0( $#*%*=\+\N%($))R!5M65R#M+*0+>M20+&/(+'6'$M&*P0N F"*9#/&#)*M!H! ##%%%%%%%N->+)/0NNNN /)':%+M+MN9M>(+%,5-DI+M<9II  +/%R/)5--///*!'-//////5/00//&//5%&!//#/!!&&+&&&\R(*;P<P4PM4:P/"-$43? P,4&,+>P02PMM/;+4!!+'M)M0$MKMPH$+%!>'2+0  PM&%/N;;R/P55P99"+,>P< &C-&PPHWW'W5A5*P':'N&3%5!+*R5RK7M2#4#9<9-9R9MC7<465<'<<</<5)<5<)<-+</%&<:7<5)<#<!</#5:<+%<%&4/9<<+<<-%< %<+<*<*+<< 6<9-/9+(+*5+<,+<< &#9< <<&&<0+0'%<<*(#NMMMMMMMMMMMMMMMMMMMMMIIMIMMPFPP>%NP%+1NP&'PD%%%+7 P7>+#"(+NN&N/#DNMH<(<%>( %5))-W)M!!)UMMMMNMMMMMMMMMHHHHHHHH+++5M?%::1+:*:(%04+":9:3+*+*+5*/MRKRNCIRRI507RR+R+D2R5+>RR%P*RR+:RR+MC<%ME9(2222)*2*&2'!212" 22(+2#.:(RRN/N55RR4()(&%!!'NN%+#R+R#&RIRR#9(#II#%<H!&H!!C,6,,,,(??)RM&%&"('M(+%% %/9%R#0(0+&-M C+1 # \Z-xxZ--sxxxxxaxxxxxxxxxx-s-2JnJnJxJnnnnnJJJJJJJTTTTTT-2---x%(55- s9A<ILISnSzIe]M?qq?}jfVu|ux<5ruby-asciidoctor-pdf-1.6.2/data/fonts/notoemoji-subset.ttf000066400000000000000000014027141416357056400236640ustar00rootroot00000000000000 @FFTMe;OS/2~tH`cmap ]}gasp glyfCoxPhead1eQ6hhea$hmtxloca \ maxp:( name> opost08j ͋F_< r/JV ys ( y3 (33f  GOOG@Xs  ( ( (;q 1R3nJ43r _YsjM,MYuh~V; 60zzzz>5Y????????}?=T}=xrgR 4&Rg3$HnZv0uPp,gp`vRZa71ev}hMGhRcpM\Tj;W}vs;S?mY%vrzgXcIBB3WQ7//8Xvn KkfM\G0-y}P;R/Z{ILC;;:,O!E//5>y(j\!P?-1222:)]0O5$AgUiG93Lh!wo:k3-w`s--s7BEX7CCY0d {hY=fY`  hhhh @B  N  wwLL118}          s    eVP4eeGPW-$_ rWHxHMoQ> YXXXa\\\\\\\\\\\           ,, hV@ #9####&&&&&:&S&`&c&f&h&{&&&&&&&&&&&&'' '''('4'D'G'd+P #0####&&&&&:&H&`&c&e&h&{&&&&&&&&&&&&'''''('3'D'G'd+P)&$ ٵٲٟٓxskfQJIEC?:86! ?  ##09########&&&&&&&&&:&:&H&S&`&`+&c&c,&e&f-&h&h/&{&{0&&1&&2&&3&&5&&7&&9&&:&&;&&<&&>&&?&&@''A'' B''G''H'('(I'3'4J'D'DL'G'GM'd'dN+P+PO P05q7|w) +>6@@JBK=PgC@[EO,,.7 ,,,,,L4|L@l  H DdHH L d!!d!# %0&4'(4(+ 2446 67@8x: :;<<@=L>?@ BDlFGITJ|LM0OQRHRSZ[_`ctfi<lnpPsLDL@lH, l4|\d@$̔ΤьҬd\@dL4HPxpl p 8 \ l! %&h')+<,l.14$9;>CFHLOpVZZ^dh4im,rvwz|L} X0TXPP|( xɌ,|P P(|0\8h,xHP(8  (  P#)+-,/0D17:?C$FXIKN P|RUVpYx[`^acegjmpnpxr,tXwz$|}(~|8`XPh< |XxL€x Έt8hx֠h<(ttTp D   \ph D#%$+4+/3l47:?ABFIPKXMNOQ(RSVae ghijlnp<qsyz|~, dp lDLTh<(4D|`p8|dΌШӤՀXP\,$  h  ,<(0TT!T"#%(&(l*+,-$-./D1434P567L8T::;x=d>`>@ABDEGHIJKMMOPRdTUWY Z@[D\d]X_`adtfghik@kmn8odp@s<suvXwwxzL|~8| T,t P(pP(L`$ Lh ͘ΘπФѬҼӨՄd<`۴ܴPD xl4|(l@4  DpD T!D"$' (@*\+-/0h1h345H678:X;0<>A BDFhH@IHJpKTMNP$Q\RT<UWY[0]t_a bcHcd4exgLikm<p rtDvzD{}<PT4lxlhxd4 hHLpl|ÈThlPT!!7!!c.X!!#!#!5!!5!3!3!!!V\qsqpkYpqssgWr?JJOO? ! !6#"3:C>E̻ȷ  MO~#46?67'3#Y˄ ?>=/#O!5>54&#"'6$3 !Sޅ^#4` YiRzqf )!"$'532654$!#532654&#"'6$3 uw󼚔e~x6=/=?DǮϬ]Ial; %!#!5!)4?#c$ Kͳ?CWft7,p$!"$'532654&#"'!!>3 pYT!y3 ! !&#"3265H$0y;B؊ /ݴ wrW@^ !5!$1! 547.5432654&/3>54&#"HƲ>:β)¹@vfat^r~aRԗcBSt%&'53 ## ! !32654#" 0y;)9=ՓF.`LHܵ prwF2p*bߍ.$6BNZfr~#!&547!32$54$##"&5%7>32&#"3265$#"&5463632#"&5&54632#$632#"&5#"&54632#"&54632#"&5463#"&54632#"&54632$#"&5463$#"&54632}dýX\)=K31M< !!g2U8B%ҡZaojfuc^PXZi5JI8h [//k,q-FP#!"&5467$654.'.5463!2 ! $54$>7!!>?*7I44I6*/׹q*6K272K7*ӻqGzXN? P,J&8E|cM {oB3 C-4HJ2,B P6E\2 B,3IG5-C 8EZ@Tu 1yrr3T$V?l=#L ;U [ UI{|HL ;U%  ; [LHI ! !IH[  ! !H|{I [q $4FR^jv#%"&5467.54$75#5!#$#"32$5%#'7.54673654&#"3$#"&54632#"&54632#"&54632&54632#$#"&5>32#"&54632#"&5463#"&54632#"&54632$#"&5463$#"&5463267.54632632#"&5%&54632632#"'K}UL5A@mo@C:FL~KMac> #E>j $x( ,W9A# ;9. UNr9oOU .9;9 qm;DC<j}}}ceo>"6G<!"9F j!{6 0( xB (0 7{EB+n-AW#!"&5467$654.'.5463!2 !.$54$!%!>7!4&/.'!+7H44I6*+պq)6I464H7+׶qNV/F[L^59/1 C-4HJ2-A O7F[3 A-2JH4,D8D]۱qy1сY=w .sHHs.(Dy0#' ^ .>Qdx#"5432"&547632#&547%632"'"&=4632#"'%&54?6322#"&'4'467'#"&5747632'%.5467%32#&54632#"' ji  ~    (   Z i j ~     2   '=  ^   j  ~     ] ~  j k    e -f2#"&'#"&'#"&'""&5467>32>32632&#"&54&#"#".#"#"&#"327232>3232>323265uu,#{?r.=U9 Ċ ~)J!4Zs*teB1EbD  MEI:hK7N+Hvgg \EhAqL+)iMML^`F1'3?KWcr~#!"&54&546>54&'>32$32654&#"32654&#"32654&#"&'"32656&#"32657474&#"32676&#"326554&'"32632654&#"32654&#"32654&#"'"32654&##"&54654$#"#"&5! JU-UL=m @k6 }#%#. 38!#43( =nV!<(!1#*3&- %) !'$;X#BX+%#";)+7$"? %Q%1)!yllyly:.-\.(O(I::I(O'ym"R4!!#4P"vt! !+0(&$    2) %+#4aikS8EHJB9Mqj`7RCP\i#".#"#".'#".546323265#".#"#"&54$?>3232654&#632#"&5$>32#"&5y &VGxN^D͏^T8+7Q4>YJdOzES*/#-,JE00EW4WWD01Dr<'WC22CR3.5M7Q6=Y`+';'TBY>K_95Q7I94-B))r&>0EE0:90ED17A:.GG. 6CTk#".54>$32.# !2>2>5$#".54$32#"54>547>32.#"326?>532>32#"&#"#"&54>33>3232>54#"#"&#"8Ş2_w- 1dhp\2^@ Yf5FKX{0lځ޴u5)mU`&  $p~?d2"Ư33p3yg-47_D'}YEE_1GyqV4 )<1l7w_Ae&YrKJeFst*y5yHl[ǫ A< "A!<#~Lp<60%#x[-Tb# :AQ(3Tl2%74?>73>;./.54632>3232>32?>3263274?46?4&#"3267.5467.#"32654/.#"654/.#"34&#"&/&/"3&'"/.#"327#"5467""&'#"&'#"'37>5I1- +( %peP$W+c0 $f>%bt Pi %*$6 Q<2> ;D )_15   /!;#4L36@T1/1S/+ 0?/ *Y%P}G,4:=<Fy&  0  " AG/OV @u-=\kѢT/!>0_" A+=&OFRC4T%E)Yh68Acj +jHC'+) /gx"?IK76c H/*67)/9/0-" wD;1C,# "8..I"9 %  !g/.>MS2& j P *DR]WgI 4Pfjn3+7M#"$54$32&$#"32$5$632#"&5$632#"&5#".5463232>32NNuy}Q::RS99RQ::RS99R\hj"|}xʀ"NN|zdcDEaaECdcDEaaE`PPN_ZJQ('>54&#"!4&#".5432>322/ psrs /2G}NM}=: R(rs rq+M:IEfWWf4w'#"$547&5!325! #"325ˈ͠('+eʱYDZ6ef6NGu+&$#">7.'32$7#"&'>32G8ZZ8FE9ZZ96t<=r88r=uddCBeeBGdYb=@tFaaFDccDr0<#"5454&#"#"543.5'43 327&#"3265q4'X:lZPL.'Y?@YY@?YK#{l+h :h&jd~[[=?[[?8B%3"./>7.54&#"!4&#"!4632>32632654&#"$wWv \VA+-AA+.?I55I4;lnA,-@d;X kR+[13e+.??.W.??.W0,,0Л޵<r/><bU $!>54#"!3.54$3 !ULLAFR,HA})2,挴+'\vQPv\_& +#"&54&#"!4&#"!4632>32;`nG33GG23GL76NG1nG3GG32HH24//42HXE !  ' 7 !E[n n[n_r*6$#"&'#2654&#"!4&#2>32>32$&#"3265K:7#"54?632'0W>b AR>U0 x~:5  35:dsYL2#"&'#!"&54>7#"5432.5432632h@:@$AAj" .! dUHg8   BvHU/e7l_#"/&5432>32t/ /n68兾 cwnsy|5#"'.547>32-     0  s^ <\>5454>32""#"&54754>32#"&54>5>5454>32#"#"&54#"$54>32!2$654.54632? cj 6Tp bi %(TX Sdi $)S[ SRBv ?0]()ZcDAyl kpl6 f>{l  i_ol jO hG@~m iaqj IOy qD{s3] ށC(;j~6;26;32632#'"&54654.5#"&/.'4>32#"&/.57>?>54/.54$632#"&#"#"&'"&54>32$#".54>32326?>326#".'&546?632+ ,1'+!>G:p[l Sc" Y5##Av'"R  &C'H  %7"-C- )CD"0/,$ f7&-0~Ag  $t^! +JI#; KqH&K"0*L2 =A#% @xe@h`;)&'VVIB> 2C"  $P4BOu 0 Es +Gl9^- ';z !  o*te !Q t!NZ%7#"547326732.#"#".4632#"./&#"6#632#"&5Bhyk!?#2&=f(Q.VSLFQlal"1KlpR  Fh?  8S9IY[]XF5"A~=izg}8T'N4$4)^H3=t8,+"4L[\\jw#"&#"$.'.#"#"546?>32#"326?654.54632654&/.5463232326?>54&#"&54>32654&#"3". g<2'."! )OLF5x940`wA]hώ|LbZ4}hH49@83a<\NN88NN8//4v3,hjUw/#p9/$13@ 2I5HC.;)#([) 0^~?C#%':%4G3L`C!L a<.P78NN87P v$0#!"&547>32 "&5463!2##"&5463 n#$(!>>l/ 0LHBBLIE"!3$[FB74.'%>7.'.'#">7&=467.>7.'.'>54&'&/./>&'.#">;2327>74'54632$7.'#"'#%67 +=o1/{O'd=!@uf&*1c  8b5 YrC(Pupd>!D|Y>:0 %TuLpUQsQCa%9>H 33<;Zj  o(w17} 8d PAp9y%?, %];l&s1$B- Q0)Y2{y;] cAs,  Yw 0#&(+?U3A*a= a;`0W'3W!.?"rR?~?=#7\qoZN'  oP% IG{l&&AOp$:XU@& +!De4To! ! .'.#"#"&54&/.5463232.'#".#&54632'&'&#"#"&5467&'#"&547&$#"#"'#"&'#'.'2326325#"&'#"&'63232632#"'"&'#"&'6323#.#*"&54632>3232$5#"&'"&54654/&546322+#"./.54632>7#"'.+"&54654/&54632#"&'"&54654&/&54632#"&/.'"&54654&54632$#"&'#"&5463232632#"&#"#".&54632632#"&'#"&546323267322#.'#"&5463232632#"&'"&54654&54632#"'4&#"&54654&/&54632#"&'#"&5&5463232632#"&'#"&546;2263#"&#"#"&/&546322>32#.'#"&54632632#"&#"#".#.54632&>32 +v   , ( %     ge 8 ! 1 ( "  . 7     2 2   & pl!  )5  ""$$1 *'  c  *&  6,$+   %    %  +%   *    "   5 4 =   - 4. 3 #& 5<  ./  , %/ !+    4 +  n0 !     r 43 #!'z   3  #  ,/ .& !"! # 6  ,R)  %  9 5-!  +   !!      &  ,/  7 6i4 C" 0# )     # 3Y0 .     ;  + 7      -c   8    0"       @."   & -/ &&U 0 >!    ) 0 4   /#,       ;  .#  A%   *0   B *  w    )4  2'  &&MFfz#"$5467'&546327>32>7.54!27/46327632.54>54#"32$5#".54632326326#"&54632#"&54632&%,-e"4M*9@ikE=V>C  [ @jnH:8AtiJ*) H5+I- )P). . !4. 5k0"0/#"/7IJŪ;QN ZJ|.&I Ic\gKDT2  JF 9P?/SURO.>Y{b )  ;6*+:6*)78(*;<,$6H|.54?632#&54?272#"&'4632""&5&54632#"'#"'#"&'#"&'""&5467>37>32>327632.#"#".#"#".#"#'"3263232>3232>323265 d 4 t  6     zDq+* z=o-;S7 ǧ}"m0U+%3X/_vH0)$FW>Q)H~X=RO@ Ev(n[ BCgBnD,*dKF@S(@]    X J  d  :ws d^r&"06uɊx e>K CNז)N$;! i4_ 4`L$8t(iU}B\o,:HS ]@M0=B;#"&5%;#"&5&/".54632!!32654&'7#"&B.aaB.aa@E$>@)'h'%:O=A .B`]C.B E02";UBx^B4+Y>>==x#"e+e5 ,= 5D?VZ׭)  ?VZ;QQU -. Uu^ $29g2##!"&54>54.'.5463%!2#!"&546%!4632&574&#"#"&54654&#"#"&546$32#"&/.#"#$#"&#"#"&#"#".#"#"&54>32#22#dc_#m$Bcd!,1#&&"&&wsRQsP;%$@ p=z_=lA#$=;arAm52"#0Ob&"''%#"!&_U0 #1&&&&3Ptt* &V!@)IyxS '6*@!V( nj8%  ?xM ?< -:#"&54632! 4$!232>76?3$#"32$5ddddn0w5a=h.-CL7A,k(Ꮟbcci:  "9vp( ՘f;h> %2!.5463%654'5!3_/1'A[7>34632 "632'% O%ӄ+&  ~"( ]Ijcqg3U&"\{DmiwgEsYX5806!,&= l8!.xSO"#:  ,\h38VUXPHQ|& c~GW[#".54&'!463!232654'""&54>?67>54.54632654&/.#"3!!tq>9,vx>w~}DO59H+d*: QT,!*BU-8+K !51,e,pxzR-XKB =6   =R +ME(@8M!<TZvVamy#"&/.#"&54654./#"&54>?>7&5463267>32&#"326532654&#"&#"32>5K15PF(9s 7K%"!HA# Ƣ[G'Gn \ZZ\. kH %!|Z$#N@eXE^|ISANpO-k*L%٫-F"/4'"  +<+"H3ܥZa+w_q$L"И0_I'm`l7.# ,]X)V'0ZYKWh ~]@b'g- SJVb#"&'#"# $54>332654.'>3&54632>32&#"3265654&#"31!eDH͊_?DE.T*d F81=Q 3fiap}C="+ %[.+(i"CGD SW[?q7cB7e*@'] -pc5 IjN32 +:G_57,6 ! 51Q=[w;M(8Sgx!"$.54632>3232>3232>32>32'.#"326?.5467'.#"32654/.#"654&'.#"3&#.#"327#"54>54/.'#"&'#"&#"3 EӧӡQZ#/x['=2tHCk .dK\6c7 0:_0YN;Gp =g !./ S@BE{=OZ0LP Q0DH;QYC)?CUC)X Q2IVAKF?(<. v=8UB;-$5,MG.uN@>Vf t$Jg") ?& +F S}4 rh8IZ#"$ /&/.5463>32>3263232>32>7'&/.#">7&'.#"&#"#"&#"#"&54>54/4/&/.#"##"&546?./#'.#"!2>?6?>5 r$/8 K$sׂm& W-;z.- Y5e'M~w TXr]w"3^93  L3:B,/e5oI*<@bK0';)2rT'% Z I?:A  D-  9)F(8D /*/ &)-($ tjUA 0@Ba;J+^(R}X34a!JvtQc# SֵChOzn ]=.B4B[H#xR 4KX4.LE&U4@ 6@CI=KPQAGZ> P:}^7jN   # AOlA+-H;/+F*1d30VG4gOE8){@m]Q(";N-R2Al}$#"..'.5467>3'.5463232>32632>?6?654&#"#"& #"332654&'.#"654/#4&#"3$&$#"#"&#"#"&5467#"&'3 55:tmP9?D<7Aj~D)$5+z'  Aa!<X_txS5t6C%%  )7JQ?jZ 64U9EaaQR43nF?*Ck?%8DN+ ;I4;1482fCg}  7G[$C#- 3H:'\t U /OqlOo44_-dgptb|@M'p~{MB8QG 1LmA5$F#vJGVwK\IRU^adW{9& 8/(?=6'hH<90``UpJ>A]WJ:{Zw,:I%fAG4 y )1BZ"&5467>7>32'>54&232/.''"'#%6474&'#"./. y#&! D3:(sl9 .*TO3#P$.E&K>D"?$ '5ZO; #C+?T!dGx4N.%(XR{>0-Z| .9 3%f "@C!<7&1H(5} yK)i./.'>32#"&/.547>73267#"&'#"&'#"&54?#>7.547.54?7>7.'7&54632#"'> y0)J-W*f+-s> >*yiya?IpP -J + sP6  =edHxhAy )U#)jt;?0 9$'88%'TQPKI2'-W- $?5gK>! fg# b?r-0PJrs  5gS - J$hAf$*"V( 97.'./7>7>7.'%./7>>7.'Mݜpp5bd/rrNJًNR~K>}}DBq"qSSq"#rRRr@p__oB?s__p>W<;WX<=X]CD|j{DC}&b~vd]}>?H>>CśE,n55n,,o44oF:;E¿H;:F)e1/c++b01e 4#"&'-#"&/&'#"&5467#"&546? #"&54632&/&/.54632 .546327>32?%>32 4a^U?hN+K.PW.%E@@E /'C:X&1F4EQvh?U _bb_ U? /9;0QI0D1'[(SV E@@EWS.I+NR0:h ?U^aF RAX 5Ck9/?U [gf\ U? ;0QG3K.(X8B^R F??F$./(C;W%-L61ck >U ^dd^ U>VkE4 W@C(/RF? j?c#"#".$'#"&54'#"&54>7&$#"&54632$7&.546326546326$>3232 j d[  2+ 0/  Ti  W۸   <.1 -0 >w 1.߰  Xk  S  /0 0/ Z  g\ܭ 3.1  2+#"'!!2+#"/+"&5#"/+"&=#"/&547+"&=#"/&54?#"&=463!!#"/&54?#"&=46;'&54?632!!"&=46;'&54?632546;2&54?632546;2763246;2763232#!!632 רB a%y B  ]  A  ]  C ]  B y%a B ٪B   B  ] 'C  ]  A% ]B   B ]  A \  B y%a B רB   B  \ %A  ]  A']  B   B רB a%y B ]  A  `! -=Naw#"&5463632#"&5#"&546?>32#"&/.54$32#"&546326?>32#"&5632#"'.5#"&/&/.54632#"&546?>3[UW:?UX3۟ >>5™Vp梢q b&0#"' #"&547&5467%632%  %D  EC Cpq2`STa 79p//m n x6\U#/!"$'32654.54$!2.#"654&#"3s`iSo_vYdWkFi|}}e6318)ѳ|}}|30v !'3?O\jy-;IWcp~ -:GUcq~&54632#"##"&546;2#"&54632#"&54632#"&54632&546;2#"##"&546;2"&546;2##"&5463263""&54632#""&54632#6;2#"&5#"&5463&54632##"&5466;2#'"&56;2#"&5+"&546;2+"&546;26;2#"&52#"&54632.54632#"'#"&546;2#"&546322#"&54632#"&54632#"&5463"&546;2#+"&546;2#"&546;2"&546;232+"&546"&546;2#"&54632#632#'"&56;2#"&5#"&54632&54632##"&5463&546;2#2#"&5463#"&546;"&54632##"&546;2"&546;2#6;2#'"&5632#'"&5"&546;2#2#'"&54632#"&546;2$+"&5463U%+6&$ T4 /+(6--5#e2-$7&%&7&3 *=/C1&2'$7(.  *K*;$>&#/#"&%^.+J*;' Y $0'B?/4$ $0%7F72$1>(5(M~$;#.3&5*-@ 1>(5(M(7&?.6F 1>3):#!:$=/,B%#%;#<19D &="B*.M o,9"D+*<&:"C,4':1*2=!&5%.2% ./2=)"T'454#!(-03+1>"('!&5%-0'.-+<$+6#b3).;F'/(3<@&3*!4#4<+6'L"%7'A+-N ^./@/+:#$!:#C+/@/+,<(7)8(;!E*4'8%<13<%)3)2=@&4%(1,-2&0*(-2%1! 1>"(<%3$1>@';$!2$/-55$)6%56'-055b'41>!!%!'+:"0&I "KfJW fZ!%: $! "a!" }!&%", 9! :!}! p $! B"!b!% $7#U!!!!1!#("(!! !' v &Q#"&546?>3232632>54&#"#"&54632263232 &* ~l &|V#'JQ5 ':zO<:&'zW/ %w(  &  V{ %  7.$57Q :)9AĈH3&0Wy" +^!12!463!2!46354;2#&54?26?632#/&#"#"5465754&'&54?>?632#"/&#"#"54?54&'4&+";2654&+";2654&+";2654&+";265%4&+";2654&+";2654&+";2654&+";2654&+";26574&+";265pEabEG`bE!%D!6SOԓK\ C  A / <  9    B  D 0; 9667777665566"66w667766cD\DcdC`.Dc7 %;\#&%'v  ;:-B !"C ;9 -B $ 2TEUmUUUUmUVpT:VVVz FZ#!"&5>7'&5467%&546324632>32%632%63227>7&$#"3266$32>?'"&54?""&=7#"&'#"/#"' \[8q>, l     \ pGS*T,.ټ0)Uq*X*.f_%E|:?;T,!C"T  s  [j[[6 0 ]!  Q g+E#Dɘ"xTr*50(8&! ~M  z tQ^#!"&53'.546?'&5467%&546324632632%632%6322%!654&$#"%34&54!237'.54?'"&54?""&=7#"&'#"/#"/&#"&#%"37232>2>5$&#"3265&#"3265$&#"3265$&#"3265 [[L  ت l   ! \ FAxf[4g  T s  _ P2:cc /1%3,+)J%=l0V<<9_0)+FJ69]0,+FC>:]5$+DD=T;[1)(GG:[\28 O   ]  Q K  /  ,K  _EE  M  V  5 2?I)a'3 z   &*.38<P`p2!>3!547!!!!!!&'3%!53#)5!3#!&'!%3#!463!2!463!24&+";265%;26=4&+";26=4&+"4&+";265";26=4&#%;26=4&+"#4&+";265";26=4&#'4&+";265;26=4&+"EssFS 4 4 4\f <<{  }<<:dCFabECc{6677f66255N666;66c65555 QA?S~~ߑM`k-,YY-YDD222CdeB_-CdbE3VVwUsUUUUUUUUz ow#(,0!463!2!463!2!!!!!!#.#!>54#"3267##"&'!5!.'!5!.'!5!&547!5!767!5!>7!547!'2!>34&+";2654&+";265;26=4&+"4&+";265!;26=4&+";26=4&+"4&+";265;26=4&+"4&+";265%4&+";265!.')3#4'33#3# 8 dCFacDDbwVA: MFZg=r20f77e02E)EG AV .EssF5566666666D77M66556655 } J<<<<< DceB`-DddD&'~k @!7kIRL]FC'Y:k~'~QA?S0UUxUUUUUUUU  6#YF3>{ .#"#".#"#"&#"32632326323727.'#"&'""&54632654&#"7272#"'#"&'#.'32>3232>3232654&#"#"&/.#"#".#".5>7$! %632!2>3$! 632! >3263267&$# !2>7&#"6$32 !l>6Y %$:#+\J '=A-#-^?>f DG =!* Z&T0 uyze礼 _yzr0T*R%#W-#15)I b@=d)#-A0.& Z,";"&Y;0Z  3IF%/#OU&0 *0U$_o= :^q (wJ'7&g-5*&_'P'AA7L'1mES.= T7./!8 KC~`c˙ b`}EJ"F/ .:SC87R!%1%G=*&$F#- E' r %lx  {  57 N $*IUamy!""&'#!#>7#!>7#&'&#"754>,3 $&#"326532654&#"&#"3265$&#"3265&#"3265&#"3265&#"3265&#"3265&#"3265&#"3265#6?+.'>7#!.zP]]k8==~@7;Cz8:yA6BXCm*2t\hW7f^ʖg~'''' -!!--!!-_. !..!/j.!/. !.c;+sFB?6!2#"&#"+"/.#"#"&#"32>3632372654.5463232654&/.5463232654&$#"3 ˴Nd A+?eH:jxE&Fz2$;0#O 8,0) ! R>/!Wg~M7aeMa 4@+,]  :'$X libRgk ;sL5ҝi "a=E #Q+;0  4-?  A8.AMgX1#)M '/-:H  .(82 eZ<;! 2"$$ O* a /"5I`s #",546?66323263232632632#".5#"&57>$3#".#"#"&546?>32&54$32#".#"#'"&54632#"&$&54$32#%#"&#"#"&54>32.54632#"&'2&54632#$632#"&5.54632#".54632#"/XI7  5!*0"FwR2 0h Fe}19R 0$^a_w  >Fv! "nG:S>\(U?1Sx I(6_L  1/032"&54?'&546327632#"/#"/"&546?'.546327632'"&54?'&546327632#"&#"/"&54?'.546327632#"/"&54?'&5'46327>32"&546?'&5'46327632#"/"&54?'&546;7632#"/##"/"&54?'&5'46327>32#"/"&54?'&546327632#"&/#"&54?'&546?632#"&/"&54?'&4'46327632232?>?654/.574##"/"3654/.574##"/"37232?>7654/.574##"/"37232?>7654/.574##"/"37232?>7654&/.574#+"/"37232?>737232?>?654/.574##"/"%3722?>?654/.574##/#"254/.574##/"3722?673722?>?254/.574##/"254/&574##/#"3722?>7654/"&/3763225'547>?254/.574##/"37227#"&54632632#"&5632#"&5632#"&5&54632#632#"&5#"&54632#"&54632632#"&5#"&54632#"&54632#"&54632#"&54632632#"&5#"&54632#"&54632#"&54632$632#"&5#"&5463&54632#$632#"&5#"&54632632#"&5632#"&5#"&5463 7 A% 7-0  %  7-0 7 6?$ 7-.U@# 6/. 5 26? $ 7- 5># 6/  (! #"( !   &!"& !)&  /   &! -  (! # !  ! '    3"; 10 @ & H 20 @& @!2  0 E ( @" 20 @' @! 30 A' @" ?#; 2 / A1 -&%  ,&# 11  1  .&$ 2& % , 1   )  ( (# (!& ++ .%                ;    w          72 .5  !  70.5 # <X!%  ,5 '#!v &  . (#" &"!% /&#!&  ,;!!    & 5<$? $8 1y$? %9 0 4 :$< %9 1 4 ;4$? $814 < #? #8 2 4< 6<#< #8 )/   1, . , & )/[)-  0+ <2* & (- $ %$ *)   (&  "Lq#V|Q    l  b              V       -  5  iP4V #"$54$3232654/.#"326323254&#"#%32632326323265#..#".#"#".#"#".54654.#"#".54>?632326?632;22654&#"#'.54654&#"#".#"#"&#"+"&#"&5463233254&#"#"&574'"'#"'32$#"&546?4?632gg        1  7*1&,%4;/-,35d'%@*% /<6R`BEPE,F.( =7+-E/)*d?  %d#  - $   !"A.*        f`)  gh8     "   B \ 8%:r;* &  !Rb6G MF>]5. " I6\f HP&'&:v3&S#@E 2*     "& 'U.05. p_F  iR!$54$32#326.5467.'#"&/.'.'#"&/.+"&+"#"3263232654&54632#"&##"&#"#"&#"3263237>32332#"&546?654&54654&+""&/.5./&#"#".54654&'3 32#"&/.#"#"&546372&fgW)+ ]a* o>)    -   ! !6 $  #>%45F  % G RDJ,D7VAj,  S#  !H!&  &a Q\g)% #/ fet !>!!AS #6  &   +  |!  &N$P)'    /    "K4:`#~G )2PbN5AS  L  /7Y/  d      iQQr#"$54$32&'""&#"#'"&54&/.#"#"&4&#32$5$574632>54&54632#"#"&54632632#"/"#"&5463#"&#"#"&54>3232632$#"&54632ihv|lQ"30#2` N&76 8^=N)M/ccZ$*1 '" E$# #   " 90;a  ,5*c-45  dek()AK?((54-7" $ F(yX(U[b_"/   ';)   M  C4" )L)#c'    %'/6=FMV`jsz! ! %.'>7!>75!5.>7.'.'>>7.'%>.'!>>7.'.%>7.'>7!.' %MebueNefg4E[vl2E[u[]+? 0<NZ! ! 32654&#"#"&54654&#"&#"3265&#"#"&#"3265&#"326599]:2K 2(">A'  C@/0@C--B lDJv `Y@/0@C--B98K6 2+"%E/a  @},KK02II2D=> 'T\ IK02IG4$]u!"$54676$567>7.54>54&54632&&/.#""&#"32$5#"&/46323263 F.% N=Cr:Y7?2yvO6/ wQ!97Kwn #@8>&s|,r jU :C %d4#1m6Em&ٗQ,@ST* )SS ,"US$!! D@$C;OtV @Q+f}%76322# 326$654&/.#">?654&54>54&/.546?>54&#"26?>32#'"&546;i$6Z;o?? 4(|R@2SpH7h5 ($`* E<  \S(IJ10KK01JK01JJ10KU6I5(A!  X8F&# .2 T) z0EQ]#"&'#"&547.54?%&547%'&5467%&546354632>327632%632%32#%#"'%#"/#">32>324'463'.5467%'&54?%.54?""&575#"&'#"&/#"/#"'%%%6327632$32#"$532$54$#"632326?632#"&5%#"&5463232632$&54632#!"&54632 X 38 R R  23   ܾV d||  P    K  L   Q  ZXN74̮ɱ   C$ 7 F&Pq<)+:  (  %99'':9(':;&&;:? 7s+ o  7 =6-  ӧ< 7 Т  o  s  i  e  2 7  7 2  e i UUîɲ55ɯ    C ++  ) -.<<.->/ %<Oy.5>32#"$'#"&54>3#"&54?>32#".54632#"' #"&=47&5467%632 % 0C?.>@O9!)P+Y992E+@3JBq}.ch'  !.xkRGGRit e:+Aom #a!"3)4w# m0]\Q- S&XW8#!r pYt 4N4 g#i#O} 7AXk4&',3#%#"&'%.5474632%632'% &546?6,32 #"&'$#"&546?32  $9i T  ]n:Um j& j  =kMi= DmE\]ӂ"0 9  E *&G/:  1 8u<  :=(! $54>$673#&$#"! $6586y UOhuĸhcib   fЌܚv|aܭIimG.E[\G [1#"$#"#"&54?>54.#"#"&54>32632 [jd;[_93E{0N";9 @c@vl| j+>B"m@bc݅&"?syGH? u፛xr#"'"#".##"&546?>7'&#"#".#"#".5'46?654&/./4>54&/./4'4>54/""&54>3372#"'"/"" }w%'*C;0^4   p;=n   .g3A= $5js#$AW ә7>1Etf5ND2 J9 UX5" .KFH'" @"#.-#"V!"-N@7; g>K >4 c;I 4! GF] 73>JnhTA46UJK%6I=\ -F JA_rJh#"&'#"'#"&546?#"&'#"&547.5467.5467&546;.54632>32>32>32e%DU  r9=n"!$K~B#gDT=3#^LxS sO/V33V<#MrSx [*#=M[ ?#hQf)"#.-T2 UFg:4yH?iQ-Kz),Sx  Os )10(nOxS-[3VsGL{ 'F&/./4'4654/#"ሮ&#"#"./#"&54?6454&'#"&/.'#"&/.'#".5467#"&/&#"./4&#"#"&54$3&/.'4'54654#"+"&#"+"'46?654&#"#"/.#>32.54>326$;".#"#".#">32 "  '8 !T A^QQ ( vM?OT*L> 7kl4     o( " ?E/#'FVL<   ).!%FF- 3)- *-%!k  H19) -# A?0-c4fQ1 &"  ` *5 # *1W!UF#g nBZ|#".'#"&5463232?'&532>54&54>32226754 #"6=&5'&/ 54>54&#"3747&/.#"32>7&/.#"326?>57254/#".54674?>54#"32632>='4&54654&#"32654'"#".#" 1Z} 'd?&:|?ٝn;QJ<P1 !)kL JLWGn +C Q /#; *qb(   'SC     (   95 'l&O F4Z] %)Kq,[= Eb6! 7{GmL_E"_z- ! DXBTO\ocf"M N%`L2c:098r\~b;ZLU]M/ Xar^0ќG*/]z54/#"54654.54632&5432754.'4632#"'>?>32)3g&%*HP D#6HGw&- XLIW8^ MR$o8Lb/Zh$7<51p\3  'GY[,+V >6o8nh'%&SNRiG@;I'Ӟ6^[|~?}}dt$hgi2"5:6 b`lz#"'#"/"#".5#"&54?".54>7 $546;'&54632.54>?27632>3232654&#"754&#"326654&#"3&#"3265754&#"3267 G{ȊGKu0\ "lћRGõ?)n  yBgmp@ H }N=7^XT%0%!0&1&,]0'!.&%1'0H'0%,p {R W;26?>323232654.#"32654.#"74#";2654&#"#".32?>3232654&#"'&#"2674#"#"&32>54&'#"32654/.546?>54#"654&#"./.#"3$+#"&#"32$65&#"32$656&#";2>5#"&#"#"&#"#"&54654&546?>54&'463%#"&#"#"/&#"#"&'>?2 >rAJ:G.;ETnj/UÑ0.,7N !aa_˺%m:WCZ>9M H7-"Y5ylSZD& C, zS ?# sI)(=/ {|!  Y~;1[X% T; 5J3 C    BY7-6M = *3_N&{]}и$5QmuX^{^h?M4K/&@DG(54.54654/.5467>322732475>3232?>3232632326332654.57>54&+"4&#"#'.#"32654&/.54654&#"#"&546?>54&#"#"&54654&#"#"4#"#"&'4&/.'#"#"'#"32326?632326323263232654&5463232654.5463232654&54632 T l%? HK~PXW F l=C| /@T  k6 N?  dA E82Q!-V5!#B`,BY( .}'=/  8;A51'[<0 2$  !#$?"$=VA& # 2+/ .<&!eg^H?B.+ #"hGd      B&"C,  3 H ] _3 *C 0#>i ]GQ(5E: c^9  %U  )D7S !+> C)M5, '     # M O#)R"* )? F ":R'`32732#"&#"#"&/.##".#"#".#"#"&546?>7"#"&54>54#"#"&54>?654&/.54632;4.546324&5463232?>3226?>32326323.#"32>5#"&54>320,@_`N\ G7Z&@AJ|R % C1RP( P<5;!#)p+B'z FC:/9PGR"*QM<2zK2*HM<S4I^D &@T E+w5j8.N9*ycب ߀̬wrQuejZ<54/#"&54632654.5463232>32&#"3265 s:Y 'lRJM{Yd .̦  8#{BjcVBjirp7ˌƇ5=/+4 e%!VV  _t 5i8t0^hwQB }hYRu"/=N[gs'632"'..54632&632#"&5$#"&54632%.54632#"&'632#"&5&/>326&54632#.54632632#"&5#"&54632632#".5'.546324&54?654&#"&/.#"#"&3"#"&54654&54! )$(g-NE#J-G%*hoM.YJR4DZ0(N<>I/5^H.%U6(P;H#@Z=Cj/5V@U6&C]-,F=64w54&/.54632>?>32$#"&54632&54632#&54632##"&54632#"&54632$#"&546326#"&54632$#"&54632&54632#&54632# HT 3$#/ AmV$XL  |  (y;`)-e#;0Js%Zv"Oo>*}OJPTJtQCLU1Ia,HG>%F'XC7"RB##h?.H)W-NF:QW'SE*6{3jJ*;yR<}}03"Jw5XLOC8.!o6jN"65V,tIs@!%VC&K*\R'VX&/=UuFBfW:9|M>^VGU7W(O0MxJC_VBv&MoX-MY''vO%EU$#".#"#"&546?>54&54?6322>54&54$?>32'"32>?>32[I5\ ;%M Oɀ d*X7@ K]j3);@emNAs rH'@g6k^Ȕ(  &Px.('J ݀tc6!boD 0%q',ȋ0)'V7 k l2Np#"$54632#"&/./.54>?>32#'./.'"54$32%#"&5467>32%"&5463232632@+%*`>A>BC? %3V "UPT<LVb,NɎ%$t\&#JB- NsT^ " H O4N8 qmG  qT+#"$'#"&'#"&547&$&54>;2&54632 >?>32>32 (Z]NTIB#YfW9 + T>36dgϮU+z%%0-qjV .v] S\f4#J9- !w"<$)H1 TGEV r7.:JZ5ž^ &$!\+4L #"6.#"#".#"#"&54>54&54$3232654&/&546323>325&=}UQ?N&b*.nI60Eo~$6F   A)9oF2, β%,Fe>H^ 'jV\X2b80  ,X9  cBq& E)8d%272#"#"57463232?>3 37>7>7#"&57>!"$546$32.#3 $54$%/"&54672':@xx bN#$G#H$)Q5)N%! _J0mdE&Qqr<0!"0lS"+'0() #q  lԚgHGV#9?IB6:Ψ%  LZfs!"&'#"$54>7&546,32$32654&$&#">3232>332654&'#'>543267.# mh_K|>xOAA252HzkD:I% cr_LjM 3Usx=W}<>3.+|@S2J41*ЦT*Z4 ,J$..!I'G>4Ch::} $xP_mLh4(E^sb b> aB~*Hm Pz[N>'0co! 4$32 %'&/./.546?>54'"#"&54?474#""#"&#"3263232>3232>$#"&5463?gE 6)!1K953   :CT&  f>   ( /R) .6/zkW!W*#Y,GKmMܳ  4a; -5/.  %d:; )%( _ S%@!'=RyF6}#"'# 4>$67.5463237263232632.54654&54654&#"#"&#"#"&#"326?632326?>7326561\BCg]ntQ^9, .  R!?<!#'O&A J.%H$)A/9%(: Y$  )/#.#   R?  ,B:QݝM ;j"i?+? D%_A, &\78+4!I5*+HZ,=$   8d  E3"-5O$,X O|>Uh|&54>32#"&#"##"&546?>54&54632326?>32#"&54654&546?>3#"&54632326326#"&54>3232%2#"&546323>32'#">54&#"&5463232#"&5463632#"&5#"&5463#"&54632<,{S}!=u!  E0a>C    =  )}Z ,?WT0SV/4B PVw2P"L+L3b'"Mm d?.#"&'32767./&/>7>3>7./67>7'.'>?4&'&/.'6?>7.'&/.'>#"&#>7>77>7.'67"'.'23.'>3>7.56?67'.'769. B#Ga`1   (1/" M+!-: %VxQ !.>G=P5)/7!Mp $ !N4C$ $_m $T!+:D..% BU3Y6U 3232654&#"&#"326532654&#.#"3265.=4&54&=47&/67.'54&5267.'&/.+#"/32}(Њ% 52S;#k?i*!@5178F F&       3 * ,m72"RɊ[4pH 36BNZfr~! $54$!>32#'#"'#"&5467! &#"3265#"&54632#"&54632#"&5463#"&5463$632#"&5#"&5463$632#"&5#"&546321@@$"HB*faa%$hAOs,$ .)%2X+#%,.')-O/"/%S, 1(%,!C(('%&%-L,&(pa㎸#bZ(;BaF  9ub5#!#v(!* !# %)$$ )"(%"'#"% )"'$"~#"""/32632 #"$#"&546?>?>763{8](feW_I8i2M--z   7Hd{M[cd ̕3-2^/.33BmO7$ 6Pbx#"&/.'#"&&#"#"&/.54654&547#""&54632./.546326$327>54&#"76$767>54&#632.#"3&#"3265>7.#".'6;2 Òt.,/-$G+f|k3SU5+ZAÊH(#s3g $-1'0dJQX<;aZp 8 n.'8?:SsZÑ cl(>KF'A@:2.20" h!>m6v)d(: .w{QUX\7WH- 1!+,UUu(&F(:Dla=)>.3243263232?2632 '#"&'3265#"&#"#"&54632632#"&#"#"&5#"&#"#"&546?>32.54632##"&#"#"&54>32#"&#"#"&54632#"&5463K /$9+%'fmӻĭwn#H( =6l?1 jJn a l<DwCw <2. &+"g[Hf_GduAv !d$/c# C@ 0(EEj]U j$Z A#H5#! " ]$] >K)#9)Y$$j 2#CI~' K/- $*)rà8dzEw'  >7% D)& OL>KR n 7 )zh  J c"0.-W̩ى Q ii)!" 4BHNC  iM &(/=%R-& l.CNBI*#Mi  'g,M+ %\8d# $54632.#"32654&#"&5465?2632#"&'#"&/.54>327>32/.\ 3= e\     1R< TI %" ! .ǁW4as7ͦ% 0i5 " ,Zc#   2GO  l( I#   /\_RRlD6n8o#"&'232632#"$54$327>?>32>32"'2>32#"&54632.5467.#"!2$54.+|a "  "H%^|vDD# ޏ`i X! qb SnD=xR`KNIj>O5WD[3I "B H[,.% (nc3 - ,7gcڂGB6'# 4>32>32#"&#"bاgXnWXU?& 'H`G{h2nyO͕(+@; -*?]Z-P%#"$'.##"&#"&5467.54?>32%32654.54?>3232*P641X|wWb'RMOLMMu)7:w?`  \\([$ DUSya2^Q2wQP"F|PMR!G#"&##"$5432667"$543267%2636?>32=!~h$崻, ]_8c&"4e  &<$'}5ˉ﷯4&5T;$H0/cOﶮ "<{? , GO%1=IUamy#"'#"$.5%.54632>32&#"3265&#"3265&#"3265&#"3265&#"3265&#"326532654&#"&#"3265&#"32657>54&'#"&546?>54.54654&##"&5467.#"23263232>32QUD=K:/ cZ8q?`'( '$/!+ '@!$B+&;-%;">%;!";#:#A$?%'?%%B83 .PGnc$ KZmmSB_9r &#?E3#"@'>6  Xda8VA @L?@39g0R.5' .7%)<(*B#;6$,)A#>%kD$@&@";&3.!%?&%@%P'UKe#f c?  Y$^ /; #"J98,c3&NuV  v2\n %1=I# $&'.5467&/.547.54$!2 7#"#"&'"#"&#"#"./&'32$63 $54.$#"!"&'#".#3 $3232?>323267"# $''! .'32632326722>3:?>5&54632##"&54636&54632#632#"&5632#"&56&54632##"&'4632$#"&5463$#"&546326#"&54632R-T{1-)*4'!   E. ,a(T|s&9 _>Z{#1 Hd ,Œo!`6sSjL-aN0&7nUW\ C= "L*+A'+0!> 6 /1oD 6L\'$6#--O_34 \[J^V"("*'$'$|'(()G((/# +'4'.'(!.(,s*+\ ,H?'

4 E/}- 24] :: ! "A J3 #"&/&#"#"&/&#"#"547>32%6?>54.#"#"&546?6$?>7&'#"&=4632.'#"&'2#"&'32>3232>3232>>32&$#"46?.54632632#"&'#"&7326?>322654&#"#"&5<74#"#"& J$`6L6T*I8 5-+5R6% + Z8g^/$IsK q,1/  32LMU<)mec+E_ j59SwO.`(^>@$-!YB' 58N-3n%,"`S2ۻp%i=*>NYj \:7G 6S\B%V3=Ny'3 J* 9&!   %82d7P5  J,  EpWx`l?G(5Ov "   &"    >$H#"$/.54>?66$32&$#"326?>$>5#"&54?>54&#"#".#"#"&546?>?>?>3232>54&5463232654&54632(&NncҤvj~*<%Q Y)#')-K<5W]2+*10&9%!so , B|0<HT`lx#"&#"#"&'#"5$;>32632654&#"654&#"3654&#"3654&#"3>54&#"3&#"3265&#"3265$&#"#"&54>54&#"#"&54654&#">323>54&54323265 B)2 K$?i!-Tk"Jv"Z5cC`/OL t<)$1>;#94m75 2/##!#./)&)( G#)) ?&aH;":F*n )G+%V!+4-7!pZP0/#4dJH9?6e%!3$!87I /<\(3;(8 >+") &%!* (%;4h )`.2/4  2 0Dkbt! $5!2 4,# '4632.5463232747.'&546?>?#>32#"&546323263#"&/.54632#"&54>32&54632#"&54652#"&546323=1l.c!+96D8$+#< #3CWVF]1  ) %+C}6B%:3A0E?.4$5)' \*   Q4G$ 'S.   n !S . PzFP7E@n_W=>'x    t *EC#! 3 #X^:']#p"'88)#SL ,   1B7 $,#'3  a# u"}8# 432 &#"3267654&546?6?632>5E*|vbk KVbot%(p}tD>TePwpݼy89lj *V-">PA IUUPD#"$54?&$5467>75467>?>?2>323725.5.4&/."&#"&#32676?6?>327>#"&54>3#"&546?>32#"&54?>32#"&546?>3#"&546?>5463*{ӡ*8O9]P`P'ZH,AKx08a6 ,"& )[;I!2;7W2S~;MI)%%  7:@'$H# !@:;)":6$$6 3&" $"' #"$ /vHw98tyoj 2"}Q1#<BuH_*?$-:8T &E#5@- &T1A:IX a% D@>  "'%" C/A@:%8: C) *sx6=Ib< #< B#$'9  0*;     pu 3j  0! $5467>?>32>37>;>32632.'#"&/#"&'""&'"&'.547! $532632326?>3232654&54&/./.#"#"/#"#"&#.#"326532654&#"654&#"332654&#$32654.#6?>32#"&5$6?>32#"&#"&56?>32#"&5 e^5P%b=@ f"FQ#.O'u `s +97hT1%)W* $.3T' Vuy0)%)'1 YFGI'> G    *8*Nm$  GG  $V1&I"#0`60='%)!zY>N  1,6'"Y=8RcLK`$"Q1R "&%- %! D '!%YvZ!2Pn,*9G =4)n  r/JY5N=?*%  "#:2g$V0(R+ְ(G  .1:"0M 08(   V9%vO[:63!1  X:VM'$I(0A3;y,4103G  %!#NFS,%+== ,H1-@I:> C.$41$ 4"#';P 1"/< / $(9,?GW\gs|!/:F_k#"&=&$54%36$%>32632./&54632'27&'"#23247'677.#.'#&#6?767.$326?>54&#"7.'#"&.'726$74&#">32>7&#"'46?32654&#"4'26767&%467>54&''4676'>7.'&/.67.'>7&'>7'&'! '326?54>$&54632#.54632#"&54674&'632#"&546=.5$632#"&54674&5䝓д =['e&[0'M9;HsF% !  '= -   *#)-,_FYJ:5G2U# .VI:!n?vJ_>Bv>%+O",%  ${D;3.A*:%\`4='8 /M-85:d&'gQ<]^5<9HN EV \ly#4DSa632326! $54>7.54632>732>32>?>?6?632.5467'&>7.'!>54&'+>7./&"&##".'32$654&'32654>3:75#?.'237>7.5>54/&/#"&'>7&/">532654&#"23>54&32654&#""&'3>5432>54&#2654&#"#"&#"#"&#"32654&5463232654&/&54632'-:-,boh)f{%*,G.9&0I45/\L* 1:a$<*+4ѥr985+Cq=T4ޞ_R;!D@8-6M * =08:"&I6'!y 2&I*,)6"R(W5xJ& E (5q7c*5T0; !  >#'9 2&K/<(--.^O  $ 7~";gQ /L))8*00C4   '%5O(?U4g-V3QU,P$\"$3LE  2 %*OH < #.   /z ,K<+HjBi]A%:0(V5~KUw8/5 &$.  !48C1IfnC8s,a4GG#cGBy+ !#F%4# 3&<8K%Q*,) J#%1 . /EI7F$&w؀~v  %% Hl /D.9.7   /7n% "p7B  2g S)&R*0V'cLR$?V @~3 ^?A+B P$ &[&-3,T   18D&-\ B% (&60  zBgUH.]kw$#"&/&'"&546?654.54>,3 &.546?>54&$#"23265&#"32656&#"32656&#"3265=3) on38 I;EKo4w> ".#頨W.9 qqoo  F  E C"E  aE  I@`p>8 /bDfkk@hlpe`]&OD=e,*'$J`w327>32>?>732&.#"474&#"263>?>7>7%4654&#"?>7&&#"2'6;.547.#"26327/.#">74&5465'.#"7474&#">;467>74&#"&#"3>5s P !$$ e/$!&Ԉ$ %'T%/  "#eK/L  c`EPZQDJ   OHHO0G*!<&"%%Kk43$] :9  #!)%" "B0 6 %0A&(  ,;  2$  < .=07$F! +M4:!8  2 # 1!M 3! T>$QKI  9M0PtTR  Jr?Q5$/ bTE"# aU831_02[qO@P@MN;t9 H4є)2H5 EA RZl2(A{K  %Vdf&(R)Q%ka(*0)N&N')9V)[ Pu{J# bthO)^ 0Z/$VE cuX=U  P_  / M/ [\ e:/!-& 2a0< <3C[k{7# /&4.'&=4&5>7>3232$&#"3265.#"&#"32$65&#"3265&/.#"3265.#"3265 :Q^STB!, 1 ;SBYnD'Ry/\WE MkR_/48%2 \JX?$G%wCW^NLGO.4d  !ECF0%F9 %x-#\D#   p5e=f\0?^:6JN.S"H$\KXb)tq^`T`-ZM%&   _(#NL q9T  \@To~#"&/#".5".5475".5467'.54632>32>54&'3>54&#"#"&32654&'\1+!:BeQw_fG<)r7%4WJ%#".'#"&5467.'#".54>32>32'>54&#"#"/32677>5.#"/"'"376&#"3263326532654&/.#"2632#"&'&/.54>?272.##"&5467.#"32654&#"#".546;632#"&5.54632$&54632##"&5463&54632#&54632#632#"&5#"&54632a"E" &-0#mfbL9Jg *N-^#&Q=~Ԡ74]2s<{Z+sa7l,n MLU_HKg3*5i`$$*0zf.$,IDo#4   -!"   !W?  4J^X+,;!Bj*S(wv= 007.#"'"'">5632326$654&#"#".#"3>54&'>732?>?.#">?.'#".#3fӑnk6C,'E@MD½H.M3'8 gq*M%GgL.\ ,T[/.W%V,ceXkV;a "8\ "@QacT ;kAW,J To"A.zJSWQ 3b0!C#b4%24s9D)-@wby(H$K"N&#[2^=>gH)Q<3h,i@NZ/:gGG7056k/iI%L&$$4%Q*+Ht..ʔ K#859.E-%*1/LI\-SFw,   ^5$3_+9j0"+!`$, 15;I;V#492"$*%T!Gm 7Q~!-##"/#"&'#"&'"&'.5465.5467>32>32>32>326?>7>7>7>3234'463232632%32654&#">54&574&&#"#"/.#""#"#"/.#"#"&#"#"&#"#"/.#";26323>32326?>32326726&3>=4>54&5265'4654&&#"3265 7Ke62 ,&9"'23i>dNI! V,++4X>_(9?,\?-*<(#N(N'M! ?, 2*G+yR0)?t6# @#/&<7  .!;,rA   2 +"E ,)*   C+<#Z84  :%6  "8  AzE1&PH>0EQ *Y"qeE! 2$>.@+Er8!9c 54#&" !:9L/ C%?h@]#)  &= #8,4 *S8 2$!q.5,7 )?73D ;5*'%2/EO4 . 281    ,E0B A7 TE P*HhRe#"&#"#"&#"#".#"&5467.5467&/.54676=463234632>322632&/.54654&'.54754&#"#".+#"/.#"#'#"326323263232>3232654>54/&5465#"&54$32#"&#"32654&#"32632#"&546328VQ]U (;&Al  ::_/NWEn2=pe^XP J$(rD1M %H_) &%-U8W*'`# R'#*h"3&. 0' z*+4&,*!3*""oTN #*Q;?4"j"(D27.$5s] >ݪj[0},'4|IHSA^:Iji!N Lcso5:p0;3YU3W /A:!% O P ԔM" yVjF5&368LOeXK]#"+"#"'#"&/4&''.#"&/.54654&54>54&546$654&54632.#"#'.54>54&#"#"&54>54&#"#"&54>54/.#"!2>5e_ ."X!'R<8Z&.YS*"B.w*y D[>V"v  n7 L913 F+ E. . ^370`l*,!,  8+,0{N@n Y0Tk$ 6,l5sH! y/J+? AmJ1/5 3@1TE +iK.T# Cn2?8(HLpT/9 `.ZD2vX)v 5_t#"&5467&54674>?>?>32>32!2>54&'"#".#"#".#"#"&#"&#"""&#"3265>54&## $/.#"32$7 ׯ1 Ȥk|&(/9R9K;0X," H%-@* .;C%.$Z(6 *l )v*]^{ )D   .lf`TG**B-H~gp*AS.V&NBD=XQcuf]\bN&p8`T7I k2;T7 AXlWT(+0?. .[8sW iMz IS\ht#"&546?>54.54>?6$32>?#>3%'>7.'&7>7.'>7.>7.' 32$654!"&#"#"&#"3265$&/.#"32$>54&#"#6?#7>7# <*'DK'95 9+ZH1Ơ I_CW W^Q'86P,.r '+)3 M#F"%G%W#>$%G"7'N( dnkάW4+T**Q+3Wft  Ddq: /,3X=G@,MX-P3" 1& .>(gg  B6kt5   gkP\iNne*&>?&Jn_@9(&?!B! =  ?t"G(  QH$% &D%G2WQr99-2D?7(M  s{  (U.4(f   r<_!"$5$!2 $&#"3265>54&#"#"&#".54632#"&#"#".#"#".' 32$ rn_mÖ'[&fJZuOZx$0jJ3U.y'GajM 4.h`FVar:nO%^o LUp+֗}'JSdsC?36B>6 *p6N}U@ME!gpI!9?bcI hy< R$LZl}#",&54$3 &'#"&57467.#".5463232$65'#".54632$#"&57>32#"&54>32#'".54>32#"&546326#"&54637#"&54632#"&54632632#"&5#"&54632&54632#.n˖ph[m#u.%  <}:{֟n#14^&!jC.6m8k9B$%O.&*\O#$J9D&;-9!/!AB5#5b`+.3"*)"!"w#(>& d+ )$l0)wIQuq   E-( /i{#EEd: n,i(@#2J $% 2G!!&:UU7/pl ! J#6 M k?h#"&#"#"&'#"..54?>327632&/. /&#"3>5#"./.#"23723263232654.654&#"'654&#"'&#"'&#"77>54/32654/%' k '@;?(3>9  9(  *n1$Noy '7g_1  # 5{R 0l "* )9.>A)@CY*,6,lg ,N &3:$+XQ  *TS ,)Jpo    ϧ F TFL& 1  ^  #|qqC#)8 2s{Xdɏ%#:P\^#-=$&$:Bl*4CY *J-+1AEt?Q qO6%QQQ i*=b 1Wd,buE!$T5      K!ZJ -Q J  Zf \JVbnz#"&#"#".54&5467232654/.54!232654632654&#"3$&#"3265&#"3265&#"3265 bWE(u  ^%HX6j`""D"E8Vaz?OB#P.H6)Ok#Y&9&&0 %V!>f^/]% ~:NHKyJG|  ,D-e##IKC&d8b 5.%f#"o&(W["{( S (' fF^#"$5463232$54$#"32654&#"#"&54632#"4$32#"&546?632 fS  du~"ovJ"rFkƚvB\  6V[6.8A)  &˽@1QR8*!ʧfO':G:Nvv B  9U]<-)8h"a !2Pr! $54676?>3232$54&#"#32>54&'#".$.'&'#",/4'467! $5 ښ &?X\fxDyޘ mYD Pi&.,/Juxu77yʠ,EoN QEGvדHH EY37bo|! $547.54>$32 3263232654&546323267./#"&54>54&$#"#"&/&$32#"$537>54&#"32|K 4-HjX'NIX6%0ACFHBJXY*_0,K" % ][rN"/ Pڳ1d px`lrnm1n̊Ft54&'#"$532326?>3232>?>5&/&/.#" #".'#"7474&# !"/"&#"3 &#" !"&#"3263232,65 !++(-Z#P9;3.]rT& =&}$    +j(  #?[;")$)daȯ٫! C#,'O'zu 32#"#"&#"#"&/&#"32?>3232654&32>54&#326?654&#"32632#32>54.#"#"/.#".54654&/.54654.54654&54654&#"#"&#"#"&+"#"&#"32>5%474&#"#"54654&#"326?6?>7%4.#"32632326?>732654.#"%32#"&546 A ?+\#); 0e- 6#D )I# !!- B!| _&[ !WY/'$$! /D G7R,;O8 T0s"+ )  @6$ 1M ')+#>&+?  2)Cgi #ا1>* ! !'A5  HpZlfW S "  E(BVDiYY'i! m   8d&!S-4$-G !:&(F'"SA'/8=/*6 1 -);Pm # $/.54>75463236$32$&#"32654&5465%>7'.#"%2326?#>323>7&#""/.#"632.547.'>7.#"#"&/.#">?>54#"./.#">7>54.#">54#"#"$/.#"3 $7$&#">7>5%>54'#".#'#"&5463232654.546?>54&#"#"&+"#"/./.5467.#"7272>32$&#"3265 ]t7Z(ym=QtljJ sE{wP\ \>`j  ~J$D.?=  (} G+//,<  %  _Sfe  0U +L^ j9KE8q& )C#</     g *?# T.=9  NUeA<(Vw Y:N] W@e^ s"3?K#"$54$3232>32.# 32>5#"&54632&#"3265 歘ٿW :PBZKIhNJTWjb}`aIeAAbIALs/dY+UPSdȄXv*i%r Psp WhhS^zl+IM94;=7 XE!i%#"&&#"#" &546546327>32#"' #"&546?6?6?.5432326?>323260*5+Ow|*9a$<>Im!FQL-$ 5 Nv^z46;@:!Aj[0 b(#+ O 4 k#*<#7j{WN]8\aD5k5L>6D54&5$632#"&54>54&5$632#"&54>54&5 #"$547.'46546?26$32>54.546323267654&#"4&#"#"$/&#"32$6j1 GkuG$,n1 GkuG$-o3 GkuG&)odZ (U?/*&ECAV9lg~zq~#u m y92GH "A(2Qj  t;3IH "B'/Ob o=3IJ$@%/Og@GI ?__? 0?ч)Gi! ?b77Y"@`a7%Y05b7 u # (.E)x'O00A$tmpNv*=Jbo$#"&'#"$54>54&/.546323&#"#"&#"32>5&>54&#"3%>54.#"5463237>54&#"'./.5467&&54674##"&'326t\>Vh_{A~( % {|ÙEs9"{_e$!!?bk#ܢr^Ua'ʴ.*8x9/w90[]xSwqC?69lǘD[ hur)n36X)AE%"(26#3:/%rV2 Rh`X58/>@D:'E'01UumQ(J" #O+kppT)`p!.:N`%#"&54$5'$4?6$32.'3263267.#"32$54'#"&63232632#"5W[ۛ\j)^^[{_AF1g?Ṃ͜Eeo<:ra>䓒|oTlQx myC8JM>@d@.c",M[Luҭ]@5J  ;>@?`.65zf{-7*}<O`t$5#"&546?>=./54$!2>32>32>7.#"'.'32654&67#"$'326?.'>#"&5463{\=)'L'Ak'Kwam- ?n2NO7Ox19#Kg8!qT*o>XJ ||ZKo,i6Wa)C/AXX<=XX=k|C7JM=7!BK.L|ar"@zx }$ P2!qG/iiن 8b4 3FH? ?%CR   7 !P3"32733273#"&'3 $54'2#"'#"&'"&5#".5467.54>324632326326#2#"$54>323%.54632632767".546327./.54632654&/.#"32632632654&'#./326:e č9*&4t oB8#Cos2i8 bC(A>R('I&X/ CSS`:?o <M1% ;GTZ@!3S$,G6gV#"%*L,6Ic 9"?KoC W|W K:>4J$G*(<`jB7'  B91r)T+g%*[7nX-0CSsZRne'_)7!Oh@v%W68GL<2 '}8Xʭ>02/4 6 $#un)^"9& "$,ORv!j6-32GJc 9/"?%2> 9$8%SA( BYwX]f&duD** (*?@IM%<'z*+$%-' s*H76b4.._)?*/Cg S#"&/.6$&'&54>?&54675&546326?>32372>3226326.=4./.#"#"&/.#"#"&#"#"&#"326?6323263232>72>5 $4&54654'&#"&/./.5546323267.#"#".#"#"&'#"&546324654&#"326 F8 (+V*^۠ 2A],W& `+Q. HC&Wk[7\; }S5o5!cC h;&' !*5K >-N' #cF."$%Ipi"a&M^!O7,?5 E $=a !3  CNt4e26m73!@9.gDO#=.puMer{H bF[eyNUYz ,-))"%^+<3AH6'A(]#EMZ4cL I=!=;9(-0  '*N;:  7ahoJZ ;)-prG dV1k= 4K=QA" jnG-D=#0 &A  {m&)4  v@PqېA`Uvj0 h &r_ $#"..'#"$54654.54>7&547'&546323263232632>32>327>32263232632372&&'#"&#"#"&#">32#"/./32?>54&54>5&/#".546?6?46324&54&#"#"./&"'"#"&'#'"32>7>232>32;>3232654&54654&/"#"&#"#"&/&#"#"&#"%37327232>?>54&54>7.#"#"&/.#"#"&/&#"#"&##".54632#"&54632&54?632#"'6?632""&5'546;#"&&#"32>5&#"3265 Ut{9?A_YH1'v^.Gi_ _C :. #*J) 2ZC-0 G3!#GA_ Q9P:cR+6 "'],   }6 )%51L8&/m Z;w0W  V\:m"AH "*^  4OR! 2w:dtlQ@*  h N2+( A.$ D$;! $,)$8 19)m''FE?J=8#  H;#OJ-#   :M-94%D.80\@+8439PL/8  y_ ^  4 {   !- 6.  q#;Fd19>v: qe92B "MAm% (%V % #iE  9,!!'+%aO  %,&" d~]e#"MCP4 RZ2#`5-' &dgXk@:"0/=  &. % D ^ 6,2^O8!8#07) 3O$(S) $P WV8054&/!76327632#"&54>54.5463232632>32#"&/.546732$54&#"wb3i6o0E$s%33T'F   }$\ J TU#]-Y*&PVu  k@C92P U<6Z %911N)A P9Rv 4#&C9$B9;N-7W,^0o9gX&2a3x\6  a   +   >~CR0X(O%   翈5<8z?(BJ%@\P:%*   m!!\=+M+)[*)5'Gi TU#"'#'./&#"#"&.#"#".#""&547#".54!2>32?>3 %27474&54654.54632326?654&#"326?>&/#"32632326?>5.#"32>532>3232654'.#/.#"32>322>323265 Jj&"!&5,1VWKU[R3TTH!&y !(}GL'^-qQ! $)CO[i,  R J _   "    @•<  m566H3  kD.3R15$ha;A'ȪOd7I636!  ? "ї +_! E M4N   rZdژ#HKTPJGO C##fdw{ 9'2(w3(k , d  0 A- l ܌ ;HFD)DP u,*'p},9p@ Yh@  ,@ / d 0 g/  r E<m:In>325#"&'%'./.546?>7.5467.54$32.'&/7&/&'#"&'32654&'32672632#"&/&/"'"32654&#"%23265'47..54632326?#>54.#"47326?>54?>7654/./&#"#"&/&#"32>323326?6?6?654&#"#'"+"326?654&#6?##"&/&'32657467.575'.#">7'-[-  'aX9E"3O+3>,"  ' *&&+L?#.P7 iC<sg=" ={>Z 'D  5#M #gӠnT2d##$%,*4,   ]#81 ;={zz22 *   1demDp7>327475.546322>325.54632654&'332654/.$654&'3654&'3654&'3.#"#"&#"#"&#"#".#"3 $65&'#"&5467.'#"&5465465.547'"'#"&5<?#"&5465.'#"&54?465326323263232>3232>323265&#"$/.'463232$?632 #aҭq314[Q8;dA9#D#-S##7c/64;dC7*Q'330_/*6$!ZAQD?b /#.  h?AB=aXL۞bC17p }..;})=4C1 6L>59n |-/;fB05s&2C=B.5sx0-;To,IɊk)]K(E]13,P;  =a1(!-3.<#>E e81,'#8(946 '#8)(#JB8 S1A># ?sHL6:rsoB 8Qr{  p $)8! 4$%4.54632 ;254/&#"%325/&#"6=4#"#"/&#"#"/.#"#"/&#"#"/&#"32?632326?63232?632327654/&#"3 $9(d5i< /7Bnc  -n a  @  N  U B  g 5 ]Y  o X  X i  R~ h6v-P7'"=nHvR  j ! / A 37>8 B 3C  -EMGH1     (4@LXi$#"&'"&#"#"&54754&#"##"$54632326?>54/.54632326?>54.54632654&#"&54>?>32#"323263232632;2654. $.#"3&54?>?632#"/&#"#"54?4&'32654.#"32654.#"632654.#&#"326532654&#32654&#"&#"326532654&#"326=4654.#"+KI , SR-9)T#89m/+O fP#n :Q?;  <>B= h+:&(T-h<8#S*%A p5!4 ~qqzIbMlm- / lP  ` `  p nDI_h'8FN+z +8 }J&'B#B0#"00"#000""//"0"#00#"00#".."4."#00#".M) @}"\ && " ; Y"  t6"  !^$h] 6,,nTPQUl,)3 ZkQ "_ "5sD FQi! _^ H m7 5l  %. @4"%B#L;$CR4300""00"0"#00#"0|//""00"00"!20#00!#//#>    h K~#"&'#"&54?>?>54&546?6326?6$32>323267.54632>3232632326?>54&$&#">54&#"#".#"&54?.'376$>7$&#"3265&$/.#"326323265&#"3265#".#"#"&54632326?632632#"&5 wY"]~ F2*.(?!D Z\JS8'(K+Xgwg')2* ) %%%`rS8 n5D+6Xd(`Q,J:8fy5EI=:`+*:,^78\'uo3hJeR+7 \GA_aE?^ >e  6[)# &/"!..!"/۔SK*g7k76 n%d")E 7O$bit FH3u%6?8;$**  `A!"aI]cX'rnJ)P014  #~b K)l;4! }J Z,Q8PTDCUaC  TC#$O i//"!//!+R } &5Nbt 3Nbv ,8DP\ht632#"&5&54632##"&54632?>32#"&5./&=46323#"'>372#"/.5467#"&5475>32%.546732#"'>32#"&6732#"&5#"&546?>32&/.546732##"&5463'&54632#"&#".5463$#"&/.5463632#"/.5""&54>?632632#"&546?>7#"&/.5463>32#"532#"&546?>/./.5432#$+./&54632#""/.546?632$#"&54632&54632##"&54632$#"&54632#"&54632632#"&5632#"&5$632#"&5632#"&5#"&54632#"&54632#"&54632632#"&5632#"&5632#"&5&54632##"&54632#"&54632) ; *'E?$. 3%(  $6 nb!8 /(  7f; /@6 'Y6$(7-D/#)) sG?,/> 2 !). LsQ%@f .),4[h A 0%<E<  i<)#- #),&*+L CuvY>.,.(     "*0j; NK, ;9E91@) -'Q/  &3 7"(CE ;T:DQE# !*m{.o-!1e])  VP#.2U\JD00VD3%$44$%35#"42$%33%$22$%34$$44$$43$%22%$32$%33%$24$$22$$42$$44$$25"$44$"5, ,, ,G+ ,, +, ,, ,, ,, ,-- ,,, ,, ,+ -- ++%A4"- )? 05*,G)`q6&! !) f3N*g 37"=:33$%22%43$&22&44$$33$P44$$22$33$%22%#44$$44$33%$22$633$%22%]33$$33$--,,Z,, ++ ++ ,,,, ,, + ,, +-- ++,, --c`  #/;GS_kw,632#"&5$632#"&5#"&54632#"&54632#"&54632$&54632#632#"&5632#"&5#"&54632#"&54632#"&544&54653'.54632#".$>32#"&5#"&5463#"&546#".54632#"&54632#"&##"./.54632#".#"#"&546?>32#"&54>3m9'&99&(8.!!--!!.50! .. !0+-!!//!!-.!!--!!..77'(7:%H13FF32G^H12FF22G4#&441*(::(*9{_cxHK`J -xhX6=t# V*XrvB%8  J_%8 ;*12 Ans:7JonA2VoqB2qD0:b$7y>kWP5O ON77'(87)?00 // --!!..!1//! ..  //!!..!7'(67'(6FF32HH2XFF21HG2u54$%45$38;'(;9*Vod9=t;267&$32! !93la`"$Š3mT|{*)  7(5* 98diADf8g d+_6HVa|2#"&546?6?>7326763>?#>?>?>?2#"&5>32#"&54>54.54654.5#".#"#".#"#"&546?>32326;32632#"&5#"&/.54>32.54632#"&'$#"&54>36=467>32632#"'#"&5>32#".5#"&54>32".'>%#"&/.57#>32%.'&%"I~1' '3!8)MsHH>\&4G~8 $0?) ' ,,&8T.E  Rb`<;UJ`BB}6 PA!C *#K"#f"HI =("C,#  C':K*:E  u6 Q-* --P"-0 E )5G&& fEc6C000" # q &B!$g I4 ' 8maWly0y]THVB7I;dF#/Rk0 #&,/6"A8 oB-M%z$FA7S !J*>4&t,;} _='J<8/*8IU: ' 3d28A.""@8"` &  2"% %&(. L; &O I$a? L $  + ,>  W,9%;B6"71=n9*P%%L 3    + &7 NM 3&2_+BXp'32632#"&'&#"&5%>54#"76$7.#"#"/.54>5<'4632#"/.54?>54&546?654&54632 #"/.'46?>?>54&54654&/46322"/&54632>323>32#"'#"#"#"&=46;2632#"&/&547#"/&54?632#"/.546?632#"/&546?>32632#"/.54?#"&/&54?632%+"&=46;2%2+"&=4632+"&=463'#"&/&54?>32?>3232?>3232#"&/.#"#"&5#'#"&'.546?632>32'>54&#"Ya+E^_a72y FmLRR'<9B\  G VR@Lv@G2=F  m p1 G *p>/JMAJ 9)+ E5dA/1?@-K&  *8  /b> 3)NG@"O[ [  ??  @ @@  ? @ AA W= < <  1  < < >A=  < <   [  [ %  V   Z  m ?  @ @  !   ">V; )G 7%2P o. @$If9? 1SB5<>59a + ^š )0~y=3Zˉ EdK0mi )IX M;6 b  .1Z5*%(mL+X 3'5m>.$ )N*)?L'&#HK<3<$#$WBM  11['3A ; j% 3>. : ftH%m| Z  Z@ @@ @ A A V @ @  @ X ==  = 6 < < <   << =  [   UU  \  \ AA ? f7 yH %?s MWP Vp @GFQWM6.], *   *=Yc| .'67#"/.'3267673.53267#"&'74&#"/&54672>32>?'$#".546?>72'&/#"&'%.54>32>?''7>32>32&'#/.5467"&546323'4'4632#"&''&'#/467&/7>32>32o!C!#1`0;07 %$F.yZ {^e/#? 9 !>CI 85R%K} 8ߛI 9v & *;%)vx 34Pcq04! & ֐0>*7H * *ca  &1;Ȫ )oxCqH B( 5\)" \k,QyRn>p4&D 3cb SNf(S66CTGd(x.P; n7 B b:^K|\ Fht#".##"&' #"&5467'""&'&54632>?2 >332/.#"#32>5#"&5463>54.#"3267#"&54632 {f'j& "%j%bZށ% KM &кPqI:  ,#!tahmV{R>XqV ½S  !0* EY32.'>3232632'&'"&54>54&/.546323254&/.'&/.54632654&#"32732654&#"32654&#"32654&#"#267.'"&'>7654#"##"&#"3%32674&#"##"&#"#"&'32675473&y^ ?z[[{7 Yieq+2| ,x2  . e`0,9t".&2F%c% YS.4p,0.Z,   x tU J +R3,VR0;JO4.VP4  W&a,    &G9'd ;53 CX     $i2> woYcyN{t^YyOw~TYxL  V !  4+% & +4./2,  ' ] 3 T ,<L2#!"&=463!2#!"&=463#"&/.'#"&/.54>7.54&5467'>7.54>32>74'46?67.'.5467>7'.5463232>3232632654'&/.#"36&54632#$632#"&5.'#"&'32>3232>3232652+"&'463#"&54632$#"&546?>332654&54>54&#"#"&54?>54&#"#"&/.#"632>54&'#"&'327%654'4.#"&/.'#"&'#"&/#"&5>7'32>3232>323265&54632#%4632#"&nYs"QUTR# }"QUTO #zT2h\06 F8=;>/9D A58Ff9Mrs,M5 ( Wiux9"6C>   I1-G 4>BO>t}iU( n 1)A#^5W& 'h] !Sq7L0#O,*N"4I;d\W::: *)-' 872h$+`` 3P3tK]C-*c79I5<2?G9Hn'0>aKu3K. /@&?k*Q{\4==f \{?$w_CET};@KQp,)jWS8Ny * Ed{B69!UJ1A;:&Aa*& %-.555:&&">& c( ]EBr" "rB?_  G>6Ch0c+I6 I)  5D7D;fNZ:@KSn,)lUS8.) >?]%;GS"&546?6$!226?>32"&54654&#"#" #"&546,;22>32'.5467+ >?46326$6#".&/&/43232632654&#"3&#"3265$#"&5463232654&#4&#"326#"&546?632346?632#"/&5'&54?>32#"'#"&54?>;2632#"&5#"&54632k|#-h>[[Bi %-!/G HZ0=u; , TsoW"|*Q).+)"YhU*=H tbav88!Y   0'`TqNA^g[ mJ?TjOELpI0B]J4DVAR>*@R9 G+!5N);nA   A @     @0\A6 [BA%,$ .!* 'ۖ=w4| -c 4!+ W 78QT/K$7/H2{H0K0>.4Q57:h: ΄0^)I6I#" -U,&T+3  Ft r{^m]eұSoUQs@8Mv? B19gI*=c:Z7(:R2(BZ"1 A  A 9/B   B   @ @  $6"&6 l$5 4OETdp~#"&'2"'".54>3467&$54>326?>32.$#"!2>5#"&5>327#"&54632#"&54>3eǕ5yFv !Gb ^nR6}N7-#Ul:K/tI*#* b"mG8йZ 5 P[ZtUK82ݏIl(3)&RO4tLUy\-4K%B m!6'\v 1[QM +a#"$&'#"&=47&5! #"&'>54$#"6$72>32#">32+6$;2#.#"2#"&'"6;2#"/.#"326.5467&54632#"&'#"&'#"&57>2++"&+"+"&5#"&=463&#"3265 <. #!# R\! 9LO0-1pBPH*.dg68Pj7<3P|#Ǖ+(?(XjKN #E&IHN"F%*L{%G I7 P76S 6J7GO:&<?&%>=&7PBDooC?,*??*,?  n;QW-T+ &n5Iz$Is@9w?ZjZd-WY :;n43 ( %# (Q-  5K8ML9 M3K36O$&%%M8 1?33u?>-->?,e :AMYes#"&54>?654&#" #"/.5$32>32>3 &#"3265&#"3265>7.#"654.'$#"6 ,r66EXTS?;uj]-H.]0Ua#$]<F#$'#%#1'$9T)jr.`g( PhX{'&d`=:7MGk|BAH$aS$D kv-9-Gp}ZEC7(!5+H9.)6/ "32 @sAgj/DOt 5ѽ{ms0 zA3N#",&54$7%>32 # $/32$%'&54674632#""&'"#"&#"#"&/&#"#"&574632326?632 sOM~p͂5.HL,O m!"; :o$wX9  #$!#I=   # +2   =G!B!X:5M 4j18 0t;o~N>Y=K^C 8K  -  0f    b2R 01Ij J#".'#"&54>54.#"#"#"&#"&#"#".546?4>?'&54>54&#"#"&54>?654632>32332?632>32&#"3265&##"&54654?>54&#"32>5 JxG[' roF !=}Ty^,5*W/):*74@$#$@) (.* %q5 C.>I"1( !$>$  =P! ,M*5' S1\B}) 6bw@Y[   ' . atp%By& ;9CAYL,.P%9TKL c)muKN #2 DAfO6&21 "4X*+.=5-y  +ZS    !($"~4b <'&  )0=+-: QYX  7Ygmrw{!-7CUZfp|#"&'#"'#!"&=#"&5467&'#"&5467&'.546?>76$?27#"&'%.'7'3/7'&'7.'%7'7753267'#>7'>5'32654&#%7>?.32654&#"'>75.54632654&#">7'#"&32654&#"%.5465%&#"3265.'&#"3265&5467'#"&'>732654&#>7%>32654&#'67.5467%32654&#"v7@NmL8Z3r>8LmKa Lm;.x`Z8LmN@7D[R>O8 1%q( idę?;*<$'?Q\X88Y`"2  (5 _>{!m2}&jI_E%%?.?':Mi-L1DmL?ddq gF?f pO)9r Hd@#9!QV\g fAEfW/;<0s#U1H8iHb+S7vvO`' 3"#=d '`=#"2A:c9+b=!#Z--)Ae$3L7L62,!3L7L3$eA) #+-odnH1U#s0<;5.UK&R+6<"?_/+!d9@*T{1. ,:("/6";7CK- /+7T*@y9- .KU_=#=6+R&|/,! ; N2Cb| +"&5#/#/!"&546$7232>76?>54/66;2'&54632326?654&/&54632#"&###'&$54>32326?654&54654/.5463232>54&54654&&=46,>32'54732$>4327>=4'4&/&54632#"/"&546%4654&54632#"&""&=467.54632#"&546?654'674&54632+"&5'46?654&54632#"&'/.54632#"&5465.'6?>;2>72#"/&/.547632#"&"5&#"3265$&#"3265  L:n NЈn[vnT3&A"Nrvp 356.Uy[ Wj F"6C_.  Qk /% _3  gKNvd]+\;^N  P?X,-Im$/ @  ; %E85?  $O!  ' YU F-)C HX@G;"5*=#1k'J3\Q T D')85#7V  & A-%; (8!'%  $?7$2  *M33?32  25_3i6H:  P%   (    @[+ .+ 9E( .*3p%+'+E%7ǁL jq{mV ޠ1mTEGL3\:c2(2 Io   jFt<>c KNnRiƾ   5$@ I5D! $   (IW = |6½B \{ `    '84+  'C 2O*39&! K I*4L@Ex8  <-%4-.&'4" PE<)85,+6& 99:4$)   L  -6C  HI6%= BW-+@    " | 8 -* 34("/1 0+#"/.546?.'#"/#"&54632>?&5463254.#">322#"&#"&'#".574'46?>326?>326$32$&#"3265%'"&546?>32632#"&5>32#".5 IB x J -<#9&@'"BF3!$g " nD'F.AbnRZI 7/G( VS6D3#  $   W{*dڃ  ! !4!;"$6RM++X Lm0%#4  O3 .Yo ZwgG .)'1/ =+'Fo +]h#?/+dk+R!- M+ Az7 $]  '##/#1/' :3>2*!S$ w1W/ *U #"&547#"546'.'>3263:'&54632326?632#"&#"#"&5\ 6acJG;/*$bɃ,?Q-zS \:'9<  n> D OO=Zx4 YmP`\?1CUŽ>EiĢE/7۾({$' f NxO:jNUamt#!+#"&'+"&5#"/.547#"&=!"&="&5463547.54632>3232654&#"32654&#".'()# *  # )) l,&߈ys;)*;<));;*);;))<GffG<&)+F  02  +)#"<&3zu:<*);9+*<<*);;)&|LL|&}C "Bl#5GYm#"&#"#"$&54?6?6$3 32?6$3232654#"#"$&#?654&#"&#" 326?#>32>7/ .'&#"#"?4&575463232653267326732673265?274/./&#"#"354'54&#"&#"23267.#"#"&#"3267'.#"#"&#"3267.#"#"&#"73267.'"#"&#"%"3267.'"#"&32674&#"#"&#"7"3267.+""/3267.+""/#"3267.+""/#" /OIQJNE,|Lr`6/eE  >hf=   d\ v; & 0 /I&(:vF     ^?-GG-*DD)(DD(A\K$*   i  "6 9d#sWWs#*%0>.-<1'(#HWs#(%0<..>0&(#sWWs")%0>..<0#/d88e!9#9& e88d 9"9`e88d$9"8&"C$%C !C$%C  nB%%B  UdVQO( Rn  !!  ''q   (S-/>'{  t> 3V+ $ - B`.&&.(""(' 'aA'@8HYAH ;;N^" ?NR1 ,LP3 BKL+4&&6**5`&:8 <! 'vH eYiu#"'#"&##"5432>7.5454&#"#'"'#".5432767&54$324>3.#"$32654&#.$'3265.546327.#"3: e8 (T#"P~* "sߩ>% --8%xPa B7#G%'-QQz`m J)Rz[׽.'*0-%&YP<֍/,/7oI W< O'0nva6E"B7~`')SkI4T?YS 5U =ŕH#^:P[AX@ջaQLP%<,Q"AES 6=)ڼ q IDbnz#"&546326=467>7#"#"&5!2?>32267>36?>54.# 32>#"&54632654&#"3#"&5463#"&54632#"&54632#"&5463372;232>54&/.6?'.'&#237>5 !I$D f;%!1zp!*!o\ 83{K@SRTG-R>#$jo0 M-'L sҳO}«mNmcWu{8/4p4!B_7,4V98@35I?17J K4/CN6,A8]>(;b9Ip %!.'A*Z "{%+ @l UU/W/,<;AE7e W }C9!5T3#&= -G=PE!(4ԯ+(673:s&I%P,BDbrGaaLc<'\5!37+3Z=+3TH\<8BW:J[B37VC/@,4B8&0T b=   m6 4 (:, "OeCc;pgCs(8J]$ # $546?67'&&54$!  >32&'.'6$>54&#"3267>7'#"$'t^`n)XGn  $)c8Wl@s=%-o ,+(p0$ *@\8܈LM:tMcUE|fG C*t ?(U/n^ " $te0/A0# -@() PMHM,t0 y 2nAc0A ! $&54>7.54?>?6$7463232632#"&/&#""/#"&'#"'3>54&2654&54>?67.'#"&'>?>732654&3265465'>7&54.'746?>7"&'32674&3263>&/7>54&/&/.'2654&546>7&$&'326?'.' 2QJ'.0 9B-*PQFte0ye-I: 9?B%)'^ "A#&]3$Q*\9i/ Do/V6 $H76F4V>">$T;X?/ &338=B4rB Bt2Z'$5tB  G,   !I==f] !I$=~F*\0;$N9#5(51>L˼yg7_C1ZSB&bJ"E: gA   ք@t32#"&/&/&546?632#"&54?632&54?>32#"'&54?632#"'&546?632#"'&54?632#"'&54?>32#"'&546?632#"'&54?632#"'$72?>32.5#".'&5463232#"&54>#"&546372732#"&54>#"&5463   %vWkݎ{    . Y!) / G''9 + %Vr  " % &'  E' %,  I* *-     , / W 1  # % 5i {@7  - (hA!!$) !$!s!!%$ % :YD ;fI>,9)L0  5 $ N)3  (/ }1 $ <    # ;   8 ! $ #  %/ (   } SI    % &. % /DbAV${#%!# ujt-nrvz #'.5'.'467%.=47>3!27#326$?272326$?>=4#"76546?>' 5>7''6.''76.'%.''467'75W+    X #  "_ 7a aI  >#JJqeX& ,a/*P)x-c%)K#+I!T'$?Jk%P&#?#| #, }(D$  `(7  J*1z b, %G$XS  < 0 2E#$/#[ %`+G0_*[0d.GJ)T/GA([2%B`RP!AAAm$-R-|#R*%? /; /'G( S +C]~>32#"$./&'#"&54>327>54#"#".#"3>'.#"32>32326"##"&546;272654'#.5433267.5467#"&5'46?654#"#"&546?654&#"332654&#".#.'>54&#'&'4&#"32?>323265$32?>3232654&#"$ 8q9\zDMb/.MLvz6b`wb "rw ذ kZn X54&5>3232632326327265'4.546=.#"#";2326=463&#"3265$&#"3265$&#"326532654&#&#"326532654&#&#"3265 x`yЉv>`wpduX_% )5C =0)\O7%+,\-&" Z&4 #?:&*69('8<$'9;'(6y9'&::('7#95 >2#j3!$93! =73A3"3 &94!!- 47-#02*16-&.3*220&.3*8$&/7""6o76%&07#8$&.7""585:"%/7"?D5Bbz# $5$!2&54>32732?4&#""/#"&5467.'.# 3 326?#"&5463%# 4!2.#"3254&'&+232>55";oP`RMQO7"4 )-6;  #0/  b`vk*?d9#$wzDHXKC37x?.<66 m$5#(.4!#l~'&2nom.'F" :*@&B #1&  $,9*+R1 Mw,%3*]/t{xkNl:N! ?[B*3 mt e>d##!"&/&54>3!2>=!#4&5>7!3!226?6734&54673>3232673.#!'"5##467!3!2>/.57#54'467!3!7265"3754&'3>3232?34'4#34'4673>32326736654&+!"36?6?#"&#"6?6?#"&'"%3>?#"&#" ?_Ag>R>CD09C:2OK@?3/k*  !  C#A/+( 8*9 951 #Q -94%J`; '$ <'2S/X  @ClG8,% .)3~NQ B 41,! 2'1>  H74J3  *P  #+"%Yk 8B0-eVQ|x`eK1+EGh;vl.%,i.$  %7q7s )E|2"CRP X;l-)? a;ٕ* U . Lz&    :? N PVY    7w< : "  ,    7K " y  #0DSiu#"&54632.5463>3244&'>32#"&'.54632.54632"&#"#'$&5463.'>32c1jГ+cхj4.PkU8(;$ ":DV+!&:q*,N+VX)a먦i[%pWkГr% KP`$1 )/B:,OUE )  ;TAE^PYWG hY92[{#".$./&54>$6323232>?>54$#"./&/.#"3265&54&#"326?>5632#"&5632#"&5632#"&5&54632#&54632#&54632#&54632#632#"&5632#"&5632#"&5#dLPr`*be2x0!!j*JU\|^ $ 26%5q7.J-G'#- bxBw60#978!EhQ   8&1XFvmdtfZ{R*0R.1K)1P,2K &?& >(J$?'!=*73 6 9"8$#0W&4Qw+L!+E",M"*M񯄥I.b=x?9˜_~nG,vkS xL`2:  /&w&9;iZ%$% $Qz5U{<;vB">GkP1Vsof;MgS@#G.I(K!D/J('"&(O,.HG"&*L-+Ji!$B&)="'F++@2G0I'='?"AA*A' s >'3IWl{$#"$54$32&#"3265>54&#"3&#"3265&574?>732?#>32#"&#'"&546?>.54?>323267#"./.632#"'.5gf, -&"--)",,.#!6*&$4k< H.  Ph8?L&6,-> 4'3j "9#J;O5)=R+.3,K_ E*1G  z<(+O F.C]_@*'*l%!)#*1"#14"{C7?}!.@#uK +6%+E2`+3Ya<$.0gE=) B: A.Oq  )Bq`H43@QB3FM7 B%MZ#"&'.5467>32>54.'#"&5467'.#":7 ?6732654.#" B r}g8Q@/3*>  1m6!133mZؖC,H  %<L؁pN? ɖQJuDE@s`(J'&2 $+/]\Rx"K b.2EiJҡ n4vNPo% "#".'#"&54$32>32 ?)M{nȾ"IgH-\m`#fŁ,6@E#%bH Wl%Eg#"&/.#"##"&546324632#".##"&54632463263246;#"&/.##"&5 W1 ;-< nN|#E'E(@sF%lSx+R#/!  Bv(K!'BfE, ;({XmR!-#osSh#3axTe-Ǹ"!g#! *(luS Beq}#"&/.'4#./#"454&54$327&546?&546?.546?&54637>32763232654&#"32654&#32654&#"32654&#"&#"3265 + 8Y:Z1|&)Q>jM;$( I8,.C3 N8R:f)cKCO E\F))))_**++9'$%%{$$'!S{~} #! G(" w$663232672?>54&#"&54632326?654/&/.54632>754/.54632&/.#"32656&/.#"3265 W+59(Qb! 7%"<Y lߒW+p&j-+**q        4 J`;As6D<#Cj( B?K($e,*6(8Si_ !0L^.-3 #8           V'o6Qy8C?" Mov2 #"$&'4&54632'#"/#"&5467%.54>7'#"&/.=>?>7.54632>326?>326327>32>32#"&''#"/.'%.546?67'#"&'.5746?>7''.546?6?67'#"&' ({(/ fK 7S:Tt$7   *a::a^=  0%,/d85 >> >D !b9:?  #O8 X*0VPz A$NK!G2  j"! =T^U dQ)-!8 L%DTW76' =* 0<6,  P`mF#:?  7;Or2 * 'l<0q== & :H6    &&#kH#, !& N %Q&;)A  H_ay%:  &A:(M,d/W *N%: \pP)$? 1 9 (}#".#"#"&#"#"&#"#"&/.#"#"&54654&54>54.#"#"&54$3232>32326323263232632&#"32$5654&#"326754&#"3267>54.#"32?>32267&#"37>5&654&#"3654&#"327 [5=^uF%TD,  @(28k 3rO۱a"H&T.jOJU#3/.  + H  #OOQ=|UNt %= Hu0% &> :_f 8F[  (> @#H 8! _!W&zVA %V7"A!?c}E  f&M&|?B:" /- ' ?:2K{NU  Ik,5 !< ;+ # j: AH%=a  "@%B!  #".#"#"&#"#"'#"&#"# 4>3232654&/.54>32'&54654&546323>54/.54632327.54632232654&#"#"&#"326&#"32654&54>5 pF",   $   %-5# I"Dl,0 !BUP;H.B#B  {C>z8E*     4-GF|9~A&?  .&5IB=.i9VE'dA    .&!+ $   ,)8o?)F-# _.'20  .@&<"#la+ r R#:Vr".% .'>32%7>324&#"&/32$637272.#"/732$'32$7632#"/.#"'&547>7>7>74>7%#"&5463232654&'#".5467&54672>32>54&#"'4?>?&/#"&5467.'3267>54&#" k  w6 L;[ {B  cEuAB4t V $Z/*W'+7 N<JI6mzp>6od  # p6W9m `GN5Z @c'L6 +N40 '0s^BjC0 +"+QgtZJ6DR}g &-l8<#'*(%-2:3E!1i$  D^+)_3K=  *)z4</^' P8 ?  I, ??EE4 n 9@FG(Gh 1+ ? 8(  4) ' L"0$d13a#&eD*MA%A  V  (-1>54&/&546?232674&54632 %>>7&/"'"#./.'".'32$>5]=z6'&-  ;,:?[>W#%b"-8$ 6so,[EӖ@Y "! hf3'*7 /; ``e!) a[ޣTه1!k}k*#WVT!$! 3Kj$G<  :IOU^TNF7 1GCB'/X*QQyu4[ Hjr2 O> E{ #/ *@J]cnsw{#"&54677>7>547'$32 .#".547326&#>5&#263276"65>7'#"'>3277''7'7'&#"7>5'7'#"&'>37'7'%77'?7'77.''.'.'326'7%7'>7''?>7'7&'7.777 HC̀&e4U'(]5Q|&#H(7Nv@'. ,W25?!>#J;+x6C+::.)R 7k)"&BxN)vC94#mB#>q<kw|r}p{oqxrI1/>,Tp{? |l}%!vG,%Iyoyuqt#{k{/zn[ynwpouo4mj/iykx;qk|Ai  aktktiucuF7f3t9tc&b2b.d|hbIIXo%#raI hvmX% |7j7^./8yPQ&$*3ё79Jzaǔ#a9$#QH#oD2+E a~L-KD{^*P$a= + 97A$`u043=@RPUUTITT8kLG&9T%9Q]:G 3EQPR2TxQ QP8Nv0NOzM.O.*P) &N~PF}N~\`}12*\3#nWp",L/KjbP(2I#R*hv*T,o # *?H#"&'#"&546?.54632.57./&54>74632#"&'&>7#"/#"&'#"&546?.54632&'&/.54>7>3276/-%T'm  k1,$V'4b,- "CfBv   & 7e/G:VEq'  /),;- I$U S(-<- I$ " $M3 %+=D6A E&K!-8+'W  V&J -:+&  =5! :".2=X$ D&:1(" 'U%..no&V%-.%-132"2"AC 1zn#,:HR^lz#". &546732>3267&'7676$3&$!">732.$.'>7>7.67.'%67.'>767.'67.'.5467>7>72>7>7.'>%>7&/&#"$&#"7>5.=>7'&'%&'>7'rǪ ^i W6S Xe7DXv mo+!B/e.<e\nEF&"E""G%'Jq!G$9'Cb/MD &Ax"F88+O."" $R+.U* 6I&rQwk%^BNC%+T# Nu*V6 ."@v8: #>1&H (  (&0l;#Sl  rN5"DDOGHyAd*8 c8YHGf Yұ4J9+{!b%e?E[N@LwJCBaJ3sBp79 l.-Bt3A!" SJH{_V--]eV!A 1zH0k>p0,S(08 7;^ !&kFHw.# &Bo-!& &d=8XA= #&G$  6H,  !2P@+ O 9-- g  +<S_w#"&, $'#"&5467>3232$3227>7.#"%3323732>7"&'>7"&/2>?>?""&'24>7#"&'2.'27>7>?>7"&#"+"'232>?>7'./.#*'&$#.#"' :@ (&+z / 58\_\LmRM#% 3q6%H$.:(  +7.`1-#:.]-_B     1Uj3 #=  9n5Jqp 3!HQ   )2b01 &!SZ%=  +A!B"  RV\@C?  'OH\  UD01 )4]:,QG - .V% [,=zB W  1z' 9 :8<!:# 8\-  .- 3@/  O/..%KOJ7 9p5!XSZ#"$&'&5463254>54&'"#"&547&54632#"&54654&'%'./#"&54654./#"&54654&'.#" 32654&46?>54&#"ؼt)rBt8ET 21/BY64;730zrM/2jO6Zf 0/\$hlF/V#3 oN/U> &,^>=_Nc.G}FBGXe m`%-q0 3KcpF3`0 49WWKs`jɸD50I;Gc^G)-m'?^T .yj  -?O=,>3- 48<1$&$F8-6  :4 ^\e#"&#"#"&&#"#".#"#"&54632326?>54&#"#"&54$3232654&5463232654632 ^Z.6H H5pMtp"E({6?C./3S56*/ē;}^D~B*<=4V;cPoQ$#"&54%.54654&/.54632.54632>?>32>32.#"3#"&5467#"&546732$6$65%>74&#"ŤRARE%qT>-L?9/=* C1:DZF03k6zr^<; $&^9BiK %N94x#T!B!K@ `xhbr4u&Cc& 4>fKb8, hYB,WRB<M @+FM5[2a4'(vI429  }W^"#"&'32#!"&=46;>74'4>7./&'#"&5467'&/.546326$! >32.#">3232654&54>5$.#"372326?>54.54>53!26=4&#!"./.54632'&5467.#"326#"$54$32#"&54>?>?>3#"&54654&543 }&Jpu [A.H7/Ia\! fi#!O !je(<3 $5m5!=ɿ 9'3&P8sA:;OA{\'k"  -9L7O#$32az5'- ,kx W#A + H,1   wgQ$C\,&0*M *lH "" "z 8G5+05,0_D,ш lvvg Êb&--1NQ?##&>5mM[7=eO4T՞NCQC +97=I}8I&M2/$;#& ed1B) )iOO76QQ6 #8`!"% 9$   u ' "d|#"&/.#"+"#"/.54>54&/&54654'#"&/&'#"&5467"546376?>7"546327>322;22232654.'#"&54657'4632#"&'32>32654&/&#"#".546732>3232632#"&/.#"63223267.'#'5>54&#"./&#".#"3265'46?>323254654?632>765#"&'3>7.54/.#" !d[aQ#,1`}d:  +,%-c B 6)P#-$X X  ! % 7  ' <@ (S3=' 0jHv! p3nD,5_} &  )1&& t)d8Na=3 %:57 <) (H '$b>u $         WC  % 2("    Eo*$D D< 67 CPX NKL#@  #$(S<:%->W)X+A/+DI  h@!6G)A45GC t&B$  ^   b4n7 &   .*(  h ;T =$604!+  ;bGI&!"&5!2>7"'",&/&#"#'""#'32654/&'43222654&5463232654&5463232654/.546323265>=.'&+"Fr_ad DGN  6XG~EE &+&"9 CU )8( .!   %&-  0  ?կ&'^61X[hbUaoum]YaGaO  '}#I]W ! ) --  ',g  % +"- )#2     fE<'|h+9Sci4 &,!".54?.'.5!26$32$&#"#"&#"#"&#"32654&5463232654&'47232654&5463232654&546323265 &s[h[pz# v}*)YTE|կ"8rMCb?~D: '1   ): &F*#@,' %#2 "0,$ E%(  .#[t'ALciB  {NjX r k}2߇p  " .( 0   )2V,)("' (' 5#  - J:m7#>32#"&#"#"/.#"#".5463232654.#"#"&#"&#"#"$#"#"&54632326?6?3232$3232632#"&+"#"&#"#"&54632;26?>3232$3232632 eӇq`B6$1CB9{GQM)(P(Q(*e4YcȂmHMlKFe43232#!4&+"#"&5467632#;#"3#326=4&+3)wZ[o$!M6324&#"!%4&#"!4&#!";2;26=46;26=4&#!"3!2654&#"!T(5%%5&""O56NN76O Ud # dqmN65OL 5q%55%r!I 7NM87NN7! dd ".8MN71C )W`l!4&#!"!467624&#"!%4&#"!&#"754&#".54?4#";232>54&#"!#"&54632U(5&&4)OO66N N66O */0cc 6D*7t"Nt~)(N76N \>?\[@@ZL &55&sb"L 6NN66NN6* 0cd6!4 @A; 5ON6[[@@ZZ@ B3.#'+/37;kosw{2!54&#!"!463!265463!23#3#3#3#3#3#34&+"&=4&+"+";2;26=46;265#3#3#3#3CAa>5%%5>aA&64`AA`46SRP537735RaA&44&2Aa*.-C__C.*H7746  6254`2!4&#!"!463&/.54?>54&#"2657654&#"#"/.#"326='463232675.54654&#"#"&5'.#"32654&54632326$.#"326323265#3#3#3#3#3#3#3#3#"&54632'"&574?6732##'465?4632>Zs2##2sY?d   XD27.1TV  (##/0(mME';     !'8.2%4 .#1 /Q  6    5Y>B"22"l=Z#*    2;'&  *))Q3 T*+F/%,)@F+U*%@),$ QQ3!1 qIh!2^O)) (  )BCt`m&WU!  B 1 25 <Xhx 0@R2!46332>323263232654&54&#"#"/.#"3263232654&/&/#.#"4&#!"3!2654&#!"3!265&#"'#"3232654&54632654&+";2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";2654&#!"3!265"&546?67>32>ZY? '%&  3&  8.$9 706"   3=4>+||- -/J -BP"!E&E %$" z9999999999999  99  99  9%  5Y>l=Z '0Qw~A#(6 X*C(-%&3112KXU /C*k^N0 -- ? .. Z$! !D#%+>*V+ *  J  (I  (  J   J  (I  (  J   J  (I  (  J  kF   G  X"&*eimqu!54&#!"!467>72#3#3#3#3326='4654&#"+"&54654#"326=46;2#3#3#3#3"0##2"  dՃ'')*# ? B"$)'# -d! 9\#22#9 E*)&K&f3!,   M*' *W- )!7'   X!%)-1PTX!54&#!"!467>72#3#3#3#3#3#3&#"#"/.#"32>5#3#34&+"#"&5475'4'4754632;2654&54632#"&5"1"#2"  de|wU!E ,,B2Pu@. >Y+- $')& B ? #+)''"9\$13"9tz {\GV55NGo5(  (3$) ;D ()M ,!5e!8)*E ~),Wz#4&+"!"$&5>$! >3!2!>54&#"326323232654&#"&5232654>54&#"#"&54654&#"34&#!"3!265#"&'4>3232654&5754&#"+"&5754&#"326=46;2 ~H/J1FHyU~:FA}NL}f?R{fy{\H O"!3A,"~*#R?32*]  42CuK9M@,+AA+@,@ &)(/+'')+# 2 #"$)'#  o]0FG/ZI~e:GuG5BrSYjWPVcg>/41,??,,??,X.-4"1E*)  *e5!, '&-$ 0  )!7'  B.J(,048<@LPTX\m2!54&#!"!463!2675467%6323#3#3#3#3#3#3&#"3265#3#3#3#3#"''746753EA`?5&%5=aB&05 g  g 06QRɅ``aaQ  gh --_D%55%\Ba -  +&-``` =*: L :&*.26:>BFJNRVZ^b2+"&=#!54&#"!463!2354633#3#3#!!#3#3#3#3#3#3!!#3#3#37#3#22# 3;hr\<Z>Y;3 .. fc/;;70#"3'h?WX>.=']ffcx3xL!4?47.5467>32>32>32#"&'#"&'#"'7>32632>323>3232>32326?63232654&#"#"&/.#"#"&#"#"&#"FjL x0*XKy&.[ۢM3$|PDv)$J*),  n > %3#$?-fAK`   dz]y  dDVl A,\c .Ka & H.LshFF'27Ν8(-5)!'% (()C K0-/.3 `uB; %FQjLCGq#"$=&754$32#"&546$654&'#"&546?,54&##"&546$654&#"#"&54>54'.'#"$'!2$632654&#"$ M-RLKL%ke^KO$8WhGHR'fEU씘`M?6!sxx}${"Z]nks{]^},P3F;#*'*# 0?$'43F;!<@4)FsH L'Z^g>x2IO77QR6 } 2#!"&54>5>3#"&/&5463>;5#"&54632>;5#"&/4'46323267.546323>323>54&5463232632+3232+322#!!!.35463235463235!#%!.67##53#53#53#53#53#53~Sd4 R)Wn v#O  K4r ^ ^%d?T   1b&.)6)  N   Q  '9*,&a2   T@b"bZ$p2L M# o;z7mj'''&kn@Li ?[~_gNNNNNNNNNoNNOO&2  $7 *  yM~$ N:- v` B#+H %  F-$A `v-6R %~Lz  /})X%%XX%%X7+'Kd xm(*3!4&+"!53"/"5474632#35335'3353#"&/474632+33533533"/"5474632#35#5#%35dC   ʶ :^E_O?   ˺32654&#"37>54&#"3267&#"3265&#"#"&54654&#"3265jhg_&G4 c +]Yj|^0+,%I-/;x; %  &/ R  IM!8=+ -=%8O#o,  1%jO;Dq  )srZ -WUh68'2]?CZ;C +2#!31##2  /!$05A/@7 \*3 =&a^IhL9+-,-D  (1% \+0 ' 4&'6LApA 5$ N2"$ /"-oY+K/-~v"rb~XV|).h?>'ImhD1S ::++;:,'0O& U +>aQ8}l 2$67#"&546?67&/.5#"&5467"&'#"&5467&5467.54632>32#"&/./&54323 $654&'#"&5;232632326?>;2654&54632326?>?>54.54>54&#"#"&54654&#"632#'"&4.5$.54632&54632#&54>32326?632#<\*HT+(0   E+6MFV0 '<]M'Iͅ:hjbÛig_&): d+8\zqUM[#- '|] %1F& 7, $)(F' )4F/'*,rA3&1 *Y('ru=Uh;ӄOJU eef \PhUXW#&:39<>7OZC?]22#!31#SA 1(# D3O!-%>8%; &#'L5+H%'9**h_'z\hjj2$Y^ )$<'b^:Q&_,6qG95%:% ^8B)- *  -",[ ?,20 <"!10aD NyKMrO6${v[y }dI|VX~7r(\ Y:DhkI:,+::++;F.!W3 Q "V7X #"&54654&/&+#"&54654&'#".54754&/.+#"&#"#"&5465'46=4.54732>54&'#".54654&5467.546?>54&54323263>327232654&5463232654.547&5463232632#"'&#"3265&#"3265&'3265 =:$ I+#)d$57^uD,cjk3L7t$"'%% (% $H*W]J"!< z')SV$7*3AW 7"& S*ptlP*= 85(  -!.e%(-Y-VU$Mj# --R)&:  %(fu&!* 'G 'a3406ItC @=  TOQPW2/4(=t68'3 ! 4!-8 46JzF#BA   852UC( 1 C9 /qDFa4rg8T`1 .   ?0)#@  #/##"&54654.#"#"'#"&54/&574&/"#"&'#"&54654.'2>54'#'.54654&5#"&5463232>323263>32&/.5463232654.'.54632#"&#"32654&/&#"4>7&+"#"&5467326&#"3265474&#"3267&#"3265 mU9A @5) "8; S`  @$+$ ' # B3( (VPCy*Gu +jt4`JB>kfJ1%39N' 2l@5a6WK  )/*+7_,"4CE} 1JJ DP*\K`ڀ7UA0'* %QK, A~TO1> %-vT5*$ $21'''#jTa!KK9Ic! :S' # Ze*R)^R &'2  2+$ T ,%8+8xT"K)WtD1VaRY-0=p]"9~u33/  #%*v<%:1 J42QB-&6] +" 'c?7F2MgC1$f8i&J21VV@/)c7al D-   /(!2) J A#"&'.'+"&/.'#"&=#"&54754&/.'&'#"&54654&/.'"#"&'.54>?.546323.546326;6?>32>32463263232654&#"$32654&#"&#"3265>746323265'4632>?>54'2654&#"+#"&547.#4732654/.#"#"&57>54&#"#".#'"&'32654'47.5432326?54&546=46=4&546322>3232674&'.5467.$632#"&5 A03.A:^\]8Q+<6 Znk_/ &ETf: A=*6:   SKS5N;EEB   bCFk%9!> \',." 2f5B4*xO;v]ekW<7&/.547.54632>32326?>32674&#"7>54&&/..'6?654&'#'32#".'#".'#"&=4&54&'#"&5.543>54&#"#"&/&#"#"&'#"/&'#"&547'.546732767&#'"&546;2654&/.54654&#"#"&'#"&'#"&'#"&'32>322>54.=4632326323265"&546?>327>32#"&546?>7>32#"&543267$#"&54654&5.546323267.5463232632#32>32".#"#326#"&5467&5?#  }H5EFY&L.jA&I& ,(M]{ʑ3i6-&U;I{Lq> <>~de?=fDb\Qd  D-7M| $6_% , 2L $+ (U8  4( & 7# ..D+E % ) `( "K *- 4 #&28  f<@tZ( 8 V E! 6_; e90;~obW~ XEmAMoDF/)N!  18 f> 7rC&>Du+g,QMK{95I{[u &-N*) ,) i/$B 7*g3 u:5K 9k:  L=N0$,4y(!+<Sl0+*O "U me]3?7&{H^*Z$FeFj !WtK-7u^;O1/:UCV2#$E9iM 0-@ 5   5+:ZY B4Cq>t=J% BU A !!C"<( ]L,O) I0>f5   !  $           4IW>' W?>' !Iv# R\HS{z'$pp7'.547.54632>3232>32././.'67>32>7.#"#"&'#"&'#"&'#"&5463232654&5.##"'#'"5./.54?>54&#"#&##"&5467&/#"&=47#"54654&#"#"'#"&'#"'#"&'326?>3232>54.54632326323265&5463232654&54632#&543232654&54632#6#"&546323265'463 #"&5463232654&54632&723254&/&54632#"&5#"&5463232654&54632.'6?32654&5432##"&546'>32#"&54?#"&54>$#"&54632$#"&54632#"&54>#"&54632#"&54632&5463232654&54632#$#"&5463'#"&546;632"&5&54632#72#"&5463$#"&546;26&54632#%32#"&5467#"&54654&5.546323265.5463232632#"32>32"'#.#"#326632#"&5$&54632# |I2M:'L-j=N%&+Ao!*.  (  9+<>x\Z3)&m`! DnLDcLP3kWR c4c) J<:/'C"@2     ',   '.f )  -.# / ($  ,I0 .   0 W   '%.0% 0$ R-"=3) [%" \#Y%#e   *( ##  s"/$300$!5 !3 2#-4"(V_XQ0#M--8Q6(@$  %5 -<%6 28   4(2XW +  8L|/C#"'#"&'#"&54654&'.54>7'.5463237>326>54546?>54&#"#"&#"&.#"3$&'#"&'326=4'46;23265'>32+"32>57>54&'&54632#!"&546323265'.54632326332632#"&#"#"&5463632#".5%'.54632#"&8OfYD!.&R<.IC$Ul 8,R7=b2nL{gS9 .!Ws[lZlD2 奆A1%=gEBys#47:bCg@Q@/gOsf9P 5+@2 .&*J~R)  #3&/ŬDa-( ..! -/  .-! ..[ !!' +%% :0#! %'%= c0 --#*!&| !*V( -* 9fLHj eaK<*T';Ԍa/]jH]:Xn~JےXtc.C_xjVs\$S=dZJPlQK9t  pkL6:k B! ?$%D|  *15 5L)\Q B$(#/i[ /"2tw7%%55&$75&&54&&5  !&! 4) Hg!4-[+S@_3 G$T~)& (5%#"&#"&546;272654&'#"&546326546?>54&#"#"&546474&+"#"&54654&=4/&/.'#"&546?.'"&546?'4'547'.54637>7432272>32732#'#"/&#"#"&=>54&#"#"&#"32673265654&#"32?6732654&#"2654&#"%2654&#"FX0$c(( Y(z&&.   #M&3!3A  '=>5^ U  N^  ^[  \53EB+ -%d$51##6+!%32""7,!k=h8V8F)"#A  >\ & $& ) 3N"#  ,)('<2#7.X- &'f$pA     ->xQXZ_]99?7u9     !9Yww<# '"# & #y{1& B::=^-=(%8:)$6;;)%89(%6XH Q'3#"&546?>54&#"32632#"#"&54654&'"#".5467"#"&#"#"&=37254&#"'#""#"&54654&+"#"5463232>54/&'#"&5463232654&543232>54&#"#"&'#"'#"&/.54?654>54&54>54&/.5463232632763227>3246754632326?6323263232632326323272326632326?>32%#"&5>32+#"&54654&+"#"&54654&#"#"5463232674&#"#"&#"323263232654&5465'32652654&#"3>7'3&#"3265 V*Ts=_  ;X8"  #,#+ /]]|B '& X  9P5_IM _Q>OD# 0  [02U /.'  " !OI;v !A # )  #!,   3+  0. F:S '#  6'/-0  #=զg('&"@ nN @  =gL!Y\N>"   %U  ("; (% %8$9$   'A r ',#W8    [*PW.mk6l-0 z:  " 8&F1  P$  8LClo^6d1  !! /  +jId_4  i*) (  U(()85M4!  %  -9 #L4 =U  bac  F &-2 24"+* %  9v?5efV764 &)V[C v#xV#:"    ;# >$   <.!   B"  P {!   #"&#"#"&54654&#"#".#"#'"#"54654&#"#"&54>7#"&5'46;2>7632326323263232632326?632654&#"#"&546?>32654&#"3654&#"3$&#"#"&'#"&'326754'46327>5&#"3265     ((+ (<$ !B"EG|YFEZzi"(P)VIS9̉: %$r2W>$$!)&  .  6+U* WEBBEG#T0    $*8 # JM $ /&W1M  iB* $* #[     1 l% 6kV       05rgP;,#+G=0HX3 f8?J%T>k!(fK=  7A  yG Rl6   3  |1C!#; $ T{"Db !>&XKw1%2) }%#"&'#"$'#"&546?67.'>32326?>54&#"#"#"6$3232654&#"#"&5463232?>32326?46?>32&#"3265 B0JUL:r{1L;}SAE"!Xs 9U|Mq; .\n0 ٸ:jM]!!"$N} ,8"3O:3'=1 '9tF%Q=%%,9&!3 ' [(+\hqc;?* <"%^)31   AJE?mxP:L  a&  - $J  DN@-O5$oy<2%(A5!v ,6GSe# 467./.54632>32>3232654&>;7654&'&654&#"3&#"#"&#"3265"&54>32#"&546?>3232654&#"32654$#"326"@YuRmQ6o7;UN vXJk sM=JSVT3"-A]f%7e0;%$/7+bN'Fg>Flcl\>dFJX  &(-1eVCyC|Z֛S@&` MyQȯ~6%Vf4u9  $=cZUL@K3+40rCQ8GDXG&/o'(I8?-8L?/0R!!:IV&!nΒ`!? >L`{e50;cG5on' /\h$#".54&#"#"$5454&/.'"&54632654.54323>7.546$32 32663232>32"32654& /FA %F 81:3"#]?")Va`B. D:z%ac=[##*++.MH81ͫn9 -  $# 7'( 6#^ͅʏ3pᶅWp*/ #.2%*@ I#"&'#".#"#"&5454&'6#"&546?>54&'#"&54>7.5463237>32232632>32372654&#"3 j-\'%VE->_b:8F# <7>H<@VzyU6U#NF[;1[pKZ3S>%;!(< - (d() '=>F8x 4+:!(N( C"-^20_,=&MQ*#/')0#L} dƱ7/;~RSf@:7?H:4G$7;* E,#@~rdMI{^E~0e$L9!6&<" &        $ 0%~0"72#"/n X#"&'#"'#"&'#"'#"./#"&'#"&546?>7.'54'<#.547'.'#"&5432>?>32>32>32?632&#"#"&5463>?#>54&#*3265.54?654&/.546?>54&#"#".#"#".#"#"&#"2">32374&5432326?>32326?>?>3232>32>54&/&546?>5#"&'#"&546?>?>32326323263232632>32%32654&#"#"#"&#"3254&54632656&#"3265$&#"632#"&5463232654&#"3265 3, *) B >%(SBC!"A(/>EN*1- =48U3&>EI%_% Q 4,e7Dm# I/^$  n MX)Lq,0*K)h, 2#  ]NZo6 a *2 " L *6z:5+ V3@]E"5e +kH@U<J*) eF QN8_"$/  7622 Cp#"0,HA f4!G- kHRH, *=#N WpWB* !&I' 'C{f. B*:(M.  ?Z% ^^l2J:+.P !Abi>!)<   !! ,   :c2  4!EWELPЛ21B  5 ,M++eVts55* /8&&*A 4  57(#38%9\8  P5H  '4U}Ip A?bn#"'#"&'#"&54654&'#"&=4&'#"&54654.5467.54>?./.546327>32>3232?>32'>54&'+"'&.'#"&/&4/&543232654./.#">3232>?>?632326=4&5463232654&54?>323265465'473226#"&#"#"&546?>5.54632#"&5463 a8_V^;5C]UBa44(LQ 4'=4DC^;bZZ:  S +/-0\1u4j :I@9z;1  ') $9&" G  />Xh'DH?g:1v]@A?q;# ]!"=5/G)0#-7,3  (<#'*  5*}: (  %*343;(&N0/##/,%n/i5k4= mY5 %"1B!HYBD:Pu G&&  7Fw?&,. ;1,&S79(NziVt+ H`>   / D-,E+&7K>/3& 2!C!""CFGX.! #7,.>KJ37e'( ,"%'(!7(&36!': |o#"&'#'"'#"&'#"/#"&/#"&'#"&546?>7.'.5467'.'.5467>74>32>32>32?632>54.546?654&/.54654&#"#".#"#".#"#"/.#"2#632'&54632326?>3232>323263232>32#"&'#"&5#>32327.5472326?6?>322326?>332>74632>54&/&546732654&#"#"&547.57.54>54#"#"&#"332654&#"32654&#"&#"32654&#"# |5+ 7'3X-J'<1FA&*O(*N & 3=EI NWu!c9.zL5)g8El"!J0e!  mFX ?6"` )3 " J .5|5*;#  W2 #9CeSCc0&" 2 1K0 (/  $!4%!3*!+,!)).2inb@-H+'\&V&cDf."+dwtAp  :e@B1y^t/) 28"g?%G<< by&1CkU!$/-OBf*A#lI/"d:^ 0&#@'!$H(UD{g+B*3MB  U<  .      >  6F{A9Yf-;--N A`o8   ! 9 0%M `2 -N[qZD&7&#k.& ;    09* 0>%P62%'52$:VG]~jW>-7  k#/;G#"&5463232654&#"5463232654&#"#"&54654&#"#"&54654&54754'#"&54632#"&=4&#"32675.'$46>32#"&#"32632./.54636$322#"'#6322654&'.5467&#"32>5&/.=4654&#"#"&#"32$5$632#"&5#"&54632#"&54632#"&54632 8Z]o*,K 7*'/'SD1[))V74YF(M?DSZ&+=4$$55$$4 ^?$9/%  3>%j93+Eu&f0Q"-17<L&M$*\*&zZH@();-LUF2/v.6~m<6 1$  &]GA#ry^{z|c^y,S$d&K$OB0< &Q)0 <,8UwUF25 &%Y%$!.y%P]]3pB050$%#DJ8@LU?`?@++@?,,??,,??,b wx".#"&54654&'##"&54>?$.5467./.54>3>7.546?>32326323>32654&#"2#".546332654&54654&54?>54&54?>54./&&'"!2$>?6=4&546?4/.546327654&546327%3265'4'"$32654&#" ) q ? -/%~@7 +g)AP2. ,@s ;1.F u;7B &(L!6'"$ 9 LZpEnn@,ON=gB  _nY^y]x7  C  ;?~˭{/H&T_gy`UqEn     [   #@  ;kA""""70)# ' "i}$L$Wk#;@:6aqA ! C?F\@|L?w, 4(1Z*8\53t L&*. A>KB S NJ#eT,#7:}5  5/ '"  -Z:8( _Q( )    " ZgCJ3~.c ރXC "   $   1# 6#((((Kgr;my#"&54654&'+#"&54>5$467.5.546?254/.54>3232632#232>3232654&#"&5"32656?>54&#"2#".54;232654&54654&57>54&54>54&#"./.#"7!2$6546?654&54654&5=*  ?0*! %xF+0?#$|P2=0 $ "goW54&'7>3232>32326?632&#"3265&#"#"&=>54&#"#"&/&#"326323265&#"3265}i|;*2b8='>YX?;M,_g)EBW #-ZLS K' h\;n   `E^0d*&_)/a(&"J$1Y@8* &<,?r?3#$55#$3 !<;\==U=;"   2"?$ ;4##53$#5iM1A5Ocvݘ]A|WJhdc%I%(\04>,Z.E,(B511#E# &M&nY'@4   ;"nRmM"@  9C@f\&\H /(v;:**;<(i1--;=5%3 ;;*(<;* m #"'#".#"#'"&/.#"#".+#"&/&'&54732>=>;2326?>54&'227.5463232632&#"3265#".5463#"&54632&#"326532654&#"#"&54632"&54632>54&#" >$ >"X/?f$4-06 /K*3G'?/9N e(FLONW>_ 3 =  *y@#04"!-4"/2% ":' #7+  ""#N$9(]^s(58/!fh+]bS%**6:xk=# ""2L##.6$5<!3.%  q}PIRFVYE._PI1':] & @:Y@6(+=5( 0>)0@'%2."(9+ l+*=0")6   kB z#"&#"#'"&54674?>54&#"#"&546?>54&'#"&546?.54>7.54632>32326?>32&#"326532654&#".#3265&#"3265474&#"326323267#"&5463#"&5463 )! %bv=04? U8@PD aBU8Pg0 aa8[fA#7- ".Rv4n+7!"7 38')-3z^BWfO^8!!5"!4L@>3232>3232632#"&#"#"&5&#"$#"&#"#"&574&'"#"&/4'4654&'>732654.'326?632#".5>%#"&#&5'46726%.57&#"3265$&#"3265H YG(sBƢl>  /BZ=/FF($N<8 K{Cg3,,cn6itLCZZ#=  .Y799[UKX:0ux" T`KR*ut-E7!Y%riA/cwB 83   WQ9fe~D, qAYh  )969&"8 // :'08$g*S-+54 E1,%3/:*1%+5# E$#".#"#".#"#"&546?>54&#"#".546323267&54>54&546323267.54$3 325454632326332654&#"&#"3265&#"3265#"&54632  0Rc0 Q?652Wn5/`($-Li.c\I0K%' %!/1  6! 5y=2 "rZDF22#';3$'9ZtOC\sNB_4&&54("71$*?3#+= ! ;GjT0Z'"-{aB#=w-dh#;Q%(Io^=. nn /.]/^1;g3>:GMP][O 9M@X& '8~:RV.?F/+=E-~jEOeU@A@-1>@/x-<,)8B*fe0Mf|32?54632!"$54>3222""&54>?272#"&+"&#"#6?>?632#"&#"+"&5%#"'4>32#"&#"\^]w5# B52I>쥑1BH?a@ {z>> LL3dh*#_7X++spSQ/[1;" ;d-C\h: Gqp^^B-$dkz`¨-4^a8 )U-O!8+^+ '!4'% 8( ) ME%#"&/.'##"&/#"&5467&/#"&54>7'&'#"&5467'&'#"&5467.'#"&5467&/#"&54?>7.'#"&5467'#"&54>5.'#"5467467.574632>32>54&54632>32>32>32?>32>32>32;2>?>32  +#z=.A,g*H,4 ,m#"g' +i8!?   &T- uO $Q% T3*["/2,Gg8'MAVCCaj'!3 L ?  , V 5d2F(,w3B/<"3f' $0  ,-  / U5#v@ B\ HDD"+&D.  -#' +* +O3eh a~ L]]H 1+6D!([+ Y+q+ m 5J,py56 5=m!Y, &-O)F2AJB$6 *7Df^- = jW =S%0I!$+. $((' 4+,+54&#".547#"&5467>32>7"&546?6?32>327'4632?63276?32632&#"3265 8k-"!CYU+y  Ԕ7F2?~2#:%C&(h /~; /   Y9s hJ  W*(*(|,    * (*G))32263262724&'>>7.#"%"63232632>?#>54&#54&'+"#">74&'32654&+&#"3265&#"#"&#"3265 "D6!  %  :oM6 L850-{:`UVQ*)EZ`Rx+HT_a1 \h472Y5/q?v ?r/ ) 0xcJf V'!mL0Ce+66C/TA  &  qɴyUxRLD 9   /y*!Gq<$"(9$ 07$!,7#2K;/ F?AH *\>%I11  hj H/ IM): 7uGa##8C2Q,ULQ3aq|jX%.ɓ|n'#Y{ 2l7- (WQUWV #DCNZ     Hs'7A"X3     W 8  A8-B,)a?3'-@2*Y$:#*G3 ,#".'#"'#".547.'#"&5467.5467'./54632>7.5467.546323674&546326327'&546327632#".#;267'.'#"&5467.'+>32#"'>32%>7""&546;.#"&5467.#"63232654&#"32654&#" ,".|Hޗ *#Eb? &('( s !QPLSm Yg<8Ev8!#W`\$Ft0 0 z UER$f-/_5/L>  #Z-?XZ*aZ>ZYO OvJ j!x?M`K9< L ((W7&,m9#!8%"1"0#"@Q ,0uC!'`%0}LS8"!7IN>QU5n:(!   W>0;! (3?&   +Yz!  }H&(W . @'m[8\"}/;/&# (^I\a8N]LO]<3ZYAK} 7C]A32>32326?6?>32%7.#"#"&#"#"&#"#"&#"2#"/.#">54.546327>32#"&'32>%2#"&546 %"; %sq#&B G{7 63pW m :, mic(,Hn  %$H1#B-t>J'!J7`P+f6R,?1Ds'"2&G+#) f!$-A4.] !* +^S!&0+ 3ZK!&w+(  #  "A(-$O,^/ a?4 FQC0N*"EfJQ&.$,G J\hw#"$&#"#"&'#".'&$54>7>322326632&#"3265$32?>54&#"&#"3265654&#"3 @8 `Knk<4#1,9v C#739HQwF G/N  ]"(sBq-#*0 ).@B$8uB1@5='/tT+  #D#"B"ZaI- 3+/?% - IRS%

326$32>3232632$32654&#"4&'"#"&#"326$'"&#"#"/&/.#"#"&#"#"/&#"#"&#"32>6323>56?>54&#"3474&+"32676&#"3265"&546?>7>32 {z%B8 )wj@^!QF Xlؓ$,_3H`apU:iN:&)77)&:$'    /N)N/*_%I@&$$K-*,q*P+7)}'ULgyɎwOR t  9 h, ,)))[R6FZ   Vy +9_=7*6>J6@*H<0 1PG:uNy>?..>>.?H $%$P^  (. (b!~1m,a *.!     q$  !0N1 =#/9Qet$#".5746?>3#'"&5467.'>7.'>7'./.'>7../>32.#">3247/4&'32,7##'"&54>3#"&/.546?>32# $&54>32$32654&#"32654&#"6?2654&#"#"&#"3 $_`08>>Ti  5pb(D? 2.]3" Ec!Q(04y@7  3a&:1^G=XCۊ6T^k#&I#n4WJN:Xfn)S,aq>u ^L*V4XkR!u?    ikr-4"#-5"#,,"#7.!&3/1 g#G w)"4? %- !X1&(&K&U!0"8WEJ(QtH' UQ>?v%>4s?Yy*݅$    )8 J O |c95$(:4%)5<(%3>&( B> _  8R^q}7>32#"$54632.'&546323>32>32 %%326?>54&'32654&#"2>54.#"&32654&#"'7632#"/?>32#""&5%.'&54632#"&'775"&#".54>32#"'?' +-M^20  (+0=EҸpK.)(-01==62r+ ) h =-rd%`, * (+ I :   t h ##?]% -':$hJWT$4' (80+0H#& 6 6 & 777\S/X*~ Ep8qb_"E$',;?%5K&j@:ԣD@6  &1-(!1+JBu82{*-"+3 T6    +B",'/'(T% -/ ,l(44l3)"z\mnKlo\8H xMY#"&54654&'#"&'#".54632326$./.54676$3232632&#"3265&#"/"&#"3#".#"32>5 x"327-d%-QT%J$%I2_32,Q+.SsN%s):F-!//! +"!JJ !U21=Fґ[V k+9 !G@9%"a"/ L:8%$).>T% Mw}5krTD76)*18%L *#')0r+@ 'X jv#"/4654&#"#"&546=4'547#"&'#"&54654&5747&54654&#"""&546632&#"3265&#"32>5$&#"3265 ~{& " E=;B+l96e)D8>F%%|}֟蛲ƙӪE)#!5+"7{0('F @5)95"")4$,:=./ 3D !JY)6J   M3'_F <%,#<:;? p}n?6=*%4>(N *$5* (;4"*@5& } r#".#"#"&546?>=4'#"&54>5"$&/./.546?674$3232>32337&/.#"$&#"3265 }\Ol1-U#  $E+]8}~ gr  :'  16~`{I &."CG "ru 5$dfD* % ' $"$#"U52A 54  (n @֦; LL   Y--@F .:Df^k] #'$B o+:l<3 G( *',+9 +"'2#"&#"#"&5"#"&546?'&'#"&#"#"&5#""&546?./.'#"&54>>54&5"#"&546?>32$7../&/.546?>54.#"#"&'3&#"3265=-4'%8m0(*6@I 6" "    F##M$ "     $)' \r$M5R_bg<;,."B"LP`4qbmFbvzSm^md 5/  Ra C ) ! Bv3#xs $Gʖr* *) *:!(: 3&**9Nk%B!    Q$   !9a -)+&K}1$  Z)2[C"y [::K$u kOJFF&>J!& o!9a2fD--36"!85$I#"&/&=4&54654632&#".#"326737#".#"#"$5463232>32654&'4654.546732654&/.54654&/.54632373732326326?>54&#"3&#"3265&#"3265654&#"3&#"3265\]E  uo?<" ES; "<(HTJX,-# ^2" 8CkG :8+:Tv+#W8&$  $tuo k0btG )K( >InIXL'9X($'%.Y:IKUGIB'&%#U9'BN  4!5'>;  9VZ@3Bc,M ϯ8t>  !K'40h;8qr4A+ l/p  *  {# 9D"CF4KX  (>B)6s -[m#J$6/a2#K ?}B$7.T<)E+&)# dHLQgW&'%)T B )J,-%#"'#"&5467.'#"&5467.5467'#"&'467.'#"&5467.54675.54654'#"#".546?>54&54$32#"&'"32654/&/.5465;2>7.5463654&546?654'##"&5467"/#"&547.'#>32#"'3&/"#"&'>7">7.I:)  B<  :F" ( 0 G," .DI:/ +)/IC3-!#8;VB !9lb0NJ0 ,p̥ i?d4vm  3t% /k %E+@  &+$*(N'#   38S@1(!O$D#"$8 3$  )  4N,&9<,*J( %/P3"C .    X(*C&0*jN56&1 077/"( E8H^Rq& $gJ<@J1  C?+|p:q:7o50`@x} ##E"E#1=2 92! -.AZ837i1 /(  .& ; :'%->D$$<1&>J  'MB f#"&54654&5467./#"&54654&54.'#"&54654&'#"&54654&'#"&54654.'.546?>54#"#"&54$67&54632632>323263232>32'#3265 Z' BT+ )8.:=L@;#" s 0,!! &xgp  ?]3](6)% 30&D&$8# !,loD'91,F)1R&&bz#-oC/ @n(-Z+h+ N K1)C; hG1U E>{>2B"0bI%&2:&"!.z-C$H   '"wWf'!!1-0"( (X.52 8K,QV@a=SW6M5t%  &' e:Wc#"&54&#"#"&54632326?>54&#"#".5#"&54?654&54$;6$32&#"3265:~2d/gML=K( /*&.vEL/5.w$`KOM=J ^oF+%1D*#6PnP&R).E)! 04pe& T!5A  /z&[ =A#""#A?Nƅ3/#fp^J:)3H9+ 12BN#*#"$54654"'".54$323263237>32?474&#"326&#"32652654&#"#"&'>54&#"#"&/&#"326323267&#"3265654&#"3 p,¿-rׁpzhib lyLxlqM02##11##2{M  /% !:%'7   <$,$ H1##21$#1Koz*\6:oJGrꂾ_!!nk loo4><**=>)* 9#1AC/"7   #54&5747.54632.54632>327>32>32.#"#".#.547.546322326?.5463232$54&546?4654&54$532654&#"#"&54?4&#">7'.#"32654&#"54654&#"#"&5463p<O[<(~j`S&>=1G@!C#LG0O+;?(R[ob62".=F,+6ύRto l"@,("BU=-L dE-B œMA: {X\  $&35 (1% !.:5  :2&5'm " ,)P(wb UU  M'(g`Qad $7%TUE &mCST=2 i`R&* &'Ca=i0{,c&,?+ $. &9E8r͖QԆ*T+* !A=k}oV1E &6STH :*j =)%"0 &3=($5> *(&"&;-"3<,%0 },D=&#".54>?654.5463232?>3232>32#"&54>7'#"&54>7.'#"54654&5463232654&/&546326?>54&#"#/.'"+.'#"&'"&'"#"&5467'#"&546?>7.##"&/.#">3232?>32#".'#"&'#"&'32>$6%#"&54654&'.54632326=4'.'.54632326;2326?>32654&#"3632#".5&54632#&54632#%.54632#&54632#$#"&=32654/.5432lUj3ne@ȷl!+ /j2+BH/ pBM(7f;]$ 2^W?7 !$3   p[!;)%!!Kt  -W- &- #F". AF&M' "3%K$ *L!ZqI ) '!< <w].7U2$4XYrZ)  Ďt [i \GLH' !6p8/0 "1'*Al  qk`yaW7CQ,8G-A\2A;%W\;A.''A/&%=%'1<(M2   %(5.! "+N\>ix4}z0F6 <`9#'2Uw?J&?P |YK^  " 9#(>=Q (# 3!Tw  -& &  )'( *      wTKl'  2A  &9=B L3(6@" QO  (   "   B%P2gs#"$54>?>323> 32>?>54&#"#"&/.5454&#"32$654#"&54632#"&54632#"&#"#"&546323265'.54632326?632326;2#"&54632#"&5432sdG8bEFjraVaOK??34arwmW~  !$ HEru327>32&#"#"&=>54&#"#"&/&#"326?>5&#"3265$&#"32659>Z]9? JFEl6+W--W+6jEFL 0"5&(22'!6!/G(:I*6 0BB+-??-,A1@,,BA-,@[q儆ka:A޵~<<{Y/ "# $  " #" );.23sOQ:7SQ9;PP;8RR8X ja*!"$54>54&'#"&'#"&54>323267'.54632>54&#"#"&'#"&'#"&'.54654>7>54&54632>72>327>754632326?>32232632#326?632326?632;>54&'&'3265&#"3265326732654&#" jΕg5hZbq0O  `W[]$;Tw E5&1(   ;S?vG0 /a7<  92!O'Y G)&@& M@; .$I+ $%03VR5-4#&Q'H` $ . A# @61  O! P'+&BE/;ANrh4X KC&.A!!#=,+. %$ 0+pYG+Uc4pa:HG@/*mn.be 0!>! 3 o`X&?ZP#lC$D!GKe#F%%A) 3 32,s," ?OD.9. BW%/"'M 8 !     4  K   'RVA`w9ItHFGU)r%+@.)1"3%4(7) p *\$ !".54$32 $&#"3265$&#"3265#"#"&54654.546?654&54323263232632632326?>32+";2#"&#"32632#"&#"#".546323254&#"#"&5632#"&5632#"&5&54632#$#"&5463&54632#&54632#5&s7=ԗ=%(#%>/'<<($08$$8xS .fC2J7d8(#" XA1 %V;U!  Bb@.9!!'73A2=  B"69  8 / )# 0?#$#$ " ! n#OTwT`A1A."5H*?6))A7$bW X'8$m)#5Z)#!b0 z6q< e=!  '%"  3# C8<%{/ (   #!u!#$ H [ygs# $54?>54&'#"&54>7.54632>;2>32#"&#"&#"3265654&#"3 [ SlPpW,",(383{.'bU?3"yQS'g6! 8p*#3'#922%"42%&533 (_gYD Kd:xthHU$a3C1o9~->'& +;- :@0#)!-#D9&)51 +*#C8-&#5##32;(5_my#"'##",'"&5463236$3226327&54673&/.54654.#"#"&#"3 $5&'3265$632#"&5$632#"&5#"&54632$632#"&5L 7/;|:~3Lo`.:?-R~ ;534* 3B:>6777=;B2  h5;4627''99'(69'%;;%'9ڸɽB%.",+%4%* Oͤf{uIP!@! @:7b-((42&9m<ee=i;&02'(Ȇ@ !@!'M%_?DC/0CD//CB01BC0Qve;0?62%"|$0co~#"$532>54&'>3232&#"3265&#"#"/&5'>54&#"3#"&#"3263326?>5&#"3265632#"&5#".54632 Mf/l+<90d8`I 6''76''7  G:b@C\C>' 5$#D2'#7&&99&%8ϖyv=;?)AacA)><=e{}XwQ#F B#PuYovB?,.@@-L   3.2>@8):   ?=-0?A-wJ2NqPnpQsL0[g RA'3?KWco! 4732675>54&'>3232632654&#"&654&#"3#"&'326&#"3265&54632#>32#"&5632#'.54.5632#".5W))>=*;"G$D$ S-.M>)*<<*)>Q0)MQ:2   (U02R)d/^fkNmu(9?+p?&,-)*.&6=ZU`ko}I14GF43H=PPUHI23GG42634=*,<5=*,<35I4u76] v%EE"%u?1Y-J2>JVp|! 4>54&5463232>?#>32$32654&#"32654&#"&654&#"3&#"#"&/&#"32>5&#"3265-2H:}=e:W:8X +D~45%#77#1q?PP?p277$#77#$7*[0H>u:!$T0#'/ C6V"6MmC/.B@00B!!)^^)~B@00BD.4-?NZ!"&#"# 546?67.54632>32>32$32654&#"#"&#"32674&#"&#"3265&#"#"&#"#"&#";3263232673265&#"3265654&#"34!!j(!WuW=h*Q^_R0e9XxR..x[O:7N  3? 6 p #G-2#26&%76$&8/  /`b. @2, !2 7:6&%53'&6TV4R #$reT*) QTWT-..-\OSU jyLK"  {&+Z1 .IG/2DC2-- !a#"# #FF/2ED/(E%!0I!!/2z#"&/&/#"#"&#"#"&#"#"./.#"#"&54654'#"6'4654'"&54>54&54632>326$3276&/.#"32>&#"3265#"#"&5>54&#"3#"&/&#"326323265&#"32656?>54&#"3   7D q6$5 ,?,?qu ?26S  8  [+qq9]sB>n_4AED@tv?AsnhBr&ju ] IJ0&1J/#5 3).AIe?A\KA+* B!"F +;3%1I2&1I7% ls%  %/7    M, =<&->')iY3$'#q$  N )lg#}SN LM2>j*d  /$:/jM2&-N0'#!351=C6*7'  \1L0&1L0yPO-9!2 #V2Zf~+>NZfr~#"$467.54632;>32263232654&#"6?>54&#"3&#"3265&#"3265&#"3265632#"&5#"&5463232>304,2&2m,`bCPWBVq! -6/% .Z>(NuXP'@W/;**<<**;ؓط ;**<<**;gFFghEFgo tOZ} E-3I(`%si3A9/V9t3Zb%*L.@Y,*%:*[>2HHG13GH2n쨑FHG13GH2MQR99QP: DU !-6-?O[ht #"$4>54.5463232>3232632!"32$5%#"&54632.#"3265.54632#&#"3265#"&5463232>3$632#"&5K)$Z!33oT>$-g)@Vl" R/3=W`e[s|Za6%&66&&5_wcb8%&66&%8~XY}O75ST=S ^cJIoD#D~FzP *O~4v, ?; x+&E}cpT:44&%44%WPYuj44&%45$P UT '()&FF./FF/{0<H# 46$?>32.$&#"32$>5#"&54632#"&54632wn{*D+Uů~Q,=ÿр|iybbba`ccababa`cbaV%8zf#\l`eŰ vֳ0RɅL|}|}~ 9 F #/EQ]ix632#"&5$632#"&5#"&546326&54632##"/&'#"#"&54>32#"&546326&54632#$#"&54632.54632#"'#"&5>32C7?OK53U@;>RH77UM,AjG43vJiA58gF*\VL  HG0;`buD,BsC,/nE2/~A2G7AO>>32&#"3265#"&/.#"#".#"#"54>32%54&#"326' 2tKb/4 kk(($-f  *}hKr$6to{, .')"+1.C|Nxz._Hh}/#* %"&#sKC/bo # #+"&I=r654&54632#".#"#".#"32632#"&5 #"&/.5463232654'#"#"&54?#6$32upDf&?#>32./././32?6323263232>5$R=*#/yFb%@"#*:Y8.C/7;bhbs27`AD18;J:6O=71,%4OT"&ZZZU!!6J#ԪEj %?lBPu.zJ~0RV\5l4}K\TK~4L?0^njj.g5L%8Ug{$#"&/.54632326?>32! $5! 4&#"32?265;26?2637>574754&'"$54&#"#"&#"3;232654.#"&#"3265 JF,1Q8,,3m(45)3V( 5&  %0M 1=  (FsrU;899Uo"! ;3 # NED 8}8#"  no- Gp@ L    1,I0HE3H- 1j]  %  CY?w632326732#"&#"#"&/.#"&5 #"$&'.5463232$6327654&#"#"&/./&/"'"32>326='.'"&#"$#32>54&#3 654&#"'./&/&#"3254'[[+KD+TP/wK.9<+U*T Bg b.-a eL  Oc!#!?Q     J>""Hcƥ_EGn  ) ;( s$ d-"D+S3 |$;)4  (|e('MX3!#1X: $! w53yF !- 9lunt&u9H- !'97wi- #  **  ;mR22!4'54>?274>;2./.5463254'74>32632763274&#"#"&54654&#"#"54&#"#"&/&/.#"#"4.#"23267>2?4&#""&3"3@ 0# ['] -"o od8#fPs*  >a1>7 *)! 0)#@89;'C- .''(9  O)[5B '&B?+Q5"+PM%FV[MH217TJBbJNg]g(2*&&%ҁHm#Z$ 53;kL>?".5'"&/!"#'"'#"&'#"./.'#"&'#".'.57326323263232>3232677>3232654&/&547"&#""3?272#26?.#;@ 0# ]% -1rqb8#gPs*  >a1>7 E\" 0)#@8%0;'>0  0.'(9  )[5Bjn+Q5"+PM%FV$VMH226TJBSsJNg/2*&%(2jmZ$ 62 L%.54?.547./.54>73.546324/4>34?>;2'.5'".5#"&7>7>54&5#"$/.#"323263234&'3747B>/&O$"ckޞ.k7N5(ѲrMwhN U&4g$'|Vnj{Ōmj(%&*2/gNJSBJT622HMV$VF%MP+"5Q+26$Z 7>1a>  *sPg#8bqr1- ]%] #0 @\& [|1w<5[)G  9('.0  0>';0%8@#)0 " ) c;:imeY R$./#27322>?>3273#'2654&5463232654&5432654.546?6?>54&'%'.542>54&#"#"'265/4'464&/|'$g4&S NhxN@`D{@KD4N7k.ܛlc8O&/>B '&B?+Q5"+PM%FV[MH217TJBSJNg]g(2*&&&ҁHjmZ$ 53@ 0# [' -"3Tl2 qb8#hPs*  >a1>7 +)! 0)#@89;'>0 .''(9  N)[53232>32>3 654&54632324&/&/.#"'&#.#"&#".#"32654&/.5463232654.546323$&'#"/376$65 )bLM $eR'c0pA6h2&y89XGJ$"=Vg $Z@i"L)9U(srB<1*II` R [Wgy /H%22!4'54?4>?2?>7'./.5467&5467>32>326?6?>326?.#">7'&/.#"74&#""&'"232?>54&#"#"&546?>54./'.#"7632#"5467./.#"2326?4?>#./4322#"&5432632#"&5465.5'.54632#"&54654/![)U    :*Hw;+^M fk+LNy!6kK+( (~?gM /BfGA%'Q[GG,BSv#>%X0*z0,Fhoj;<Ys z2 0C+"F![2<  36) ;FH7=3:41  \G>2(./Cy5EZYU'2mS% $:jG nBA$r a~c 3' >D!L#E~M   1K5z0D|&I%N (25b i)Gw(!zGD3=2%|xl0d% (k^' A;.?(?}4DYLo4DF"_  $Yn Lq{ 6 ^ ]\3  Oog   &{J*o-l:Ujx2!4&5465746?>323'4/./.'&546324632>32>32$>54&54?>54&#"%>7&.#"3:7634&#"#"&/#&#"#"&5463232654&#"#"&5467.#" 32?26757>?>5%'&'6?01==%N38d T@0 '&U3UXe74tAn#3Qh)-\2 ! VA.TRG1f83?H0:=,*wKI?fX)d0_/$  r;9U5L3HQMO#^3,EznrV   DvEU7<-2Bf!wg^?h9D6+L!50.>f$pFLL$/n*Q~='_#7  E&??] C\aJt<7_ga4c=ބ&C+1 0*,F飰v 5fEYdQ-.7FJUCOVH(Ih4  HD42joE[BK(Tm <G|a 1 ' 0c2'"/./&5&/.5467#"&54654.54654.54>54.54632#2654&54>3232?4&5>323463276?654&5""..#"#"&5"232>72?>54&#"'%"32654&/.#"32>54&+"&#"#326?>5747"6 C :G>i'"KŴKJEG"(We/"cw4 ) ! 9b ! pN-  j34cMOs+%  $ #& 5 ic]D&'= N>49c>4#8 Z /62[+<J6B* A(4; #:+ ilA[ y e#"'"'3>?>32#"&/"#".'&#"#"&#"27232654'.546322?>7".5467.54?654&#"#"3222654&4$&#"326.#";7%>5$3263%>54&#"26574?4&/r#  #5kA :W>i'"JJJEG"(WA=/!f[oC$ . 9b ! p-  j.6aMOs/Y $ #& 449/cC/#8  Z/62[+<I7B* A(5: /C} jk A[ F+B[m$#"$'./.5467.5467.5467.546323254&5463232&&#"#"././.#"#"&&#"#"./.#"#".#";2>5>7.54675463>7>54&'&/.#">32#"&'./"'"54&/.#">7&'%.#"467&/&/.#"2#".546?>&#"&546$632&54632##"54>32 UAsO2ih:sd?*71%[ER@w]c }fIu2:'u{v]O!FV@F=|"/B-*3> (- c/O(-  q  "~UG&+T$saJ#1  +.lOD-0',vt %?,;>W_'X%(  IE =z4 +=J.'Gp"*9.436)=f2.O #):+<(>CGd ;D?0C &3   E @e'0*@2F!a.  -('RB/[5sn^ ٞi9o  ;b;$A ^62^A$Dz \CXo98H7pOKXI;? 0{H K=l  )2L 0\-"x:],0   ~* +9p*#(=R(r! % 4-Z Iu$.V}GC ?%;#!.1,* ێ+  @*':8Aj #*kf>};T5F4:!<#%L @#!AQ0U*'1!= /b,C$'#-;(]v)v0: > ! >*E W ?B>(, g/L^n%#"5467'#".'./#.5467>32>32>32>326?>?>32326?>54&#"+"#"&546?>54&/4&#"##"54?&/.#326?>54&#"#"&5'.54326?>?>54&#"#".'4654&5.#"6?6?>=.#.#">?'&/.'.#">7'&'&#"%>5 KSX *;~Swbſ&(! +FYR kT[;83A&Vo AF=Xq"_C-%U<N|4K") I^sENjCrv+"0Js>() ", M#'  ! zC $.505fI--" /0 f !DF$2%"0^!#xQ $!  I,"7^G #F %- 0"(  2 ,"( n< m24- I,5>a(# 0 4z@tTE =T;Jq O\3<iUtB $/${Q l$ u7wQ f=,,J(Og, .gC-lvUN0"/:a   &Y*dk6);K  Y/ ,,P*n$N: ! 220  ,  &)/0>R4  @'AU:: #<,(*( EX& 1$`>; , *!$3) 9"'OK$ 7!(Q`9,*1" b400T!A#Z . Yb #/;GS_632#"&532654&#"&54632#>54&#"3$632#"&5$632#"&5#"&54632.#"3265! $'4632>32632>32%632.5467#"' #"'3 $5$#"&54632#"&54632#"&54632$#"&54632#"&54632chHHiiHGiP7)*77*)7nSU9;US=++++WG12GG21GG12FE23FS<;TV9:UE++++Trt$ ]  ğ] Y )-$RQ"+'yeLS<3 .'#"54>?6726?67.#"!2653:7>54#"#"&546322#"&5467$#"&5474632'2#"&5467%#"&54632&#"&574632632#"&57.54632#&6322#"&5.54632&632#"&5 U.9yBU^v=;T_O2c yh: | +$67632#".#"32632326?>32./.#"3265$#"3265 ,'$ Kl=dlkO 8+fU.Ha*%F[c5.BB?I32$#"&'"&#".'#"&54654/&54632372>54&/&5432./>&54654&'PYi!qTpEGvD/;T&O6jS.\6,V)T;0CT ɭo)(r@ Q -$ )2 6CS-Y<`^/q ^#0eq4!_{/%.,^B~U;Q%:#V?U~E-,P%$  "b+"er/"  @"F7T3R-R%$T8~9S$BLz6/TG:'Ah BN#"/.#"#"$.57674?474&#"#"&54>$632&#"3265 u|E / FD9& Fzy HPl9Qgћӛ 5#U5Wn87 xE1NXjYmO#1  q,7Hhl"c#E:FG..FF.!gNcr#"&54654&54654/&/.#"#".546?>5'4>$32254&#'"#"'"326%4+";2652672654&#"265'&5&#"".#""3:7( Omh   /-qT ) )M F'+F0* vb $d4; ;-j?%UQ"_ ^l& *d @|=f0~-W-56-# HD$-W-5~h>GL~75IQA5RR-;WFZ{ 1L + W (;!   @=PX }3Q7>?>77>7>?>='.'>7#"&#"#"&#"#"&/.#"#".>3232654&54632#"&'>54&/".5#"&/&#"#"./.'4673263232632326323263Nd5A-n:Q 2N*^XIO.#Y,o-=gVJk;n_H0|BB|1'3/c2hO|j5016o8:*#4F߄}N -nChr5/S^H$I"?@#M%EcW.3up()W&/jB"DxBw12z?t?"ġrX.f?7XY  0 D (kaI@ / gK 7Lg7Z00'*dM.9  7RQ9 <*2&iL+ %418340$j7(GG&71,Y--C    ?1+a"2 8*( 2 11E Dg~#".#"#".' 4#"#"&/.546?>=4'463232>32326?>?>;2326324&+#"&#"32632?>54.#"'.#"7#"/#"&54?.'32>5 efGD "]T %.x/;:K.) &P+T#~X#UY#].n  Vv!-!",'# XX.h| ]MNmWdD-y!q5' @@  '2KlˈYf^ޥg?)6/ZO0YCޖ 2+O'X!Z# "u-e,H'JY,. Pi.R&   .7\C -  MM  - @G5!#&E/ 7h#"&'#"&54>?#>;2>54&546732##"/././"5&54?>3232$>32]9C_?:  #?==   6:6 ,ChD-/&a',"N,+ .5LLw $N?CJAߥ3&  8w;isFEtjK  $Lۓ> eqI1 8'*&$-B)lHH(/Teq}#".#" #".54>54&54654&#"#".54654&54>?>732./.#"3265&#"3265&#"3265&#"3265&#"3265&#"32657Ne3-0  MIFݩ|FAL 1+2hN6a/@J'ݳdO%  vVFrw, -- ,, -- ,, -- ,, -- ,`  JpIBd) D :88FY&eS+M\(ZHQ62 ? F!) )4&ID"'&CS%2,  8! H8Utx$-- ,, .. -- -- -- .. -- 8H @ !!~dgG WEbt$#"&#"#"$54>54/.54>54&54632326?632.$# 326?6$;23265654&54654&#"3632654&#" WD7737E  |vU.F  6Rb DN  R+ 5wHӼC 5 9,?=+:$)<9$+;82 \ʡ% "@Â\  (Rg)tB @l)(F#! ŹR—4< Eh!Je $4))2204-()5'F)IQ]#!"&576?32>='>?>?>;73232&/&+"&$&%! #"#"&546326?>7=(66kVZ\tX@!4q3XkN0'>Y,:Ή81Zݑ5!"'%H 9 i`32>54&#" #"&546$?.#" 3254&5$%632654&#"R*TNwD 5c55s3,/9 6S"5'>326?>3232?632 #"$%#"&574'"#"$.574632!2>32$32$6?>54&#"#".#"2#"$#"32654&#"-1>JzzD di-]*tD;JM 6C D-D%^Of 1ZY#*`&8a (D#2014 r#^w!"$&54$?>326?>3254&'.=.#"#"&#"#"'"326?>$?>32>54/./.#"'4654&#"#".#"3>$>53263232>54&#";62654&#"32654&+32654&+$232654&/ rDZFB!]oAeA <>!vGr# M7%.)4EF'+B1& a7J<3Q(94]-.H& ?BJdz9 3v~]ʰq zHkg`h +<-J>*8n(.X r+(bgk&^") R3 %+'J<6fr/aGB|C=9  - V!$4%K'9 @/- =&!"3[b%pIH1*6J2  #2o{*@LNv6-?kZ??L:* Jid'9( #5Q+;/n#7*b ( 8q* 8 >1!8Q#"&5754&#" #"$&54632%4&#"6$632&#"32>"765\0P%%,-5yzۆAC@:Vsrr4!6kS )zge4\Cuty' r9;!u?W3` $P04~~K )XEcWA #K & /0Qjz#"&54&' #"$546?>=4>3232>327>54./.#"23267&#"32>?>5.'&#"3265 /"Oi,-1.J}#)Տ6;x(!gzxN22G$DπqOiDm" j097-&!"Dpk+R-1+%x@LZ}j<,&J I_/Eg$ I? V$L*ypt z\a+$w W{g$/.#"#"&54&54654&'#"&5'4&#"#"&54>54'&/.54$32>32 #'   '-9-)?5 %  H8&5~x$[ l\Y*M 3\*6]-Dw" #MBNwuRHGbF唒$/1`0a/m5ABZ0#54&54>3#"&54632&54632#$632#"&5&54632#&#"&5463#"& 54632V/&*F-#"N, ('9-,I!Q[i].*-JjˆR@JcPFk,B530T4>,/:6'*L~G-"-F3T/-R'^rG𠋽e5Fc|L?atM;VG-2E;*N[?*3D4!M (T%$*4!GdP`yw\?(%t)\ei`J?[HB2AW?)AcIJ67PR9X1$4S1)4.P2/U0#(Ȑ_\GF>sz=h,546$;5.'.54634&5432232g)C(KP+D)h eQ"i>H"-.!*"S>g#Q`(P *V!.'67>54'4.'4&54632232!54>;5.'.54634&54632232 [9P8C#,\@ܦ>"5 PˊTԐO 4!8ݦ<$5 NőHw &LG/C/   #>l0P@OtO~?R0 i4$$"=n 0P?{Sjdi!^jv#"'!"$'"&5467.54$322$&'.#"#".#"#"&54654&#"#"&54654&#"32$65#"&54632#"&54632#"&54632326?632%22654&#3.5<7632326?632#"&5L :m_3N`Z|%]h5D =!g&*]  ix  V31;q>')==)(=;))<;*);`A:u 9!6  A/1@32 501#  ? 8ddaQn;A<ι/qzoVH`/L)  /R "  71   Ih< B"ڇyAA/.AA..BB.-BC,G8' @374-"@ A#,8-3@U \(qIv#"&'#"&'#"&5465'467&/.54674/.54$32#"/&#"#"&#"#"&#"#"&#"#"&/&#"32$65#"&54632#"&54632#"&546323263232654&63.5<7'&'3632326?632#"&5wUj!evh^#hUyCJO 18' ICKW9 dc 2Qr-&^i)j ?+$DC*q<)(><*+:<)(<:*+:ZF?@?4) l*◂wBA..AB--B@//@B-H;#0/ %'J ?327A#(5.3AT  !S ,Xet#"/#"$'"#".5467&56$323263$&'.#"#'"&546?>54#"3 7&54653%22654&'#"&54632326?632#"&54632#"&546323232632#"&5 F :5&y7]U}   'a`J]!g59mtJ(,k2@9255N249@sLG h6)@# ):)(::():9))99))9  $,  C,+Dhnr5b>Uo NW%'M$ wS0.p 6  Ra.1< *LO)7#"&'#"$4>3232%32$7>54&5.#"632#"&5$632#"&5632326?632#"&5>3232632#"&5װ8"  "a|t;ܬ(hw XpNsJm`?=<:'(;:)(9t;'';;''; J7#  4F_6  %%  7&(5*i-$"KPIVbNK%߁Ht Oڸ*Q)oompuipo)u orA@.->?,.@@.->>-   < && ')? #"&54654&#"#"&546=4&#"#"&54654&5467#.#"#"&54?474&#"#"&54654.546?>54&#"#"&54654&#"#"&54654&#"#"&54>54&546?654&#"#"&'###"&=#"&54654&5/.546?67#"&546?>?>7.'#"&#"#"&54>32#"&#"#"&'>76>54.54632>54&'#"&546=4'7>32#"&'6;2>7.54673  < :5,) -(3;0f; ! 8<%%0-  -0$CX %5.1)  .?.'F>  @C'.?/  ' 0 /   4*%$ $%-5!  !+ " ! !    Co1e    &0=gd=0gx EMB;#)ufhw(";ATW  64qS Xm:.B%#  X(I(21'6&2%D$$EL2#1^k?!g+%  +<$&6f$10%516&&(>1#"&&m"98&(&@#;B 088Zza/"" 9<"k)",,"a99 "!1_O>7/?>#@&' %! )3@@3%7    7"/23   9?}:U>   : ig $\JlgL_$ AhUB  '3 !Yx!1)  FO # [3NtvL1e 2-0M c#".#"#"&54654&#"#"&54>54.546?>54#"#"'./.#"#"&54?654&#"#"&54>54&546?654&#"#"&54?654.54632>>54/#"&54654&54632#"&' c9#8tG/"s(#+/3&A< =@'21*%%u#-Iq8$7L '   ? -@7\V   T^6@''A   1A*4F)[9?654.54632#"&54654&#"#"&54654&#"#"&54>54&546?654&#"#"'#"#"#"&54?654&#"#"&54>54&546?654&#"#"&54?654.5463267$3[)Z:=W)F5)A1   ?('@7[V  T^6A'(@   %hwwh%   @('A6^T  V[7@'(?   1A)5F)W=:Z)a1)X,.LxRRtIFiR[5'*C"8 ?"I!TmNp. -*LN';4GF3!% NN*- - qLmS"I"@ i  @"I"SmLq - -*NN %!3FG4;'OK*- .pNmT!I"? 8"C*'5[RFItRRxL0) ` #"&#"#"&54?654&#"#"&54>54.546?>54&#"#"'#"&#"#"&54?654&#"#"&54>54.546?>54&#"#"&54>>54&'#"&54654&54632#"&'7>>54&'#"&54654&54632#"&' `8"7tI 7t&%*12&6H  I5&21*)q"0 >B<$7pM 6]q)*13&5I G7&31+)q#. Kt5$7z'tZ#O%!/67/"%O"pvN$ %9.|nZ#O%!/66."$P""\YU,$V 0/+5+,1 GL.'&$0L %"1BB1"% M-%&%/M"U 0-+4<+PoC  . -0 S"O1#&%/M %"1BC4"% L.$&$1M"U 0-+4<+4";2}6a 6E//E4  'd$+ [ 6E/1B6 (h}T+ -6[w#"/#"$&'"#".5467.'.=.54! &/.'#"&5467#"$'3 46$7>32>54,# 32654&#""&'"##"&546322632#"/"/.54632;2632654&'7.=47'3632326?632#"&5E 03%v8UL ?JaQ< EF. !3zK(5:''9 @Vv/5i~ tPIw#0Z5 z\CC\_@>af1zLDIO-~#L'; /d;&)79'':rbI #' A!2 0499 ,/54  ,$   C,.@jgvm4_;Ot !C"($GI"\ @ 0[;h3`0,?*-==-!4 F?f ~"; ~:LFAO$ H#tYYY:j. ~ #<=-,?>- (  B63; $LL$K% ,7/6CU -  // r :} =$#"&5467#"&'"$547.5463236$32654'#"/.#"#"&5467/.'.54>7>327>54&'##"&5463226?632267./.#"#"3267.=47>54&#">7654&#"632326?632#"&57632+"&543232&#"&57"&546323725&546323632d5'3!0GP5>+oʊ2O?1ZN&-_PY07^A},{tCQ:,ceu_46Abڢ;@1QRl&5!EZF@?  1)%77%     27:& '3CV9'Tle $" (FY9@p\%jB/@Y    4!"4  T.2RF347#%7-    ! #7uB$#* :{:ӛ7ܧ0BQn)QB9ĺA> *0#*H% $&/( !G. <G&C.d^M(:%!|nG/b2/Y) ->:++9 $A?BG#.;(sD{>WM@  .T++X/ -"kY$%ί m2"&q3L   ##^*45,%::+ 9+ /l0?z$#""&'#.'#"&'##"/#./4?.54?7.54632>32>7>32>32>32%.'##"&54632263232632.'.#"63232654&546323632#"&5"&'3267654&/& '#"&'32?2632$72?6>7"&'46332>54&"&#"&#"#>5326?63232654&/&546?654&#"#"/.#"'&'"&#"6?326?63232654&/&547'467&/.#"#"&#"267.'32%75'373#"&54323263&632326?632#"&5 /9>._ H" CXYTVQWA %HZ0C? B\džQ9 2  H--I 2  8Sy82   $ 3($76% "     > S;   %67$&5  +@%!^&|U  #_V I/  9 /,[v~;/ # ,J3L [L6ghU%5&$ 5A, :<6Q,-;2`(   # #  !H%)!0a$5?o^/(H&     $   #%6G31 D8.1G63 R87S I./K    4!!49`+L  ^i6/10iZ  / ,![D(&F KU  9R *66* R7  Y>*Y( T4-{,?:*+:   RObEZ/0 :+*:;0j 2S Wf:F}UJb+7 j}LySS xW92RA> =^)$8'&T%( "@4=; 0(% !*   %  ")0"$,(" $&    #  , p+65+$$[   ##+ 8'w#"&'#"&'#".5!2654 $#"3267#"&54654&546$632#"&'32>?>7&546?>54&'.'326#"&546;2632326?272%2#"&547"&5463232674&5463237&54?>3232632#"#'.'546323263  IFL]eB>^ z_o6}"?>)h 5zC0B =X&g^:( <1Z^/.9  V?F6M")%)CdEO%$Qhg^][==)*=>) %     //)==))=2   ; " T $O3 5H H.5> $2tSLm~Z[U(Y\z޲YoA!x{ta^^B$%R<$a @X=9/, ;,J/d,=jW5$*=Q& MPUJr86*0#G29%0Z-4O !HJa9\-(RD>.CC./A $iA/.CC.   "$&,3F & )31' $$ 1f-GS_lz#*'#"$&'""&5467.=476$32$'5./&$#"3 >32&#"654&#"37&57473%32654&'6332632#"&5#"&5463232632#"&54632#"&54632ta55bvDM lj 9P $'c9PggP%rCH+0GC2 5424'039> *!+ F**FM{V] rG?m 9&&:8()6:&&:8((8vdhvYDoR iO5  (-&#Zz3  B,,BA-,BVGM+836DC63;*&HA  .&]S( >= /**++**++ >+<iu#"&##"$&'.'&5$! &'>5&'32$#"&#"#"&54>7.54>32326322#"&54632&54632#6?6>$7&!  gT <Ɲ5$OG0 =9wẘoL-dh-,*h1/J6>4-21?G[*#`T  [ZI=+)?>*,<=<,*>?)5L $l7D0Zim U_UHO6PoGgdqfl(vp/ yg;FN'" [" ( 9 v"QCB10CD/sC0/DC01BBL7%O 2gf,Eht#"/#"$&'"#"&5467.54$323263 $&5&/# 3 >,63265.$#"#"'"&54632#$#"&54632#"&546322632%32654&#7.5467363232632#"&5#"&/.5432$#"&5463A/9>aZ j   + fYA-<I?rp<s0M#Y!/ !,,g H99'(9:'$;%&;:'%;rHT| D#?g A 06E16444  -"%+  C,,B  1G !  >(eujcoUo 0]0-X+ uP)< o /iE~@ L~$l?fOJa;#Tn6TU\_=-,??,-=<<<.->>-OH$  6 C797*$H(%H&,;/7D# ,, /0#@&, M9  %d,Z R /9b &#"&'#"$&'#".546&>$326323.54654&/.'#"&/&#"32$.54&574./.#"'#&+"#"&+"##"3263>54>32326?>3232>5$#"&54632&54632##"&5463232>3$63232632#"&5#"&54632#".54632 /-X@O  BߌnN;HwAfcn&2/) ~4,N)#K,1/.MR &)'1BOB=kN!1>9t 3  ++ 5eP"G9ir+ (>o:vW$e62*RmB 7$wE9(':9()8:9()9;'X=#w <!&@ +$"-  C,,C84 A$  + EsXWD W޶99 `t i)#/?,y>%+.Sa(AYd)--,=<-k>-,=<-->/=;"   ,, //Y/h &.W $0M$ M82z-[iw#"/! $'"&5463>7>546322$.#"#"&54?>54&#"#"&54654&#"32$6563&57473%32654&#63232632#"&5#"&54632326?632$#"&54632#"&54632J -->@+->jke\ui`R) *"`5r' 8xY3{P   l ! 鍚̎BJ/:16DA77;0$E  ""K<(3  DD11EE11DE0/GE1 2>I6D[#"/#"$'"#"&5467.54>>7>3!27.54673%.'#"$'32$..'#"&54&#!"#"&5! $22654&'#"&54632#"&54632#"&54632326?632$63232632#"&5~:=6t' 4ǚ4 ?97 '+i2AӶ3&]nZ'%\n] 4YJN04:>8))79'(99'(9:'%;yV` xE&B"   -"%+  B-.@h@d*%-@+h;VV;4ƌ!D-!%$I&(:16Db;LG48 }3.!f!#%1s"h1$7:C64:-$H=>+,??,,==,->>-\P* ?  ,, 12:']BZt$#"&'#"&'#"&54654.546?>54&547.54632>32>32>32>32654&#"#"&54632>54&54654'#"&#"#"&/632#"/.#"32654&/.54>32>323%4&54>54&4.'#'"32632>32327>?>54&#"#"&/.#"#"&#"#"&#"#"&#"&546322632#$#"&547.54632>32#"&546323263&63232632#"&5 wc"GVSO!cu0 G2@MC6'8 F?AD ;6@ !C-0HZe& P) " .Ysq8?#6٥aS,".@h}Y, "4F  )kPYr*&#9TS-^/3EY3C"&*qZG\DD7%BaM-&   51IJI0,:؇_X  & 0M &  D0:(*<.S)!2g 8:9(+ $;'*7('9!  +)61I==I40.4 $"  /()0J  2dmc&+))bod,8T'4f*  8m8^>#6IJPQ)OVYOG9 "(I5 <7i6fQPD? #2 96O;?g,.s8a! 54 :%DO\>z*>#[fU|bN#T|Fz'?*|=\^[ &\I  :..B6L+$  =P,*(X//@"A%% #B$!4 3))A M]%&,6\}>-,= '->@@?0   ?* 31 d $$ ##/DQ`{#"&#"#"&#"#"&/&'#"&54654&#"#'"&54654#"#"&5432654&546?6=4&54654&5467.54632>32>32326;32>32326?>?>54&/././.'#"63232>32#"&#"#".56326?>32#"&5$63232#"&5>7.#"%>54&#"32632#"&546332654&#%"'#"32654&#"&/&#"#"&546327654&#"72654&#"C _Y1Ja 5=7+';*g0#5 #4Y7;1N1D  G G>'X@9$5KPOKU@X`O)4@#HW/(JeAC.(.X@%$%40IK'W* +Y=II`[Lp -T  s= E b/  +  D; _  4 @):  ;          9:8k5(' b*LoC&J$`FL]j'Q"j]?u=г=;[!_#,5!)(YWK"+VG9eF4h9"b)8tg %'+Y!$M20[vC/DWCBXD,.*)ULVVX4}! 6$@WR#G5 -*KVA : <4&KI9#m45'465.#">5'./.54632&+"&#"#"&#"326?>532654&#"#"&#"32>53>54.#"63265&/.#"77'#' Wrvl$|D"#cS92x(  wn[jq ,%+&CA,im"C2tp"$; Q<E?n7/2$Q % #q5 5!  f-I#5tA2[+S$=.~/ ,"%9l1&D"#!-b_#.:HK  '>'="   n3@M|]A 4dP MC*0V7HL1%%O,%!    $'** '   >! L!90 )U:EyB J  4^ *.  (T9P#2$#<+n7!C< ("5CZ09/0A=9%?R[ )!-[n 32#",'547#"&546;!254! #"&#"3263232$7.5#"&5463232632#"&#"#"&54632#"/.#"3>32.54632#"&'632#"/.5 _;B*3S 6;H{VTj7I 7:]g>+.|Oc[Yclr3*/@O579L@ !8;;Du4\   ]MY(!:rGF[A-"TK'[81?3 #uvL;5%&Te=x dKBZC)2r   /O!0p2% d) pUTht?Hj,6-?+eH4)   b 3W61 7&54$32#"'6323254&54>?67&54632;2732727>3232632#"&#"326323267232654&54654./&'#"$'>7.54?.'"&'#"&/#"'3$54$#"3.'.#"327332?23263232654&$&'322654&#"32632326332654?>5632#"&5#"&54632$632#"&5&5463232632#"+"/"&'4?2654&543232654&54654&54?22#"&"&'4.5463232632632326?632#"&5%;.'./3267 ) :0S:?,'.8#H_+V**W+]I#8.'-@8T/7!(*, 9uK.s?:IJ *,~G    rE ++ *',T!  D  $ !! LBDu'%;CI- >< 3 "+@E PK/- i(="8 Q<,5`6Lo $!1 #&NO3%K%M$" #). C*(6&!g "&N&K$7T !&6*/:  2%(mlou(8%&76'%87&&67%%8l  61P X:-(.    *B '  ,)H#+#  B,     82f)* ' s $).A?(= $# YG   MZ #$ ;+@#Rf W\:KtCvvf"")}}+6oB_0% 6# 3X[ kM:.g)'    * JQG+ " # P":g:t)+B-8;>=C(#M]z7S_1 - *'"3- 8%? iGHiiHGib? 0(  0 &!; '1 Ca' 0 ***+;<))>=*+<<++:9,6  ,@3! *(     (%       .:  $o1(]N)7#"4$! 654.#"3&#"3265&#"32>5+-_OiYWkafSzzV_kXZgQbf`F*' x@Qc`a^YU##,-_baT?VZ09X([eo#".54$32>32.'#"./>32>3232632#"&#"#"&#"7>32>=46322>54.546327>74&54632.'./.#"#"&54>6325'4654&546327#>3.546322>7./&546324?5'.#"#"&#"#"&54632326325."546325.'#"&54672#"/.#"65'3%32654&'&#"326323265- %+!R%tz{r4hNq'0uCf{rlsIX  0(%)J5"32Y-$h"T*%)<<*a$4S   ?@ 52 7+^MIV !A i10  4,  G 1O7/[DVU,652 ?@    .@!#_-;; )$,R!"d&,ZN>"5J*%'. XJ#A  3jgU1$iM(YCGq(-V %S )5 #* cIM%nϡ>4#+,¯"$F9J9&JN-S  I4r+6 I8-%J   +4< A8'$(689>')_C2+   &uN kAHW&F!  3  )  !F&% "9/P$ +3G\'+=;6C##)5? =4)   J$$8I 6+rGB S.LL$<J9  6T=>$AV?RQC%@G3:% *' W+5>P$'#"&5467&54>7&546326>322632>54&54632#"'#32654&54>?67&546323267>3232632#"&#"32632;2632;>?>54&54654.'#"&5467.#"#"&#"#"&'#"&#"#"&5467>?>32#"&/.#"#".54?>54.54632/32653267%&#"#"&#"3265(0/M2o %yJ 0LOF+D415m- CV7    3 -)5**N$  @X  - " JCBv)">(L1 z   !% D-ExkW!+26$][1;&vI%@Y&^ zf,*@55   5a&y#$5O)   05A)+jx'P7+5U1=ZX?1T9 [26Z z-.   i1 -=2 }] X#<]DD]<#X 22)9KO(3?NZ|#"&/#.54>54&#"! ./&#"$&#"3265.#"3265$654&#"3#"/.546337>32 (US(!qx"(`2\9 /@e_bc9!;\TUe}VLj 12Ls 3-NX}eUTj(Se=9ze9+-pU]|O"'$ bY4N;'E5?yeA Ans'/\, Dd~;GrRC]PV' H- "~]CRrG>PFo+P  oo.1qW 2^T<( 5{ W]T#"/#".546?>7.'.5467543232>32.54654&'#"&#"#"&'326532654&'#"&547>32.#">54.#"#"&/.'7326732632326=4'#"&&#"#"&#">&'3265&54632#`lA-=#|D|@<:+.gq~Y ')j1?Z')l h\.d% cUUZ-+R ;9`%(l !+7mQ  )h꛴3+ ##4 #, Hn.C; .,% 3 b@+yNT1^ $+,K2?9DuYR EuR i9 /X !/Wb$ dGn.$ ,. #-$xh #"$/.'#"&54>?>54754632767&54632467.547.54>32 >32./&'"/.5#"&="#"'#"&'32>3232;27232654&/&54632326565<'.#"36&54632#&#"&5463232#"&54632#"&54632#"&546-K6h5gS6      cB;B+$"..TB; 8n-Hh  <*59y # '6); #=5(# )  (*{  7"$ y$%% "&"# {4Ji#'&#".546?654&54654&#"#"#"&546?>74&/./.#"#"&'"#"&54>7&+.57>?>54&54654&/.54674&54>32>32##"&/.#"#"&#"3263232654.54>54&5463232654&/.#;>54.#"32654.54632./.#"#"&#"32632546754&#"#".#">?654&5467.5467.54654&#"#"#"&#"32>54654&#"&#"265#"&54632#"&54632767#"'326\4,3J 31 fU/  1Kb#+   (:E)   p   %(0 w_OWa# +  YZ 792 (e!P1,H#X2N A'8!$   %G&6Q$I! %pC 1DE^C01A4<7XC%]4 iH (#"!Rs$?83W5Ard+5  28    7'"% ! C)./-  7#$ *4 !"*""$! #G 4.p`)+3$  'i:4&)c FG(N . \E(% cE9; -3xA 9"H"  *'0 " #$X-W3cg %GHtnpcYQ2  8WqJhB $CSQ5A@ o/"A!s )?W" .U!  \s#h^2CMsP  bq # *Y(:u) 53YP=Znn"o8fd "QN+ ?A%(.   ) % )d9  )  3l#1F $$ :$ 2"#!  SAfr3JVo%#".574&/././&54632%>54.#"#'"&#"32652654''&#""#"$654&#"3_ܯ3ZnjZk)V@#g NA"*!!Mb  aHp7@@P9qoE  wlZdPA}=2$  [T\kT!AqZ#g! :#"&'#"&546$76$?>3236$?>32$.#"#"&/&/.5463232654&&5463232632#$&#"32665 .zO c l4+ cTKV" \ 0Z/  N>~Gn5-#<C %B<=6y;'M'.YLDu<qֺ'_O'\/+%fYu6 b!{tz2+|0"G&q) 5n9rm*   ! 69F1I^ U  4#"&'#"$'#"54654''./463232654.5463232654&&'4632>$3254632326323254&546327>54".546?>?&$#"&32$>=.#"6$6254.#"#"&54632>3#"&54632326;#"&546323263263232632#"&5 HxV(\]RyL !.!x3;h2D'&>&##9h##&.R&'D2i<1w!/+T ?(Fܓ @&%L7 Aa7DH1n (ٹ 3m I,oo R^ aEBd /VS*L[<=[ >00<[<<[ <00< G  "4$&3k#KUz6CB?4"W5_M6;}@? 0 3.#&SmgCE2#0r(c! 1H7+%J}(o,.?_^t$!c)o-#2ZDCs T >#;#-A"tcrngJ9G?=> &3EE *"<*o+j]aIh"8!v/)*B% CQ/, #$<<# *(T??! << @@ << "! e^ 0%#".#"#"/.'#"$'#"&54?>54&#"#"&54>>763232>327>54&/#"&54&#"#"&54654&#"#32$#"&#"32632#".'#"&546$7'.54632>?>3232&32#"&54632326332654&#"&#"3265#"&5463232632#"&546323263263232632#"&5 g :L"  +(#GSUE")+   M!Ofhpj.0;Lt6'38ATBa| (6N61y'! K!& <,b2,]8GwQ!1 Zd=4j_K,."0UIb G)!J67)- bDCc G8:GcI%iD 9U.paR:R@7:J%%;;$ ::s3$ */!)8+ 2&?@ << !?@ <<  _2C\u#"&/.5467.546?#6&>32>?>7326?>54&/.#"&#"#"&/.#"32>5;>732?>54&'"#".#"#"&'32>>7'&'0%%&E=4:J*vO%I2&&5-5)/:TҠKujawukC0HW=_oDR`7rH2!#167763URC/ 30o\Iy:f[jQg'C5)D33++<'%WJ/Z8 [#"&5465./#"&546?654&/#5467'.547.546327632>323263232632>7./.#"#"32>3232>322>32>32>3232654&#"#"&'654.'3 y?T >4/b08J$ 00  F  6u9FhGWx:2@)H0 2JL$  b'U~f   ,N$ i>!%L% _=3K! Z4C&E$ L3G < lVM\X#E!oF, B=d B0!{H9  0)%,>8)D -}IA  # "4dl]J8/h^1UD70 gW,w'k,  & B( =  " ; ;' 6<  !J&[wĒOcv-?>(r$E0p hH,BW##"$5467467>3267&$'32654&/.#">3#"/.54673>7 h__0W{\Wb\샰*@gaAD/!0^BN#NC|X9l!!9P&#,Q:C_W[{Wc-\aӮ}E@p)`B\ GBN'}XZ5*99  O9m $e'=$#"./.54>?>32$.#.#"32$3 $}ql*G sT6R6[Rh h*:\9PfE4]N!IT?t5Ih%,39;_'Q4W[B f5D\+$kcI<i "n #".546$?6$632././#.#"#"&546546=#4&##&/%.#"32$6>5$#'#.5463232>32 1Hpt[W_VS7sͶ`d2AV9J,'Te %ssZbv'$IMyER4df(45"$eT3(D'KX8V\U)ik7#C<0SG:[s;T̢" 0 HE j0SC>()%07  P;  52a2j8d6anjNiQ%u[  '\3AHKNQTX[_beh!"$54$327>7'546?6;2$#"! 5/''7'/'7''7''' !))?%h440/SaЌ &  ڭQJ~ QS^JHTwmP7M^xj{5 `,$ $!! ^hmxX,(M)FE $3}s 28yd4}0B  >-5`W $ M #(-039<CFI#"&'.5467%>32% %   7  ' M@'@ `# 0: / *n:9  /{ct=0'B==XKMCKs8/( 9' 1EtQGoBKkG ?m2P5 N?G R  1#"&/.54654/./&#"#.#"#"$54654.54!232>32&54&#"#"&54654&#"#"&#"32>323265'46=4654&5465&#"326?>3232>5$'6$5.5463237>32#"&'2#"&5463326"&54632 Up8tIH4>P   Qk$@ZP~Q\MD >qI4   &  +F&&3DM3D_ [IK,-&)!8`FA0D(+F$2 SH1 ) %,'}K/fC1awp.%  5E ((2 ;E*s(/& .%CE " RZ.w(GFmW(IwcpzbFBOiDҝ$2%$F 1  %U. lM)0M"+'X:C`69n"'(5'8. T$]7>X  / A  [ %G 8    0( 5 0j`3dm]HO(V .3 1" 3  bP1X5g#".#".'#".#"#"&/#"&5467565.'.'.547.547.547467363>7.54674'475>7>32634&546?3>32>32636322632#"/.#"2>;?>32>7.546747&54?>54&'#".#"63232>3232654&546?>54.54654&#"#".#""&#"332654&54>54&5754&#"#'.#""&#3263232>3&#"26;2>326=4&57332654&54?>54&#"#'./.+"#326323267.5467>7.54654&#+.#""&#"654.=4&'"32>4&5467#"&'#'"'#"&'"&'26?>3232>7263>?>32767&54&54654&##"/.#"#"&+>322>32&546?67>7.5654&#"#"&#/"2632>?67.5&'#'.#""&+"%7>54/.546?6?.632#"&5#"&5463&54632#4632#"&'"&54632632#"&5&54632#632#"&5 *#.4L"?]#"S%.9/VF+.08:G&G@ % ( 09(WA \A= /H6 I+.  F!  ):.S.8N&8<6=5"     : ,$  )3 98E1'3!/!)  "$5  2   7+ ')$  &$  +$= $& $2' +$/  - =#=?4 )&0 "!'+      6!0 +/(;! )# 1(%%8# - #7# )) 1g+EffAH*1   X0&?$  T@X56 :f#   44YS69M7b* H'H)1CE  ,"  +1  &    7 K" /  !2 ,(-v/&!.  "" 2 (9&5I i>P4:)$:=-(/47&"58&.2$(-=~7%&4:$!4M-.'%1984)*6! /u15#"2:!.(. &J *1%rZ 25G A_+* 5$ R)5#[43<3>a   A=a 9c%+  *!-O2 J0% 0G%+?-4e3"W^.D  %B*   "BB + 4U   #U6)/50"  3 &< )# ()-  1>* (2 (-#' %# 0")  (( ,.   +#          =%$  (9  0b 7 ?2O*  $E $" ;,@XtDD1 ,*HC ` 1w'$-V/, $3 BM *5B8 4  zY=V: d 2 $0  7  C B0 $       (H$2"8+/2 K*-B*1)>+-0 (Q 8W R9K6 !24 *2Go^JH>8$&?2(Y0%#5(",79#%66#*4&/. %8+#1"':2$*322 ";7"2!"3,)553#):;!9e sCk!8I$#"&546?#"&'#".'#"'#"$/.546?5432354$32>32326?>32#"&/&$&532>5.#"#'"&546?>54#"654&'&/.#"326%.54632#.54632#%2#"&54672#"&5467632326?632#"&5%32654&'632#"&54323267$34'5467"432326?632#"&$3232632#"&5 O  BpE}0&z K+@%.J?:-l  +&7OuL;{I"%"=/V~O7F3*,0Iix"]3Q * $RC1+H= &=Nx1"*',"*&*%#*!{)$( 8  J"5[ #(":1;'!! -"   -+  ' ֒6-8I )F.ez"L:;_ #F"#u_:1 +!9^q^C.34.F%_j}_xV[    ^1)l776j5  6V"],:^]32a( -+! +8* -)!,, (+'3* ()(    #9:-%&5  (;2   % " L5B\}#"/#!"&5#"&=4675465#53533#3!354632632326?>32#".5#"&+#"&54/./.546326%)6323>32#".5&/.5463232>32#"/+"&=463235#3#3'534&'z  4W4  T*XY<;X3oY*  _0Mo Bv?p"E"$.  zOXT=r%7~T`h'+Gd1)   9M&M)cYwVG)׭X0JM8>,LC c.32&5'4>32#&54>?>32#$#"&54>32#"&5463296NVAwmv_H]WF ZG0 /  Q,  Un _w2qU o ?!FCz6mtz:T ?/.c xc I,M3" :z2v 3~q h-#Q   !/e#"&/./$5432#"&54>54.54654/./&546?>54&54>32 5 I9{?gg)$ E<M#`Jd#   6Q&+ }&8ke}n8X,-37+F!@T @051 "wG3 g+!Y="U   &P2v8p 97 u IF M"B$ #"&54654.543232?>32#"&/.546545463232632,gN/S"8Zz GcXw&L%&&r{EC#!< v뿃"C4&G1ouBX 3֠PI(E  A8[~Xv R PBM]mt77'7'7'2326?>32'737'7#"&/./.54>3''77'7'7'.#"3265'7&#"32>5%'77'7'7'&#"3265%'77'7'7''77'7'7'O##RQUf6#-1 5ZO3\*VT##UF=N CE'*oDkY|yFExyFExxjk(X( 8d5SUXK@j&džG)zz)GI*||*I ! gG)zz)GH*}}*HG)zz)GH*}}*HF#"QO#!R5E&&A: U$#UU -n8`0d9K OQ&)^0[Q+DwxFDxyFȩƙh3 &#"#".#"326?>?>5#"./#.543232>32$&#"326?>5%32>54&+ F+t!d:8j:?OE$`[czvR1*&*ZUƺ@t-(B" "A'. S8ӴMhNA>67LTNR+*&i^S~+& Q@1<\#7B t!$56D>J"4EB?H~B1 AEZ-\31$%0. K&fЅk6<;>Bz6mvy&8 j:B}?F76<n >"C- c sCn#"&/&54322>7#"&/.#">>7654&'>2#"&##"&547.546?>32./.#"$&+3232>5v oH@@Ihiȫ$Tr4gL(!G%+E4/QQծgÞ _ ;/6M4jc*V07)".4)< G !BbK ..,wX5g&V+iFJLFdXE=?B_q '9&!9& CJR&E3?40;j|Am/B 40 #M&L !&. (`| [7 > !+3;CJRZaiqx#"&5432326?>32647!!.'>7!>7!67!>7!!.'!!.'>7!>?#!.#"!.#" fA;Imؐ+ !VpaRg-   4,(H=C#m$'R*Tu'0j4./W,dD"#D  .5 R+)E3(R,&GA_Zq8e=5+G-4"-3! 688:86:8 J6X!8-C@b86  9t >  (/5AIQYjry#./$543232>326?7677"72?>>7.'>7#>76767&'&'% u(X/4aKK/(+<,:"]\$C Jq Q *+<;B$B' ?0  2MŐ#t"%  "C"  4{k$`q`wtNT"$,76B  H$#'. *0q4  N)`jvh"%  07 w+#> %lx ,8DP\ht#.$.54$3232>32#"&'#"&/.'#"&'4632>32>7"&54632654.#"&54632#"&54632$#"&54632$#"&54632#"&54632#"&54632#"&54632#"&54632#"&54632#"&54632&#"&54632#"&54632#"&54632#"&54632#"&54632#"&54632#"&54632#"&54632#"&54632#"&54632#"&54632#"&54632$#"&54632#"&54632#"&54632#"&54632#"&54632#"&54632#"&54632#"&54632#"&54632#"&54632#"&54632 G (.4<EMX`hpw#./$54>3232?>32 .''.' .'4&' "#"&/.'.'%>?6  K14a`Їg݇3  '{ύ_?*(B?"N4?+|-=)4n1u'8  @?/2 HA  ?E{] .@_~Tq|`wФ`:b$ oFbΓ%(, O~3>#>~->$)8$.23S %@!*9d/\ O63m\ cs&7Tl#./$543237>32>5#"'"327>54&#"#"&/&#"363232654&#"32654&5326?>54.#"3254&5747>54#"32654.#"32?632326=4.#" c(K%%G>[bX*> # ( !.MpP E   . #i88T(8 Z6JI1)8=4,7 4F(2j'N 0W  , 'h@ J_u{&VQ_j]*/>M5  CW7=L " 2S . $Z5@x0#3 ! :/  % A7  + ? ;1 89C26-n?N11O/32#"&/&$&5#"&#"#"&=4&/.54632##"&54>=46?>32+"##"&54?>?>?>32%#"/&'"=4&546322$DHG; ChEv9;&  aOv@5'/-Z-[1oRP32YQ+c   #"D"E#f*)~<"Vz)xZq3 kI32&/&/.543#'73'73#'7'73#'7#'733#'#'7#'73'73'73%'73#'7#'7'73%'73#'73#'73'73#'73'73#'7373##'7ŭ%"_TN@=-)R>@MS)5k55k44k5555k44v55k44@66k444k66kwj66j655k665j50o55k5555k4455k4466i5566i5555j5555j555j55ji66i644j44j55j5K55i664k44k5j55jv55j55=io7zyk6=;/,Y;=6mzy]]\\]]\\]]\\]]\\]]\\]]\[\\\\\\\\\\\\\5\[[\5\\\\\\\\\\\\ \\\\\[[\\\[6\\\\[[\\\\\\\\\\\\\\[\\[ U+-9#"&'#"5467.54324'432>32&#"3265 U˥4G}EIwC75f12f4ijje/BV|osx ZE.  `kjf  >Ti$#"&#"#"&/&#".5#"&/&,54$32>54.#" 3#"&546?>32#"&#'.547>?272&54>32##"&546?>32&#"&54>3"&546?>32E@ 1    '/&pznu׮`E7r;>z*^ϴO' #&$ !    lX2 h(hH ) O%Hiz  GDo8&L7   !#<:ajArSh4 B&*-Ga f˳vܺj>]? F!Y 9#! K .pV6 6).J $  T"[##Z (ZY @vb-CW632326?>32#"5#"&54>54&54632$#"546?632#".#"#"&54$32 6s$F#F V $'ДD1 (o8"'hSj)"Aԛ/ %a"+M|c::*(9)t  ABs 0gO .tTnD3B +`H=s UAYeq}#"$54$3232>32>54&#"#"/.5463232>327>54&#"32654&54$#"&54632#"&5463&54632#$#"&5463654632#&54632#6#"&54632h<@S)1{[` &3< O-Jm63 H`..TEoȲV+&&&&G8> f^$l*O$$yK%+m) D% cc=5 $S*t^hMVڝ7g0(W;4-_ /2ҫj6" '&&&&k<726((ne4a'i$?}0o2\>* M,f%'74/.54632#".546?6?>54&54632-GD&o@sVW?- aTPQs[<1`%*GU#V 8z7E.%qBtAm%V>G,#joXR0$&9b1# *4k 66X  #+& N* 6H+,IL0CL&Jy&J% ND6-Xt6.2! !D6!bGF%Z+,G7( -=!c@?rB413!KBW.!  6 E**> 'J7 ]"#".#"#".#"#"&#"#"&546?6?>54.546?>54&/.5463232654&5463232654&/4&5463232>32326632372$.54654#"#".#"#"&#"32?63232>3232654.54>5 7&&<52~ n-K-7  `)Bc4@*3 U(?w^.-!"(fsq'H=85 <'R-w04M*"oV!%:$i b336M79" ?>32326?6$654&#"&#"37232651U>Ih&m=~Ue,Dx6iLFP*FQUddM"Qίyah-+B"$%koTdUCM?Xb3@2;8Su* 7@#H|w3232654.54>54./.54654.#"#"&#">32#"&54>7.54>32!#""&546$32#"'#"&#"#"& (0;sGnN6#D#`Q WG7DMU;-E! n>Q-qLx*  Rv!-LPIEpWL )o;'[B10n y^8{g<4sI~ 4%!*8WHFXW64J_Nf&k0oHX!? < C$*[yC*R0T5$&YPU )a7d| _;'    ,"& !L'bL"b453#]* 8 L/J?>32#"$5&$5463232>32!"'!"$546323 $?>32#Adca`8'vۊ'4Cg/m: 35'B.zO +i)ch}¥Xk`}ZVK^֫|9| bŅp t&$#"#"&=>3232654&546732654/.54632326=4/&5463232654/&4'463232654/.#" ,54$32#"&'#"&'6$32#"&/.546;32>3326?>54&' Wh&; :81C%d   ^ .$R) $!hDi>;WYdSž[Z2V1ADd>!,mFћ gh:$  m9E ">$-򂨭!E1? t?  4-& lUj)@IcQ=:N/.`?z}]8OL#~]+3xlfkF( <4% % C$  ](2\f&5463237632#"/""&54?'7?/#"&#'#"&/&'46?46327272'7'&# 3#".546$!22#!"&'&5463232$654.&56?2Ł    kQN` x  `WHeg'(T kZl O! E  U@E - M L 4 \!|&r87  & ? X ; bz,kB-ud[7yn ?Jzy   ӫ  ^Z9uz !F ,g$#"&5463!2#!";!254&#Fkiv]r^ze*?18PAi?*FwjV|xZf{2*92Jk*2 Pco{#"/&#"&#"#"&/.#"###"&5467&54674./.54>72>;32632322&#"32656&#"3265.54654.#"#".#"#"&#"#'"32632326?63232>3232>3232>5465'463232>5 PM\@  .2.yJ^H EV}gB6>R*H>UOBKE4~I1C"vJO]ujs3.f<<!!#J0(=>/+GH;88S%`O@V! PU!8/Z'z\   X  =|LBg( [5_- p$>kA   l+K7JP#!$ Q)7  !Sf0)P;(? Ag&$d(/>54.54>3232654&54>32326?>32'4&+""&54>54&#"#".#"#"&#"32>3232654&546323267$#"&54>32#"&#"32>54&#"32>32#"$54$32 |f쏫% *Vv_xׄ |NN""%K,rn":.\K}F*O6Ai\V?^8&v]:&:32326?>32#"&'#"&5&546?>32 #"&547#272#"&546,-'2#"&546$%732>54&#32654&#">7. A7-Y.],N++}xӅ =ro;p-(/8g8 ;9/1R7(H )k56%"(A5I(V{B '3:72-6RPJ "5-&$<{m'&R%  &s ! %죙Ѫ³}5+* @++J;P=o6bcP>0ٴ (#B?(%7;\( 'E6+'4? d`iw %%Q\?Fy.k=~ G&&M% P6I! 4$;&5467.546322632#.5&!"!2$65#"&'#"&#'&5?.56?2727./.5463276;#"'&/>?>32>5.54654&#"#"&#"22654&/&#"232654&''"'" ;D1 z`.`o 4;g0@Ya,JmH@h8  j[H< h/a?F 1~Kh D! % $//N |=' #2^ 7%$K&-3Bm)% &MN$A%]1l3%ra !^0Ru 2HkSQt23^NG}34 1 ??Rc-  ZY.Q~< 0 O)X T1n<4P% $ g ,0B-  )+^ZBi & +  T!.8DP QX_f#"$'!"&5#"&5463!2%!.54325!&5467&'!&#"3265&#"3265+"=./?4325'.546754;2#"/#"&'#"&=46;4&5465#"&=46;>32'.#"32+32+326?"546;276;232+32++"=#"=46;5#"=46;#"&#"#"&/57>7#"&=4;.54632'.#"32+326?>54&/ %ר4p"""$q|% 2-R'ZLp먧uQ ] MU'>Q10`7pW ] 0Q5\5^3+2Uyh]NN]gzN:G%&>c  c=' WQ y  x k   ldV++"$ -.2 [ a\LCcO  f k U1/^@##@vz2k:Ś#"n""K9k2-,P-4 aD@wA쨥쨥a$ ,*S* u#B+FY* 8 " N!`.E+pIlY>  ?Yj<s?>B )C q q C) B P%l/U &;G\`G  #E U&  ;-- _C@GN$#!"&=.547632'.54%5463!2#"/.'>54&'_`î   IH?I$632./326?,5$.#"#"&546?>327>54&#32 'eCJ[s 6`\nIGy/RT!VyXB!0$YX*W47YW7 !Q5?MET-m.+:\* L)@=Zp.8 $=  -r<1b6>j\S09ch[pD8aH-+mw+)'G"FM䈡=8. 1(%z: $T   Y wQ2#!"&5463!!&546;276;232+32++"&=#"=46;5#"=4; E""$$(   ~    ~w"X"""v^  S 5U   U5 S Y xKRY2#!"&5463!!'?6325"&5467546;2#&#/+"&=.>54&' E""$$(H_;h o6b<2:h`o G~ x#W###v0`0_bQi3 C& \r4e32#".#"32+32+32>32 F"""")X?p#w dd w#ȅqIZ81O  N2.h(x"W"""v Xp P   O pI #$ O   P #%Y yc2#!"&5463!!#"&#"#"/4'4>7#"=4;.54632#".#"32+326?272 G""##*f7mLEH/2;3Ms |x_Age ' ~$L!;y"W##"v @4/ 9+ l 3N"YtH,[' K9l1"K w  Y1K#"/#"&'#"'#"&'#"$&5746=4>7.'.'&/.'.546326326?>32>32'4'463232654.#"32654&543232654&/&5463232654&/&%>7.'>7.#"#"322372>7?&$' /7>5654&$/.#"3&'%3265&/&$/.#"3265 |P O  =2"!5,"P)L("B!S9/`~?:M ? HZVEq2k. % 05dha.! ;#GJz]M*r [&g%=$[#l4  !&L'b? *(AG#$ 7f7  \ y 6 W1`7$ ?$:#d;9SL6D&/ hv)4 :&. $"Gi85$;K       6f0nL,a0],m  !C '  0iB9V.>O7`"y7o3X& !C"/ vA    !U#   U k7(H   qO>2#!"&546327>72>3267632#"&' #"/.5463232>322;2#'27332#'#"&=47#"&546;4&'#"&5463 ? $ 5*$ ^# F71*6DJ3,36I-!*$HD%')&FR,02+R=*(uCA&#,H & )#}.$c!^[; aQ%"G6 #   kB#"&/&/.'#"&'&'.'+"&'#"&/.5.'#"&54?>7>7.5467&546$32>54&'$&57'&543232632>32  &$  0yJC  (0f9 )\K0 V  :*#qiu ӈ" rqvM  8X/-2B7Y &24fgK*}$h k`s-|)4K*;YYp"^(@ O$.]6: D/2]2<&z)jDy&0FC#%6 \-@lz!"&5463!2#!!2!5463!2654&#!"32#!"&547>3#"&547.546?654&#"&54632>322654&#!"37"3!2654&#O*9;(1';:(M++ ++ ,,NL  LF>Z1-UN fk (.oh   9*(:;'(;t'BB's- ,, B- t=E:%  $" F=  uR@ E=b{#"&#"$&'7>$32654/.546326;232 /.#'%'.# 326?,>5!"#"&54>-26;!"#"&54>-263232#"&546$!636$;732""&53232654&+"&#" E GsrrI5%XW {},*  tzL5 #87p=G'`kǤ3 mS86^`V UWje?,NY/H4e3 L%2[/S4e3i&69$:9^f66-8]03?eK>:r/Yёz/_E2;3U0T)[D4> 7i  wgT)   U>LW" ?[VDFK<;M2W6hN .,Uc)  (  !4   =24 42'%| (Po#"&''.546?6632 '#"&'#"&5467.546?32$5/&/"'"32>654& # f#.)Zz(b<1 DV@-vmB1Hr!L5>dgV@$3!8\yqt8:  ;: B5  {_ otJK HENPGI'e_p\jig%=98ddӚ8>i_K} & |gq '# -_D y +Pn #"&,.546?6?663232667654././&#">54&/&'%&#"326?.54?632#"&' }z8d]G)W:GG (XV>'N[`- j=s  ' e  8|sF}EN .&h#*ZZը;/:! f 1O"  4 I e{AZb`e^[G265'10_U1#>T .H) m9B*"' Sa  NOu-->:F09fD J   .FF/pI"/7EQ#"$54$32'.'654&#"3>32.# %'&'%#"&'3 632#"&5jjz (ssNOrrObC8RdQ $ f!=JW8"&40*$6gh_$G"qPNrsMNs8]}-2$E! ]XdV#&b45"*33' oK*H^}$32#"$57>32.# %#"&'3 #"&#"&5465'&574?>?>32#"&#"&54754&54632$#".54632326?>32654&#"3%%.'%&'&#"3265$&#"3265632#"&5oLNgF=Xj4k#BO]" *52 O4*43TK ,L3YGE./ $ 9-xyTR|~P  >9 )/:> -)0P7)(9;&$<xwt4Ws*,(P]} y #C_#3  Y+*A 1Px#3 /Y-|L3NJ#LI6 9jGGkjHIh-!AD=8 N4A3;:/(*A312!#10$ -Mu#"&'.'4&54632>32>32&/./&/&/.#"74&/&#"#"&/%.#" ! ;& O@%W7*J w H(/Sc9q a]M  K&tsGG@4S2%f>+@  #0 @GE?+MhS?#:  & >a5G$"$*FOyqFC6OPrpJHT,.V("5|PP.`[[ -!),X,'v%6:=c#"&'./././&546327>74632>32 &/./&/./&/.#"76774&/.#"#"&/&/.#"' =$ Z?FTR'@/&DS  XQ:J'*&ZkB^1-Tfs(/!m ~22,PV *A/   %_>  /  #+an>f!8-W'<u 5%8  mPXmi? )E"8 KPZS\S"$-FM|z6B@v#JZFU!!68  A1  F-$MU4sg^+1  =G'CX;'Jos .jx$#""'&'"&54>36?>3273237>7#"&5467.'"&5467.5467%&/.#">54&'&546$?>32 #"&546?>32"&546?>732.546$%32 # N^/ <6 (*Lx%^8F7 5 md + <>Z (#M}6-#y~3P4Bږ@Y*3>,,2. ]VD!!m&vgZR Y^PQ̀XwTUJKnZ"N JS_:SlVWDON+wh[76 %%0 "+!p2eϕr{ 82d84j5:O_B'x #I\F!."!S%) ! $[!I$%$N d>m#"&,%'&/.546?6?>&?6$67327>7././&'#% 227>?6#/&$.546; #"&$.54632#",&546;6#"/&$/&/.546323#'.546327 d "<&<..=5&-@?00q."0_ 1N"1dZ"0O  W\'s\aBDkCyp<>[| p-;֙Z8@)xhшݣJy"$J6<" +!# ez #7]* C 7W&L! * I~!R %g%^? 1v&( F'%("+({S' @ &  76 6$22$8" E=:7&M#"w ["%18=AEIMQUY]aeimquy}2#!"&5463!632!!54637>7!%#5##5335>73#53#53#53#53#53#53#53#53#53#53#53#53#53#53#53#53#53#53%#53#53#53#53#53%#53#53%#53#53#53 ""Z##Yc"HZQ<+;;+Rd''+V%S;7 RRRRRRRRRRRRRRRRQQQQRRRRRRRRRRRRRRQQQQQQQQ#""#L w_".Bp80X1 0\*=============PPPPPOOOOOOOOOOOOO+NuNNNNNNNNuNNuNNNN k Hc4@G+,.574?47.5467"/.54?>32>322654&'%&/&#"  3%"54?>54#"3#"&5'4$322#&/%/&#"&#" 3265?#"/.'%3?>%2#%"&54?63'"54?63%2&'7>753276?677&+"27376?'2#"&54674&#" +jQ&Ř  .CI^HL^*Z73W4pLbJw.:M+00- SF9hY|r-O *8 03+,tO-  X,s@< OKF<ƼmE JI:F M ( % !    M   0 #!&f%!(HPmnhW97 b((9-! &@+i$t B-,X50EJYE -$SW)E & % 8ioc%) eOEJ}tWU/&   5P 0Kf"Ӎ92  @   @ji % [ Aφ=9Tqk_dVa(NQm iߞ$$%!, +t7T#"&'#"$&546?&5%7>746?632%3267.'#"&54>32'&%7.546327.546327'4&/.#"7>74&'#"5467#"&546532>3232677>5"&/&+"$654&#"3>=.'32654'#"'232654'  !?C)SN B.?)%K&0Z/$`N>2'MW{aqPB -%  O-WyS+^7qx( $*-K 8'G q)"$E<(!K  sm\    z 1VlC8QdCJ '74p1SR ScRLK'X )$ ">p8\ D"f|YA/Dx9  )4&9+,X4(-Ɉd'8 0oX 58)*7:/0Q -& (G *S8& *T#L=1_  A=[2B   f_@MlU@Mv2#!"&546327632>3267632#"&' #"/ ?  6 *! `#H& ' . qP;2#!"&546327632>32#"'&' #"'#"/ ?"!.*^  2K>ߒ(0!)_ bb+G~ qO02#!"&54632346;2!46;2!46;2 ?! >!!= !H c!!b!! zl>r#"&&546?76?>32>3232?>32&/#".5467.#"32>>5'&#"326?>54.'7"'"32654&/.' z"'%Sk61)?Jh5HD1,N6;*) $e(j 2  84taIH " `V6r(@/" N4DZ",$ J`I[#  %CR4; $7#6;)7{GB-)D5/u4HJ3/T9c   X#E  eL))&  Ffd;4<: cY7'Kӛ& KI["3>  =P"9m$wPl -%+ + 0&54?632.54?632#"&'#"$''aF1@i?GY ^& Y+UONUG3[tN[3FVMU+Y X YG?Oi@1F`);#"&'#"&5467.5!2$32654&#"&#"#"32$5gQ@Bp YEOAuRTrsSRu JG (94<=wP6hYzuvQPvtR@ :o<67>32#"&54673267654&#"3267#"5EB+j;)*= N_>4 \-OA0/1Bv/y]B]eB+.ކ:k*S!>_@ 7].AT0/yA1/y_BFv oo#"'&5467>32>54&/.#"#"/#"/#"/#"/#"/#"/#"/#"/#"/#"/#"/#"/#"/#"&/3267 P,3#V!(*# #'q  s=ji> 5n qAi  kA  ;o  qFj  kF=p  qLl lJ Aq  rOk   mP+,"J *)4&$534'# n  nt vKq pC*+T +"'.5467>324654&#"#"/#"/#"/#"/#"/#"/#"&/#"/#"/#"&/#"/#"&/#"/#"/#"/#"/#"/#"/ 3267#'"'%.54676324654#"#2?>7 t A) (9$0F KL. -  -K M-  -.M M- .  .M N- - -NN- - ,NO- - OPLK46SW C' *7&0D  ( Q !*2<>,4 F2) `h  j!$  %!$  % i i $  %!% % l k!' &!&  (!m k & &( ( m l!' ( )  ( m n!( )!)  )5  @c)2B>-2;D /  (Pv./7>5.'>?>?#"&/&/&/.54674632>54&$/.#"326?67 .5467"&/./.#"dGT)?QccI/ 1# ??'"'"#'#"&546327#"#"&#"&546327'"#"&'"#"54632767"&#"&54>327#".#"&54?>32632#"&'4/32677>54&/&$/&'#"&/#"&/4&'#"&'4'"&'#"&'6?>32#".'.5654.'#"3267>7!$3O54S/1%0a= / &)  c?*'c $ ,`?%!Y$  d8(%$  O* Q+   U17 *H?S0#E$Cc^ _ LK6_ ++ -, 5 !:) H+V#?H c8/DH W= !!-n6Aj;? ]_]M*-t]!\2Cd ; D Jc!  EbyD\2$  G5 d$   4Cs{c 9 * &%<BJ- 9Q  7;:2=>6J%$0.*-\9>/Y` 4}(V #w(":(30A`}$ #"&5>7?6?>32326323263267>54& &#">54&'/.#"$&' &#"6,65&'46?>3##"&54>?>3>a@_Z[B/]F8"2>RX<1&  ?:K[7y"5wm 셳AP?*V !+.lYZU 1MYK.?W V)NU c/ i]5|Z8) +vMLMpYsCMRqNmoR 4-$8/"*̾`N!5sf@ ZW ãg1Xdj+?(%u+ ch+?tX5:y PC OE&*FE12c# Yb/;F K,I?L -ch(( -s9/i{##"&/.'-'.546>3276?>54&/.'7%.'73'.#"327%7#3264/.#";6?>7&'%%%%7%7*D',\F{*%f.+/r@5,2+%#2x '/0]JW=]@A.31^+4-  -I*( /b0 C#&X&+ !.%c,knKti*Y.0r.0/ j3wRJR%1!L,%h=W  3EBgY\ # 9'U&M N 6O4L&% N mPWA<.o3g0C{Ȉ%%&MUV$  P P  N O ]8Vg#"#'""" .54654>$732/.54654&-!"!2?2?2653!26='.#!"'4?654&#"32>"   M9-$6{FNpjE ",vi夁(#3vdvbM#3o^gd\[mc   /&  D)2*/&Eppg C  # %GB-7 ;Oe26.2W!+& bLp0J%#".#"#"$!"#"&57546='.54676?>$32>3%326=4'46&#"32?>32$&5& &$#"32>323265?>32#"&#"#"&5%#"/.#"#"&54>32&54632#"&#"#$#".#"#"&54>32""&54>32#'&#"$#"/.#"#"&54632#"&#"""&54>32#"/.#"""&54>32 U%1̆/":7)"5  WZwF?ƀbJ  0$<  ~N{ ^ 5afC# _mH  LݜnU%  q?|_ _\ {  Oo `|?saf!dO..Od"fjs_sURKnKRZk ^s OE?kh >E0^3@hn# #)/ e( 98?A"U^=oRUNYp?XU"A@ 1  Z$/\<:;W( ;d?[dJWT -G"   3' ($   %( '5H&610""006  D5 ('')6D j4%56 % 66 (/Ojpv|#"&'%.54?6?>54/.54,32>54&'./&/&/67&#"#>?6?>5777633%254&/./&'"'7 (jm @p#.  GbY3  pNJ=(1,oCAu7c#;3KXh]  H5t@BI+!8uI< sa%9&su fo>CB9dTE"  3b!Sg,A-; ,rϯ&J(8)T    \Z89@[wHAg 2&E$qTr:9f. &C &fb2/T(F w5_!?"*S%$@4K$+ 4 9D RY24g4+K@  )Id{[  (1Nmqw{#"&''#.54?6?>54/&54,32&'./&/&/>5%>54&#"#>?6?>7''&''.'%&'326?6?273254&'"%. !ir @>rSc%4  IbYS-  pNJ=(1,oCAu7c#j&;3K^h]  H5t@Bioo7ntlr4^7 e6l!(  S+r5Y,*#+]h-A,; ,0>N#P*8)T  . \Y99@[S%E$qTr:9f. &C &fb2/T(F _dB"&5]!?"*Q'$0US7)U7TU]  , j .' n &9" ! (0Mhlptx| #"&''.54?6?>54/.54,32 >54&'././&' &#"#>?6?>577'77'%77'7//7'%7%7'7'%7'7''%7'&'7/7&/6?'7767'&/.'627254&/>7'73263'.# !\%<9o[e%3  D\e~`!4  AKe( ,-" A4V),<2Kih]  H5t@BI+IviwLkuiviwuiwvkuwujvjui,ivi8ivi|uivWviwujvkfihhi5diia 6]2 Z!;JvC69Qi> Hv7Diw8>v%9&?v@5w!2k  ^:8va6  ?; #+1Sv ,,CN#P)8)T    \X:3GZ@6%,H"&H$Zmq1o:MD D0%=4\A"*R&$@4K$TUTTUzST)UUUSSU TTGSQTTtUU)ST+( ;*)S 9)U12],    T  .W  2  wf UDd#"&/.54?6?>5.546?.546?>5.54$?632>54&'./&/&'>54'./>?$>54&#"#&#"#>?$>5&#"2?,56?67././&/.'3>?>54&/.#"3>54&'#"&/ lNT<:oWy_ ^ >> _F  uNK) )DxBDA4~-1?&nU},oHyO'82Q>g_72NUh] H5tgB/941 -mw9  /x2B4V/ .6 ˋB9dZ@"ҎFE'?d3dsx t4"( ,I MGnj+Wu20a9,.A])IV8/O05N"Uh:- /dWﮈQf:6%K!mXq:9@ InZ11a0%Z  6(3 O E#JGAaAA)d@E%#6d!< :B)6_?@*U$#b8@-8$0`6SM _or@] 'h3*D%1 lg3+KDP   0'V(ZVZT& G#3 M8{U Ta)9! 463232>32326?>324&#!"3!265 T#Dn8+1(?8%EAQ(%=!I'?23?SA..AB-H-B[mWP^Fw6LGC[Ft:/*2vk/BD--B@/& Ier#"/&54632+"'>54&#"3+"&'&54632>;2,?2'&+"+">;2>$>5&54632N/' 2R-& 岿5%wVP."Y2& 0D }0I 2v6=* aPq;6u21A0\P.-\$z;t:AZ)5$p03H|1 p 9W"$^'  : & r%y$0#"&54674?>?#632 #". &54>?6,32#"&#"&"32$6?>54/.'&5463.'&/.#"2#"&#"#"&54632326?>;267&#"3265&/&'6657272#'#"#'"#"&54>32326?>3232>7/.5/&#"&#"#"&54632326;263#"&54632 %.~cCQ' /Zp5~@R`d -BrW:bnNPvZ(*. CCI&$EC2e`O@^(Tj Tc^! >. V Fr!/=Cq5emP!x-%T   P?/7>,3j6mW(Js''*  &~ b A+   #(><3 :,9   %&}%PG${H)%M')<  %:">A"*0sV:( !  tBoY{wEDh@d:  !YFc "  V"g 2f7/$r .$ # 9> RX9&y B./.$  .C, Ex70* FQ v&  &  %M^;|&//" 0 & 9) 9# qQ(#".546763267.54763 qi.Xkt )\TEcX*4bHv## W'>99R5$v=+ (+7CO_nz'4AMYeq~2#!"&54634&#!"3!265&#"3265$&#"3265$32654&#"&#"3265$654&#"3$/.#"3265#"&54632#"&54632#"&54632#"&54632$#"&54632#"&54632&54632#$632+"&5#"&546322#"&5463!2#"&5463$#"&546322#"&5463$#"&546322#"&5463632+"&5$632+"&5#"&54632#"&54632$#"&5463 #"&5463$632+"&5&54632#$632#"&5#"&54632&#"&54632#"&5463$#"&54632&#"&5463$&54632#6#"&54632&54632#$#"&54632&54632##"&5463uJiiJ(&)!     3ArHUbo{$##"# ./.5463232654&54>3%2&.#"#"#"&#"32$3232>52327%2654&54>54&#"#%#"&#"32654&546?>5#"#'#"&54>?6;2&54632326;2632372#"&#"#"&#"#632326323263232632#"&#"#"/.#"#"&5&54632326;232632#"&#"#"&#"#"&+"##"&546;2#"&546;2#"&546;2#"&54632#"&546324#"&54632#"&54632#"&546324#"&54632 3*?;J1 AUck9vZ1 \e0S$(7ylQN%u,sl4gP1ht;~B~LL'1   F<Hee4$GP-3iMM,.5Z#3`2&T\8gA:-i46NI [*!'M&3WC& 1/F"#$. #;.5!@#!D!8'A0^0$O'(C$*W. A  ' &X) (L'8 +$'14WF3b.B.C )+P' *#++%1*#++%0,!+*%0/,)''++)$,)''++)$*#,*,**#*#,*,**#*+&'*+'&- *++*(%KiA $7-h8_I'):? aI!? 9BcR.a:&8"":)*@GR119k){o??JH%P"3i3/{P'7eH*G+0-       - @!!!!!  ! h 5?Kh#"$&5467&54$327.54632#"&'&'3265.#"&, 54654&#" 37267465&#"$/.#"32?>56?6?>54#"32654&#"e 8i ga&÷Y. cGHbcG ,xk]^Oĩ^S)fl>,$,Q/+c  'Ulh%96BC")< <6pN G3$&22&$3 B$[#0BJ!d?8v$&DdbFHd; ,/ZfMy4mZ;Am>y-hVyq`,0?h /1VS)3S)-Q9*K[33&$22$[ d:Uo#"&'%.'+"&#"&='4?>32>?6?>32&=54&'#"7>57>54&#"3227326&547%.5467%.#"32 c1J 7""C48=@!CA336a_l1!5"@l7 h8A5M-L'V3-zB 1,G ,/ G;C<(-51 s .U'<"*-@5*B.n^%6^  (%{#'#'=#+(>4Jx%*5-[l ECC>zBK*'#  #:  ?52y)(~HI{-%b\rA% :'O*9l-\b"hMCfB` *BSg~ ##"&54>3?6?>32&' 3253267%>54/&547#"&/.54>32&546?>32#.5474632##"&.5465"326*j^#sJJ^JKe5s_Z:Qsö3xZ 0* gV!n)75/@ #[[&y8J " 1( FT!)](  ݍgytFItN|%DOt!8NKf^ -R^  s86C5# 7"yq)52l= !* f',<n?K/j8 M %mBx#"/,.54674>6;;26?6?>54&/%&'5&54654&'#.#"#"&/.#" 32654& !!!&/.'&#";>3232>5 $Ek( EtW! X&$h@j;*\ 9 ꋌqC$E& *!I42rQK%.JWU3p?/0  L~=*U>U*g#J%/8a *mde1\i7n('U96++"M 3   _'&HFEI6f;  <.-  1e\`2/]/*-5+  ) !lHE  %_#"/&$/.546546$?"&#";>3232654&'7;2?>?>54/.'7&54?4654&'#.#"#"&/&/.#" 32654& !!! %lD$(+51>#< $%   =>*V@RR5V2-H&3+c-`bA8:92?C%H% 9L929 @9"3B? &@WsND>m/>(  ,Y-fg(rSs"lH U B *$P  X#-+D<=7;" &U2 8<<( !'0b0&9%,5+ Q)s V $(-?C#"'&5467632 '  '5'5"/.54632   $    vd=4P: !  M  KX B au!=hfrucmek35b 3CGS%!>7%!%#"3267'#"&54632#"&=4+".#"32673265#"&54632<! z >#jl=]K+Tfj;34;:43 Q-0s &H2 cd-& !sX!?>--><. 4J ! 576#2#'"&546%7>32#"&546'"&546632#"'xw"^7$ /)(<!I+<@ .1\gJ0 5 /M> $5o9  & %R0jg  = pg! 1V s  ! 5! !!!xw8NMMEM?8Q-Q3Vt"#".54654&#"#".$.5'&5?6?6$3 7>54.$#"32$?6%4654.#"32654&5#"&#"#"&546?>3#"/&#"#"&54654&/#.54632632#"$5Q=>1E '%Y-4#/@Ӧ )GYb뇔(~?- ){P}v7gX, ()'3^> $ Z%J ,  !"*' )')0&jq]-#%(ys- *T<@  .'=96 9:=Z06vV)  J|? 1&WZH 7T>7D hA kGH+ov^ac&$ @;@N5Jp^ 5$>49%+< * ,1P4?6#6 %/97.`,92,!RD-_|#".54654&#"#"&,.5'&5?>?>732$6%7>54.'4&54? 4654.#"32654&56546754>7%2#"&5#"&#"#"&54654&/.54632632#"$5 6J=>1D'>>*>/msw p:*CWkO+nht9c~]*E6&"1z--"C, #!(( )$-1%]-#8- *'X[2  .(=!N l1A Z06V[:  #-5  8U=7G W 1&V[H+ r.jF?nx^ab$& @;@vd%&+ 0)8/'%,ꋇ,4)N6=8"7 '.8B>`,<6",!RDs " 65>?2#"&5#".54654&54&#"#"&'#"&&546?67'4'.54>?>732?,654&$#5237232>54.#"3&'#&#"&#"37>5%7654&/.++""&#"32?>?>?>7254&'8 ^5  7* + l%LWCC0> *&cPM/;we)&aN-B[U]lmr7[Y"^{ yS+p); o#08S )44gF:6|!\  c- K  ! / G"$ IK%&    +)(^#'q&-%;3rQj%I, *$WI"U6 .&<#3 "zP8J4& *(4\,J1-#,-  Dt #.McYWa#e+!)!I AQ 1 Q   !D   ! ;  WQE  7 6<_#"&54654&54&#"#"&,.5.54>?>?6?>3 &$#"32?>?6$65#"&#"#"&546?>3 $PoAA3U %.20"IRLdA"B.:;uqu pTNi   ٌV)('2nEO+AwBV\d ]I$aYQ# 0#<<+  j2D 3[+Y1  x6@   &^$B(  _=2MM:EyX "675'./4&/.54674&57>$32&=4654&=4&%'&/.#"6?54654632 #"/#"&/&'326$54.$#"37>?27>54&/.#"32%32>?>54&+"&#"#"&=32654&3254&57474&54654&#"&#"#32?27:5 +;c)Va-崊ǹ omZ%a!~jYD bHGJIj,4&%0O+F77&/'==  &NM'/( }K=1<@6F{$5W; Z!%Ef> A.$B"0I(/ j-^ET}altwl3   1t۱** 0n-+XFF,-sh2/@E hBRd5[UtB[@73,>OCs8B^%+wC1[-=U7Q1b0!qsXX-S9d>q.3  +8X0[WM==1E7w $'(\B6F 6'H   [P:"L$$so5=#"B!3<=XV5_1/) *+E !J'5'I8K/B%B N''   ( |5 @? y$>32#"/.547.'#"&/.54654/.546?>3267&$&/.#"&54$326326?>32654&#"37.'#"&54654$#"#".5474&#"32#>54/&54326>3#"54>3 y [+C& A, '  &$0 AK+   +fs`F6?#t6>>R' 7H韢/"6ԭաJ ]fXugv_Z"gOp`*)#1!9      1 3N)"2 'T4 !#VfFN,/53c@81 [ 1 !%! 6礟碝|/_t*a7)ڒz}YC7+OFxdR ? # mGK+8" # "Ö Bd*5HS[u% #"&/. /4>,%2632>;26$% #"./&546$36$?4&'&&54>32##"&54>,63.5463262>?32#63>32#"&5&54>732#"&546%32"&54?>32 1(^% }u H7,_" ;gip zr06Q-=Di% *+X +T!W0CHLPVZ#"$546$32&32654&#"%";2654&#2654&+5532+%'3'#5%#3'#537#33!!RgOOgD  %t67m6&M`[[;;*TDƯKK4Kp++p#   X  <7= 9(!w Ey y"0EJOSW]a !!#"$546$32&32654&#"%";2654&#2654&+5532+%'3'#5%#3'#537#33!!+@gOOgD  %t67m6&M`[[;;*TDULE̛KK4Kp++p#   X  <7= 9(!w 1.Yjv#"$54$32>54#"&'3267'>76#"&54654&#"#"&5463237>54&5432#"$54>32&32654&#"%";2654&#2654&+5532+%'3'#5%#3'#537#33!! KJ9BcGeSb*-AR@!KK-I  =799("+ Ho/.pH?7"          X? &2>IW]aejo! ! 65#>32'!7";254#32654&#"$73#".5!#33'#3'#53/3'#52654&+5532+ E0FI4?t'R\GbM_ K   T!x\fGefGL*?2 EE --))R):  E0FF0EYPu)16rMb$  ecZ:yݤF3T T3SLg ,  *. %     '.>NQT2+"&5.546=463!2+"&54632+"&54632+"&54635#!#& 5/~ .5 #..~!//!// .. .. ~0/ %g *!-. 6(  ]%/* ..  .-.!-. .-!c ./!-h SEQcg+"'%>54$#"632#"$/"&54>?>;76;254#"3#"&5467326/]m *y?>ϰ5J]ujvKg5HJN#o&P:5)<Ȱ  ZƉ|gHTjql",Vj3ۤNW7> l}Kv.  ͎n*.Pm8u +F<[hl{+%#"&'%.53254&#"5467>32>32%.54634&'%'#">5672#"&5%654&#"3&#"3265  2) >V%'N&,%!= d-}+]M?Ms /" (@SѼURjxe}Y 7#"&54632>32&54632#"&'&/.+"32$>$&#"3265&#"32656LnoP $Bb^|$A(KonL +!  +=?)+? 2/=++><-  1 P;9tvsKmB e{zw%8A//AB..BB..BB..BPmMLn&&%<##%{HnLMm&:=+-=?+"  &,>@*(@: ^ *cTVW~X N8BB..DD.{DD..BB.F X4#"&'4&'+"&'#"&'4&'.'232>54&!"#"#&/>32372;2654&#"&#"#"546326;2654&#"#"&+"'"7>32322654&#"&#"'#">7.5467272>3 4&#!"3!7>323265&#"3265$&#"3265 X:]5;2;gqsj:25:ih;~  X0b0dA{=?46+?w;GKJF0#&)'?H&*?bb "B"$%2`2>DmH~@ Z߃vf5$%43&}  \%4T99TR;;R8T99TR;;R')%%  % !'#}4#"  =;&4&L9:*'0. U 9n&$45#%47&'2654&#!"3&#"32?$&#"326546325!5#"'>54&'7PP7,8MM8>V !-. u//0FD2 F01E %Bf  | M2:5#Q66QP77P@$vK*kE .  .-!E!-E12DFF0 W-e/M!hHk5STKh " Sh"2%'"'532$$7   &$'>?57272&$#,&E iopu36Zw67 )f-Kaa#$q,abI,c7;Q{,'o 4"&543! !"%#! !2654'LI''ٔY^I4`bI֖ [[֗ ,F.543! !"#"&54632#!67!2654'4+4&#"37#";25Iq#J(mU즦쥦O6ݖL;3;'wK&K4aaIx;W_Vkؔ!%f`C$-!"&'%3 4''4'4!27.#"@zm:HN8%zm9YHN"!8<9 = T !<; C&-3267'#"$47%>3 '754$#'YNH9ly@3W:my ! }:< @;;8 \ ^^ '<Scz#"5432.#"326546;2+"&5632#"/.'47#"&/&54?6322+"&=463&54?632#"&'"&=46;2#+"&=46;2#"/&54?632˧tutssM  _ ]_ ^]  _ ^  ] _ X  ^ ]_Otstuh _  ]^ d_^ _  i^ ]  _ _]^   '<L`p#"5432.#"3265+"&546;2#"/&54?6322#!"&=463632#"/&54746;2+"&5.54?632#"'"&=463!2##"/&54?632˥vuuv ^_9^  _^^94[ ^^Ortus3[  ^^t _  ^9_^^^Y[ %2HOW! !  654!" 32$.'32#"&'#'#"&5467#"&'>; E0FF0E8U_ET]A,\GUA|5J"9QI3+,Lz"4,8Hy E0FF0Evb+vE`u9 3/Tgˌ *,`+06 #">54&#32#"&/'+"&546;27676;R5` >_]Fg4SAG:R-(@WW@* *82=zOa2u#[^pЛNpdᘙ]q !I ,6DR #">54&#32#"&/'+"&546;2>76;'>54&''654'R5` XX>* *34=z54&#32#"&/'##"&546;27676;'654''654''>54&'*O`<`_DfOCG<S%?XW@()43>|lvwk\ZggZSYZR[BHHB3232654&#"654&'#"&=354.#""2326467&#"32657fvVWqnff7pTRsvOQsg-6{.6v >A 3B,5'#:t LkeJKq_K+Kkk~I.5JI?>+,?@+f~U*J"`JjlPXH(Y;zx+&!& 74h,%%' $' h u#"54654&#" #"&5467.54654.574>7>?6?>32>?>32326>32 7>54&#"%2376?654&#"_l=&H[C]PH+ Ub8J6   .<<5m? - B6@'{,p |rs. :zTH[ &7  / + K4(;'x[gq b[)"*ٖ4G6,#V,U)!H<9R/ EZ)@>(OV9]/ -N)0 f1ekq9ߐv~jh-L  fd2.R$ zi(7#"&'&547'#"$54$32>32,5!"3 ` Z$WmtrSS3' &ޯ%$] +05RRvtփm %#wڮ۬ zi(7>327.54$32#"&'#"&5467$# 32$5q '3SSrqقmW$[  ޫ&% muRR50+W \$&ݯ%X )FO[2#!"&546;5432#".546?&5.=375>74&#"!"&54673>='.'#"&'5.54632767#"&'>32>54&#"3'P*<:,*:;)`e@"&#M %  |{*:&!-cer %W54&#"3'+;<*)=<*aaaa_aRR76TR8!7()6!!=)I*;;**<acaacp1 ɕ2cb S7:QS86T /'78&/ i &!73535.54$32#"&'654&#"3k)+ZZ^M|{YY{|Xi?iL]V+)|XX}}XX|HUf #".5467.54$3232672$54&'#".57#"&>74&#">54&#"3277kd-,>JveGchF'V< .# K ">}a+$BF oefJsy.55&O6&yZ--[,m}5t1s8 aB.2=u^'*%%6.E#3$wF:' 3;*;jeczt S%'*?'* @{=Xg#"&54?>54&#"72#".546$7.54$3#".'32,54&272#"&5467>54&#"326323265'467B" 3*)A srw[ z4J}mdO{ CA1=cJd7%[4 E2%'!B!  -E2 +a5w:i4e-mL HD?sl_X_~@W.IHC" /;55;d=U1?S*2-;": 7 o;$ %((%oh9$=Wi!"$4654546?.54632$54&#"#"&=3326?>5454/4#"32?>?>54&#mvw5H eHxpN{=>k~2:˓ʢN Hc EK  -qSIQAjwj_W#1_RBXM|.TVX.Fه|wQ]n8_*Qz  }f:%   Y\ @Q\i! ! &$# 67&54632>32'&/&/&#".5?6?>54&#"3'3 #".'&#"#"&'32$>5 E0FF0E_U8wE\+%lM3PL-  %C8    $8y^UvV JvK  .">&E**tTIn4@o6ގE0FF0Ev+XaIC~7.5Jp/+4vBEO-0 KG-9BWS   -%DvW`Z~J`#I0"T+SzY[t3za7 CZ#"&/.54?./.54632.54>327>32&+#.'3265 n8 KWo#?+vgL7_O !KLُ <( > :(3Np$/6;HD3 Y7(t[a_KN!  ONojC8 6 ,=S4!5Ubu #"&5467>76>32&#"2>?>5>5.546?>?>323267.#"7.'3266?.'>7'>7.'sH=dcormslpY:?li,:'*&BM!,#K*.(@E"+&.10Q  '(%$\~"Xco\llGm{6SoK#'aB79Q#Y&E"!34%2 @T %!D%g  % )*^&! -"=2)5A! $! &'"#"$'32$554# 3632#"&5K+ T}%:sƹ[-5 zJqQNԺu|}Q?OyU4O瑳˰gW9a']jSCy|f(,5>]2+"/#+"/63'%+"&54;2'2654&+2654&+%#"&54632'.#"326?+"/+"&546;2?2732 !!A~ |n22 'cG FdHM!$C:(a8{|rI?> ;LK<I {nn { smX  WW I@&?Z Z?6 k$#zQr"!wv9sI99J  p!j>! 9T[2+"5432654&+"32+32+32#!"&5463!2+"'+"54;243 !!ru 9EE9Q   op p OWVwu  gN@?N  U d UpU   F  > H}Y &%1=NX2+"'+"54;243#"&54632.#"3265#"&54632#"&54'4632 !  o n n Yz||zQ@BQQB@Qj: :))mbk*  D  > vuv=QQ=>OO> ?**|~oo`5#-MYeq}%#"&/?32654&/.54632#"&#"%2+"'+"&546;2463#"&54632.#"3265#"&54632.#"3265 !! sMf\8_&4O# pJ T]%X#G accnoonyG98KL78HgnnnnwK88JJ87L/X:[3?g-+ X,#9 *>%Ab SC>vvu>SQ@@PS=uuuu@QR??QP@R}F%=IT !!!#"&546322++"&5463++"5#"&=463!2&#"3265%>54&+pl|{{|KllKh o o QB@QQ@BQ)+Y3qvvv jIJk ff [OO>>OO> ,, .5MYco! ! 654$#"'32$7'>7'5#"&5467.54632654&#"3&67#"&5&#"32652#!"=46;"&=463%2 +,cpvrabWb mv%B *$R39;2#)(JJ48HK5Qr%'*A23@@32A  AW ++rqc cmvaXv0mI9*0T,}LL|-#h=}}}VVܹ  rN&CQ0Ms| mm  Yʚ%$ bON`!$fNT]I $/ /('& hI">Vt!!!7"546;2>32#"&'#4&+".#"327;2654+"&#"3267;25#"&54632'.#"326?#"&5463232654&#"#"&54632UT G'{z'G tG'wwN>y AV,K GBZQIF$BWVC#UpK=JB56CA85B@76DD65BVW[ rr ss"##xz LBQCBSJI98KL7jDC11DD1'DC11BC0hI(J|!!!4&+4&+"3!;2=32654'4632!2#!"=4>54&#"'#".5?32654.=4>54&#"/"546324&+/7#"3!257UT ~) ~f_\ 7""R0 5>pJVH j*%6L-.Q0 KGdg578  I8 " sVW$ go: K@)3(*a9e>L h43#"1 Z 8%!2# h_V0\H4 s ] hI>d!!!#"&'#"&5463254;232654&#"327#"&54632&#"5'#4654&#"32673?32656324632#"&##"&54#!";;2=3254#!"3!25&#"3265$#"&54632#"&54632hU0TP&AQ6[ut\ 5k pLJ6KﶿaO,$cMMccM+wbNNb7^5`M   1pTDg n 4--33--4% %% %% %% %VWq!'rXWt 1:}}8e)(걱BdL__LL_ NabHl X}U  Z}YC ~ { ~ 66'&77&<''''((''| }M 9Xcnq!!!!!2654&'>54&+"326=&+"";2?33/#"&54632?'.#"3272+'575'5732## }UmlvX}0)~W    $% Db+OfeP+RK0vKџkc))^Y&&I>}%WmkrM0QD&Pn{  ll !%bNN` &#͗Wi-! .'' 4Eo2?2632#"$5454&/.54632326?6654.5432326>54.#"32654&#"#"&5  fIpHI 8dzK++ .FAF5S)E&(L 7N:^1%3a 'q_krݰ pYr z z7##"&54632.#"#"&/267oywĥBg89ҠEϡ4oۇkgMML]t]vN56Q;l\ 7Kp xMۢv+S(whp 1֖v <`%lRzkU)U*4MO80J&2WL@Of$#"&+""./.+# 5463232>=4&/#.54632632654&/.#" |5AOA-WC*4eJxIR," 6Pt >^@BQ{_@%' )N <>%7Z (87m &<+T#%;GUX7gLv/[; .?^.!5bSR;<!sQ1q#p$ -T FF*K S 'BRS#"&'#"&#"#"&'&546?>32326?.546?>32>32#"&#"&"G pH$9<<  ?%6737'47%?%272267654&'.'%"%7>327>54&546327>54&5&/&54327>54.54632>54&#"7%7 }       gJ')t 5# c 13q>xoH??n 9 -J0 +H 1 $ 1E&ZF,/ E= D U;  C<  WCob#  ?'2#/#)0 tc%8sxs,Rc A  7&0 5 ?#00b  ? A*@n `7 Y0T %<HTd#"#"&54?6?>323267>54&''&'"&#"3265&#"3265$&#"3265 fF/504! |Z^ZQ)   Hq8pN8 'l  *=b`jMfqSZ"  c!#!$Y#"#C =B;! aSr%#"'.+'.54&'!"&'5.5467546;2!546;2322?272"32654.'#"&54654&'# [VZ #fJ`*%! %%   CM  #%317%9: &kWG8+$& ;@`:@1GM3!J)0Q   )@w-8<5"?N:6* .3t H1- 1nb   gs}#'.54>54&#"#"&'#"&'#"&5467>7/&574?.54?&5467632&5463232654&#"3267.%3267654&/#"&/&/&#"&#"3267>54&''.'#23267%7.'=86v" o?p&)+.>dW3=2  " w,&Yt" *AP:=RS6;U:n+'H\hQ=oG`njP,08     &%G;Xph1w3l*   Fp B'0RDW1  d+(>4Cp:&Y N|N 1lO n= c=m-i!3oV]>9V]<3W'$%48>^94P $(%$o t `>r4U?%m':Y" (  ] a{#"'#"'"'#"&5&5#"&547&547.=##"&'#"&546?4'5467.5467>32>?>32>54&#".'327#"3265#"&54654&54632 aka; +,kN % "+"+t'$,Q"T)@P &1-C_MJJ`7  Y%&   F 5 *3 ! $I1+: "BA%1M 1*Ji3i3!ۚ  4S7F%]3sd Q?2SH M("2Hr !",54>?67&54$32&#"32$6532$654&$# 32>33263232$3232654.'&/.#".' MjQ< w{y:Qm#8LF^S(:G6e0.7V02lpS&P$"c{WVaNPZX9k0J9T:..dm> w>i{Ql]1EX "lR?u&dt?eF;V &^ LAB, =&; N+.47:=@CO#!#"&'!"&547 &5463!>32!2)!!! ! #"&54632/,% /  . $ %,#/ p9<ǝ읟Ɖaaaa  !-8&-!!-&6-!  6 ^]? Q   :_aa !.#"&'.54632327>32"&'3 >-F&&G.>C04  40C &G.##>))*<f@I% IN) T"'./.4.#/&54654&/.547632 32>74&#"#"&54632#"&#"32654/.54632&#"&#"3:72265\LHd1+1(,EB##*H?&/</#00,05"J`)[MN/,+G:5W*,-P?`?b"n/$8U2562Y4[  e~ +)]&/ IP*jA 6')(5)Fj /K!c,ZAPKxvpHSkm_l1:$,&8 &=2#!"&54633!2654&'#!"&'.#!"7&5463!2/AC--B@/v( >)#  E*9!F-#B--B@/5/@ ' %+;  9)C#!/1C  6L\2#!"&54634&#!"3!265#!"&'7&5463!22654'#!"'34&#!"3!265/@B--B@/W 6 !_D";D/#H)>)%  D  ^ B--BB-5-Bo@%A` ..F i)$+; p   wL$,:BIQX#"$4$32"&#"#23267>7.'67.'>7.'>54&'PW6993<;48877/[99;58773663QPi-[op>10>O P > O  #R 88ZnmY wM '.5;CKV#"54$32!.#"!.'!.'!&'!326767!%>7!%>7!%75'!PP+Zpp=36N! P > Ymn=33= 5   )Up5883=76979<5M3883==388999 L#'+/39#"'&547632!'#!'!!'!!'!!3!!!!!!7'!!rqo$~pbpsomo$-p- o-q888 pqqppMp-o.p-p8882L $(,048<@DHLPTX\`dhlptx|#"&'&547632'!7'7''777'7'7'?'?'7'//'77777'7'7'7'7'?'?'?'7'////#7777777'7'7'7'7'7'?'?'?'?'?'?'r qO6PPPO7PPOOPPPPNPPNPNN5POOPPOOONPPNONN5POO7OPPPPNPPNOOPNNPOPP7PNN6PNN5POOPPOOONPPNPPOP5OPN6NQN5NOP5OQ566lO6NN6NO5PO5PQ6O555Q4OQO6PQO6PQN6NPO5NO655lP6ON5NN6NP6OO5P554r O6NNPP5POO PPNPNN5POOPPOOONPOO7OPP7NPPPPNOOPNNPOPP7PNN6PNN5POOPPOOONPPNPPOPNN7ONN5POO7OPPN6NO5PO5PP6O555P5OQO6PQO6PQN6NPO5NO655lP6ON5NN6NP6OO5P554O6PQP5OPN6NQN5NOP5OQ5661!$(,/3#"&'&5467632!!77!?!!/!' CE DC&)+PO2*)OO}P[P1,-NYO  F  N%))NN2))PPPP/..PP1"&*.26:>BFJNRVZ^bfjnrvz#"'&54676327'75''777'7'7'?'?'7'//'77777'7'7'7'7'?'?'?' CE  A669"887788\889888899$877[687887+9)8)708*92)**M8)98*88+8())7)828(838(93)''I8&98)78)7+)) C    K788"966887877"966Y887998877#879$)8*M8+78)8))+8)818*708)70))'J8)78(89(8(()9'838(828(72))) H> "&*-! 33333'3'3'3'37';' H4~""ooqqoopp1>oppooqqqqL22M6\+Ю^Mc8AgĮL H> !%)-! ##7#75#7#7#7#7##+i00Nqq""qqpppppp0@pqqqqLqq>v"(&'H"'#$}#(%#U%%&&?$&$& d.0<HT`lx! ! ! ! "&54673.#"3265#"&54632&54632##"&54632$#"&5463#"&54632#"&54632#"&5463#"&54632#"&54632$#"&5463$#"&54632 d)'')k33    ؋Gh2))1j$$##_$%%$&"''(!$#{%$&'%#%$s%%%%N%#&#z&#&&$$$$'"%%z'#'#)'') 41  YQrbG0OO01K&&$%$$&&p%($#]"(#%A#%$!j%($$4$$&&$(#%i#'!!$$&& (#"#'$$ d-1=IUamy! ! ! ! %#.54673&#"3265#"&54632&54632##"&54632$#"&5463#"&54632#"&54632#"&5463#"&54632#"&54632$#"&5463$#"&54632 d)'')k33 j)11))22)%%%&_$%%$&#''(#%#z&#&%%#%$s%%%%N%#&%{'#(%$$$$("'%{'#&%)'') 44 N00OTM20N&&$$%%&&p%($#] '$&B$'$$i%(%$5%%&&&(#&h$'"#%%%%"&$##(&& d-1=IUamy! ! ! ! %#'.54673654&#"3$#"&54632&54632##"&54632$#"&5463#"&54632#"&54632#"&5463#"&54632#"&54632$#"&5463$#"&54632 d)''(i22    i'2gG֊ 0)7(! )$&&&&'#'&($)%x)#'&&#(%s&%%&L'#')|*"(%$&&$(")&{'#'&)'')  33  M1IaOq-1M2&* '%%%&&p#(#%a$'$$?#'$&i%(&$8&&%%$(%#h$(#$%%&&"'#&#($% d-0<HT`lx! ! ! ! %#"''%467332654&##"&54632&54632##"&54632&54632##"&54632#"&54632#"&5463#"&54632#"&54632$#"&5463$#"&54632 d)''(i44  i'2dE0)Or/*j&&((&&&&'"'#(#)%I(#(*'$'#s&%%&M&!(&|(#&&$&&$&#)&z( '#)'')33N0Ed։3P$$$$Z$$$$q#(#$^#($#@$'#!#&#(5$$$$#)$$i#'#"$$%%"'#$#)#$ d-0<HT`lx! ! ! ! %#"&'!5!673&#"3265#"&54632&54632##"&54632&54632##"&54632#"&54632#"&5463#"&54632#"&54632$#"&5463$#"&54632 d)'*$i33    i'2dE2MU.'&&*_&&&&'#'&($(%H'#(%&#(%s&%%&L'#))|(%(%$&&$(%(&{'#'&)'')  33  M1Ee2),&&$&%%&&p#(#%a$'$$@$(#$%(&$8&&%%$($#g#'#$%%&&#&$&#($% f-/;GS_kw! ! ! ! %#"&5%773#"&54632#"&54632#"&54632#"&5463&#"3265#"&54632&54632##"&5463&54632##"&54632#"&54632#"&54632 f)(')k33    h)1dEHaOr %&&%$%%$t'#'%))#'%,%%&'O'#(%D'#''(#)'($','#)!t%%%%P(#&')'')  33  N0EefH֊''%%E%%&&"(#'#(#&%%$$#'$#[%(%#$'#$W%($"$'#%%%%%%)## f-1=IUamy! ! ! ! %#"&546773&#"3265#"&54632&54632##"&54632$#"&5463#"&54632#"&54632#"&5463#"&54632#"&54632$#"&5463$#"&54632 f%*('k33    h)1dEEd Ԋ%%&!_%%%%)$&#'!'&y' (''#&)t$%%$M'")#{'#('#(&%(#)'{)")##+&+  33  P0EddE-rOf&&")$$&&q#'#%_$)#"?$($#h"'"$5$$%%")#%i#'# $#%%#'#$$($% f/2>JVbnz! ! ! ! %#"&5467333654&#"3$#"&54632&54632##"&54632$#"&5463#"&54632#"&54632#"&5463#"&54632#"&54632$#"&5463$#"&54632 f')()k33    #dEEd%M&%&&%%%%($')($&'y'$('($'(t$%%$M'%'#{'$('%&&%($('{'$)#')'*  33  D*EddE*DAr#%$'%%%$$o%($%`#&##?#'#$f"(#%7%%$$")#%i$(# %%$$$($"$($% f.1=IUamy! ! ! ! #.5463&#"3265#"&54632#"&5463632#"&5#"&54632#"&5463#"&54632#"&54632#"&5463#"&54632&54632##"&54632 f')()k33     2()1fI֜&(&&)"(&($&%&&&&'#)%(#('3&&&&t)#(''#'&'#&'($()%%%%')'*  33  ,1NN1I`r&%&&3#(#&$(#$(%%&&$)"%}$'"$V&&&&#(#%}$($&\%)$&"($"v&&&& f.+7CO[gs! ! ! ! #"&54632&54632#632#"&5$#"&5463#"&54632#"&54632#"&5463#"&54632$#"&5463$#"&54632#.5463232654&#632#"&5 f')()k3/   G%%%%'")&'$'')$('(#)%t&&&&K)%('|(#((9'#&({($'&P/*)1dE,u$$&$@&&&&*('*  3/%%%%p#'"$#'%$?$("$g#)"%5%%%%#("%h$)"#?%'"$"'#$3PN1Gb P%'%%;&&%% f/+7CO[gs! ! ! ! #"&54632&54632#632#"&5$#"&5463#"&54632#"&54632#"&5463#"&54632$#"&5463$#"&54632!!#.5463232654&#632#"&5 f)(()k3/  G%%%%'#'('%'%($('(#''t%%$%M'#&'})#('9'$''{'"&'iU-(1dE1N%&&%@%%%%')()  3/%%%%p#)%$$'#$@$&!%h$(#&5%$&%%("$f#("%@$'%$#($&-O0Gb19%&%%;&&&& f.+7CO[gs! ! ! ! #"&54632&54632#632#"&5$#"&5463#"&54632#"&54632#"&5463#"&54632$#"&5463$#"&54632%#.54632.#"3265632#"&5 f*)()j/3  H%&&%(#(%(#()'$(')!''s$'&&L'#''}'$('8(#)&|(#(&|rO(1dEEej&'%%&&&&)()*3/  &&%%p")$$$(#"@$'$$f")#%6%$%%#)#$g$'$&@#'#'$)"#։O1EddE%$$$z%$&% f/+7CO[gs! ! ! ! #"&54632&54632##"&54632$#"&5463#"&54632#"&54632#"&5463#"&54632$#"&5463$#"&54632'#.54632&32654&#"632#"&5 f)()*k3.  H%%%%'#($*"&'w(#'&)"''t$'&&L($'%})!('8)#((|(#'%c֊(2eEEd%%%'%%%%')()//&&%%p")%&_#(%&A#(#%g#($&5%$%%#($%f"(#%A#($$$)#%VPO1EddE-+&&$"z&&&& f/+7CO[gs! ! ! ! #"&54632&54632##"&5463#"&54632#"&54632#"&5463#"&54632$#"&5463$#"&54632###.54632&32654&#632#"&5#"&54632 f((()k2.  H%%%%&")(}'#'&)$(%t&&&&L(#('|'#'(9(%&)})"&(}%$eEEd&%%%@%%%%0($'')(() 13  %%%%q#(###)#%g#'#$5%%%%$'#&g#'#$@$'%"#($#E6@D*EddE?$%%&;&&&&#(%& f/+7CO[gs! ! ! ! #"&54632&54632##"&54632$#"&5463#"&54632#"&54632#"&5463#"&54632$#"&5463$#"&54632#'.54632&32654&#632#"&5 f)((*k3.  H%%%%'#($*"&'w("(%)"''t&&&&L($'%})!''9(#((}(#'%}2' cGGb%%%%A%%%%')')//&&%%p")%&_#(%&A#)"&g#($&5&&%%#($%f"(#%A$($$$)#%{N cPr,EddEA&%%&=%$&% f.+7CO[gs! ! ! ! #"&54632&54632##"&54632&54632##"&54632#"&54632#"&5463#"&54632$#"&5463$#"&54632#'"''%'4632&32654&#632#"&5 f((()k3/  H%%%%'")$($'%G'"(()$(%t&&&&L(#('|'#((8)$&'}("&(}2'PseEEd&%%"@%%%%)(()/3  %%%%q")#&_#($%@#&"$#'#%5%%%%$'#&g#'$$?#'%!#($$N֊EddE?%%%);&&&& f/+7CO[gs! ! ! ! #"&54632&54632##"&54632&54632##"&54632#"&54632#"&5463#"&54632$#"&5463$#"&54632#&'!5!>32.#"3265632#"&5 f)((*k3.  H%%%%'")$*"&'H(#($)"''t&&&&L($'%})!''9(#((}(#&(}2',UN1Edj%&%%%%%%')')//&&%%p")#&_#(%&?"(#%#($&5&&%%#($%f"(#%A$($$$)#$O/(2dE%%&%z%$&% f.+7CO[gs! ! ! ! #"&54632&54632#&54632##"&54632#"&54632#"&5463#"&54632$#"&5463$#"&54632#.575%7>32&32654&##"&54632$632#"&5 f)(()k2.  H%%%%'")$K'"(')"(%t&&&&L(#''|'#((8)%&'}(#'(}2((2Or-Ed%%%!($(%%%%%)(() 13  %%%%q")#&<#&$&#(#%5%%%%$'#&i%'$$>#(%!#($$NN1Ջ dE>$% '#(##&&&& f/+7CO[gs! ! ! ! #"&54632&54632##"&5463#"&54632#"&54632#"&5463#"&54632$#"&5463$#"&54632#.546777232654&#"#"&54632$632#"&5 f)((*k3. H%%%%'")$|'"(%)"'%t&&&&K)$'%}(!''9(#((}($'(}2((2 ՊEd%&%&/)#'(%%%%)(')/1 &&%%p")#&%("&g#(#%5&&%%#($%h$(#&@$($$$)$$OO1,rPdE&&%%#(%"%%%% f.+7CO[gs! ! ! ! #"&54632&54632##"&5463#"&54632#"&54632#"&5463#"&54632$#"&5463$#"&54632#.5467332654&##"&54632$632#"&5 f')()k3/  H%%%%&")${($'$)"(%t&&&&L(#''|'#(&8)%&'}(#'(#)12((21)i&%%%($(%%%%%)('*/3  %%%%q")#&$(#$h#(#%5%%%%$'#&i%'##>#(%!#($$DP10NN00Q$%%&#(##&&%%n 2^$#"&#"#"&#"#"&#"#"&546>32326323263232654&/.#"#"&#"#"&#"3263232632 c54&+"32732'&/234&5#HY[&*<;)(YZ%.U&9+:<1 ' <8$$9O;+RQBO&- U%>q Ra587)C:!)693c)4N|I.5.  w25+@ v "1r;?> s  D8%2!.546?654&/.5467/.'".5.5754&54654/.54654&547.=467.54>7>32767%&543>746327272632%2724&#"2+"#"5467"&542654>7./&/&#>;2326%7'&'>54.52;2$#"&54632 /  A -* &/6*DxQ  #!0?ED   / I8] F.  0,A3    5\()A51 /&5 **BaXT.r  G8" .  # < ]'  *"   ),HXBI.B     8#3~6. Gq " :a&i N5@ |@81 %oI &+B -*;2!   VL$ *+p!s$1H% 03"= ; 7"6F632#"&54>326?6#"&54654&/.54632+"&#"#"&54?654&#"#"&54>32326322>?>3232>54&546?>32#"&#"#"&546323>;#"&#"#"&#"#"#"&54654&=46?654&546?>54&5467>3232632?272#"/&546$#"&5>32>'(4"    B0 9( V7/N%  S< (S:E@' ;,&,# 79!IBO<#"#J"32O(* ! !j<%@' 6 "L.' 2#$?  !# :a:"X <    ! #+ #{F*  M   " 1 [) O5 +# O:l,-:!.  %5D  80%4! !,@6%#$  0   # #  +.6 "T,%#, &LA=d+'H " [/@) . !]/9< ' $,E:          4$2u    +x/ i }5%#"/&'"&/./.532 .'#"&/.54632&/.#"32$>7"#"#"/.546323267>5&+"&54>36#""&546;%#"&/.#"&546?>3232: )4]+i>S,$SM$N  MW$9%,(rv/H99=!#Q0  )|;4%Fk~}  /=u;*)RR)  g]}d'-\) B,&rc+NF>EZ <5. &0 >N;"u8~KD')=r4-K   k!S^   EkqfXteNb:xj~,"57oqȐD' ̋<) G3B  :Y\ J ;!VF4?o)W* A1V & #+7?GOWcj#"$.54> 763 '&/32654&#".'"&'#267>7&#"3265>5 Qc-EMUu{#"$.5! %/7"/32654&#"32>32*'"#267>732654/.#"32674632>7 cWܓN;4r&O:0*O#S3 kL:Z <)$< ,U(K^(V,.V&N*03R#  Z:9Z  B2&; 1;P%tryQ(ANI7݃ Y >3&  V3 +# t m&  32  5!{2?  K (08QW]s{$! $5! $.#"3265654#"3267&/7"&'&#"32746323265"'#677463232654&#"3>?>?654&#"3654&#"3 XXKK_)#%-q!=! "?C='J!H++uRFk H:8J  R@@RBQQB4 I98J vOSt "J',H?;< Y"m2 ";*]'{eEz-)ck:$;.+ Z80h,w6" 8_G ;; S  ;;Z_ /6f% M03_  :%6ok7) J 2>$! $5! &#"3265&#"#"&/&#"3265&#"3265 XX@@?()<;*)>X!rPS}Gcw<)(?>)*;ym6r3232654&#"&#"#"&#"32657'.#"32632326 XX@@.$1 [@@X@A7 ~J*3<EZL%H 7*,5 %ym6rf.2XU6fC;¹]9`  232326=4/.#"&#"#"&#"32657'.#"32?>32326&/&#"3265 XXAA-$1  I-0L5B6J+3<E ZM$C   *168( %& "yk8rn/3057gC;^;`   GR   ,0A?  I (C_$! $5! 474&#"#"&54&#"3267>54&#32654&/>7%>322654&/&#""3 ZZKK yUb2D!qU +&!(F "f +#!}xeEz@/Vaza92(2"Q % )@Xdp|! $5732$7>3232654&#"32&#"#".#"3265/.#"32>323265! $54$! $&#"3265#"&'>32yWWXLL B)*A vPVqM tQXw7Hcu  b>StE07K  @{ yОҝ҆)tKKu)6s@?s{lOBMM #$ \`2B4< B9v" 8`**:ba`O<<&'::'   ;1;U_ ! ,57.54632>32>54&5463267%3&#"32?>323265&'3265)'궨i? ,)ZՁZ%) 9o qyT` UEl  ZrKlghlX4*V,y )"=p(*01,!u5$( )Xn<  z,P 64C =m K #DP$! $5! $&#"#"&/&#"3265#>54&#"3?>3232654&$&#"3265 XXKKJ$oLW} vGZP!W%)2@ T>)*;;*)>{eEz7<3"rx - W"3GH22HF4 K *A\$! $5! 463232654/.#"32&#"#"&/.#"3265/.#"32>323265 XXKK K76L  a==a K"rMU}v a=?` E-6L  {eEz:9 77 5>2"rx 77 ,'9 7C\ ! $54?.5!2&'.#"#"&#"32>532654&#"&#"22654&/7>5g)V1 +$/ 5-;/X*_*S^u 50*/O4'1LD +Hr1 3)*EB.kk &L%pnhϒ/ .N/ ("/E =:S4)9U32#    J #/G$! $5! &#"#"&/&#"3265&#"3265&#"#".#"3265 XX@@ <$$8 kJHk?6(*L+!/ <$'; V7Kjym6r( ONuE;\QL)) -P 0FV! $54654&5!2&#"'654&#"22$5$>54&#"#474&#"&#"&#"3265gVVSdE&I`GSd:L%=X ! ,547.546326$! ?2&#"#"/"'"32>5475#'%326?>7326},/')71 2}N cwKT5"lŢ "Ȣ 9kŬlhglV;W  aO? 5pZtILWF J &AW$! $5! .#"37>;3265$.#"32?>;3265&#"#"&#"32>5 XXAA>f9d&XQ%a7CF16JbNf8b%V:#^7CH18Fh iv#DdF{}yk8r *7E21 ):D4^R= # ?\n a#9E! ,5.5! 32654&#"2654&#./"'"&#"3265"W)!L#22&-K.*1G lK* .I6)+D7)-Ag'gl#H%CKGuu:U9O6':R1*   +CM6.BO4 K (6$! $5! !2654&#!"2654&#!"32654&#!"3 WW@3y[o/ K ;T$! $5! $&#"32632326532654.#"32?>3$37>;32654.# ZZKKDX`&t&>)bH17GBdI~;:#^7fa%WZ&f:4H16HEizeEz_?M,!-):D5 7):F2 m _!0>J! $5&5! 32654&#&$#"265754&#"326$32654&#"#WX #I2o7)234T6is 5++B4*&=0'-J/*-Hc)FIDMEn4`D>+:HPAS"0"d/@I7.C79M6)8O4e "4Ib! $5.5!2 %267>54&#"#"&/&#"&#"32>323265&#"#".#"3265+VX[e 6*=[  4 (< bW Z>>e}b)&M(MYPNôS88  ! WO!H&;+!g $, .6B '3KV!"$.5!232>54&#32654&#"/.#"327%32657'326g^~',  '+ 1881(,L1'2Gd IV ?L76HK.=cxu$zoى/ -. S:Q6)9T2 A8?J 5OF =*I^! $54654.54$!2>54&#"3654&#"#"&#"32632326323&#"#".#"32655WX*4dD>TK9MV#]!,*8M;T$F#-Y.Y.X= ?)c-:KP4g6 D1A6 D&Q%0"1U K CP$! $5! 654&#"3&#32654.54632654&546323265%54&#"326 XWDLJ0*-H3&s - & 3D  8(+C6+(@yj<O7)32654&#"#".#"&#"3265>74.#"32?>7&54654&/&#"3263232>5 s &X0 g+(-V ~Q^baQFd [=DjyL/+1P.*/ "!.#$5 +g*8"h 0Y     & U_d5ʒ .J3p!Pbw,jgVngC  EKeF@AS;'6Q7*~ 7 !  ,     $ A) 1dz!"$.5!2?>3232654&#"3&#"&#"32654&5463232654&5463232654&#"326323267g^};+',s  %%/ YI"?  ! 1'60' P  9   jkM*` :58L.>cwv~nzoى/  0F.m 1&  &M !Z  ( &Up( L1 K 2f$! $5! &#"3265'3265654&#"#".#"&#32654&546;22654/.546323265$6?654&#"#"&5&#"3&#"3265 XXKKC58YF4:U%P84S +.$7j4+   % Q     F 8)3=  _8eBH_dBDd{eEzFU81FT:426 /#1 & $  * 5    J" 1:$;^cAF`aE K 8D$! $5! 654&#"32654.#"32?6732>7&#"3265 XWCC;:,*<=) Li *(Q SMNT O(+|<++:;**=yj;sH11JI22G   \^IJ11HG2 <Hc! $54?.5!2&#"#"&5&#"32>27>532654&#"&#"22654&/>5gVV1 +%. 9E.&?Z<1!KU KgA% 3'/N2'1MD! l+ 3)5WB- &L%pnkь0 A   vB7L+WM=D;S6*8T46%   7[t! $54?.5!2332654./&#".#"654&+#"$/&#"3267232632654&#"32654&/67gZV1 +%.L p5 4$8f +m6 *$Ee=.Mp ")! , f :*'7'B- &L%pnkь0i" m' $ I  @!  zE3H!J/)6'  }(CR! $5.5! 32654&'#.#"32?>32326575'.'326 ZY#I3<),F &X0 dz8C  (JE|-8I#<)*?&!)#G%DMDk5R7HO6,RH%-_  %A:.R /=)2HB );Mht!"$.5!232654>54&#"&32654&#"32654'#"'&$#"32654'46323265.'326gZ};+!"z   <  <,1JD0 _zI[ &-Rr y6J -;,1KM.>cwv~nycn4*Z )1  H<2 1L c5FV:.! !9?' j=`8 F.3HV J 5?$! $5! 67%3654&#"326?>32327&'3265 XX@@ɖ zt2^WQ |ODk  ]sym6rsp<w !v"B  .4e ;q{p p".:DM# $'.54?6$!2$&#"3265$&#"326532654&'!3267&#".#".#"326=2632#532654&54>5 >[T,I#|Hboɩ{ATZ?'yPUryOPxsTN{sUPxF LcgL  54zC[" 9 (!xgw #'+ŌU;YTz~"[(NhmRT~QqvPTquRNvpTPwvQ2Sg%)fU0R-%^ +Z,#1V//, 8E +.,Y, !2F_m! $54654.54,37654&#"#".#"326&#"32>32326554&#"#".#"32>&#"3265!WX*9j !;' 5 N0=\dY&i323265>3232654&#"'""3%>54&#""3263232654& HWL[ewhU6TS&  :42  ,PHHMF  >?: H!: Hyy<Z P"Pka? _(   W'& t n'HVs# $/&54>$32&&'>?.#"3273265'.'3265'.#"32?>323265>54&'3&'>54&#".'3273265 6R_,IUx1Nd%RRj` ]N3&2-59L7a7Mr  mQ5/3Po*T! B-,B# 5V_ kDIq  ZB !T*B, sL8_6M ?6/0rM65/6Mo(`=YS3yIbvjtD/BTYt[oeu];XCm78KV0AnM.7KqpK 6H,@]ZC 045  '' ]@,H6 CZ:-On@1VK.1|DX1Mn"mO R&:M_! $5.5! &#"32>5654&#"#"'"'"3&#"37>32326574./4&#"326+a`,J4M("#$( '*W/*)Q4wP: #z7#B%O?D`a(=/*3pG5M2&BLH* !S-! 9a6Au1* C4c6 #2HYo!"$.5!23265.'32>54&#&326754&/&#"32654&'#*#"32?6323265gZ}', !,=+/K6F  $,28,   ;+0L B. 0ԷomS;M0wQOnK.>cwv#{oى/lI-4FW</ /+ V4   7  j '2GU;(3_R@X:}nao }'<MXdp! ,5.5! 32>54&+&32654&/&#"32654'#*'>54&#".'326654&#"3"W'%J2 '- 18)   <+1KB.  Yߥ6J ,:-0K-8d8/j'kl#H%JWIu<  (1 V4  &2  FV<,"#.٭m_9 I-3FT4C.YM2Hq cAWeq}! $5.5!23265326532653265$&#"3263232652654.&#"3265$32654&#""_] KIQ + + + EK3ꗎSS->89 K_&,,L3-5),C7),A2'-I.)/If&#F%BKH       c  v,  fj5ϸrGY xU?0O-s9,,3@AL8-BM85:M6'5&#"#"&#"3263232653WY*5UY/!-+/Z)IO hGbLB,~).PP)2R:3wBjbN > )c-;JOW !.+'Q3i6hd5?1AN!Ik? &6Rj! $54?.5!2654&#"37>7.#"326326?>54&#""#".#">54&#"#".#"3267gZT#0snZo+BNNjqK0O gN<  %,Ag %*<eX:B. &L%hΓ/SRoIh/#,nKG_,0X  0<-=o  S 'De$ ! $5! $#"3 $5&#"32657>3232654./&#"%2654&+>54&+;2?>32 &\~G'-C5),:2 *Z&&0 1U!]W]Q 2$AAJES%&m]c ]Z09VYXP*@fq %K !)G$ p  ?{2:AIQgp# $&54! %?>732654&#"#"/%'"'"6?6?.'27.'&#"#"&#"3265.' ??m`ݨ 6G5Zgb "?1R"#*X^G&)V&R-V)&#R0/R$ " `jX= J2=]`Bhu MT9mJ =zI4~6.-qS ,1~4Lwa_ Lu2 5Ni|! $54?.5!2&#"#"&#"3263232656732654&+32654.$3232654.#".#"654&/&#"37>54&#";2>4&546=4&#"3267&/&#"3265gYV#0v81y:YQ@1Bv[h6cl-T"3#Y\ <NI#&:CC? +!u  J|%1d# !&-' $# &A/ &K&gΕ0hX8MJ|)sg # %;!<Zy # +)*M 3(2QC07  q4"<4(M" k+6C f&2$ ! ,5! 654&#"3&#"3265&#"3265 '*=@6#,H:%#O56MJ98LJ*#5@,'9khmedO1)5J3-4UV;7FE8G5'7K5- $0~ !"$.5!232654&#"$32654&#">54'.#"'.'"'&#"'&#"'&#"32?32?32?32?32?632#"&5467g%~',:".I3(,L4,/=6$,F!7 Yp  X  N  s  ZP  W o >  3 ' \  L.op=cxu"zoى/Z9K1(5M-#7N2'7I3E1# qAUfQK 9 -K Pe U@N "%!   - ~!-<N! $5.5! &#"3265&'"326565.'3267$32654'#"&'"XW#I3O9>}oOAD7d25&-e3?$26*%A5..J/(f(#F&DMEk5z_Iqp_ L3EA. 9! L-/@3*DS9$ "  \ :Siw./! >54&#"#"핾.#".'54654&54632%.54>32$32>54&#"2372732654'>54&#".#"$32654'3263>54&#"'.#"o}0"I=qHaJ7a%:ё 0S^:N_?L$$>n1^219G757474&#"#"&3&#"326&#"32652``*QB16VD28Q  1,6 S79Q ;    ; <(B 1%*0  H*7^=aCF`eAAc$ >(c,6M:FS;1HSP 1 76      ! $ "9ac@D_aB )1.Fb! $54654.54,3&#"#".#"3265.#"332>5654&#"#"&/&#"3267.#"32654&54?>5#"/.546?654&54632#"./.546?654.54632 WW*6 h?&!2 M0Pl5QP_[m  bjg ^ = IO9:+ T#!&w*d#4{4 n% ;&M*m P:#!QK)c-8S>MC." %YaX<  6QF.B  .%  %6# b&(31 " && 7@ *( =(O+!A/ 9@"C<8. 6c## $54?.5!2&#"#".#"3265.#"32>732654.'3232654&$#g V- ,$/}h8'32`8"Q$8q^>h? Uby Yvt&^ B.{. &L%qrhϒ/q$5T*b0O):bg2T:K +7 F3 F10 L'$ ! ,5! &#"3265$&#"3265 )'LC;+*<<*+;<**=<+*! $54?.57!2676$7U6}\,4N 6.'.( HR")9*-I2Iy 8*-I;)  % S4n $ 2)gYV98>!BQ0^ 2h! 6Z<\) I3DA.M7.54632>327>32732.'267;32>3232654&#"%32?>32326=4'4.#"675"#"'#"&'5.'>755"'"$&#">5 y w ~^ F<8C~ w =1 SNU IQ0`21a19tNLS 1> #K'&J%8&'I%n N8$> }BJi2  9$8N  2654&#"%&'>7'"'367463232654'4.#"3%32654'".#"32>327>75+"'5"#"&'5.#"%54&#"> y| R LLEc i#@ QPWBN`bab9^RNS ?# <4*3: *4C &w!&K$$J'#$G27O  @g?6\ V   \9Ig5O9%<'=1 M( I :"8 1<,><  !<0pb7`PZCqb8bm4a W,DWC,T,EG  M s/6  Y4+ ".?MC8 !  !m 1 l#'#"/ #"&/&$'""&546?.'"&546?4'547'.546;>7.54632632>327324754&#"+"'"&#"#".#"326&#"3265654&#"3 y l qCGC7<~ x <- TNR\9abab"ANR -< 7 Q  -U* P78NO77P)QQ78NO7:# %O *̇)'7  OH7`oC.َc6FP+  2 ( pjYZ>@YXAXA@XZ>@Y Aj#'#"/#"$'""&546?.'"&546?./.546;467&54632>3276$32732474&#"474&#"7>7!>54&#".#"74&#"#".#"#".#"3267326 y  |6;}   Fi?>Ll;FW^\Vi~R;@M@M5-E I66L[8/#oeE}J76K D,7L> J:,A&F3>N&l;UT=`"1= FB93 2SNXoZN^>"*N]aktKN/L4L7+ 8MO;E8/+IV";Q:PN9 +9N3A 4,"%:T >##h `#'#"/! $'""&546?.'"&546?./.546;46732>32>3273254.5.#"#".#"32673267&'3265%326 y w3<  uWO^Bz)Q**U*sD^NO`YD M>J) #jM^Gq Y8Kk4mK1R$3; @4 ,56{jh|Yl{-&P"/#&=-<'"(-8eGZ Hd- l#'#"/#"&/&$'""&546?.5"&546?>7'.546;67.546326327>327327474&#"2654.54632654&54632226654&#"#"&5.#"3$&#"#".#"3265 yf ]4:?.'"#"&546?./.546;467327632632732.#"32>323265&'3265%326 y U2~  uUNgM7=F"$#J%bP`MN7cEEVGy; Y8Kk4lL1R "39 @l;4 ,66zj7Y`Qmy-!6%K36!!(.8fG[Gf- @i~#"/#/! $'"&546?.'#"&546?./.546;467&54632>3276$32732.#"3266?654&#"#"&5.#"3$&#""#"&/&#"3265 y  v12w   Fi?>>D:W^[UksR<>O>Q   4)'GW  F-LT AmK3&  )W  \5 (> H&  n#'#"/#"&/&$'#"&546?.'"&546?./.546;467&54632>3276$32732&#"#"&#"326;232>5654&#"#".5.#"3267$&#"#"&3.#"32>5 y N:KT_jf^DN==Q5U?C9&s+IX[FSo7"P!!f<  B/9L#?mH+P!L;(5  E&Eu<1!527 =`  b8 143=}>7fZM__3"#! 1cbiw;x</Wa*Z:=KIJ2 ,3= iA E9EleH mw!"$&$.5463232654/#"&##"&'>$54&#".$#"#"'"#"&'3267# $54>>76332654/3263232654&#"3267.'>32ғ)z5/&I_v|T9 0xF@gNMaX[LO p>Ew0) 9T|w2W:HM{v`wdh=X`.7`+1f]Z=hR0}M%&/tۙSQ8s8Ԗ@ FLuXY?@ '* D|\8LRn|N6]@ *' @? 9h3H@m w!)KtJ :1. GI IuL(]+\c BV b_{! $4>?6?>3232632 32?! >754$&54632254&54632&#"#"&/&#"23265&#"3265$&#"3265 ?Tfx}/!,%R.)U S8Mavc1*fn_aM7R U(.U%+""Qo R7Gm &em7$%55%%65$%55%$5  UxiM4-&, $*fX_s8,4 6?"-<~OUi(' ,&-40Gb #,  /Hq!/AB,-?>.-AB,-?>.P Wd%"#"&#&,/&4'4&#"#"&$.'&546?>32#'.546$654&#" 32654.#"3263232654&+>54&#"654&/"'#"#"32632375D #678?K Ce"1^H+l,+"<6![ީ+*#*/S  :1.= CAQA BC  +"19(5 :.4BVVqnW.M_: #1x()z:R~k[b% 8a%^I.W%6-%#mB\2$*VSF1  ,  ]\     -b$#"&'#"&'#"&54>32326323267326732654.$&546323254&/&54632&546;6!232'&'54&'./.#"#"&#"467#"&54632#"&'>7 -fNVVTUU^sV;N#KG5IRd~q5">itYWE3D $80#A2[%&-NgV @k* Uh!40<*0 35#B=22@11:Ag 14"*',04#"4I h**+)}p|Ovv  &ZNRc-V30q}r8 ;a1iKQW&  cM:9,`35?C.4`y$|x^7%3:  1[2#4&ZZ_.-% 93&/4-3\U?!$  " R$#"&'#"&'#"&54>7.54632326&'>54&54?6?>54'6$3232654&/.54654&/&54632&,54&/.=4654&#"#"&#"3#"&5463$#"&54632#"&54632632#"&5 RhSniY[]vRi`Tu5- +)\7*, UPTZ  * )  >6$ ) 46i O+  li1192EMB! $(+&+14"03##32$$2J2##32$$1>!*&%",a8./1sapC&O&S ?$/,+:49D6 +& '-  8 %.6F: "#*#rB#&,01"["C" b]? <~$$$-v#KZZ0nA#s,Be&}b Y2*25.6X;;-+==+,<;-+=>*#  T|#"&#'.'654&/.54654.#"#"&#".'"#"/.54632363 2632&54>?>3232?>32##"&/.'>54&'>32632#"&5$632#"&54654&'3267.54673$632#"&5#"&'>>b .!$, GHE2123DGJ  ;(#0NRfTCi i?JpḫI'(wD(N +IQw@.*xY-'/gA>GN6kA9AZK"H2$$11$#3K2$$11$#3Q40'.(24+&|!*'*.L,L#%U*)L $Ml-0W''.7##3*r"Ds*ZZ(qF$s*2,#9/(Y1u\^{"mjUFUmm]34i "  _F__ 8mc B)FUB:?+8vAVt zu=>*+<;,+=>*+<;,| 2;<"C"DD"D#<;7 K3q%  4gH^jv$#"$. '&5454&546323263232>7>32&#"#"&/.#"326532654&#"&#"3265\CGAS&3}]}C(.)#!  +k(!O61$ ?@uf/!*E*%+E,$+D+&+Cu{(#y}R)HRQ;&Zk11,,)*q2*l-1[7632326=4./&/.5463232654&54632>3232654/.#"326&#"#"&/.#"326576='.#"326?>32327  8dlja43{FC+ dk~bwj >7&(.*BK- ) G,(A7  ;0++HH*+0;tgK7,I   *.  abRnsTVvp0/6l7f=.i)1^SzP'(@1~b %@`zG!'?Ӄ%"1)l*7l҈8p6-)W"  *G  6    6(]\  6+   ! en s,>P$! $5467>32654&#"#"&#"3&#"326323265&#"#"&#"3265 G GY,mLwժ]PT[ -1= i5#V\|e=Bo B-)> Z;5iWd =+5BnƑao0 /8/%! %  /$/8en s(Zj$! $54>>7632&'"&'3265&/.546?654/.546?654&#"3265&'#'3265 H HOu~u`wӓ-nK#B/.F ; "%kB#K E.0BXb!v!uǛON! >&9RP;_   7  !6 > !;PR9G| s{7!2#".54654&'54'>3232654&#"!"././.#".#"#'".#"32>?>32# $4>%2#"3263>3232654&/&+"37>32232654&+6?>54&#"#ÀF.^o ! )٠ NWc-  :&66&@  .cVr4  $ ! pokV7RI=5RH /1>GU9'2  K <mإhg>e>m: ? ;(!7gTOs*5H47 &&3 #7H 84F6*O  $-Bk9 12DE8h;e?"d # m    ma *[#"&/.'>7./.#".'>327>?#>32#"&'#"&/./&546?>#.5467.547'./.54632>32#".5467&#"3265&#"3265&#"3265H.>#3{IY$׸ 1$")e!3  8W ?& "()   )#?!Q4' A$hh71uO(l ,  0@ (^a/>%y(3q|8##66#&56$#67#&36#"73&'2M.K(d.",1()1k "Ow69"  (^~14 U)8 T &(*J(5 +> }A'NL:6e/) 2.?-U 0 zj44%$65%d87"%65&56&$35$ Sbi#"&'76732#!"&54632;7#".546?6$!3535,54$! 3%&+>322654&#"3#!! \-N(;)qHAc8!&X3#"4p::d4YC * iB\?D@?snj+1&  3!4j1bW55jG^:)?ET36SS62TEaP,. 6D]z/2,P.vT+5 P [ko{!#.#"3>323##"&'##"&'##"&'#!533>54&'3!76;>54&'3546323546323;2654&+"!5632#"&5#"&546;.#"326732+32654&#"!7!!!.#"#3>3267#>j]% \k%TV%9%TU%<rJJrK60@>2Y@8>0) #*@0gD-.D:D-2?..O//OO//O/s`T6KjjKEi|iEKiiK6Tt9gS$^ll  QlY#JXcj]MfiLZZLLZ[KG_^Hp#y'4{k31f#x(77(x&79$Bʼnċ;-7kJKj`G^kJJk72K[la jbQB$WT5/?O_kw+474&#"!4&#"#"&5463!24&+";265%4&+";265%4&+";265%4&+";265#"&54632#"&54632_ccbzЧ\QeDDdbFFc/dDEcaGFb! \ddf7tijs<dcFDcdCFceDBecD ->Uiu2#"$&'7>3254&#"#"'"&/.#"32>,7# $'34&/.#"3?>5&#"3265$&#"32654&/"&#"32637>574&/"32?>574&/"37>574&#'"3726548[HL  R@]vd:# $=c/-$ERTh}jLcS)WcKAMryH7h" ""B"0N#/Q!!7#6^   8 $=&,>)D7;wE\[輾UIx>2:$ JG^@,bn,QE( wz6 +"%- 2!T'U, S))N'-G.&  &fhO  M >  <  $ #;GU`lw !".54>7>;6327 #"&/.546732$32654&#"632>54&#3254&#&#"3265654#"354&#"354&#"3254&#"3254&#" 1sz]gFŒD!$3~~vhjO!C,:NǏtvtp8HHOá%)&10"#12#"/ = $z X  \  "D>anp|(|eT bv`oY^>'ibd$ - e(DR njun;@ 1+  RK}+/RTYcD0.$$.1!$(!&P779:=A, 0+.08!# &#" 2+7G2#"&=!#"&=.5463&#"3265$&#"32654&#!"3!265ε- -- ,ΐ>L35JJ53LK35JJ54JpLMppM\Moΐ< -- -- džĐIJ54KJ55JJ54KK4LpoMMppM_'/?KW#"$54$324&#!"326=!326=>52#!"&=463#"&54632#"&54632HFXac}WW~4KK46II6/3$#35!$33$"42$$3FG7cas]fddf],K66KL55L53#$33$!53#$33$ Ueu+#"&'##"&'!#"&'##"&'#"&=467'.5467>3!7'#5463!2#!2%4&+";2654&+";2652654'.+"34&+"3!265 :>&&?2?%&?z>&&>2?%&?":a^!^!~Y^"##""##"E =&##w"&< F" &j ######## i$ ^X!!X~Y^  !! !!8Y03!}!!30!6a/;G\2#"&=!#"&=.54633!26=4&#!"&#"3265$&#"3265!46;.54632Tme""+"!fm{P8j9PP99O6&&55&&65'&43''5C0"O2!ϝm#d q!!oo!!q dmR7QP87QQ7P76&$67#'56&$65%?"0 &#/ + % AEQ]m2#"&=!#"&=.546;#"&54?>3!2#"&'4&')!&#"3265$&#"32654&#!"3!265ʯ+,++ʌ&.!{VT|!-'>MI24HK10KH45GI31KmKLmmLILlʌS++++Ã3$ ,OO, %4 #HH45GG54HK13IG5KmlLKLmmL: 8?O_o+#"&'##"&'!#"&'##"&'#"&5463!7'#5463!2#!24&+";2654&+";2654&+";2654&+";265 6B-U89UU89U:U9:UU9:U-D[ _!}X?Z4-B=NP;>MP;;PR9;PP;A.[X!!X~YZ5lllr'7I\ht#"&'#"&'!#"&'.5463!23!2654&#!"%4&+"32?>5732?>=4&+"&#"3265654&#"3+#3/. Kw5>;4?Z?46?Qinn]r4%%44%%44l.l 1  1 :**:9++99;)*::*F F# ok-63MehSRSRYYWb|nnL#66#&33&(3&p < 9@#"d::*);;)d;));:**:*8<HT+#"&=!#"&=#"&5747>$32%"3!2654&#!!&#"3265$&#"3265 [6('78&'7[ '"+ϲ#)%%$$<U?+,>>,+?>+,>>,+>8!(78'(78'!8!DR>1ZFh%$$%}^?@**@?+*@@**@@*W 1AQaq}+.#"!.#"#"&5463!546;6322!24&+";2654&+";2654&+";2654&+";265&54632# &54632#\ Z[ K Z[ R    i^ihMLijKEkjLLijKVyyVVyyV rlr .  rks<1kJIlmHIljKJkmHIla,3>EI2!546;5#"&546;5.5463232+!.#"654&'!3267!!1!- . 㞞㸍'NT  "&GK' - /3׋㞍1BJQV&&  &&N?>$32%4654.#"3!265&#"3273265.#"3"32?27265kjLLijKjjKKjkJ6hbccc3G/83^llTDjL34~>w, Ub r +I&(C?^'- d< jKJkmHIljKJkjKKjIJ~bbabF4!'<,/$3T'1O7J-?Z!c^?}%) 4*,DYeq+4&#"!4&#"#"&546?>?6?>;2632'2654.#"3263"&=46346322##"&54632#"&54632754&#";265%4&+54&+"#";;26=3265"&546?632#!"&=746;2 4]^^^+1I/+ /:? a> > a > >  %  @```^I4!#*M\crݕ%,DH8"#"F jgel F+ddHHeeHHddHHefGn_6  q = = b = =  e   e   I8GSdp|+4&#"!4&#"#"&5>;&=46346322!2!!!2654&##"&5463%4&+";265#"&54632#"&5463226=4&+"3"&54?632#!"57>32%'%7'777'%7777'777 I !l`_`_Y5< V2bIGGJ !Cת&"KwvNooNOppOG %( eHHddHGfeHGffGGf*  : LMLL֫LLMMMB ]_\_7[>K G hkji G !c+(YEw6a'bwuaqNMqqMOpm  efGEfeFHegFDgeF3  U pp U  hRMRR]RMRMQԞM]MQSGLQ P1(>M]r~$+4&#"!4&#".546?>32'./.#"$#!"&=4632#!"&54>3'"&=46346322##"&54632#"&54632"&574632!.54?272# Pm_a:`_<9|(w>?Bc`=f}ͶY~lZp2X|G !%t*=/DL*}@ JEHJ mgFGegEGfkdGFgfGFeY     ֣^^``cceĎ(M4e%WaYH(/yS. 'FiU+3H#$4!0@!.$9A H hihi H cdGIdhEGdcHFggF5 g    g:(\ht!4632"&=74632%.54?632#+#"&=!#"&=#"&5467>;5463!232654&#"3 654&#"3!.'.#!"%"&547>3!2#IGGJ     9M>,FB,-BB,-BN,?,,><.3<>,+?>,4,Am99m>/;&';iihC  g && g PZ9*?.AB-.AB->+]8Zv=U""T>?*,?@+*??*+@@+*?%++o &e  L5DRby+4&#"!4&#".54>7>746;546;23226=4&#"3375'#33?/#3?3373/75'#/#3?37'#372654&#"3##"&54632#"&54632 Lm`_<`_:?@`Ɣ  L  xcV),HpED+J-K2 C 2BB7'$7@@:# 8W00%"C/<*'eHHeeHHeeHGeeGHeH^_^^XYYRdZ  D_u(‘W%2!K7$$""^a64a^33#N!4%9eeHHeeHHefGGfeH  8D]ps+#"&=!#"&=#"&5467>;'4'5463!232%;2=4+"3?325'75'#/#"'";?3;25'4##7';;2=32=4+"&#"3265%2654'.#!"3&#"32656G!G@..@@./@N!G7m S0!a!0S |r! !i&!$ }L@+)@?*+@A>(K(>%@+*@@*+@ F,!.AA..AB-!],F -@!! @-ed1225ecAQQ=<-.<>,!!!=>+,>>,_ AX&5EQ]+4&#"!4&#""&54>?>3!24&#"3!2652654.#"3#"&54632#"&54632 Ak`_;_`LCu>#EЍ}\#+j/Er'`&"m8-;*eFHefGFeeHHddHGf]__]Vd1}E}7Dj}Bo0$K8$B$B+)%BfeHFeeFHefGEfeF F"2>JNZf!#.#"!.#"#5.=467546;!!2+"&5463#"&54632#"&54632!!&#"3265$&#"3265mmllzhTsf#65$l$56#;fhgffhffm?*,??,*?|>+,??,*?jgghiUE!Og54%$55$%4ӓfggfegg=?,,?>-+@?,,?>- \'8DP2#!4&#"!4&#"#"&5467%>3!54634&+";265#"&54632#"&54632 $!!݈_`?`_3A(; V23  &' eHHddHGffFHefGFf  __]_9BUf[?JJ !  efGEfeFHeeHFeeF & <F^v##.#".#"##3.#".#"!4&#"#"&5467%>3!5463"335#&'#"&54632>32# &'#"&54632>32#4&+";265&54632##3#3#3#3 <;b=,KJ,Oo{_<-JK,NofrQNo|0J5 7 P-SPB!@VW9;WW;9WU:;WW;]VV9;XW<;TS<;WW;s#$LWW;?'&5463263546;2#'!5!#.#">7'#"5432$&#"3265-zzzzF11FF11F{j}?n.iU<3>K6dB  5'$pk14]'>Xb;.F33fggfnyzz1FF10GG0Mz(#2QfQ%VA9ReB  I uiN02inN1.E77hghiH &6FVfmv+#!".#"&/&5467>3!24&#";265%4&+";265%4&+";265254/.#"3!532%!>3267!#!#!#!5!3!2>7! 28 /-_D3p\."=e?0 7 A56%!; '(, -- ,, ,, ,& 8!'> W^==0&7W V3k3 I"jQ^mj (# ' ,, ,, ,, ,, L  ('N -NA8 zx <LP\h!"!!"&5! #!'!2#"&=!#"&=.54634&#!"3!265!7!&#"3265$&#"3265ί[\VQW[ݟVOobHHbqN7<*++<<+*;53&/&/.5!5!46;2!4&+";265!;26=.+"%";2654&# 2,K6  U,%/R  6K,T  Q%!Fx" #>Yg@.F!)V W.>@,W Y*.@g %BuA:2 A  x!x FVbfv+!2#!"&/.547>3!#"&'!5!546;26=46;2;2!;265.+"32654&#"3#4&+";2654&+";2654&+";265!!1+H901BQ,I&n%'%'m&.(((([,c4xv8&1 2$$,&,A &&&&&& A*((((6 ""M"=cs2!>54.&54632>?>;2>7>32"#"'4632>3232?>32#"&#"#"&'>32.#"32654&#"$32654&#"$32654&#7{% 3+ .B  ".1^0 ; == qCC?K2* 8H_pB1ZU'zoP%Lt13?!2"#00#"20"#12""0\02""0/#~54.54632#"!2.#"#"&#"&54&'+ !"/"&/"'"&54?>32>7654#"#"/&#".546%>54&/.5463232>?>32#6?>32326322737#"j F0uw`w%; 2; 8 .^2=G36?$zj/94>G2   1:D5-X*'G"H)d_6g&? ( $)3$&Q0 .5r&/.} o E_'P|,&5463236$;2&$#"!#"&#&$'#""&546?6,32.'467>32632#.#"#"&'#"&'7326?>54&#"WRv^ }#84\H <])Z2' S+L4 Co=K.'%;,m78G1 ]F6G"11iT) &L'c -   *~)#667v&? E2#"+&0  ## #rU#  IU/-8,%!  %L  #  off5_lx#!+"&5.5467467546;23>323>32%3!2654&'#"&/#"&/#"&/.#"&';26567.'3 67.'3&'&'&'&'4'&'&'&%.'.546%.'.546'">324&#/S=]=SUb/*+3U;];UhBEn< gC;o59cU>[{:tNA9"ZR TRSP|"G1Y']FW>a5N]> ZNH6L]>8 & ! 'e@:745/5]8c;V FGam;UU;2_Cw0@\ ;VV;>,3+4,3', $:%gI15:=ipKy%o++ZzeMOkgKPjbP!%DS:Z0U;>]M@*E7V:>]  +'?9UY"(B* 43+>.9- =GXiv!2#!#".'&=.5475.54675.5467>32!2#4&#!!265.#"3274&'4.#"32'.'32674.#"326?./&'>;&'&/67'.'3%32654&#"#+##"&'&'!26=4&#F{ 7 =28%9 6!9U@K& )T;3:U<\A*)CA a}>*0>@+'D3&&tC)EigG)CC)EigG)C@A+,?=.=?@,+@54/.#"!!&54?632#"'.54?632#7>32#"&5"&547632p##j$$%  _     [ j W    ;  k ^$O""$Dg    E| Z   #    QO+#"/&#"#"&546327632 326?>32O%%&%rD.! .. !. ?Avs/b$!%75!--!!--!Y  1"}6!&#"3265!!}-77)'87((8#6w(79'&::&:>%! ! >54$# 32698Z =B=CXt98C=[tX ZuBnAQv#"&#" #"&546?654&/,546$3232654&546322#!"&=463+"#'"&574&546;26323263n=ox{ |Y`25<@8&*Y7BС2J4H$L, & =`9> 7    $ G@iVD\ -'$ L;*~h #1&  b;h\    . +gq! %654&'>54& 326$54$3232654&54632#"&#"3#"&54654&#!"&=463>54&546;263232632+"#"&#"#"&5'2+'9># +6 [g8A`oNYߎ8+8<%  7Hk1Qgp0UOYe4 *~bZDo C       l0n=/xhnB~;_> i}Yq' Q-[t6,RBDG< =0$Bx9  " x,ls#"&54654&#"#"&54654&#"#"&54>54&546?654&#"#"&5463232654.54632/77#"&''4'46732654&'#"&'3267C1):,  <)";3VQ  PW3;$';  ;H^J2&8y[.O;G:gXJS>bd?XR:Ecc>5b*yGHy+0kIIjT5".Q+5f < D Kj)%'VK9@.]-Nm>~bx+ 8#QBH=ST3 D@NKA 6V98 /LL/7!!)35) YJ :b! ! 654'.#">7326?6732654632'7654&#">54.5#"&54?654&#"#"&54>54&5467#"&5467/?'/?/7 E0FF0E`bV_ʀXT7U^J?0(L)Q3NV[4\[- ,U9t=5^Q  S[5=&'>'%>_(&><"HB>:!FBN:A4?4IF0EiOvwH'v>G>NtO c]3H./q T/ 3CvH)LK{.9:-2)LI)+-f@jS-<=b.[L)B 2 7F-o6D,@8 I;T';&4I#"&'.546732654&'67#"&'3267&#"&/.5463#"&#"#"&#"#".54>32326?>3232632#"#"&54654&#"#"&5463232654&5463232632&#"3265$9DC jj CJD'-oq% ,.NN.1xQPt sE54'654&'#"&'.#"#"&54654&#"#"&546;232654&5463232632#"&''&546732654&'64>32326?>3232632#"&#"#"&'3267#".5467#"./&5463&#"3265 E0FF0E03RJ6 Z(MTyMs"03_C>/05kOBm1= ES|?^5NVPMD 'b7#'#.'#"5432>?>32+"#"&'!.54>?>32+"'>32%#"&546?>7.#"32654&&#"#!32653>73 Lz(.0 "8  JW2\* S,v=)54&'&$#"6?632+"'>32'>54&#"'3''67''7!'!.5#"&5467"'"32654&'7>7>32+"#"'>7#"&547#'#"&546;7 E0FF0E#/ %)tdtB:D"^SDF -D' s+`5-(W#v#A -l W,LFQB,:飣} xw" . DJ8#7;(   *@P/l &*'!/E0FF0E GQ6~Et:<[?p2ۨ 2(5E|3;&^5x _#;6)g6`飄$[uvw$DO@  '$& #E*\26[{ ! 9+$#"&'#"2#"&+"&'467.54654&5467'>7>54&/#"#"&57.54632'"'"63232>7.'#"&54632#'"'>73>7'67>32%3$&#"#!3265#"&54632767267&'#"&5467&#"3265>7 9 'J (+0 "'*%2-/ 1|+0;ET ZB;7: #)$~?y}  G/ n?& G6_ w.i:v(6 Ɋ-Q$ ÄWk/ /cU >8$&ʊɥ ' #$  " 4#0JzD6])'00GTO&E: DI    [KkY&0wv3 ![9~& /*7JY_&  L1+'&`9T Ǎz2|' #Yץ+*!=bF* ǍǍ ?B W@#"##"/#%"/"&/.546?>7.#".5432'#"&'#"54632>?.'"#"&5'4632#"&'3>7'&54>32>32.#"#232632#!>32>54&#"37>54&'654&'#"&57&#"3763232674&#"#"/&'.'##"&5467""&54654&5467'6?>32326 > =#" PK>XJ 9N\$&P8" 1;=OQf0Lṙ o G/ WC6 c I8Pc7`r1n<B:   3ү euK* pG @?<\ONP 37.*"%  U 4@Dh  &;E ѓ {3-10X'B  (  >k2 ;@=&:,E nc,2 47~b @&*7L[]2 2N3kRqD[=  E j y~\L,{# ;.1.J!)z۷V'! -~% 6O"  5.9M G3'Q#* \y5N: 0 r }#"&/.#"#"&546?>54&546?>54&#"#"&54>54.54632.#"#".#"32654&#"3rIFO3cA2 U<$A~.   6;)FFZSD͕ "$# - SB%)M*Q*%$  x+ 2/,LIGȶo+JKǎ#E#  3 %C,D%)4/;50 (dN;$&&&&X\ 0?k! !326?32732654'>765%.#"'.#"654&'7>54&#".54632%7#"&5465'.#"#"&546>7&54>7#32654&#Z0E?4I+\0N>DnkT:Y!BEKvEM,˅G] \"$ KK8+~?%;r& *=B8(7 KFXMW9A4J>~J&&%%K0@@0Kv8*K,+35MU nEsYn#nw.07T'I   "F$؆N@6z_64:U>4&4 Z}dS##F w4!AIxr8&$C/Qq 0%%%%a,""&#"#"&'#".'#"'"#*'#"&546?.54?>7"&##".#";2#".#"#"&54>54&54654&#"#"&54>54.54632#"&#">32>7.'#"&#"#"&5432u  6".K:0A5#5'  N- JB*e  ^  /"2D ",13 W :!;{1& RG. 6vABDnR30_-/ 5"54&546?654&#"#"&54?654.54632654&#"3&#"#"&/&#"32656&#"3265~N:,H 5    3D;g]  [j;D5F   5 G-:NΘ-h;љ;h-+!!   *% O+*Q?! !qd;+.K&<  E&Q%?X$IVf6&2.TV!#4A?3#"UU.2&8b[{[%Q&E  <&K.*54&#"#"&546?>54.546?>54&#"#"&54>>54&'#"&54654&54632#"&'32654&#"654&#"3&#"#"&/&#"3265<(9{X 5$"+",77)HCV5*6  )""6 9(<,b#V)$3<:2%)V%Yw5+l    :#!>x7*.;9.74FV5**';O#J&P$C;54&546?654&#"#"&54>54.54632#".#"#"&54654&#"#"&54>54.546?>54&#"#"&54>>54/#"&546=4'4632#"&'>C0):,;&$92\N   N\19#&;   (;)0C(;/<;-!D1## -KB ++(02'/6-O 0A*-(?1 Wi-8B#"'#"&54>54&'#"&'#"&54654.5467.5467>5#".546323267.5467.54632323265'4632&'#"&'326532654&#32654&#"#"&#"32654&#6*498?PA K*Lk2R6BAo+R1lK)K @QF;749 kdQJ<@b57]S{p @~i4QU4!5bB:DW)*ˠn22&"44"X4#$33$#4A14= n73qW  )S,P&+e4Pc*>uK/H  G/Lt<, cP6k)(W-P  iG@IA0M8VgIC*6*gQ ;C /?FCX##%$R)*>-->=..==@++@=.##,) L?O2#!#"&'"&54654./.54632632?26;.'.54632463++c>= Q~.F00$>/+*+kc6< *+1& 2A1!*$ Zd8 2":2 ,'j<09D):8*n3*L HK632'.#"326?#"&5+"' +"&'&5'46;26;2>;22#!#"&'"&54654./.54632632?26;./&54632463MrlB;87FG6C5Jkqu\ BC]r s,>T >*t++b=X"<>(!C;#`?7j|)>> Q<+00@4G/G,+E ]GG\V@ [n* (*+je6=*+1& 3?2(5?^ 3 :2 *ŒBl409?5{lV*  >Uk#"$54632#"&54654&/.#">54$'>32%>?2"#"&5$?632"#"&5>32#"&5632 #"&5&#"3265$654&#"3&#"3265&#"3265&654&#"3&#"3265&#"3265zǶ8 n3$,)H#43<6.#_*aĩG?)0,p$  * 5l :&M@ Z/0 T/./0 Q/////.k/.oPṠ"x"B I8  <`_  )q/$qR HGP4}U6e~gt" 7676Z7!37575676751 8U32#"&/#"/.'#"&5463267'. '&5467.54632;>3272.#"#'#"'##"&'"&#"332$6>5632#"&54654&5$632#"&54654&5$632#"&54654&5"3267 8Z "*3D0>&d[32nBPC/D'"#(0&C4/ , WbJco)I5'dqq.l7;u)ebcZ%G6`QO7|y:s %B<28LA 9_.5AO2" 8^a%R( 9_` %S$ 9__!%tC>-(EfGM+#*(5\A >g5)-(;H.  3BK'Q=;9 .:ED;LD (>y.4C:E?0Ő i&4{:ED'/}AZ c.27C;.1{B_ j%3|:DA+0}C+2[B Ah32#"&'#"'#.'#"&5463267.5463232$32;2632.#"#'#"$#"#"&#"332$6>5#"&546?>54&546?>3 #"&546?>54&546?>3 #"&546?>54&546?>3 BU6r5-H4Glcpj HVH5H+&1 n9V@ll3b5/9jNHKz8lnbP$;Hi.6f0B5QB%g- 5k6EJ^,f$!  A@ s 32>324'5'4'&54>?>54&/&/.5467&57>32#75465#le|W9.78Ha " 5 &+ Va  ES+Z&#L?B&(\0kU&&.+%le"k~~ 8#  "  TytVCH?H\ Tl={$ (*I,-\0!{&aYt)W1,V,  D9x3;$_7eP*7- $  ‹NכZ   A![*T)TQ?4U*Y,2uVYCF&(v$K3Ai @`#"&5463232>54.5"&54654&546324.#>7#".54?>5323327#".54?654/4&'##"&'7662#"$&5<7.543238\ZOVL19ʠKpA>HFZq$4:,d}2 b3Q&kuqi .FE<;fa5R#*$  qEE^v{rxU]Sp!> % IvJ" (BeZZNUhO$'fl;,[*SGS.O: ,K) )  ! wmɣ.::?3 6Z=s<*-  v32#"&'$32654&#"2#!"&54634&#!"3!2653!35463!2#346;#"&52+MM43443RggR+++*^SxwTUwxTJ44KJ5]4JfAg&r&W;11=UV<V<;W}\ ';G #"$#"#"&'4'>3232>32 #"&#"6$3232$#"$5463  Zņ-.@C혇g~/ )9 xge}kULw<ӥ  =,zl:, %YrY:s~ -#vh,䰉繏\ (@Wev@i%Q{,\ #"$#"#"&'4'>3232>32'#"&/&#"6$3232$6$3232$7'!"&/&#"#"&'3 $7!"&'3232$7'32$7'#"%!"&'3 $732?6;25'5'&54?4##"/""%654+"/&#"32?63232='4'47332?637254/&=754+""/#'"732?6;25'5'&54?4##"/""34#"3?6;32=/4?474#"'"&/&#"#"32?27232='4'46?254#'&#""32?27332='4'4?254#"'32?633254/"54?474#"&/&#""'&=754+#"/#"332?4637254'32?2732='"54?4+"/&#""4#'"/&#""32?2722='54723?6;32=/4?54##"&/"'"&54?4#"&/""3?>;3254'/"332?>;25/&=?4#"#"/7"3236?6;3254/"54?254+#"/&#"32?632;2='4'4?474+"/#&#"&#"2?272332='4'4?254+"''&#""32?322='46?654/"&'  ^L.,AC혇g~/ )8 "HtWxr7Xg,[0 L?+Osh@y ;2c3:j/ 5N   [  .   d     8      W          K  p      4  M       =,AbC;+ %YrY:s~ -#m ["{l,Qr{}t}P~i7 fytq    6              Z       y     }   k        \ '-6>Ielquy} #"$#"#"&'4'>3232>32>7 6?>7>77267 "#"/&#"73232%!!>7>7#!'!'!'!%'!'!'!'!'!7!/!%  Zņ-.@C혇g~/ )9 o4o 1(7" 7 00O/70:7*E!i2ULD 8DKF3G <* ) $ r +$y$   =,zl:, %YrY:s~ -#-i1i  2- }uv ! ,Wo!6 oOoNnnoNo$o9hdv \ *EMU]dlsy #"&/&#"#"&''4?>$3232>32'./&'#"$#"76$3232$>7>7>7672?767"#2.#2'"'767>7 "^Hy:EC-0= +=g{1 '; 8 ,qX,0F^>w7778774;856 6867o77896q!+)#C E`  < @h>;+#Bgt} -#(G!M"^g,#/    xe}ss"+J6\ '.3:AHNTZ^z #"$#"#"&'4'>3232>32/''>7'7>7?' "#"&#"#7323267>7>7>7 #QO,,AC혇g{0 )8 $ 9%9M.F  /#~7Ht#L:9cz?H$TW,S(94 7 G7o9 o:!!:,@cE=* %YrY:s} .#?du8ڳ  ) $ 9 !3232>322./&/&#"/&#"76$7>7.54?>?>7767>72$67'"7>?''6?67./#>7'#"$+'276732>7/"'"#+"&'>54&'#727.'33276?6$32&'&#/.'2.#"&$#"#"'>32 #QO,,ADgəN2';     >@r0ZUT -N- T,`Q ,IZ$:T`p&Ec"Fk=f<#7݂023 4zc)4fhjdMHM2!    OIRt6tST X0& dQq e 6m8Z0-  GEY(u)O2&$\G$C  601_3c/jc ?,@cE=( &[nZ:ID#4   M 5^ )ͩ #  Po:#aN$FcMNN4* H"=s7Z)8 ! /  %L#(t #F|(NT t ITFK;{< /0E ;A4oIW   /I5  \ (@ #"&/&#"#"&'4'46$3232>3232$7#"&#"76$327#"&#"#"&#"#.5463'54634&5427.'.54327'"#"&/&#32;2#"&'"#"&#"#"/27'465'43.'"##"&5467.#"&54634&54&54?.546726?43322#"23.54673&6&547.54636;2'4/"&54632+"26324732#3272>7.'.54327.54326?4322#2#"#"&547"&#23>;.#"76;4&#"3274&'"2724&+  YN{;EN+,B\ӆgǘM4)8 of@[vG+zq,@     L1Zg              C$     &         #`  u(    : AcD=* C|3232>32#"/.#"6$3232$7676?>7267.'2%'#7"&#"#2>7>7767#7>7' $FO,,ABgg5'; lu97rLn>W#x_Vk' 7 ;587N:5 <&8Y<o7m.57<8#1:7"(!B"<,@cE=( &Xn[:t/"!w 2 * # ' $02 9 ~K >#s\ (Z  #"$#"#"&'4'>3232>322254&/&54?654#"&/&#"32?632254/&/&#"#'";763232576774#"#"/&#""3?325/&54?'"3722?6?254/&574#"#"/#"'7654#'"&/&#"32?2723325'&54  ZK-.@C혇g~/ )9 7:0 n 3 \L  [   "       c  !   =,BbB:, %YrY:s~ -#  e L 4 H $ *{ [Q   ! "       R  \ %:Fat)>Pho #"$#"#"&'4>3232>32 #"&#">323 $#"$54632#"/./.54?>327#&/.54632632""'"&57>7'76?63#"&'7>632#"/.5#"/.'77263>7";>7&#&'?>32#'4632#"&/#"/.54?>32%#&'7>?632&'?>32##"&/4632%"/./4632#"#"&/.54?>32#"&/4632>7'.'7>?632#"&?272#"&>?272#"&52/&''&' !RƂ--@ M镇gǕF4(: xgiw^?wߗϠ'R) 1\-$ 3o/- 8^+* H1R''00] #N* 31a( g+ ;;   <  8 7 7    ,<.(   ?!( s 'S&N  ! E5 .. ? x ^%'  +  ! %]% 1(  (`&l; 3#  1\@ 0C .[#3   . %!;,|l=)(fvW7@jP-#vXNA*u漏#'_( -e2R 5X)  A1BA*U*&5  8D (V"]";   g-. e  11 F f" #h "!A  r+- w "J c#)\# '  Q &$X ! "R +"  [!] 3  ?m  y7  5hq' g|2#!"&54633!254#!"2+32++"&57#+"&57#"&=46;7#"&=46;7>;23746;2'!"7.5463!237.BC--BB-M*  $  ## "        4$ B.-BB-5-C         Z  $4V /M2#!"&54633!254#!"%'!"7.5463!22#!"&=46;"=467%2/AA//@@/M  4$  ]}  B--BB-5-B %3   % V 0 /[2#!"&54633!254#!"%'!"7.5463!22#!"&=4>54&#"#&/4'4?>32/AA//@@/M  4$  ;U5;7 oPvHoB--BB-5-B $4  N:OM4P~ןRC 0h2#!"&54633!254#!"%"'!"7.5463!2#".54?63232654.=4>54&#"#"&/&54>32/AA//@@/M 3%Z]e͝r 6E:V=_%-c  Z  4$B--BB-5-B㽯D& !,E>>C  6 $4 1P\2#!"&54633!254#!"%&#!"7.5463!2#"54>?632>32$32654&#-CB.-BB-M 4$9H'?93llTTllTB-.BC-5-B  $4Hq+ +chMLiiLMh .D2#!"&54633!254#!"#!"547!"=43!2&#!"7.5463!2-CB.-BB-M5 q  4$B-.BC-5-BO  n  $4 0HT`2#!"&54633!254#!"%"'!"7.5463!2#"$5467.54632&#"326532654&#"/AA//@@/M 4$HOPH37볳8]EF]W@LbfONedOOfB--BB-5-B %37__70~K͝K~ VWB>[TEccIHa`I 6KW2#!"&54633!254#!"/&54?>7#"$54$32 #"'!"7.5463!232654&#.BC--BB-Mh '&B W 4$mlTTlmSB.-BB-5-C} ]ƥd %3~gNMhhMNg 2>J2#!"&54633!254#!"%&#!"7.5463!2#"32$&#"3265-CB.-BB-M 4$ !#occmnbcoB-.BC-5-B $4 [##[ےn/`  9d "' g 0 O  Kd ^   : # D t D * (= `| > <o  4Copyright 2013 Google Inc. All Rights Reserved.Copyright 2013 Google Inc. All Rights Reserved.Noto EmojiNoto EmojiRegularRegularMonotype Imaging - Noto EmojiMonotype Imaging - Noto EmojiNoto EmojiNoto EmojiVersion 1.05 uhVersion 1.05 uhNotoEmojiNotoEmojiNoto is a trademark of Google Inc.Noto is a trademark of Google Inc.Monotype Imaging Inc.Monotype Imaging Inc.Monotype Design TeamMonotype Design TeamData unhinted. Designed by Monotype design team.Data unhinted. Designed by Monotype design team.http://www.google.com/get/noto/http://www.google.com/get/noto/http://www.monotype.com/studiohttp://www.monotype.com/studioThis Font Software is licensed under the SIL Open Font License, Version 1.1. This Font Software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the SIL Open Font License for the specific language, permissions and limitations governing your use of this Font Software.This Font Software is licensed under the SIL Open Font License, Version 1.1. This Font Software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the SIL Open Font License for the specific language, permissions and limitations governing your use of this Font Software.http://scripts.sil.org/OFLhttp://scripts.sil.org/OFLff      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~NULLuni231Auni231Buni23E9uni23EAuni23EBuni23ECuni23F0uni23F3uni2600uni2601uni260Euni2614uni2615uni261D smilefaceuni2648uni2649uni264Auni264Buni264Cuni264Duni264Euni264Funi2650uni2651uni2652uni2653spadeclubheartdiamonduni2668uni267Buni267Funi2693uni26A0uni26A1uni26BDuni26BEuni26C4uni26C5uni26CEuni26D4uni26EAuni26F2uni26F3uni26F5uni26FAuni26FDuni2702uni2708uni2709uni270Auni270Buni270Cuni270Funi2712uni2728uni2733uni2734uni2744uni2747uni2764uni2B50u1F300u1F301u1F302u1F303u1F304u1F305u1F306u1F307u1F308u1F309u1F30Au1F30Bu1F30Cu1F30Du1F30Eu1F30Fu1F310u1F311u1F312u1F313u1F314u1F315u1F316u1F317u1F318u1F319u1F31Au1F31Bu1F31Cu1F31Du1F31Eu1F31Fu1F320u1F330u1F331u1F332u1F333u1F334u1F335u1F337u1F338u1F339u1F33Au1F33Bu1F33Cu1F33Du1F33Eu1F33Fu1F340u1F341u1F342u1F343u1F344u1F345u1F346u1F347u1F348u1F349u1F34Au1F34Bu1F34Cu1F34Du1F34Eu1F34Fu1F350u1F351u1F352u1F353u1F354u1F355u1F356u1F357u1F358u1F359u1F35Au1F35Bu1F35Cu1F35Du1F35Eu1F35Fu1F360u1F361u1F362u1F363u1F364u1F365u1F366u1F367u1F368u1F369u1F36Au1F36Bu1F36Cu1F36Du1F36Eu1F36Fu1F370u1F371u1F372u1F373u1F374u1F375u1F376u1F377u1F378u1F379u1F37Au1F37Bu1F37Cu1F380u1F381u1F382u1F383u1F384u1F385u1F386u1F387u1F388u1F389u1F38Au1F38Bu1F38Cu1F38Du1F38Eu1F38Fu1F390u1F391u1F392u1F393u1F3A0u1F3A1u1F3A2u1F3A3u1F3A4u1F3A5u1F3A6u1F3A7u1F3A8u1F3A9u1F3AAu1F3ABu1F3ACu1F3ADu1F3AEu1F3AFu1F3B0u1F3B1u1F3B2u1F3B3u1F3B4u1F3B5u1F3B6u1F3B7u1F3B8u1F3B9u1F3BAu1F3BBu1F3BCu1F3BDu1F3BEu1F3BFu1F3C0u1F3C1u1F3C2u1F3C3u1F3C4u1F3C6u1F3C7u1F3C8u1F3C9u1F3CAu1F3E0u1F3E1u1F3E2u1F3E3u1F3E4u1F3E5u1F3E6u1F3E7u1F3E8u1F3E9u1F3EAu1F3EBu1F3ECu1F3EDu1F3EEu1F3EFu1F3F0u1F400u1F401u1F402u1F403u1F404u1F405u1F406u1F407u1F408u1F409u1F40Au1F40Bu1F40Cu1F40Du1F40Eu1F40Fu1F410u1F411u1F412u1F413u1F414u1F415u1F416u1F417u1F418u1F419u1F41Au1F41Bu1F41Cu1F41Du1F41Eu1F41Fu1F420u1F421u1F422u1F423u1F424u1F425u1F426u1F427u1F428u1F429u1F42Bu1F42Cu1F42Du1F42Eu1F42Fu1F430u1F431u1F432u1F433u1F434u1F435u1F436u1F437u1F438u1F439u1F43Au1F43Bu1F43Cu1F43Du1F43Eu1F440u1F442u1F443u1F444u1F445u1F446u1F447u1F448u1F449u1F44Au1F44Bu1F44Cu1F44Du1F44Eu1F44Fu1F450u1F451u1F452u1F453u1F454u1F455u1F456u1F457u1F458u1F459u1F45Au1F45Bu1F45Cu1F45Du1F45Eu1F45Fu1F460u1F461u1F462u1F463u1F464u1F465u1F466u1F467u1F468u1F469u1F46Au1F46Bu1F46Cu1F46Du1F46Eu1F46Fu1F470u1F471u1F472u1F473u1F474u1F475u1F476u1F477u1F478u1F479u1F47Au1F47Bu1F47Cu1F47Du1F47Eu1F47Fu1F480u1F481u1F482u1F483u1F484u1F485u1F486u1F487u1F488u1F489u1F48Au1F48Bu1F48Cu1F48Du1F48Eu1F48Fu1F490u1F491u1F492u1F493u1F494u1F495u1F496u1F497u1F498u1F499u1F49Au1F49Bu1F49Cu1F49Du1F49Eu1F49Fu1F4A0u1F4A1u1F4A2u1F4A3u1F4A4u1F4A5u1F4A6u1F4A7u1F4A8u1F4A9u1F4AAu1F4ABu1F4ACu1F4ADu1F4AEu1F4AFu1F4B0u1F4B1u1F4B2u1F4B3u1F4B4u1F4B5u1F4B6u1F4B7u1F4B8u1F4B9u1F4BAu1F4BBu1F4BCu1F4BDu1F4BEu1F4BFu1F4C0u1F4C1u1F4C2u1F4C3u1F4C4u1F4C5u1F4C6u1F4C7u1F4C8u1F4C9u1F4CAu1F4CBu1F4CCu1F4CDu1F4CEu1F4CFu1F4D0u1F4D1u1F4D2u1F4D3u1F4D4u1F4D5u1F4D6u1F4D7u1F4D8u1F4D9u1F4DAu1F4DBu1F4DCu1F4DDu1F4DEu1F4DFu1F4E0u1F4E1u1F4E2u1F4E3u1F4E4u1F4E5u1F4E6u1F4E7u1F4E8u1F4E9u1F4EAu1F4EBu1F4ECu1F4EDu1F4EEu1F4EFu1F4F0u1F4F1u1F4F2u1F4F3u1F4F4u1F4F5u1F4F6u1F4F7u1F4F9u1F4FAu1F4FBu1F4FCu1F500u1F501u1F502u1F503u1F504u1F505u1F506u1F507u1F508u1F509u1F50Au1F50Bu1F50Cu1F50Du1F50Eu1F50Fu1F510u1F511u1F512u1F513u1F514u1F515u1F516u1F517u1F518u1F519u1F51Au1F51Bu1F51Cu1F51Du1F51Eu1F51Fu1F520u1F521u1F522u1F523u1F524u1F525u1F526u1F527u1F528u1F529u1F52Au1F52Bu1F52Cu1F52Du1F52Eu1F52Fu1F530u1F531u1F532u1F533u1F534u1F535u1F536u1F537u1F538u1F539u1F53Au1F53Bu1F53Cu1F53Du1F550u1F551u1F552u1F553u1F554u1F555u1F556u1F557u1F558u1F559u1F55Au1F55Bu1F55Cu1F55Du1F55Eu1F55Fu1F560u1F561u1F562u1F563u1F564u1F565u1F566u1F567u1F5FBu1F5FCu1F5FDu1F5FEu1F5FFu1F600u1F601u1F602u1F603u1F604u1F605u1F606u1F607u1F608u1F609u1F60Au1F60Bu1F60Cu1F60Du1F60Eu1F60Fu1F610u1F611u1F612u1F613u1F614u1F615u1F616u1F617u1F618u1F619u1F61Au1F61Bu1F61Cu1F61Du1F61Eu1F61Fu1F620u1F621u1F622u1F623u1F624u1F625u1F626u1F627u1F628u1F629u1F62Au1F62Bu1F62Cu1F62Du1F62Eu1F62Fu1F630u1F631u1F632u1F633u1F634u1F635u1F636u1F637u1F638u1F639u1F63Au1F63Bu1F63Cu1F63Du1F63Eu1F63Fu1F640u1F645u1F646u1F647u1F648u1F649u1F64Au1F64Bu1F64Cu1F64Du1F64Eu1F64Fu1F680u1F681u1F682u1F683u1F684u1F685u1F686u1F687u1F688u1F689u1F68Au1F68Bu1F68Cu1F68Du1F68Eu1F68Fu1F690u1F691u1F692u1F693u1F694u1F695u1F696u1F697u1F699u1F69Au1F69Bu1F69Cu1F69Du1F69Eu1F69Fu1F6A0u1F6A1u1F6A2u1F6A3u1F6A4u1F6A5u1F6A6u1F6A7u1F6A8u1F6A9u1F6AAu1F6ABu1F6ACu1F6ADu1F6AEu1F6AFu1F6B0u1F6B1u1F6B2u1F6B3u1F6B4u1F6B5u1F6B6u1F6B7u1F6B8u1F6B9u1F6BAu1F6BBu1F6BCu1F6BDu1F6BEu1F6BFu1F6C0u1F6C1u1F6C2u1F6C3u1F6C4u1F6C5uFE4E5uFE4E6uFE4E7uFE4E8uFE4E9uFE4EAuFE4EBuFE4ECuFE4EDuFE4EE uni0023_20E3 uni0031_20E3 uni0032_20E3 uni0033_20E3 uni0034_20E3 uni0035_20E3 uni0036_20E3 uni0037_20E3 uni0038_20E3 uni0039_20E3 uni0030_20E3EXr/JVruby-asciidoctor-pdf-1.6.2/data/fonts/notoserif-bold-subset.ttf000066400000000000000000007065241416357056400246140ustar00rootroot00000000000000FFTMv6j8OS/2O`cmapcvt fGbd:fpgm:1gasp, glyfq'headm 6hheaO D$hmtx\ԥ kern*+T>locad maxph nameشg postNqprepmb\_< 4VL sw {LN sZ:33f GOOG X J y9yd?Fh`R3u3BHyZ\{3ZNyFyVyHy9yyRy\yZy=yHoo\yyyfL^h`9Xq#9999'q9599;99N9Lq9Lq9=9!TVPNPLy^L\1#7`1^`B'{V####)V)`)/^/)==+V5+;%=y=y^yuy1yyyZq\;oy{3q3by3L3?JRRZf3`Ho  ?fqXq9999999950595059#9N9LqLqLqLqLqyLq!!!!9 \\\\\\\7`````#`V)`````y`V5V5V5V5\\\Xq7`Xq7`Xq7`Xq7`#91^#91^99`99`99`99`99`'q{'q{'q{'q{9V#%V5595959#59#'9#9##;9#;9#;9#;9#;9#N9V)N9V)N9V) N9V)Lq`Lq`Lq`'q{`9/)9/)9/)========9=+9=+9=+!V5!V5!V5!V5!V5!V5TV;%TV;%TV;%#q\` q`-)9fR/\=+9=+9!95)R37L7`7Lo\Z3/Z%`99d99TV9Lq5999N9 BLqy99/9=-wZ591`HLB%71`N`HL`B`%!#R ``XB/`)`7)7`7f`%<7`7f`` `)h%Lq`Xq`9m3%LHB% B!5=`P9-f9RdRLq`53\h%b7`Lq7`'F9)Xq9j/XRXqXR99999Xq=5959!999y95T`9999RJ99999Lqy99Xq9=9=' 9 '999uL9\b##``;F####J##`^#)7`)`+}#s!##)=##'Fb#``5#7`=##`#V###^# 'qB9#XV Z9#\^ f9#s;+-7Lq` sq`q%` 'q` 'qXq7`huX))9#99)b9#9#9#J;F 9N# 9`#9#'9#o9# 9y#q`Xq7`9)+)='s!='s!=9s#59R`9H#o9#9#='s!9 #59\\\99`qVqVR`J;FJy19#9#Lq`Lq`Lq`uL'F='s!9#9=#9#++\\\P\\\\\\\\99`99`99`99`99N99`99`99`59#59#Lq`Lq`Lq`LqVLq`Lq`Lq`q\`q\`q\`q\`q\`!V5!V5!95!95!95!95!95Uyo!L{3y\yJ=s=\Z\=ss\\sHH3sLN {FRy77`d9Lyo/?HXy^ydyy{mmb7b))sh@( ~u~  " & 0 4 : ` !"!!!!"""""""")"+"H"a"e%%%%%%%%%% tz  & * 2 9 ` !"!!!!"""""""")"+"H"`"d%%%%%%%%%%1+*'$#:_\TSQNKBA% ݾݽݶݱݯݧݛ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abJsefjLyql\wknitpqhxadclm}{dohmbn~Mc=>FGBC{9[XYKzDHTr{@EYXUTSRQPONMLKJIHGFEDCBA@?>=<;:9876510/.-,('&%$#"! ,E#F` &`&#HH-,E#F#a &a&#HH-,E#F` a F`&#HH-,E#F#a ` &a a&#HH-,E#F`@a f`&#HH-,E#F#a@` &a@a&#HH-, <<-, E# D# ZQX# D#Y QX# MD#Y &QX# D#Y!!-, EhD ` EFvhE`D-, C#Ce -, C#C -,(#p(>(#p(E: -, E%EadPQXED!!Y-,I#D-, EC`D-,CCe -, i@a ,b`+ d#da\XaY-,E+)#D)z-,Ee,#DE+#D-,KRXED!!Y-,KQXED!!Y-,%# `#-,%# a#-,%-,F#F`F# F`ab# # pE` PXaFY`h:-, E%FRKQ[X%F ha%%?#!8!Y-, E%FPX%F ha%%?#!8!Y-,CC -,!! d#d@b-,!QX d#d b@/+Y`-,!QX d#dUb/+Y`-, d#d@b`#!-,KSX%Id#Ei@ab aj#D#!# 9/Y-,KSX %Idi &%Id#ab aj#D&#D#D& 9# 9//Y-,E#E`#E`#E`#vhb -,H+-, ETX@D E@aD!!Y-,E0/E#Ea``iD-,KQX/#p#B!!Y-,KQX %EiSXD!!Y!!Y-,EC`c`iD-,/ED-,E# E`D-,F#F`F# F`ab# # pE` PXaYh:-,K#QX34 34YDD-,CX&EXdf`d `f X!@YaY#XeY)#D#)!!!!!Y-,CTXKS#KQZX8!!Y!!!!Y-,CX%Ed `f X!@Ya#XeY)#D%% XY%% F%#B<%%%% F%`#B< XY%%)) EeD%%)%% XY%%CH%%%%`CH!Y!!!!!!!-,% F%#B%%EH!!!!-,% %%CH!!!-,E# E P X#e#Y#h @PX!@Y#XeY`D-,KS#KQZX E`D!!Y-,KTX E`D!!Y-,KS#KQZX8!!Y-,!KTX8!!Y-,CTXF+!!!!Y-,CTXG+!!!Y-,CTXH+!!!!Y-,CTXI+!!!Y-, #KSKQZX#8!!Y-,%%Ij SX@`8!!Y-,%%Ij QX@a8!!Y-, #Id#SX<!Y-,KRX}zY-,KKTB-,B#Q@SZX TXC`BY$QX @TXC`B$TX C`BKKRXC`BY@TXC`BY@cTXC`BY@cTXC`BY@cTX@C`BYYYYY-,Eh#KQX# E d@PX|Yh`YD-,%%#>#> #eB #B#?#? #eB#B-,zE#-A%PU@PUPU/o@PUPUA6PU@UPU P U P U    PUPUPU9A&?o ?PUP@(U/_`3U3U3U` FA 0`@U@@`߶`/oϛoϖ <ϕ`@ϕ O_?ϓPƍYi ƂUggg0f@fPff?eed@dPddd3UU3UWW`VpVVHUTT`TpTT3U3UU3UUG@U?oTS++KRKP[%S@QZUZ[XYBK2SX`YKdSX@YKSXBYssst++++++sssss+++sssss++++sssssstussttuu^s^ss+s+ssss+ss+sss+s+++ss+++stttuu^s++^s+^s+++s+s+stu+suu+s+st+s+NuJ'``qqH"6;PGr7r\%oJ)}m5D345'qb>Tp*Px2b:l6J^r^L H ^  ^ J ( t @ ,F4@~fHFvXF$r:<xHjz"\|`>b0   !! !!!!""d"p"|"""#*###$$z$$$%%%%%%&V&b&n&'j'v((z((()) ))$)l)x)*H*T*`*+ +,+j+++,4,@,L,--r-.\.../X/00v01@12 22v233T344Z455x56L7 7r8(89J9:`:;R;<b>>>>?8?~?@Z@@@A ADAABBPBBBBC,CCDbDnDEEZEEFJFGGrGGGH`HI2IIIJ0JJJKBKKKL,LnLLM\MNNdNO"OPPPQfQRPRSDSSSST,TrTUUFUUVVPVVW6WrWWWX.XfXXY YLYbYxYYZZfZnZZZZZ[[[[*[6[B[J[R[[[[[\\\\h\p\x\\](]0]^]f]n]]^N^^^^^^^^_N_``r`a4ataab*brbzbcNcVccd4dtdde*eveff*f6fBfNfZfggxgghFhiiViiij*jRjjkk:kll`lmmPmmn.ntnno>oloooppppp pppqqXqqr6rBrNrrss ss s(sttftrt~tuBuJuuuuuvw w|wxnxxxxxxxyyVy^yfyzzbz{{n{{|d||}}j}}}~vf dlV^^„lN*pxbjvJ҉J܊TLfƍ"*jԎNH.F~Б0NƓ,~Д0jFrlLL:Ԛ ^"pP&X`0ԟ J D|.tڤ(d `ڦX ~TȨԨ.bĪ&2>JVʪ֪>:̬ح*6B8V~`زJ³>>µ@Ķ2|nNr̽,JV\D–Rò vHŮƀƌƘƤưNDzVȔ4ɖ r.˘(4@̞pb,DR`n|ϊϘϬDЈFrѾ2BRd|ҔҔ@HPnӂӘӘ\xԔԴ:^բ l|֞:^zזװ׾"0>Z،4Ptٮ !!7!!IhyJh9!#4>32#".dxsm->#"=..="#>-/?&&?/.>&&>!#!#H?H@\39?!####53#5!3333#!3#LLNNGHJLLEH'ffssssd^;BK#4.'#5.54>3'.54>754&'>[V)pq/"" ^U'7g_sue,!6E%!=U4#bQ"8dTPPMSb 6)'MxU4(R]lBJ{\; qA\*}f(2/-b QF'+?S#".54>3232>54.#"#3#".54>3232>54.#"'.[]aY**Zb\\- 5%'3 3&&5!^ž.[]aY**Zb\\- 5%'3 3&&5!gxBBxggw@@wgT[00[TRZ//ZgxAAxggw@@wgT[00[TRZ//Z`N<J^!'#".54>7.54>32>=!#";32674.#">&]pM~„D9`F(;&4gfca1&MuP "  "A8+ +T7?'Fe=m2J+7  8+"3 0 +:"&>-;pgZ]A0WVZ4DnP+.Pj;>dUJ%G:Zl7/9Bm=iN-G<EMU$>..?%#@?@$6?L!#@\u-.54>7Dx_GG_xDzѰ?ED?B-4.'55>uCx_FF_xCzЯ?D祦E?H73% %#'%H\1DJ3\?\HB\?MPRMT% #!5!3!monn\7%5>54.54632(Xd-C-!'!T?WfVAzhSj %-$5)EHx3H5!3774>32#".->#"=..="#>-/?&&?/.>&&>N'3 F3'#".54>3232>54.#"38zw44wy8P)H99H)(H89I*ݩlljj뫓TT擓SSV!3532>5#".5>?3;Ǩ& 'E@=+ DMX3 ) m 3'0N8(8"%5%j4 2"mH+!26?3!5>54&#"".54>321Pvg?Yy 8/_zFUKhT:aE&9ppsw<w0Z`kaIE?R5aOul0M78dL-/X~9D".54>332>54.+532>54&#""&54>32tk30?#%B]82[F))QvMBb@ VT7E&9rpm{B0TrC>jD](DY0'<)AbB!DuX;bG(+PoCp~6Zr=!5!3467!}->"29#=-E ,2. }}0: mm :0}}NZ`TYO7R :%2>54&#"'!#'.#!>32#".54633[E)'?60^A u  V332#".54>32#4."32654&9/ #=Q/O[dRHɂ :mdnHS&~&?Q,:,.^L0#Ԉ@Z5 !!"#!R!89 { 53gd=;%9M4>7.54>32#".2>54.'4.#">=+PoCz1pln7'Hf@\Q%G|{;5U< "IqO"<+!=U0G/*A,8R6&6#uBjWI"GxGh?6`N=^MB!-[cm>ah7>j&D^82QGC$9GX632267.#"]P#04*;O3 ;JY5Xk;@ynoLB>Jj!9P0X``'AS,-= .P;"*'2&7kgoHP݀K>y:\'74>32#".4>32#".->#"=..="#>-->#"=..="#>-/?&&?/.>&&>S/?&&?/.?&&?\\+%5>54.546324>32#".(Xd-C-!'!T?Wf->#"=..="#>-VAzhSj %-$5)EHx/?&&?/.?&&?5 olTߡ!5!5w\75 5loբdi!TL%9#'>54.#"".54>324>32#".3ff)})XpA'=*.>&?jM+4kqlLV->#"=..="#>-RRl[*#_mx=1Q; *F^4#6$2W@%3a/?&&?/.>&&>h]r#"&'##".54>327332>54.#"32>7#".54>$3232>7.#"JxM[~" 6DU6@uY49W{cGf V1V#)SD+U|aj;lSz016buؽo=C{\H;,?+R!4SA.#WYg(F4*VZ7w[7$+ &(% *6 D~ӍG6hꇵJ0> N)H6 +X܅խ{Bf9fm*EV-4Umpk)6;!532>7!;!532>54&/.'!;!V-'#!',%\P  H   yC mm !:.J+9!mm .#MPO$JNN$9!.;)532>54.+5! 32>54.+532>54.+%D_:GuU/lT''TV$&bD`<:^GNH_9<`EJBDeI4 ?[xKm 4,)3 l{ClNKoH$}?dFF^:q/%2>7#"$&546$32#4.#"fKu\E.lXZ vt:!A`>5V@aQ$,b#8F" 2+_P4ln%@W2&A03eR3R甔ޓI9%#!532>54.+5!2+32>\\V&&V cusik6om 4,)1 lY%FW9%%!2>?3!532>54.+5!#'.#!!!=, PV&&Vq 54.+5!# O?(V&&Vo =cQHya,4 mm1()1 lq7"$&546$32#4.#"32674&+5!#"b\b@"DbA?`Apc-/iy&L$JH.xln%@W2$?0>hJ)R甔Q-R@ll$;,779TC!532>5!;!532>54.+5!#"!4.+5!#";X&&X=V&&VX&&XV&%Vm 4,6,4 mm 4,)1 mm 4,u,4 mm 4,#(1m93532>54.+5!#";9V&&VV''Vm 4,,4 mm 4,.,4 m#"+532>54.+5!V'*JgyFJ%1]H,&VJ 4,7]mK.w%Vg)1 l9D>54!" ;#".';!532>54.+5!#"y!- 4?+*KHF$}78:"nNvY@0'[(V=V&&VV(B#91,"jj0B(0?&m *5 G,4 mm1()1 ll 4,"93532>54.+5!#"!26?39V&&VV'}HP!sm 4,,4 ll 1)[W79d6!532>5#;!532>54.+5! !#"; 1 cO'8$ V&&VNTFCV&&Vm-% ,4 mm1()1 l#l 4,-,4 m9+,!;!532>54.+5!4.+5!#"'VV&&V&VV&h,4 mm 4,)1 l)1 ll 4,;q'#"$&546$3232>54.#"[VV[&T_`R%%R_`T&ݩllkk뫓TT擓SS9#0+;!532>54.+5!232>54.+@F(}V&&VuҋD^2LjC;_EP\M(1mm 4,)1 l54.#"A~y 8Qb3!\a ͈CV[&T_`R%%R_`T&ݐqS w6u}kk뫓TT擓SS90=732>54.+5! ;#".'#;!32>54.+9V&&V"0Od4114C\gK &X=sG_9<`Dom1()1 l¹Q~^A\,?)m)H9l(1m&KqKNlE=JE".54>332>54.'.54>32#4.#"o/'AS-*Jg=<^B"*UVkZ'Llqk4?_?4S;)J7 Khi_+N4Rf25H.XY-".+cU80G.+LII*+Zg{KcvB%#%;!532>5#"#!#'.+?&V=V&.>'  '>.,4 mm 4,G%6"s"6%!5#"#".54.+5!#"32>54.+5!X&;}†ӒM%XV&+PpFDnM*&VJ 4,gr=3p~)1 ll 4,VuG#JrN#)1 l2#"#.+5!#">7>54&+5!c^L #$/^    -%kJ !:/L' ll3>DC;EEo "$l> >7>54&+5!#"# #.+5!#">7 l?D/'.$ #-/>=  !0cZL%Zch1 5,ll #>3V? * ll03A''[]V!Bs<mJ4.+5!#" ;!53254.' ;!532>7 .+5!#"7>/*0/0y(V&\ {"8D %81.f!)2##/ % ll#8*k?-mmC ,!C "#mm%5!)ll  @#E:!532>5.+5!#">?>54&+5!#";P`+  )#>= )7"w CD/'%!#)em2+* ll2*=Ad06E-=50ll$>0Z-2mV !2>?3!5!"#!?P/ fm0>% FN/#:I'\Zf1E*o!#";7X">-->"Xl :10; lN3#L!532>54.+5X#=--=#Xl ;01: l^3# #XŠcBV!5!@yLT! .'5!0umXA278SXQ"QQL\d?32>=""&54>32;!'##".546?54.8<,G3\=T2'5 CsWlk6 0"+"K8P2%R`*8!m)=((S}Uq3V>"#+;#".'#!532>54.+5!3>32"32654&7jf;`M;9{8,,;!,tdi6=P00R=eZZ)؍C0B(m 8/#,5 l V&-/LXC3hjek7`d-".54>32#4.#"32>7\qJMjcf5;gP 3'-G3r5]L9.a:؝ކ9!:O-!?05`H++h-=#3'PA)^/A%;!'##".54>323&'.=4.+5!2>54.#"b/="s9;M`32!32>7`Veb'=džDDyo|Ba'Ec@5ZI770dߪN|V. LцڒI?|zig`.-=#F,O<$''/3532>5#5354>32#4.#"!!;'-3+1glcN!} '$ +3`m 4,̌L_g6)6 E@:2!;^Dp4,4 mqSbv#4.#"#".';2#"&5467.54>7.54632>3232654&+"32>54.#"q!9* ' $1fk ""  5+fa.Hߘ펇6*0C(-M7 I}.)4@'%7%{vRS@5""6()6 !6)(6!#+   ;DI&M`6 " +PuI_g7nu -:$":5/9Pf>%)" *UQheA4 "=6W>"!?Y79]B%&D^#!=!4.#";!532>54.+5!3>32;Z'?-3D)&7"#:+,3ENW0O~W."4#BgF%4Ws?y+4 mm 8.1)1l(\'.,:B! .`h%09 m#),4>32#".2>54.+5!;!5/?%#@00@#%?/u3+,3+4u'8##8'&8$$8 4,n)1m,4 mm)*+532>54.+54>32#".Mq)8W;-54.+5!>54!";pnP(R+4u3+,3"73GQ6n1 $I?=,4 mm 4,9)1lI!'(!&-ggS[jQN#72>54.+5!;!5;3+,3+4um 4,9)1l,4 mm)dS!4.#";!532>54.+5!3>323>32;!4&#";Z'?-3D)&7"#:+'6" ENW0q%IS[0O~W."4"9IZ0D+"4#BgF%4Ws?y+4 mm 8.d+4 g:D$ Q[:D$ .`h%09 m/Pk;m09 m)!d8!4.#";!532>54.+5!3>32;Z'?-3D)&7"#:+'6" ENW0O~W."4#BgF%4Ws?y+4 mm 8.^+4 m:D$ .`h%09 m`d#!".5!232>54.#"{ĉI{ÉI3R;;Q33R;;R2)Gؐ!Fאmp99pmnn77n^2B2>54.+5!3>32#"&'#;!52654&#"33+%3% ;M`;fj76idu,+3-agYYe=R00P 4,H/8 m(B0Cؕ׌CYK/-&V ,4 mm7kejh3^-^6F532>=4>767##".54>3237!#";"32>54.`%"<-:K]:cj77kd<`M;)"=/-<"%+gWWg=Q11Qm3* '+1:#<+Cؔ֋C/B*m 8/*3m6ifjh3)b1)532>54.+5!3>32#4.#";T#:*'6") 0C[?yr| '$4$ &5Bm :0R-7 m.E.UQ^h*@*$9HIB-7 =bA".54>332>54.'.54>32#4&#"oc-';B :Q25M1:aHSW-?tcaV(ap[Y!=-?lTDsS.;r$@X32=" @fG&'3"5/-ASkERzQ(!6D#EHfq / !4/0=OeAU\1+H%267#".5#5267673!!(I 7I\6EpN*Bh??  !M{Zi4"B]V5#J/!'##"&54.+5!32>54.+5!;- HR[0"5%$<-1G-(6$25A# -8 mpBjK)+QsH-4m-3mJ+#"!.#5!#">7>54&+5!)! '3"{V% %  -#; ;1{& mm! 0|A4@=2 9"mJ<3>7>54&+5!#"# #.+5!#"3>7  Z CE," ",X>= L   ?Jg&.2;&+<40mm #?2Xq * mm#30%NJB3mLGJF4&+5!#";!53254./;!532>7 .+5!#"7>{90//2!-/O&t {u:E%812+V/#- ra%mm 3(;1mmC  +4"#mm 2&7J66mm  )u8JA"+52>7.#5!">7>54/& $NOO%$@GVre#khC "(H?3!5!"#!+ y 1\" {t(?-BTj !7*1LX=L-".54.'5>546;#";VX-%@W22W@%P,8! jwvk !8,P*OpF^;I*}*I9`l2K0]wx]0K3m#3=L-532>54675.54.+532#=P,8! kvwj !8,Pí%@W22W@%-XVm3K0^]xw]\0K2l9I*}*I;FpO*^.#"#463232673#jf`25>O32: ;ZXq|gtzұ9V!3#".54>329ysl->#"=..="#>-?/?&&?/.?&&?u%,5%.54>753#4.'>7#;gwADybX\/;fP &4[K9)TYCJ!4%EϒՈD%9I)!?0+RD1 +;#3#J?-ߞ%<?i1=V>323267#".'.#"57>54&'#53.54632#4.#"!) !&&)1 -I-Fi((tQC@;2o*#=85ZA B6#  na,~$@2M[  k'')x   SDGF   /)8Mc>;a5}@HN'%@W2H^/cQ4uy*QJ@}+"6467'7>327'#"&''7&732>54.#"! {gz-h:9i-g}" ygy.l;:l-viw;%?V13W?##?W31V?%;m-{f{!!h-i;;g-yfy#!whw[t1VA%%AV13WA%%AWfJ3532>75!5!5!53.+5!#">?>54&+5!#"!!!!;/"<-&J>6N&V  9D(#" ->"/m0-qywx#* ll&*;%Ax*N,#2' *(ll$>0xwyf14m#3#334 Mc".54>332654.'.5467.54>32#4.#"4.'.'>5s[&0C(<[U3?T-_N2d]1C4.4\`jB%H@4+t?A% ="/*B=?("5,'4>32#".%4>32#".!,,"",,!",+""+,"#1 1#"11"#1 1#"11qR7e4>32#".732>54.#"2>7#".54>32#4.#"q6ahhb66bhha6p.SuXYuS..SuYXuS./P@/ 'MsMfg38olGiF#&3"7)He@hb66bhhb55bhXuS..SuXXuS..Su9(2 !:0BxgdxC'5$ 7-0^Y; 1 4326=""&54>323#'##"&546?54.'. ?>/UGyju0So?'12.9E)hx\ 6,O>T?N#.)0#0at- Zd) jgfa71" 3#%3#9ϐ9Ώ^effejeffe%%#!5%%n3HqR)6Rn32>54.+5! 3##;!32>54.+4>32#".732>54.#"$$q` 4C# #l#fV7J,/K6P{6ahhb66bhha6p.SuXYuS..SuYXuS.fXH1J6%  E}E,D.-@'hb66bhhb55bhXuS..SuXXuS..Su!5!@ybJ'4>32#".732>54.#"b1Tq@AqT11TqA@qT1.=#$>..>$#=.AqT11TqA@qT00Tq@">//>"$?..?)5!#!5!3!omonnLJ+!26?3!57>54&#"".54>32BsYG,$ Lu5E(+5#*"B4 &JmFSwM$-PXhF'7擽,SPP*BJ%:I#/!%?.9Q?=-&546332654&+532654&#""&54632#̍;8YIV^feCCMU+569T^[aju=]K-8G]WQNGaXP?DX[#5Rel_Zj gXJR! >7!#J781BXmu0LQQ"QXSJ5"&'#".54>7!32>5!;#"&'#=Ux(.WH1F,&F5 8#<-+E17DGi 5BT?9UlC 'A0?gK=Ȁ}\7bI*.SuGs^PmbP-J3R'#!532>5#".54>3!#";!\#=-ZxH"LxW##=..=#l :0AoPR`4l :10: l3{4>32#".->#"=..="#>-/?&&?/.?&&?f;#".'532654.'73;*LkA.20&J:C*8!+u2Q96W=  })5& X0C`L;!532>5#"&5>?#Th!0K%)%[=\3ZZE9F;* ),DH 7 32654&#"#"&546327=MK>@LK<V`4fy||yywwy+V #3#3ǏϏ9eƏϏ:j !%A%;!532>=!5334673#3%;!532>5#"&5>?))9{۞#Th!0K%)%[=\GZZGR4mc ?&! 3ZZE9F;* ),D K!#3%;!532>5#"&5>?!26?3!57>54&#"".54>32۞#Th!0K%)%[=\8BsYG,$ Lu5E(+5#*"B4 &JmFSwM$ 3ZZE9F;* ),D-PXhF'7擽,SPP*BJ%:I#/!%?.9Q?!%S%;!532>=!5334673#3&546332654&+532654&#""&54632#))9{D۞;8YIV^feCCMU+569T^[ajuGZZGR4mc ?&!]K-8G]WQNGaXP?DX[#5Rel_Zj gXqyT%94>?332>52#".#".54>32q3ef)})Wq@'=*.?&?jM+4kqlL->#"=..="#>-RlZ*#_mx=1Q; )G]5$6$2V@%3a/?&&?/.?&&?s&%D-Rs&%w7RsBO>7!#.'#;!532>7!;!532>54&/.'!A@99@@:>;;=9;!V-'#!',%\P  H   yFLQQ""QQL.2222.C mm !:.J+9!mm .#MPO$JNN$oIV2>73#".#"#>32;!532>7!;!532>54&/.'!#(C[77YMC!#)C\77YMC0;!V-'#!',%\P  H   y'>nS0(1('>nS0(1(C mm !:.J+9!mm .#MPO$JNN$R&%kR'Q^#".54>324.#"32>;!532>7!;!532>54&/.'!&CZ33ZC&&CZ33ZC&}!,,!!,,!;;!V-'#!',%\P  H   y%7S88S76T88T6* ** *ڰC mm !:.J+9!mm .#MPO$JNN$/3%!2>?3!5326=!;!53267'5!#'.#!!! !, PV80)V?<#5T-? >7!#.'#!2>?3!532>54.+5!#'.#!!! A@99@@:>;;=9, PV&&Vq 7!#.'#532>54.+5!#";0A@99@@:>;;=9 V&&VV''VFLQQ""QQL.2222.m 4,,4 mm 4,.,4 m9R&-kMR9-#!532>5#534.+5!2+!!32>\\V&&V cusik6om 4,})1 lY%}W9+oL2>73#".#"#>32;!532>54.+5!4.+5!#"#(C[77YMC!#)C\77YMC'VV&&V&VV&'>nS0(1('>nS0(1(h,4 mm 4,)1 l)1 ll 4,;qs&3DdRqs&3wPRqs,@>7!#.'##"$&546$3232>54.#"A@99@@:>;;=9#[VV[&T_`R%%R_`T&FLQQ""QQL.2222.llkk뫓TT擓SSqo3G2>73#".#"#>32#"$&546$3232>54.#"#(C[77YMC!#)C\77YMC,[VV[&T_`R%%R_`T&'>nS0(1('>nS0(1(llkk뫓TT擓SSqR&3kRHu ' 7  ;h-h--i/gwh/-g/ifq &2#"'#7&546$3273.#"4&'32>[>^VUB@`&kD`T&(jE`R%ݩl5s`Iڪkw`׀M*,SNP**T!s&9DdR!s&9w9R!sN>7!#.'##"#".54.+5!#"32>54.+5!A@99@@:>;;=9X&;}†ӒM%XV&+PpFDnM*&VFLQQ""QQL.2222. 4,gr=3p~)1 ll 4,VuG#JrN#)1 l!R&9kRs&=wR9 932>54.++;!532>54.+5!#"3;2LjC;_EP@F'T=V&&VT(sҋD&R\RyO'\M<(1mm 4,,4 ll0)%=o T)R4>32#"#"&'5332654.'.54>7.#"!532>5#53Rq}9s2WA&6W>@X77g_]Bn#5F*EQ/P=Kc;1YzH:S54U< X&^l/JՋ 5)$6//KV\0WV*%&)J7!HB$=86#Q\d5GgE%^R%"GmJjm 4,ʎ\!&ED\!&Ew\!'X>7!#.'#32>=""&54>32;!'##".546?54.A@99@@:>;;=98<,G3\=T2'5 CsWlk6 0"+"K8P2%R`*8!m)=((S}Uq3V>"\._2>73#".#"#>3232>=""&54>32;!'##".546?54.#(C[77YMC!#)C\77YMC8<,G3\=T2'5 CsWlk6 0"+"nS0(1('>nS0(1(XX%Da<!:T~!;Q0>K8P2%R`*8!m)=((S}Uq3V>"\&Ek\'6g#".54>324.#"32>32>=""&54>32;!'##".546?54.a&CZ33ZC&&CZ33ZC&}!,,!!,,!8<,G3\=T2'5 CsWlk6 0"+"K8P2%R`*8!m)=((S}Uq3V>"\dU32>="!4&"&'#".546?54.#""&54>32>32!32>78<,G3\=T25UgcN>BÊDuW23*'5 CsWm6<[o|B`'Fc@5ZI68/b1XX%Da<!:Tv d`g](S}Uq3V>"!;Q0>K8P26>9;?|zig`.-=#F,O<$`d&G{ `;!&ID`;!&Iw`;!!C>7!#.'#"!4.".54>32!32>7A@99@@:>;;=9bVeb'=džDDyo|Ba'Ec@5ZI770dLQQ""QQL.2222.N|V. LцڒI?|zig`.-=#F,O<$`;&Ik!&D#!&w!1>7!#.'#2>54.+5!;!5A@99@@:>;;=9Y3+,3+4uLQQ""QQL.2222. 4,n)1m,4 mm&k`(<!".54>32.'57.'5%32>54.#"zÉIA~wDu& (8'߶3sK&ipk'N\33R;:Q33R;:R2TB̉ˇC !AAA _ % #,I=eg55geif21e)!X2>73#".#"#>324.#";!532>54.+5!3>32;J#(C[77YMC!#)C\77YMC0'?-3D)&7"#:+'6" ENW0O~W."4#'>nS0(1('>nS0(1(dBgF%4Ws?y+4 mm 8.^+4 m:D$ .`h%09 m`!&SD`!&Sw`!(<>7!#.'#!".5!232>54.#"A@99@@:>;;=9{ĉI{ÉI3R;;Q33R;;R2LQQ""QQL.2222.PGؐ!Fאmp99pmnn77n`/C2>73#".#"#>32!".5!232>54.#"#(C[77YMC!#)C\77YMC{ĉI{ÉI3R;;Q33R;;R2'>nS0(1('>nS0(1(Gؐ!Fאmp99pmnn77n`&Sk##'4>32#"&4>32#"&!5!***1A***1A)o`#0 0#"0 8=#0 0#"0 8`!,!"'#7.5!273&#"4&'32>hBfV\H6AiRX`4e;R23a;Q3)+iG!iH?m-;V7nn8a,K9p5#!&YD5#!&Yw5#!H>7!#.'#'##"&54.+5!32>54.+5!;'A@99@@:>;;=9d- HR[0"5%$<-1G-(6$2LQQ""QQL.2222.'5A# -8 mpBjK)+QsH-4m-3m5#&YkJ!&]w-:!5!;!532>7!;!532>54&/.'!)R;!V-'#!',%\P  H   y+C mm !:.J+9!mm .#MPO$JNN$\{C!5!32>=""&54>32;!'##".546?54.uR%8<,G3\=T2'5 CsWlk6 0"+"K8P2%R`*8!m)=((S}Uq3V>"m;H".'332673;!532>7!;!532>54&/.'! QyR*dLKd*Ryc;!V-'#!',%\P  H   y+9\s:KAAK:s\9C mm !:.J+9!mm .#MPO$JNN$\ Q".'33267332>=""&54>32;!'##".546?54.IQyR*dLKd*Ry8<,G3\=T2'5 CsWlk6 0"+"K8P2%R`*8!m)=((S}Uq3V>"ER4>733267#"&;!532>7!;!532>54&/.'!}(DW/ D7$&4@&/1/A;!V-'#!',%\P  H   y0VG2 (;N1)  laC mm !:.J+9!mm .#MPO$JNN$\d*[4>733267#"&32>=""&54>32;!'##".546?54.(DW/ D7$&4@&/1/8<,G3\=T2'5 CsWlk6 0"+"K8P2%R`*8!m)=((S}Uq3V>"qs&'wTR`!&GwuqsH>7!#.'#2>7#"$&546$32#4.#"A@99@@:>;;=9Ku\E.lXZ vt:!A`>5V@aQ$,bFLQQ""QQL.2222.d#8F" 2+_P4ln%@W2&A03eR3R甔ޓI`!F>7!#.'#".54>32#4.#"32>7A@99@@:>;;=9yqJMjcf5;gP 3'-G3r5]L9.aLQQ""QQL.2222.:؝ކ9!:O-!?05`H++h-=#3'PA)q{C4>32#".2>7#"$&546$32#4.#"m/?%#@00@#%?/Ku\E.lXZ vt:!A`>5V@aQ$,b'8##8'&8$$8#8F" 2+_P4ln%@W2&A03eR3R甔ޓI`)A4>32#".".54>32#4.#"32>7/?%#@00@#%?/qJMjcf5;gP 3'-G3r5]L9.a'8##8'&8$$8|:؝ކ9!:O-!?05`H++h-=#3'PA)qsH3>73!.'2>7#"$&546$32#4.#"9=;;>:@@99@AKu\E.lXZ vt:!A`>5V@aQ$,bs.3223.LQP##PQL7#8F" 2+_P4ln%@W2&A03eR3R甔ޓI`!F3>73!.'".54>32#4.#"32>79=;;>:@@99@AwqJMjcf5;gP 3'-G3r5]L9.a!.3223.LQP##PQL:؝ކ9!:O-!?05`H++h-=#3'PA)9s3>3>73!.'#!532>54.+5!2+32>9=;;>:@@99@A/\\V&&V cusik6s.3223.LQP##PQLom 4,)1 lY%FW^ =O>73#;!'##".54>323&'.=4.+5!2>54.#" -68zq/="s9;M`323&'.=!5!54.+5!2>54.#"b/="s9;M`?3!532>54.+5!#'.#!!!Rr, PV&&Vq 32!32>7RVeb'=džDDyo|Ba'Ec@5ZI770d٢dN|V. LцڒI?|zig`.-=#F,O<$9m7".'332673!2>?3!532>54.+5!#'.#!!!QyR*dLKd*Ry, PV&&Vq 32!32>7\QyR*dLKd*RyMVeb'=džDDyo|Ba'Ec@5ZI770d9\s:KAAK:s\9N|V. LцڒI?|zig`.-=#F,O<$9^94>32#".!2>?3!532>54.+5!#'.#!!!/?%#@00@#%?/E, PV&&Vq 4>32#"."!4.".54>32!32>7/?%#@00@#%?/Veb'=džDDyo|Ba'Ec@5ZI770d'8##8'&8$$8oN|V. LцڒI?|zig`.-=#F,O<$9A4>733267#"&!2>?3!532>54.+5!#'.#!!!(DW/ D7$&4@&/1/, PV&&Vq 733267#"&"!4.".54>32!32>7(DW/ D7$&4@&/1/fVeb'=džDDyo|Ba'Ec@5ZI770d0VG2 (;N1)  l@N|V. LцڒI?|zig`.-=#F,O<$9s>3>73!.'!2>?3!532>54.+5!#'.#!!!79=;;>:@@99@A, PV&&Vq 73!.'"!4.".54>32!32>79=;;>:@@99@AwVeb'=džDDyo|Ba'Ec@5ZI770d!.3223.LQP##PQL٪N|V. LцڒI?|zig`.-=#F,O<$qsP>7!#.'#"$&546$32#4.#"32674&+5!#"A@99@@:>;;=9\b@"DbA?`Apc-/iy&L$JH.xFLQQ""QQL.2222.ln%@W2$?0>hJ)R甔Q-R@ll$;,77q!l{>7!#.'##4.#"#".';2#"&5467.54>7.54632>3232654&+"32>54.#"A@99@@:>;;=9!9* ' $1fk ""  5+fa.Hߘ펇6*0C(-M7 I}.)4@'%7%{vRS@5""6()6 !6)(6!LQQ""QQL.2222.+   ;DI&M`6 " +PuI_g7nu -:$":5/9Pf>%)" *UQheA4 "=6W>"!?Y79]B%&D^qmI".'332673"$&546$32#4.#"32674&+5!#"FQyR*dLKd*Ry5\b@"DbA?`Apc-/iy&L$JH.x+9\s:KAAK:s\9ln%@W2$?0>hJ)R甔Q-R@ll$;,77qet".'332673#4.#"#".';2#"&5467.54>7.54632>3232654&+"32>54.#" QyR*dLKd*Ry!9* ' $1fk ""  5+fa.Hߘ펇6*0C(-M7 I}.)4@'%7%{vRS@5""6()6 !6)(6!9\s:KAAK:s\9+   ;DI&M`6 " +PuI_g7nu -:$":5/9Pf>%)" *UQheA4 "=6W>"!?Y79]B%&D^q{K4>32#"."$&546$32#4.#"32674&+5!#"/?%#@00@#%?/̾\b@"DbA?`Apc-/iy&L$JH.x'8##8'&8$$8*ln%@W2$?0>hJ)R甔Q-R@ll$;,77q)gv4>32#".#4.#"#".';2#"&5467.54>7.54632>3232654&+"32>54.#"^/?%#@00@#%?/!9* ' $1fk ""  5+fa.Hߘ펇6*0C(-M7 I}.)4@'%7%{vRS@5""6()6 !6)(6!'8##8'&8$$8+   ;DI&M`6 " +PuI_g7nu -:$":5/9Pf>%)" *UQheA4 "=6W>"!?Y79]B%&D^q; E>73#"$&546$32#4.#"32674&+5!#"y -68{\b@"DbA?`Apc-/iy&L$JH.xVLQO" PSP!ln%@W2$?0>hJ)R甔Q-R@ll$;,77q! ap#5>73#4.#"#".';2#"&5467.54>7.54632>3232654&+"32>54.#" -59{!9* ' $1fk ""  5+fa.Hߘ펇6*0C(-M7 I}.)4@'%7%{vRS@5""6()6 !6)(6!LQO" PRP!+   ;DI&M`6 " +PuI_g7nu -:$":5/9Pf>%)" *UQheA4 "=6W>"!?Y79]B%&D^9Ts\>7!#.'#532>5!;!532>54.+5!#"!4.+5!#";A@99@@:>;;=9X&&X=V&&VX&&XV&%VFLQQ""QQL.2222.m 4,6,4 mm 4,)1 mm 4,u,4 mm 4,#(1m#!V>7!#.'#4.#";!532>54.+5!3>32;1A@99@@:>;;=9)'?-3D)&7"#:+,3ENW0O~W."4#}LQQ""QQL.2222.BgF%4Ws?y+4 mm 8.1)1l(\'.,:B! .`h%09 m%hKO!532>5!;!532>5#5354.+5!#"!54.+5!#"3#;5!X&&X=V&&VX&&XV&%Vm 4,6,4 mm 4, lc)1 ll 4,[[,4 ll 4,[l(1m9!E54.+5!!!3>32;!4.#";!532>5#5,3>ENW0O~W."4#9'?-3D)&7"#:+ )1ll(['.,:B! .`hb09 mdBgG%4Xs?+4 mm 8.l,o?2>73#".#"#>32532>54.+5!#";C#(C[77YMC!#)C\77YMCV&&VV''V'>nS0(1('>nS0(1(m 4,,4 mm 4,.,4 m82>73#".#"#>322>54.+5!;!5 #(C[77YMC!#)C\77YMCN3+,3+4u'>nS0(1('>nS0(1( 4,n)1m,4 mm9#!5!532>54.+5!#";RwV&&VV''V+3m 4,,4 mm 4,.,4 m{!5!2>54.+5!;!5pR3+,3+4u٢ 4,n)1m,4 mm9m1".'332673532>54.+5!#";QyR*dLKd*RyOV&&VV''V+9\s:KAAK:s\9m 4,,4 mm 4,.,4 m*".'3326732>54.+5!;!5YQyR*dLKd*Ry3+,3+4u9\s:KAAK:s\9 4,n)1m,4 mm9;4>733267#"&532>54.+5!#";(DW/ D7$&4@&/1/V&&VV''V0VG2 (;N1)  lm 4,,4 mm 4,.,4 m#)/H4>733267#"&4>32#".2>54.+5!;!5(DW/ D7$&4@&/1/ /?%#@00@#%?/u3+,3+4u0VG2 (;N1)  l'8##8'&8$$8 4,n)1m,4 mm9{34>32#".532>54.+5!#";/?%#@00@#%?/V&&VV''V'8##8'&8$$8>m 4,,4 mm 4,.,4 m#J72>54.+5!;!5;3+,3+4um 4,n)1m,4 mm9&-.5#)&MNs8>7!#.'##"+532>54.+5! A@99@@:>;;=9V'*JgyFJ%1]H,&VFLQQ""QQL.2222. 4,7]mK.w%Vg)1 l!/>7!#.'#+532>54.+5*A@99@@:>;;=9.Hj' 0K3-73#>54!" ;#".';!532>54.+5!#"} -68{!- 4?+*KHF$}78:"nNvY@0'[(V=V&&VV(VLQO" PSP!#91,"jj0B(0?&m *5 G,4 mm1()1 ll 4,"#; H>73##".';!532>54.+5!>54!"; -68{ pnP(R+4u3+,3"73GQ6n1VLQO" PSP! $I?=,4 mm 4,9)1lI!'(!&-ggS[jQN#J:!#".';!532>54.+5!>54!";pnP(R+4u3+,3"73GQ6n1 $I?=,4 mm 4,n)1mI!'(!&-ggS[jQN9s&0wR#&Pw9; ->73#532>54.+5!#"!26?3 -68{HV&&VV'}HP!sVLQO" PSP!m 4,,4 ll 1)[W7#; &>73#2>54.+5!;!5 -68{l3+,3+4uVLQO" PSP!2 4,9)1l,4 mm9 ->73#532>54.+5!#"!26?3 -68zV&&VV'}HP!sLQO" OSP!m 4,,4 ll 1)[W7# &>73#2>54.+5!;!5u -68z3+,3+4uLQO" OSP! 4,9)1l,4 mm934>32#".532>54.+5!#"!26?3y/?%#@00@#%?/V&&VV'}HP!s'8##8'&8$$8-m 4,,4 ll 1)[W7#,4>32#".2>54.+5!;!5/?%#@00@#%?/3+,3+4u'8##8'&8$$8 4,9)1l,4 mm9'3532>5574.+5!#"%!26?39V&&VV%'}HP!sm 4,C`c,4 ll 1)[W7# 72>5574.+5!7;!5;3+,3ᤤ+4um 4,+TV)1lH\\%,4 mm9+s&2wR)!!&Rw9;+ :>73# ;!532>54.+5!4.+5!#" -68{)'VV&&V&VV&VLQO" PSP!h,4 mm 4,)1 l)1 ll 4,;);!d F>73#4.#";!532>54.+5!3>32; -68{^'?-3D)&7"#:+'6" ENW0O~W."4#VLQO" PSP!BgF%4Ws?y+4 mm 8.^+4 m:D$ .`h%09 m9+sE3>73!.' ;!532>54.+5!4.+5!#"9=;;>:@@99@A'VV&&V&VV&s.3223.LQP##PQLh,4 mm 4,)1 l)1 ll 4,;)!!Q3>73!.'4.#";!532>54.+5!3>32;E9=;;>:@@99@A'?-3D)&7"#:+'6" ENW0O~W."4#!.3223.LQP##PQLBgF%4Ws?y+4 mm 8.^+4 m:D$ .`h%09 m 'RC9+9;!532>54.+5!4.+5!#"+532>='VV&&V&VV&0Y~MD1(J9"h,4 mm 4,)1 l/)1 ll 4,+m.w(V_)d=32>54.#";!532>54.+5!3>32+ 0K3'?-3D)&7"#:+'6" ENW0O~W.Hj'$TiBgF%4Ws?y+4 mm 8.^+4 m:D$ .`hm.q+!5!#"$&546$3232>54.#"LR[VV[&T_`R%%R_`T&+llkk뫓TT擓SS`{'!5!!".5!232>54.#"R{ĉI{ÉI3R;;Q33R;;R2٢Gؐ!Fאmp99pmnn77nqm%9".'332673#"$&546$3232>54.#"QyR*dLKd*Ryk[VV[&T_`R%%R_`T&+9\s:KAAK:s\9llkk뫓TT擓SS`!5".'332673!".5!232>54.#"oQyR*dLKd*Ry{ĉI{ÉI3R;;Q33R;;R29\s:KAAK:s\9PGؐ!Fאmp99pmnn77nqs3G5>7!35>7!#"$&546$3232>54.#"//* '29:70/* '29:7[VV[&T_`R%%R_`T&+!LPN"18;82!LPN"18;82llkk뫓TT擓SS`!/C5>7!35>7!!".5!232>54.#"&//* '29:70/* '29:7N{ĉI{ÉI3R;;Q33R;;R2!LPN"18;82!LPN"18;82PGؐ!Fאmp99pmnn77nq&7%!2>?3!#"$&546$32!#'.#!!!267.#"+,%-u3VV5w- 75.#""!4&"&'#".5!2>32!32>73R;8O3cs;R2UgcN>vDCy{ĉIrD?po|Bb)Eb>5ZI68/b)mp94fd77nH PMQLGؐ!ONNO?|zi aZ+-=#F,O<$9s&6wR)!&Vw'9; >K>73#32>54.+5! ;#".'#;!32>54.+% -68{V&&V"0Od4114C\gK &X=sG_9<`DoVLQO" PSP!21()1 l¹Q~^A\,?)m)H9l(1m&KqKNlE);b ?>73#!532>54.+5!3>32#4.#"; -68{T#:*'6") 0C[?yr| '$4$ &5BVLQO" PSP!m :0R-7 m.E.UQ^h*@*$9HIB-7 9sIV3>73!.'32>54.+5! ;#".'#;!32>54.+39=;;>:@@99@AV&&V"0Od4114C\gK &X=sG_9<`Dos.3223.LQP##PQL1()1 l¹Q~^A\,?)m)H9l(1m&KqKNlE)!J3>73!.'!532>54.+5!3>32#4.#";9=;;>:@@99@AT#:*'6") 0C[?yr| '$4$ &5B!.3223.LQP##PQLm :0R-7 m.E.UQ^h*@*$9HIB-7 =Js&7wR=!&Ww7=Js^>7!#.'#".54>332>54.'.54>32#4.#"A@99@@:>;;=9(o/'AS-*Jg=<^B"*UVkZ'Llqk4?_?4S;)J7 Khi_+NFLQQ""QQL.2222.4Rf25H.XY-".+cU80G.+LII*+Zg{KcvB=!Z>7!#.'#".54>332>54.'.54>32#4&#"A@99@@:>;;=9Ooc-';B :Q25M1:aHSW-?tcaV(ap[Y!=-?lTDsS.;rLQQ""QQL.2222.$@X32=" @fG&'3"5/-ASkERzQ(!6D#EHfq / !4/0=OeAU\1=J&7{=b&W{=Js^3>73!.'".54>332>54.'.54>32#4.#"9=;;>:@@99@A(o/'AS-*Jg=<^B"*UVkZ'Llqk4?_?4S;)J7 Khi_+Ns.3223.LQP##PQL4Rf25H.XY-".+cU80G.+LII*+Zg{KcvB=!Z3>73!.'".54>332>54.'.54>32#4&#"9=;;>:@@99@AQoc-';B :Q25M1:aHSW-?tcaV(ap[Y!=-?lTDsS.;r!.3223.LQP##PQL$@X32=" @fG&'3"5/-ASkERzQ(!6D#EHfq / !4/0=OeAU\1%&8{X+H&X{%s<3>73!.';!532>5#"#!#'.+19=;;>:@@99@A&V=V&.>'  '>.s.3223.LQP##PQL,4 mm 4,G%6"s"6%+ ,>73#267#".5#5267673!!u -68z(I 7I\6EpN*Bh??LQO" OSP!  !M{Zi4"B]V%+!!;!532>5!5!#"#!#'.+?'&V=V&'.>'  '>.lP,4 mm 4,l+%6"s"6%+H&%267#".5#53#5267673!!3#(I 7I\6EpN*Bh?A  !M{Zmi4"Bm]V!oU2>73#".#"#>32#"#".54.+5!#"32>54.+5!#(C[77YMC!#)C\77YMCX&;}†ӒM%XV&+PpFDnM*&V'>nS0(1('>nS0(1(\ 4,gr=3p~)1 ll 4,VuG#JrN#)1 l5#O2>73#".#"#>32'##"&54.+5!32>54.+5!;N#(C[77YMC!#)C\77YMC]- HR[0"5%$<-1G-(6$2'>nS0(1('>nS0(1(d5A# -8 mpBjK)+QsH-4m-3m!9!5!#"#".54.+5!#"32>54.+5!`RyX&;}†ӒM%XV&+PpFDnM*&V+} 4,gr=3p~)1 ll 4,VuG#JrN#)1 l5#{3!5!'##"&54.+5!32>54.+5!;R/- HR[0"5%$<-1G-(6$2٢5A# -8 mpBjK)+QsH-4m-3m!mG".'332673#"#".54.+5!#"32>54.+5!'QyR*dLKd*RyaX&;}†ӒM%XV&+PpFDnM*&V+9\s:KAAK:s\9 4,gr=3p~)1 ll 4,VuG#JrN#)1 l5#A".'332673'##"&54.+5!32>54.+5!;QyR*dLKd*Ry- HR[0"5%$<-1G-(6$29\s:KAAK:s\9'5A# -8 mpBjK)+QsH-4m-3m!']#".54>324.#"32>#"#".54.+5!#"32>54.+5!&CZ33ZC&&CZ33ZC&}!,,!!,,!TX&;}†ӒM%XV&+PpFDnM*&V7S88S76T88T6* ** *r 4,gr=3p~)1 ll 4,VuG#JrN#)1 l5#'W#".54>324.#"32>'##"&54.+5!32>54.+5!;&CZ33ZC&&CZ33ZC&}!,,!!,,!- HR[0"5%$<-1G-(6$27S88S76T88T6* ** *z5A# -8 mpBjK)+QsH-4m-3m!sU5>7!35>7!#"#".54.+5!#"32>54.+5!//* '29:70/* '29:7X&;}†ӒM%XV&+PpFDnM*&V+!LPN"18;82!LPN"18;82 4,gr=3p~)1 ll 4,VuG#JrN#)1 l5#!O5>7!35>7!'##"&54.+5!32>54.+5!;V//* '29:70/* '29:7"- HR[0"5%$<-1G-(6$2!LPN"18;82!LPN"18;82'5A# -8 mpBjK)+QsH-4m-3m!Q4>733267#"&#"#".54.+5!#"32>54.+5!G(DW/ D7$&4@&/1/X&;}†ӒM%XV&+PpFDnM*&V0VG2 (;N1)  l 4,gr=3p~)1 ll 4,VuG#JrN#)1 l5#JK4>733267#"&'##"&54.+5!32>54.+5!;(DW/ D7$&4@&/1/- HR[0"5%$<-1G-(6$20VG2 (;N1)  l5A# -8 mpBjK)+QsH-4m-3msW>7!#.'#>7>54&+5!#"# #.+5!#">7A@99@@:>;;=9 l?D/'.$ #-/>=  !FLQQ""QQL.2222.0cZL%Zch1 5,ll #>3V? * ll03A''[]V!Bs<m!U>7!#.'#3>7>54&+5!#"# #.+5!#"3>7?A@99@@:>;;=9  Z CE," ",X>= L   LQQ""QQL.2222.Jg&.2;&+<40mm #?2Xq * mm#30%NJB3mLGsS>7!#.'#532>5.+5!#">?>54&+5!#";dA@99@@:>;;=9`+  )#>= )7"w CD/'%!#)eFLQQ""QQL.2222.m2+* ll2*=Ad06E-=50ll$>0Z-2m!Z>7!#.'#"+52>7.#5!">7>54A@99@@:>;;=9/& $NOO%$@GVre#khC "(HwR%!&^wVV{+4>32#". !2>?3!5!"#!/?%#@00@#%?/?P/ fm0>% F'8##8'&8$$8/#:I'\Zf1E*o%)+4>32#".2>?3!5!"#!/?%#@00@#%?/Z+ y 1\" {t'8##8'&8$$8(?-BTj !7*1LXVs03>73!.' !2>?3!5!"#!R9=;;>:@@99@A{?P/ fm0>% Fs.3223.LQP##PQL/#:I'\Zf1E*o%!03>73!.'2>?3!5!"#!Ў9=;;>:@@99@A"+ y 1\" {t!.3223.LQP##PQL(?-BTj !7*1LX''3532>54>32#4.#";-3+1glcN!} '$ +4`m 4,_g6)6 E@:2!;^D8,4 mq) 654&5432! !  ! pFW/iOM\m4H'XF{kZmkeelk`R654&5432!"! 2#"JRqGWXpe`/8)QJ{jZojq%; Dq J%2>3 ;!532654&#"! !232654&#"H *?V=V>+isz}XA݀nJBCmmBCfewKa`Vd!->32;!4&#"!"!232654&#"%"3V9=VPF5`fi^[li]wq|GNCmX&!yt&/ !#;!532654&#"#"&546332654&+E/=}V=+=TEO4$GM1xP>32#"&'#;!5654&#"33HJџvr136( 2jt, JG-aZZdqb_rCB`]SHP}m\_l>w/\LYKB3BCmm9 +4732654&+5!#"3 ;#"&'#;!32654&+9V<-*?VV<-"1`<Cԭ6-BCll;>Ƃ5gUSmSf> o*`C68AA8A8 uyibgEEJ;>EC@+mH($67#"&5467326=#"&5#52673!!3I uzM]<"9D!M-e#?H <49ENHi]V%$"#"&5463!#'.+;!53265w`V#3"JOȹ  RN-+9HI)B&b`sR?E@mmBCG+%52>32.#"!!3267#"&5+t*no[h: 40?H(I *ZihA4?HA]V %"#!#'.+3267#"&5VNR    RNUG%> o*r9?RsR?'hbo4!)'654&5432! 4+5!#"! 4+5pFWhXVh1)hVy'XF{kZF}ll-#}l5/-!'## 4&+5!324&+5!654&5432;- \7Uǜ5_qFX.[OBmp7>Emz)QJ{h\=Dm) >7!#)9'39GEVCR !5>73 8"2oKGJBu3267#"&=D%- G9cl{>9^foLd"&5463 #"&546332654&#F||هDAh[a`jOSh{w`XV`dA4>32#".".54>32#4.#"32>7-/?%#@00@#%?//qJMjcf5;gP 3'-G3r5]L9.a'8##8'&8$$8:؝ކ9!:O-!?05`H++h-=#3'PA)Ld14>32#"."&5463 #"&546332654&#/?%#@00@#%?/F||هDAh[a`*'8##8'&8$$8jOSh{w`XV\\=^ >7!#8NXIBb !5>73#!4>32#".%4>32#". -68{!,,"",,!",+""+,"LQO" OSP!#1 1#"11"#1 1#"11&%YX3{z')YXN',YX'-YX&3YX'=-YX\&{?YX&ZC%9&9#'.#!;!532>54.+5s[S'V&&VobYY(1mm 4,,4 ld5b9)V>9T,q3G;2>?3#'.+"##"$&546$3232>54.#" 6. )6# jj #6) .6 k[VV[&T_`R%%R_`T&'# #'y'# #'ѩllkk뫓TT擓SS9-9/2532>73;!532>54&'.';!b #$0\^    -%jm !:/& mm3w>DC;DF  "#m9d19+2B#C)33!2>?3#'.#!"#!;2>?3#'.+"# '?.#.>'>'?.X.?' @  6.H)6# jj #6)H.6  k>8**8>-=8**8='# #'y'# #'q39?1!532>5!;!532>54.+5!#";}X&&X=V&&VV&%Vm 4,G,4 mm 4,)1 ll 4,"(1m94/%2>?3!5 5!#'.#!w0D- {  Q\wm4G*>DPmDM%8== W32>54.+!#";#".54>;54.+5!#"32+;!532>5;NnF!?eHVVHe?!FnN;@n^;B΋q-=#">-q͇B;]n?->"P#=-'VaV~S((S~VaV'w&C]lw=dvA)1 ll 1)Avd=wl]C&)(1mm1(<-O".=4.#5!;4.+5!#"32>5!"+;!532>=s|Q/-=#@rX--=#">--XqA">-/Q|sN->"P#=-#?Wgt=0; la\+m)1 ll 1)+\al ;0=tgW?#(1mm1(Z;4>$3232>?3!>54.#"!3;'&V[5J1qkIf?$Q^^R&?fIlq1J5ϔPPπ,0"Db Bm^fn::nf^mB D"0,9R&-kMRR&=kR`^&Y\L^&Y^&Y}^&YE7&Zq`^*;!".'##".54>323>73;%2>=.#"qLjF' :L`!maW.9'B0C֓،C 8I*/Y/`qy7sZXmMiLFd@)!K4>32#"&'2>54.'#"&5432>54.#"Ok{{=%0;JGz[4@wil.,J61I0?+".h !$ AB2J03K33?I}s`).W}N2TE82 CcYww<2*P*W[QsR6 )%Ru:_D%'Hg@;+";^;2>54&'4632#"&54>7& &#"'>Osc_;6W=!66J;/<# ":LW[+%BZ4GA!+3_][/*(AJO^l@@?QDK#8G$Jv) "#! al:QA-`_Y%W T$`H4.'32>#".54>7.54>32#4.#"J$=P,'J:$8O33O6@eHVb6MxsO=nZ2WA&?oZj]+n]0H/*>)NtZH!7]cJwS--V|,EBD,4m{XC=unjoJ$PZg#)5LbJ>32#".'32>7#".54>75.54>32#4&#" .+g0-6K?5:532oyv:'@S-.J5Awimf0FG(5 ;%E6" $*-: gP^a+7 0+P=%4YxD>U;' 3CN)GmI&'=M&A:hv1A``#XA4>7.'7>32#*'5>54.'.`C|p2jif-J,`juA>FJ&8?ElM'LlE!$LwTyy3jo0?'8`JY\.Z!0<"f!;0 +$1-&>-biTb<#xd32!.54&#"!   :McAZY+  UE5H,1tpa*[6)M;$.bj'hfVTho-94bX`)#".54>322>7!"!.Adžɂ==ˍƄA6N5T5P95O54Mmn'%llT呑T-M؊ؓMJ3267#".5BG%P 1CR-P~X.Jd[  !JzX!#R4>32.#";#".'!4.+5!Dqih32;#".'.'#!?5;D) 5*! 3F*Q{_H>?@ /@dO?07$RVwK! 5%!3#9plbiQ m@zd"JRR"3Jx?^2#.#"'>32>54.'4>32?!54.'.54>75.54>7.'7>32#"&'>32#".'&LrMJiB.dm+9".K8vj1%AO3!,M-$JGBC-f*%  ?H19A&"6+  ,")!Mk`dSBJ6!3267#".54>7!+52>7#"#4>3!(8\98W=   BjL LE7 >_;>x&P~WBI|'*8#  9\B4MQvN&j?iPI8Pk?d*#"&'!4>324.#"32>=riYA<}{̑Q:X;;N/2tJ,H4Ѕ?,2[7xD}ÆFOތnv>8gY4@-d`\d74>32#4.#"5>54.'.`Mjcf5;gP 3'-H3&MsMJiB.dn+9#.K8e*@!:O-!?05`H+&dH`B,2CW83!!32654.'#"D̈yċK2Y|X"LA* ;W8cl!AsU2m{BI|tW5Je'Zf6QcI&W)J#!3267#"&54>7#"#4>3!A2.K %iKz'-?'m4Sf2B[SQ =Y0@$yh.7Z-".54.#5!32>54.'4>32yv;#5$"?]:MpJ$/FQ"#5$4X?$/Nu@vf)1mdPqG!AuabZ0 9*DpP{[3`f#4632#$47&#">5 <4zŨAgHDe 5 30MqbP/!.#"'>32!3267#".'m &/  %7<=+?3,fBF &. 4'6iB-A2))=( P 6ZD%*B/ V#, >]<o7`/#.54.#5!3>54.'4>32`1q{֓M#5$|{O|U,#4<-,J6t۱z C|r)1msGu__X0 9*L`oE".'#"4>73267.5463232>54.'7b?^H55G]>)LkC . 3?3. ClK)8Q22Q8aA]7r]dW([f0KB= [MM[ <@L0f](Wd]r7]Aa<&k:7&k``^&SY57^&Y`^&Y `'3&'3>3 ! !2#32654&#"32654&#MN-sMhomhfqof8C`xplg#0*Qz\wTZm~WS&$>A4Af K.#"#".54>54&+53232>54&'.54>323 (:L-8K:bK暃o1 '7AՋ{ +E3GjE"M8ibPit=SUHjE"q; r;bE(UQF+3mZY"X^\&,J7]C:fWFoM)TׂmJ%;!532>=4.'.+532>7>32.#"m)e `+ "5CA:7:;Kp\L'"4) &,.&KQY50E-<9/+348&(%-2mm1,>~d,H4l?jQHzme3>zr2Tj;%2=4.'.+532>7>32.#">7!#)e `+ "5CA:7:;Kp\L'"4) &,.&KQY50E-<9/+348&(%8N-2mm1,>~d,H4l?jQHzme3>zr2Tj;%2{O)1{ߙPAkQQlAAkPQk@' &Lϊ HLΉim=n53+#".'#".5467#"#4>34.'!3267.5463232>-@'m4Sf2b8E7g\GhL65KeF]g7C8-?'m4Sf2l s 3> V=+jNBp%RCBmmBCP$+3`d!&5! 32654&#"ϸgpngfqpe5&%!q"$!2#4&#";;!53265tBvtm+=V>V=+B(:mPb~CBmmBC`^b$32>73#"&#"#"&5>54.5`e ^wbVDk_w"8`N\3 sߦD|k8+a]C=7oǯ9!#.+;!532654&+5!#'.#!!)H_+@V>+,=Vo O?fRa@Emm><=@lcQH3!J%#.+!4&+5!#'.+!G`^?mbRH.>54&#".54632!3267#"&5467!H`I.//'6dw{lLD1-&6|hyzmhlQ=J' )$4Iw]Q_AF' - 2Jw_RL!&5475654መ3#VVomdU^g{Y_P^Jt|0:0fRGMB%6'%.''.#""&5463 ? ?(lqqvKxo #w2Z*w`avPVmou%JZ.'5'654&''%.'':ʠz\NR%V %yC{r8`2$cwh7U1qw! TU%!"$#""&54632326=#"&'#"&54&+5!#"32654&+5!#"32654&+5!#"JQMdT)~eNp5M/9XL;-Sk/:NL=,Rm~*>JV>*9fmXRUnӞaUgnw^@=llAD颏?>llAD韒BCllCB5JL%#"$#""&546323265##"&'##"&54&+5!32654&+5!32654&+5!#"FdI>[^ώjT 0q%/4VQSU]4UQSXZ:Yt`?9f]VJS_kzXTQ[VVOBm^OBm^CBmmGF=J332674&+5!#";!53265# 4$32#4&#"pN*?VV?**?V)j>+hr ӓnm-:A<_"BCllDA-BCmmBC`+) [YSQj`'232#4&#"3265!#";!5326=467##"`yf-/F5q b;EaX`E < ^RAMppllDIFCmmIJ.V*O[ 9:;>3 !".#""&5463232#";!532654&+5!#";Ua@`;13\Ph,vME-+/:VX=,B=v2vMXGJQe"73PE@mmE@?>llADJ7&#""54632324&#";!532654&+5!3>32!"62.o^q\bQ~[[:Z_A54&#"3267#"&5463CYzs;N]v_F9 TD_mչnyZ^bO 2f_|XanWYhSY5> 5Ju^Rd43267#"&546323267#"&54>$654&#sF5 T@[gپ{y*wgnrUU5: 4Go^ҹݣcouR2Y~čT^od^"%&'.#""&54632>32#.#"!5% '%X3K<9=9NkFV^mwK2L?.H:{%lTBGX32#.#"!5% '%4U/%&-9yvg5!Ib:S_:&8+!@'}r\17B/LSd^,Z>LA:KE84!4'mmq&6$3 ! !2673# 32654&#"H9<M{}pcLj9TX!(L^÷`*.54632! !2673#"&#"32654&#U?}kA>m`XdV6bb`fcda("->=+(Vƃ3/01;!53265#""&546;54&+5!#"32#4&#%=*?V=V>++j_dm*?VV?*obZmSBCmmBCvWOno[BCllDA[qlPV|353265"&546;!#"!!GKh] hg)GJRmCBBN-PRp_l?>}3%+^#$%67#!654መ3!3#"&5376@O\dk`D3 %9I\ewh|)Avn Ζ,HMbd'! !"&'##.#"&&#"3265b   (1xj` ɼsgtmd`qtgN{hK 3$"gO]`dG)Nq`d%Fb97G2>54.+5!3>32#"&'#;!52654&#"34+%3 ;M`;fj76idu,+3-agYYe>Q00P 4,/8 lS&-/(B0Cؕ׌CYK/-&V ,4 mm7kejh3q'9d*!53265#;!532654&+5! !#";=S.cO<\'V>+,=VNXBCV>*+=Vm6< (H=mm><=@l5lCB-CBm5J./0 ##3#"&5454&+5! !#"3267#"&5-H׌ dIWqd (Z& Z'.:0(o<U0^Vgib]h''mGm,(lMmAd&!!5#5332#"&'!&#"3265d{˰,YA/tuhc2tJacw,2[7B4@R"&5463 !"&546332#~or[cvwjHaWqokPb'C:5q/C%2>7#"$&546$32#4.#"4>32#".fKu\E.lXZ vt:!A`>5V@aQ$,b<->#"=..="#>-#8F" 2+_P4ln%@W2&A03eR3R甔ޓIH/?&&?/.?&&?R1"&5463 !"&546332#4>32#".~or[cvwj->#"=..="#>-HaWqokPb'C:5/?&&?/.?&&?9s&)DR9R&)kbRFE>32+532>54.#";!532>5#"#!#'.+ET`3w}@=tl7';)$@Y5&J@5&V=V&{.>'  '>.zF  *fh+wAyeez@ F,4 mm 4,G%6"s"6%9s&fwRq2%2>7#"$&546$32#4.#"!!fKu\E.lXZ vt:!A`>5V@\S(1c#8F" 2+_P4ln%@W2&A03eR3Jφ{DŽA=J79-9R&-kMR.fCP #"&54>332>7>54.+5!#"32#!532>532>54.+%0GUe9JZ$2("92+ -;"}85m΃W6<_C9Je^}KOJ3$(85!;!532>54.+5!#"!4.+532>54.+T85m΃W6<_C9l7Dh=4.#";!532>5#"#!#'.+>32;BV&:\A&J@5&V=V&{.>'  '>.zI\m=iv?&Bm 4,OoG F,4 mm 4,G%6"s"6%  *f,4 m9s&wLR9Ts&D{RkL267!#".'!#"+532>7.+5!#">7>54&+5!X_ '`a' `')""=DQhYZ4i\F!)I5:%! CD+dk>tY55Yt>kd$>0W_=$w&8&* ll&.8 $PQN"*Y92J50l9R?=#";!"#4.#!532>54.+5!#"!4.+5?V%&V7R7 54.+532>54.+ '>.σW6<_CNs"6%7>7>32.#"2;#".'.#;!532>5"+532>7>3.'.#".54>323&VV("1' [7-OUb>+>'6/'303 "4/+-RH<338 OoO:07@((VfV&(@70:OoO 833+>bUO-7[ '1")1 ll 4,T qZP%#/?P &6V>@^C02G+1F,m2H0b-2N,4 mm1(2-0H2m,F1)+G20C^@>V6& P?/#%PZq JB".546332654.+532654.#"".54>32J};lm ,IiF(W^5S;AV38bH*DruÍN5ZyD9tM`3Uo;QaP\2DkI&9Y> 4Xs?&B47cK,(TYP}]='P_wj19TC ;!532>54.+5!#"54.+5!#";!532>5R&X=V&&VX&&XV&%V=X&RR,4 mm 4,)1 ll 4,/#,4 ll 4,"(1mm 4,9TkU267!#".'! ;!532>54.+5!#"54.+5!#";!532>5BX_ '`a' `h&X=V&&VX&&XV&%V=X&dk>tY55Yt>kdVRR,4 mm 4,)1 ll 4,/#,4 ll 4,"(1mm 4,9[!".'.#;!532>54.+5!#"2>7>7>32.#"2;1OuW@*/9('VRV&&VV'"1' Z8-OUb>VK6.'303 "4.,-RG<247 2H0b-2N,4 mm1()1 ll 4,T qZP%I8?P &6V>@^C02G+1F,mA!532>5! #"&54>332>7>54.+5!#";X'%0GUe9JZ$2("92+ -;"aV&&Vm 4,Xe^|JOJ3$(87.+5!#">7>54&+5!')""=DQhYZ4i\F!)I5:%! CD+J$>0W_=$w&8&* ll&.8 $PQN"*Y92J50l=x<9RF2#4.#!532>54.+5!#"!4.+5!#"3F?cGV&&VX&&XV%Rri1m1(,4 ll 4,H,4 ll0)'E%;!532>5#".54.+5!#"32>74.+5!#"F&V>V&G[oBgu?&AV&:[@'J@5&VV&,4 mm 4,` +f,4 ll 4,QnB ,4 ll 4,9C3532>54.+5!#"!4.+5!#"!4.+5!#";9V&&VC&&CB%'DV&%Vm1(,4 ll 4,H,4 ll0)H,4 ll 4,$(1m9RD%3#4.#!532>54.+5!#"!4.+5!#"!4.+5!#"#ć<^CV&&VC&&CB%'DV&}oi3m1(,4 ll 4,H,4 ll0)H,4 ll 4,#0#"32#!532>5#"#32>54.+}85΃' e>W6<_CNl7Dh54.+532>54.+532>54.+5!#";%}85mσW6<_C:V&&VV&&Vl7Dh54.+532>54.+%}85σW6<_CNl7Dh7!5!.#"".54>TS\}7pa .NnJR|T-&N}Z>Z::_D%:xmm4Xq>P\M_6Tz{ЎJ6Ui3,A*1[F*9u6J#".'!;!532>54.+5!#"!>3232>54.#"uVT&X=V&&VX&# [웜V?!JvTUuI!!HtTUwK!ݩlf 6,4 mm 4,)1 ll 4,t]k뫓TT擓SSm.;)532>5#+53267.54$)#";#";m=X%%Sl\C;i13aK-"V&&VnD`<:_Grm1(fIY0mMZB`Ql 1)(1ElNKqK&\dEb+);4>7>733>3 # %4.#"32>b-OzsLeC `B|wTzU7 DbNAʉ3T=>Q/cn=T3tҵoF  gyC!':UtL/R=#ʊGJfg44gf5h#J#0;732>54.+5!2#!%2>54.+4.+326#3+,3$?X4;kQ04ms>s4J05M21(@/\Lm 4,n)1m=\@% "?]ACqP-u-O<6H+{(?+d#J!%;!532>54.+5!#'.+(/-k3++3č !2#,4 mm 4,f,4 mX09RJ/:#"3#'.#!"#3>7>54.+5#!4+)6/ %5@!0G0 A.=";  Jm 4,$- MkCCkM#0l9zwk)&/ mul.I;1`;dI`V%32>5"+532>?>7.'.#".54>32354.+5!#"267>7>32.#";#"./.#;!3+ 1)&h"OdTV#5/+q<@C! $*-'$-1,!)C3=WE<"3@>9+3D/)8>?3"54&+532>54.#"".54>32#".54632H.r{9M/!6'/?'?T1'[pjr;!=X6A|xd+_k9T^ 9M-cf6F'%@/)DW.&6"$K='#EeA1WF4 znLzV/%@T0KS;fK+#dJC%;!532>5;!532>54.+5!#"54.+5!#"+4/((/3++3l/((/l4+,4 mm 4,\,4 mm 4,f,4 mm 4,L,4 mm 4,#dU267!#".'!;!532>5;!532>54.+5!#"54.+5!#"X_ '`a' `O+4/((/3++3l/((/l4+Jdk>tY55Yt>kd,4 mm 4,\,4 mm 4,f,4 mm 4,L,4 mm 4,##V[732>54.+5!#"267>7>32.#";#"./.#;!#3++3l/(2>@3">GY=3C)!,1-$'-*$!!CA<q,/6"VTlU#h$$((/m 4,f,4 mm 4,aO6V5##"&54>332>7>+:" 3++30(>'=K\:RZ!(-)/12 ^)2 mm 4,,4 mm 4,^M!KD"2!%5 6na*ptl#J83532>54.+5! !#";!532>5###;#3++3/6%"=..="h"=.r^}.="m 4,f,4 mRm 7--7 mm 7-wm-7 m#dJC%;!532>5!;!532>54.+5!#"!54.+5!#"+4/((/3++3l/((/l4+,4 mm 4,,4 mm 4,f,4 mm 4,,4 mm 4,`dS#;J1%!532>5!;!532>54.+5!#"3;/((/3+,33,+4mmm 4,,4 mm 4,n)1mm1),4 ^T`dG)`J##'.+;!532>5#"#T &u&25(w' JC0@&!)5 mm 5)&@0C^J]`1.5<2>=.54>754.+5!;!54&'>'3+ޜUPߐ,3шܚTPݍ+4{k4,S~}ȎR)1l> R|~ɐS,4mmX׾J\#RTJ8#"3#'.#!532>54.+5!#"!4.+5;4+)6/ %5@!'3,+3b/(j)/Jm 4,$- MkCm1(o,4 mm 4,)1m!PJA!532>5#".=4&+5!#"32>754.+5!#";#":+3]^f54.+5!#"!4.+D0(k(/b3+,3P3,+3b/(j)/Jm 4,,4 mm 4,(1mm1(o,4 mm 4,)1#RJJ!#"!4.+5!#"3#'.#!532>54.+5!#"!4.+D0(k(/b3+)50 %5A!3,+3b/(j)/Jm 4,,4 mm 4,$- MkCm1(o,4 mm 4,)1)}J#.#"32#!53265#"#2>54&+"=._L9ruPKHw' F3G-f^Ju 0$Aw`EvV1mBA&@0C^-1P9aQ}#J*J#"32#!532654&+52>54&+532>54.+5!#";"=._L9ruyLHKIR3G-g]i3++3/((/Ju 0$Aw`EvV1mBAhG>m-1P9aQ}wm 4,f,4 mm 4,,4 m#J*#"32#!532654&+52>54&+"=._L9ruPLHKI{3G-g]Ju 0$Aw`EvV1mBAhG>m-1P9aQ}Fb0%2>7!5!.#""&54>32#".5463,C/d(B2*?*ha*]iqy@Gou]&fd0G^*asU`3-HX+NA)O?&=Г<%@T0KS;fK+#d2D#".'!;!532>54.+5!#"!6$3232>54&#"rK(/3++3w/(wF@.J66I.Xk6I-)AŅ,4 mm 4,f,4 mm 4,Fאmp99pm7nJ <";#532>7.54>3!#";!532>=#\->&'=-Ts^,'%)SC*1lyYJ 8*n"=.l0C(,H3y9I*m. ! ,Fc@DlK(m>?1&mm 7-`;!&ID`;&IkJ";!532>5#5354.+5!!!3>32+532>54.3D)&7"";+,3>ENW0O~W.Hj' 0K3'?y4Xs?+4 mm 8.l)1ll(['.,:B! .`gTm.$TidBgG%#!&w#`d0".54>32#4.#"!!32>7\qJMjcf5;gP 3'*E2d su5]L9.a:؝ކ9!:O-!?05`H+&\s-=#3'PA)=bW#)M&k)NJ>I4.+5!#"32#!5327##"&54>332>7>2>54&++:""!=.^M9ruy>'=K\:RZ!(-)/12 3G-g^h^)2 mu -"Aw`EvV1mv^M!KD"2!%5 6na*ptl?1P9aQ}#-JBM#"32#!5325!;!532>54.+5!#"!54&+52>54&+}"=._L8sum(/3++3b/(NE33G-f^iJu 0$Aw`EvV1m|,4 mm 4,f,4 mm 4,B;m-1P9aQ}!##!& w#d!& DS267!#".'!"+52>7.#5!">7>54ZX_ '`a' `/& $NOO%$@GVre#khC "(HtY55Yt>kdm#9+ffcnH+w4`Q"ym-/+ee^$'?3+3/%  /#m#R;J;";!"#4.#!532>54.+5!#"!4.+5!#4+,3gr%B\73,+3l/(V(/l 4,(1mri1m1(o,4 mm 4,,4 mmq.#"!27!3 #""&5463 !"'# !2XRzi+izRj~ zz -B7BRkdHkek~~ZTlJb^!654'432#&# #"'632'Bgl L͋I%-(CJ|ilj j$TfDdu&.3 )53265#"#!54+5!#"!#'&#324&+Ӂ!V80C  fhVVhf  DdrN)gm5R5TBllBTP"32#!5325#534+5!!2654+P>eWĒmml m_r}94# !;!53254+5!#"!!2#4&# !!32# hXRViiVXh7r2wumR:ps]6mm}llt9YkPb~}#d/!;!53254+5!#"!!2!#"!!327# j Խe Z1ոmmfmmw`u@\X%!;!5254'###3!53267!'&'!8j%jV=_?DD -55#.7JmmO%3DuA4OmmDQ7VJ$#3!53267!3!5254/##3'&'1cL-4*l-kXn5); 97:;mm4aHbmmA+/oZ[;9 Z6=353254+5!#"!!;!5254'###3!53267!;!'&'9ViiVXh!8j%jV=^PDD hB}-55#.7m}llt}JmmO%3Du>7OmmDQ6m9#J18#3!5326?!!53254+5!#"!!3!5254/##3'&'?1bL,3,k+j-kXo5)<598;mm1dmfmmbmmA--oZZBx\-0!5325"+532676%5!;#"&'&#;!HVC.x @J*[2u`5].I= u0?VHj6mz՗oTmWa1lliOmQrbjmP^J.2%325"+5326?6?5!;#"&/&#;!3!%wd2J(Z>@"PHN?@GP9gZ&J1dvP  miZmI.(k5mm}lltlliOmLwb+zmmjtOmQg1>(#J@D%325"+5326?67!!53254+5!#"!5!;#"&/&#;!3!wg.J'Z>@"P{+j@?HP9f[&J1dwP  mg\m#hH'hgmjlkm̸wVymL2G;i;)Rm`d 4"!2%24&#""!#5267!"67654#5\WlgY^bHq#>#hH'%;ÁDmɵwVymL2G;i>&Rmq-7!#"'$%6326'#"'632.$qo)E#uu+bb)*cg*|{*uuTUtNSPZXTUX`#"'$%6326'#"'632 EdbNgf#DA%!EI\B3235654&5432#"!233 #""&5463 ! '! !2 )|9X rI9rwca}fR`5`Rj~ zz p\q@$236O|RkdHkekZTlJb`VFJ#"$#"#>3235654&543232654&#""54632!"'# 32#4#"327`)|9X rI9rwca}RPՎxO_{ϳ㄄㊱z_OxQվp\q@$235P}FӶ[gړ) .hZq <#'##'##'5#"!27!3 #""&5463 !"'# !23R#11#12"PdRzi+izRj~ zz gggg)B7BRkdHkek~~ZTlJb /#'##'##'5654'432#&# #"'632'R#11#12"PBgl L͋I%-(Cgggg|ilj j$TfDdq"532=$!2#4&#"3273;'VhuMwuleV hVlL\kPb)Pl`d!$!2!#"3273d3rY Cy^323+J35 WJw+/w) '1;EO&#"#632&#"#632!&#"#632&#"#632!&#"#632&#"#632!&#"#632&#"#632oK L/L~K L ~L/~L~KXXXXXXXXXX XXXXXX)} ")07'673'&'7%7677&'&'5&''67#67q +Pa2TCCk\EzҌhҌ1QFCnY#Ez )Ra2uҌF~+UCDmY +Pa2; )Ra2hFz)QGDmYҌ9Rj 8!! !32;!53254+5!#"54+5!#";#!5325RPbiX=ViiVXiiXVhh۵Xij?VRRmm}ll/#ll"z#m#R 8!! !325325;!53254+5!#"54+5!#";#RPyllA۴@m\mmfmmLmm#9!!3 )5325#53324&+;2΁!ViCerNlgmle'32#!5325#53!!2654+P7>eWĒmm m_r}9&'+;!53254+5! 327'7654&+pZP\Fm}ViiVu/^2>.dZjLuPX= zmm}lN =Kʪ^!1254+5!363 '#"'#;!5327'76#"3% c^Zw`-a _Z_Epc_Hm<]>Fmm>a99!!;!532>54.+5!2>?3-'V&&V8H,9(1mm 4,,4 l0E*\#\!;!532>54.+5!2>?3(/-k3++3A$1" 1,4 mm 4,f,4 m&@0le9#'&#!!!;!5325#534+5s,#iViiVobl(|mmll#J3#;!532=#5354+5!#'.+-kč 8MZlmmlmXZ59,#'&#!63 ! 54633 4#";!53254+5s,>7O~+qZ,)б1:iViiVobGW' M|mmӅl#J,3265#";!53254+5!#'.+63 !"&54fMve=>-kč :EO_}d mmfm=a x[RuRS4+5!#"26632&#"2;#4.'.#;!5325"+532763&&#"&54323iVVkfzme[5TEkgr/G?-`[kVfVi]^-B tekET8Yemzf}llTezjPu+׸ŭksR-Nmmz/PxKm)+Ujz6fRwVRS4./.#;!5325"+5326?67&#"&5432354+5!#"26632&#";H?{'DKCH,h8VIP2q^9;SyfzHZD[G{fyT;7]p'QSRǬjsH9mm0Qh[m5T-,ir}^>mm?@`}qi*CFJBQ!3#"5473254'".546332654.+532654.#"".54>32敷-'V'};lm ,IiF(W^5S;AV38bH*DruÍN5ZyD9tM`iTXoh3Uo;QaP\2DkI&9Y> 4Xs?&B47cK,(TYP}]='P_wj1FBbR!3#"5473254'2>54&+532>54.#"".54>32#".5463-'V-2H.r{9M/!6'/?'?T1'[pjr;!=X6A|xd+_k9TiTXo 9M-cf6F'%@/)DW.&6"$K='#EeA1WF4 znLzV/%@T0KS;fK+9R3;!53254+5!#"26632&#"2;#4.'.'jVRViiVVjbvmd\5TEkgr#T@/ONmmz}llTZzjPv,׸ףeqU*#R%V34./.#;!53254+5!#"26632&#";H?{):?lVJȀhyS;:]q3QGRǬjsK6mmfmmC:b}ri-V39 7#;!53254+5!#"336632&#"2;# '&'#jCjVRViiVVjC{OudZ5TEkgr j1,{Nmmz}llTA ꌁjPu+׸mbZ#`V:'#;!53254+5!#"35376632&#";#"&/&'#H $lDt ȂgyT;7]p'QSVح9i tmmfmm 9d}qi*CFm[h8 9826632&#"2;# '.#;!5325#5354+5!#"3'bvmd\5TEkgr j.PUjVRViiVVjXZzjPv,׸mbU*Nmmzqm}llm#654+5!!!26632&#";#"&/.#;!5325#5͒>VJȀhyS;:]q3QGVڭ8h%;B }llC:b}ri-V3m\gEm2]X\mC:b}ri-GBm\gN3m9RZ/!5325!;!53254+5!#"!4+5!#";#4&#XiiX=ViiVXiiXVhh\xm6mm}lltll"z#RdJ0%;#'.#!5325!;!53254+5!#"!54+5!#" hPll啁mmmfmmmm9Z-.#'&+;!5325!;!53254+5!#"!4+5Ls,thV=XiiX=ViiVXiiXobzmm6mm}lltlJ#oJ./%;!5325!;!53254+5!#"!54+5!#'.+lw 8MmmmmfmmmXZ5/963 4#";!5325!;!53254+5!#"63 ! 5467-)б1:hV>XhiX=ViiVVh>7O~+oj' KzmmGmm}llVFX#;J53265#";!5325!;!53254+5!#"63 !"&54sdNve=>Q]}c mmmmn}mm}x[q)1%327#"'# ! &#"327&4326#"%RTa0%ţvx{#-f~&"5ur{^1=0uXjlc2*>MwFYu`^(0%327#"'# !2&#";&5463265#"bDLM%!loZ+>T#ҳLVZZ")ZC* +X1!=\qB>!3#"54732542>7#"$&546$32#4.#"-'V\Ku\E.lXZ vt:!A`>5V@aQ$,biTXo#8F" 2+_P4ln%@W2&A03eR3R甔ޓI`Bd<!3#"54732547".54>32#4.#"32>7˕-'VqJMjcf5;gP 3'-G3r5]L9.aiTXok:؝ކ9!:O-!?05`H++h-=#3'PA)R%%;#4&#!5325#"#!#'&+?i\xVi  mGs)R`J'.#!5325#"#!#'.+; hPw81    .5=mm0SlR'35325#"#!#'&+!4+5!#";#4&#Vh\ l \i/Vhh\xmGsDHll"z)RJ)%4+5!#"3#'#!5325#"#!#'.+sN/ P:81    .<7u}mmomF`C^CZL'R -%325#"&54+5!#"3274+5!#";#4&#!BVhiAVhgz~hVVhh\xm`Hll1ll"z!RhJ,!5325#"&=4+5!#"32754+5!#";#'##ڶZkm/ m{ӋmmVmm'/%;!5325##"&54+5!#"3674+5!#"FhV>Vh[_{8iAVh{YahVVhmm`'5llH &ll!PJ1!5325#5#"&=4+5!#";536754+5!#";#S3tFPZt1Umm3Ϥ{Ӌmmм0mmm9)4+5!#"632;!532=4&#";!5325iVVihBQViiviV=ViŅllHmm1mm#RJ(#"632;!532=4#";!53254+5#ٶkJm|ӋmmVmm^mh%# #"&5432;! !!2!!"%9gZcxC-!flVsh,<>d;Ld#$#"&5432;!2!!27# !#"q ;3` X8ؼ2bWxj.;iwFbyN!Rh#)#4&'$#"&5432;! !!2!!"%ce9gZcxC-!iշQsh,<>d;RLd#()#4&'$#"&5432;!2!!27!#"χVm ;3` X8LbWR8oxj.;iwFpy@N!9-Rk267!#".'!4.+5!#"2>7>7>32.#"2;#".'.#;!532>5"+532>7>3.'.#".54>323)X_ '`a' `5&VV("1' [7-OUb>+>'6/'303 "4/+-RH<338 OoO:07@((VfV&(@70:OoO 833+>bUO-7[ '1"dk>tY55Yt>kd1)1 ll 4,T qZP%#/?P &6V>@^C02G+1F,m2H0b-2N,4 mm1(2-0H2m,F1)+G20C^@>V6& P?/#%PZq `267!#".'!32>5"+532>?>7.'.#".54>32354.+5!#"267>7>32.#";#"./.#;!X_ '`a' `3+ 1)&h"OdTV#5/+q<@C! $*-'$-1,!)C3=WE<"3@>9+3D/)8>?3"tY55Yt>kd# 4, 2*@M) m 6*.@*!,;');&:/!.-#!iX=ViiVXiiXVhTz~+6mm}lltll#dJ/%!"&5473265!;!53254+5!#"!54+5!#"˪pUll1mh| mmfmmmm9RT.%#!5325!;!53254+5!#"!4+5!#";T۴XiiX=ViiVXiiXVhhVJm6mm}lltll"z#RdJ.%;#!5325!;!53254+5!#"!54+5!#"۴:ll#mmmfmmmm'R-!"#325#"&54+5!#"3274+5!#";Ɏx]hiAVhgz~hVVhhVzkHll1ll-m!RPJ-#"&=4+5!#"32754+5!#";!"#325oڶZkmNi /{ӋmmVmmm9R)*%#!53265#;!53254+5! !#";۴R/cO9_ ViiVNTFCVhhJm6< DAmmz}l#l-m#RJ)*353254+5! !#";#!5325###;!#/6%Dܵr^}mfmRm#mwmm9-k;H267!#".'!;!532>7!;!532>54&/.'! X_ '`a' `;!V-'#!',%\P  H   ydk>tY55Yt>kdEC mm !:.J+9!mm .#MPO$JNN$\ Q267!#".'!32>=""&54>32;!'##".546?54.CX_ '`a' `Q8<,G3\=T2'5 CsWlk6 0"+"tY55Yt>kdXX%Da<!:T~!;Q0>K8P2%R`*8!m)=((S}Uq3V>"R&%kR\&Ek\d9k7267!#".'!!2>?3!532>54.+5!#'.#!!!X_ '`a' `, PV&&Vq tY55Yt>kd*9"`m1(,4 laKP{`;<267!#".'!"!4.".54>32!32>7VX_ '`a' `bVeb'=džDDyo|Ba'Ec@5ZI770dJdk>tY55Yt>kdN|V. LцڒI?|zig`.-=#F,O<$q`&54$3 ! 5!!"!!2>Skj  "eth;dV1d!!"&5463 !"5!32V X8ؼBFbyq`R&k\RV1&kRR&kR`&kbJR&k RF&kJ !"#! !"$5433 !#`@ -#ա"+:S<讂;!1'J !"#!#"&5433265!#`o?9}9ˍogL-R>/ ScrǴ\9TG!5!;!532>54.+5!#"54.+5!#";!532>5qR&X=V&&VX&&XV&%V=X&+%RR,4 mm 4,)1 ll 4,/#,4 ll 4,"(1mm 4,#d{G!5!;!532>5;!532>54.+5!#"54.+5!#"R+4/((/3++3l/((/l4+٢w,4 mm 4,\,4 mm 4,f,4 mm 4,L,4 mm 4,9TR&kR#d& kuqR&3kR`&Sk#q  ! !! !! 'iOCoaFWTeenkMt`d "! !#"!32qT%;p#iqR&kR`&k#LR&kRF&k>!5!#"+532>7.+5!#">7>54&+5!Rr')""=DQhYZ4i\F!)I5:%! CD++}$>0W_=$w&8&* ll&.8 $PQN"*Y92J50l{E!5!"+52>7.#5!">7>54R/& $NOO%$@GVre#khC "(H7!35>7!#"+532>7.+5!#">7>54&+5!//* '29:70/* '29:7')""=DQhYZ4i\F!)I5:%! CD++!LPN"18;82!LPN"18;82$>0W_=$w&8&* ll&.8 $PQN"*Y92J50l!a5>7!35>7!"+52>7.#5!">7>54//* '29:70/* '29:7/& $NOO%$@GVre#khC "(H7 .+5!#"7>-I}*0/0y(V&\ {"8D %81.f!)2##/ %Vp?!  ll#8*k?-mmC ,!C "#mm%5!)ll  @#EmJ S%#"54732=4&+5!#";!53254./;!532>7 .+5!#"7>-I}90//2!-/O&t {u:E%812+V/#- raVp?! J%mm 3(;1mmC  +4"#mm 2&7J66mm  )u895!#"!!;!53254' ;!5327!5!&+5!#"7654#ajX?F^\ {D5| il`4Fjy67sJll}llmmC+bH5Emmlmll<&RM0<J;5!#"!!;!53254/;!53267!5!'&+5!#"7654# ;OE'UOt {Nu+EXBT\t/ra3imm0SllmmC/^61Emm2Q7llmm;$:u>5=`1>2#"54;!532>7!;!532>54&/.'!ŰY;!V-'#!',%\P  H   yyZC mm !:.J+9!mm .#MPO$JNN$\`dG2#"5432>=""&54>32;!'##".546?54.F8<,G3\=T2'5 CsWlk6 0"+"K8P2%R`*8!m)=((S}Uq3V>";H#'654#""54632;!532>7!;!532>54&/.'!RPEZxO;!V-'#!',%\P  H   yyo[\LJ4=AC mm !:.J+9!mm .#MPO$JNN$\ Q#'654#""5463232>=""&54>32;!'##".546?54.PEZxOg8<,G3\=T2'5 CsWlk6 0"+"K8P2%R`*8!m)=((S}Uq3V>">K673#67!#&'#;!532>7!;!532>54&/.'!U >RHEZcz;!V-'#!',%\P  H   yvS[ksq`RYYC mm !:.J+9!mm .#MPO$JNN$\#T673#67!#&'#32>=""&54>32;!'##".546?54.TU >RHEZcz8<,G3\=T2'5 CsWlk6 0"+"K8P2%R`*8!m)=((S}Uq3V>">K#&'5367!#&'#;!532>7!;!532>54&/.'!"RH!SHEZcz;!V-'#!',%\P  H   ydbUt‘sq`RYYC mm !:.J+9!mm .#MPO$JNN$P#T#&'5367!#&'#32>=""&54>32;!'##".546?54.RH!SHEZcz8<,G3\=T2'5 CsWlk6 0"+"K8P2%R`*8!m)=((S}Uq3V>"+GT#'654#""543267!#&'#;!532>7!;!532>54&/.'!tZ Z73@HEZcz;!V-'#!',%\P  H   y7`H577Tcsq`RYYC mm !:.J+9!mm .#MPO$JNN$\,]#'654#""543267!#&'#32>=""&54>32;!'##".546?54.Z Z73@HEZcz8<,G3\=T2'5 CsWlk6 0"+"K8P2%R`*8!m)=((S}Uq3V>"wHU3#"&#"#>323267!#&'#;!532>7!;!532>54&/.'!hP$RhP#QHEZcz;!V-'#!',%\P  H   yic`Qc`/sq`RYYC mm !:.J+9!mm .#MPO$JNN$\%-^3#"&#"#>323267!#&'#32>=""&54>32;!'##".546?54.}hP$RhP#QHEZcz8<,G3\=T2'5 CsWlk6 0"+"K8P2%R`*8!m)=((S}Uq3V>"`s JW2#"54>7!#.'#;!532>7!;!532>54&/.'!ŰxA@99@@:>;;=9;!V-'#!',%\P  H   yyLQQ""QQL.2222.C mm !:.J+9!mm .#MPO$JNN$\`! /`2#"54>7!#.'#32>=""&54>32;!'##".546?54.FA@99@@:>;;=98<,G3\=T2'5 CsWlk6 0"+"K8P2%R`*8!m)=((S}Uq3V>"=J673#'33273#"&;!532>7!;!532>54&/.'!U AR{y+;!V-'#!',%\P  H   yJvS^itttC mm !:.J+9!mm .#MPO$JNN$\"S673#'33273#"&32>=""&54>32;!'##".546?54. U AR{yt8<,G3\=T2'5 CsWlk6 0"+"K8P2%R`*8!m)=((S}Uq3V>"=J#&'5333273#"&;!532>7!;!532>54&/.'!HRL U{y+;!V-'#!',%\P  H   y/afSvtttC mm !:.J+9!mm .#MPO$JNN$\"S#&'5333273#"&32>=""&54>32;!'##".546?54.RL U{yt8<,G3\=T2'5 CsWlk6 0"+"K8P2%R`*8!m)=((S}Uq3V>"^FS#'654#""543233273#"&;!532>7!;!532>54&/.'!:[ Z71?<{y+;!V-'#!',%\P  H   yR7`I577Tb=""&54>32;!'##".546?54.w[ Z71?<{yt8<,G3\=T2'5 CsWlk6 0"+"K8P2%R`*8!m)=((S}Uq3V>"wGT3#"&#"#>323233273#"&;!532>7!;!532>54&/.'!oN>:oQ;<{y+;!V-'#!',%\P  H   yib`Qb`tttC mm !:.J+9!mm .#MPO$JNN$\%,]3#"&#"#>323233273#"&32>=""&54>32;!'##".546?54.oN>:oQ;<{yt8<,G3\=T2'5 CsWlk6 0"+"K8P2%R`*8!m)=((S}Uq3V>"`mCP2#"54".'332673;!532>7!;!532>54&/.'!ŰQyR*dLKd*Ryc;!V-'#!',%\P  H   yy9\s:KAAK:s\9C mm !:.J+9!mm .#MPO$JNN$\`(Y2#"54".'33267332>=""&54>32;!'##".546?54.FQyR*dLKd*Ry8<,G3\=T2'5 CsWlk6 0"+"K8P2%R`*8!m)=((S}Uq3V>"9`-2#"547!2>?3!532>54.+5!#'.#!!!I, PV&&Vq 32!32>7gVeb'=džDDyo|Ba'Ec@5ZI770dyXN|V. LцڒI?|zig`.-=#F,O<$97#'654#""54632!2>?3!532>54.+5!#'.#!!!PEZxO, PV&&Vq 32!32>7PEZxOVeb'=džDDyo|Ba'Ec@5ZI770d'o[\LJ4=N|V. LцڒI?|zig`.-=#F,O<$9oE2>73#".#"#>32!2>?3!532>54.+5!#'.#!!!N#(C[77YMC!#)C\77YMC, PV&&Vq nS0(1('>nS0(1(*9"`m1(,4 laKP{`;(J2>73#".#"#>32"!4.".54>32!32>7#(C[77YMC!#)C\77YMCVeb'=džDDyo|Ba'Ec@5ZI770d'>nS0(1('>nS0(1(CN|V. LцڒI?|zig`.-=#F,O<$9:673#67!#&'#!2>?3!532>54.+5!#'.#!!!tU >RHEZcz, PV&&Vq 32!32>7RU >RHEZczbVeb'=džDDyo|Ba'Ec@5ZI770dvS[ksq`RYYN|V. LцڒI?|zig`.-=#F,O<$9:#&'5367!#&'#!2>?3!532>54.+5!#'.#!!!RH!SHEZcz, PV&&Vq 32!32>7RH!SHEZczbVeb'=džDDyo|Ba'Ec@5ZI770ddbUt‘sq`RYYN|V. LцڒI?|zig`.-=#F,O<$9+C#'654#""543267!#&'#!2>?3!532>54.+5!#'.#!!!Z Z73@HEZcz, PV&&Vq 32!32>7Z Z73@HEZczbVeb'=džDDyo|Ba'Ec@5ZI770d7`H577Tcsq`RYYN|V. LцڒI?|zig`.-=#F,O<$9wD3#"&#"#>323267!#&'#!2>?3!532>54.+5!#'.#!!!hP$RhP#QHEZcz, PV&&Vq 323267!#&'#"!4.".54>32!32>7{hP$RhP#QHEZczbVeb'=džDDyo|Ba'Ec@5ZI770dc`Qc`/sq`RYYN|V. LцڒI?|zig`.-=#F,O<$9`s F2#"54>7!#.'#!2>?3!532>54.+5!#'.#!!!A@99@@:>;;=9, PV&&Vq 7!#.'#"!4.".54>32!32>7iA@99@@:>;;=9bVeb'=džDDyo|Ba'Ec@5ZI770dymLQQ""QQL.2222.N|V. LцڒI?|zig`.-=#F,O<$91#'654#""54632532>54.+5!#";PEZxOV&&VV''Vyo[\LJ4=`m 4,,4 mm 4,.,4 m#*#'654#""546322>54.+5!;!5PEZxO3+,3+4u'o[\LJ4= 4,n)1m,4 mm9`'2#"54'532>54.+5!#";V&&VV''Vyym 4,,4 mm 4,.,4 m#`)42#"544>32#".2>54.+5!;!5_/?%#@00@#%?/u3+,3+4uy'8##8'&8$$8 4,n)1m,4 mmq`/2#"54#"$&546$3232>54.#"!h[VV[&T_`R%%R_`T&yVllkk뫓TT擓SS``d+2#"54!".5!232>54.#"s{ĉI{ÉI3R;;Q33R;;R2yGؐ!Fאmp99pmnn77nq%9#'654#""54632#"$&546$3232>54.#"lPEZxO[VV[&T_`R%%R_`T&yo[\LJ4==llkk뫓TT擓SS`!5#'654#""54632!".5!232>54.#"PEZxO+{ĉI{ÉI3R;;Q33R;;R2'o[\LJ4=Gؐ!Fאmp99pmnn77nq(<673#67!#&'##"$&546$3232>54.#" U >RHEZcz#[VV[&T_`R%%R_`T&vS[ksq`RYYllkk뫓TT擓SS`$8673#67!#&'#!".5!232>54.#"ZU >RHEZcz{ĉI{ÉI3R;;Q33R;;R2vS[ksq`RYYPGؐ!Fאmp99pmnn77nq(<#&'5367!#&'##"$&546$3232>54.#";RH!SHEZcz#[VV[&T_`R%%R_`T&dbUt‘sq`RYYllkk뫓TT擓SSV$8#&'5367!#&'#!".5!232>54.#"RH!SHEZcz{ĉI{ÉI3R;;Q33R;;R2dbUt‘sq`RYYPGؐ!Fאmp99pmnn77nq+1E#'654#""543267!#&'##"$&546$3232>54.#"Z Z73@HEZcz#[VV[&T_`R%%R_`T&7`H577Tcsq`RYYllkk뫓TT擓SS`-A#'654#""543267!#&'#!".5!232>54.#"Z Z73@HEZcz{ĉI{ÉI3R;;Q33R;;R27`H577Tcsq`RYYPGؐ!Fאmp99pmnn77nqw2F3#"&#"#>323267!#&'##"$&546$3232>54.#"5hP$RhP#QHEZcz#[VV[&T_`R%%R_`T&ic`Qc`/sq`RYYllkk뫓TT擓SS`%.B3#"&#"#>323267!#&'#!".5!232>54.#"hP$RhP#QHEZcz{ĉI{ÉI3R;;Q33R;;R2c`Qc`/sq`RYYPGؐ!Fאmp99pmnn77nq`s 4H2#"54>7!#.'##"$&546$3232>54.#"!A@99@@:>;;=9#[VV[&T_`R%%R_`T&yLQQ""QQL.2222.llkk뫓TT擓SS``! 0D2#"54>7!#.'#!".5!232>54.#"sA@99@@:>;;=9{ĉI{ÉI3R;;Q33R;;R2ymLQQ""QQL.2222.PGؐ!Fאmp99pmnn77nqs&AwPR`R!&Bwqs&ADdR`R!&BDq*2#'654#""54632654&5432! !  ! lPEZxO{pFW/iOM\yo[\LJ4=4H'XF{kZmkeelk`R(1#'654#""54632654&5432!"! 2#"PEZxORqGWXpe'o[\LJ4=/8)QJ{jZojq%; Dqo8@2>73#".#"#>32654&5432! !  ! #(C[77YMC!#)C\77YMC؁pFW/iOM\'>nS0(1('>nS0(1(4H'XF{kZmkeelk`R6?2>73#".#"#>32654&5432!"! 2#"#(C[77YMC!#)C\77YMCORqGWXpe'>nS0(1('>nS0(1(/8)QJ{jZojq%; Dq`) (2#"54654&5432! !  ! !pFW/iOM\y4H'XF{kZmkeelk``R'2#"54654&5432!"! 2#"sRqGWXpey/8)QJ{jZojq%; D!`=2#"54#"#".54.+5!#"32>54.+5!xX&;}†ӒM%XV&+PpFDnM*&Vy 4,gr=3p~)1 ll 4,VuG#JrN#)1 l5`#J72#"54%'##"&54.+5!32>54.+5!;- HR[0"5%$<-1G-(6$2yy5A# -8 mpBjK)+QsH-4m-3m!G#'654#""54632#"#".54.+5!#"32>54.+5!TPEZxOX&;}†ӒM%XV&+PpFDnM*&Vyo[\LJ4= 4,gr=3p~)1 ll 4,VuG#JrN#)1 l5#A#'654#""54632'##"&54.+5!32>54.+5!;PEZxO - HR[0"5%$<-1G-(6$2'o[\LJ4=5A# -8 mpBjK)+QsH-4m-3m!s&Pw9R5/!&Qw!s&PDdR5/!&QD!9#'654#""54632654&5432! 4+5!#"! 4+5TPEZxO%pFWhXVh1)hVyo[\LJ4=y'XF{kZF}ll-#}l5/?#'654#""54632'## 4&+5!324&+5!654&5432;PEZxO - \7Uǜ5_qFX.['o[\LJ4=OBmp7>Emz)QJ{h\=Dm!oG2>73#".#"#>32654&5432! 4+5!#"! 4+5#(C[77YMC!#)C\77YMCZpFWhXVh1)hV'>nS0(1('>nS0(1(y'XF{kZF}ll-#}l5/M2>73#".#"#>32'## 4&+5!324&+5!654&5432;N#(C[77YMC!#)C\77YMC]- \7Uǜ5_qFX.['>nS0(1('>nS0(1(dOBmp7>Emz)QJ{h\=Dm!`)/2#"54654&5432! 4+5!#"! 4+5pFWhXVh1)hVy/y'XF{kZF}ll-#}l5`/52#"54%'## 4&+5!324&+5!654&5432;- \7Uǜ5_qFX.[yyOBmp7>Emz)QJ{h\=Dms&=D7R!&]D`B2#"54'532>5.+5!#">?>54&+5!#";ɰ`+  )#>= )7"w CD/'%!#)eyym2+* ll2*=Ad06E-=50ll$>0Z-2mJI2#"54"+52>7.#5!">7>54/& $NOO%$@GVre#khC "(H5.+5!#">?>54&+5!#";)PEZxO`+  )#>= )7"w CD/'%!#)eyo[\LJ4=`m2+* ll2*=Ad06E-=50ll$>0Z-2mS#'654#""54632"+52>7.#5!">7>54PEZxOT/& $NOO%$@GVre#khC "(H73#".#"#>32532>5.+5!#">?>54&+5!#";#(C[77YMC!#)C\77YMC`+  )#>= )7"w CD/'%!#)e'>nS0(1('>nS0(1(m2+* ll2*=Ad06E-=50ll$>0Z-2ma2>73#".#"#>32"+52>7.#5!">7>54#(C[77YMC!#)C\77YMC/& $NOO%$@GVre#khC "(HnS0(1('>nS0(1(m#9+ffcnH+w4`Q"ym-/+ee^$'?3+3/%  /#m+#+V!#'7'77'+V5555X7777 '7##!'77RJ75}o}7L) ##'7!)T77L}57}3H5!3\1!5!? o!5! ݒ o!5! ݒ b!5! yd'`$`dT!5!!5!T^^yysD4>7#"&s(Wd-C-"&"U?We%AzhSj %-#6)EHx\D5>54.54632(Xd-C-!'!T?WfAzhSj %-$5)EHx\7%5>54.54632(Xd-C-!'!T?WfVAzhSj %-$5)EHxsD4632.seW?U"&"-C-dW(ixHE)5$-% jShzsD/4>7#"&%4>7#"&(Wd,D-"&"U?WeT(Wd-C-"&"U?We%AzhSj %-#6)EHxiAzhSj %-#6)EHx\Dw/5>54.546325>54.54632(Xd-C-!'!T?Wf(Xd-C-!'!T?WfAzhSj %-$5)EHxiAzhSj %-$5)EHx\w7/%5>54.546325>54.54632(Xd-C-!'!T?Wf(Xd-C-!'!T?WfVAzhSj %-$5)EHxiAzhSj %-$5)EHxsD!632.5$632.5eW?U/gJjTeW?U/gNf>xHE8H8#3F'j1ΒixHE8H8#5G$j1ΒH#4'&'75!%%k^lJNlye{95B59H)-%!5'67>7.'&'75!%%lNJl^##^lJNlb% %:5C5:SBCP 95C59 OBES s4>32#".s,Ol@32#".%4>32#".%4>32#".->#"=..="#>-o->#"=..="#>-o-=#"=..="#=-/?&&?/.>&&>./?&&?/.>&&>./?&&?/.>&&>#!+ToPN)5!#NTP###!V ###!!!VtP !!5!###tVPNF 5'+?Sg{#".54>3232>54.#"#3#".54>3232>54.#"#".54>3232>54.#"'.[]aY**Zb\\- 5%'3 3&&5!^ž.[]aY**Zb\\- 5%'3 3&&5!5.[]aZ**Zb\\-!4&&4 2&'5!gxBBxggw@@wgT[00[TRZ//ZgxAAxggw@@wgT[00[TRZ//ZRgxAAxggw@@wgT[00[TRZ//Z L !#!#!#>Zg=Zf>Z33N3#9ϐ^effeN #3NƏϏ:7V=".'#53=#53>32#4.#"!!!!32>7ieymmwdf[d5!A^>$;,+M=) y-1UF5&U=֚?@Ձ6$@V2#?00dQ4$_D;-=#1'PA)7X.P5267#3#53267.+533#";%;!532>5##7!#'.'#)#*G*(/  N  # Z <V<",^7#9=)77% 979 )7v77  11*^ #&'5673!9>HH>9DH$HDV^ &'3#67!59>HH>9#DH$HDV !! !!5>Q>t^`G  G`R 5!7'!5!7 '^^t>Q>57`RR`GG`+7K"".54>32#".54>323>54.2>7.#"4O5>W6+SxNz{=!cffV%9Z}fe%  ?_7jYC +9&7YE3!RD-FU(*71R;!O׉ ^tHeI=fH8~a;HE  _vB3Uf&D30Ogml.crd5)5!%.'5/$51 1[KJ_9T1532>5!;!532>5.+5!#";X&&X=V&%VV&$Vm 4,3,4 mm 4,)1 ll 4,7)1mL2>?3!5 5!#'.#!f0>' v w x ,D06H*>5X(?+Vp%!5!o+3ݠ۞3{z ?##5!3."{eH`!1A#"&'#".54>32>32%"32>54.267.#"`.SuG_J?[FvV/.TvI/]YQ"?gFtS.It;5vO,G23GFEz95xO+E10HPPk>uy{7eZRi=;\Bww8f}(F]55\D' |(F]53[E)`3!!^j8^4>32#4&#"rуwfŠX?".54>332654.54>7>32#4&#"KlE!4WA !*?  Al^4WA(.' 0A$6*-N8 DIBr(z}?\H8,dgBmQ3N?~ufO1^7},.#"#463232673#.#"#463232673#jf`26<M32: J86<R32: ;ZXp}atzг=cq}guxг73!!!!#7!5!7!5987/BE55PCmӏӏdHP 5!5!5!d8d )5!5 ool!Tߡ )5!%5 5oloDdi!T{Z!!{!!!!!7L17}1mh{!!hmh{!!!hKPb!!L! XVRZ 7L LRZZ79e7+ !# 3 `^5^NJ%'-)4>32#".732>54.#"wx{yy{xwV`bcb`c``dyyyyxyy{b``bcbbbV^R'/7?GOW_gow#"5432'#"5432#"5432#"5432#"5432#"5432#"5432#"5432#"5432#"5432#"5432#"5432#"5432%#"5432#"5432'#"5432377349947575#3773865567557R75577667377349944976#58856556\677675577667667+557775555885Z557w55763:C558337775555776557737+558# 2#"54>jmsoujlw)3!32>54.#")wvuwwwvu}Bwwwutww)#3!4>32#".'32>54.#")R`babbab`Nwvuwwwvu}B`bb`c``cwwwutwwsbu #"&546324&#"326bcfdiFIKgFEgcIN_}khfJHfFffFHdh0) ;"%\K\\\\\\ \\\d\n\\7\\\ \\\\\\\\\\\\ %\ K \ \ \ \ \ \ \ \ \ d\ n\ \ 7\ \ \  \ \ \ \ \ \ \ \ \ \ \ \  %\dgnqqq *7q\D H M b%\% \%q%#%'%+%3%5%8%9%:\%;q%=q%G%H%I%K%S%U%Y%Z%[%]%%%%%%%%%%%q%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%#%%%'%)%*%+%,%-%.%/%0%1%2%3%4%5q%6%7q%8%9q%A%B%P%Q%%%%%%%%%%%%%%%%%%%%% % % % % %%%%%%%%%%%%%%%%%%% %!%"%#q%$%%q%&%'q%(%)q%*%Cq%Gq%\q&&#&%&8&:&;&<&=&>&[&]&&&&&&&&&&&&&#&%&'&5&6&7&8&9&:&<&>&&&&&&&&&&&&&#&$&%&&&'&(&)&*&C&G&\&b(#(%(8(:(;(<(=((((((((((((#(%('(5(7(9(((((((((((((#(%('()(b):);)=))5)7)9)#)%)'))*%q*E*G*H*I*K*S*U*q*q*q*q*q*q*********************q**q**q*********************B*q**q**q**q**q**q**q**q**q**q**q**q**************** * ****+#+8+:+;+=+++#+%+'+5+7+9+#+%+'+)/'/+/3/5/G/H/I/K/S/U/Y/[/]/////////////////////////////////////////////// ////////*/,/./0/2/4/6/8/A/B/Q///////////////////// / / / / ///////////// /"/$/&/(/*00 0\0#q08q0:0;0=00#q0%q0'q0507090#0%0'0)0C\0G\0\\3#3%383:3;3<3=333333333333#3%3'3537393333333333333#3%3'3)3b4 4 4%4444444\4444444444444444D 4H 4M 4b5#5%585:5;5<5=555555555555#5%5'5557595555555555555#5%5'5)5b66#6'6+636568696:6;6=6[6]666666666666666666666 6666#6%6'6)6+6-6/616365666768696A6P6666666 6 6 6666666666!6#6$6%6&6'6(6)6*6C6G6\7#7%787:7;7<7=7[7]7777777777777#7%7'75767778797777777777777#7$7%7&7'7(7)7*7b8H8H8%8'8+83858E8G8H8I8K8S8U8888888\8888888888888888888888888888888888888888888888888888888 88888888A8B888888888888888888888888888888888888888888888 8 8 8 8 88888888DH8HH8MH8b9%999999999999999999999:::%\:':+:3:5:E:G:H:I:K:S:U:W:\:\:\:\:\:\:::::::::::::::::::::::::::\::\::\::::::::::::::::::::::::: :::::::::: :":A:B:\::\::\::\::\::\::\::\::\::\::\::\:::::::::::::::::::::: : : : : ::::::::D:H:M:b;H;H;%;';+;3;5;E;G;H;I;K;S;U;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;A;B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; ; ; ; ;;;;;;;;DH;HH;MH;b<'<+<3<5<7<[<]<<<<<<<<<<<<<<<< <<<<<<<!<6<8<A<<<<<<< < < <<<<$<&<(<*=\=\=%q='=+=3=5=7=E=Gq=Hq=Iq=Kq=Sq=Uq=W=q=q=q=q=q=q=H==============q=q=q=q=q=q=q=q=q=q=q=q=q==q==q===q==q==q==q=q=q=q=q=q=q=q==q==q==q==q= =q==q==q==q====== =!="=A=Bq=q==q==q==q==q==q==q==q==q==q==q==q==q=q=q=q=q=q=q=q==q==q==q==q==q==q= = q= = q= =q==q==q==q=D\=H\=M\=bEE E]EE8E$E&E(E*F]FF8F$F&F(F*JJ J JJAJaJCJGJ\LL]LL8L$L&L(L*OGOHOIOKOSOUOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOBOOOOOOOOOOOOOOO O OOOORR R]RR8R$R&R(R*S]SS8S$S&S(S*T]TT8T$T&T(T*V=VEVVVVVVVVVVVVVVVVVVVVVVVC=VG=V\=ZZq[q[q[Dq[Hq[Mq]H]H]DH]HH]MH\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q:;=579#%'):;=579#%'):;=579#%'):;=579#%'):;=579#%')#%8:;<=#%'579#%')b#%8:;<=#%'579#%')b#%8:;<=#%'579#%')b#%8:;<=#%'579#%')b#%8:;<=#%'579#%')b#%8:;<=#%'579#%')b#%8:;<=#%'579#%')b%%%%\\%q'+357EGqHqIqKqSqUqWqqqqqqHqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq qqqq !"ABqqqqqqqqqqqqqqqqqqqqqqqqqqq  q  q qqqqD\H\M\b#%8:;<=#%'579#%')b]8$&(* ]8$&(* ]8$&(* ]8$&(* ]8$&(* ]8$&(* ]8$&(*]8$&(* ]8$&(*]8$&(*]8$&(*]8$&(*]8$&(*]8$&(*]8$&(*HHDHHHMH\ \q#'+3589:\;q=qGHIKSUY[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q#%8:;<=#%'579#%')bR#=FPCRGR\R#%8:;<=#%'579#%')b:;=579#%'):;=579#%'):;=579#%'):;=579#%'):;=579#%')#8:;=#%'579#%')#8:;=#%'579#%')#8:;=#%'579#%')#8:;=#%'579#%') ]8$&(* ]8$&(*'+35GHIKSUY[] *,.02468ABQ      "$&(*GHIKSUB  GHIKSUB   \#q8q:;=#q%q'q579#%')C\G\\\ \#q8q:;=#q%q'q579#%')C\G\\\R#=FPCRGR\R ]8$&(* ]8$&(*   ]  8 $ & ( *   ]  8 $ & ( *   ]  8 $ & ( * # % 8 : ; < =            # % ' 5 7 9             # % ' ) b]8$&(*#%8:;<=#%'579#%')b]8$&(*#%8:;<=#%'579#%')b]8$&(*:;=579#%')#'+3589:;=[] #%')+-/1356789AP   !#$%&'()*CG\=EC=G=\=#'+3589:;=[] #%')+-/1356789AP   !#$%&'()*CG\=EC=G=\=#'+3589:;=[] #%')+-/1356789AP   !#$%&'()*CG\=EC=G=\=#%8:;<=[]#%'56789#$%&'()*b#%8:;<=[]#%'56789#$%&'()*b#%8:;<=[]#%'56789#$%&'()*b!#!%!8!:!;!<!=![!]!!!!!!!!!!!!!#!%!'!5!6!7!8!9!!!!!!!!!!!!!#!$!%!&!'!(!)!*!b#H#H#%#'#+#3#5#E#G#H#I#K#S#U#######\####################################################### ########A#B############################################# # # # # ########DH#HH#MH#b%H%H%%%'%+%3%5%E%G%H%I%K%S%U%%%%%%%\%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%A%B%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % %%%%%%%%DH%HH%MH%b'H'H'%'''+'3'5'E'G'H'I'K'S'U'''''''\''''''''''''''''''''''''''''''''''''''''''''''''''''''' ''''''''A'B''''''''''''''''''''''''''''''''''''''''''''' ' ' ' ' ''''''''DH'HH'MH'b)%)))))))))))))))))))))+%+++++++++++++++++++++-%---------------------/%/////////////////////3%3333333333333333333335H5H5%5'5+53555E5G5H5I5K5S5U55555555555555555555555555555555555555555555555555555555555555 55555555A5B555555555555555555555555555555555555555555555 5 5 5 5 55555555DH5HH5MH5b6q6q6Dq6Hq6Mq7\7\7%q7'7+7375777E7Gq7Hq7Iq7Kq7Sq7Uq7W7q7q7q7q7q7q7H77777777777777q7q7q7q7q7q7q7q7q7q7q7q7q77q77q777q77q77q77q7q7q7q7q7q7q7q77q77q77q77q7 7q77q77q77q777777 7!7"7A7Bq7q77q77q77q77q77q77q77q77q77q77q77q77q7q7q7q7q7q7q7q77q77q77q77q77q77q7 7 q7 7 q7 7q77q77q77q7D\7H\7M\7b8H8H8DH8HH8MH9\9\9%q9'9+9395979E9Gq9Hq9Iq9Kq9Sq9Uq9W9q9q9q9q9q9q9H99999999999999q9q9q9q9q9q9q9q9q9q9q9q9q99q99q999q99q99q99q9q9q9q9q9q9q9q99q99q99q99q9 9q99q99q99q999999 9!9"9A9Bq9q99q99q99q99q99q99q99q99q99q99q99q99q9q9q9q9q9q9q9q99q99q99q99q99q99q9 9 q9 9 q9 9q99q99q99q9D\9H\9M\9bA#)A%A8)A:)A;)A=)AEAGAHAIAKASAUAWA[A\A]AAAAAAA)AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA A"A#)A%)A')A5)A6A7)A8A9)ABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA A AAAAA#)A$A%)A&A')A(A))A*B)BQ)BR)BT)BX=BY)B[=B]=B)B)B)B)B)B=B)B)B)B )B )B$=B&=B(=B*)B,)B.)B0)B2)B4)B6=B8=BQ)B)B)B)B)B)B )B")B$=B&=B(=B*=BC)BG)B\)P%P'P+P3P5PEPGPHPIPKPQPRPSPTPUPWPYP[P]P^PPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP P P PPPPPPPPPP P"P*P,P.P0P2P4P6P8P;P=P?PAPBPQPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP P P P P PPPPPPPPPPPPP P"P$P&P(P*Q)QC)QG)Q\)[\[ \[q[#[`[k[r[v[wq[x[zq[}q[~[[[[[[[[[[[[[[[[Cq[Gq[\q`#`d`g`n`v`w`y`z`}`bd\d \dqd#d`dkdrdvdwqdxdzqd}qd~ddddddddddddddddCqdGqd\qee#edeieneveweyeze}eeeeCeGe\ebfHfHf`fdfgfkfnfrfxf~fffffffffDHfHHfMHfbg#gvgwgxgzg}hwhzh}k#kdkgknkvkwkykzk}kbm`mkmrmxm~mmmmmmmmmmmmmmmn\n \nqn#n`nknrnvnwqnxnzqn}qn~nnnnnnnnnnnnnnnnCqnGqn\qqwqzq}r#rdrgrnrvrwryrzr}rbt t tdtgtntD tH tM tbvHvHv`vdvgvkvnvrvxv~vvvvvvvvvDHvHHvMHvbw\w\w`wdqwgwkwnqwrwxw~qwqwqwqwqwqwqwqwqwD\wH\wM\wbx#xdxgxnxvxwxyxzx}xby`ykyryxyyyz\z\z`zdqzgzkznqzrzxz~qzqzqzqzqzqzqzqzqzD\zH\zM\zb}\}\}`}dq}g}k}nq}r}x}~q}q}q}q}q}q}q}q}q}D\}H\}M\}b \\D\H\M\ ~DHMDHMAEGr~AEGr~HH "%*17CDIJKLMNOQRyz{|\DHHHMHb#/237;AEFGHPgq}bCG\CG\q#qqqqq/23qAEFGHPqq}qqqqqqCqGq\q"%/12CDFHIJKLMNOPQRryz{|~\\\\\ \"%&*\17\CDIJKLMNOQRyz{|\\\\DHMb\ \q#H) )"%*)/123AqCDE\FG\HIJKLMNOPQRqryz{|}~qqHH)HHCqGq\q# */237;AEFGHPgqr}~CG\bHH "%*17CDIJKLMNOQRyz{|\DHHHMHbAEGr~"%/12CDFHIJKLMNOPQRryz{|~# */237;AEFGHPgqr}~CG\b"%/12CDFHIJKLMNOPQRryz{|~# *37;AEGgq}b  qqq *7q\D H M bHH "%*17CDIJKLMNOQRyz{|\DHHHMHb\\\\\ \"%&*\17\CDIJKLMNOQRyz{|\\\\DHMb# *37;AEGgq}b/12CFHIKMOPQry{~CG\CG\# *37;AEGgq}b# *37;AEGgq}b /FH/FH=qq *C=DqG=HqMq\="%DJLNRz|/FH     " % D J L N R z |      /FH/FH=qq *C=DqG=HqMq\=HHDHHHMH/FH"%DJLNRz|/FH/FH## ##/#F#H#####$=$q$q$$ $*$$C=$Dq$G=$Hq$Mq$\=,, ,,/,F,H,,,,,-----"-%-D-J-L-N-R-z-|------/H/H/DH/HH/MH1#1111111111111 1*13171;1A1E1G1g1q1}11111111111111111b2q2q22 2*22Dq2Hq2Mq33C3G3\7\7 \7q7#777777777H7777)77 )77777777"7%7*)7/7172737Aq7C7D7E\7F7G\7H7I7J7K7L7M7N7O7P7Q7R7q7r7y7z7{7|7}7~7q77q7777H77H7777)7H77777777777777777777H77Cq7Gq7\q9\9 \9q9#999999999H9999)99 )99999999"9%9*)9/9192939Aq9C9D9E\9F9G\9H9I9J9K9L9M9N9O9P9Q9R9q9r9y9z9{9|9}9~9q99q9999H99H9999)9H99999999999999999999H99Cq9Gq9\q;;;;;;;;;;;;;;;;";%;/;1;2;C;D;F;H;I;J;K;L;M;N;O;P;Q;R;r;y;z;{;|;~;;;;;;;;;;;;;;;;;;;;;;;;;;;;<<<<<"<%<D<J<L<N<R<z<|<<<<<<================"=%=/=1=2=C=D=F=H=I=J=K=L=M=N=O=P=Q=R=r=y=z={=|=~============================>>>>>">%>D>J>L>N>R>z>|>>>>>>??#?????????????? ????*?/?2?3?7?;?A?E?F?G?H?P?g?q?r?}?~???????????????????????????C?G?\?b@@/@F@H@@@@@A\A\AAAAqAAAAAAAAAqAqA qAqAqAqA"qA%qA&A*qA1A7qACADqAIAJqAKALqAMANqAOAQARqAyAzqA{A|qAAAAqAqAAqAAHAAqAAqAAqAAqAAqAAqAAD\AH\AM\AbC#CCCCCCCCCCCCC C*C3C7C;CACECGCgCqC}CCCCCCCCCCCCCCCCCbDD/DFDHDDDDDEEEE\E\E\E\EEEEEEE\EE \EEEE"E%E&E*\E1E7\ECEDEIEJEKELEMENEOEQEREyEzE{E|EEE\E\E\EE\EEEEEEEEEEEEEEEEDEHEMEbFHFHFDHFHHFMHGGGG\G\G\G\GGGGGGG\GG \GGGG"G%G&G*\G1G7\GCGDGIGJGKGLGMGNGOGQGRGyGzG{G|GGG\G\G\GG\GGGGGGGGGGGGGGGGDGHGMGbHHHHHDHHHHHMHIHIHIDHIHHIMHJHJHJDHJHHJMHK#KKKKKKKKKKKKK K*K3K7K;KAKEKGKgKqK}KKKKKKKKKKKKKKKKKbLL/LFLHLLLLLM#MMMMMMMMMMMMM M*M3M7M;MAMEMGMgMqM}MMMMMMMMMMMMMMMMMbNN/NFNHNNNNNO#OOOOOOOOOOOOO O*O3O7O;OAOEOGOgOqO}OOOOOOOOOOOOOOOOObPqPqPP P*PPDqPHqPMq]]C]G]\^^/^F^H^^^^^_ _ _q___q_q___ _*_7_q____\____D _H _M _b``/`F`H`````aHaHaaaaaaaaaaaaaa aaaa"a%a*a1a7aCaDaIaJaKaLaMaNaOaQaRayaza{a|aaaaaaaaa\aaaaaaaaaaaaaaDHaHHaMHabb=bqbqbb b*bbC=bDqbG=bHqbMqb\=cHcHcccccccccccccc cccc"c%c*c1c7cCcDcIcJcKcLcMcNcOcQcRcyczc{c|ccccccccc\ccccccccccccccDHcHHcMHcbd=dqdqdd d*ddC=dDqdG=dHqdMqd\=eqe#qeqeqeqeqee/e2e3qeAeEeFeGeHePeqqe}qeeeeeqeqeqeqeeeeqeCqeGqe\qgggggggggggggggg"g%g/g1g2gCgDgFgHgIgJgKgLgMgNgOgPgQgRgrgygzg{g|g~gggggggggggggggggggggggggggghhhhh"h%hDhJhLhNhRhzh|hhhhhhii#iiiiiiiiiiiiii iiii*i/i2i3i7i;iAiEiFiGiHiPigiqiri}i~iiiiiiiiiiiiiiiiiiiiiiiiiiiCiGi\ibjj/jFjHjjjjjkkkkkkkkkkkkkkkk"k%k/k1k2kCkDkFkHkIkJkKkLkMkNkOkPkQkRkrkykzk{k|k~kkkkkkkkkkkkkkkkkkkkkkkkkkkklllll"l%lDlJlLlNlRlzl|llllllmmmmmmmmmmmmmmmm"m%m/m1m2mCmDmFmHmImJmKmLmMmNmOmPmQmRmrmymzm{m|m~mmmmmmmmmmmmmmmmmmmmmmmmmmmmnnnnn"n%nDnJnLnNnRnzn|nnnnnnoooooooooooooooo"o%o/o1o2oCoDoFoHoIoJoKoLoMoNoOoPoQoRoroyozo{o|o~ooooooooooooooooooooooooooooppppp"p%pDpJpLpNpRpzp|ppppppqqqqqqqqqqqqqqqq"q%q/q1q2qCqDqFqHqIqJqKqLqMqNqOqPqQqRqrqyqzq{q|q~qqqqqqqqqqqqqqqqqqqqqqqqqqqqrrrrr"r%rDrJrLrNrRrzr|rrrrrruHuHuuuuuuuuuuuuuu uuuu"u%u*u1u7uCuDuIuJuKuLuMuNuOuQuRuyuzu{u|uuuuuuuuu\uuuuuuuuuuuuuuDHuHHuMHubwqw#qwqwqwqwqww/w2w3qwAwEwFwGwHwPwqqw}qwwwwwqwqwqwqwwwwqwCqwGqw\q}H}H}}}}}}}}}}}}}} }}}}"}%}*}1}7}C}D}I}J}K}L}M}N}O}Q}R}y}z}{}|}}}}}}}}}\}}}}}}}}}}}}}}DH}HH}MH}b~=~q~q~~ ~*~~C=~Dq~G=~Hq~Mq~\=\\qqq qqqq"q%q&*q17qCDqIJqKLqMNqOQRqyzq{|qqqqHqqqqqqD\H\M\bHHDHHHMH\\qqq qqqq"q%q&*q17qCDqIJqKLqMNqOQRqyzq{|qqqqHqqqqqqD\H\M\bHHDHHHMH"%DJLNRz|q#qqqqq/23qAEFGHPqq}qqqqqqCqGq\q# *37;AEGgq}b# *37;AEGgq}b"%/12CDFHIJKLMNOPQRryz{|~"%DJLNRz|q#qqqqq/23qAEFGHPqq}qqqqqqCqGq\q\ \q#H) )"%*)/123AqCDE\FG\HIJKLMNOPQRqryz{|}~qqHH)HHCqGq\q /FH\ \q#H) )"%*)/123AqCDE\FG\HIJKLMNOPQRqryz{|}~qqHH)HHCqGq\q *` 0 /FHAEGr~AEGr~# *37;AEGgq}b/FH# *37;AEGgq}b/FH"%/12CDFHIJKLMNOPQRryz{|~"%DJLNRz|# */237;AEFGHPgqr}~CG\b# */237;AEFGHPgqr}~CG\b# *37;AEGgq}b/FH# *37;AEGgq}b/FH# *37;AEGgq}b/FH# *37;AEGgq}b\\\\\ \"%&*\17\CDIJKLMNOQRyz{|\\\\DHMbHHDHHHMH\\\\\ \"%&*\17\CDIJKLMNOQRyz{|\\\\DHMbHHDHHHMH\\\\\ \"%&*\17\CDIJKLMNOQRyz{|\\\\DHMbHHDHHHMHHH "%*17CDIJKLMNOQRyz{|\DHHHMHb=qq *C=DqG=HqMq\=HH "%*17CDIJKLMNOQRyz{|\DHHHMHb=qq *C=DqG=HqMq\="%/12CDFHIJKLMNOPQRryz{|~"%/12CDFHIJKLMNOPQRryz{|~"%DJLNRz|\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q ]8$&(*\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q ]8$&(*\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q ]8$&(*\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q ]8$&(*\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q ]8$&(*\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q ]8$&(*\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q ]8$&(*\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q ]8$&(*\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q ]8$&(*\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q ]8$&(*\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q ]8$&(*\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q ]8$&(*:;=579#%'):;=579#%'):;=579#%'):;=579#%'):;=579#%'):;=579#%'):;=579#%'):;=579#%')#%8:;<=#%'579#%')b]8$&(*#%8:;<=#%'579#%')b]8$&(*#%8:;<=#%'579#%')b]8$&(*#%8:;<=#%'579#%')b]8$&(*#%8:;<=#%'579#%')b]8$&(*#%8:;<=#%'579#%')b]8$&(* # % 8 : ; < =            # % ' 5 7 9             # % ' ) b ]  8 $ & ( * #) % 8) :) ;) =) E G H I K S U W [ \ ]       )                                                  " #) %) ') 5) 6 7) 8 9) B                                               #) $ %) & ') ( )) * ) Q) R) T) X= Y) [= ]= ) ) ) ) ) = ) ) )  )  ) $= &= (= *) ,) .) 0) 2) 4) 6= 8= Q) ) ) ) ) )  ) ") $= &= (= *= C) G) \) #) % 8) :) ;) =) E G H I K S U W [ \ ]       )                                                  " #) %) ') 5) 6 7) 8 9) B                                               #) $ %) & ') ( )) *)Q)R)T)X=Y)[=]=)))))=))) ) )$=&=(=*),).)0)2)4)6=8=Q)))))) )")$=&=(=*=C)G)\)#)%8):);)=)EGHIKSUW[\]) "#)%)')5)67)89)B  #)$%)&')())*)Q)R)T)X=Y)[=]=)))))=))) ) )$=&=(=*),).)0)2)4)6=8=Q)))))) )")$=&=(=*=C)G)\)#)%8):);)=)EGHIKSUW[\]) "#)%)')5)67)89)B  #)$%)&')())*)Q)R)T)X=Y)[=]=)))))=))) ) )$=&=(=*),).)0)2)4)6=8=Q)))))) )")$=&=(=*=C)G)\)#)%8):);)=)EGHIKSUW[\]) "#)%)')5)67)89)B  #)$%)&')())*)Q)R)T)X=Y)[=]=)))))=))) ) )$=&=(=*),).)0)2)4)6=8=Q)))))) )")$=&=(=*=C)G)\)%%%'+35EGHIKQRSTUWY[]^    "*,.02468;=?ABQ      "$&(*)C)G)\)%'+35EGHIKQRSTUWY[]^    "*,.02468;=?ABQ      "$&(*)C)G)\)%'+35EGHIKQRSTUWY[]^    "*,.02468;=?ABQ      "$&(*)C)G)\)%'+35EGHIKQRSTUWY[]^    "*,.02468;=?ABQ      "$&(* ) C) G) \)!%!'!+!3!5!E!G!H!I!K!Q!R!S!T!U!W!Y![!]!^!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! ! ! !!!!!!!!!! !"!*!,!.!0!2!4!6!8!;!=!?!A!B!Q!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! ! ! ! ! !!!!!!!!!!!!! !"!$!&!(!*")"C)"G)"\)#\#\#%q#'#+#3#5#7#E#Gq#Hq#Iq#Kq#Sq#Uq#W#q#q#q#q#q#q#H##############q#q#q#q#q#q#q#q#q#q#q#q#q##q##q###q##q##q##q#q#q#q#q#q#q#q##q##q##q##q# #q##q##q##q###### #!#"#A#Bq#q##q##q##q##q##q##q##q##q##q##q##q##q#q#q#q#q#q#q#q##q##q##q##q##q##q# # q# # q# #q##q##q##q#D\#H\#M\#b$H$H$DH$HH$MH%\%\%%q%'%+%3%5%7%E%Gq%Hq%Iq%Kq%Sq%Uq%W%q%q%q%q%q%q%H%%%%%%%%%%%%%%q%q%q%q%q%q%q%q%q%q%q%q%q%%q%%q%%%q%%q%%q%%q%q%q%q%q%q%q%q%%q%%q%%q%%q% %q%%q%%q%%q%%%%%% %!%"%A%Bq%q%%q%%q%%q%%q%%q%%q%%q%%q%%q%%q%%q%%q%q%q%q%q%q%q%q%%q%%q%%q%%q%%q%%q% % q% % q% %q%%q%%q%%q%D\%H\%M\%b&H&H&DH&HH&MH'\'\'%q'''+'3'5'7'E'Gq'Hq'Iq'Kq'Sq'Uq'W'q'q'q'q'q'q'H''''''''''''''q'q'q'q'q'q'q'q'q'q'q'q'q''q''q'''q''q''q''q'q'q'q'q'q'q'q''q''q''q''q' 'q''q''q''q'''''' '!'"'A'Bq'q''q''q''q''q''q''q''q''q''q''q''q''q'q'q'q'q'q'q'q''q''q''q''q''q''q' ' q' ' q' 'q''q''q''q'D\'H\'M\'b(H(H(DH(HH(MH)\)\)%q)')+)3)5)7)E)Gq)Hq)Iq)Kq)Sq)Uq)W)q)q)q)q)q)q)H))))))))))))))q)q)q)q)q)q)q)q)q)q)q)q)q))q))q)))q))q))q))q)q)q)q)q)q)q)q))q))q))q))q) )q))q))q))q)))))) )!)")A)Bq)q))q))q))q))q))q))q))q))q))q))q))q))q)q)q)q)q)q)q)q))q))q))q))q))q))q) ) q) ) q) )q))q))q))q)D\)H\)M\)b*H*H*DH*HH*MHB%qBqBqBqBqBqBqBBqBqBqBdqBnqB\BqB\B\BB7qB\BqBqBBqBqBqBqBqBqBqBqBqBqBqBqCWF%qFqFqFqFqFqFqFFqFqFqFdqFnqF\FqF\F\FF7qF\FqFqFFqFqFqFqFqFqFqFqFqFqFqFqb#b8b:b;b=bb#b%b'b5b7b9bvbwbxbzb}bbbb3bAbEbGbqb}bbbb#b%b'b)n/` "I s"B  . d  Ky ^   D ) Y  D * (X \ >$ <  4Copyright 2012 Google Inc. All Rights Reserved.Copyright 2012 Google Inc. All Rights Reserved.Noto SerifNoto SerifBoldBoldMonotype Imaging - Noto Serif BoldMonotype Imaging - Noto Serif BoldNoto Serif BoldNoto Serif BoldVersion 1.06Version 1.06NotoSerif-BoldNotoSerif-BoldNoto is a trademark of Google Inc.Noto is a trademark of Google Inc.Monotype Imaging Inc.Monotype Imaging Inc.Monotype Design TeamMonotype Design TeamData hinted. Designed by Monotype design team.Data hinted. Designed by Monotype design team.http://www.google.com/get/noto/http://www.google.com/get/noto/http://www.monotype.com/studiohttp://www.monotype.com/studioThis Font Software is licensed under the SIL Open Font License, Version 1.1. This Font Software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the SIL Open Font License for the specific language, permissions and limitations governing your use of this Font Software.This Font Software is licensed under the SIL Open Font License, Version 1.1. This Font Software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the SIL Open Font License for the specific language, permissions and limitations governing your use of this Font Software.http://scripts.sil.org/OFLhttp://scripts.sil.org/OFLff  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a bcdefghjikmlnoqprsutvwxzy{}|~     !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~glyph1uni000Duni000Auni00A0uni00ADuni00B2uni00B3uni00B9AmacronamacronAbreveabreveAogonekaogonek Ccircumflex ccircumflex Cdotaccent cdotaccentDcarondcaronDcroatEmacronemacronEbreveebreve Edotaccent edotaccentEogonekeogonekEcaronecaron Gcircumflex gcircumflex Gdotaccent gdotaccentuni0122uni0123 Hcircumflex hcircumflexHbarhbarItildeitildeImacronimacronIbreveibreveIogonekiogonekIJij Jcircumflex jcircumflexuni0136uni0137 kgreenlandicLacutelacuteuni013Buni013CLcaronlcaronLdotldotNacutenacuteuni0145uni0146Ncaronncaron napostropheEngengOmacronomacronObreveobreve Ohungarumlaut ohungarumlautRacuteracuteuni0156uni0157RcaronrcaronSacutesacute Scircumflex scircumflexuni0162uni0163TcarontcaronTbartbarUtildeutildeUmacronumacronUbreveubreveUringuring Uhungarumlaut uhungarumlautUogonekuogonek Wcircumflex wcircumflex Ycircumflex ycircumflexZacutezacute Zdotaccent zdotaccentlongsOhornohornuni01A2uni01A3uni01A4uni01A5uni01A6uni01A7uni01A8uni01A9uni01AAuni01ABuni01ACuni01ADuni01AEUhornuhornuni0374uni0375uni037Auni037Buni037Cuni037Duni037Etonos dieresistonos Alphatonos anoteleia EpsilontonosEtatonos Iotatonos Omicrontonos Upsilontonos OmegatonosiotadieresistonosAlphaBetaGammauni0394EpsilonZetaEtaThetaIotaKappaLambdaMuNuXiOmicronPiRhoSigmaTauUpsilonPhiChiPsiuni03A9 IotadieresisUpsilondieresis alphatonos epsilontonosetatonos iotatonosupsilondieresistonosalphabetagammadeltaepsilonzetaetathetaiotakappalambdauni03BCnuxiomicronrhosigma1sigmatauupsilonphichipsiomega iotadieresisupsilondieresis omicrontonos upsilontonos omegatonosuni03D0theta1Upsilon1uni03D3uni03D4phi1omega1uni03D7uni03D8uni03D9uni03DAuni03DBuni03DCuni03DDuni03DEuni03DFuni03E0uni03E1uni03E2uni03E3uni03E4uni03E5uni03E6uni03E7uni03E8uni03E9uni03EAuni03EBuni03ECuni03EDuni03EEuni03EFuni03F0uni03F1uni03F2uni03F3uni03F4uni03F5uni03F6uni03F7uni03F8uni03F9uni03FAuni03FBuni03FCuni03FDuni03FEuni03FFuni0400uni0401uni0402uni0403uni0404uni0405uni0406uni0407uni0408uni0409uni040Auni040Buni040Cuni040Duni040Euni040Funi0410uni0411uni0412uni0413uni0414uni0415uni0416uni0417uni0418uni0419uni041Auni041Buni041Cuni041Duni041Euni041Funi0420uni0421uni0422uni0423uni0424uni0425uni0426uni0427uni0428uni0429uni042Auni042Buni042Cuni042Duni042Euni042Funi0430uni0431uni0432uni0433uni0434uni0435uni0436uni0437uni0438uni0439uni043Auni043Buni043Cuni043Duni043Euni043Funi0440uni0441uni0442uni0443uni0444uni0445uni0446uni0447uni0448uni0449uni044Auni044Buni044Cuni044Duni044Euni044Funi0450uni0451uni0452uni0453uni0454uni0455uni0456uni0457uni0458uni0459uni045Auni045Buni045Cuni045Duni045Euni045Funi0460uni0461uni0462uni0463uni0464uni0465uni0466uni0467uni0468uni0469uni046Auni046Buni046Cuni046Duni046Euni046Funi0470uni0471uni0472uni0473uni0474uni0475uni0476uni0477uni0478uni0479uni047Auni047Buni047Cuni047Duni047Euni047Funi0480uni0481uni0482uni0483uni0484uni0485uni0486uni0487uni0488uni0489uni048Auni048Buni048Cuni048Duni048Euni048Funi0490uni0491uni0492uni0493uni0494uni0495uni0496uni0497uni0498uni0499uni049Auni049Buni049Cuni049Duni049Euni049Funi04A0uni04A1uni04A2uni04A3uni04A4uni04A5uni04A6uni04A7uni04A8uni04A9uni04AAuni04ABuni04ACuni04ADuni04AEuni04AFuni04B0uni04B1uni04B2uni04B3uni04B4uni04B5uni04B6uni04B7uni04B8uni04B9uni04BAuni04BBuni04BCuni04BDuni04BEuni04BFuni04C0uni04C1uni04C2uni04C3uni04C4uni04C5uni04C6uni04C7uni04C8uni04C9uni04CAuni04CBuni04CCuni04CDuni04CEuni04CFuni04D0uni04D1uni04D2uni04D3uni04D4uni04D5uni04D6uni04D7uni04D8uni04D9uni04DAuni04DBuni04DCuni04DDuni04DEuni04DFuni04E0uni04E1uni04E2uni04E3uni04E4uni04E5uni04E6uni04E7uni04E8uni04E9uni04EAuni04EBuni04ECuni04EDuni04EEuni04EFuni04F0uni04F1uni04F2uni04F3uni04F4uni04F5uni04F6uni04F7uni04F8uni04F9uni04FAuni04FBuni04FCuni04FDuni04FEuni04FFuni1EA0uni1EA1uni1EA2uni1EA3uni1EA4uni1EA5uni1EA6uni1EA7uni1EA8uni1EA9uni1EAAuni1EABuni1EACuni1EADuni1EAEuni1EAFuni1EB0uni1EB1uni1EB2uni1EB3uni1EB4uni1EB5uni1EB6uni1EB7uni1EB8uni1EB9uni1EBAuni1EBBuni1EBCuni1EBDuni1EBEuni1EBFuni1EC0uni1EC1uni1EC2uni1EC3uni1EC4uni1EC5uni1EC6uni1EC7uni1EC8uni1EC9uni1ECAuni1ECBuni1ECCuni1ECDuni1ECEuni1ECFuni1ED0uni1ED1uni1ED2uni1ED3uni1ED4uni1ED5uni1ED6uni1ED7uni1ED8uni1ED9uni1EDAuni1EDBuni1EDCuni1EDDuni1EDEuni1EDFuni1EE0uni1EE1uni1EE2uni1EE3uni1EE4uni1EE5uni1EE6uni1EE7uni1EE8uni1EE9uni1EEAuni1EEBuni1EECuni1EEDuni1EEEuni1EEFuni1EF0uni1EF1Ygraveygraveuni1EF4uni1EF5uni1EF6uni1EF7uni1EF8uni1EF9uni2000uni2001uni2002uni2003uni2004uni2005uni2006uni2007uni2008uni2009uni200Auni200Buni200Cuni200Duni200Euni200Funi2011 figuredashuni2015uni2016 underscoredbl quotereverseduni201Funi202Auni202Buni202Cuni202Duni202Euni202Fminuteseconduni2034uni2060Euro arrowleft arrowright arrowdblleft arrowdblrightuni2215uni2219 orthogonal intersection equivalence filledboxH22073H18543H18551 filledrecttriaguptriagrttriagdntriaglfcircleuni25CCH18533 invbullet invcircle openbulletuniFEFFEX4Vruby-asciidoctor-pdf-1.6.2/data/fonts/notoserif-bold_italic-subset.ttf000066400000000000000000007371041416357056400261370ustar00rootroot00000000000000FFTMvW(OS/2O`cmapcvt S*I08fpgms#gasp glyf҃&pذheadZY 6hhea D$hmtx!M kern loca`hmaxph nameH0 postNprepз\\%_< !V Pw o PdZ?33f  GOOG! X J f)7y9y3+hFR73V3-yo{oFN-yLyRyyyyyhyyy9ZyyyH^X`X%^55;NVNL9TP+NPyFRR+9RRRHR;?+u+fL`LR RhL#V{bu!LwPyy^)yyyyZyZ-}soyy{3y3;3;jo33Bo-668HX5555%NVVVVVyVRRRRRRRRRRRR R9RHRHRHRHRuu?uR`LRRRRRybubububuRRRRRRX9RX9RX9RX9R%R\%RRHRHRHRHRHR^^^^?+?+555u5u525uju5++;f;;f;f;N`LN`LN`L7LVRVRVR5RhLhhL####9V)9V[9V9bubububububuLTwTwTw;\R }Rh!V{9wV{99uo59Ro5)osqu`TV5NLVwN9^w 5FXZ9/ujFX%5?Z9J/hu+j7D7RJ)T7R9jRjqRujRjqRT=T9hVRXmm#Z%!HT B9j}P-9L??5^\'h!D9RV9R9RXd3XXXX555F}yP`FZ VwNX9}^y  +Pb RR\wT!)RHR j)bubu+ywNR`L9RLRwu99uu=-uuJFN'HRHR +!)9R#uu;N?++bubu ' 3bBNX- NN1D FNjVR ! ! oR/R 'R ' X9Rhu#))buPNVLL} j ) +9D++/wNyN RLyRX9R9L!!b! 99 99;qLRT=RT=5Z j+yVNwN 995RRRR RHRVHVHZ j ) ybubuVRVRVRb J}}} 99uRRRRRRRRRRRRRRRRRRRRRRRRHRHRHRHRHRHRHRHR5u5oVRVRVRVRVRVRVR\R\R\R\R\Rbubu9u9u9u9u9uUyo!L{y;yLJ-====3RbN dR777}-y-SyoZmyo/?hX!yydyy{mmbXb))sh@( ~u~  " & 0 4 : ` !"!!!!"""""""")"+"H"a"e%%%%%%%%%% tz  & * 2 9 ` !"!!!!"""""""")"+"H"`"d%%%%%%%%%%1+*'$#:_\TSQNKBA% ݾݽݶݱݯݧݛ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abJsefjLyql\wknitpqhxadclm}{dohmbn~Mc=>FGBC{9[XYKzDHTr{@EYXUTSRQPONMLKJIHGFEDCBA@?>=<;:9876510/.-,('&%$#"! ,E#F` &`&#HH-,E#F#a &a&#HH-,E#F` a F`&#HH-,E#F#a ` &a a&#HH-,E#F`@a f`&#HH-,E#F#a@` &a@a&#HH-, <<-, E# D# ZQX# D#Y QX# MD#Y &QX# D#Y!!-, EhD ` EFvhE`D-, C#Ce -, C#C -,(#p(>(#p(E: -, E%EadPQXED!!Y-,I#D-, EC`D-,CCe -, i@a ,b`+ d#da\XaY-,E+)#D)z-,Ee,#DE+#D-,KRXED!!Y-,KQXED!!Y-,%# `#-,%# a#-,%-,F#F`F# F`ab# # pE` PXaFY`h:-, E%FRKQ[X%F ha%%?#!8!Y-, E%FPX%F ha%%?#!8!Y-,CC -,!! d#d@b-,!QX d#d b@/+Y`-,!QX d#dUb/+Y`-, d#d@b`#!-,KSX%Id#Ei@ab aj#D#!# 9/Y-,KSX %Idi &%Id#ab aj#D&#D#D& 9# 9//Y-,E#E`#E`#E`#vhb -,H+-, ETX@D E@aD!!Y-,E0/E#Ea``iD-,KQX/#p#B!!Y-,KQX %EiSXD!!Y!!Y-,EC`c`iD-,/ED-,E# E`D-,E#E`D-,K#QX34 34YDD-,CX&EXdf`d `f X!@YaY#XeY)#D#)!!!!!Y-,CTXKS#KQZX8!!Y!!!!Y-,CX%Ed `f X!@Ya#XeY)#D%% XY%% F%#B<%%%% F%`#B< XY%%)) EeD%%)%% XY%%CH%%%%`CH!Y!!!!!!!-,% F%#B%%EH!!!!-,% %%CH!!!-,E# E P X#e#Y#h @PX!@Y#XeY`D-,KS#KQZX E`D!!Y-,KTX E`D!!Y-,KS#KQZX8!!Y-,!KTX8!!Y-,CTXF+!!!!Y-,CTXG+!!!Y-,CTXH+!!!!Y-,CTXI+!!!Y-, #KSKQZX#8!!Y-,%ISX @8!Y-,F#F`#Fa#  Fab@@pE`h:-, #Id#SX<!Y-,KRX}zY-,KKTB-,B#Q@SZX TXC`BY$QX @TXC`B$TX C`BKKRXC`BY@TXC`BY@cTXC`BY@cTXC`BY@cTX@C`BYYYYY-,Eh#KQX# E d@PX|Yh`YD-,%%#>#> #eB #B#?#? #eB#B-,zE#-A PUPPUUU@PUPUA PU@UU P U P U    oAB_PUPUoP?oo PUP@U3U3UU <ϕ`@ϕ _ϓߓϓUU3UU3U3UU3UUGU?oTS++KRKP[%S@QZUZ[XYBK2SX`YKdSX@YKSXBYssst++++++s++++++++stussttuu^s^s++++++++^ssttttuuuuu++ss^s+++s+s+t+st++++s+NuJ``qq,B;XK#}mFPHFqd:Pr*X:x`  ^r$h :  @ |  ~  `  p Vz:B VdT&8*fZfth*>jHjz Zz4 > x !!" "l"x""#n#z#$`$l$x$$$%%%r%~%&H&T&`&'2'>'`'''(R(^(j()N)Z)f)*x*+++++,8,D,P,\,,----.$.../"/./:///0,001z12l2x223T344|45L556`677j78689 9z9:X:;< <=8=>`??@8@A.AAB4BrBCCrCD:DrD~DDEvvw0wzwwx>x~xxy0yvy~yyyyyzLzTzz{@{t{{{{|^|j|||||}P}~D~P~\~<Dԁ6>&.6>FNV^Ȅz†>؇TzЉ*2ʊ(0pԌ&.6>FrȎFڏ4: ڒj4tX">X`h$Pޛ:ҜbLjܟbȠ08ʡ*VrXȥ$v֦$ҧ(n¨X8ت0jr:ڭ xȮh4ưnvj$гT2lB$θ(4@L4ʺ6BNZfȻ*6.:FvĽPξ$Ŀ"th\dpńlVTTVʮ lD̼&͖p^PJќ2Ғ0ӊDԤf>֮׌ ,؆F٪Hڸ&۞ ,8Dܨ݊dLߨ $2Hp0xHjr:Z&Vdr|$z2@Vdz0XXf3!%!!f4/nJb!##"&54>32dw3@ K[.B)#=-3G+HK*D0$87f!#!#'?Շ^@39!####73#7!3333#!3# wwyyopsutmn'ffssss3^u2=F#7.5463.54>?3#4.'4.'>Er2r3wm->'\IpM'Czi s#6YA-V/ 1&T0M611L#?0_h8saXHnP4'O]oGU^4 nT*B.%MG9lJ1.0w4H;N#d-A/G[!#34>32#"."32>54&4>32#"."32>54&3LiRNpH#2NkSBkK)(C6)(2(C6)'N3LiRNpH#2NkSBkK)(C6)(2(C6)'@{]7.RpA;|_9'LoA7Xptm(Qa7Xqtm)R\@z]7.RpA;{_9'Kp@7Xptm(Qa7Xqtm)R\FV6DT!'#".54>7.54>32>?!#";32674&#">VfU|v9HzZ.2>um^Z+*_n#2#B?8E-]B >Z9`?=U5II$>-((?Y8HY:hSfjL!OHXX-)Ha8GkZQ-JKMl6."HQ]Q[6P3;j<6>K7!#T?ՇV-.54>7*E2|q5/^My^F3# &?~sc$+o޶"*n||5/4.'77>7>*E2|q5/^My^F3# &?~rc$+n޶$*n||5-7% ''%PX/'߇1J+T/̒ /:% #!5!3!lnnn9%7654.54>329qp*8%A0NrSl2x)!4%/EX7!0/F;%#"&54>323@ J\/A)#=-3G+HK*D0$8-5#33i L+4>32#".%32>54&#"L#GlrXqA"Ejq_p>VH767##"&5>? *8!dyIZ  0QFA!,7#JTa:: . mm;J>f&,#2O7OH $3&j}/#7>54.#"".54>32!2>?3+hN%6"3O8!3V?#?ytin98om1E0!xdXyA*G36]~I+C-=lQ/(IjBDYt/< %R{F%2>54&+732>54.#"".54>32#".54633`J-XAVk<"5%8O6" 1U>$Oh^o<3ggGrO+4ZxExf-wj:X}(QxPv4`Q&A/2To< 2&?mQ.'KmFHsU.LiB[jK.-GX+Q]7!732>?!7!3#;:=:;>6* #2%j)ahh0#TULCm;4}N *  m7%2>54.#"'!#>54&#!>32#".54>3CmM*&B[5%<2,V;}*:dy&dKjyBVk\)/H11V{.\\BbB  +;  2a]pP&AW1";-,\L0h*<">32#".54>32#4."32>54&=?"MR$:cIlȚ]=|}ྌN";L*R\2_J-&k>mV| 3!"#!)8H}T53gy'7H".54>7.54>32'2>54.'4.#">l~E>lV,H49}Ōai72[L5[B&Rk6`H*:W:ut(=*0R<#;R24^MV|^H!!Q\f7Mg=-Pn@Nw^K""M[j>pj4v A`A2TKC 0~jx/*G4#A\:jGPZ9s1H%2>7#".54>32#".5463>7>54.#"KyeT'@LZ5RW-]u\i8  C]wiRvL$UK*A(E;0 )7!:aF'RmNݐ2'3Z}J֙U6gaHT].ck="9L+EI'P@(Z-8<<8Ca=L{OdfZfT#%#"&54>32#"&54>323@ J\/A)#=-3@ J\/B)#=,3G+HK*D0$84G+HL)D0$8fT*%7654.54>32#"&54>329qp*8%A03@ J\/B)#=,NrSl2x)!4%/E4G+HL)D0$85 nmTߡ!5!5w\75 5mnբdi!Tb"4#'>54.#""54>32#"&54>32bNmI[i9'70E.B{mfr>3@ J\/A)#=-wYyb'!OeT3N62Sl:7aH*(T3G+HK*D0$8X]r#"&'##".54>327332>54.#"32>7#".54>$3232>7.#"JxM[" 6DV6AtX48XzdGe V2V$(TD+U{aj;lSz016auؽo=C{\H;+?,R"4S@/#WYg(F4*VZ7w[7$+ &(% *6 D~ӍG6hꇵJ0> N)H6 +X܅խ{Bf9fm*EV-4Umpk%2;!732>7!;!732654&/.'!d8;)++(++ %\/BN3 ")%8&#mm $>0J 6'mm)-!-OJF%%?AI0^&1:'32>7>54.+7!2#!%32>54&+732654&+ =2%'7 {3ZzG7\B%LݑWyL#fksb^[m0('lT]< 0Kf@pw>}.ZWpmml1%2>7#".54>32#4.#"7GrZD >ytT:nfe2,Mj> %D9QqW; 5B# &3gS3I̓{ִJ#?[7-D/+hZ7>54.+7!2#!%2>54.+ =2%'7 T3c/yR2]RVm0( lHЈzɧxBu$kf1F\.'32>7>54.+7!#>54.#!!!!2>?3! =2%'7 XH"7(m/{D0L8' !_im0( l$'!2&{.="Xj.%;!732>7654.+7!#>54.#!!!(7 @ =2% '7 fG$;+w!mm0(5l&#2%yA#"#".54>32#4.#"3267654.+7!"?3&N>w{HP>tvt9/Pm=9W7!;!732>7654.+7!#"!>54.+7!#";'!>4% bd(7 @ =2% '7 "?4&TV(7 !>4% '6 m0)% mm0(5ll 2(l ll 2( m%#732>7>54.+7!#";/ =2%'7 "?4&(7 m0( ll 2( m&#"&'732>7>54.+7!#"zi7K& !$$5[K<'7 "?4&}x: q&Wg ll 2({G>54!";#".';!732>7654.+7!#" *5 (3))LNU1)+3#kf]A!yL(7 @ =2% '7 "?4&fV%;/$jj*@,9P1m@mUV mm0(5ll 2(#%2>?3!732>7654.+7!#"B8R=.%qP =2% '7 "?4&}7T8m7m0(5ll 2(1>#";!732>7# ;!732>7654.+7!1!>4% '7 F!>3&Z(7  =2% '7 ;l 2( mm0)!mm0(5l3!;!732>7654.+7!654.+7!#"F(7  =2% '7  (7  =2% k!mm0(5l)/ll 0(1/4>32#".%32>54.#"1bq͜\/_yљXN+Kf:UnQ5*If54.+;!732>7654.+7!2+bV]P$#>W3-(7 D =2% '7 Jx‡I3ZÄ8eSMlD mm0(5l3eb4tpeM.$<=4>32;#".'.%32>54.#"1bq͜\%Ipq$>S3!\uD]p>N+Kf:UnQ5*If54.+72;#".'#;!732>7654.+7mAqS02L3hCi?(-5#kpJP(7 D =2% '7 &Q\E^;yhc::P1m3[I%%mm0(5lA".54>332>54.'.54>32#4.#"~?'Ga;(Hd<:Z?!8bMPyQ)Jzrq8~.N<)Q@("DfEO.Pm@0H0^[,!9M,+HDF*,]lQ\o=$>T0S_.dS64O66LA=%T˃mt=(3732>7#"#!#>54&+; =2% 0C1"^GAO(7 m0(R/D-Xs18/66 mB%2>7>54.+7!#"#".54>7654.+7!#"]V4'7 !>4% _Ȃx~A '6 "?4%  }6_N$ll 2(sw=/[T0317ll 0'/,/0gjb.>7>54&+7!#"#.+7!#"A  p<;/1+&&Vͬ!+/BN'$_aW>:2#4ll 6,?'ll! V:#"##.+7!#">73>7>54&+7! ?1.''n#,/BN'8ɖt ").6;/J !;.L/'ll!1,Yb_!7.+7!#">54&+7!J25;'K&\=7}%- +"57?(&/03-m,20J"8*k?-mm%"G*&Fmm"8*"*ll;+DlT?3732>7.+7!#">7>54&+7!#";7 <2$ ; '\/' J N5%9D+&'(->(7 2m 0(* ll D/DDA)~K!#R"ll 3'? m !2>?3!7!"#! .RD6bf]q#dBN/4U>JZfT^w+!#";+7X"?6( '4Xl :1 &l3#ݐnL !732>7654.+7L}X"?4( &4Xl ;0&lD3# #9XŠcBFV!7!By! .'7!?,c\M- '*+PWT%VRHR ^0E"&5467##".54>3273326732>7.#"[n&K\qKInI%%Jmh(SLClm ( 5 -BQ_)-`TCHG(h+.E>54.+7!3>32#".'#4.#"32>; */R %P^nDAnO-(Nqg*NC7tsH(&F?5)TD+7#".54>32#4.#"m6WF6 /ci]{H&LqoU{O&<_D&7%,M@1#r0< /(SC+4jkLl@#;O, =16aI*;a}5}R1X32>7.#"%3267#".54>7##".54>32>?>54.+7!)-_TCHL%:bO=( ,?-DQ^5-J5 &T_m?OqI"%Ike7#".54>32#*'"32>54&j2ZM= 0ci^}H(Ouq\(o2ZH4 La75/;/%RE-4ikLl?rSsD)w\KxI(KhA?F)3!#".'732>7#?>32#4.#"!fI[jpt7$" 62M=1ϺPvhOyQ)xs $AEmmwN.w "Qfa+Lee20A%DL'I8!psQdv4>32>32#4&#"#".'#".54>7.54>7.4&/32>2>54&#"?Dw-4:B&?: 3%%#.4PnU  0@(斧U}p57\v?&6T:DLYj-O<#9cKZS($<0$ 965P6:GU"3%=04**.X/-caYD(7  ]l<%Da;6XA, #-3 867 ~:> "2?# 7) 6G"8GLIHCFhu/KB+M%46?>54.#"!>54.+7!3>323267#"&# "#E@9/" k *+` 'S`qDAZ7 / &" 5$1>M^8u~,zN:??*"/Mchd(% "l>N#)*=Z;&AU/;<<8a+-0E3(ou)#73267#"&5467>54.+7%".54>32m %" 6#1>N]8v~P )%X":+4F&!;-!7FJf8a+-0E3(oc,zN} "m 0 -?) 1"*?))3".54>32#"&'732>7>54.+7":+4F&!;-!7Fi^{NA^,70G8- )% 0 -?) 1"*?)n. k #Tf? "m+5!>54.+7!>54!";#".'X *+l?2.Gc!>6.iKvZ@yh "l QrrD!"ggS[HX2m/I4f"%267#"&547>54.+7! 6#1>M^8v~! *+ %E3(ocXH "l8a+-0Ldv"&546?>54.#"!4>?>54.#"!>54.+7!3>323>323267fu~#  !A>7-     "C>8-!sͬ )%'(U^i=@V4 &Q^nB?V6 / &" 5$1>M^pc+zN:??*".Kafc(VITXK6 W7$>P-=\=&AU/;<<7b+-/F3(L?^G%4?>54.#"!>54.+7!3>323267#"&!! !#E@:/" hͬ )% 'S`qDAY7 . %# 5#1>M^8v~X:??*"/Mchd(%/ "m=Z;&AU/;<<8a+-0E3(oR^+4>32#".2>54&#"R$InsXtD"Gmt`r@7YG4!SH4XG6%TMj>1hrJl@5k?g6yj >54.+7!3>32#"&';u + "C?7-!N &-7_M<(N )%5#JZrLCoN+#Fij>k( )N*O>&'BV]^)  7.#">767##".54>3273;!)?>9/% JF1=dP;'8  #J[vOAkL+'Jmb-VNByf2;Mh;R4%AXdk4R"@i/8=FNCmN*0^\PtE  C:%!mLu^$4&+7!3>32#4.#"!>2:%+ #GUlHmj|v '@@=8.Nˮ &!mJpL'RNjh.K5/RqK78#^C%2>54.'.54>32#4.#"#".54>3*H49W<7#72>733#)0N"/"KXe;8aH){,hmm0w5{ 8 N4';Z=,.-7iDnO-I34uBJA%4>7##".5467>54&+7!32>7!3267#".-WbrIBZ6 J 2:% &2-_WDm1 %# 5#2>M^8D[8 @hK)%>S-3z4i*D)m<<6-5QMf8a+-0E3(5G!o\%.+7!3>54መ#0^ Fb:N9\N 8*4Unur/q * mh3H?E@Td.H3P.L^B4.'.+7!3>?3>54.'>32ZgPΈ%3 ! 3fd`, ZvE%)4DKjp?x+gT/:! mf˱)N_Qq3#ox30#'7#ZJ'#732>7.+7!3#";!)//8&$,%//5$ӕ!$,sm 4*T'0 m{m !9-+8! mbo^5.+7!3>54>32#"&'732>7A< =lQ/C<,<#SU6dZJ}i;o+W?^u7q=/m(kk]R;EH(A.\RP}hiG#s2UrADJ%2>?3!7!"#!#6) wXR)8+#}ZoR!5B!/hV0D)LkP+7"&54>7654.'7>7>;#";璒=7J+3[I4 J7>?.547>54&+7Փ=7J+3ZI5 IO32: ;ZXq|gtzұX!34>32#".}bw3@ K[.B)#=-+3G+HK*D0$8-82>7#7.54>?3#4&' ;^K: .`e#%Qf:#Fif!!MoG"<_C&&55,K>0"D0< /&PC- ?h^GpK &:J( =1Jz#Tu> Edz~zQ>3232>7#".#"'7>54&'#73.54>32#4&#"!X(LnG6X'.b]S #6/.APal33aen?)E??"!-E3gS4LxW[/|PFgnl ?gWK" gD>+$l,SjN"A }&j2lt=#=Q.X]327'#"&''7&732>54.#"" {f{-g;9i-f}# xfy.l;;k-whw<%?V13V?$$?V31V?%;m-{f{!!h-i;;g-yfy#!whw\s1VA%%AV13WA%%AWZ&I!!!!;!732>?!7!7!7!.+7!#">7>54&+7!#"'6 1#7 <2$ }%/:.( %  *(.")/Y5xwyb mm 0(iywx#) ll K0Ax*N, %P"llNR#3#334-TUk".54>332>54.'.54>7.54>32#4.#".'>54.]g7&:D;U65U; X^2#B91?",3>B91?(6"79BN89(6"79BN8b5c4>32#".732>54.#"2>7#".54>32#4.#"6ahhb66bhha6q.StXYuS.eXtS..PA. &MsMfg38olFjE#%3"8)He@hb66bhhb55bhXuS..SuXe.Su:(1 !:0BxgdxC'5$ 8-0^X+@"&5467##".54>32733267%32>?.#"DK;DO-3K12MgP7IHFL+- +6Ae  :2( 1 3":.# 70@0N8#=R00jg\F)*C51""- 1KV&#;LPOy? 3#%3#wvmVffskVffs%%#!5%%nXb)6Rl32>54.+5! 3##;!32>54.+4>32#".732>54.#"$$p` 4C# "m#gV7K,0K6P{6ahhb66bhha6q.StXYuS.eXtS.fXH1J6%  E}E,D.-@'hb66bhhb55bhXuS..SuXe.Su!5!@yJN'4>32#".732>54.#"0TqA@rT11Tr@AqT0.=#$>..>$#=.@rT11Tr@ApT00TpA#=//=#$?..?)5!#!5!3!nlnnn;J;+7%>54.#""&54>32!26?3;/>T2 !.#HT,SvK@gH'GtW-01 P9J-SPQ+&"8I(:.*F30D*+OUc>2"+;=7A"&54>332>54.+732>54&#""&54>32h)8 (@.%A0-G0DF+N;#%)!1#K[,SxKIkF"&E_8^q>m=YM+?3!)@-4&`6O3)42@$-2$@03D'6P:& \UEjG%-!>7!#BA=A8GQTR$LQP#18;83JJH%#"&'#".54>7!3267!3267#".5##CJT3[~%  %A3/CR*1#"6B 8 +_)y7 &" 5$1>Pb=?S1/M6QB$LHA#9*-D,#8*=}}(--2%6f8a+-0E3(#9K)'#!532>5#".54>3!#";!">-ZxH"LyW"#=--=#l :0AoPR`4l :10: l2}\39#"&'732>54.'73)C0=fF W##F8($2RuF-9!B_> y '!L ;!732>7#"&5>?͒ Th#{:[%04<#jO ZZE9F;* D '#".54>324&#"32>2KgOGtR-4NhL@qT1*04S9..7S7+bbZE)!B`?.e`WB'>`?!733>73#3%;!732>7#"&5>? )):}p Į Th#{:[%04<#j$" ZZGR4mR ?&  O ZZE9F;* D6$P!#3%;!732>7#"&5>?7%>54.#""&54>32!26?3® Th#{:[%04<#j/>T2 !.#HT,SvK@gH'GtW-01 P9 O ZZE9F;* D@-SPQ+&"8I(:.*F30D*+OUc>2"+8z$(j%;!732>?!733>73#3"&54>332>54.+732>54&#""&54>32 )):}p V)8 (@.%A0-G0DF+N;#%)!1#K[,SxKIkF"&E_8^q>m$" ZZGR4mR ?& YM+?3!)@-4&`6O3)42@$-2$@03D'6P:& \UEjG%{V"44>?332>72#".4>32#".NmJ[h9(5 0E.B{mfr>3@ K[.B)#=-1Yya'!OeT3N62Rl;7aH*(S(3G+HK*D0$8s&%DRs&%whRs>K>7!#.'#;!732>7!;!732654&/.'!kLPL (-,021DFBd8;)++(++ %\/BN3 ")FKPQ$ PRN.2222.%8&#mm $>0J 6'mm)-!-OJF%%?AI0oER2>73#".#"#>32;!732>7!;!732654&/.'!&{ -CY77XJA!&z /H]76UG?2d8;)++(++ %\/BN3 ")'1kY:(1('.kZ<(1(%8&#mm $>0J 6'mm)-!-OJF%%?AI0L&%k)R'MZ#".54>324.#"32>;!732>7!;!732654&/.'!&CZ33ZC&&CZ33ZC&}!,,!!,,!rd8;)++(++ %\/BN3 ")%7S99S76T88T6) )* *ڸ%8&#mm $>0J 6'mm)-!-OJF%%?AI0#9=#>54.#!!!!2>?3!732>?!;!732>7'7!#H"7(l/{D0K9' !^i =2%1-y85#236%$'!2&{.="Xm0(+C mm'<)3 l}&'{)\s&)D'R\s&)wR\sG>7!#.'#32>7>54.+7!#>54.#!!!!2>?3!-LPL (-,021DFB =2%'7 XH"7(m/{D0L8' !_iFKPQ$ PRN.2222.B0( l$'!2&{.="X\L&)kRs&-D6R*s&-wRs>>7!#.'#732>7>54.+7!#";LPL (-,021DFB =2%'7 "?4&(7 FKPQ$ PRN.2222.m0( ll 2( mL&-kR#4'32>7#73>54.+7!2#!%2>54.+!! =2%cX'6 T3c/yR2^RVlym0(} lHЈzɧxBu$kf1}oS2>73#".#"#>32;!732>7654.+7!654.+7!#"&{ -CY77XJA!&z /H]76UG?y(7  =2% '7  (7  =2% '1kY:(1('.kZ<(1(k!mm0(5l)/ll 0(1s&3DRs&3wyRs0H>7!#.'#4>32#".%32>54.#"LPL (-,021DFB1bq͜\/_yљXN+Kf:UnQ5*If73#".#"#>324>32#".%32>54.#"&{ -CY77XJA!&z /H]76UG?1bq͜\/_yљXN+Kf:UnQ5*If3273#"&'#7.%.#"4&'32>1b򐢅aP`/_QA]VbN%kAUnR5V%i>UnQ5!bѽUDE֕^X" }Id`F65R+N s5/Rs&9DRs&9wRs[>7!#.'#2>7>54.+7!#"#".54>7654.+7!#"LPL (-,021DFBQ]V4'7 !>4% _Ȃx~A '6 "?4%  FKPQ$ PRN.2222.R6_N$ll 2(sw=/[T0317ll 0'/,/0gjL&9kTRTs&=wHR4A#732>7>54.+7!#"32+;32>54.+/ =2%'7 "?4&CyI3Ză(7 jT]P$#?W3-m0( ll 2(3eb4tpeM.F m8dSLlEH+d"#"&'732>7#737>32#"#".54>332654.'.54>3>54&7U?+ EWflo4(G/ -H;0Ϧmkoo7 u=X9(E4cUAwfM~Z18M0%;*DG "=0`k?gD R'IiCX^jG+ q'U_Ќ?tc,.SvHADC+<%0.19cQ^3:R5(?+0^L/ZJ 9647dSwM$/M"TfR !&EDR !&EwR !I^>7!#.'#"&5467##".54>3273326732>7.#"LPL (-,021DFBJ[n&K\qKInI%%Jmh(SLClm ( 5 -BQ_)-`TCHG(hR Pe2>73#".#"#>32"&5467##".54>3273326732>7.#"&{ -CY77XJA!&z /H]76UG?[n&K\qKInI%%Jmh(SLClm ( 5 -BQ_)-`TCHG(hR &Ek+R w'Xm#".54>324.#"32>"&5467##".54>3273326732>7.#"&CZ33ZC&&CZ33ZC&}!,,!!,,!-[n&K\qKInI%%Jmh(SLClm ( 5 -BQ_)-`TCHG(hRb8Sc%2>7#"&'##".54>32>32#*'%32>7>7.#""32>54&-2ZL> 0ci&&N^tKInI%%JmhgGP}\)o)%PKB '1 '3;>CrSuE)w;P18]{D5mhb*">hN#=R^d1*KjA?FR9^&G{dR=!&IDR!&IwRJ!BP>7!#.'#2>7#".54>32#*'"32>54&sLPL (-,021DFB2ZM= 0ci^}H(Ouq\(o2ZH4 La75KPQ$ PRN.2222./;/%RE-4ikLl?rSsD)w\KxI(KhA?FR=&Iku!&Du!&wa?!<>7!#.'#3267#"&5467>54.+7ELPL (-,021DFB. %" 6#1>N]8v~P )%KPQ$ PRN.2222.f8a+-0E3(oc,zN} "mu&kR#*@4>32.'?.'7%#".%32>54&#"R!Bdh3_ A20l;'[N1;bF&#Gls_r?7+>&7XD1UO8YD0?d<Q6Z#1}J6N8lYe95j\Ea<3Unvu2}r3UlspL?g2>73#".#"#>324?>54.#"!>54.+7!3>323267#"&&{ -CY77XJA!&z /H]76UG?!! !#E@:/" hͬ )% 'S`qDAY7 . %# 5#1>M^8v~'1kY:(1('.kZ<(1("X:??*"/Mchd(%/ "m=Z;&AU/;<<8a+-0E3(oR!&SDR!&SwR!0D>7!#.'#4>32#".2>54&#"LPL (-,021DFB$InsXtD"Gmt`r@7YG4!SH4XG6%TKPQ$ PRN.2222.Mj>1hrJl@5k?g6yj73#".#"#>324>32#".2>54&#"&{ -CY77XJA!&z /H]76UG?$InsXtD"Gmt`r@7YG4!SH4XG6%T'1kY:(1('.kZ<(1(Mj>1hrJl@5k?g6yj3273#"'#7.2>=".R$InsC4WG6$?Mj>k4jJl@5s6?g6+'V;a:##uB!&YDuB!&YwuB!Z>7!#.'#4>7##".5467>54&+7!32>7!3267#".LPL (-,021DFB\-WbrIBZ6 J 2:% &2-_WDm1 %# 5#2>M^8D[8KPQ$ PRN.2222. @hK)%>S-3z4i*D)m<<6-5QMf8a+-0E3(5GuB&Ykso!&]w)6!7!;!732>7!;!732654&/.'!"Rd8;)++(++ %\/BN3 ")+%8&#mm $>0J 6'mm)-!-OJF%%?AI0R {4I!7!"&5467##".54>3273326732>7.#""Rx[n&K\qKInI%%Jmh(SLClm ( 5 -BQ_)-`TCHG(hm7D".'332673;!732>7!;!732654&/.'!DfF(\HJn?\yd8;)++(++ %\/BN3 ")+.UwHHDAK;t[8%8&#mm $>0J 6'mm)-!-OJF%%?AI0R BW".'332673"&5467##".54>3273326732>7.#"DfF(\HJn?\y[n&K\qKInI%%Jmh(SLClm ( 5 -BQ_)-`TCHG(h=J"&54>733267;!732>7!;!732654&/.'!!|-PoC#UJ2@5C&&\ed8;)++(++ %\/BN3 ")kf7[G3 (0J 6'mm)-!-OJF%%?AI0R ^H]"&54>733267"&5467##".54>3273326732>7.#"|-PoC#UJ2@5C&&\[n&K\qKInI%%Jmh(SLClm ( 5 -BQ_)-`TCHG(hs&'wRR!&GwsJ>7!#.'#2>7#".54>32#4.#"LPL (-,021DFBGrZD >ytT:nfe2,Mj> %D9QqW;FKPQ$ PRN.2222.m 5B# &3gS3I̓{ִJ#?[7-D/+hZ7!#.'#2>7#".54>32#4.#"LPL (-,021DFB6WF6 /ci]{H&LqoU{O&<_D&7%,M@1#rKPQ$ PRN.2222.0< /(SC+4jkLl@#;O, =16aI*;a}5}{E".54>322>7#".54>32#4.#"":+4F&!;-!7FGrZD >ytT:nfe2,Mj> %D9QqW;T 0 -?) 1"*?)D 5B# &3gS3I̓{ִJ#?[7-D/+hZ322>7#".54>32#4.#"":+4F&!;-!7F6WF6 /ci]{H&LqoU{O&<_D&7%,M@1#r 0 -?) 1"*?)0< /(SC+4jkLl@#;O, =16aI*;a}5}sJ!.'73>732>7#".54>32#4.#"MOL (-,/21DEBGrZD >ytT:nfe2,Mj> %D9QqW;XKPQ$PSN.3223.% 5B# &3gS3I̓{ִJ#?[7-D/+hZ732>7#".54>32#4.#"MOL (-,/21DEB6WF6 /ci]{H&LqoU{O&<_D&7%,M@1#rKPQ$PSN.3223.f0< /(SC+4jkLl@#;O, =16aI*;a}5}s8E!.'73>7332>7>54.+7!2#!%2>54.+7MOL (-,/21DEB =2%'7 T3c/yR2]RVXKPQ$PSN.3223.0( lHЈzɧxBu$kf1F\ d>7!#32>7.#"%3267#".54>7##".54>32>?>54.+7!b"B;EK${7)-_TCHL%:bO=( ,?-DQ^5-J5 &T_m?OqI"%Ike7##".54>32>7!7!>54.+7!32>7.#" ,?-DQ^5-J5 &T_m?OqI"$Gib */X)-_TC9M%7^L:' l7<:0,P,$(=)!OpH!7>54.+7!#>54.#!!!!2>?3!"R' =2%'7 XH"7(m/{D0L8' !_i+0( l$'!2&{.="XRC{-;!7!2>7#".54>32#*'"32>54&!"R'2ZM= 0ci^}H(Ouq\(o2ZH4 La75٢ /;/%RE-4ikLl?rSsD)w\KxI(KhA?F\m@".'33267332>7>54.+7!#>54.#!!!!2>?3!^DfF(\HJn?\y? =2%'7 XH"7(m/{D0L8' !_i+.UwHHDAK;t[8B0( l$'!2&{.="XRR;I".'3326732>7#".54>32#*'"32>54&DfF(\HJn?\y2ZM= 0ci^}H(Ouq\(o2ZH4 La75.UwHHDAK;t[8/;/%RE-4ikLl?rSsD)w\KxI(KhA?F\^B".54>3232>7>54.+7!#>54.#!!!!2>?3!^":+4F&!;-!7Fd =2%'7 XH"7(m/{D0L8' !_i7 0 -?) 1"*?)60( l$'!2&{.="XR=)=K".54>322>7#".54>32#*'"32>54&":+4F&!;-!7F2ZM= 0ci^}H(Ouq\(o2ZH4 La75 0 -?) 1"*?)/;/%RE-4ikLl?rSsD)w\KxI(KhA?F\F"&54>73326732>7>54.+7!#>54.#!!!!2>?3!f|-PoC#UJ2@5C&&\Q =2%'7 XH"7(m/{D0L8' !_ikf7[G3 (7332672>7#".54>32#*'"32>54&V|-PoC#UJ2@5C&&\2ZM= 0ci^}H(Ouq\(o2ZH4 La753kf7[G3 (7332>7>54.+7!#>54.#!!!!2>?3!MOL (-,/21DEB =2%'7 XH"7(m/{D0L8' !_iXKPQ$PSN.3223.0( l$'!2&{.="XR!BP!.'73>732>7#".54>32#*'"32>54&MOL (-,/21DEB2ZM= 0ci^}H(Ouq\(o2ZH4 La75KPQ$PSN.3223.f/;/%RE-4ikLl?rSsD)w\KxI(KhA?FsZ>7!#.'##"#".54>32#4.#"3267654.+7!LPL (-,021DFBx"?3&N>w{HP>tvt9/Pm=9W7!#.'#4>32>32#4&#"#".'#".54>7.54>7.4&/32>2>54&#"NLPL (-,021DFB?Dw-4:B&?: 3%%#.4PnU  0@(斧U}p57\v?&6T:DLYj-O<#9cKZS($<0$ 965P6:KPQ$ PRN.2222.GU"3%=04**.X/-caYD(7  ]l<%Da;6XA, #-3 867 ~:> "2?# 7) 6G"8GLIHCFhu/KBmS".'332673#"#".54>32#4.#"3267654.+7!DfF(\HJn?\y"?3&N>w{HP>tvt9/Pm=9W32>32#4&#"#".'#".54>7.54>7.4&/32>2>54&#"DfF(\HJn?\y?Dw-4:B&?: 3%%#.4PnU  0@(斧U}p57\v?&6T:DLYj-O<#9cKZS($<0$ 965P6:.UwHHDAK;t[8GU"3%=04**.X/-caYD(7  ]l<%Da;6XA, #-3 867 ~:> "2?# 7) 6G"8GLIHCFhu/KB{U".54>32#"#".54>32#4.#"3267654.+7!":+4F&!;-!7F"?3&N>w{HP>tvt9/Pm=9W324>32>32#4&#"#".'#".54>7.54>7.4&/32>2>54&#"":+4F&!;-!7F?Dw-4:B&?: 3%%#.4PnU  0@(斧U}p57\v?&6T:DLYj-O<#9cKZS($<0$ 965P6: 0 -?) 1"*?)GU"3%=04**.X/-caYD(7  ]l<%Da;6XA, #-3 867 ~:> "2?# 7) 6G"8GLIHCFhu/KB; M>7!##"#".54>32#4.#"3267654.+7!"B;EK${"?3&N>w{HP>tvt9/Pm=9W734>32>32#4&#"#".'#".54>7.54>7.4&/32>2>54&#""B "2?# 7) 6G"8GLIHCFhu/KBsg>7!#.'#732>7!;!732>7654.+7!#"!>54.+7!#";LPL (-,021DFB!>4% bd(7 @ =2% '7 "?4&TV(7 !>4% '6 FKPQ$ PRN.2222.m0)% mm0(5ll 2(l ll 2( m+f>7!#.'#46?>54.#"!>54.+7!3>323267#"&LPL (-,021DFB)# "#E@9/" k *+` 'S`qDAZ7 / &" 5$1>M^8u~}KPQ$ PRN.2222.\,zN:??*"/Mchd(% "l>N#)*=Z;&AU/;<<8a+-0E3(oVZ!732>7!;!732>7#737654.+7!#"!7>54.+7!#"3#;7!'!>4% bd(7 @ =2% '7 "?4&(7 !>4% Ө'6 +)m0)% mm0(lT5ll 2(c] ll 2(cl m9+R%46?>54.#"!#73>54.+7!!!3>323267#"& "#E@:/" ` *+9= 'S`qDAY7 % &" 5$1>M^8u~,zNw:??*"/Mchd(Pl*"llyN#)*=Z;&AU/;<<8a+-0E3(o,oE2>73#".#"#>32732>7>54.+7!#";@&{ -CY77XJA!&z /H]76UG? =2%'7 "?4&(7 '1kY:(1('.kZ<(1(m0( ll 2( m5fC2>73#".#"#>323267#"&5467>54.+7z&{ -CY77XJA!&z /H]76UG? %" 6#1>N]8v~P )%'1kY:(1('.kZ<(1(f8a+-0E3(oc,zN} "m)!7!732>7>54.+7!#";"R =2%'7 "?4&(7 +3m0( ll 2( mu{'!7! 3267#"&5467>54.+7"R %" 6#1>N]8v~P )%٢f8a+-0E3(oc,zN} "mm7".'332673732>7>54.+7!#";vDfF(\HJn?\y =2%'7 "?4&(7 +.UwHHDAK;t[8m0( ll 2( mu65".'3326733267#"&5467>54.+7DfF(\HJn?\yZ %" 6#1>N]8v~P )%.UwHHDAK;t[8f8a+-0E3(oc,zN} "m="&54>733267732>7>54.+7!#";&|-PoC#UJ2@5C&&\{ =2%'7 "?4&(7 kf7[G3 (7332673267#"&5467>54.+7%".54>328|-PoC#UJ2@5C&&\ %" 6#1>N]8v~P )%X":+4F&!;-!7Fkf7[G3 (32732>7>54.+7!#";":+4F&!;-!7F- =2%'7 "?4&(7 T 0 -?) 1"*?)m0( ll 2( muJ#3267#"&5467>54.+7m %" 6#1>N]8v~P )%Jf8a+-0E3(oc,zN} "m&-.5uy)&MNs?>7!#.'##"&'732>7>54.+7!#"LPL (-,021DFBzi7K& !$$5[K<'7 "?4&FKPQ$ PRN.2222.}x: q&Wg ll 2(!8>7!#.'##"&'732>7>54.+7;LPL (-,021DFB8^{NA^,70G8- )%KPQ$ PRN.2222.n. k #Tf? "m;{ S>7!#>54!";#".';!732>7654.+7!#""B;EK${7*5 (3))LNU1)+3#kf]A!yL(7 @ =2% '7 "?4&fVGJ NRQ#%;/$jj*@,9P1m@mUV mm0(5ll 2(+; A>7!#!>54.+7!>54!";#".'&"B;EK${X *+l?2.Gc!>6.iKvZ@yVGJ NRQ#]h "l QrrD!"ggS[HX2m/I4+J5!>54.+7!>54!";#".'Xͬ )+  ?2.Gc!>6.iKvZ@yh/ "m-kme'!"ggS[HX2m/I4s&0wFRf&Pw; />7!#2>?3!732>7654.+7!#"l"B;EK${8R=.%qP =2% '7 "?4&VGJ NRQ#B7T8m7m0(5ll 2(; .>7!#267#"&547>54.+7! "B;EK${ 6#1>M^8v~! *+ %VGJ NRQ#TE3(ocXH "l8a+-0 />7!#2>?3!732>7654.+7!#" "B;EK${8R=.%qP =2% '7 "?4&HJ NRQ" 7T8m7m0(5ll 2(f` .>7!#267#"&547>54.+7!"B;EK${ 6#1>M^8v~! *+ %HJ NRQ"E3(ocXH "l8a+-07".54>322>?3!732>7654.+7!#"?":+4F&!;-!7F8R=.%qP =2% '7 "?4&~ 0 -?) 1"*?)7T8m7m0(5ll 2(f6".54>32267#"&547>54.+7!)":+4F&!;-!7F 6#1>M^8v~! *+ %: 0 -?) 1"*?)UE3(ocXH "l8a+-0+%2>?3!732>7?654.+7!#"%B8R=.%qP =2%F j '7 "?4&FT }7T8m7m0(N`a5ll 2(*%267#"&54??>54.+7!7 6#1>M^8v~!{ *+!> %E3(ocXkTVD "lT]\8a+-0s&2wRL?!&Rw; ?>7!# ;!732>7654.+7!654.+7!#""B;EK${(7  =2% '7  (7  =2% VGJ NRQ#k!mm0(5l)/ll 0(1L;?^ S>7!#4?>54.#"!>54.+7!3>323267#"&l"B;EK${!! !#E@:/" hͬ )% 'S`qDAY7 . %# 5#1>M^8v~VGJ NRQ#X:??*"/Mchd(%/ "m=Z;&AU/;<<8a+-0E3(osL!.'73>73 ;!732>7654.+7!654.+7!#"MOL (-,/21DEB(7  =2% '7  (7  =2% XKPQ$PSN.3223.k!mm0(5l)/ll 0(1L?!`!.'73>734?>54.#"!>54.+7!3>323267#"&MOL (-,/21DEB^!! !#E@:/" hͬ )% 'S`qDAY7 . %# 5#1>M^8v~KPQ$PSN.3223.X:??*"/Mchd(%/ "m=Z;&AU/;<<8a+-0E3(oj'R+C8C;!732>7654.+7!654.+7!#"#"&'732>7(7  =2% '7  (7  =2% \b(T"90f\Mk!mm0(5l)/ll 0(1v7 s #VlLhD"&'732>7>54.#"!>54.+7!3>327A^+70G8. "#E@:/"mͬ )% 'S`qDAZ7 _z k #Tfn:??)"/Mchd(/ "m=[:&AU/;<;Zn.3!7!4>32#".%32>54.#""RP1bq͜\/_yљXN+Kf:UnQ5*If32#".2>54&#""R$InsXtD"Gmt`r@7YG4!SH4XG6%T٢Mj>1hrJl@5k?g6yj32#".%32>54.#"DfF(\HJn?\yV1bq͜\/_yљXN+Kf:UnQ5*If32#".2>54&#"DfF(\HJn?\y $InsXtD"Gmt`r@7YG4!SH4XG6%T.UwHHDAK;t[8Mj>1hrJl@5k?g6yj7!!7>7!4>32#".%32>54.#"R;85Tcg);85Tcg)11bq͜\/_yљXN+Kf:UnQ5*If7!!7>7!4>32#".2>54&#"?;85Tcg);85Tcg)$InsXtD"Gmt`r@7YG4!SH4XG6%T!JNO%QXS!JNO%QXSMj>1hrJl@5k?g6yj54.#!!!!2>?3!#".54>267.#"/c+G#7(m0{C0L8( ^7-a3yљX1bt-R%#d8UnR5+Kf $'!2&{.="X IԋbѽURPe],R+b5K[%2>7#"&'#".54>32>32#*'2>54&#""32>54&X2ZL> 0ciu8JΈ`r@$Ioss2PԈ\(oA7ZF5"SH4YG7$):!?80(L`74/;/%RE-PQHY4jkLl@LTKYrSuE)w@i5xg=e8>W7h#=R^d1*KjA?F}s&6wRLu!&Vw!;} N>7!#32>54.+72;#".'#;!732>7654.+7"B;EK${AqS02L3hCi?(-5#kpJP(7 D =2% '7 VGJ NRQ#&Q\E^;yhc::P1m3[I%%mm0(5l;u^ 0>7!#4&+7!3>32#4.#"!>""B;EK${.2:%+ #GUlHmj|v '@@=8.Nˮ VGJ NRQ#[&!mJpL'RNjh.K5/RqK78}s%[!.'73>7332>54.+72;#".'#;!732>7654.+7MOL (-,/21DEBgAqS02L3hCi?(-5#kpJP(7 D =2% '7 XKPQ$PSN.3223.&Q\E^;yhc::P1m3[I%%mm0(5lLu!=!.'73>734&+7!3>32#4.#"!>4MOL (-,/21DEB2:%+ #GUlHmj|v '@@=8.Nˮ KPQ$PSN.3223.u&!mJpL'RNjh.K5/RqK78s&7wR#d!&Ww7sZ>7!#.'#".54>332>54.'.54>32#4.#"LPL (-,021DFBm~?'Ga;(Hd<:Z?!8bMPyQ)Jzrq8~.N<)Q@("DfEOFKPQ$ PRN.2222..Pm@0H0^[,!9M,+HDF*,]lQ\o=$>T0S_.dS64O66LA=%T˃mt=#!\>7!#.'#2>54.'.54>32#4.#"#".54>3"LPL (-,021DFB*H49W<73".54>332>54.'.54>32#4.#"MOL (-,/21DEBU~?'Ga;(Hd<:Z?!8bMPyQ)Jzrq8~.N<)Q@("DfEOXKPQ$PSN.3223.y.Pm@0H0^[,!9M,+HDF*,]lQ\o=$>T0S_.dS64O66LA=%T˃mt=#"!\!.'73>732>54.'.54>32#4.#"#".54>3MOL (-,/21DEB*H49W<73732>7#"#!#>54&+;MOL (-,/21DEB =2% 0C1"^GAO(7 XKPQ$PSN.3223.m0(R/D-Xs18/66 m[d 2>7!#267#".54>7#72>733#"B;EK${0N"/"KXe;8aH){,hmm0w5{ 8HJ NRQ" N4';Z=,.-7iDnO-I3403732>7!7!#"#!#>54&+!!; =2% \)u0C1"^GAOw'^(7 m0(l+/D-Xs18/66l? m9hF.%267#".54>?#73#72>733#3#)0N"/"KXe;8aH)'<,hmm0w5>' 8 N4';Z=,.-miDnOm-I34ob2>73#".#"#>322>7>54.+7!#"#".54>7654.+7!#"&{ -CY77XJA!&z /H]76UG?C]V4'7 !>4% _Ȃx~A '6 "?4%  '1kY:(1('.kZ<(1(6_N$ll 2(sw=/[T0317ll 0'/,/0gjuBa2>73#".#"#>324>7##".5467>54&+7!32>7!3267#".&{ -CY77XJA!&z /H]76UG?-WbrIBZ6 J 2:% &2-_WDm1 %# 5#2>M^8D[8'1kY:(1('.kZ<(1( @hK)%>S-3z4i*D)m<<6-5QMf8a+-0E3(5GF!7!2>7>54.+7!#"#".54>7654.+7!#""R]V4'7 !>4% _Ȃx~A '6 "?4%  +6_N$ll 2(sw=/[T0317ll 0'/,/0gjuB{E!7!4>7##".5467>54&+7!32>7!3267#".B"R-WbrIBZ6 J 2:% &2-_WDm1 %# 5#2>M^8D[8٢5 @hK)%>S-3z4i*D)m<<6-5QMf8a+-0E3(5GmT".'3326732>7>54.+7!#"#".54>7654.+7!#"DfF(\HJn?\y]V4'7 !>4% _Ȃx~A '6 "?4%  +.UwHHDAK;t[8R6_N$ll 2(sw=/[T0317ll 0'/,/0gjuBS".'3326734>7##".5467>54&+7!32>7!3267#".DfF(\HJn?\yA-WbrIBZ6 J 2:% &2-_WDm1 %# 5#2>M^8D[8.UwHHDAK;t[8 @hK)%>S-3z4i*D)m<<6-5QMf8a+-0E3(5G'j#".54>324.#"32>2>7>54.+7!#"#".54>7654.+7!#"&CZ33ZC&&CZ33ZC&}!,,!!,,!]V4'7 !>4% _Ȃx~A '6 "?4%  7S99S76T88T6) )* *6_N$ll 2(sw=/[T0317ll 0'/,/0gjuBw'i#".54>324.#"32>4>7##".5467>54&+7!32>7!3267#".&CZ33ZC&&CZ33ZC&}!,,!!,,!l-WbrIBZ6 J 2:% &2-_WDm1 %# 5#2>M^8D[87S99S76T88T6) )* *6 @hK)%>S-3z4i*D)m<<6-5QMf8a+-0E3(5Gs ^7>7!!7>7!2>7>54.+7!#"#".54>7654.+7!#"=;85Tcg);85Tcg)7]V4'7 !>4% _Ȃx~A '6 "?4%  +!JNO%QXS!JNO%QXSR6_N$ll 2(sw=/[T0317ll 0'/,/0gjuB! ]7>7!!7>7!4>7##".5467>54&+7!32>7!3267#".X;85Tcg);85Tcg)-WbrIBZ6 J 2:% &2-_WDm1 %# 5#2>M^8D[8!JNO%QXS!JNO%QXS @hK)%>S-3z4i*D)m<<6-5QMf8a+-0E3(5GZ"&54>7332672>7>54.+7!#"#".54>7654.+7!#"|-PoC#UJ2@5C&&\(]V4'7 !>4% _Ȃx~A '6 "?4%  kf7[G3 (7332674>7##".5467>54&+7!32>7!3267#".|-PoC#UJ2@5C&&\-WbrIBZ6 J 2:% &2-_WDm1 %# 5#2>M^8D[8kf7[G3 (S-3z4i*D)m<<6-5QMf8a+-0E3(5G VsS>7!#.'##"##.+7!#">73>7>54&+7!LPL (-,021DFBt1.''n#,/BN'8ɖt ").6;/FKPQ$ PRN.2222. !;.L/'ll!1,Yb_!7!#.'#4.'.+7!3>?3>54.'>32LPL (-,021DFB+ZgPΈ%3 ! 3fd`, ZvE%)4DKKPQ$ PRN.2222.jp?x+gT/:! mf˱)N_Qq3#ox30#'7#ZTsX>7!#.'#732>7.+7!#">7>54&+7!#";1LPL (-,021DFB7 <2$ ; '\/' J N5%9D+&'(->(7 2FKPQ$ PRN.2222.m 0(* ll D/DDA)~K!#R"ll 3'? mo!N>7!#.'#.+7!3>54>32#"&'732>7;LPL (-,021DFBA< =lQ/C<,<#SU6dZJ}i;o+W?^u7KPQ$ PRN.2222.=/m(kk]R;EH(A.\RP}hiG#s2UrATL&=k/Rs&>w RV!&^w){)".54>32 !2>?3!7!"#!":+4F&!;-!7F .RD6bf]q#dBT 0 -?) 1"*?)/4U>JZfT^wD)+".54>322>?3!7!"#!":+4F&!;-!7F#6) wXR)8+#}ZoR 0 -?) 1"*?)!5B!/hV0D)Lks.!.'73>73!2>?3!7!"#!5MOL (-,/21DEBT .RD6bf]q#dBXKPQ$PSN.3223./4U>JZfT^wO!0!.'73>732>?3!7!"#!IMOL (-,/21DEB|#6) wXR)8+#}ZoRKPQ$PSN.3223.j!5B!/hV0D)Lk)+#4.#"#".'732>7>32xs $ 0$ I[jpt7$" 62M=1+OyQ)wDL'I8!8V9^mwN.w "Qf0As)&654'&54632! !224&#"#%RA m>Q///>I@=3_M\ 8ǺR#654'&54632!"&5! 4#"32m#%RAo1;Ǜ^4G///>I*.Ol .<3267>54&#" #"432>32;!654&#"3aT @Aun .\~ @SP{o}nyp~o>?59@3ȵPr9~?98 %!m]ź^ƷR^,8.5467>54&#"#"&54$32>3254&#"3 96Wzک!S˄]JAxLB(?N*HHI ˵V@&A)#kyji}ls,5%3267>54&#"#"&5463!2!#;!2654&+]S E<[z3>J5˜IAUD㩩zr-m><  52qX!8(SGҽ #"mi)/=>32#4&#"3>32#"&';!32654&#"!+ʎxt#'/8% ?ZwR߯>k(  (DNQ'^_87Z!^TDL@_gOiQ1ŭ?: 1%m3gvF1:'3267>54&+7!#"32;#"&'#;!2654&+]S =U^X 򺳍0RA)AT)1㒣Xpim>< $"ll>?+Rlfu#'$!m𮦀w!'#"$546$654&#""&54$32326"[Mnol#mrq 8"wCMN;vrKavb)#"&54>$654&#""&54632326L ߳ZBFHalaUöaАS]D 5hmch[H8;jm>4_z^mc^EBAf1u#/#"&546323267#"&5467654&#"3JBcr D9&@%#MN B4/>C63P {g|/d84N 6:Z7(-_.J?/:E>87{mhF.%#"&5467#726733#3267#"&54673267^+e;z {lRw5{ 8.."3|HV 1"54&#"#"&5463!#4654&+;!]R@B]x4?HGAOAT?m==  60fV!8(TFs66 $!m{+#72>32.#"3#3267#"&5467vU~WrI#>KqP-I34 NP?~q$V2%#"#!#4654&+3267#"&5467P`%^GAO <9<B|2 9JnXs668Z"N= w %U.{)37!>54'&54632!"&547654+7!#"3267654#sZI~#%SAwc (Jl]9///>I)Sc8Flly/t>ѣ%Fu8##"547654&+7!327!>54'&54632327#"54#rw#J2:%#XS(m1<#%RA=H1G2 x<iX')m:b_7///>I׍7]/EL >7!#0kc59MC6 >73!M<0m+o>!L@/iq33267#"&5467' !%`BEX J8 ?AD?5^3254&#""&54632#"&546/QEt\^YU ^aоqw8Eu´udL`R9^E".54>322>7#".54>32#4.#"":+4F&!;-!7Fv6WF6 /ci]{H&LqoU{O&<_D&7%,M@1#rx 0 -?) 1"*?)0< /(SC+4jkLl@#;O, =16aI*;a}5}5^2".54>323254&#""&54632#"&546":+4F&!;-!7FQEt\^YU ^aо 0 -?) 1"*?)w8Eu´udL`fTu^ >7!#II&d4Ag )>73#'#"&54632#"&54632"! 9@D{1#,3>B92?#,3>B92?LQO" PRP!(6"89AN89(6"89AN8&%#YX2}#"&54>323@ J\/A)#=-3G+HK*D0$8A')YX',YX'-YX:&3Y/Xs'=YX&{`Y/Xu&Z%^&`';!732>7>54.+7!#'.#! (7 D =2%'7 ^E%9)*5mm0( lob-B-b\)>,7O;2>?3#'.'#"#4>32#".%32>54.#"2.)9( jVj 4(.8# jV1bq͜\/_yљXN+Kf:UnQ5*If7!;!7326y1#)8;)++(++ %\/CM*=-`]W%%GKS1}%8&#mm $>0J 6'mm)112j#C)33!2>?3#54.#!"#!;2>?3#'.+"#sV&9.#.C0 :6.X.C0! g4.G)9' jRj 4(H.9# jR D<*8>-?7**8='# #'y'# #'3 9#";!732>7!;!732>7654.+7 !>3&'7 =!>3&(7 @ =2% '7 l 2( mm0)P mm0(5lX41%2>?3!77!#765.#!N0I9(u}#E  ":.}4G*>!zwm %" !8T=^CP]!732>?#".54>;7>54.+7!#"32+;32>54.+%#"; >4&0x‡I8_Ƅq'6 "?4% /yI8_ǃp(7 k+][.&CZ3+][.&BZ4m.(F3db4tpeM.! "ll 2(3eb4tpeM.F m8dSLlE8eSMkE`<f\4>?>54&+7!;>54.+7!#"32>7!"+;!732>7#".% /?@c 8YA-'7 "?4% -XzT6f#>4' 7 +EbsN3 (7 T ?4%6Nl++796 "-l-4i%2I0q "ll 2(+\bl ;0=tgW?#8mm.(2Ww JG!>7>54.#"!3;7.5467>$3232>?3y" #JpN)0E,\!o*H9\d5 ~ۙR ip/3J6&mTǻ(A"GtS.*O55\H0 @"1 NrTC"nP>ti X#izP0"DbL&-kRTL&=k/RX^&Y9J^&Y/^&YuS^&Yj&Z X^6M%467##".54>323>733267#"&%2>?.#" &Q_uJIkG"+NlMd} K4-# + (" 5#2FT_2mh)J@7*$4 ,PD7'3"JJvS,6bRkīc7pa5b&1[]d<?@>-:E3(TO0Ndfa$8^D&4[yGmw)!L>32#".'2>54.'#"&54632>54&#"=Zeeas?@bt4.YE*Lv5WH:|3WA%)@ /:/%!(?,SG,C6*1>KXg+(LrI_[6Uk54&'>32#".54>7.#"'>`H^54.'".54>7.54>32#4.#"-@iK)5E&?.54>32#4.#">32#".'32>70Qj:!7'F{^^/BmQ 1%0A)C<,.,*$7.'7>32#"&''>54.'.J&Lqp2c^W%V!Zkv>@EH%* !IuS0lFBjNHkr{.N:HjA`5N!0<"d;0")!!>0hf)9,#"{_N{]?a];% 5V|/^6>5<'!3>32!.5467>54&#"!  IZnC  A<.M>0}'[[V# *k2'O>'@&%MH=#(?N*HHI0ZRh%3".54>32'2>7!"!>54.bf4%Mu}*AYr>4aUIT  MC4^SE"7FiإbDk>zU0dec-pv:OيGX7\B%uJ3267#".5467` 8.0N"/"KWe;8aH) JV;N34 N4';Z=%e3+\<67>?>32#4&#";#"./!>54&+7NT ) CaTP1*<'KK%%@CF#*.8# jhEgJͨ 2:%J{;AA$ 7Rl@%1JX36(BV.i-F.l1UBs*D)m3)3.#".54>32;#".'.5465#!*<)/*$4L2QsM* 1 -9 /@`B%  (03bVsD (9#";+9plYd6mEw]|?+%Va`#^JJx7^.#.#"'>32>54&'>326]}I $/''$NRT**=-!0[QD1(* NADCE3Ү}E Z%%V+ityvo/*B EHM7`X_4>?.54>7.'7>32#"&'>32#".''>54.'.7Yg9jQ10WwHW;YVfo6CGJ&m#>W4>RWa,;!+h1(:R^,+' 7s^<(Ig?Hc<Fop|.O:HkA'au& '6H.+PG? @2l-$F"6&/}D 5( %+2?UtJ.;(0?M-CxcGa\<% /IfR^SVJ6#3267#"&54>7!#"&'72>7#"#>3! =%;s>ff,6y2JfF$D%FA;:GXo+YyLBJ%"+  T,0T^@IQyP't .\PH9Ol@^,".'!>32'2>54&#"{3RD: O]vixAVɥ9iR1NP9O:*J*.6#]7xD~C7tcFz32#4.#"'>54.'.T"Ein_P#u&5'G?3%DlNHksy.O:HjAyHuF%>Q+NX5_H*7[w~5)>0("{_N{]?a^9% /WRJ-".54>3!!'2>54&'#"3t{?7dcL//(Qo=cF& .a^T@%8PCxe}ĕgACWi:x˓S=|T"(Dh^FlK'9'J'3267#".54>7#"#>3!%/3&O%/>i,L8 3E&%<." o.]yB>BD+KAT7=4O5EC,;!OxJj`532>54&'>32#".5467>54&+7X 2L6@mXC.VG&10G0%Kqsfc0 E 3:%J"K-J54[yG[` &>,&Eb=_®M.VyJ^>+*F)mRb#&$547>32#24&#"7Zmhc(cb{4?=M YtN˜~/LlgjP-!.#"'>32!32>7#"&'VHO4  >CD/;% -kAI J5   #7;>[Z1ME P 8[C%NP K ~yojm=3>54.'>32#.54>?>54&+7Noec/{K}cI1*:#&1-E.$Ilkd{dvp6 " 29%JBn1Tf u ?\uC-E1&=,%Ea=\üU$;dSFJD*F)mRsP".'##".54>732>7.54>3232>54&'7'IdB(@RhCK{Y1)F]io5CoP-$.!?8//@&((3'9(+JX9 7J*\>CdB! %+^ZS *J8!5Yv:^HVUau8&k$j&kPR^&SYj^&YR^&YT'3>32!"&5432#"&'54&#"332654&#"Cjy䏨I%5եLTRP9%kSfFBeD;Bī54&#"#".54>54&+73232>7.54>323 PT8+5Un^|e+#+B^b#7(NqUߏDAzm~i.^;2L3D^;q+Jd9KSSI8 mCBIW]XK1#p7]{GWW+>o[BNmR%;!732>?>54.'.+732>7>32.#"1(7 2 7 <2$ $+.&/<'B_G4 ?CD!8`\]40C*)6 5?K.:>?7) #  mm 0(= Y&,K7l~zq2Tj<".#5&$7]G"\kutm.'YXL&k RT(34>73#.4&'>T$Lvԅ^{^nI"Jtׇd{cwBokMwY>&gpJtX=(IeAH>rqFhC+Hy]} ?]s{zΌd :Wltv9s2]#".'#".54>7#"#>3!2>73+4&'!32>7.54>3232>RZNhD( !JZnFLwQ+$>R-u[umJoTT-F3mG`yGN r?5##):81 ,;"?:B3"6'9Y= BߗN#;O,2Q80X{JLv4ZHph10?$}f+9},Bw))pJ:L-,@)0Y87O2:3GO=2 @ymq^4#654&#>323!3#"&5467326?#"&5467# OJ ]|vu nKN#{HV1"54$&54$32>72#"&#"#"&޻(n:;LkSP54&#!!#>54&+;!]S =WfGMMw=MYZAT@m><5##l)HCF+ @Ia!$!m#J65.+7!#?4&+!#7.'#!D2<E =;p76Z^`*+mj 3?(KEZ'>54መ!3267#"&5467!}u_rw`wL#o0&)0}qkOKBEOdckMe%/ BWtahk!!54&#>32%3#"&547F\J ``fy#DVa^^s@?fTN0:l<9GMwa%6'%>7'.#""&54$3 2T' %:lqec&R w2[)w`avALtg TZ67'%>54&''%.'7q l{ 1[Llxcwh 7%qwqy  b654&+7!#"3267654&+7!#"3267654&+7!#"!"$#""&54632326?#"&'#"&5467{ =V]W>R% =W^X >Q% =V]W?ݎWbSHr%-cp!fԆ 7##llMJ5##ll>?_;MJ7##llf8aUdqw^)\69wJI>54&+7!3267!3267!!"$#""&546323267##"&'##"&5467 3:% 8AX=8AV|#89>rAETFjm7 BpA *D)m^&CEK^&CEKyWlH54&#"3267>54&+7!#";!1]S Lt^4 #%X}S|j=V _W AU)m><i-%3XH][0I0,(##ll?> #"m}'4%#"&5467##"&5!2#>54&#"3267!3267sIXu~*, \q= p $[`^}!7 &" 4%yKBocQ׏^LNCP] E8)zoql8a+-0@'3267>54&+7!#">32!".#""&54632324&#";!]R=W]WZMfb;;DDLu;vBW^AT?m== ##ll54&+7!3>32!"&#""&54632324&#"!1 (D%L  Ctƈ814DCyhoJM_|1/: 1%m(Q(WUмIKC4YnmXij1!"&546$654&#"3267#"&54$32326!il6/ _KR^p_vxR/)j谒yJXe^(4CTiU`XVlHd2#"&54>$654&#"3267#"&54$32 326\+yefb|6/ \HNZօžo¦ 2#dϽ¢c\i_S34BQgQИwc}b#&7'.#""&54632>32#4&#"!% :4;K.>f*Ib]vl::?0R23!KBFCL3iYKVN^DTsRP8= d#&7'.#""&54632>32#4&#"!%  "1!)3 $,wOx(;EOWS.(* D7bmr/62:(Q]BI>OID8MH50? m?'6$3 ! 4$!2673# 654&#"3%P=&=/p#ސO}"-TҒ×?)#"&#"32654&#"&54632!"&5!267$m[RI`XuJK2G|bwVxƪQ]0"&GP9w/^-873267#""&546;7>54&+7!#"32#>54&+;!]S %u}S_}=W_W p MS-DQ@m><HBsk ##ll?>cPh^m :JH #m'b"&546;!#"!!!^ NX)`KU /RjIBwolB;}3q^##654&#>323!3#"&5467# OJ ]|vu nKN joteԚQM'CmtX6RF,>vqSD^+.#"&5!2!"&'#654&#"3^y\ч SLRIY)AnoAx(pR Vn =m;dwUajR9^G)NR9^%R9^#!4654&#""&54632#"&546332!}YYKiolÜwOFDd8yt?8dͯqaL`s{V4.#"32>%>32#"&';!>54.+7!u + "C?7-!N &-7_M<(#JZrLCoN+#Fij>k( )Nx */R*O>&'BV]^)  <5##lCl;B #"mm@<E!$!mJ9>54&+7!!#"3267#"&5467##3#"&547 (E%hH&4 b %# 5#2IXtm\l UY_KX\/'*1%mGm)958a+-0EKBpb,zNV2*MGgdiZ_h3^'#7332#"&'!!!3254&#"8SJ Z+=T2xNPAW@(v)7`6:v,望P!32654&#""&54$3 #"&546#WW犉{xqvB`՝ǷqPM{?tTe&'B!132654&#""&54$3 #"&546#"&54>32#WW犉{xqvB`՝A3@ J\/A)#=-ǷqPM{?tTeR3G+HK*D0$8\s&)D'R\L&)kRqW#>54&+>32#"&'732>7>54.#"';!732>7#"#!sAOoP_h5go:  <^Y4d)*$ 8M-)RI>`(7 ? =2% {0C1"^)18/66 %N|WCR^0CdC" q(@/N,2H. 5 mm0(R/D-X`s&fwR5%2>7#".54>32#4.#"!!7GrZD >ytT:nfe2,Mj> %D9\xW% 5B# &3gS3I̓{ִJ#?[7-D/+hZ<_m{)L%7-L&-kR.; U%32>54&+#"&54>332>7>7>54.+7!#"32#!732>7y;WvIfj%=6>DIM'1VSW3QQ&24;F,?>7,)6#v/!>4% VHKܑr =2% }3ZyFtU¸HZp>MB$7%#:kY=i ll 2(ppw>m0(c X%32>54&+32>7!;!732>7654.+7!#"!>54.+7!#"32#!3&b'd(7 T =2% '7 "?4&TV(7 !>3&TILݑ}3ZyFt0)% mm0(5ll 2(l ll 2(ppw>S>32;!732>?654.#";!732>7#"#!#>54&+^Nao=lc1(7 ? =3%)-TA'LD9d(7 ? =2% {0C1"^GAOB  /rVB mm0(O0?G 5 mm0(R/D-Xs18/66fs&wRs&DR}\U".54?32>7#"+732>7.+7!#">7>54&+7^~K  EIMfOH&af%+(+ 3PJOdWl1d\M '+ER m 854.+7!#";!"#>54&#!732>7654.+7!#"(7 !>3&'7 8\M> WM' =2% '7 "?4&}J ll 2( m1ir54&+#>54&#!32#!732>7>54.+7!eWvH gjNBOjqLݑJ =2%'7 H}3ZyFtk$,-9Dpw>m0(+l^&`fFR =!#>54&#!"#3>7>54.+7!#";BNew|}8= {nFydLxyHq[B.; "<1# (7 )9eʻR3W&z1ir+eŻP ll 2(N3\)!732>7+73267>7.'.#".546323>54.+7!#"267>7>324.#";#".'.#;j =2%^?Q7)+RlmP@|<HTb;#N(!$.*! #'c[C]C1#  ",`'6 "?3&]Kb" eJ8efm@TN)9!"5|O'?72&>5.k,8@#R}\?n!.?,^(7 m0("2!?K' qITL.@(};W9 )=6JX.VzLA`D- ll 2(L! tX}P%B7#;*&kx<^G2";V;'5"m.N>G,8! = m H".54>332>54.+732>54.#"".54>32yB8M0*PvL>kN-%MuPQj=1M7D]=$ 0T?$Whj~EApW1o]=Z*Mj@'?-gI)+RwLYf? *LrNvs9O ;!732>7654.+7!#"7>54.+7!#";!732>7Z (7 @ =2% '7 "?4&(7 !>4% '6 >!>4% ^)8mm0(5ll 2() ll 2( mm0)h".54?32>7;!732>7654.+7!#"7>54.+7!#";!732>7^~K  EIMfOH&aEZ (7 @ =2% '7 "?4&(7 !>4% '6 >!>4% +&?R,/'45F-FV)86oX8^)8mm0(5ll 2() ll 2( mm0)fY#732>7>54.+7!#"267>7>324.#";#".'.#;/ =2%'7 "?4&\Jc" fH6ego@SN)8! "6|NOm0Gk-ksER`Bn*<,^(7 m0( ll 2(L! vW}P&B7#;*&kxxwvM@m.N>G,8! = mVI #"&54>332>7>7>54.+7!#";!732>71!Vds='MU`;QQ&24;F,?>7,)6#b"?4% (7 ? =2% JuKlF!MB$7%#:kY=g ll 2( mm0(c11,3 sX4'8}\<#"+732>7.+7!#">7>54&+7\%+(+ 3PJOdWl1d\M '+ER m 87654.+7!#"!>54.+7!#"3#>54&#/ =2% '7 "?4&(7 !>3&w {nm0(5ll 2(J ll 2(3W&zW2>7654.+7!#";!732>7#".54>?>54.+7!#"$MKEd (7 !>3% '6 >!>4% OYim.\c4 %!-4+" % /A ,ll 2( mm0)w #JrN@=5 $  ll 6, .420D- N%;!732>7654.+7!#"!>54.+7!#"!>54.+7!#"'7 X =2% '7 "?3&(7 !>3&(7 !>4% mm0(5ll 2(J ll 2(J ll 2(R M4&#!732>7654.+7!#"!>54.+7!#"!>54.+7!#"3#>{n =2% '7 "?3&(7 !>3&(7 !>4% v zm0(5ll 2(J ll 2(J ll 2(3W .%32>54&+"#!#"32#!732>7dWvH gjN0C1"^C!>4% VqLݑJ =2% }3ZyFt{/D-Xl 2(ppw>m0(Rw /U%32>54&+#"32#!732>7>54.+7732>7>54.+7!#";m0(+lJm0( ll 2( m /%32>54&+#"32#!732>7>54.+7eWvH gjNw/!?3% VqLݑJ =2%'7 }3ZyFtl 2(ppw>m0(+l +;".54>332>7!7!>54.#"".54>32w{?8M0+NmAMlR 9^GCdE*7S7B{דL0^,Nk>(?,>uZ6Q|{5:<F|]7=\l0,: :dJ+NӄzѯGAY47!;!732>7654.+7!#"!>32#".%32>54.#"s d(7 @ =2% '7 "?4&TLgjjW,ZrőRN'C[4L|bH0%B[6L|bI0!KP% mm0(5ll 2(lR}\4Bԓ^XIZe],RQd^-R9 >#";#+73267.54>$3!#";!732>7oQ{S+}:'fc;o2-!=._5!>3&'6 >!>3&=.V{L{;=G$ mDG8PiA{h.l 2( mm0)R ^E\/-A32>54&#"%4>7>?>32#".{^T:mR2[U;lT2Dm΃u^. q -EljclI3"_uD]rA(Km\ps;QzNu̯X @\B-! .?UlC2S<"9mgVyW0KT=^8H#".54>32%32>54.'"32>54.F}fmt<(MrjO}W.1]T:gM- 5B#&9'0?$ ',--SE1 Hb:!*)HuS-7fYVm? =W7@kU=)AV()%@V5/?&"D9*Io<5ZE(7#) ^=32>7#"&54>7>54.#".54>32 PzRtI"Wh7j\F+f{'Zif{A&?.4aSB !Xyta*w5RJJ-2:L8HR,7+(TE,A[H>$"98>'1"#-$$I<&&@TR)*@24.#"'>32#".54>"32>7.$F>/CnQ=8/9HP(w՟]Xtp8$Db~u:gM-1E)0O?/  )3;$^T y W=o_SyX1FtIiC 5\|H"7&R=^I j^s#".54>332>54.#".54>323!3>32#4.#"32>7#".5467## puLpI$;V8 ,(LB7'-I40L@5 +[abe3ikquLoI$;V8,(LB6'-I40L@4 +Zabe3mieX$332654.+732>54.#""&54>32oe00R>(AO'j|4L06Z@##6&*C2! ol2mzdf41Of6+J7 F*CT* ;-IiC px#A17N08+$?X3?8)UD+'D\5?]D. );K-V]1uBJYuBFZ".54?32>74>7##".5467>54&+7!32>7!3267#". ^~K  EIMfOH&a^-WbrIBZ6 J 2:% &2-_WDm1 %# 5#2>M^8D[8&?R,/'45F-FV)86oX8 @hK)%>S-3z4i*D)m<<6-5QMf8a+-0E3(5G+\A26?>32#4&#"2;#"./.#!>54&+7NmK3d7UQX:*<'KK'+5561+(d+:&,6# jfCF #.iͨ 2:%J%2"&6' i`}.C-l/SB,*D)mX^F%3267#"&5467>7.#"#"&54>332>7>32f&" 6#1>N]8v~V +4OHL13WZhCQY&- 15A.%<:>NcB.cc_* -0E3(oc,zNw (./`Ѐ8EH'8#"T{bzY:  y8asJD!3267#"&5467###".54>332>7>7.+7!` &" 5$1>M^8u~a _|0&9dcj@#3 !+ 05A.( U0cJf8a+-0E3(oc,zN1+k{0&1!7)"T{KsWB"mENVJ)!>54&+7!!!3267#".546?hͨ 2:%mmj1 &" 6#1>M]8D^: *D)m%f8a+-0E3("9J)Q0R^SL?^R^TR9^GLdQo^]R))3267.#"4.#"32>#".5463326?#".54>327>32#4.#">32#"&'}"/-O !!7ZG3""1.G#(6YE3"c^Hb= + LY)1nR/?_g3^#X~gKmF!4F)) K]$2_f3^$uDX51 =c)G^7"  =cnf1+: BKA6#|z 1dhJrCHrh1-;!/>2|y 1ehJrCJ\u-BJS%4>7##".5467>54&+7!32>7!3267#".'7326?#".-WbrIBZ6 J 2:% &2-_WDm1 %#7"26IeK5VH>+J.T0#)2"S-3z4i*D)m<<6-5QMf8a+-0EސE n - 5G9J;!3267#".546?#".5467654&+7!32671 &" 5#2>M^8D]; !*Ybl;G^8 3:%7 '13PJf8a+-0E3("9J)Q0-#%>S-3Y5P/)m;<6-5*,uJZ".5##".5467>54&+7!32>7!32>7!3267#".5467#l: ,,(YPAm1 &" 6#1>M]8D\8*MYo#Cb@CcB %>S-3z4i*D)m<<6-5QM<<6-5QMf8a+-0E3(5G)%CcB u-Jj".5467##".5##".5467>54&+7!32>7!32>7!3267#".'7326?X@T2*MYoMl: ,,(YPAm1 &"8"16HfK5UH?+J/S0%R5G)%CcB #Cb@CcB %>S-3z4i*D)m<<6-5QM<<6-5QMf8a+-0EސE n --J*=4>7#"#!>32#"&32>54&#"7ml-0*h43G5(yT=$RJ; 301qb+NoO XR/E.WW3LRNO 3.DHo![dd*+OnCZ\.Z375cY!:O/]WuJ.R#"&5467>54&+7!>32%32>54&#"3267#"&5467>54.+7HLc F 2:%d;e̻ CP+?*MJ3? %" 6#1>N]8v~P )%XZ\.*b(D*D)m/9:7TZ!:O/]WLf8a+-0E3(oc,zN} "muqJ.#"&5467>54&+7!>32%32>54&#"qSl F 2:%d?l x MY1H.YU9HXZ\.1[(D*D)m/9:7S[!:O/]W^3".54>32#".54>332>7!7!>54&5XF21glfp;'KoigT$7X>TH8_K6Nl!5?0 *VG-Q* =/EpL  N^'?467#!>54&+7!3>32#".2>54.#"hͨ 2:%mf͂TqA!Eio\o=2RA0 %4 0QB1"%6**D)m%]U0fqIoA5k@i5W7\ S&#";23267#".546?#"#"&54>332>7>7.54>q;[fo":K*J3N &" 6#1>N]8D]; 1/?3-%FLZ9RR", !)''('&E|]68nd2F.'.k+-0E3("9J)Q02T@Rm@RA!4%" 5*0B, *FdDKvQ+R=!&IDR=&Ik+N#"&'732>7>54.#"!#73>54.+7!!!3>32 {bMA_+7/G8.y "#E@:/" ` *+9= 'S`qDAY7H;<<p/ k #Tf9:??*"/Mchd(Pl*"llyN#)*=Z;&AU)!&w`R9^7%2>7#".54>32#4.#"!!m6WF6 /ci]{H&LqoU{O&<_D&7%0UD/ {x0< /(SC+4jkLl@!9M, =17_F(DnE}#^Wu)Mu&k)N^DW.#"#"&54>332>7>32>32#"&54>7>32>54&#"  73148!5]]d !32#"&5467!!>54&+7!!32>54&#"d;dͻLc hͨ 2:%mHf CP+?*MJ3?J/Z\.1e5*D)m%9:7TZ!:O/]W++!& wuuB!&YDFN".54?32>7.+7!3>54>32#"&'732>7^~K  EIMfOH&aA< =lQ/C<,<#SU6dZJ}i;o+W?^u7&?R,/'45F-FV)86oX8=/m(kk]R;EH(A.\RP}hiG#s2UrAu-BJS".'7326?4>7##".5467>54&+7!32>7!3267#".0LA8'C*J)0AY$-WbrIBZ6 J 2:% &2-_WDm1 %# 5#2>M^8D[8- n oφA @hK)%>S-3z4i*D)m<<6-5QMf8a+-0E3(5G24&#"327!32#""&54632! '!"!2>=0=+="0]p>h_-Z!& YdVDwv ~;t_ }^#654'4632#&'# #"'632'2,PV@@EJE%%%~j% 8JY{{YDKRAj$PfHg37(/#"!#54&+3 )7327#"#!654+73 4+=/g0IH@1qJ3>]=[d5Ml}'89%mzB=:PFlLbq'#737654&+7!!!63 # 47%32654#"+1;-k>B~M2;\b?mT+*l m զ7Rb%8ud;# 47!;!7327654+7!#"!!2##"!!!2#d@ T-^(Бy@ XR+p"aI%& Emmz= Fll}l3g~vUc)}ImN^0#"&547#!654&+7!3632#4&#"!!32ںhͨ2:%mOTܝxOFR{}xo/;_-.U*)m% raKauϥ&;} '!;!72654'###3!73267!'&'y <<L5DRG9V6%=S5-6lJS@mm06$Du_*;mm?V7pJ&#3!73267!3!72654/##3'&'<3C)D= 7HA,47jnO,1mm6_H59mm,@oZZ<C!3!7327654+7!#"!!;!72654'###3!73267!'&'dJOb T <<L5DRH9VP >R5-6l%& ,mmz= Fll}l}JS@mm06$Du_*;mmAT7pN`J.5#3!7326?!!654&+7!!!3!72654/##3'&';;4D)D=kͨ2:%m17FA,37k^Q*1mm6_U*)m%95mm,EoZju"58!73267"+73267>7&'7!;#"&'.#;! 3F3 b[c'={ Oe2@ٲv$/=?)|3 AIf[3?!m@:JGpSm][7qb6ll fRmVmbTC! =mLJ59%3267"+7326?6?7!;#"&/.#;!3! F4 9ML!i5R=N-oeN=\##6=P}1D721 NmE@;@e^m;NveeO:m]f:G#,m1 PS!73267"+7326767!3!7327654+7!#"!&'&'7!;#"&'.#;!3E3bZd(: Pe0/AdJOb T"oq9%/=A)|3 AHfZ3@!m><HIjYmaWS2%& ,mmz= Fll}l?ell bVm]fbX?=mLNHJBF%3267"+7326?67!!654&+7!!7!;#"&/.#;!3!%F4 :OMh3Q=O-X'/}kͨ2:%m>]!#6=Pz  6=711 NmE@>=bam:OE$U*)m%veeO:m`cH9 ,m1;J732654#""5467&'73632&#"327632#4#"#"&546%>54&#R-˸KPrBo)'lX‰⅁ccnSf3Oըǝ^ajYZ3!txPNhCBD\mul|{FJI732654&#""5467&'73632&#"327632#4#"#"&54%>54&#nKD+ۥCJrBo)(`T{OQGUjSX2ssJn\t_GUwR|y\jYZ3!`SR 8mBAG5F`Zri%okKgfzjm +2! 654&#"63232#"'&#"328[@sZ?}|>&2C@&>?&/7 ]^OA66##b/#" P6!&+7!#"66324#"k#5ADuӗJ{cllV#!کj!R%!ZV&+7!332&#"T{^ $ΗX76iVlmfoO!1ibs,&'5!!&'5!&+7!#"66324#"TZ5yZ5yk#5ADuӗJ{+qqcllV#!کj!R%!Z!'&'5!!&'5!&+7!332&#"Z5yZ5yǑ{^ $ΗX76iV٫qqlmfoO!1ib P 42!"2#".#7!354#4632!"'73267)@v6;li')_EsbTZ2q19E)mİ΍Oa%sR^*4.#7!354#4632!"'732672!"&54#"32/6;li')_EsbTZپX}~oE)mİ΍Oa%sYjq7%632#"'&56326'#"'o"y d z W&qqܨ%sprp0qo+:7Vb;NX^=R#632#"'$4632654'#"' sj ^lh/X"BEwP DGsVhf0\%ca2v`#'-3#)3w O#"'&#"#>3237654'&546324&#"32332#""&54632!"'!"!2#))}:V) *qHq&&D1f3Hٶ5A"0]p>~_88\89@%5 $-7\YtYdVDwv ~;t_R`FL#"'&#"#>3237654'&5432324#""54632!"'# !24&#"327)))}:V)&tHq Cvf%ӷu}1Зm>Uz+;x|վ88\89@'5 '"g[N\ lwn6dVYk A#'##'##'74&#"327!32#""&54632! '#"!2s#C#D#/>=0=+="0]p>oWʝ_gggg)Z!& YdVDwve[ ~;t_ } 1#'##'##'7654'4632#&'# #"'632'Hs#D"D#/2,PV@@EJE%%%~j% 8ggggY{{YDKRAj$PfHg$%3;!7326?&5!2##"!2 \:A7IC@8 2՞bST%-llE@:~vTd)R9^%3!.5!2#4&#"32 d{'xOFtTcݩwbKaunhy %'%7%7%LG㴁FGJ{J;{Z}9IĤ{#5#"=463!632# S\DEW^AJcT 0TbR ']27632#54#"+7pGdsX<))88m \895 &54632]CR>?#L4H\99 .5 7654'&5432''sfL+7Z^b#>32;#"$#")U0 +K3? ww+/)  ,7BMX&#"#632&#"#632!&#"#632&#"#632!&#"#632&#"#632!&#"#632&#"#632oF:K G9L/G9L~G:K [sG9L ~G9L/~G9L~F:KX"6X"6X"6X"6g[X"6 X"6X"6X"6)} ")07'673'&'7%7677&'&'5&''67#67q +Pa2TCCk\EzҌhҌ1QFCnY#Ez )Ra2uҌF~+UCDmY +Pa2; )Ra2hFz)QGDmYҌR D7327! 54#!7327;!7327654+7!#"7654+7!#";HZ @ d.0{80 m|^)= Emmz= Fll})7Fll}& EuRBF 97327! 54##"547654&+7!327!327##"54H`rw#J2:%#XS(m1H1G218*4{8/x<iX')m:bf9]/E !!!3 )7327#73 4+7D:/LqJ˴e5N lmzlqLh' !#73!!!63 # 47%32654#" 759=A~M1;]b?m m է7Nf%8udFX*%;!7327654+7!2'+7327'765+D JjZ=iX72g[r-$ Emmz= FlѾe= w =]^%5654&+7!3>32'#"';327'7654#"=%G%5W~ԭ\ZjHJzW %GND/-6B/'m9>U<=';!732>7>54.+7!2>?3!  (7 @ =2%'7 8N5" b&;mm0( l0E*\nL)\)>54.+7!2>?3!ͬ )%J#5*!#X/ "m&@0le`!!!;!7327#73654+7!#'&#!y%XDeZ ^E-lXWEmmzl*Flob;J7654&+7!#54&+3#!#7-%G%;.IRjhZB/'mX^1ll`363 !"&54633254&#";!7327654+7!#'&#!u>96Uހdhj=0PD ^E -qfUjyVEmmz+FlobLLJ)654&+7!#54&+63 !"&54633254#"!%G%5.IR`H͠{^GK=>f/B/'m/^1tmkVQ]i#Ra!7327!#732767&'.#"&546323654+7!#"267>324#"3#654&'.'.#;j^p_7GPpvOJ-C6Z-Jc[f@Fr[`]~q~TFXkATk1q-McCnP\^mz8OiSqL=ZrcJXx~% Fll}LeyDYj! fJPu7EGAGU==Em- j^O#"&5463325#"&546323!3632##"327#"'7327#"&547##Kϋ~iupiȫ ikNJϊ}juriKx+Y?d[k mizcI_n6ZӶ1H zcI_6xNn+ ̵=P BX!3#"5473254'".54>332>54.+732>54.#"".54>32~(CdyB8M0*PvL>kN-%MuPQj=1M7D]=$ 0T?$Whj~EApW1o]=ZgvixT+uhR*Mj@'?-gI)+RwLYf? *LrNvs9B bU!3#"5473254'".54>332654.+732>54.#""&54>32^~(Cdoe00R>(AO'j|4L06Z@##6&*C2! ol2mzdf41Of6+J7 FgvixT+uhU*CT* ;-IiC px#A17N08+$?X3?8)UD+'D\5?]D. );K-V]1Rf=.#;!7327654+7!#"267>324#"3#654&'.'JV^@ \zq{UDXl@Yk2q.W^J[7=& Emmz+Fll}LiyDYj kEZr05];+-\62?>32#4#"2;#"'7327./.#!654&+7Nm=]dR`=MSROwAZ:9T3 >+Y>_0FA324#";#"&'&'#H^R\GDwBap|TFXkGTkJ@)o%(@w=& Emmz%Fll}LAByDYj$N?mTwGl+Z\3#!654&+7!3736?>32#4#";#"&/&'#Giͨ1;%mH5q/!&eP`;MSRTy@>+> &7'qU*)m%-wH&K324#";#"&'.+;/ Dzq{UDXl@Yk5%nHZ^mzqm/Fll}mhyDYj m^mGW;=Em+43#2?>32#4#"2;#"&/.#!#73654&+7;{=]dR`=MSROwAZ:9T3 2FA324#";#"&'.#;}Oa%_\{tyWCXlHYj4%o KT^mzRHpXl}LjyEXj$ m^mG^4=& Em/\-2?>32#4#"2;#"&/.#!#"#\l<]8YS4MSROpH\94S: 1EA>hѕ>CTJ%nEBK 8`H͡{^GK;#+B/)Cmm>AtllUQ]iq+5%327#"'# !2&# !27&5!2654#"9e[?"oĎyf}5l368C\R%=#?DX,2C0;Fw#ɬscЋR'^)2%327#"'#"$5!2&#";&543264#">KN-nkD/@Uٍy%ʗ۬;IYZ"lC:V+%'};b匌BA!3#"54732542>7#".54>32#4.#"+~(CdGrZD >ytT:nfe2,Mj> %D9QqW;gvixT+uh 5B# &3gS3I̓{ִJ#?[7-D/+hZ7#".54>32#4.#"~(Cd6WF6 /ci]{H&LqoU{O&<_D&7%,M@1#rgvixT+uh0< /(SC+4jkLl@#;O, =16aI*;a}5}R 7327#"#!#654+;#654#!Oa%^GqmzRHpXs l& EkEL3d"&546?>54.#"!4>?>54.#"!>54.+7!3>323>323267#"&'7326?fu~#  !A>7-     "C>8- sͬ )%')T^i=@V5 &Q^nB?V6 / &" 5$1QyfSP+J.T0%Mpc+zN:??)".Kafc(VITXK6 W7$>P-=\=&AU/;<<7b+-/Fڃ!-o -T=!o\!%&+7!3654#4632;!J|^ Ň\N3%HN3>lmY`[sTd'G/'mT43732?!7!7.+7!#"67654+7!#"!!;7"08\VJ+)m>}+&/E;)(IK2m|m@-ll<'^ߧYX!Y>8ll6O? m$$m!o\)#737&+7!3654#4632!!;!) |^ Ň\N%HNmm3>lmY`[sTd'mdK /'mR`;%3254';!73267.+7!#"654+7!#";#654+t'}Rp>fN>H0`%mHb7ZV._qmG8VU4=mmAR;.ll:"XM03ll5]klfJ-J)#73267.+7!3#";#"'7327!);QM=C%APDӕ ?C9+Y?d m.UTD9m{m?TJGNnbRo.37327#"#!#654+!654+7!#";#654#XOa%_dHZ `LqmzRHpXslDJ4 Fll}&AkE!-BJ:327!327#"'7327#"547## 547#"#!#54&#m#wz'm1H3E2<+Y>dFl}#t3>CT9'5:bf9]/ENn-"=HI#IWI^Ci=R6654+7!#";#654#!7327# 4?654+7!#"32d +qO}$%|%w3 Fll}& EkEm|wV-M%Rll%9-J1%#"'7327#"&54?#"547654&+7!327!322=+Y>dOMv!շ2;%7#Xle1H1ENn'n`0p}D}P/)mOeeFwB}$%|%Ew03 Fll}& Emm|w%9-M%Rll%H9J/!327#"&54?#7#"547654&+7!;73671H1G2v!S=+l%@J2;%7#X-m)IFJf9]/En`0p/ͨHyP/)m7732>7+73267>7.'.#".546323>54.+7!#"267>7>324.#";#".'.#;^~K  EIMfOH&a* =2%^?Q7)+RlmP@|<HTb;#N(!$.*! #'c[C]C1#  ",`'6 "?3&]Kb" eJ8efm@TN)9!"5|O'?72&>5.k,8@#R}\?n!.?,^(7 +&?R,/'45F-FV)86oX8m0("2!?K' qITL.@(};W9 )=6JX.VzLA`D- ll 2(L! tX}P%B7#;*&kx<^G2";V;'5"m.N>G,8! = m jF".54?32>7#".54>332>54.#".54>323!3>32#4.#"32>7#".5467##"^~K  EIMfOH&a puLpI$;V8 ,(LB7'-I40L@5 +[abe3ikquLoI$;V8,(LB6'-I40L@4 +Zabe3mi&?R,/'45F-FV)86oX8!eX$324#"!"&5463324&#";/ \xq{UDXl:TހdglC.\mz+Fll}LgyDYj#.qfUjyI& Em+\46?>32#4#"!"&54633254&#"!654&+7NoISdR`=MSRO[0Ϡ{^GKsb>:iͨ1;%J#bwI&K3232'117v~!V&g}dlO2,$A\UƷH2E ocmw"ݍDO&:'y;]7%!"&5467326!;!7327654+7!#"!654+7!#"JFîv_gl@od@ TV wrJ`0%& Emmz= Fll}l.Fll}N J!"&54633267!!654&+7!! GF1,$,Hu8D,vcJf;]/E oci1+DL=>Y&:K)7mE->K".54?32>7;!732>7!;!732654&/.'!^~K  EIMfOH&ad8;)++(++ %\/BN3 ")+&?R,/'45F-FV)86oX8%8&#mm $>0J 6'mm)-!-OJF%%?AI0RFI^".54?32>7"&5467##".54>3273326732>7.#"^~K  EIMfOH&ae[n&K\qKInI%%Jmh(SLClm ( 5 -BQ_)-`TCHG(hL&%k)RR &Ek+#RbjG".54?32>732>7>54.+7!#>54.#!!!!2>?3!K^~K  EIMfOH&a/ =2%'7 XH"7(m/{D0L8' !_i+&?R,/'45F-FV)86oX8B0( l$'!2&{.="XRFBP".54?32>72>7#".54>32#*'"32>54&^~K  EIMfOH&a2ZM= 0ci^}H(Ouq\(o2ZH4 La75&?R,/'45F-FV)86oX8/;/%RE-4ikLl?rSsD)w\KxI(KhA?FVf 65!"&54$3 ! 4!#"32 ο"J5J_U8X|G|Wg&^"&54632!"&54$!32654#"#"326ڻzϒ^%߲dV"6X@r6E}VfL&kR&kL&kDR j&kw L&ksR &k  !"#!!"$54633265!#dMbs`o+=P<ʵzQ_¬sJ !"#!!"&5433265!#F DJ$zfu!ƖN0O>/ӭԁc+S!7!;!732>7654.+7!#"7>54.+7!#";!732>7H"RZ (7 @ =2% '7 "?4&(7 !>4% '6 >!>4% +^)8mm0(5ll 2() ll 2( mm0)uB{E!7!4>7##".5467>54&+7!32>7!3267#".B"R-WbrIBZ6 J 2:% &2-_WDm1 %# 5#2>M^8D[8٢5 @hK)%>S-3z4i*D)m<<6-5QMf8a+-0E3(5GL&kfRuB&YksL&3kFRR&SkJ 2! !654&#"!328p})3_Ml9Wn^9R^ 2!"&5!4?&#"!326o:N `^O8R/OML&kFRR&kJ +L&kR&k}\@!7!#"+732>7.+7!#">7>54&+7"R:%+(+ 3PJOdWl1d\M '+ER m 854>32#"&'732>7"RA< =lQ/C<,<#SU6dZJ}i;o+W?^u7٢=/m(kk]R;EH(A.\RP}hiG#s2UrA}\L&k)Ro&]k}\s X7>7!!7>7!#"+732>7.+7!#">7>54&+7;85Tcg);85Tcg){%+(+ 3PJOdWl1d\M '+ER m 87!!7>7!.+7!3>54>32#"&'732>7;85Tcg);85Tcg)A< =lQ/C<,<#SU6dZJ}i;o+W?^u7!JNO%QXS!JNO%QXS=/m(kk]R;EH(A.\RP}hiG#s2UrAL&kR9&k=R`'327654+7!#'&#!;#654#! ^ENqmz+FlobUEkE-;J"654&+7!#54&+;#"'7327!%G%;.I=67=+Y?d /B/'mX^1#2NnwL&k Ru&k m` /%#"54732?!!;!7327#73654+7!#'&#!%{9/:s '-%XDeZ ^EmɢpA$)lXWEmmzl*Flobm;J,7654&+7!#54&+3#;#"54732?!#7-%G%;.IR5=67%|9/:s hZB/'mX^1l2ɢpA$)Plm` U%#"54732?#";!732654&';!732>7.+7!#">54&+7!%{9/:s 'H25;'K&\=7}%- +"57?(&/03-m,20mɢpA$)"8*k?-mm%"G*&Fmm"8*"*ll;+DlmJ 5%#"54732?732>7.+7!3#";!`%{9/:s '//8&$,%//5$ӕ!$,smɢpA$)mm 4*T'0 m{m !9-+8! mb`<#"!!;!73254';!73267!7!.+7!#"654+7!J7ZVb/^\t'}Rp>fN->I0`%mHbJ5]{llmmG8VU4=mmARl90ll:"XM03lJ&#73267'!73'.+7!3#"!!;!);QM V=A%9FV%с!?Bsm.UlG6m{m1blKFmbd 0=4632#"&;!732>7!;!732654&/.'!fVnPLT d8;)++(++ %\/BN3 ")LXJZE8%8&#mm $>0J 6'mm)-!-OJF%%?AI0Rd ^ ;P4632#"&"&5467##".54>3273326732>7.#"fVnPLTH[n&K\qKInI%%Jmh(SLClm ( 5 -BQ_)-`TCHG(h7D#7654#""54632;!732>7!;!732654&/.'!{ED+L|Yd8;)++(++ %\/BN3 ")yo gHL<;D3%8&#mm $>0J 6'mm)-!-OJF%%?AI0R BW#7654#""54632"&5467##".54>3273326732>7.#"L{ED+L|YN[n&K\qKInI%%Jmh(SLClm ( 5 -BQ_)-`TCHG(hE:G673#67!#&'#;!732>7!;!732654&/.'!r,lRZ .&_d8;)++(++ %\/BN3 ")~Kk[oj|.Gc%8&#mm $>0J 6'mm)-!-OJF%%?AI0R^EZ673#67!#&'#"&5467##".54>3273326732>7.#"r,lRZ .&_J[n&K\qKInI%%Jmh(SLClm ( 5 -BQ_)-`TCHG(h:G#&'7367!#&'#;!732>7!;!732654&/.'!R1#AZ .&_d8;)++(++ %\/BN3 ")mY^k•oj|.Gc%8&#mm $>0J 6'mm)-!-OJF%%?AI0R EZ#&'7367!#&'#"&5467##".54>3273326732>7.#"+R1#AZ .&_J[n&K\qKInI%%Jmh(SLClm ( 5 -BQ_)-`TCHG(h+DQ#7654#""5463267!#&'#;!732>7!;!732654&/.'!lX q146VBhZ .&_d8;)++(++ %\/BN3 ")7`G-3/'1yroj|.Gc%8&#mm $>0J 6'mm)-!-OJF%%?AI0ROd#7654#""5463267!#&'#"&5467##".54>3273326732>7.#"X q146VBhZ .&_J[n&K\qKInI%%Jmh(SLClm ( 5 -BQ_)-`TCHG(hwDQ3#"'&#"#6323267!#&'#;!732>7!;!732654&/.'!w8C[[&Pw8B[[%OkZ .&Nd8;)++(++ %\/BN3 ")i00Q00/oj|.;o%8&#mm $>0J 6'mm)-!-OJF%%?AI0R %Od3#"'&#"#6323267!#&'#"&5467##".54>3273326732>7.#"+w8C[[&Pw8B[[%OkZ .&NJ[n&K\qKInI%%Jmh(SLClm ( 5 -BQ_)-`TCHG(hds #IV4632#"&>7!#.'#;!732>7!;!732654&/.'!fVnPLTLPL (-,021DFBd8;)++(++ %\/BN3 ")LXJZEKPQ$ PRN.2222.%8&#mm $>0J 6'mm)-!-OJF%%?AI0Rd ! #Ti4632#"&>7!#.'#"&5467##".54>3273326732>7.#"fVnPLTLPL (-,021DFBJ[n&K\qKInI%%Jmh(SLClm ( 5 -BQ_)-`TCHG(h8E673#'33273#";!732>7!;!732654&/.'!m0rR{5w&td8;)++(++ %\/BN3 ")JwRqVtt}%8&#mm $>0J 6'mm)-!-OJF%%?AI0R CX673#'33273#""&5467##".54>3273326732>7.#"m0rR{5w&t[n&K\qKInI%%Jmh(SLClm ( 5 -BQ_)-`TCHG(h8E#&'7333273#";!732>7!;!732654&/.'!?Q3!D{5w&td8;)++(++ %\/BN3 ")/k\Yptt}%8&#mm $>0J 6'mm)-!-OJF%%?AI0R CX#&'7333273#""&5467##".54>3273326732>7.#"XQ3!D{5w&t[n&K\qKInI%%Jmh(SLClm ( 5 -BQ_)-`TCHG(h^BO#7654#""5463233273#";!732>7!;!732654&/.'!5X q146X@{5w&td8;)++(++ %\/BN3 ")R7`G-3/*.yr>tt}%8&#mm $>0J 6'mm)-!-OJF%%?AI0R  Mb#7654#""5463233273#""&5467##".54>3273326732>7.#"NX q146X@{5w&t[n&K\qKInI%%Jmh(SLClm ( 5 -BQ_)-`TCHG(tt}SP =(GoK'9dPPtE  18?;32R+$t;P1NRT>hwBO3#"'&#"#6323233273#";!732>7!;!732654&/.'!v4?LL#Pw8?LL!N{5w&td8;)++(++ %\/BN3 ")i00Q00tt}%8&#mm $>0J 6'mm)-!-OJF%%?AI0R %Mb3#"'&#"#6323233273#""&5467##".54>3273326732>7.#"2v4?LL#Pw8?LL!N{5w&t[n&K\qKInI%%Jmh(SLClm ( 5 -BQ_)-`TCHG(hdm BO4632#"&".'332673;!732>7!;!732654&/.'!fVnPLT3DfF(\HJn?\yd8;)++(++ %\/BN3 ")LXJZE.UwHHDAK;t[8%8&#mm $>0J 6'mm)-!-OJF%%?AI0Rd  Mb4632#"&".'332673"&5467##".54>3273326732>7.#"fVnPLTvDfF(\HJn?\y[n&K\qKInI%%Jmh(SLClm ( 5 -BQ_)-`TCHG(hd\ 94632#"&32>7>54.+7!#>54.#!!!!2>?3!ZfVnPLT =2%'7 XH"7(m/{D0L8' !_iLXJZE0( l$'!2&{.="XRd=^ 4B4632#"&2>7#".54>32#*'"32>54&fVnPLTb2ZM= 0ci^}H(Ouq\(o2ZH4 La75LXJZE/;/%RE-4ikLl?rSsD)w\KxI(KhA?F\@#7654#""5463232>7>54.+7!#>54.#!!!!2>?3!{ED+L|Y =2%'7 XH"7(m/{D0L8' !_iyo gHL<;D0( l$'!2&{.="XR=;I#7654#""546322>7#".54>32#*'"32>54& {ED+L|Y2ZM= 0ci^}H(Ouq\(o2ZH4 La75'o gHL<;D+/;/%RE-4ikLl?rSsD)w\KxI(KhA?F\oN2>73#".#"#>3232>7>54.+7!#>54.#!!!!2>?3!1&{ -CY77XJA!&z /H]76UG? =2%'7 XH"7(m/{D0L8' !_i'1kY:(1('.kZ<(1(0( l$'!2&{.="XRIW2>73#".#"#>322>7#".54>32#*'"32>54&&{ -CY77XJA!&z /H]76UG?2ZM= 0ci^}H(Ouq\(o2ZH4 La75'1kY:(1('.kZ<(1(/;/%RE-4ikLl?rSsD)w\KxI(KhA?FC673#67!#&'#32>7>54.+7!#>54.#!!!!2>?3!r,lRZ .&_ =2%'7 XH"7(m/{D0L8' !_i~Kk[oj|.GcB0( l$'!2&{.="XRK>L673#67!#&'#2>7#".54>32#*'"32>54&r,lRZ .&_2ZM= 0ci^}H(Ouq\(o2ZH4 La75~Kk[oj|.Gc/;/%RE-4ikLl?rSsD)w\KxI(KhA?F\C#&'7367!#&'#32>7>54.+7!#>54.#!!!!2>?3!R1#AZ .&_ =2%'7 XH"7(m/{D0L8' !_imY^k•oj|.GcB0( l$'!2&{.="XRG>L#&'7367!#&'#2>7#".54>32#*'"32>54&R1#AZ .&_2ZM= 0ci^}H(Ouq\(o2ZH4 La75mY^k•oj|.Gc/;/%RE-4ikLl?rSsD)w\KxI(KhA?F+M#7654#""5463267!#&'#32>7>54.+7!#>54.#!!!!2>?3!X q146VBhZ .&_ =2%'7 XH"7(m/{D0L8' !_i7`G-3/'1yroj|.GcB0( l$'!2&{.="XRHV#7654#""5463267!#&'#2>7#".54>32#*'"32>54&rX q146VBhZ .&_2ZM= 0ci^}H(Ouq\(o2ZH4 La757`G-3/'1yroj|.Gc/;/%RE-4ikLl?rSsD)w\KxI(KhA?F\wM3#"'&#"#6323267!#&'#32>7>54.+7!#>54.#!!!!2>?3!w8C[[&Pw8B[[%OkZ .&N =2%'7 XH"7(m/{D0L8' !_ii00Q00/oj|.;oB0( l$'!2&{.="XR%HV3#"'&#"#6323267!#&'#2>7#".54>32#*'"32>54&w8C[[&Pw8B[[%OkZ .&N2ZM= 0ci^}H(Ouq\(o2ZH4 La7500Q00/oj|.;o/;/%RE-4ikLl?rSsD)w\KxI(KhA?Fd\s #R4632#"&>7!#.'#32>7>54.+7!#>54.#!!!!2>?3!ZfVnPLTLPL (-,021DFB =2%'7 XH"7(m/{D0L8' !_iLXJZEKPQ$ PRN.2222.B0( l$'!2&{.="XRdJ! #M[4632#"&>7!#.'#2>7#".54>32#*'"32>54&fVnPLTkLPL (-,021DFB2ZM= 0ci^}H(Ouq\(o2ZH4 La75LXJZEKKPQ$ PRN.2222./;/%RE-4ikLl?rSsD)w\KxI(KhA?F7#7654#""54632732>7>54.+7!#";{ED+L|YN =2%'7 "?4&(7 yo gHL<;DRm0( ll 2( mu5#7654#""54632 3267#"&5467>54.+7%{ED+L|Y⃎ %" 6#1>N]8v~P )%'o gHL<;Df8a+-0E3(oc,zN} "md 04632#"&732>7>54.+7!#";XfVnPLT =2%'7 "?4&(7 LXJZEWm0( ll 2( mod) .B4632#"&3267#"&5467>54.+7%".54>32ofVnPLT %" 6#1>N]8v~P )%X":+4F&!;-!7FLXJZEf8a+-0E3(oc,zN} "m 0 -?) 1"*?)d ":4632#"&4>32#".%32>54.#"fVnPLT1bq͜\/_yљXN+Kf:UnQ5*If32#".2>54&#"%fVnPLT$InsXtD"Gmt`r@7YG4!SH4XG6%TLXJZEMj>1hrJl@5k?g6yj32#".%32>54.#";{ED+L|Y{1bq͜\/_yљXN+Kf:UnQ5*If32#".2>54&#"B{ED+L|YE$InsXtD"Gmt`r@7YG4!SH4XG6%T'o gHL<;D>Mj>1hrJl@5k?g6yj32#".%32>54.#"r,lRZ .&_1bq͜\/_yљXN+Kf:UnQ5*If32#".2>54&#"r,lRZ .&_$InsXtD"Gmt`r@7YG4!SH4XG6%T~Kk[oj|.GcMj>1hrJl@5k?g6yj32#".%32>54.#"9R1#AZ .&_1bq͜\/_yљXN+Kf:UnQ5*If32#".2>54&#"FR1#AZ .&_$InsXtD"Gmt`r@7YG4!SH4XG6%TmY^k•oj|.GcMj>1hrJl@5k?g6yj32#".%32>54.#"X q146VBhZ .&_1bq͜\/_yљXN+Kf:UnQ5*If32#".2>54&#"X q146VBhZ .&_$InsXtD"Gmt`r@7YG4!SH4XG6%T7`G-3/'1yroj|.GcMj>1hrJl@5k?g6yj32#".%32>54.#"9w8C[[&Pw8B[[%OkZ .&N1bq͜\/_yљXN+Kf:UnQ5*If32#".2>54&#"Ew8C[[&Pw8B[[%OkZ .&N$InsXtD"Gmt`r@7YG4!SH4XG6%T00Q00/oj|.;oMj>1hrJl@5k?g6yj7!#.'#4>32#".%32>54.#"fVnPLTLPL (-,021DFB1bq͜\/_yљXN+Kf:UnQ5*If7!#.'#4>32#".2>54&#"%fVnPLTsLPL (-,021DFB$InsXtD"Gmt`r@7YG4!SH4XG6%TLXJZEKKPQ$ PRN.2222.Mj>1hrJl@5k?g6yjQ///>I@=3_M\ 8ǺR+5#7654#""54632654'&54632!"&5! 4#"32B{ED+L|Yvm#%RAo1;Ǜ'o gHL<;D4G///>I*.Olso:F2>73#".#"#>32654'&54632! !224&#"&{ -CY77XJA!&z /H]76UG?#%RA '1kY:(1('.kZ<(1(>Q///>I@=3_M\ 8ǺR9C2>73#".#"#>32654'&54632!"&5! 4#"32&{ -CY77XJA!&z /H]76UG?m#%RAo1;Ǜ'1kY:(1('.kZ<(1(4G///>I*.Olds) %14632#"&654'&54632! !224&#"fVnPLT'#%RA LXJZE>Q///>I@=3_M\ 8ǺRd $.4632#"&654'&54632!"&5! 4#"32%fVnPLT^m#%RAo1;ǛLXJZE4G///>I*.Old M4632#"&2>7>54.+7!#"#".54>7654.+7!#"fVnPLT']V4'7 !>4% _Ȃx~A '6 "?4%  LXJZE6_N$ll 2(sw=/[T0317ll 0'/,/0gjudBJ L4632#"&4>7##".5467>54&+7!32>7!3267#".fVnPLTw-WbrIBZ6 J 2:% &2-_WDm1 %# 5#2>M^8D[8LXJZE @hK)%>S-3z4i*D)m<<6-5QMf8a+-0E3(5GT#7654#""546322>7>54.+7!#"#".54>7654.+7!#"-{ED+L|Y ]V4'7 !>4% _Ȃx~A '6 "?4%  yo gHL<;D6_N$ll 2(sw=/[T0317ll 0'/,/0gjuBS#7654#""546324>7##".5467>54&+7!32>7!3267#".k{ED+L|Y-WbrIBZ6 J 2:% &2-_WDm1 %# 5#2>M^8D[8'o gHL<;DT @hK)%>S-3z4i*D)m<<6-5QMf8a+-0E3(5G{s&PwRu!&Qw{s&PDRu!&QD{E#7654#""546327!>54'&54632!"&547654+7!#"3267654#-{ED+L|YZI~#%SAwc (yo gHL<;Dl]9///>I)Sc8Flly/t>ѣ%FuJ#7654#""54632##"547654&+7!327!>54'&54632327#"54k{ED+L|Yrw#J2:%#XS(m1<#%RA=H1G2'o gHL<;Dx<iX')m:b_7///>I׍7]/E{oS2>73#".#"#>327!>54'&54632!"&547654+7!#"3267654#&{ -CY77XJA!&z /H]76UG?NZI~#%SAwc ('1kY:(1('.kZ<(1(\l]9///>I)Sc8Flly/t>ѣ%FuX2>73#".#"#>32##"547654&+7!327!>54'&54632327#"54&{ -CY77XJA!&z /H]76UG?rw#J2:%#XS(m1<#%RA=H1G2'1kY:(1('.kZ<(1(nx<iX')m:b_7///>I׍7]/Ed{) >4632#"&7!>54'&54632!"&547654+7!#"3267654#fVnPLTZI~#%SAwc (LXJZEl]9///>I)Sc8Flly/t>ѣ%Fud C4632#"&##"547654&+7!327!>54'&54632327#"54fVnPLTrw#J2:%#XS(m1<#%RA=H1G2LXJZEax<iX')m:b_7///>I׍7]/ETs&=DRRo!&]DKdT J4632#"&732>7.+7!#">7>54&+7!#";fVnPLT7 <2$ ; '\/' J N5%9D+&'(->(7 2LXJZEWm 0(* ll D/DDA)~K!#R"ll 3'? mo^ @4632#"&.+7!3>54>32#"&'732>7fVnPLTA< =lQ/C<,<#SU6dZJ}i;o+W?^u7LXJZE=/m(kk]R;EH(A.\RP}hiG#s2UrATQ#7654#""54632732>7.+7!#">7>54&+7!#";{ED+L|Y7 <2$ ; '\/' J N5%9D+&'(->(7 2yo gHL<;DRm 0(* ll D/DDA)~K!#R"ll 3'? moG#7654#""54632.+7!3>54>32#"&'732>7{ED+L|YA< =lQ/C<,<#SU6dZJ}i;o+W?^u7'o gHL<;D=/m(kk]R;EH(A.\RP}hiG#s2UrATo_2>73#".#"#>32732>7.+7!#">7>54&+7!#";&{ -CY77XJA!&z /H]76UG?7 <2$ ; '\/' J N5%9D+&'(->(7 2'1kY:(1('.kZ<(1(m 0(* ll D/DDA)~K!#R"ll 3'? muU2>73#".#"#>32.+7!3>54>32#"&'732>7&{ -CY77XJA!&z /H]76UG?7A< =lQ/C<,<#SU6dZJ}i;o+W?^u7'1kY:(1('.kZ<(1(=/m(kk]R;EH(A.\RP}hiG#s2UrA+#+V!#'7'77'+V5555X7777 '7##!'77RJ75}o}7L) ##'7!)T77L}57}X7!0/;m'!!X'o!7!ݒo!7!ݒo!7!ݒL'`:`-d5!7!!7!ALDyyJ4>7#".9qp*7%A1NrSl2x)!4%/EJu7654.54>32u9qp*8%A0NrSl2x)!4%/E9%7654.54>329qp*8%A0NrSl2x)!4%/EDs2.54>;D-5-%8$NoF "?X;9-:)$(!jCXlA9eK+JV14>7#".%4>7#".9qp*7%A19qp*7%A1NrSl2x)!4%/E-NrSl2x)!4%/EJ17654.54>327654.54>32u9qp*8%A09qp*8%A0NrSl2x)!4%/E-NrSl2x)!4%/EV91%7654.54>327654.54>329qp*8%A09qp*8%A0NrSl2x)!4%/E-NrSl2x)!4%/ED6&EE#676577!%%46.k.j-. 3bw4yf{95B59/+-%!7'67>?4&'&'77!%%y3 4^-4 4`y315:5C5: QB++B 95C59 NB"-J #".54>327Yo8AkM*,QsG>kN,eU%#GkIQ^4#Glb}3/%#"&54632#"&54632#"&54632.:EUXJ 8*p.9FTWK 8)o.:ETWJ 8*3E+FGSc#5#3E+FGSc#5!3E+FGTb#5#!+ToPN)5!#NTP###!V ###!!!VtP !!5!###tVPN %/G[s!#34>32#"."32>54&4>32#"."32>54&4>32#"."32>54&3LiRNpH#2NkSBkK)(C6)(2(C6)'N3LiRNpH#2NkSBkK)(C6)(2(C6)'<2MhRNpH#3NjSBkK)(C6*)1(C6*'@{]7.RpA;|_9'LoA7Xptm(Qa7Xqtm)R\@z]7.RpA;{_9'Kp@7Xptm(Qa7Xqtm)R\ @z]7.RpA;{_9'Kp@7Xptm(Qa7Xqtm)R\7 7f7& '  }3#woTffu-T #3='y-C%2>7#".5467#73>7#73>32#4.#"!!!!3RC5 1cdb|Gyj ku6eYW+ 4()ROHy -.5##7!#'.'##*G*(/  N  # Z <V<",^7#9=)77% 979 )7v77  11*^ #&'5673!9>HH>9DH$HDV^ &'3#67!59>HH>9#DH$HDVS# !! !!A6>R>u^`G  G`RyH 5!7'!5!7 'y__u=R=57`RR`GGo97K"".54>32#".54>323>54.2>7.#"5O4>W6+SxNzz=!dfeU%9Y}fd%  ?^6jZC *:&7YE3!RD-FU(*71R;!O׉ ^tHeI=fH8~a;HE  ^vB3Uf%E30Ogmm-cr)7!%.'1%d Q4H1[KJ_Zu1532>5!;!532>5.+5!#";X&&X=V'$VV&%Vm 4,3,4 mm 4,(2 ll 5+7)1mm2>?3!5 5!#'.#!0>'w v y ,D06H*>5X(?+Vp%!5!n!#32}hB?##5!3."{eh!1A#"&'#".54>32>32%"32>54.267.#".SuG_J?[FvV/.TvI/]YQ"?gFtS.It;5vO,G23GFEz95xO+E10HPPk>uy{7eZRi=;\Bww8f}(F]55\D' |(F]53[E)`3!!^j8^4>32#4&#"rуwfŠ!y=".54>332>54.54>7>32#4&#"=KlE 4WA !& ڽ4WA(.' 0A$6*-N8 #GjGDIBr(\H8,dgBmQ3N_d7=}+.#"#463232673#.#"#463232673#ᑊ96<L32: Tu46<Q32: cp}atzϴ=}qq}fuxϴ73!!!!#7!5!7!5^87/BE55PCmӏӏdHP 5!5!5!d8d )5!5 nnm!Tߡ )5!%5 5nmnDdi!T{Z!!{!!!!!7L17}1mh{!!hmh{!!!hKPb!!L! XVRZ 7L LRZZ79eXL !# 3 ^5^NJ%'-)4>32#".732>54.#"wx{yy{xwV`bcb`c``dyyyyxyy{b``bcbbbV^R'/7?GOW_gow#"5432'#"5432#"5432#"5432#"5432#"5432#"5432#"5432#"5432#"5432#"5432#"5432#"5432%#"5432#"5432'#"5432377349947575#3773865567557R75577667377349944976#58856556\677675577667667+557775555885Z557w55763:C558337775555776557737+558# 2#"54>jmsoujlw)3!32>54.#")wvuwwwvu}Bwwwutww)#3!4>32#".'32>54.#")R`babbab`Nwvuwwwvu}B`bb`c``cwwwutwwsbu #"&546324&#"326bcfdiFIKgFEgcIN_}khfJHfFffFHdh) :%\K\\\\\\ \\\d\n\\7\\\ \\\\\\\\\\\\ %\ K \ \ \ \ \ \ \ \ \ d\ n\ \ 7\ \ \  \ \ \ \ \ \ \ \ \ \ \ \  %\dgnqqq  *7q\D H M b%\% \%q%#%'%+%3%5%8%9%:\%;q%=q%G%H%I%K%S%U%Y%Z%[%]%%%%%%%%%%%q%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%#%%%'%)%*%+%,%-%.%/%0%1%2%3%4%5q%6%7q%8%9q%A%B%P%Q%%%%%%%%%%%%%%%%%%%%% % % % % %%%%%%%%%%%%%%%%%%% %!%"%#q%$%%q%&%'q%(%)q%*%Cq%Gq%\q&&#&%&8&:&;&<&=&>&[&]&&&&&&&&&&&&&#&%&'&5&6&7&8&9&:&<&>&&&&&&&&&&&&&#&$&%&&&'&(&)&*&C&G&\&b(#(%(8(:(;(<(=((((((((((((#(%('(5(7(9(((((((((((((#(%('()(b):);)=))5)7)9)#)%)'))*%q*E*G*H*I*K*S*U*q*q*q*q*q*q*********************q**q**q*********************B*q**q**q**q**q**q**q**q**q**q**q**q**************** * ****+#+8+:+;+=+++#+%+'+5+7+9+#+%+'+)/'/+/3/5/G/H/I/K/S/U/Y/[/]/////////////////////////////////////////////// ////////*/,/./0/2/4/6/8/A/B/Q///////////////////// / / / / ///////////// /"/$/&/(/*00 0\0#q08q0:0;0=00#q0%q0'q0507090#0%0'0)0C\0G\0\\3#3%383:3;3<3=333333333333#3%3'3537393333333333333#3%3'3)3b4 4 4%4444444\4444444444444444D 4H 4M 4b5#5%585:5;5<5=555555555555#5%5'5557595555555555555#5%5'5)5b66#6'6+636568696:6;6=6[6]666666666666666666666 6666#6%6'6)6+6-6/616365666768696A6P6666666 6 6 6666666666!6#6$6%6&6'6(6)6*6C6G6\7#7%787:7;7<7=7[7]7777777777777#7%7'75767778797777777777777#7$7%7&7'7(7)7*7b8H8H8%8'8+83858E8G8H8I8K8S8U8888888\8888888888888888888888888888888888888888888888888888888 88888888A8B888888888888888888888888888888888888888888888 8 8 8 8 88888888DH8HH8MH8b9%999999999999999999999:::%\:':+:3:5:E:G:H:I:K:S:U:W:\:\:\:\:\:\:::::::::::::::::::::::::::\::\::\::::::::::::::::::::::::: :::::::::: :":A:B:\::\::\::\::\::\::\::\::\::\::\::\:::::::::::::::::::::: : : : : ::::::::D:H:M:b;H;H;%;';+;3;5;E;G;H;I;K;S;U;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;A;B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; ; ; ; ;;;;;;;;DH;HH;MH;b<'<+<3<5<7<[<]<<<<<<<<<<<<<<<< <<<<<<<!<6<8<A<<<<<<< < < <<<<$<&<(<*=\=\=%q='=+=3=5=7=E=Gq=Hq=Iq=Kq=Sq=Uq=W=q=q=q=q=q=q=H==============q=q=q=q=q=q=q=q=q=q=q=q=q==q==q===q==q==q==q=q=q=q=q=q=q=q==q==q==q==q= =q==q==q==q====== =!="=A=Bq=q==q==q==q==q==q==q==q==q==q==q==q==q=q=q=q=q=q=q=q==q==q==q==q==q==q= = q= = q= =q==q==q==q=D\=H\=M\=bEE E]EE8E$E&E(E*F]FF8F$F&F(F*JJ J JJAJaJCJGJ\LL L]LL8L$L&L(L*OGOHOIOKOSOUOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOBOOOOOOOOOOOOOOO O OOOORR R]RR8R$R&R(R*S]SS8S$S&S(S*T]TT8T$T&T(T*V=VEVVVVVVVVVVVVVVVVVVVVVVVC=VG=V\=ZZqZDqZHqZMq[q[q[Dq[Hq[Mq]H]H]DH]HH]MH\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ`krvwqxzq}q~"$%/123AqCDE\FG\HIJKLMNOPQRqyz{|}qq      !"#q$%q&'q()q*CqGq\q\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ`krvwqxzq}q~"$%/123AqCDE\FG\HIJKLMNOPQRqyz{|}qq      !"#q$%q&'q()q*CqGq\q\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q:;=579#%'):;=579#%'):;=579#%'):;=579#%'):;=579#%')#%8:;<=#%'579#%')b#%8:;<=#%'579#%')b#%8:;<=#%'579#%')b#%8:;<=#%'579#%')b#%8:;<=#%'579#%')b#%8:;<=#%'579#%')b#%8:;<=#%'579#%')b%%%%\\%q'+357EGqHqIqKqSqUqWqqqqqqHqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq qqqq !"ABqqqqqqqqqqqqqqqqqqqqqqqqqqq  q  q qqqqD\H\M\b#%8:;<=#%'579#%')b]8$&(* ]8$&(* ]8$&(* ]8$&(* ]8$&(* ]8$&(* ]8$&(*]8$&(* ]8$&(*]8$&(*]8$&(*]8$&(*]8$&(*]8$&(*]8$&(*HHDHHHMH\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q#%8:;<=#%'579#%')bR#=FPCRGR\R#%8:;<=#%'579#%')b:;=579#%'):;=579#%'):;=579#%'):;=579#%'):;=579#%')#8:;=#%'579#%')#8:;=#%'579#%')#8:;=#%'579#%')#8:;=#%'579#%') ]8$&(* ]8$&(*'+35GHIKSUY[] *,.02468ABQ      "$&(*GHIKSUB  GHIKSUB   \#q8q:;=#q%q'q579#%')C\G\\\ \#q8q:;=#q%q'q579#%')C\G\\\R#=FPCRGR\R ]8$&(* ]8$&(*   ]  8 $ & ( *   ]  8 $ & ( *   ]  8 $ & ( * # % 8 : ; < =            # % ' 5 7 9             # % ' ) b]8$&(*#%8:;<=#%'579#%')b]8$&(*#%8:;<=#%'579#%')b]8$&(*:;=579#%')#'+3589:;=[] #%')+-/1356789AP   !#$%&'()*CG\=EC=G=\=#'+3589:;=[] #%')+-/1356789AP   !#$%&'()*CG\=EC=G=\=#'+3589:;=[] #%')+-/1356789AP   !#$%&'()*CG\=EC=G=\=#%8:;<=[]#%'56789#$%&'()*b#%8:;<=[]#%'56789#$%&'()*b#%8:;<=[]#%'56789#$%&'()*b!#!%!8!:!;!<!=![!]!!!!!!!!!!!!!#!%!'!5!6!7!8!9!!!!!!!!!!!!!#!$!%!&!'!(!)!*!b#H#H#%#'#+#3#5#E#G#H#I#K#S#U#######\####################################################### ########A#B############################################# # # # # ########DH#HH#MH#b%H%H%%%'%+%3%5%E%G%H%I%K%S%U%%%%%%%\%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%A%B%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % %%%%%%%%DH%HH%MH%b'H'H'%'''+'3'5'E'G'H'I'K'S'U'''''''\''''''''''''''''''''''''''''''''''''''''''''''''''''''' ''''''''A'B''''''''''''''''''''''''''''''''''''''''''''' ' ' ' ' ''''''''DH'HH'MH'b)%)))))))))))))))))))))+%+++++++++++++++++++++-%---------------------/%/////////////////////3%3333333333333333333335H5H5%5'5+53555E5G5H5I5K5S5U55555555555555555555555555555555555555555555555555555555555555 55555555A5B555555555555555555555555555555555555555555555 5 5 5 5 55555555DH5HH5MH5b6q6q6Dq6Hq6Mq7\7\7%q7'7+7375777E7Gq7Hq7Iq7Kq7Sq7Uq7W7q7q7q7q7q7q7H77777777777777q7q7q7q7q7q7q7q7q7q7q7q7q77q77q777q77q77q77q7q7q7q7q7q7q7q77q77q77q77q7 7q77q77q77q777777 7!7"7A7Bq7q77q77q77q77q77q77q77q77q77q77q77q77q7q7q7q7q7q7q7q77q77q77q77q77q77q7 7 q7 7 q7 7q77q77q77q7D\7H\7M\7b8H8H8DH8HH8MH9\9\9%q9'9+9395979E9Gq9Hq9Iq9Kq9Sq9Uq9W9q9q9q9q9q9q9H99999999999999q9q9q9q9q9q9q9q9q9q9q9q9q99q99q999q99q99q99q9q9q9q9q9q9q9q99q99q99q99q9 9q99q99q99q999999 9!9"9A9Bq9q99q99q99q99q99q99q99q99q99q99q99q99q9q9q9q9q9q9q9q99q99q99q99q99q99q9 9 q9 9 q9 9q99q99q99q9D\9H\9M\9bA#)A%A8)A:)A;)A=)AEAGAHAIAKASAUAWA[A\A]AAAAAAA)AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA A"A#)A%)A')A5)A6A7)A8A9)ABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA A AAAAA#)A$A%)A&A')A(A))A*B)BQ)BR)BT)BX=BY)B[=B]=B)B)B)B)B)B=B)B)B)B )B )B$=B&=B(=B*)B,)B.)B0)B2)B4)B6=B8=BQ)B)B)B)B)B)B )B")B$=B&=B(=B*=BC)BG)B\)P%P'P+P3P5PEPGPHPIPKPQPRPSPTPUPWPYP[P]P^PPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP P P PPPPPPPPPP P"P*P,P.P0P2P4P6P8P;P=P?PAPBPQPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP P P P P PPPPPPPPPPPPP P"P$P&P(P*Q)QC)QG)Q\)[\[ \[q[#[`[k[r[v[wq[x[zq[}q[~[[[[[[[[[[[[[[[[Cq[Gq[\q`#```d`g`n`v`w`y`z`}`bd\d \dqd#d`dkdrdvdwqdxdzqd}qd~ddddddddddddddddCqdGqd\qee#eeedeieneveweyeze}eeeeCeGe\ebfHfHfff`fdfgfkfnfrfxf~fffffffffDHfHHfMHfbg#gvgwgxgzg}hwhzh}k#kkkdkgknkvkwkykzk}kbm`mkmrmxm~mmmmmmmmmmmmmmmn\n \nqn#n`nknrnvnwqnxnzqn}qn~nnnnnnnnnnnnnnnnCqnGqn\qqwqzq}r#rrrdrgrnrvrwryrzr}rbt t tttdtgtntD tH tM tbvHvHvvv`vdvgvkvnvrvxv~vvvvvvvvvDHvHHvMHvbw\w\wqwqw`wdqwgwkwnqwrwxw~qwqwqwqwqwqwqwqwqwD\wH\wM\wbx#xxxdxgxnxvxwxyxzx}xby`ykyryxyyyz\z\zqzqz`zdqzgzkznqzrzxz~qzqzqzqzqzqzqzqzqzD\zH\zM\zb}\}\}q}q}`}dq}g}k}nq}r}x}~q}q}q}q}q}q}q}q}q}D\}H\}M\}b \\D\H\M\ ~DHMDHMAEGr~AEGrHH  "$%*17CDIJKLMNOQRyz{|\DHHHMHb#/237;AEFGHPgq}bCG\CG\q#qqqqq/23qAEFGHPqq}qqqqqqCqGq\q"$%/12CDFHIJKLMNOPQRryz{|\\\\\\ \ \"$%&*\17\CDIJKLMNOQRyz{|\\\\DHMb\ \q#H ) )"$%*)/123AqCDE\FG\HIJKLMNOPQRqryz{|}qqHH)HHCqGq\q#  */237;AEFGHPgqr}CG\bHH  "$%*17CDIJKLMNOQRyz{|\DHHHMHbAEGr"$%/12CDFHIJKLMNOPQRryz{|#  */237;AEFGHPgqr}CG\b"$%/12CDFHIJKLMNOPQRryz{|#  *37;AEGgq}b  qqq  *7q\D H M bHH  "$%*17CDIJKLMNOQRyz{|\DHHHMHb\\\\\\ \ \"$%&*\17\CDIJKLMNOQRyz{|\\\\DHMb#  *37;AEGgq}b/12CFHIKMOPQry{CG\CG\#  *37;AEGgq}b#  *37;AEGgq}b /FH/FH=qq  */FHC=DqG=HqMq\=/FH"$%DJLNRz|/FH       " $ % D J L N R z |      /FH/FH =qq  */FHC=DqG=HqMq\=HH q q*qqDHHHMH/FH"$%DJLNRz|/FH/FH## ##/#F#H#####$=$q$q$ $ $$*$/$F$H$$$$$$$C=$Dq$G=$Hq$Mq$\=,, ,,/,F,H,,,,,-------"-$-%-D-J-L-N-R-z-|------/H/H/ q/ q/*q/q/DH/HH/MH1#111111111111111 1 1*13171;1A1E1G1g1q1}11111111111111111b2q2q22 2 2*22Dq2Hq2Mq33C3G3\7\7 \7q7#777777777H77777)77 )7 )7777777"7$7%7*)7/7172737Aq7C7D7E\7F7G\7H7I7J7K7L7M7N7O7P7Q7R7q7r7y7z7{7|7}7~7q77q7777H77H7777)7H77777777777777777777H77Cq7Gq7\q9\9 \9q9#999999999H99999)99 )9 )9999999"9$9%9*)9/9192939Aq9C9D9E\9F9G\9H9I9J9K9L9M9N9O9P9Q9R9q9r9y9z9{9|9}9~9q99q9999H99H9999)9H99999999999999999999H99Cq9Gq9\q;;;;;;;;;;;;;;;;;";$;%;/;1;2;C;D;F;H;I;J;K;L;M;N;O;P;Q;R;r;y;z;{;|;~;;;;;;;;;;;;;;;;;;;;;;;;;;;;<<<<<<<"<$<%<D<J<L<N<R<z<|<<<<<<================="=$=%=/=1=2=C=D=F=H=I=J=K=L=M=N=O=P=Q=R=r=y=z={=|=~============================>>>>>>>">$>%>D>J>L>N>R>z>|>>>>>>??#???????????????? ? ???*?/?2?3?7?;?A?E?F?G?H?P?g?q?r?}?~???????????????????????????C?G?\?b@@/@F@H@@@@@A\A\AqAqAAAAqAAAAAAAAAqAqAqA qA qAqAqAqA"qA$qA%qA&A*qA1A7qACADqAIAJqAKALqAMANqAOAQARqAyAzqA{A|qAAAAqAqAAqAAHAAqAAqAAqAAqAAqAAqAAD\AH\AM\AbC#CCCCCCCCCCCCCCC C C*C3C7C;CACECGCgCqC}CCCCCCCCCCCCCCCCCbDD/DFDHDDDDDEEE\E\EE\E\E\E\EEEEEEEE\EE \E \EEEE"E$E%E&E*\E1E7\ECEDEIEJEKELEMENEOEQEREyEzE{E|EEE\E\E\EE\EEEEEEEEEEEEEEEEDEHEMEbFHFHF qF qF*qFqFDHFHHFMHGGG\G\GG\G\G\G\GGGGGGGG\GG \G \GGGG"G$G%G&G*\G1G7\GCGDGIGJGKGLGMGNGOGQGRGyGzG{G|GGG\G\G\GG\GGGGGGGGGGGGGGGGDGHGMGbHHHHH qH qH*qHqHDHHHHHMHIHIHI qI qI*qIqIDHIHHIMHJHJHJ qJ qJ*qJqJDHJHHJMHK#KKKKKKKKKKKKKKK K K*K3K7K;KAKEKGKgKqK}KKKKKKKKKKKKKKKKKbLL/LFLHLLLLLM#MMMMMMMMMMMMMMM M M*M3M7M;MAMEMGMgMqM}MMMMMMMMMMMMMMMMMbNN/NFNHNNNNNO#OOOOOOOOOOOOOOO O O*O3O7O;OAOEOGOgOqO}OOOOOOOOOOOOOOOOObPqPqPP P P*PPDqPHqPMq]]C]G]\^^/^F^H^^^^^_ _ ___q___q_q___ _ _*_7_q____\____D _H _M _b``/`F`H`````aHaHaaaaaaaaaaaaaaaa a aaaa"a$a%a*a1a7aCaDaIaJaKaLaMaNaOaQaRayaza{a|aaaaaaaaa\aaaaaaaaaaaaaaDHaHHaMHabb=bqbqb b b*bbC=bDqbG=bHqbMqb\=cHcHccccccccccccccccc c cccc"c$c%c*c1c7cCcDcIcJcKcLcMcNcOcQcRcyczc{c|ccccccccc\ccccccccccccccDHcHHcMHcbd=dqdqdd d d*ddC=dDqdG=dHqdMqd\=eqe#qeqeqeqeqee/e2e3qeAeEeFeGeHePeqqe}qeeeeeqeqeqeqeeeeqeCqeGqe\qggggggggggggggggg"g$g%g/g1g2gCgDgFgHgIgJgKgLgMgNgOgPgQgRgrgygzg{g|g~gggggggggggggggggggggggggggghhhhhhh"h$h%hDhJhLhNhRhzh|hhhhhhii#iiiiiiiiiiiiiiii i iii*i/i2i3i7i;iAiEiFiGiHiPigiqiri}i~iiiiiiiiiiiiiiiiiiiiiiiiiiiCiGi\ibjj/jFjHjjjjjkkkkkkkkkkkkkkkkk"k$k%k/k1k2kCkDkFkHkIkJkKkLkMkNkOkPkQkRkrkykzk{k|k~kkkkkkkkkkkkkkkkkkkkkkkkkkkklllllll"l$l%lDlJlLlNlRlzl|llllllmmmmmmmmmmmmmmmmm"m$m%m/m1m2mCmDmFmHmImJmKmLmMmNmOmPmQmRmrmymzm{m|m~mmmmmmmmmmmmmmmmmmmmmmmmmmmmnnnnnnn"n$n%nDnJnLnNnRnzn|nnnnnnooooooooooooooooo"o$o%o/o1o2oCoDoFoHoIoJoKoLoMoNoOoPoQoRoroyozo{o|o~ooooooooooooooooooooooooooooppppppp"p$p%pDpJpLpNpRpzp|ppppppqqqqqqqqqqqqqqqqq"q$q%q/q1q2qCqDqFqHqIqJqKqLqMqNqOqPqQqRqrqyqzq{q|q~qqqqqqqqqqqqqqqqqqqqqqqqqqqqrrrrrrr"r$r%rDrJrLrNrRrzr|rrrrrruHuHuuuuuuuuuuuuuuuuu u uuuu"u$u%u*u1u7uCuDuIuJuKuLuMuNuOuQuRuyuzu{u|uuuuuuuuu\uuuuuuuuuuuuuuDHuHHuMHubwqw#qwqwqwqwqww/w2w3qwAwEwFwGwHwPwqqw}qwwwwwqwqwqwqwwwwqwCqwGqw\q}H}H}}}}}}}}}}}}}}}}} } }}}}"}$}%}*}1}7}C}D}I}J}K}L}M}N}O}Q}R}y}z}{}|}}}}}}}}}\}}}}}}}}}}}}}}DH}HH}MH}b~~ ~=~q~q~~ ~ ~~*~/~F~H~~~~~~~C=~Dq~G=~Hq~Mq~\=\\qqqqqq q qqqq"q$q%q&*q17qCDqIJqKLqMNqOQRqyzq{|qqqqHqqqqqqD\H\M\bHH q q*qqDHHHMH\\qqqqqq q qqqq"q$q%q&*q17qCDqIJqKLqMNqOQRqyzq{|qqqqHqqqqqqD\H\M\b*Z` >HH q q*qqDHHHMH"$%DJLNRz|q#qqqqq/23qAEFGHPqq}qqqqqqCqGq\q#  *37;AEGgq}b#  *37;AEGgq}b"$%/12CDFHIJKLMNOPQRryz{|~"$%DJLNRz|q#qqqqq/23qAEFGHPqq}qqqqqqCqGq\q\ \q#H) ) )"$%*)/123AqCDE\FG\HIJKLMNOPQRqryz{|}~qqHH)HHCqGq\q /FH\ \q#H) ) )"$%*)/123AqCDE\FG\HIJKLMNOPQRqryz{|}~qqHH)HHCqGq\q /FHAEGr~AEGr~#  *37;AEGgq}b/FH#  *37;AEGgq}b/FH"$%/12CDFHIJKLMNOPQRryz{|~"$%DJLNRz|#  */237;AEFGHPgqr}~CG\b#  */237;AEFGHPgqr}~CG\b#  *37;AEGgq}b/FH#  *37;AEGgq}b/FH#  *37;AEGgq}b/FH#  *37;AEGgq}b\\\\\\\ \ \"$%&*\17\CDIJKLMNOQRyz{|\\\\DHMbHH q q*qqDHHHMH\\\\\\\ \ \"$%&*\17\CDIJKLMNOQRyz{|\\\\DHMbHH q q*qqDHHHMH\\\\\\\ \ \"$%&*\17\CDIJKLMNOQRyz{|\\\\DHMbHH q q*qqDHHHMHHH  "$%*17CDIJKLMNOQRyz{|\DHHHMHb=qq  *C=DqG=HqMq\=HH  "$%*17CDIJKLMNOQRyz{|\DHHHMHb=qq  *C=DqG=HqMq\="$%/12CDFHIJKLMNOPQRryz{|~"$%/12CDFHIJKLMNOPQRryz{|~"$%DJLNRz|\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q ]8$&(*\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q ]8$&(*\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q ]8$&(*\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q ]8$&(*\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q ]8$&(*\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q ]8$&(*\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q ]8$&(*\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q ]8$&(*\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q ]8$&(*\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q ]8$&(*\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q ]8$&(*\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q ]8$&(*:;=579#%'):;=579#%'):;=579#%'):;=579#%'):;=579#%'):;=579#%'):;=579#%'):;=579#%')#%8:;<=#%'579#%')b]8$&(*#%8:;<=#%'579#%')b]8$&(*#%8:;<=#%'579#%')b]8$&(*#%8:;<=#%'579#%')b]8$&(*#%8:;<=#%'579#%')b]8$&(*#%8:;<=#%'579#%')b]8$&(* # % 8 : ; < =            # % ' 5 7 9             # % ' ) b ]  8 $ & ( * #) % 8) :) ;) =) E G H I K S U W [ \ ]       )                                                  " #) %) ') 5) 6 7) 8 9) B                                               #) $ %) & ') ( )) * ) Q) R) T) X= Y) [= ]= ) ) ) ) ) = ) ) )  )  ) $= &= (= *) ,) .) 0) 2) 4) 6= 8= Q) ) ) ) ) )  ) ") $= &= (= *= C) G) \) #) % 8) :) ;) =) E G H I K S U W [ \ ]       )                                                  " #) %) ') 5) 6 7) 8 9) B                                               #) $ %) & ') ( )) *)Q)R)T)X=Y)[=]=)))))=))) ) )$=&=(=*),).)0)2)4)6=8=Q)))))) )")$=&=(=*=C)G)\)#)%8):);)=)EGHIKSUW[\]) "#)%)')5)67)89)B  #)$%)&')())*)Q)R)T)X=Y)[=]=)))))=))) ) )$=&=(=*),).)0)2)4)6=8=Q)))))) )")$=&=(=*=C)G)\)#)%8):);)=)EGHIKSUW[\]) "#)%)')5)67)89)B  #)$%)&')())*)Q)R)T)X=Y)[=]=)))))=))) ) )$=&=(=*),).)0)2)4)6=8=Q)))))) )")$=&=(=*=C)G)\)#)%8):);)=)EGHIKSUW[\]) "#)%)')5)67)89)B  #)$%)&')())*)Q)R)T)X=Y)[=]=)))))=))) ) )$=&=(=*),).)0)2)4)6=8=Q)))))) )")$=&=(=*=C)G)\)%%%'+35EGHIKQRSTUWY[]^    "*,.02468;=?ABQ      "$&(*)C)G)\)%'+35EGHIKQRSTUWY[]^    "*,.02468;=?ABQ      "$&(*)C)G)\)%'+35EGHIKQRSTUWY[]^    "*,.02468;=?ABQ      "$&(*)C)G)\)%'+35EGHIKQRSTUWY[]^    "*,.02468;=?ABQ      "$&(* ) C) G) \)!%!'!+!3!5!E!G!H!I!K!Q!R!S!T!U!W!Y![!]!^!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! ! ! !!!!!!!!!! !"!*!,!.!0!2!4!6!8!;!=!?!A!B!Q!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! ! ! ! ! !!!!!!!!!!!!! !"!$!&!(!*")"C)"G)"\)#\#\#%q#'#+#3#5#7#E#Gq#Hq#Iq#Kq#Sq#Uq#W#q#q#q#q#q#q#H##############q#q#q#q#q#q#q#q#q#q#q#q#q##q##q###q##q##q##q#q#q#q#q#q#q#q##q##q##q##q# #q##q##q##q###### #!#"#A#Bq#q##q##q##q##q##q##q##q##q##q##q##q##q#q#q#q#q#q#q#q##q##q##q##q##q##q# # q# # q# #q##q##q##q#D\#H\#M\#b$H$H$DH$HH$MH%\%\%%q%'%+%3%5%7%E%Gq%Hq%Iq%Kq%Sq%Uq%W%q%q%q%q%q%q%H%%%%%%%%%%%%%%q%q%q%q%q%q%q%q%q%q%q%q%q%%q%%q%%%q%%q%%q%%q%q%q%q%q%q%q%q%%q%%q%%q%%q% %q%%q%%q%%q%%%%%% %!%"%A%Bq%q%%q%%q%%q%%q%%q%%q%%q%%q%%q%%q%%q%%q%q%q%q%q%q%q%q%%q%%q%%q%%q%%q%%q% % q% % q% %q%%q%%q%%q%D\%H\%M\%b&H&H&DH&HH&MH'\'\'%q'''+'3'5'7'E'Gq'Hq'Iq'Kq'Sq'Uq'W'q'q'q'q'q'q'H''''''''''''''q'q'q'q'q'q'q'q'q'q'q'q'q''q''q'''q''q''q''q'q'q'q'q'q'q'q''q''q''q''q' 'q''q''q''q'''''' '!'"'A'Bq'q''q''q''q''q''q''q''q''q''q''q''q''q'q'q'q'q'q'q'q''q''q''q''q''q''q' ' q' ' q' 'q''q''q''q'D\'H\'M\'b(H(H(DH(HH(MH)\)\)%q)')+)3)5)7)E)Gq)Hq)Iq)Kq)Sq)Uq)W)q)q)q)q)q)q)H))))))))))))))q)q)q)q)q)q)q)q)q)q)q)q)q))q))q)))q))q))q))q)q)q)q)q)q)q)q))q))q))q))q) )q))q))q))q)))))) )!)")A)Bq)q))q))q))q))q))q))q))q))q))q))q))q))q)q)q)q)q)q)q)q))q))q))q))q))q))q) ) q) ) q) )q))q))q))q)D\)H\)M\)b*H*H*DH*HH*MHB%qBqBqBqBqBqBqBBqBqBqBdqBnqB\BqB\B\BB7qB\BqBqBBqBqBqBqBqBqBqBqBqBqBqBqCWCCC C"C&F%qFqFqFqFqFqFqFFqFqFqFdqFnqF\FqF\F\FF7qF\FqFqFFqFqFqFqFqFqFqFqFqFqFqFqb#b8b:b;b=bb#b%b'b5b7b9bvbwbxbzb}bbbb3bAbEbGbqb}bbbb#b%b'b)n/`  )) "D  .F   KL ^   R ,S  ( D *g ( \ >u < 2 4Copyright 2012 Google Inc. All Rights Reserved.Copyright 2012 Google Inc. All Rights Reserved.Noto SerifNoto SerifBold ItalicBold ItalicMonotype Imaging - Noto Serif Bold ItalicMonotype Imaging - Noto Serif Bold ItalicNoto Serif Bold ItalicNoto Serif Bold ItalicVersion 1.06Version 1.06NotoSerif-BoldItalicNotoSerif-BoldItalicNoto is a trademark of Google Inc.Noto is a trademark of Google Inc.Monotype Imaging Inc.Monotype Imaging Inc.Monotype Design TeamMonotype Design TeamData hinted. Designed by Monotype design team.Data hinted. Designed by Monotype design team.http://www.google.com/get/noto/http://www.google.com/get/noto/http://www.monotype.com/studiohttp://www.monotype.com/studioThis Font Software is licensed under the SIL Open Font License, Version 1.1. This Font Software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the SIL Open Font License for the specific language, permissions and limitations governing your use of this Font Software.This Font Software is licensed under the SIL Open Font License, Version 1.1. This Font Software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the SIL Open Font License for the specific language, permissions and limitations governing your use of this Font Software.http://scripts.sil.org/OFLhttp://scripts.sil.org/OFLff  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a bcdefghjikmlnoqprsutvwxzy{}|~     !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~glyph1uni000Duni000Auni00A0uni00ADuni00B2uni00B3uni00B9AmacronamacronAbreveabreveAogonekaogonek Ccircumflex ccircumflex Cdotaccent cdotaccentDcarondcaronDcroatEmacronemacronEbreveebreve Edotaccent edotaccentEogonekeogonekEcaronecaron Gcircumflex gcircumflex Gdotaccent gdotaccentuni0122uni0123 Hcircumflex hcircumflexHbarhbarItildeitildeImacronimacronIbreveibreveIogonekiogonekIJij Jcircumflex jcircumflexuni0136uni0137 kgreenlandicLacutelacuteuni013Buni013CLcaronlcaronLdotldotNacutenacuteuni0145uni0146Ncaronncaron napostropheEngengOmacronomacronObreveobreve Ohungarumlaut ohungarumlautRacuteracuteuni0156uni0157RcaronrcaronSacutesacute Scircumflex scircumflexuni0162uni0163TcarontcaronTbartbarUtildeutildeUmacronumacronUbreveubreveUringuring Uhungarumlaut uhungarumlautUogonekuogonek Wcircumflex wcircumflex Ycircumflex ycircumflexZacutezacute Zdotaccent zdotaccentlongsOhornohornuni01A2uni01A3uni01A4uni01A5uni01A6uni01A7uni01A8uni01A9uni01AAuni01ABuni01ACuni01ADuni01AEUhornuhornuni0374uni0375uni037Auni037Buni037Cuni037Duni037Etonos dieresistonos Alphatonos anoteleia EpsilontonosEtatonos Iotatonos Omicrontonos Upsilontonos OmegatonosiotadieresistonosAlphaBetaGammauni0394EpsilonZetaEtaThetaIotaKappaLambdaMuNuXiOmicronPiRhoSigmaTauUpsilonPhiChiPsiuni03A9 IotadieresisUpsilondieresis alphatonos epsilontonosetatonos iotatonosupsilondieresistonosalphabetagammadeltaepsilonzetaetathetaiotakappalambdauni03BCnuxiomicronrhosigma1sigmatauupsilonphichipsiomega iotadieresisupsilondieresis omicrontonos upsilontonos omegatonosuni03D0theta1Upsilon1uni03D3uni03D4phi1omega1uni03D7uni03D8uni03D9uni03DAuni03DBuni03DCuni03DDuni03DEuni03DFuni03E0uni03E1uni03E2uni03E3uni03E4uni03E5uni03E6uni03E7uni03E8uni03E9uni03EAuni03EBuni03ECuni03EDuni03EEuni03EFuni03F0uni03F1uni03F2uni03F3uni03F4uni03F5uni03F6uni03F7uni03F8uni03F9uni03FAuni03FBuni03FCuni03FDuni03FEuni03FFuni0400uni0401uni0402uni0403uni0404uni0405uni0406uni0407uni0408uni0409uni040Auni040Buni040Cuni040Duni040Euni040Funi0410uni0411uni0412uni0413uni0414uni0415uni0416uni0417uni0418uni0419uni041Auni041Buni041Cuni041Duni041Euni041Funi0420uni0421uni0422uni0423uni0424uni0425uni0426uni0427uni0428uni0429uni042Auni042Buni042Cuni042Duni042Euni042Funi0430uni0431uni0432uni0433uni0434uni0435uni0436uni0437uni0438uni0439uni043Auni043Buni043Cuni043Duni043Euni043Funi0440uni0441uni0442uni0443uni0444uni0445uni0446uni0447uni0448uni0449uni044Auni044Buni044Cuni044Duni044Euni044Funi0450uni0451uni0452uni0453uni0454uni0455uni0456uni0457uni0458uni0459uni045Auni045Buni045Cuni045Duni045Euni045Funi0460uni0461uni0462uni0463uni0464uni0465uni0466uni0467uni0468uni0469uni046Auni046Buni046Cuni046Duni046Euni046Funi0470uni0471uni0472uni0473uni0474uni0475uni0476uni0477uni0478uni0479uni047Auni047Buni047Cuni047Duni047Euni047Funi0480uni0481uni0482uni0483uni0484uni0485uni0486uni0487uni0488uni0489uni048Auni048Buni048Cuni048Duni048Euni048Funi0490uni0491uni0492uni0493uni0494uni0495uni0496uni0497uni0498uni0499uni049Auni049Buni049Cuni049Duni049Euni049Funi04A0uni04A1uni04A2uni04A3uni04A4uni04A5uni04A6uni04A7uni04A8uni04A9uni04AAuni04ABuni04ACuni04ADuni04AEuni04AFuni04B0uni04B1uni04B2uni04B3uni04B4uni04B5uni04B6uni04B7uni04B8uni04B9uni04BAuni04BBuni04BCuni04BDuni04BEuni04BFuni04C0uni04C1uni04C2uni04C3uni04C4uni04C5uni04C6uni04C7uni04C8uni04C9uni04CAuni04CBuni04CCuni04CDuni04CEuni04CFuni04D0uni04D1uni04D2uni04D3uni04D4uni04D5uni04D6uni04D7uni04D8uni04D9uni04DAuni04DBuni04DCuni04DDuni04DEuni04DFuni04E0uni04E1uni04E2uni04E3uni04E4uni04E5uni04E6uni04E7uni04E8uni04E9uni04EAuni04EBuni04ECuni04EDuni04EEuni04EFuni04F0uni04F1uni04F2uni04F3uni04F4uni04F5uni04F6uni04F7uni04F8uni04F9uni04FAuni04FBuni04FCuni04FDuni04FEuni04FFuni1EA0uni1EA1uni1EA2uni1EA3uni1EA4uni1EA5uni1EA6uni1EA7uni1EA8uni1EA9uni1EAAuni1EABuni1EACuni1EADuni1EAEuni1EAFuni1EB0uni1EB1uni1EB2uni1EB3uni1EB4uni1EB5uni1EB6uni1EB7uni1EB8uni1EB9uni1EBAuni1EBBuni1EBCuni1EBDuni1EBEuni1EBFuni1EC0uni1EC1uni1EC2uni1EC3uni1EC4uni1EC5uni1EC6uni1EC7uni1EC8uni1EC9uni1ECAuni1ECBuni1ECCuni1ECDuni1ECEuni1ECFuni1ED0uni1ED1uni1ED2uni1ED3uni1ED4uni1ED5uni1ED6uni1ED7uni1ED8uni1ED9uni1EDAuni1EDBuni1EDCuni1EDDuni1EDEuni1EDFuni1EE0uni1EE1uni1EE2uni1EE3uni1EE4uni1EE5uni1EE6uni1EE7uni1EE8uni1EE9uni1EEAuni1EEBuni1EECuni1EEDuni1EEEuni1EEFuni1EF0uni1EF1Ygraveygraveuni1EF4uni1EF5uni1EF6uni1EF7uni1EF8uni1EF9uni2000uni2001uni2002uni2003uni2004uni2005uni2006uni2007uni2008uni2009uni200Auni200Buni200Cuni200Duni200Euni200Funi2011 figuredashuni2015uni2016 underscoredbl quotereverseduni201Funi202Auni202Buni202Cuni202Duni202Euni202Fminuteseconduni2034uni2060Euro arrowleft arrowright arrowdblleft arrowdblrightuni2215uni2219 orthogonal intersection equivalence filledboxH22073H18543H18551 filledrecttriaguptriagrttriagdntriaglfcircleuni25CCH18533 invbullet invcircle openbulletuniFEFFEX!Vruby-asciidoctor-pdf-1.6.2/data/fonts/notoserif-italic-subset.ttf000066400000000000000000006535341416357056400251430ustar00rootroot00000000000000FFTMv@W@OS/2L2`cmapcvt jj:fpgms#gaspW4 glyf>_&qheadG 6hhea D$hmtxᰧ_ kerntlocamaxph namexjx1 postN; prep,샵!_< OV b F dlZ33f  GOOG X J {D y/y1+HVy{5NByRyNyyyyy{yyyHJBJyyy ^;jjXjjPZf\H NyyF5X7XXXsZoTZo+ZZX{XZ3uN#L^9m{ymyyyyyyZ)%{}y{3y3)3PbJH3-1DD&jjjjjjyjXXXXXXXXXXXXoooIojXZXXXXXy uuuu9XXXjXjXjXjXXXXXXXXjsjsjsjsXZXZo"oroooTZZooo)ZZZZjXjXjXjXPZPPZZ3Z3Z3Z3 Luuuuuu\L9f9jXjXu-f1BZ99u?0XJ=J#'' !;}XjfjJHT=XuTT1R=`XyqZHm1TXXX^udX9uXuXuXo`J dXo\BXXN1!uoZf1{{uXbLP;B1XTjX 1j%fj}jZm\V;}uFmmXjj\VJH B `?Xf!XJXXuuX#3ZXZX+Z9LX^uN'u5uN!^9^ZXXwZJX3oojTXZZXu9usd=9JJ!ZJhZL FZujX## yjXBjXsPXsd=jXhuF`N))mu9HZZ}D'/7XXXH^XZZoZjXjX+ZfRfPH^#D N N ZbR+bR+X#PDXZ N3XXXXX='X='`mumujXjXjX \V9\V9\V9 N}B!^}H^H^XXXXXXXXXXXXXXXXXXXXoo~jXjXjXjXjXjXjX9jX9jX9jX9jX9jXuu99u99u99u99u99u9999Uy%!L{yRyJ;uZN FD R}3y5Sy=XoqyJ/RXPJyydyy{mmbNb))sh@( ~u~  " & 0 4 : ` !"!!!!"""""""")"+"H"a"e%%%%%%%%%% tz  & * 2 9 ` !"!!!!"""""""")"+"H"`"d%%%%%%%%%%1+*'$#:_\TSQNKBA% ݾݽݶݱݯݧݛ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abJsefjLyql\wknitpqhxadclm}{dohmbn~Mc=>FGBC{9[XYKzDHTr{@EYXUTSRQPONMLKJIHGFEDCBA@?>=<;:9876510/.-,('&%$#"! ,E#F` &`&#HH-,E#F#a &a&#HH-,E#F` a F`&#HH-,E#F#a ` &a a&#HH-,E#F`@a f`&#HH-,E#F#a@` &a@a&#HH-, <<-, E# D# ZQX# D#Y QX# MD#Y &QX# D#Y!!-, EhD ` EFvhE`D-, C#Ce -, C#C -,(#p(>(#p(E: -, E%EadPQXED!!Y-,I#D-, EC`D-,CCe -, i@a ,b`+ d#da\XaY-,E+)#D)z-,Ee,#DE+#D-,KRXED!!Y-,KQXED!!Y-,%# `#-,%# a#-,%-,F#F`F# F`ab# # pE` PXaFY`h:-, E%FRKQ[X%F ha%%?#!8!Y-, E%FPX%F ha%%?#!8!Y-,CC -,!! d#d@b-,!QX d#d b@/+Y`-,!QX d#dUb/+Y`-, d#d@b`#!-,KSX%Id#Ei@ab aj#D#!# 9/Y-,KSX %Idi &%Id#ab aj#D&#D#D& 9# 9//Y-,E#E`#E`#E`#vhb -,H+-, ETX@D E@aD!!Y-,E0/E#Ea``iD-,KQX/#p#B!!Y-,KQX %EiSXD!!Y!!Y-,EC`c`iD-,/ED-,E# E`D-,E#E`D-,K#QX34 34YDD-,CX&EXdf`d `f X!@YaY#XeY)#D#)!!!!!Y-,CTXKS#KQZX8!!Y!!!!Y-,CX%Ed `f X!@Ya#XeY)#D%% XY%% F%#B<%%%% F%`#B< XY%%)) EeD%%)%% XY%%CH%%%%`CH!Y!!!!!!!-,% F%#B%%EH!!!!-,% %%CH!!!-,E# E P X#e#Y#h @PX!@Y#XeY`D-,KS#KQZX E`D!!Y-,KTX E`D!!Y-,KS#KQZX8!!Y-,!KTX8!!Y-,CTXF+!!!!Y-,CTXG+!!!Y-,CTXH+!!!!Y-,CTXI+!!!Y-, #KSKQZX#8!!Y-,%ISX @8!Y-,F#F`#Fa#  Fab@@pE`h:-, #Id#SX<!Y-,KRX}zY-,KKTB-,B#Q@SZX TXC`BY$QX @TXC`B$TX C`BKKRXC`BY@TXC`BY@cTXC`BY@cTXC`BY@cTX@C`BYYYYY-,Eh#KQX# E d@PX|Yh`YD-,%%#>#> #eB #B#?#? #eB#B-,zE#-APUPUPUDPUUU@-PU{$PUP? A-PU@UU P UP  P U   PUPU9A?o ?@W3U3UU?0OuNtN'o7oGoUg@f Fe/e0d@ddU@vU3UU3U@WF0V@VPV?UOUUUUPTTSJHG GU3UU3UUGU??oTS++KRKP[%S@QZUZ[XYBK2SX`YKdSX@YKSXBYssst++++++s+sssss+s+++++ss+s++++s++ssssssss+++++stttuu^s++^s+s++s+s+ssstuu+s_ssuu+++st+s+++_NuJfV\huqqVfpuugVfq^odoyHVT1yyTy"KppWP}kT X^%1{j;JBE5'q2Hr(<JvBv FhfBzBlZ  @ 2 j  N r . h  D LBlLtNPrrT4fp2p"Fn^j*62.:\&f t*6BN  L !:!F!j!!!"" ","r"##N##$$ $N$$%%B%%&&$&x&&'<''( (Z(()<)**P*+ +x+,2,,-T--. .P.~../*/t////0&0^01181D1P1112(2b223333f344T4b445.5`556$6h667 77l778:8F8R88899V9999:0:j::;L;;<,8>>?4?????@0@d@@AAFAAB:BBCKzKKL&LXLvLLLMMfMnMMNN@NfNNO OJOOOOOOPPPQQQJQR$RjRRS SbSSTT@TpUUUV*VVWWXWWXXbXXYY^YfYnYvY~YYZZ Z^ZZ[0[<[~[[[[\"\*\2\>\F\\]B]N]Z]]^^8^@^H^^__R_``d````````aa"a*apab bfbbc*c`cdd dJddddeTeeef*fjfffggggg ggghhlhiiXiiijHjTj`jjjjjkkk\kkkkllTllm*mhmnnPnnoFooppqVqqqrrXrrssLsttJttufuvvRv|vvvwww8wx$xxy yXyyzz8zpzz{${| |r|}}n}~~t~\N.΂f B؄4ząnZ܇&l$ΊV:pRT`lt|ȎN̏:܏ Fx.:F >p|ԓzȔ&hTd—RvΚ&؛:`V<ڟ2:`¢r,l.rĥ`Z`§Χڨ6<֪&rΫ&2>JV,\ƭҮ(lί~̯̯̯̯̯̯̯̯̯̯̯̯̯گ(6DR`n|ʰ2dƲDTdv 0DZZ (Hhƴ"0>F\̵4Xt̶ڶ (6R,Hlθ !!7!!IhyJh{ 3#"54632^I>IT}GV}IT 3#3#٣_٤^/y##!##73#733!33#)!y{yx{yw u}wv{w uhuy``yymmyo1^D"'-%.5463$546?3#4'#>54e9yhk!f 'hd1g^׮btL pM[ק " eY $w3 f ", #"&543254#"#3 # 43254#"5}JooooŘ+JoooolcElaH&09!'!"&5467&546326?!#";>54&#" 32H{c֦W*qf\)R'3p?)_O5|ԪѭXzkwPV=9QPVVAoQcrIw3#-٤^VD $%a^`\) 77$ jp^ae^]%@R7% %''%h {^%>f w$fJJ%{%1}% #!5!3!{x{{{yzy97654'&546329BCF9EZV/}$**>7B[MR{7! !ᚚ5; "54632I>I}GV}HUB #3=I R= 2!"52#"THӳv{jOv?Nh ;!7326767##"56?hnmaX#)~6Ræ#&RVVIJVn"|j#7>54&#""54632!26?3#+ῚfW7ǹʮ4C_)VR_o˃rzb=\!#)732654#""54$32#"&546332654&#jB?ĮݿVFzh֫σw"ubDSp5!7326?!733#;67!ZaX!G#/13U_/VIJTNs(RV襁jD '!#654#!632! 54332654&#"F8V^scaإwnN18 Ȱι{q"632#"5!2#4&# 3265#"h/FḘ|käSjOd2g  3!"#!pVX hfr;D*&54632#"&546%$54&#"32654&ˡpc}bюzûѥQĜtdozosjH)$#"&5432! 54633265#"32);@9aQz iXJv?3D]n#߅mmpBT "54632"54632yI>II>I5BCF9E[9}GW}JTV/}$**>7B]K5 nPHى!5!5nyymyy75 5Pnqu'H -#$4&#""5463 "5463253}@lZ+iI>.B{X(Y{V&RVxhr!%!2?3!73267654&+7!#7654#!!!{; kZhQ8XAkufXVI@02V?0d"'3267654+7!#767654#!!!;!`TAk\CVBG&RV$" dM!`Vj%#"# !2#4&#"!27654+7RLN}z_|stDVIK^$|aLVpF&RV7!73267!;!73267654+7!#"!654+7!#";=bXeff cVTbVXZTbVVIJ+RVVKH&RVVJIb&RVVKH&RV^#";!7327654+7^bV VJI+RVV&RVT#"#"'73267654+7TbV6[L3Rw* VJI#\*RV2'3267654+7!#"654#7!";#"&';!cVTbVX$[5D~0C VKH&RVVJIb+-TTGyVC{, RV'3267654+7!#"!2?3!`TTaT>6jjVKH&RVVEFH-!73267# ;!73267654+7!!#";WFn fOѮbVVA@F+RVVHA&RVqVKH&RV%654+7!#"#;!73267654+7!/bU `Tu&RVVKH31+RVVKH&RVj 2!" 4&# $8YA3`L5B"#73267654+7!2!#;3 !#)`V ǘI C^l^VJI&RVν*RV+j1!327# &5!2% 4&#  ikJAgch$]AV!"*`L65B$-;!73267654+7! ;#"&''32654&+Z DfO$J:+vy\*RVVHA&RVZJi9V]`~m(32654&'.54$32#4&#"#"&546a ԵrozSYza[_~|axvWc^wGUs%;!73267#"#!#654+//gPĒ;jVBj &RVVGBqXfP-^)7!#"!267654+7!#"!"&547654#T`X'&`X]5`VVIJ-vIՔ/%RVVIJJSc&R!!%67654+7!#"#.+7!#"LZl'r/'EE2V3?-/BRQɱF-IVVFY?=/VV71##g *654+7!#"##.+7!#"67367{'s1'BK0\ٻj2D-/1VRC Z?N%IVV@_?o75VVh*qʦo{6#";!732654';!73267&+7!#"654+7!8YW}-`=F'RyCiF*u+/`%tNb`<]TmVV)*cF[57VVFM!hVV9^'Z+3V-#"67654+7!#";!73267.+7gT\1KbL''MF#P//gPP-7V7(Od&dB5VV?\%RVVGByA+V  !2?3!7!"#!#6kV#6jVbXRXf V!#"; X`WXVHK%RV3#wXy73267654+7!`X`V#X}VJIP%QVy!3# #(Hk'FV!7!By5!&'73=nap5;T`V4c%IX^#"&5!2#4&#"325ZcSTJ &R pT>RmTX"-##"&5!26?654+7!327#"54&#"327 }_sVyC:Z%/lf$5ű1^bE`VVh5AbQqփuxj!^J/@^;F3 " n0]?X:C銨눨!)rSqZ*32327#"&54?654#"#654+7!ת%5H;H%tUe'/^r n yP$-HA{\b/VVkVOGvjZ`Vd7!327#"&547654#D;X%J_- VQh532R_3M j+Rj579#aVٷ3\&4&#"#"&54633254&'.54632aW\kfkI8{o^qe۰g|cMD`/nЗ}jBEIe4FbpRF%#"547#7233#32h#}q^5|mSLbM_NRuv:puJ(!3273327#"&547##"547654+})di%kƍD:I%M_ on%PJ=}/nRh-?_5VbV:Z\7V=\.+7!34#4632!"'73 >=+J eP6lUHX%<1VroER%guJ%26?3!7!"#!h1Q-VPGM-VRFu>j/RDb#T{0#";#"&5467>54&'7>7>;=[fKz[[L@E>y{KajLRomjfaJ*?BXkd+fHJVjhco6#3{{03267>75.5467>54&+732+T=[fKz[[L@E>y{KfeLQnnibf^K^+?BXjd+ JJVmgo8'#3232673#"'&#"y^k=96{'av:<:'ff|qlu#X 2#"546#3I>Ib&_X}GW}JT99!%.54?3#4'67#6!f tcSXq%fCܬ kK>Q7%O?}b{3632327#"'&#"'7$4'#73&5432##"!TI54#""&54632!2?3) >ong>[ >F|}M F9J=[qwkX7,MelWa~T+P=#&3254&+732654#""54632#"&54ZKbXDDa^$׶JKeETT|``VIefU4 VHo!673#ufR|J(7#"5477332673327#"'##"!q=W&j<,D#f dM[:}mPu)A"E^b#!53265# )#";!mcE> bFFbqVLGlVKHHKVLf "54632)I>IL}GV}ITH'#"'73254'73JZOJFCN`F `@wh}f L#"&5>73;!732674J0" Qf +^^2+}-)1/%7\Z0"EE(&N D "&5432"32654꺂?bgc| wv^펑1 #3#3{f+f{g+f{B{Dt9;!732?!733673#3#"&5>73;!73267G)=9U p+4J0" Qf +^^2+}T%4EENqF+X7q/;)1/%7\Z0"EE(&NDs<!#3#"&5>73;!732677>54#""&54632!2?34J0" Qf +^^2+} >ong>[ >F|}M F9)1/%7\Z0"EE(&N=[qwkX7,MelWa~T+&E;!732?!733673#33254&+732654#""54632#"&54G)=9U p+͏ZKbXDDa^$׶T%4EENqF+X7q/;KeETT|``VIefU4 VHo{#V 2#"&54673322# J>54&+7! #!% 4&+!!aYfZAS>.{X&[Ǿu[VJId *(V]hsd173#"'&#"#63232654+7!#"#;!73267654+7!C\HQXY%X#\HRWW%YbU `TuA@l@A%&RVVKH31+RVVKH&RVjs&3DRjs&3w?Rjs $673#&'#2!" 4&# TnH_WpX%$8YAFvuAw9^3`L5Bj1)3#"'&#"#632322!" 4&# \HQXY%X#\HRWW%Y$8YAA@l@A3`L5BjH&3k R3 ' 7  ;VTVTTVTVXTRVVXVj #73!"'#7&!2 &#  3 4jw8|`yh8TZVA˜J`L-VXN5B^s&9DR^s&9wdR^s 6673#&'#7!#"!267654+7!#"!"&547654#TnH_WpX+T`X'&`X]5FvuAw9VVIJ-vIՔ/%RVVIJJSc&R^H&9kRs&=wR")#73267654+7!#"32!#;3 !#)`Vi/gRyȗ /m^VJI&RVVMFνZ- RV+873267#737! #"#"&546332654'&5!654#"#"3+fr*٦^uYQWB[n@6ͺ:%^a=mF^/qâoaRmTj1T #"54632# !2##"!2sC8sE hn[lTpAOqFI1b7{iIVX $"54632#"&5!2#4&#"32sC8sEZcSTJpAOqFI &R pT>RmTjDs &#&'73673# !2##"!2=u2ZJ_OVhn[lXKpnM1b7{iIVX5! '#&'73673#"&5!2#4&#"32.u2ZJ_OVZcSTJKpnM &R pT>RmTs '#&'73673327654+7! )% !#u2ZJ_OV>.B{X(Y{XKpnM&RVxhrX)43###"&5!26?654+7!327#"54&#"327y\E- }_sVyC:Z%/lf$-hű1^bE`VVh5AbQqփuxj!vuAw9^J/@^;F3 " n0]?X:C銨눨!)rSqjD 033273#"#"# !2#4&#"!27654+7_:^!xRLN}z_|stDDyVIK^$|aLVpF&RV 6@L33273#"632#4#"#"'! 467&5467&54322654#"'"!2654_:^!xa|gy9(=-/i>AbQqփuxj!򌌄^J/@^;F3 " n0]?X:C銨눨!)rSqjT /"54632#"# !2#4&#"!27654+7sC8sE^RLN}z_|stDTpAOqFIPVIK^$|aLVpF&RV 5?K"54632632#4#"#"'! 467&5467&54322654#"'"!2654sC8sEca|gy9(=-/i>AbQqփuxj!pAOqFI^J/@^;F3 " n0]?X:C銨눨!)rSqj;.7673##"# !2#4&#"!27654+7**%j{FRLN}z_|stDVadhiVIK^$|aLVpF&RV!4>J#7673632#4#"#"'! 467&5467&54322654#"'"!2654**%\Ea|gy9(=-/i>AbQqփuxj!adh^J/@^;F3 " n0]?X:C銨눨!)rSqs D673#&'#73267!;!73267654+7!#"!654+7!#";TnH_WpX`bXeff cVTbVXZTbVFvuAw9VIJ+RVVKH&RVVJIb&RVVKH&RVZ 7673#&'#32327#"&54?654#"#654+7!TnH_WpX%%5H;H%tUe'/^r n yP$-}vuAw9A{\b/VVkVOGvjZ`VZJ 654#7!"3"&'#654+7![wҹO2Ty7'1>VVkVV}Gvj'ZaVs&0wLR&Pw;"7673#3267654+7!#"!2?3!|**%j{Fq`TTaT>6jjVadhKH&RVVEFH;d7673#7!327#"&547654#**%j{FCD;X%J_- VadhVQh56jj-KH&RVVEFH3#%7!327#"&547654#y\E=D;X%J_- -VQh56jj~pAOqFIKH&RVVEFHX "546327!327#"&547654#sC8sED;X%J_- :pAOqFIVQh56jjVKH]qsp&RVVIBZvH?654+7!7327#"&5471D;X%J_-5`sd^VpwnNh554&+7!#"#"&'73267;!73267>54&+7!+?TaW4%N4=|'?U_W?Uq* *(VVJI# \ɶ1 $ *(VVIJ+ *(VZ-\%73267654#"#654+7!332#"B3+gu(+^r"n {7%6λ9%^v1y̙79#aVH_j!7!2!" 4&# R$8YA+y3`L5BX?R!7!2!"&525#"RQOȧyGnjD "33273#"2!" 4&# _:^!x$8YAD^3`L5BX?  33273#"2!"&525#"_:^!xԵQOȧ򌌄{Gnjs(7673!76732!" 4&# pkjqq$8YA+y O^3`L5BX!&7673!76732!"&525#"pkjqqQOȧy O{Gnj)%!2?3!#"!2!#654'!!! &# 321;!jZEPLhfsRBj tqjfX 3`LF1d)Xh *3#"'#"&5!2632#3225#"32654#"+iQ`z۩Eȧ wd%T|o\q.()'e󲊉s&6wRZ!&Vw!;-67673#;!73267654+7! ;#"&''32654&+**%j{FZ DfO$J:+vyVadhJ\*RVVHA&RVZJi9V]`~;^ 7673#4#"#654+7!3>32**%j{F5R_3M j+RjVadh79#aVٷs 1:#&'73673;!73267654+7! ;#"&''32654&+u2ZJ_OVHZ DfO$J:+vyXKpnM\*RVVHA&RVZJi9V]`~Z! $#&'736734#"#654+7!3>32u2ZJ_OVR_3M j+RjKpnM79#aVٷ}s&7wR3!&Ww7ms 5673#&'#32654&'.54$32#4&#"#"&546TnH_WpXϦa ԵrozSYFvuAw9za[_~|axvWc^wGU3! 3673#&'#4&#"#"&54633254&'.546326TnH_WpXaW\kfkI8{o^qe۰vuAw9Bg|cMD`/nЗ}jBEIe4FbpRm&7{\3\&W{s 5#&'7367332654&'.54$32#4&#"#"&546|u2ZJ_OV)a ԵrozSYXKpnM9za[_~|axvWc^wGU3! 3#&'736734&#"#"&54633254&'.54632Ùu2ZJ_OVaW\kfkI8{o^qe۰KpnMg|cMD`/nЗ}jBEIe4FbpRs&8{ F&X{ss (#&'73673;!73267#"#!#654+u2ZJ_OV//gPĒ;jVBj XKpnMn&RVVGBqXfP-3##"547#7233#32y\E:#}q^5|mS-LbM_NRuv:ps#!!;!73267!7!#"#!#654'#X_//`R^X}Ē;jVBj dA&RVVCFdLXfP-LF%#"54?#73#7233#3#32h#+=q^5=+mSLbSY`!Ru`t=+J eP6lUHX%vuAw9<1VroER%guH&=kR s&>wR!&^w T "54632!2?3!7!"#! sC8sE#6kV#6jVTpAOqFIXRXf "5463226?3!7!"#!ysC8sEG1Q-VPGM-VRFpAOqFIs>j/RDb#T s #&'73673!2?3!7!"#!\u2ZJ_OV#6kV#6jVXKpnMXRXf! #&'7367326?3!7!"#!u2ZJ_OVo1Q-VPGM-VRFKpnMT>j/RDb#T)73267!2#4#"#"3+fr*N7hCT4̼:%^oSEm#j)%654'&5432!"!  4&# wy7@8hQA2Z!!%k@3q^}3`L5BXZ$654'&54632!"&5!225#"E48?QAȧ1[##$37@3qFXGnj /=4323>32;!73267>54&#" #>54&#"3pZּ huz ?U`YA2D # *(VVIKL(DIq˾IǽXu^,8&54$323>32#.5467654&#"#654&#"3Ŝ|% Es|  L9sQ߲T\XZʶZtyD&I6/(?NN4*TRdku+42!#;!73267>54&#"#"&546332654&+ɗJ?TD^V>=KY %():mُ^ϼ $ *(VVHK ( *(_O#8(yŗF).<3>32#"&';!>32#4&#"&#"3265  Sm}54&+7!#"32;#"&'#;!7326732654&+?UT`VȫMA$o2?U/cRs $ *(VVHK 'ZHVb $ *(VVGB323267#"&54,5r^`yKM][krWHn;87{VXt[W*QBd^(3267#"&54>54&#""&5463iZd.ɴaqR?TcAL^yw|l_JRcZ1^jpSZP=Tvt18]u3#/#"&546323267#"&5467654&#"3TBg_z :3&N%#KMck P93FJ49X udqn+Z3=3] <4K6)vz(d RH3AWD3@jF.#"&5467326?#"&5467#726733#3267hv3H2DK"I(po }d8^5| :37t0`96+S]Tuz(d NRu3] <4s(#4654&+;!73267#"#"&5463sBj DC?U//dRNV %():rAB $ *(VVFCqNL#8(yF+.#"3#3267#"&5467#72663C2BJ| :3+Z"#>Mpo }gOvm=1+Nbu3] <4L,6uz(d NRj}s%#"#!#4654&+3267#"&5467Id jVBj DC )-&5^(|u PM[XfrABJ3^ :6 Z u{(d )47!#"!267654+7!>54'&5432!"&547654#T`X'&@:_py7?ػ]5`VVIJ-vIՔ/%RVT8!!%k@3HJSc&Ru83273>54'&5432327#"&547##"547654+7)di%k+[ty8?׽RD:I%M_ on%PJ=}/ T9!!&j@3Rh-73#:A 22Zh#P<?} #7>73:A 22Z#P<0/yq#"&546?33267y$R6JS  (*,^RJ8FH-"" ^#"&54633254&#""&54>3ݧ만SOVHraa^GQP^ƯgSADpkj|1'5tQX^ $"54632#"&5!2#4&#"32TsC8sEZcSTJpAOqFI &R pT>RmT^ )"54632#"&54633254&#""&54>3sC8sEݧ만SOVHraa^GQPpAOqFIƯgSADpkj|1'5tQT=^ >73#B/`KDQA5K ,673#"5432!"5432_1fD\b\N\b\_c\s\s\s\sB&%YXLfz#')YX'i',YX''-YX &3YX!'=YX&{YX0&ZB%&)7327654+7!#654&#!;R ?k RV CV/RVXO:*R+b) >,j -2!" 4&# ;2?3#'&'#"#$8YAlS@3,VPV4VMVP3`L5BH'> ^''U ,2'q^-/ ;!73254'&5;!73267.E/T=i&t/'{'4*^'{'U -1'L4&}=j3(!73267!;!73267654+7!#";aU cVaU VJIg*RVVKH&RVVHK*RV4%2?3!77!#7654#!Fjh ? AkZ=DB;=)#s8=J*18654+7!#"32!#;!732?#"&54!3# !33 !#)PfU @^  C99c7P+)4%'RVVIJ)ϼF- RVV>ϼ `p+<V=#"3267!"+;!73267# 47654+7!!3654+7D`W11fs`X53F;aX:Dg7f  VHKVIJ'RVVIJ7@Z&RVm?w*RV+!$54&# !3;7.5! 326?3\ӵ{NkK[#n(+\c j\z~戳TfCJ5%56ICH&-kRH&=kRT^&YP=^&Y+X1^&Yw^&YAuh&ZT^(%##"&5323673327#"74.#"32ɊB+ KMtF< ^)?%ut) RLӨ̮C׌7xmu)BlX9{\*!2#"'#"5432>54&#"32654`Tky5L5G}A3g{l[q$v{` `\:T#xex@o1+^%654'632#"547 #"'632Lnq"]CLH&2h~Y[{}N5>^_R&&54632#4#"#"&5%32654\Ⱊ_N[rRonMGTsX{гY6򺉔=\,7&54632#4#"327632#"'327# 4bԟt|Q9&X$NLXbʣn; ?_Q݅gRO 7b]$]`d5!&'7632!'654&'$54GɑhTZujYzDFI\32V29Y9OTyThP\P}Lf>V?Aus'ZaV{t_K<).#"&54632;#"&5##H\[G\V7kH /j'6v'X;BQ3VxJx1D^%654'632# #"'632Ptqym6P@$&slmVa{O@VTf!527$54%&'7632!632#"''654&'$54J)jF}ȗLlQK//sdep j H_Ib[2|375j 3Od-]Kv+c6~<7E6X?^S1J$#327#"547!#"'7267#"#>3! jL8du3W.V"|3Z^?\kڽt#T^%#$32#"'32#"! T9ܾdځ0L./7xD xdQ >Xf^'654&'$!2#4&#"arZcSTJeafc5Rm`cp)$cLxX1J !!"&5!#"3241#{N!ܓ}JEW'^1J#"#)!327#"54;*VG #lIQ#Xp)L^uh`324'632!"&547654+7!wѵpITP}M4zD;gQ)aVX ^#>32#.547364&#"/c{e*vm{B:EM#ڳz!+x.d%f{sP#&#"'6323327#"&'FT=3nkKH+N8#6:ngHF3gBP\J#|CBPfu?#7!364'632#.547654#uw 5{q`d{dLV`4,aa>{ $>Aki aX^)%##"&547327&546323254'7#"p؍GUDW P>In cK;dξ˯C}IU~do͸Cp&&k0uh&k1X?^&SYouh^&YeX^&Y `(4&'3>32#"&532#54&#"332654&#\.3P]sͶ4x.hgdm?&sUbqQG=C4X|aͦ DCwbwMw넆dVR.:TJ3?JQ>54.#"#".54>54&+73232.54>3236H*-F/&X$;Vqd_R%$,A4G, ' ,D08с93^Uk_+6b_.8N07dL.\|ǣt?/Ng8!RUTG5 #V!.$r~0&?-@fBKzU.Dv9WP%;!732>?>54.'.+732>7>32.#"'6 //">4' '"" $/;%iF_E2$"KMJ!8`XT-;L",&*4=L2:>?7) $  VV6.= ;}viT'J:$T>gLDx3C{2Tj<8?!5&*;8cO"]kusm. 'YH&kRX3#.565_{_c{eV\Hs+[bQ \9j".'##".54>7#"#>3!2>73+32>7.54>3232>54.'^5S;$ DTd9HrO+,Ke9-C.VAWi;-C/VBWj;P  5Ro'N='+;#1O>0%1 ("% '?-AdH0   8M--M8 *RyPQ@0?$]S&0?$]R&>HQ*W|[2;R8O3"&?fr'/L?6Bm^07#654&'>3233#"&547326?#"&5[U)oGT!A9\kiZcWr1"wiDM-0 @Ai]YeeJ(~sܩ8(`L5-:$JJV(;!7326?&54$32324&#?UaYEDx- $ *(VVJI0(õFLX?^'$32#.546?.53254&#"XdgbfCXU"I6/(?Noצm';!7326?.54$32#4&#"3="?UaYhԳn[ff򍴹{ $ *(VVJI)n{iIVXb&&#"#"&5>54.54$32672#z%aqe%+pdƈJ\S54&+7!#4654&#!!LJH\54&+7!#4&+!#54&#y%?ThF`-Pu/`4IyT $ *(V`)K6Z&>54መ!3267#"&5467!|{BMABYlk/0 dTti s_GDGIrci܃42)AH}nbtN)"54&'>32%#"&54ZmGU%@7]iNlIk_Bj]>gMrgcM&}gR5~_INHw%2'%4&''%.#""&5463 #qO2' %<'wsBS )}X)X5Y(Xl`IE`J1N^654&''%.'7'67'@\49e7:9K^Nas d$Dx:^n#"327>54&+7!#"327>54&+7!#"#"$#""&54632326?>7##"&5<7##"&5467>54&+7;^ZA7##"&5467##"&5467>54&+7!32733273#"$#""&5463?VYf 9  ]hirXkir P?P}//i,wƇ1-r!o9۹nxKYALŏu'O&wl  wl Yhg_ 10VW{&;= :gj#;=8 o^18Lvo967>54&+7!#";!73267#"&54324&#"3Ej=T@aW?T`XTP[(qMMF=q0 $ *(VVJI $ *(VVHK$4͸Q^LBL^oӠxZy)5733267#"&547##"&54632>54&#"3*l %" @#%Mn?TfISskrRL*,lIRFC9p.0254&+7!#">32#"$#""&546323XJk?UaW?UTaYTWKµR:J IS i~þ&( $ *(VVIJ $ *(VVJIy-+Ped72XuoJ/&#""&5463232654&#"#>54&+7!>32#B, AM{e_BHexhDzf=P{m{XD@$*<^V-Q76 10Va?n1\,#"&546323267#"&54,54&#"-IH7H[krWHr^v:oEQK2ֶXt[W*Q^niM!^.3267#"&54>$654&#"#"&5463Ӿiwu5 rEdaj(<*6Aݹ^؞gp_ nȧ̴uTheS$ <3N9"%%!7.#".54632>32.#"+7/))!mOZt*WqO;LG2')/J3'{{mt_8/ ;"BbejxW8?>R*;LN5q^#&>324&#"!7.#"'.5463!2jQAOC6#.jYF5@/7+yd'^_r{V=3)554[l/ZZX.; #3XB{y'6$3 ! 54$32673!"$3254&#+^%vL!Z}2/ż-1pH!縯X-#"&54$32672#"&#"3254&#".54631޹ۧ\S54&+;!73267#""&546;7>54&+7aWm`NR\?T`X5jxEN?UVJIABNV"EK $ *(VVHKng-5bc $ *(V;!##""&546;!#"!!c[BH7guaW15Mt--TiVJIVB^!7#654&'>323#"&5[U)oGT!A9\kiZcKj_Ci]YeeJ(~sܩ8(`HNG17^ ,732#.#"4$32!"&'54&#"3S; gg^&pmon0,DKJ!JC*1k[\QX^GHNjX^%1^$#"&54633267!7!654&#""&54>3ܠ留SOUIs('ra^VHOL^ƭgSADpkn14e1'7sP+7;!654+7!332!"'3254&#" {uyi, }x2AbG>kN:$YVU`VO%Iq~әj1'3!73267#;!73267>54&+7! !#";q1YE}o?UcR?UZaW?TV>CF $ *(VVGB $ *(VBVJI $ *(VJJ: !#"3267#"&5467####"&547>54&+7LYGb J:&%lV_@H|3FU W\KIfj6 10Vf^&&'!!#7#73$32#64&#"39 ^11;ھko0Y7]6*[6@``wjR b*:"&5463 #"&546332$54&#BT(}eZffdIE_J\JVj1&'z)"&5463 #"&546332$54&#"54632BT(}eZffLI>IdIE_J\JV}GV}ITs&)DRH&)kR063 !"'732654#";!73267#"#!#654+鴐j87;i`1吙k/gP;jV/Bj D=}\ N3%RVVGBqXfP-s&fwRj1# !2##"!!!21hn[̺H;l+1b7{iIVdb^m7^-H&-kRT.(0 #"&54633254+7!#"3 )732673 4&+9˜bLVD5MwbVZ7aX=`EPsxkM<>E`DG7VVKH\VIJg]{V7?#"3 )73267!;!73267654+7!#"!654+73 4&+ubVZ7aXef cVTbVXHZpaFVJI\VIJ+RVVKH&RVVJIb&RV]{5%!732?654#";!73267#"#!#654+63 3吙k/gP;jV/Bj qVVV|^3%RVVGBqXfP-=_~&Rs&woRs&DRV# 57327! 54#"+7327.+7!#"67654+7L'9BAq݊/:87s+7])'s///,.l0ǿ%V7hw`?-VVd.C@nx?4IVR0%;!"#654#!73267654+7!#"!654+7!#" V^^jbTT_Y\T`T*RVRlTVIB%RVVHKo&RVVCFB%"#654#!3 )7327654+73 4&+Bj wuqP-V&RV]{&fFR$754&+7!#";#654#! #!3R-7mSJ)s^[^rqp fXVVED#afJR)9[!73267"+732767&'.#"&54323654+7!#"267>324#";#"&'.#;=aW`2DBdeQK5E,\-Jru7EtZ`CaV_xW`GfG`a0w8%nab VHK1ZvKVZDIsY&RVVIJApw sg0"VGzdZ11+RV)3 4&+732654&#""54$32!"&546Tt?澍Xw^yimzρy||FO6#";!7327;!73267654+7!#"7654+7!bV cVTbVG T`JI&RVV61RVVKH&RVVJI7"RV D7327! 54#";!7327;!73267654+7!#"7654+7!LbV cVTbVG T//,.l0ǿ%QJI&RVV61RVVKH&RVVJI7"RV9#73267654+7!#"26>324#";#"&'.#;+bVTbV^}ceJw7v8)oMb VKH&RVVKHAd{ s(V<dO<1+RV '73254+7!#";!7327! #"&546MwaV :ʞ`LVD`DG7VVIJ*RVVgr|mM<>E1,j3s4j1's8V#'#"+7327.+7!#"67654+7#'9BAq݊/:87s+7])'s/V7hw`?-VVd.C@nx?4IVJx<R-'3267654+7!#"!654+7!#"3#65#!bTT_Y\T`T {Ho^VIB%RVVHKo&RVVCF *MdKX3!7327# 4?654+7!#"327654+7!#";Ty'#TbX%{kTbVVX/<%RVVJI>N%RVVJI&RV 6#73267654+7!#"!654+7!#"!654+7!#";)bTT T`T T`T VIB%RVVo&RVVCFo&RVVCF *RVR ;%#654'!73267654+7!#"!654+7!#"!654+7!#"o^sbTT T`T T`T {VcJVIB%RVVo&RVVCFo&RVVCF *MP37327#"#!#"3 !'3 !#;jVhDaU\uഞ߃VgXfVDERf]!:'3267654+7!#"3 )%3 4&+#";!7327654+7<-iTdUV8`FbVV=V&RVVPOhf]|VJI&RVV&RV!'3267654+7!#"3 )%3 4&+<-iTdUVV=V&RVVPOhf]{!!7!654&#""&54$32!"&54633 5sBTQXCmd|YġIEim|FOv!*6!;!73267654+7!#"!!2!"424&#"'f cVTbVX+TM+Ң+RVVKH&RVVJIb2l2]4C#* +73267&54$)#";!7327# !3H @eJ88abVTmGHwAkMV=giVKH&RVVX^Ef%"73>32!"%$25#"Z9={Y9kӐ!h$gz $)lOX^$#"&5!232654&#"32654&#-W ^SA\:mz+?Fʌȶ'̈́g{rKQXjren|J\"%#"&54>7>54#"&54!232T^^J.bnXzSC8gI} '˃jZ^stX\)4#"'632!"&532&#"32odrLHI!X/O X^I^A!##"&5463325#"&54632333632#4#"327#"&547#;i>vZJ|ʯc ikAuXK|ʮb mhU?P SʵC@gU?Qi!Tɵ>P\)32654&+732654&#""54632#"&546gkp[w[U1¨SNvrQgotiM]ZaqR 9{`:MuJYuB 67327! 54!3273327#"&547##"547654+L})di%kƍD:I%M_ on%P/,.l0ǿ%=}/nRh-324#";#"&/.#X}jUozYoZ9rs[7@tHGGx.C$amhT&aVeY{qs]n hJVQp\3V(7326632327#"&547&#" #"&546w,$H^I3J%Sa17of{e=DB&:al!izUb-VGC4Pb-32#4#"632!"/.#"32325#"(ӛo6)a7_O3LJ}h8'b_O T*ѢY U)ѠYHoM+wG8uN<+ *O>!(J\u-J3%#"&547##"547654+7!3273327 #"'73267U:Ma on%P})di%kƍC:I%/~aO"/U jX5DAgQ)aV=}/n`h-<P NJ(327#"&54?#"&54?654+7!327{J2J%SaMo  {PyhJTxWb-(ɭ79#aVFExoR+4"#"&5463326767.5!2327#"&54?&# ;KS1?l=DB1,$+G@.:ӲI3J%Sahc]ZcyP99J&:Oeh93zUb-Rmݽn0A3\WRMj&kHN`V'2&#"#"&5463326>3263 # 47632654#"+5mcxh=BB1*"Bk\^rHbնJ`^kFP99J'9r8 ߨf3Pb;cˏqZJ&63 # 4?!#654+7!!32654#"FcrIbնyl {hdH_iFJ% ߨf/T/79#aVcːpZX!& wu!&YD!B ,7327! 54.+7!34#4632!"'73 'Lx>=+J eP6lUHX%/,.l0ǿ%<1VroER%guu-J(4!3273327#"&547##"547654+#"'73267})di%kƍD:I%M_ on%P3/aO#/X J=}/nRh-79#aV pT?Qlݽn0A#%#3!73273;!72654'##!'&'Xf'h^Z`ӔVLHBloF" *IC-LVVoVV4E7/yŒUDJ##!73273;!7254'##!'&'#^97Ie!C w_-fqP#)[,, VVT{oVVh &b)q<C#3!7327!;!73267654+7!#"!3;!72654'##!'&'%g&hf Z`f cVTbVXkV KIAmoE$ 6IA/LVV+RVVKH&RVVJIboVV4E%7/yqlZJ+1#!7327!#654+7!!3;!7254'##!'&'#^97Iel {hv8C w^-fqP#+ [,, VV79#aV{oVVh(b)e!58 32;#"&'.#;!73267"+732676;7! ! -x # ?H{Mef  ^Libj4;Hb1q5sZ!JlZJVZk``J _VVCFDfsRVG]ZlJJ59>77!;#"&/.#;!73267"+732673!<w|$5D+Y':aA %<?P<@[Z4q=w)0E@| jbUtee\gKYVTmV:+%#VVMF.3]jWV;iwZPS 32;#"&'.#;!73267"+7326767!;!73267654+7!#"!7! !-":P yMeg  _Mh]j9:J\/+9f cVTbVXkrZ JMWV[j``JaVVED?kqTVKYXR%+RVVKH&RVVJIblZJAE67!#654+7!!7!;#"&/.#;!73267"+732673!(l {h`^~%4@+_'FX@#=@P;=\\/q=w)0F>{ /79#aVee}RdZJVMtR/%#%VVHK.SjWV>fhiVI732654&#""5467&'73>32&#"327632&#"# 546%>54&#st?5gPShjx@[%foÍZ\]4Qɯ.ҟimzρq ny?FH t|#p77{u\l"yqJG&#"# 546%$54&+732654&#""5467&'73>32&#"327632S/vwI?p[w[U14]PVdkx@Z&dcrzwIQqTf 'QgotiM]ZU| dqBEH! WR 9d11niVzu?j +2!"654&#"63232#"'&#"32$8 LhMPODzsOQM[ 3`LbVLBAB:ABA7xjGX?^ (2!"&565#"63232#"'&#"326QjJ3=cc85C8?cc66/ |^G;8'++J%++VN?!#.+7!#"67>32&#" 3<-)QQDtlX:v|@,VVp#gʆ1aL/#V&+7!3?>32&#"}3_3{inX86SPmV+_˃bL<]-?s/#&'53#&'53#.+7!#"67>32&#"dpP^epWW 3<-)QQDtlX:v|+v@,VVp#gʆ1aL/#!*#&'53#&'53&+7!3?>32&#"dpP^epWW}3_3{inX86SPنvmV+_˃bL<]-j N 62!"2!".+7!34#4632#"'73267mXY$ڜOG7w7 eP6lUMS~3m?2E-C*VsoER%gX^ 62!"&525#".+7!34#4632#"'73267ASG7w7 dP5rjWMS~^W m7C*VsoDS%gj1&632#"=&56326'#"'Fy}:$kp!qr nu*1qo-$I$VVD/LZXGX$632#"5.54632654'#"'mq=op*2 _e !\d TbdKk,ei!ܧ:LJ7^=EC7s9K#"'&#"#63237654'&5432#"&5!24&#"327332#""54632!"(YRm"\RmThy %'%7%7%LG㴁FGJ{J;{Z}9IĤ{FD #"543!632YVZX_P{^K{`V27632#74&#"+7rKap..+6ʎKf:9_U#.*C5 &54632D;a12#L=9FL(35 5654'&5432u11`;DL)3'LF9NV#"$#"#>323V)a\m"\bX"[ppwzp)  ,7BMX&#"#632&#"#632!&#"#632&#"#632!&#"#632&#"#632!&#"#632&#"#632oF:K G9L/G9L~G:K [sG9L ~G9L/~G9L~F:KX"6X"6X"6X"6g[X"6 X"6X"6X"6)} ")07'673'&'7%7677&'&'5&''67#67q +Pa2TCCk\EzҌhҌ1QFCnY#Ez )Ra2uҌF~+UCDmY +Pa2; )Ra2hFz)QGDmYҌR H7327! 54327;!73267654+7!#"7654+7!#";#!K cVTbVG TbV7[P///+l/Ǿ*C61RVVKH&RVVJI7"RVVJI*4 uRB 97327! 54!3273327##"&547##"547654+L})di%kƍD:I%:9M_ on%P/,.l0ǿ)=}/nRh-<nT5DAgQ)a33!!3 )73267#3 4&+AA^H<-i²1dV=V]{H' 3!!63 # 47#732654#"9:+B~Ql^j~R` ߩ$_p`Uݖj+#73267654+7!2'+;327'765!#)`V qR}uI C^lZRv^VJI&RVν~7#*RV$7_+F^"2!654+7!332'#"'3327'7654#"k1 }}RbouS /B`QERtVej#jVVaV%}g8//B!}U_'I17h?ٟ!;!7327654+7!26?3 C Ws*kP*RVV/RV@yGZ33654+7!26?3!Z HI#dEu79#aVH^C#)7327#73654+7!#654&#!!!;RbZ ?k RVw>f CVd/RVXO:d *RJ7654+7!#4&+3###7- JF`*STjk\: cVep``3)7327654+7!#654&#!632! 543324&#";R ?k RVyTR`v e$` CV/RVXO: "ݐd=*R/J(3654+7!#4&+632!"&546332#"Z JF`*SVLC[MW]I,h79!cVelldSAJ_k R9_.#;!73267"+732767&'.#"&54323654+7!#"267>324#";#654'&'Pab aW`5RBdeQK1C2\-Jqu8EtZ`CaU_xW`GfG`b/w#]S)n]h$%[01+RVVHK0[3VZDQsY&RVVHKApw sg0#f>rEVHu-^P!##"&5463325#"&54632333632#4#"327#"'7326?#"&547#;i>vZJ|ʯc ikAuXK|ʮb7aO%-T!Ec mhU?P SʵC@gU?Qi! P ˠ$ɵ>PB9!3#"54732543 4&+732654&#""54$32!"&546ut*.d˯Tt?澍XrofwT&uow^yimzρy||FOB\9!3#"547325432654&+732654&#""54632#"&546=ut*.dgkp[w[U1¨SrofwT&uovrQgotiM]ZaqR 9{`:MR>.#;!73267654+7!#"26>324#";#654'.'Mb cVTbV^}`eRw7v#]S)n\9<%O<1+RVVKH&RVVJIAd{ s/e?nFV(LIX-V4% #"'73267"&/.##654+7!267>324#"3h/bO#/Q!x.C$amhŪ}jUozYoZ9rs[7@tHGVP ǨQp\3T&aVeY{qs]n hJ-?#;!73267654+7!#"336>324#";#"&'&'#qyb cVTbV^wHw@AbdRw7w8'n!@Cw1+RVVKH&RVVJIAL$ { s/VBdkXV03654+7!37367>324#";#"&/&'#7#X}jj3m-8\nZ9vof,>GFH1D0*-l/khT&aVL{qsa}VC~y @#73267#73654+7!#"3#26>324#";#"&'.#;+cV TbVH}`eRw7v8)oMb VKHwe(!RVVJIed{ s/V<dO<1+RVX2267>324#";#"&/.###73654+7!!UozYoZ9rs[7@tHGGx.C$amh}5 eY{qs]n hJVQp\3a-`Va:373267#"#7!#"267>324#";#"&'.#;cVJEe<aU_w`eRw7w8)oMb VKHo2MVHKAq{ s/V<dO<1+RV^V,!#"#7!267>324#";#"&/.#+וJE^:?jZryYoZ9rs[7@tHGGx.C$amh6Pp[{qs]n hJVQp\3R<%#654+73267!;!73267654+7!#"!654+7!#"3n^bXeff cVTbVXZTbVVdLVIJ+RVVKH&RVVJIb&RVVKH&RZ-J)327 #"'73267#"&54?!#654+7!!I3J%/~aO#/U KFSa!)l {hfJTxWb-<P Ѯ$mUPf79#aV94&+;!73267!;!73267654+7!#"!654+7!#GEzbXeff cVTbVXZ9bG:&RVVIJ+RVVKH&RVVJIb&RVZJ%#54&+327#"&54?!#654+7!!8Z4EI3J%Sa!)l {hfJRQ0yVb-P Ǩ n^^.y8=R'\ %.+7!34#4632;!f 4=!X dP53?PA,Vym6oDS)6-T5#"67654+7!#"!!;!7326?!7!7.+7gT\1KbL''MF##'//gP'-7V7(Od&dB5VV?\Xd&RVVGBd\A+VP'\()!;!!7!5.+7!34#4632>QT 4=!X dP5`,5/T`A,Vym6oDSR<#";#65+732654';!73267&+7!#"654+7!8YW}%AFAn_=F'RyCiF*u+/`%tNb`<]TZ@dKV)*cF[57VVFM!hVV9^'Z+3V-J)#73267.+7!!#"; #"'73267#)8SJ'39!BQB׍'7502aO%-Q#æV3Z>?_5VbV?Ua2P Ʃ=R/65#!7327#"#!#654+!654&+7!#";6jVBj gIJJ`T3nRdKVoXfpy0"VVCF %RD-J<3273327 #"'73267#"&547##"&547#"#!#54&#r'v(hǎC:I%/~aO#/UV:Ma }x#PFO'dRO9Z3FE})nah-<P ҧjX5DwlU:?gDHDg?RX8%;#654+7327# 4?654+7!#"327654+7!#"N%RVVJIN-J4327 #"'7326?#"&54?#"&54?654+7!327{J2J%1aO#/R"FLSaMo  {PyhJTxWb-<P Ǩ(mUKk\'n3}:"aVSf^X9!7327# 4?654+7!#"367654+7!#";TEwC'#TbX%LvIkTbVV6D/<%RVVJI>e0%RVVJI&RVNJ0327#"&54?#7#"&54?654+7!;7367{J2J%Sa1/p+%o  {Py2p/NyhJTxWb-324#";#"&'.#;{LaW`2DBdeQK5E,\-Jru7EtZ`CaV_xW`GfG`a0w8%nab //,.l0ǿ%VHK1ZvKVZDIsY&RVVIJApw sg0"VGzdZ11+RVB O7327! 54##"&5463325#"&54632333632#4#"327#"&547#mL'i>vZJ|ʯc ikAuXK|ʮb m/,.l0ǿ%ChU?P SʵC@gU?Qi!Tɵ>P?;!73267654+7!#"26>324#"! 543324&#"\ cVTbV^}`ezE`}y ڳSG+RVVKH&RVVJIAd{ s9"ݐiXV2#654+7!267>324#"!"&5463324&#"fŪ}jUozYoZ:m&"[MW]ƟsT&aVeY{qs[- ldSAJ_kR +%;#!7327! #"&54633254+7!#"F5]P<Ơ_LVD5MxaU!.0 VgvnM<>E`BI7VVHKRV+%#"&547&#" #"&5463326632327#q8;Sa17of{e=DB1,$H^I3J%mUPfP99J&:al!izUb-<7%!"&5433 !;!73267654+7!#"!654+7!#"HڸՑ,otqff cVTbVXZTbVh]7+RVVKH&RVVJIb&RVVKHDJ!#654+7!!3#"&54633267^'l {hf6硪[MW],79#aVdSAJ_R;%3267!;!73267654+7!#"!654+7!#";#!NbXeff cVTbVXZTbV7ZPVIJ+RVVKH&RVVJIb&RVVKH+2 ZRJ!%#"&54?!#654+7!!3327#L8;Sa!)l {hfɔI3J%mUPf79#aVTxWb-<RX7!"#327# 4?654+7!#"327654+7!#";^3_o)Ty'#TbX%{kTbVX/<%RVVJI;N%RVVJI&RVNR{J+#"&54?654+7!3273;#"#32675Mo  {PyhɽɊ+)dq/a= \'n3}:"aVSf^\V C:R1%#!73267# ;!73267654+7!!#";+WFn fOѮbV GJPTVA@F+RVVHA&RVqVKH1/7)RXJ7## #"&546332667&+7!!#"327##"&547 _|je=DB1,$9{F$-tsyDl^FbJ3J%:2SaP1+DP99J&:e48V>VGC4Pb-<mUPf^-u +27327! 54;!732673;!73254/&'!{L{'r0'7J=ɠ 2=0!A/q//,.l0ǿ%D.JVV9g @-VVh*joXB (37327! 54##"&5!273327#"54&#"327LH }_eZBC:Z%/lf$/,.l0ǿ%xűJ4pVh5=+J eP6lUHX%y5<1VroER%guV#H&kR&]kV#s87673!7673#"+7327.+7!#"67654+7upkjqq'9BAq݊/:87s+7])'s/+y OuV7hw`?-VVd.C@nx?4IVs!/7673!7673.+7!34#4632!"'73 Fpkjqq>=+J eP6lUHX%y O<1VroER%guXH&kRN&k%R %;#65+7327654+7!#654&#! En^ ?k RV* TcKV/RVXO:-J654+7!#4&+; #"'73267! JF`*S=/~aO"/R!79!cVeXP ǨH&kR^&km 1%#"54732?!7327#73654+7!#654&#!!!;d'xk-,8r &_bZ ?k RVw>f CVǜb:$%VVd/RVXO:d *RmJ)7654+7!#4&+3#;#"54732?!#7- JF`*ST9=%{m-,8r k\: cVep`X͙b:$%d`m D%#"54732?#";!732654';!73267&+7!#"654+7!'xk-,8r &)8YW}-`=F'RyCiF*u+/`%tNbVǜb:$% <]TmVV)*cF[57VVFM!hVV9^'Z+3VmJ -%#"54732?73267.+7!!#";!'xk-,8r &L8SJ'39!?_5VbV:Z\7V=<#"!!;!732654';!73267!7!&+7!#"654+7!8YW-`=F'RyCiF_s*u+/`%tNb`<]jdmVV)*cF[57VVFMdhVV9^'Z+3VJ&#73267'!7!'.+7!!#"!!;!)8SJ"Z(29!BQBI(65V3Z>`_5VbV?U`b1V=vB '."54632;!732673;!73254/&'!3sC8sE{'r0'7J=ɠ 2=0!A/qvpAOqFIsD.JVV9g @-VVh*joXv^ $/"54632##"&5!273327#"54&#"327sC8sE }_eZBC:Z%/lf$vpAOqFIűJ4pVh554#"&54632;!732673;!73254/&'!#eyLV^L%zgct{'r0'7J=ɠ 2=0!A/qw90@R#54#"&54632##"&5!273327#"54&#"327 #eyLV^L%zgct }_eZBC:Z%/lf$/w90@R#54#"&54632!2?3!73267654&+7!#7654#!!!k#eyLV^L%zgct); kZhQ8XAkuw90@R#54#"&54632#"&5!2+"'3232654#"#eyLV^L%zgctZ#wc/w90@R#54#"&54632#";!7327654+7#eyLV^L%zgct bV w90@R#54#"&546327!327#"&547654##eyLV^L%zgctoD;X%L^.O}/w90@R#54#"&546322!" 4&# #eyLV^L%zgct$8YAw90@R#54#"&546322!"&525#"#eyLV^L%zgctQOȧ/w90@R#54#"&54632654'&5432!"!  4&# #eyLV^L%zgcty7@8hQAw90@R#54#"&54632654'&54632!"&5!225#"#eyLV^L%zgctE48?QAȧ/w90@R#54#"&546327!#"!267654+7!#"!"&547654##eyLV^L%zgctT`X'&`X]5w90@R#54#"&54632!3273327#"&547##"547654+!#eyLV^L%zgct})di%kƍD:I%M_ on%P/w90@R#54#"&546327!#"!267654+7!>54'&5432!"&547654##eyLV^L%zgctT`X'&@:_py7?ػ]5w90@R#54#"&546323273>54'&5432327#"&547##"547654+7!#eyLV^L%zgct)di%k+[ty8?׽RD:I%M_ on%P/w90@R#54'&5432!"&547654#!\HQXY%X#\HRWW%YT`X'&@:_py7?ػ]5A@l@AVVIJ-vIՔ/%RVT8!!%k@3HJSc&RuJ3#"'&#"#632323273>54'&5432327#"&547##"547654+7\HQXY%X#\HRWW%Y )di%k+[ty8?׽RD:I%M_ on%PA@l@A=}/ T9!!&j@3Rh-"546327!#"!267654+7!>54'&5432!"&547654#VsC8sEAT`X'&@:_py7?ػ]5vpAOqFIVVIJ-vIՔ/%RVT8!!%k@3HJSc&Ruv B"54632 3273>54'&5432327#"&547##"547654+7sC8sE,)di%k+[ty8?׽RD:I%M_ on%PvpAOqFI=}/ T9!!&j@3Rh-=+J eP6lUHX%vpAOqFI<1VroER%guA#7>54#"&54632#"67654+7!#";!73267.+7#eyLV^L%zgctqgT\1KbL''MF#P//gPP-7w90@R#54#"&54632.+7!34#4632!"'73 #eyLV^L%zgct>=+J eP6lUHX%/w90@R#=+J eP6lUHX%A@l@A)<1VroER%gu+#+V!#'7'77'+V5555X7777 '7##!'77RJ75}o}7L) ##'7!)T77L}57}R{7! !ᚚRB+!7!'+y'b!7! y'b!7! y'b!7! y'` `;d!7!!7!^K\yyJ#"&546JCBF9C]V.~$**>7B]K7654'&54632BCF9E[V/}$**>7B]K97654'&546329BCF9EZV/}$**>7B[Ms= $54632u\h__VTy`_**?c#"&546%#"&546JCBF9C]NCBE:D[V.~$**>7B]K%V/}$**>7B]K7654'&546327654'&54632BCF9E[BCD:E[V/}$**>7B]K$V/}$**>7B]K7654'&546327654'&546329BCF9EZBCF9E[V/}$**>7B[M$V/}$**>7B]Ks&EE#773%%wuVq{%K4Ģe%7:55:-%#7'>54'773%%e'ć&J$d0{'Lċd'"h2:66:Yv9669Zs&u ! ))Z "54632!"54632!"54632I>IXI>I}GV}HU}GVD9IT}GV}IT#!+ToPN)5!#NTP###!V ###!!!VtP !!5!###tVPN  ",6@ #"&543254#"#3 # 43254#" # 43254#"5}JooooŘ+Joooo'JnonolcElaEla  & ' H }w3#gفgJdsd3- #3{g+f}5+%#"&547#7367#73!2#4# !!!!32 ˍN ^z CH`R=aTjUa?P`V#;527#3#53274+533#";%;!5325#"#7!#'&'#JH*(LONNNM!#L[G ;V; G^779=)7799979>)?7v?779H11F^ #&'5673!9>HH>9DH$HDV^ &'3#67!59>HH>9#DH$HDVS# !! !!A6>R>u^`G  G`RyH 5!7'!5!7 'y__u=R=57`RR`GG=("54632#"&543236=4#"4&#"326XO}ajqZbOlYnax <k1%+ )73'5^1q1mI#Iuo+##";!53265!;!532654+5+bFcEfEccEVKH'VVMGRHLVVMG׋VqR2?3!5 5!#'&#!k )9P k >Cc\PXJ!5!oy!#3LfzR##5!3{ݨo1d:Xq'#"&54632632#"#"3232654&#"~ŋqWol_rZqtYԳֱ suvt`3!!^j8^4>32#4&#"rуwfŠJ;32632#4&#"#"5485ɓ851i;+\;ri;ĐsNh&#3232673#"'&#"#3232673#"'&#"yek=96{'dJ:ky^k=96{'av:<:ff|qD^ff|qlu73!!!!#7!5!!5T9w99J@8y:VIayyyydHP 5!5!5!d8d 5 !5!nPnHىy 75 5!5!Pnnqu'HHy{Z!!{!!!!!7L17}1mh{!!hmh{!!!hKPb!!L! XVRZ 7L LRZZ79eN5 !# 3 jQ5Qc^%BH-)4>32#".732>54.#"wx{yy{xwV`bcb`c``dyyyyxyy{b``bcbbbV^R'/7?GOW_gow#"5432'#"5432#"5432#"5432#"5432#"5432#"5432#"5432#"5432#"5432#"5432#"5432#"5432%#"5432#"5432'#"5432377349947575#3773865567557R75577667377349944976#58856556\677675577667667+557775555885Z557w55763:C558337775555776557737+558# 2#"54>jmsoujlw)3!32>54.#")wvuwwwvu}Bwwwutww)#3!4>32#".'32>54.#")R`babbab`Nwvuwwwvu}B`bb`c``cwwwutwwsbu #"&546324&#"326bcfdiFIKgFEgcIN_}khfJHfFffFHdh) :%\K\\\\\\ \\\d\n\\7\\\ \\\\\\\\\\\\ %\ K \ \ \ \ \ \ \ \ \ d\ n\ \ 7\ \ \  \ \ \ \ \ \ \ \ \ \ \ \  %\dgnqqq  *7q\D H M b%\% \%q%#%'%+%3%5%8%9%:\%;q%=q%G%H%I%K%S%U%Y%Z%[%]%%%%%%%%%%%q%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%#%%%'%)%*%+%,%-%.%/%0%1%2%3%4%5q%6%7q%8%9q%A%B%P%Q%%%%%%%%%%%%%%%%%%%%% % % % % %%%%%%%%%%%%%%%%%%% %!%"%#q%$%%q%&%'q%(%)q%*%Cq%Gq%\q&&#&%&8&:&;&<&=&>&[&]&&&&&&&&&&&&&#&%&'&5&6&7&8&9&:&<&>&&&&&&&&&&&&&#&$&%&&&'&(&)&*&C&G&\&b(#(%(8(:(;(<(=((((((((((((#(%('(5(7(9(((((((((((((#(%('()(b):);)=))5)7)9)#)%)'))*%q*E*G*H*I*K*S*U*q*q*q*q*q*q*********************q**q**q*********************B*q**q**q**q**q**q**q**q**q**q**q**q**************** * ****+#+8+:+;+=+++#+%+'+5+7+9+#+%+'+)/'/+/3/5/G/H/I/K/S/U/Y/[/]/////////////////////////////////////////////// ////////*/,/./0/2/4/6/8/A/B/Q///////////////////// / / / / ///////////// /"/$/&/(/*00 0\0#q08q0:0;0=00#q0%q0'q0507090#0%0'0)0C\0G\0\\3#3%383:3;3<3=333333333333#3%3'3537393333333333333#3%3'3)3b4 4 4%4444444\4444444444444444D 4H 4M 4b5#5%585:5;5<5=555555555555#5%5'5557595555555555555#5%5'5)5b66#6'6+636568696:6;6=6[6]666666666666666666666 6666#6%6'6)6+6-6/616365666768696A6P6666666 6 6 6666666666!6#6$6%6&6'6(6)6*6C6G6\7#7%787:7;7<7=7[7]7777777777777#7%7'75767778797777777777777#7$7%7&7'7(7)7*7b8H8H8%8'8+83858E8G8H8I8K8S8U8888888\8888888888888888888888888888888888888888888888888888888 88888888A8B888888888888888888888888888888888888888888888 8 8 8 8 88888888DH8HH8MH8b9%999999999999999999999:::%\:':+:3:5:E:G:H:I:K:S:U:W:\:\:\:\:\:\:::::::::::::::::::::::::::\::\::\::::::::::::::::::::::::: :::::::::: :":A:B:\::\::\::\::\::\::\::\::\::\::\::\:::::::::::::::::::::: : : : : ::::::::D:H:M:b;H;H;%;';+;3;5;E;G;H;I;K;S;U;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;A;B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; ; ; ; ;;;;;;;;DH;HH;MH;b<'<+<3<5<7<[<]<<<<<<<<<<<<<<<< <<<<<<<!<6<8<A<<<<<<< < < <<<<$<&<(<*=\=\=%q='=+=3=5=7=E=Gq=Hq=Iq=Kq=Sq=Uq=W=q=q=q=q=q=q=H==============q=q=q=q=q=q=q=q=q=q=q=q=q==q==q===q==q==q==q=q=q=q=q=q=q=q==q==q==q==q= =q==q==q==q====== =!="=A=Bq=q==q==q==q==q==q==q==q==q==q==q==q==q=q=q=q=q=q=q=q==q==q==q==q==q==q= = q= = q= =q==q==q==q=D\=H\=M\=bEE E]EE8E$E&E(E*F]FF8F$F&F(F*JJ J JJAJaJCJGJ\LL L]LL8L$L&L(L*OGOHOIOKOSOUOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOBOOOOOOOOOOOOOOO O OOOORR R]RR8R$R&R(R*S]SS8S$S&S(S*T]TT8T$T&T(T*V=VEVVVVVVVVVVVVVVVVVVVVVVVC=VG=V\=ZZqZDqZHqZMq[q[q[Dq[Hq[Mq]H]H]DH]HH]MH\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ`krvwqxzq}q~"$%/123AqCDE\FG\HIJKLMNOPQRqyz{|}qq      !"#q$%q&'q()q*CqGq\q\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ`krvwqxzq}q~"$%/123AqCDE\FG\HIJKLMNOPQRqyz{|}qq      !"#q$%q&'q()q*CqGq\q\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q:;=579#%'):;=579#%'):;=579#%'):;=579#%'):;=579#%')#%8:;<=#%'579#%')b#%8:;<=#%'579#%')b#%8:;<=#%'579#%')b#%8:;<=#%'579#%')b#%8:;<=#%'579#%')b#%8:;<=#%'579#%')b#%8:;<=#%'579#%')b%%%%\\%q'+357EGqHqIqKqSqUqWqqqqqqHqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq qqqq !"ABqqqqqqqqqqqqqqqqqqqqqqqqqqq  q  q qqqqD\H\M\b#%8:;<=#%'579#%')b]8$&(* ]8$&(* ]8$&(* ]8$&(* ]8$&(* ]8$&(* ]8$&(*]8$&(* ]8$&(*]8$&(*]8$&(*]8$&(*]8$&(*]8$&(*]8$&(*HHDHHHMH\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q#%8:;<=#%'579#%')bR#=FPCRGR\R#%8:;<=#%'579#%')b:;=579#%'):;=579#%'):;=579#%'):;=579#%'):;=579#%')#8:;=#%'579#%')#8:;=#%'579#%')#8:;=#%'579#%')#8:;=#%'579#%') ]8$&(* ]8$&(*'+35GHIKSUY[] *,.02468ABQ      "$&(*GHIKSUB  GHIKSUB   \#q8q:;=#q%q'q579#%')C\G\\\ \#q8q:;=#q%q'q579#%')C\G\\\R#=FPCRGR\R ]8$&(* ]8$&(*   ]  8 $ & ( *   ]  8 $ & ( *   ]  8 $ & ( * # % 8 : ; < =            # % ' 5 7 9             # % ' ) b]8$&(*#%8:;<=#%'579#%')b]8$&(*#%8:;<=#%'579#%')b]8$&(*:;=579#%')#'+3589:;=[] #%')+-/1356789AP   !#$%&'()*CG\=EC=G=\=#'+3589:;=[] #%')+-/1356789AP   !#$%&'()*CG\=EC=G=\=#'+3589:;=[] #%')+-/1356789AP   !#$%&'()*CG\=EC=G=\=#%8:;<=[]#%'56789#$%&'()*b#%8:;<=[]#%'56789#$%&'()*b#%8:;<=[]#%'56789#$%&'()*b!#!%!8!:!;!<!=![!]!!!!!!!!!!!!!#!%!'!5!6!7!8!9!!!!!!!!!!!!!#!$!%!&!'!(!)!*!b#H#H#%#'#+#3#5#E#G#H#I#K#S#U#######\####################################################### ########A#B############################################# # # # # ########DH#HH#MH#b%H%H%%%'%+%3%5%E%G%H%I%K%S%U%%%%%%%\%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%A%B%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % %%%%%%%%DH%HH%MH%b'H'H'%'''+'3'5'E'G'H'I'K'S'U'''''''\''''''''''''''''''''''''''''''''''''''''''''''''''''''' ''''''''A'B''''''''''''''''''''''''''''''''''''''''''''' ' ' ' ' ''''''''DH'HH'MH'b)%)))))))))))))))))))))+%+++++++++++++++++++++-%---------------------/%/////////////////////3%3333333333333333333335H5H5%5'5+53555E5G5H5I5K5S5U55555555555555555555555555555555555555555555555555555555555555 55555555A5B555555555555555555555555555555555555555555555 5 5 5 5 55555555DH5HH5MH5b6q6q6Dq6Hq6Mq7\7\7%q7'7+7375777E7Gq7Hq7Iq7Kq7Sq7Uq7W7q7q7q7q7q7q7H77777777777777q7q7q7q7q7q7q7q7q7q7q7q7q77q77q777q77q77q77q7q7q7q7q7q7q7q77q77q77q77q7 7q77q77q77q777777 7!7"7A7Bq7q77q77q77q77q77q77q77q77q77q77q77q77q7q7q7q7q7q7q7q77q77q77q77q77q77q7 7 q7 7 q7 7q77q77q77q7D\7H\7M\7b8H8H8DH8HH8MH9\9\9%q9'9+9395979E9Gq9Hq9Iq9Kq9Sq9Uq9W9q9q9q9q9q9q9H99999999999999q9q9q9q9q9q9q9q9q9q9q9q9q99q99q999q99q99q99q9q9q9q9q9q9q9q99q99q99q99q9 9q99q99q99q999999 9!9"9A9Bq9q99q99q99q99q99q99q99q99q99q99q99q99q9q9q9q9q9q9q9q99q99q99q99q99q99q9 9 q9 9 q9 9q99q99q99q9D\9H\9M\9bA#)A%A8)A:)A;)A=)AEAGAHAIAKASAUAWA[A\A]AAAAAAA)AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA A"A#)A%)A')A5)A6A7)A8A9)ABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA A AAAAA#)A$A%)A&A')A(A))A*B)BQ)BR)BT)BX=BY)B[=B]=B)B)B)B)B)B=B)B)B)B )B )B$=B&=B(=B*)B,)B.)B0)B2)B4)B6=B8=BQ)B)B)B)B)B)B )B")B$=B&=B(=B*=BC)BG)B\)P%P'P+P3P5PEPGPHPIPKPQPRPSPTPUPWPYP[P]P^PPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP P P PPPPPPPPPP P"P*P,P.P0P2P4P6P8P;P=P?PAPBPQPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP P P P P PPPPPPPPPPPPP P"P$P&P(P*Q)QC)QG)Q\)[\[ \[q[#[`[k[r[v[wq[x[zq[}q[~[[[[[[[[[[[[[[[[Cq[Gq[\q`#```d`g`n`v`w`y`z`}`bd\d \dqd#d`dkdrdvdwqdxdzqd}qd~ddddddddddddddddCqdGqd\qee#eeedeieneveweyeze}eeeeCeGe\ebfHfHfff`fdfgfkfnfrfxf~fffffffffDHfHHfMHfbg#gvgwgxgzg}hwhzh}k#kkkdkgknkvkwkykzk}kbm`mkmrmxm~mmmmmmmmmmmmmmmn\n \nqn#n`nknrnvnwqnxnzqn}qn~nnnnnnnnnnnnnnnnCqnGqn\qqwqzq}r#rrrdrgrnrvrwryrzr}rbt t tttdtgtntD tH tM tbvHvHvvv`vdvgvkvnvrvxv~vvvvvvvvvDHvHHvMHvbw\w\wqwqw`wdqwgwkwnqwrwxw~qwqwqwqwqwqwqwqwqwD\wH\wM\wbx#xxxdxgxnxvxwxyxzx}xby`ykyryxyyyz\z\zqzqz`zdqzgzkznqzrzxz~qzqzqzqzqzqzqzqzqzD\zH\zM\zb}\}\}q}q}`}dq}g}k}nq}r}x}~q}q}q}q}q}q}q}q}q}D\}H\}M\}b \\D\H\M\ ~DHMDHMAEGr~AEGrHH  "$%*17CDIJKLMNOQRyz{|\DHHHMHb#/237;AEFGHPgq}bCG\CG\q#qqqqq/23qAEFGHPqq}qqqqqqCqGq\q"$%/12CDFHIJKLMNOPQRryz{|\\\\\\ \ \"$%&*\17\CDIJKLMNOQRyz{|\\\\DHMb\ \q#H ) )"$%*)/123AqCDE\FG\HIJKLMNOPQRqryz{|}qqHH)HHCqGq\q#  */237;AEFGHPgqr}CG\bHH  "$%*17CDIJKLMNOQRyz{|\DHHHMHbAEGr"$%/12CDFHIJKLMNOPQRryz{|#  */237;AEFGHPgqr}CG\b"$%/12CDFHIJKLMNOPQRryz{|#  *37;AEGgq}b  qqq  *7q\D H M bHH  "$%*17CDIJKLMNOQRyz{|\DHHHMHb\\\\\\ \ \"$%&*\17\CDIJKLMNOQRyz{|\\\\DHMb#  *37;AEGgq}b/12CFHIKMOPQry{CG\CG\#  *37;AEGgq}b#  *37;AEGgq}b /FH/FH=qq  */FHC=DqG=HqMq\=/FH"$%DJLNRz|/FH       " $ % D J L N R z |      /FH/FH =qq  */FHC=DqG=HqMq\=HH q q*qqDHHHMH/FH"$%DJLNRz|/FH/FH## ##/#F#H#####$=$q$q$ $ $$*$/$F$H$$$$$$$C=$Dq$G=$Hq$Mq$\=,, ,,/,F,H,,,,,-------"-$-%-D-J-L-N-R-z-|------/H/H/ q/ q/*q/q/DH/HH/MH1#111111111111111 1 1*13171;1A1E1G1g1q1}11111111111111111b2q2q22 2 2*22Dq2Hq2Mq33C3G3\7\7 \7q7#777777777H77777)77 )7 )7777777"7$7%7*)7/7172737Aq7C7D7E\7F7G\7H7I7J7K7L7M7N7O7P7Q7R7q7r7y7z7{7|7}7~7q77q7777H77H7777)7H77777777777777777777H77Cq7Gq7\q9\9 \9q9#999999999H99999)99 )9 )9999999"9$9%9*)9/9192939Aq9C9D9E\9F9G\9H9I9J9K9L9M9N9O9P9Q9R9q9r9y9z9{9|9}9~9q99q9999H99H9999)9H99999999999999999999H99Cq9Gq9\q;;;;;;;;;;;;;;;;;";$;%;/;1;2;C;D;F;H;I;J;K;L;M;N;O;P;Q;R;r;y;z;{;|;~;;;;;;;;;;;;;;;;;;;;;;;;;;;;<<<<<<<"<$<%<D<J<L<N<R<z<|<<<<<<================="=$=%=/=1=2=C=D=F=H=I=J=K=L=M=N=O=P=Q=R=r=y=z={=|=~============================>>>>>>>">$>%>D>J>L>N>R>z>|>>>>>>??#???????????????? ? ???*?/?2?3?7?;?A?E?F?G?H?P?g?q?r?}?~???????????????????????????C?G?\?b@@/@F@H@@@@@A\A\AqAqAAAAqAAAAAAAAAqAqAqA qA qAqAqAqA"qA$qA%qA&A*qA1A7qACADqAIAJqAKALqAMANqAOAQARqAyAzqA{A|qAAAAqAqAAqAAHAAqAAqAAqAAqAAqAAqAAD\AH\AM\AbC#CCCCCCCCCCCCCCC C C*C3C7C;CACECGCgCqC}CCCCCCCCCCCCCCCCCbDD/DFDHDDDDDEEE\E\EE\E\E\E\EEEEEEEE\EE \E \EEEE"E$E%E&E*\E1E7\ECEDEIEJEKELEMENEOEQEREyEzE{E|EEE\E\E\EE\EEEEEEEEEEEEEEEEDEHEMEbFHFHF qF qF*qFqFDHFHHFMHGGG\G\GG\G\G\G\GGGGGGGG\GG \G \GGGG"G$G%G&G*\G1G7\GCGDGIGJGKGLGMGNGOGQGRGyGzG{G|GGG\G\G\GG\GGGGGGGGGGGGGGGGDGHGMGbHHHHH qH qH*qHqHDHHHHHMHIHIHI qI qI*qIqIDHIHHIMHJHJHJ qJ qJ*qJqJDHJHHJMHK#KKKKKKKKKKKKKKK K K*K3K7K;KAKEKGKgKqK}KKKKKKKKKKKKKKKKKbLL/LFLHLLLLLM#MMMMMMMMMMMMMMM M M*M3M7M;MAMEMGMgMqM}MMMMMMMMMMMMMMMMMbNN/NFNHNNNNNO#OOOOOOOOOOOOOOO O O*O3O7O;OAOEOGOgOqO}OOOOOOOOOOOOOOOOObPqPqPP P P*PPDqPHqPMq]]C]G]\^^/^F^H^^^^^_ _ ___q___q_q___ _ _*_7_q____\____D _H _M _b``/`F`H`````aHaHaaaaaaaaaaaaaaaa a aaaa"a$a%a*a1a7aCaDaIaJaKaLaMaNaOaQaRayaza{a|aaaaaaaaa\aaaaaaaaaaaaaaDHaHHaMHabb=bqbqb b b*bbC=bDqbG=bHqbMqb\=cHcHccccccccccccccccc c cccc"c$c%c*c1c7cCcDcIcJcKcLcMcNcOcQcRcyczc{c|ccccccccc\ccccccccccccccDHcHHcMHcbd=dqdqdd d d*ddC=dDqdG=dHqdMqd\=eqe#qeqeqeqeqee/e2e3qeAeEeFeGeHePeqqe}qeeeeeqeqeqeqeeeeqeCqeGqe\qggggggggggggggggg"g$g%g/g1g2gCgDgFgHgIgJgKgLgMgNgOgPgQgRgrgygzg{g|g~gggggggggggggggggggggggggggghhhhhhh"h$h%hDhJhLhNhRhzh|hhhhhhii#iiiiiiiiiiiiiiii i iii*i/i2i3i7i;iAiEiFiGiHiPigiqiri}i~iiiiiiiiiiiiiiiiiiiiiiiiiiiCiGi\ibjj/jFjHjjjjjkkkkkkkkkkkkkkkkk"k$k%k/k1k2kCkDkFkHkIkJkKkLkMkNkOkPkQkRkrkykzk{k|k~kkkkkkkkkkkkkkkkkkkkkkkkkkkklllllll"l$l%lDlJlLlNlRlzl|llllllmmmmmmmmmmmmmmmmm"m$m%m/m1m2mCmDmFmHmImJmKmLmMmNmOmPmQmRmrmymzm{m|m~mmmmmmmmmmmmmmmmmmmmmmmmmmmmnnnnnnn"n$n%nDnJnLnNnRnzn|nnnnnnooooooooooooooooo"o$o%o/o1o2oCoDoFoHoIoJoKoLoMoNoOoPoQoRoroyozo{o|o~ooooooooooooooooooooooooooooppppppp"p$p%pDpJpLpNpRpzp|ppppppqqqqqqqqqqqqqqqqq"q$q%q/q1q2qCqDqFqHqIqJqKqLqMqNqOqPqQqRqrqyqzq{q|q~qqqqqqqqqqqqqqqqqqqqqqqqqqqqrrrrrrr"r$r%rDrJrLrNrRrzr|rrrrrruHuHuuuuuuuuuuuuuuuuu u uuuu"u$u%u*u1u7uCuDuIuJuKuLuMuNuOuQuRuyuzu{u|uuuuuuuuu\uuuuuuuuuuuuuuDHuHHuMHubwqw#qwqwqwqwqww/w2w3qwAwEwFwGwHwPwqqw}qwwwwwqwqwqwqwwwwqwCqwGqw\q}H}H}}}}}}}}}}}}}}}}} } }}}}"}$}%}*}1}7}C}D}I}J}K}L}M}N}O}Q}R}y}z}{}|}}}}}}}}}\}}}}}}}}}}}}}}DH}HH}MH}b~~ ~=~q~q~~ ~ ~~*~/~F~H~~~~~~~C=~Dq~G=~Hq~Mq~\=\\qqqqqq q qqqq"q$q%q&*q17qCDqIJqKLqMNqOQRqyzq{|qqqqHqqqqqqD\H\M\bHH q q*qqDHHHMH\\qqqqqq q qqqq"q$q%q&*q17qCDqIJqKLqMNqOQRqyzq{|qqqqHqqqqqqD\H\M\b*Z` >HH q q*qqDHHHMH"$%DJLNRz|q#qqqqq/23qAEFGHPqq}qqqqqqCqGq\q#  *37;AEGgq}b#  *37;AEGgq}b"$%/12CDFHIJKLMNOPQRryz{|~"$%DJLNRz|q#qqqqq/23qAEFGHPqq}qqqqqqCqGq\q\ \q#H) ) )"$%*)/123AqCDE\FG\HIJKLMNOPQRqryz{|}~qqHH)HHCqGq\q /FH\ \q#H) ) )"$%*)/123AqCDE\FG\HIJKLMNOPQRqryz{|}~qqHH)HHCqGq\q /FHAEGr~AEGr~#  *37;AEGgq}b/FH#  *37;AEGgq}b/FH"$%/12CDFHIJKLMNOPQRryz{|~"$%DJLNRz|#  */237;AEFGHPgqr}~CG\b#  */237;AEFGHPgqr}~CG\b#  *37;AEGgq}b/FH#  *37;AEGgq}b/FH#  *37;AEGgq}b/FH#  *37;AEGgq}b\\\\\\\ \ \"$%&*\17\CDIJKLMNOQRyz{|\\\\DHMbHH q q*qqDHHHMH\\\\\\\ \ \"$%&*\17\CDIJKLMNOQRyz{|\\\\DHMbHH q q*qqDHHHMH\\\\\\\ \ \"$%&*\17\CDIJKLMNOQRyz{|\\\\DHMbHH q q*qqDHHHMHHH  "$%*17CDIJKLMNOQRyz{|\DHHHMHb=qq  *C=DqG=HqMq\=HH  "$%*17CDIJKLMNOQRyz{|\DHHHMHb=qq  *C=DqG=HqMq\="$%/12CDFHIJKLMNOPQRryz{|~"$%/12CDFHIJKLMNOPQRryz{|~"$%DJLNRz|\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q ]8$&(*\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q ]8$&(*\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q ]8$&(*\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q ]8$&(*\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q ]8$&(*\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q ]8$&(*\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q ]8$&(*\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q ]8$&(*\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q ]8$&(*\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q ]8$&(*\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q ]8$&(*\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q ]8$&(*:;=579#%'):;=579#%'):;=579#%'):;=579#%'):;=579#%'):;=579#%'):;=579#%'):;=579#%')#%8:;<=#%'579#%')b]8$&(*#%8:;<=#%'579#%')b]8$&(*#%8:;<=#%'579#%')b]8$&(*#%8:;<=#%'579#%')b]8$&(*#%8:;<=#%'579#%')b]8$&(*#%8:;<=#%'579#%')b]8$&(* # % 8 : ; < =            # % ' 5 7 9             # % ' ) b ]  8 $ & ( * #) % 8) :) ;) =) E G H I K S U W [ \ ]       )                                                  " #) %) ') 5) 6 7) 8 9) B                                               #) $ %) & ') ( )) * ) Q) R) T) X= Y) [= ]= ) ) ) ) ) = ) ) )  )  ) $= &= (= *) ,) .) 0) 2) 4) 6= 8= Q) ) ) ) ) )  ) ") $= &= (= *= C) G) \) #) % 8) :) ;) =) E G H I K S U W [ \ ]       )                                                  " #) %) ') 5) 6 7) 8 9) B                                               #) $ %) & ') ( )) *)Q)R)T)X=Y)[=]=)))))=))) ) )$=&=(=*),).)0)2)4)6=8=Q)))))) )")$=&=(=*=C)G)\)#)%8):);)=)EGHIKSUW[\]) "#)%)')5)67)89)B  #)$%)&')())*)Q)R)T)X=Y)[=]=)))))=))) ) )$=&=(=*),).)0)2)4)6=8=Q)))))) )")$=&=(=*=C)G)\)#)%8):);)=)EGHIKSUW[\]) "#)%)')5)67)89)B  #)$%)&')())*)Q)R)T)X=Y)[=]=)))))=))) ) )$=&=(=*),).)0)2)4)6=8=Q)))))) )")$=&=(=*=C)G)\)#)%8):);)=)EGHIKSUW[\]) "#)%)')5)67)89)B  #)$%)&')())*)Q)R)T)X=Y)[=]=)))))=))) ) )$=&=(=*),).)0)2)4)6=8=Q)))))) )")$=&=(=*=C)G)\)%%%'+35EGHIKQRSTUWY[]^    "*,.02468;=?ABQ      "$&(*)C)G)\)%'+35EGHIKQRSTUWY[]^    "*,.02468;=?ABQ      "$&(*)C)G)\)%'+35EGHIKQRSTUWY[]^    "*,.02468;=?ABQ      "$&(*)C)G)\)%'+35EGHIKQRSTUWY[]^    "*,.02468;=?ABQ      "$&(* ) C) G) \)!%!'!+!3!5!E!G!H!I!K!Q!R!S!T!U!W!Y![!]!^!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! ! ! !!!!!!!!!! !"!*!,!.!0!2!4!6!8!;!=!?!A!B!Q!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! ! ! ! ! !!!!!!!!!!!!! !"!$!&!(!*")"C)"G)"\)#\#\#%q#'#+#3#5#7#E#Gq#Hq#Iq#Kq#Sq#Uq#W#q#q#q#q#q#q#H##############q#q#q#q#q#q#q#q#q#q#q#q#q##q##q###q##q##q##q#q#q#q#q#q#q#q##q##q##q##q# #q##q##q##q###### #!#"#A#Bq#q##q##q##q##q##q##q##q##q##q##q##q##q#q#q#q#q#q#q#q##q##q##q##q##q##q# # q# # q# #q##q##q##q#D\#H\#M\#b$H$H$DH$HH$MH%\%\%%q%'%+%3%5%7%E%Gq%Hq%Iq%Kq%Sq%Uq%W%q%q%q%q%q%q%H%%%%%%%%%%%%%%q%q%q%q%q%q%q%q%q%q%q%q%q%%q%%q%%%q%%q%%q%%q%q%q%q%q%q%q%q%%q%%q%%q%%q% %q%%q%%q%%q%%%%%% %!%"%A%Bq%q%%q%%q%%q%%q%%q%%q%%q%%q%%q%%q%%q%%q%q%q%q%q%q%q%q%%q%%q%%q%%q%%q%%q% % q% % q% %q%%q%%q%%q%D\%H\%M\%b&H&H&DH&HH&MH'\'\'%q'''+'3'5'7'E'Gq'Hq'Iq'Kq'Sq'Uq'W'q'q'q'q'q'q'H''''''''''''''q'q'q'q'q'q'q'q'q'q'q'q'q''q''q'''q''q''q''q'q'q'q'q'q'q'q''q''q''q''q' 'q''q''q''q'''''' '!'"'A'Bq'q''q''q''q''q''q''q''q''q''q''q''q''q'q'q'q'q'q'q'q''q''q''q''q''q''q' ' q' ' q' 'q''q''q''q'D\'H\'M\'b(H(H(DH(HH(MH)\)\)%q)')+)3)5)7)E)Gq)Hq)Iq)Kq)Sq)Uq)W)q)q)q)q)q)q)H))))))))))))))q)q)q)q)q)q)q)q)q)q)q)q)q))q))q)))q))q))q))q)q)q)q)q)q)q)q))q))q))q))q) )q))q))q))q)))))) )!)")A)Bq)q))q))q))q))q))q))q))q))q))q))q))q))q)q)q)q)q)q)q)q))q))q))q))q))q))q) ) q) ) q) )q))q))q))q)D\)H\)M\)b*H*H*DH*HH*MHB%qBqBqBqBqBqBqBBqBqBqBdqBnqB\BqB\B\BB7qB\BqBqBBqBqBqBqBqBqBqBqBqBqBqBqCWCCC C"C&F%qFqFqFqFqFqFqFFqFqFqFdqFnqF\FqF\F\FF7qF\FqFqFFqFqFqFqFqFqFqFqFqFqFqFqb#b8b:b;b=bb#b%b'b5b7b9bvbwbxbzb}bbbb3bAbEbGbqb}bbbb#b%b'b)n/` $Y " Z  .  |  K ^    H "5 k   D *. (p \ >< <  4Copyright 2012 Google Inc. All Rights Reserved.Copyright 2012 Google Inc. All Rights Reserved.Noto SerifNoto SerifItalicItalicMonotype Imaging - Noto Serif ItalicMonotype Imaging - Noto Serif ItalicNoto Serif ItalicNoto Serif ItalicVersion 1.07Version 1.07NotoSerif-ItalicNotoSerif-ItalicNoto is a trademark of Google Inc.Noto is a trademark of Google Inc.Monotype Imaging Inc.Monotype Imaging Inc.Monotype Design TeamMonotype Design TeamData hinted. Designed by Monotype design team.Data hinted. Designed by Monotype design team.http://www.google.com/get/noto/http://www.google.com/get/noto/http://www.monotype.com/studiohttp://www.monotype.com/studioThis Font Software is licensed under the SIL Open Font License, Version 1.1. This Font Software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the SIL Open Font License for the specific language, permissions and limitations governing your use of this Font Software.This Font Software is licensed under the SIL Open Font License, Version 1.1. This Font Software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the SIL Open Font License for the specific language, permissions and limitations governing your use of this Font Software.http://scripts.sil.org/OFLhttp://scripts.sil.org/OFLff  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a bcdefghjikmlnoqprsutvwxzy{}|~     !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~glyph1uni000Duni000Auni00A0uni00ADuni00B2uni00B3uni00B9AmacronamacronAbreveabreveAogonekaogonek Ccircumflex ccircumflex Cdotaccent cdotaccentDcarondcaronDcroatEmacronemacronEbreveebreve Edotaccent edotaccentEogonekeogonekEcaronecaron Gcircumflex gcircumflex Gdotaccent gdotaccentuni0122uni0123 Hcircumflex hcircumflexHbarhbarItildeitildeImacronimacronIbreveibreveIogonekiogonekIJij Jcircumflex jcircumflexuni0136uni0137 kgreenlandicLacutelacuteuni013Buni013CLcaronlcaronLdotldotNacutenacuteuni0145uni0146Ncaronncaron napostropheEngengOmacronomacronObreveobreve Ohungarumlaut ohungarumlautRacuteracuteuni0156uni0157RcaronrcaronSacutesacute Scircumflex scircumflexuni0162uni0163TcarontcaronTbartbarUtildeutildeUmacronumacronUbreveubreveUringuring Uhungarumlaut uhungarumlautUogonekuogonek Wcircumflex wcircumflex Ycircumflex ycircumflexZacutezacute Zdotaccent zdotaccentlongsOhornohornuni01A2uni01A3uni01A4uni01A5uni01A6uni01A7uni01A8uni01A9uni01AAuni01ABuni01ACuni01ADuni01AEUhornuhornuni0374uni0375uni037Auni037Buni037Cuni037Duni037Etonos dieresistonos Alphatonos anoteleia EpsilontonosEtatonos Iotatonos Omicrontonos Upsilontonos OmegatonosiotadieresistonosAlphaBetaGammauni0394EpsilonZetaEtaThetaIotaKappaLambdaMuNuXiOmicronPiRhoSigmaTauUpsilonPhiChiPsiuni03A9 IotadieresisUpsilondieresis alphatonos epsilontonosetatonos iotatonosupsilondieresistonosalphabetagammadeltaepsilonzetaetathetaiotakappalambdauni03BCnuxiomicronrhosigma1sigmatauupsilonphichipsiomega iotadieresisupsilondieresis omicrontonos upsilontonos omegatonosuni03D0theta1Upsilon1uni03D3uni03D4phi1omega1uni03D7uni03D8uni03D9uni03DAuni03DBuni03DCuni03DDuni03DEuni03DFuni03E0uni03E1uni03E2uni03E3uni03E4uni03E5uni03E6uni03E7uni03E8uni03E9uni03EAuni03EBuni03ECuni03EDuni03EEuni03EFuni03F0uni03F1uni03F2uni03F3uni03F4uni03F5uni03F6uni03F7uni03F8uni03F9uni03FAuni03FBuni03FCuni03FDuni03FEuni03FFuni0400uni0401uni0402uni0403uni0404uni0405uni0406uni0407uni0408uni0409uni040Auni040Buni040Cuni040Duni040Euni040Funi0410uni0411uni0412uni0413uni0414uni0415uni0416uni0417uni0418uni0419uni041Auni041Buni041Cuni041Duni041Euni041Funi0420uni0421uni0422uni0423uni0424uni0425uni0426uni0427uni0428uni0429uni042Auni042Buni042Cuni042Duni042Euni042Funi0430uni0431uni0432uni0433uni0434uni0435uni0436uni0437uni0438uni0439uni043Auni043Buni043Cuni043Duni043Euni043Funi0440uni0441uni0442uni0443uni0444uni0445uni0446uni0447uni0448uni0449uni044Auni044Buni044Cuni044Duni044Euni044Funi0450uni0451uni0452uni0453uni0454uni0455uni0456uni0457uni0458uni0459uni045Auni045Buni045Cuni045Duni045Euni045Funi0460uni0461uni0462uni0463uni0464uni0465uni0466uni0467uni0468uni0469uni046Auni046Buni046Cuni046Duni046Euni046Funi0470uni0471uni0472uni0473uni0474uni0475uni0476uni0477uni0478uni0479uni047Auni047Buni047Cuni047Duni047Euni047Funi0480uni0481uni0482uni0483uni0484uni0485uni0486uni0487uni0488uni0489uni048Auni048Buni048Cuni048Duni048Euni048Funi0490uni0491uni0492uni0493uni0494uni0495uni0496uni0497uni0498uni0499uni049Auni049Buni049Cuni049Duni049Euni049Funi04A0uni04A1uni04A2uni04A3uni04A4uni04A5uni04A6uni04A7uni04A8uni04A9uni04AAuni04ABuni04ACuni04ADuni04AEuni04AFuni04B0uni04B1uni04B2uni04B3uni04B4uni04B5uni04B6uni04B7uni04B8uni04B9uni04BAuni04BBuni04BCuni04BDuni04BEuni04BFuni04C0uni04C1uni04C2uni04C3uni04C4uni04C5uni04C6uni04C7uni04C8uni04C9uni04CAuni04CBuni04CCuni04CDuni04CEuni04CFuni04D0uni04D1uni04D2uni04D3uni04D4uni04D5uni04D6uni04D7uni04D8uni04D9uni04DAuni04DBuni04DCuni04DDuni04DEuni04DFuni04E0uni04E1uni04E2uni04E3uni04E4uni04E5uni04E6uni04E7uni04E8uni04E9uni04EAuni04EBuni04ECuni04EDuni04EEuni04EFuni04F0uni04F1uni04F2uni04F3uni04F4uni04F5uni04F6uni04F7uni04F8uni04F9uni04FAuni04FBuni04FCuni04FDuni04FEuni04FFuni1EA0uni1EA1uni1EA2uni1EA3uni1EA4uni1EA5uni1EA6uni1EA7uni1EA8uni1EA9uni1EAAuni1EABuni1EACuni1EADuni1EAEuni1EAFuni1EB0uni1EB1uni1EB2uni1EB3uni1EB4uni1EB5uni1EB6uni1EB7uni1EB8uni1EB9uni1EBAuni1EBBuni1EBCuni1EBDuni1EBEuni1EBFuni1EC0uni1EC1uni1EC2uni1EC3uni1EC4uni1EC5uni1EC6uni1EC7uni1EC8uni1EC9uni1ECAuni1ECBuni1ECCuni1ECDuni1ECEuni1ECFuni1ED0uni1ED1uni1ED2uni1ED3uni1ED4uni1ED5uni1ED6uni1ED7uni1ED8uni1ED9uni1EDAuni1EDBuni1EDCuni1EDDuni1EDEuni1EDFuni1EE0uni1EE1uni1EE2uni1EE3uni1EE4uni1EE5uni1EE6uni1EE7uni1EE8uni1EE9uni1EEAuni1EEBuni1EECuni1EEDuni1EEEuni1EEFuni1EF0uni1EF1Ygraveygraveuni1EF4uni1EF5uni1EF6uni1EF7uni1EF8uni1EF9uni2000uni2001uni2002uni2003uni2004uni2005uni2006uni2007uni2008uni2009uni200Auni200Buni200Cuni200Duni200Euni200Funi2011 figuredashuni2015uni2016 underscoredbl quotereverseduni201Funi202Auni202Buni202Cuni202Duni202Euni202Fminuteseconduni2034uni2060Euro arrowleft arrowright arrowdblleft arrowdblrightuni2215uni2219 orthogonal intersection equivalence filledboxH22073H18543H18551 filledrecttriaguptriagrttriagdntriaglfcircleuni25CCH18533 invbullet invcircle openbulletuniFEFFEXOVruby-asciidoctor-pdf-1.6.2/data/fonts/notoserif-regular-subset.ttf000066400000000000000000007050701416357056400253300ustar00rootroot00000000000000FFTMv6jOS/2Lv`cmapccvt tGgd8fpgm1gasp glyfﴨx'headTm 6hhea D$hmtxwakern*+H>locag  maxph namei[d `post8m(prep~J.S\O!__< 4VL b TLN Z33f GOOG@ X J fDuy3y+\JuuBTy={3Ny\yyhywy#yqy}yyy^yhJJbyyyX^;NuNNNuXNNNNNNsNs?NZb)f`HJNLyhf%qqHq7N/%/f%{9)9qqD\'/ Vmfymfyoyydyy yZ#qHy{3q3by3V3RR{3V-HRhuNNNNKNIINNsssssysN-/fffffffqHqHqHqHq&/q)9qqqqqyq////fffuquququqNqNqNHqNHqNHqNHqNHquN/uN/uN/uN/XN%XN# NNN/N/N/fN%%N{N{N{NN9N)9N)9N)9=N9sqsqsqs=q?ND?ND?NDZb\Zb\Zb\Zb\)')')'//////`JVJVJV9sqsqs%?NZhZ/f}'')9h/R)HqHJb%;N}N?NJXNsNNfNNVsNN/)#DHVIqo%qoooq%Hoq BqqB%q9%%q%q%%qqqoB\squqNB7FVFN%o9RJ7/Zh)?Vsq!\qqfsqRN%uNL\u\NN)}NuZbNIN)NmN\NN;N}NuN\mNmNNNXNsNNu)\#DHN +NN)BNN\RN?fq//Hq R//%L//qX/q`)q m///=//R/sHqHq#/q\/ fF/#%/m/uT)/JNZ/JN/L N/+%sq sVqBsqwPhuuqhu))mN/N/NZN/}//DNd/H\\RN#%N)%N%H))XN/N?/oN/squq)`) %)) + + N/wwN N%DNo/XN/ +NL/NfffNHqoHfoHf \R\`RmN/mN/sqsqsq\R\\\ +}N/BN/}//H H fffffffffffNHqNHqNHqNHqNHNHqNHqNHqN/N/sqsqsqs+sqsqsq9sq9sq9sq9sq9sq//9h/9h/9h/9h/9h/UyD!L{3yRyeJs==ss==sHHdN T\uDusuyT7F?XNPyJ/BHP)yoydyy{mmb=b))sj@* ~u~  " & 0 4 : ` !"!!!!"""""""")"+"H"a"e%%%%%%%%%%& tz  & * 2 9 ` !"!!!!"""""""")"+"H"`"d%%%%%%%%%%&1+*'$#:_\TSQNKBA% ݾݽݶݱݯݧݛr   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abJsefjLyql\wknitpqhxadclm}{dohmbn~Mc=>FGBC{9[XYKzDHTr{@EYXUTSRQPONMLKJIHGFEDCBA@?>=<;:9876510/.-,('&%$#"! ,E#F` &`&#HH-,E#F#a &a&#HH-,E#F` a F`&#HH-,E#F#a ` &a a&#HH-,E#F`@a f`&#HH-,E#F#a@` &a@a&#HH-, <<-, E# D# ZQX# D#Y QX# MD#Y &QX# D#Y!!-, EhD ` EFvhE`D-, C#Ce -, C#C -,(#p(>(#p(E: -, E%EadPQXED!!Y-,I#D-, EC`D-,CCe -, i@a ,b`+ d#da\XaY-,E+)#D)z-,Ee,#DE+#D-,KRXED!!Y-,KQXED!!Y-,%# `#-,%# a#-,%-,F#F`F# F`ab# # pE` PXaFY`h:-, E%FRKQ[X%F ha%%?#!8!Y-, E%FPX%F ha%%?#!8!Y-,CC -,!! d#d@b-,!QX d#d b@/+Y`-,!QX d#dUb/+Y`-, d#d@b`#!-,KSX%Id#Ei@ab aj#D#!# 9/Y-,KSX %Idi &%Id#ab aj#D&#D#D& 9# 9//Y-,E#E`#E`#E`#vhb -,H+-, ETX@D E@aD!!Y-,E0/E#Ea``iD-,KQX/#p#B!!Y-,KQX %EiSXD!!Y!!Y-,EC`c`iD-,/ED-,E# E`D-,F#F`F# F`ab# # pE` PXaYh:-,K#QX34 34YDD-,CX&EXdf`d `f X!@YaY#XeY)#D#)!!!!!Y-,CTXKS#KQZX8!!Y!!!!Y-,CX%Ed `f X!@Ya#XeY)#D%% XY%% F%#B<%%%% F%`#B< XY%%)) EeD%%)%% XY%%CH%%%%`CH!Y!!!!!!!-,% F%#B%%EH!!!!-,% %%CH!!!-,E# E P X#e#Y#h @PX!@Y#XeY`D-,KS#KQZX E`D!!Y-,KTX E`D!!Y-,KS#KQZX8!!Y-,!KTX8!!Y-,CTXF+!!!!Y-,CTXG+!!!Y-,CTXH+!!!!Y-,CTXI+!!!Y-, #KSKQZX#8!!Y-,%ISX @8!Y-,F#F`#Fa#  Fab@@pE`h:-, #Id#SX<!Y-,KRX}zY-,KKTB-,B#Q@SZX TXC`BY$QX @TXC`B$TX C`BKKRXC`BY@TXC`BY@cTXC`BY@cTXC`BY@cTX@C`BYYYYY-,Eh#KQX# E d@PX|Yh`YD-,%%#>#> #eB #B#?#? #eB#B-,zE#-APU@PUUU@PUPUPA<PU@UU P U@    P U    PUPU9A'?o ?PUP@U`SC7@GQ@43U3UU @ F Vfvp  <ϕ`@ϕ _ϓߓϓOuNtN'o7oGoUg@f Fe/e0d@dd`N_N^N3UU3U@WF0V@VPV?UOUUUUPTTHG )GG3U3UU3UUGU?oTS++KRKP[%S@QZUZ[XYBK2SX`YKdSX@YKSXBYssst++++++s_s+_sss+s++++++ss+s++++s++sstussttuu^s^s^sss^ss+ss+++++_ss_s+_ss_ss+++_stttuu^s++^sss+st++s+s+stuu+suu+++st+s+NuJVVfuqqVfnuugVfq^odoyH*>=#CV-CyyUy"KppWP}kT<AR W]j}}oDDE5)qb<Rj$Jr,ZBl>RfzdJ L \  ^ D  \ $|.v0n`LJzh$P6|>BxPr*d22\T 2 > J !$!0!" """"."""""##L###$*$$$%%%*%%%%&d&p&|&'t'( (((() ))$)0)t))*L*X*d*++(+h+++,0,<,H,,-\-.>.../8//0H011l112>223 3x34(445P56"67N8 8v949:L:;4;;F>>>>??V?@,@@@@AA\AAB$BdBBBCCbCD6DBDDE,ElEFFFG@GGGH*HHI\IhItIJ^JjJvJKhKtKKLL\LM MzMNNzNOVOPDPQ$QRRRSjSvSSSTThTTU"UVUUV6VVWWLWTWWXX8XhXXXY Y&YTYYYZZTZ`ZZZZZZZZZZ[[&[.[6[>[[[[[\\d\l\\\\\]j]r]^2^>^J^V^b^n^z^^_>__`^``abbc"cbccd&dfdde6eeeeeef,ffg ggbgh.hnhhi i>ihiij"jRjk0kxkllbllm(mfmmn,n\nnnnnnnoojoroop6phptpppq8qDqqqqqr"rrssssst$t,t4ttuTuv vwwZwbwjwrwzwwwwwwxDxxyVyzzTz{{\{d{| |<||}\}~ ~~TLT\Pf^ZfrЄ܅&.:B$0<@|‡DƉ\R(܋.dʍdȎ$bf>dʐFʒ4zޔ 8~4xė`L"b0xƛ dܜ T4žF.Xdp|ԨjΨڨ0Xdp|@LX֫T`lȫԬPЭHH xX±:. vRƶ6" ιj&Lnؽ<n(rTXv@àfr~ĊĖ.Ő0nrNȢnɲtBˬ0̮̮̮̮̮̮̮̮̮̮̮̮̮̼ &4BP^r͘; PΖ 6πϠ&>VV 0DZZѴ$@\|Ҝ dӖӤӲӺ0@bԶ>ZtՎ՜ղ8j.R׌״PPf3!%!!f4/nJb3#4>32#".H^R#//##//#(5  5('6  6u3#3#>^B>^3F!!!#!##53#533!33#L5N{NM{NNJ}LL{LKoy``yymmyo^2;F#4.'#5".'3.54>7534.'>m\R%XJ'F6\`2ƶg3hc[&V+OmB`R%1ZPg.I5\d5*=((>)y%=R0BC-[K4"(P]qI  ;9kU7+T]lCEpS3 {)A809u +A2( '7F\';OS#".54>3232>54.#"#".54>3232>54.#"#3*T~TXR''RYT}S*$:**:##8**;%*T~TXQ''RYT}S*$:**:""8**;%ۆgxBBxggw@@wgX`22`XW_11_WgxAAxggw@@wgX`22`XW_11_J>N`!'#".54>7.54>32>=!#";%2>74.#">%YlN{yqaWbJ.UTX2DnP+.Pj;BfVM(u._[W%PV7/BM V^,=$?ShBKsO(H)F3jX'DCH+:ETuN3#u>^u.54>7J@}i::ȍi}@zմ@^8!ܟ8\@BP4.'55>{A|i~;;~ȍi|AzԳ@\8ṹݠ8^@T73% %#'%TH;59=HZH93HXEedDàf% #!5!3!y{y{{{yzy=%5>54.54632$Q\e^"&"M9 8,VAzhSV \<);>-C3H{5!3ᚚ74>32#".#//##//#}(5  5('6  6N#3yyw \'#".54>3232>54.#";xy~u88uxx;?gJKf??eJKg@ݩlljj뫘WWUU3532>5#"&5>?3;ʼn#=-'F@=-:?GS3.=#dV :040N8=1%5%j+0: Vh/!2>?3!5>54.#"".54>32.XQ.<&V VRoD3O6FW2%@03ecal9uHY*7%_F;_E%2Tn= 3';eJ)1Y~wJ%2>54.+532>54.#"".54>32#".5463=nT23`VAADuW25S;FX2%@03fcaq>1XxG&VTM;#,Mftz;e_-F;#BaZ"N~\AiJ)h-RuI<^B"2Tn= 3';eJ),SyNEzcF$6NgDRaD*%>S->E6[B%#\';!532>=!5334>7!^->":#=-y>!%% 0: VV :0TNs-lpo0/:@=5q5%2>54.#"'!#'.#!>32#".5463?kO,,RrG5M;,1B V ) s'u[c~GCurX$?B=]d#QaQxP' = > 6llh{C'32#".54>32#4."32654& =HU2^k:;qifH:XwZVT)PM,Dy(JA6'Fd=ns}h':lblHUae8$7.54>32#".2>54.'4.#">^/TrC:bF'2jv`g6(Hf>L}Z1Fpsu;CmM*&Vcar#Eh07YA9Y<#EhD:K,oJoWF !M\m@Gf>5^MCfQA$R`pCaj732#".5467>75.#"Ӫ ;K[6Yk;32#".4>32#".#//##//##//##//#}(5  5('6  6s(5  5('6!!6bT+%5>54.546324>32#".$Q\e^"&"M9 8,#//##//#VAzhSV \<);>-CH(5  5('6!!65 oPHى!5!5oNyyyy75 5Poqu'HX%9#>54.#"".54>324>32#". }YyI6U;@W6%>--_caxD5f_#//##//#7$_oy=5W="*H_5!2!1T>#2_XTr^'(5  5('6  6[n#"&'##".54>327332>54.#"32>7#"$&54>3232>7.#"HtG[y 5CS4>qU35St^B_R1h"--^L1VՀdj73;!53254&/.'!N CE/ '*"Ơ ",/{ R 5/40VV $>1 * VVb$[J%EHO0N!.;)532>54.+5! 32>54.+532>54.+'D]6FtS.#=..="% ^WxL"IxZˎZxH"LyWHEhN5 :]QV :0-7 Va GrRPvN&f CjJKe>u/2#4.#"32>7#".54>ig30A&9[Ctf.0hqKsXC5lrPT#>T1!5%0^K/UZ0?" &'QB+lnN\%#!532>54.+5!22>5+\T#=..="sZ5zz=ݨgV :0-7 VaS1BN'%!2>?3!532>54.+5!#'.#!!!1E.k"=..=# j +A.f.="XV 7-0: VX"=.dN`%!!;!532>54.+5!#'.#->"D"=..=" j -D0PdM0: VV 7--7 VX#=-u9"$&546$32#4.#"32674.+5!#"5V[ rq83E(@hKt46zŒ;o+.="4&gln#>T1!5%0^K/UT J-7 VV ;00.N C!532>5!;!532>54.+5!#"!4.+5!#";#=-f->"#=..="T">--=#T#=..="V :0 0: VV :0-7 VV :0b0: VV :0-7 VN3532>54.+5!#";N#=..=#T">-->"V :00: VV :00: V32>54.+5!#"+BgF%.="T">-H~b#u%Wl-7 VV :0#m.N@>54!" ;#".';!532>54.+5!#"!, 23#AAE(;m9gZC&->""=..="T">-q&;0$TT1G-QSV*G70: VV 7--7 VV :0N!3532>54.+5!#"!2>?3N#=..=#T"=..A*kV :00: VV 7-!5B!HN36!532>7#;!532>54.+5! !#";!5%+o%'7"'"=..="#=..=#V 3*F0: VV 7--7 VmV :00: VN,!;!532>54.+5!4.+5!#"->"#=..="w.="#=.M0: VV :0-7 V-7 VV :03s{'#".54>3232>54.#"{TPPT-drrc,,crre-ݩllkk뫘WWVVN#03532>54.+5!2+;32>54.+N#=..="?|=9Ҙ.="Dm]T'"LyWV :0-7 V;od[M-7 V'WaVT)s){ 4;#".'.54>3232>54.#"{Bz 2Nh>!XQY ъEPT-drrc,,crre-ݖ}iU$`+iwkk뫘WWVVNL.;%;#".'#;!532>54.+5! %32>54.+o4bA`{V=#.=""=..="' 5Vl6ZxH"LyWRRV(H:Z-7 VV 7--7 VR{Z</(PxPRsI!b?".546332654.'.54>32#4.#"dg4MG!BfH JyZ_^.Cxa\b3WJ6XA;]@" KzYZb4G*Kk@>L@vZ6}8VIC%'YmTX_2&@S-BC0]I.!=V5=]KC$%Re}Oaj7)#%;!532>5#"#!#'.+->"//"=.-=' j  j &>.0: VV 7-q.="XfX"=.5".54.+5!#"32>54.+5!#"yF.="T">-3[}KYU).="">-A3o}-7 VV :0Y}N$0UuF/-7 VV :0fq<f*!.+5!#">7>54&+5!#"fF ",3/>= ,," CD/'+#X * VV/3$g[JJ`.5/VV #>2?N8 >7>54&+5!#"# #.+5!#">7-'CD/'-$ǽ ".4/>= .)fGJcx  5/VV ">3?{ * VV/3$q]JPco7L4.+5!#" ;!53254.' ;!532>7 .+5!#">(1.1y-P' z  AD %7/.V%].+#.  % VV#8*T<1VVD ,"F !$%#VV"6(%;1VV  $'#>>!532>5.+5!#">?>54&+5!#";F/"=.!(3L# $2 !$@;<'(+.="0V 7-) VV  :?{06=A #?--VV%=.0: VJf !2>?3!5!"#!F.>& j C-=& j b.="XR.="Xf!#";Y"=..="YV :00: VN3#wyL532>54.+5!LX#=--=#XV :0H0: Vh!3# #Gk'V!5!@y! #.'53N)`ZJ+02SXQ"QQLf)^?32>=""&54>32;!'##".546?54.-QU>eG&WuH;I)UY:eL^^/1"  54.+5!3>32"32>54.y7je;`M; $#=-.="y:L`32#4.#"3267Df|EE{a@f@\['C4;_D$_#,W?՗݆84O5G:0VA%,lP? (#F8#q-?%;!'##".54>323&'.=4.+5!2>54.#" .=";L`73r{ 4U%ozAcn;V)MpI5[J9,ZQ`4Kх">{y^ph1(3&G<(7)1%!532>5#5354>32#4.#"!!3#=-2^TPnC-=% 4',;$!->"VVV :0af\`1&4 +;."CbAya0: /5Wlz#4.#"#".';2#"&54>7.5467.54>32>3232>54.+"32>54&#"5 )*#-.[] $"/\Q%A͋*G\3( @F,E/0`a%H=1(2;"-aC%:%!532>54.+5!3632;!4.#"3L#=-.="y \W\0*:"5V>@]=.="VVV :0J-7 V>=/ai0: VChH%/W{KP-7 /u,72>54.+5!;!54>32#".J"=..="n->" **** V 7--7 V0: VV@$0 0$$0 0*+532>54.+54>32#".54.+5!>54!"5iEYsTF+͗.="#=-.="y!+ 13GPkRVV )ODAp-7 VV :0J-7 VW*05%8*!VVd[`72>54.+5!;!55#=-.=".=#V :0J-7 V0: VV9V^W%!532>54.+5!3>323>32;!4.#";!4.#"3`#:**:"A DMU02ZM=HQY0N|V.*:"3R;@W6*:"3R;C[8.="VVV :0-7 V9I),G39I)/ai0: VChH%1Tn>?0: VChH%6\xBP-7 9^8%!532>54.+5!3>32;!4.#"3`#=-.="K GOY1QY/*:"5V>F_:.="VVV :0-7 V9I)/ai0: VChH%6\xBP-7 q-^##".53232>54.#"-o{Ao{A CkMMjBBkMMjB'FאEՐru<54.#".'#;!532>54.+5!3>32Pk@AkQD_==a7je;`M;.="#=-.="f:L`=46767##".54>3237!#";2>54.#"D#=-;L`-.="pPkAAlQC`=vV ;0#[*02/K5C֓،C0B(V ;0-7 5loko::pkD^1)532>54.+5!3>32#4&#";#=-.=";' *=ZDpm.H40<&<-.="9V :0-7 V.Q=#NG 6'UK+G\a`'-7 \B\A".54>332>54.'.54>32#4&#"M}X0'-4U>7T99bJOuL&7fWIpL&MGU[4J/=aDQtK$:j7Q6)7 6^G)1E)&702 #ALaCFlI&3E&8Cgr,<$'90-"BNb@PxQ('F%267#".5#5267>73!!%> *16NpH#%Y"#+^ UXZ !JzXR#&iOuNib/J1%;!'##".54.+5!32>54.+5!7.=" KT\2Q~V-.="o1S>Da?-=#n-7 V:H).bi-7 V=ChH%0WzJ0; VJ/5!#"3>7>54&+5!#"#.#>=  CD*" ",VV03#}$WTKAMP%.50VV $>1 * J?3>7>54&+5!#"#'#.+5!#"3>7  (f CE,#%ޢ ",=> `  D%USJ3cJ;50VV #>3ч * VV$20%XWLEOR%k JH4&+5!#";!53254./;!532>7 .+5!#"7>?/1/2--Q& {  :E%822-U.#. j%VV 4)k<1VVD , "##VV 3&N`58VV  ) #>J:#"+52>7.+5!#"3>7>54&+5+#$@FSj[hmI!+>=  ' CDJV $>1ckF*a>lV ) VV03##SQH-J.50VVJ%2>?3!5!"#!$/ V R(4! Vu.=!/R*>)#Tf)".54.'5>546;#";HoJ&%BX33XB%=[MqsvnM[=*LmDd?R1V1R>eXlkdfinXy#3y{{f)32654675.54&+532+f>[MmvrqM[>&AX33XA&&JnHnibfd^klX>R1V1R?DmL*o'%".'.#"#>3232673@?9,+,<: x8_L"D@9*)*96{9]'&-'ty@f@(0%{r@f@V#3#".54>32H^R#//##//#(6  6('5!!5&/%.54>753#4.'2>7#H]p>BrXf;v^;[[$8&*UND5[fms1R3232>7#".#"57>54&'#53.54>32#4.#"!cR*I")baY$=6-2BS33bdg7DvB%&K<&:lacV'WK-QAwo \3j>X7 "+6,"' lAUh=T1BC0]I.0\UK`%#7467'7>327'#"&''7.732>54.#"#"V/o?>n/V #r)G^68`F))F`86^G)>o.W"&&"Y.o>>o.V &$"V.o>6_G**G_68`G))G` oL!532>75!5!5!53.+5!#">?>54&+5!#"3!!!;/"<-!*>7b u9D&!#-=#/V 7-a`:) VV&*=# JH> +356[*(VV$>/`a0: Vy#3#3y{{{{34c.'>54.2654.'.5467.54>32#4.#"#".54>3VJ5DsX>x19gm~|KxQsH!D5&&9dQT}S)OB/K7fq)QvNW~R'","-_hO\2'-9Y#D*8))A?B+?+:"#>@Eo^-CCQ;(S\i=Ms%-oJNyS+#=T1B;0ZG+fa6I;8&*T[f<%IC;(d?Qa632#"&%4>32#"&#&&&-;&&&-; , , , 4? , , , 4qR-Ie2>7#".54>32#4.#"4>32#".732>54.#"/P@/ 'MsMfg38olGiF#&3"7)He@n6ahhb66bhha6p.SuXYuS..SuYXuS.m(2 !:0BxgdxC'5$ 7-0^Ynhb66bhhb55bhXuS..SuXXuS..SuH :32>=""&54>323#'##"&546?54.6("6%?2C)&NT*H`6DdC!'2% +5@'crX(@1,<$a%4z&3)0#05T=."E^'jgfa;3% 3#%3#9ggs9ggJd{{dBd{{d#!5{ y3H{qR)6Rn32>7.+5! 3##;!32>54.+4>32#".732>54.#"$$q` 4C# #l#fV7J,/K6P{6ahhb66bhha6p.SuXYuS..SuYXuS.fXH1J6%  E}E,D.-@'hb66bhhb55bhXuS..SuXXuS..Su!5!@ybJ'4>32#".732>54.#"b1Tq@AqT11TqA@qT1{3D'(D33D('D3AqT11TqA@qT00Tq@&E33E&(E33E #!5!3!!5!y{y{{o{yzy`yVJ)!26?3!5%>54.#""&54>324U@)/%F->% .!%4 EO$GjF0TTZ72"+\)TUT("9*1A#"6%?.qR=?"&546332654&+532>54&#"".54>32d3++A-UahqCC'B26?'4 #9'%IkFDpP+"9L*)VG.Cj=]K-8 ?2S_HUT.A)DG1A#"%?.4K0-G6' .I8Kg?! >73#1/+JZ_)NLQQ"QXSJ7"&'#".54>7332>53;#"&'#9V{) !@9#6% <. /O;9\@#%.oT`7EU?9UlC 'A09^E=Ѐ}PCnO+0WzJ-C,VSQ)D0R'#!532>5#".54>3!#";!\#=-ZxH"LxW ">-->"qV :0AoPR`4V :00: VNd4>32#".#//##//#(6 6('5!!5{'#".'532654&'73'(**%J;BWC+adcm} h>5<<XcVL#"&5>73;!532>5;&#$"(-DfQf^q -# /%<9EENH  32654&#"#"&54632FXVGIVVF몥MzV.f+V #3#3ff:gg9B!%E;!532>=!5334673#3#"&5>73;!532>5)=9(ۆ&#$"(-DfQf^q qEEq=4X? R&"# /%<9EENm#M!#3#"&5>73;!532>5!26?3!5%>54.#""&54>32 ۆ&#$"(-DfQf^q Q4U@)/%F->% .!%4 EO$GjF# /%<9EENx0TTZ72"+\)TUT("9*1A#"6%?.qR!%e;!532>=!5334673#3"&546332654&+532>54&#"".54>32)=9Qۆ,3++A-UahqCC'B26?'4 #9'%IkFDpP+"9L*)VG.CjqEEq=4X? R&"]K-8 ?2S_HUT.A)DG1A#"%?.4K0-G6' .I8Kg?h{T%9332>52#".54>7#".54>32}YyI6U;@W6%>--_caxD5f_#//##//#$`nx>5W>"*H_5!2!1T=#2_XTr]'(6  6('5!!5s&%DRs&%wRs9D>73#.'#;!532>73;!53254&/.'!:9229:P;v./t:PN CE/ '*"Ơ ",/{ R 5FLQQ""QQL"e11e"/40VV $>1 * VVb$[J%EHO01DO2>73#".#"#>32;!532>73;!53254&/.'!% \4N77YMC!$ \5O77YMC?N CE/ '*"Ơ ",/{ R 5'/WD((1('/VD((1(9/40VV $>1 * VVb$[J%EHO0F&%kR'LW#".54>324.#"32>;!532>73;!53254&/.'!&CZ33ZC&&CZ33ZC&o%11%%11%BN CE/ '*"Ơ ",/{ R 517S88S76T88T6!//!!///40VV $>1 * VVb$[J%EHO0F3;%!2>?3!532>7!;!53267'5!#'.'!!!!#0E.k"<-)q?73#.'#!2>?3!532>54.+5!#'.#!!!^:9229:P;v./t:P1E.k"=..=# j +A.FLQQ""QQL"e11e";.="XV 7-0: VX"=.dNF&)k3RKs&-DRNs&-wRIs4>73#.'#532>54.+5!#";I:9229:P;v./t:P#=..=#T">-->"FLQQ""QQL"e11e"V :00: VV :00: VIF&-k&RN\/34.+5!2#!532>5#2>54.+!!N.="sZT#=.Czz==yy\/-7 VagV :0SꘘRdN1L2>73#".#"#>32;!532>54.+5!4.+5!#"% \4N77YMC!$ \5O77YMC->"#=..="w.="#=.'/WD((1('/VD((1(PM0: VV :0-7 V-7 VV :03s{s&3DFRs{s&3wRs{s(<>73#.'##".54>3232>54.#":9229:P;v./t:PTPPT-drrc,,crre-FLQQ""QQL"e11e"llkk뫘WWVVs{13G2>73#".#"#>32#".54>3232>54.#"% \4N77YMC!$ \5O77YMCTPPT-drrc,,crre-'/WD((1('/VD((1(-llkk뫘WWVVs{F&3kR3 ' 7  ;VTVTTVTVXTRVVXVs{ &1#"&'#7&54>3273&#"4&'32>vzT]BGyhyvP[BLw`-3<^re-B-2_rc,JaЩl#"bAҪk'#ӛT RVSPWs&9D=Rs&9wRsJ>73#.'#".54.+5!#"32>54.+5!#":9229:P;v./t:PyF.="T">-3[}KYU).="">-AFLQQ""QQL"e11e"3o}-7 VV :0Y}N$0UuF/-7 VV :0fq<F&9kRs&=wRN*73532>54.+5!#"3 +;32>54.+N#=..=#h/">-9Ҙ->"/m]T'"LyWV :00: VV :0>[zFR0: V!OaVxL#/U%2654.'.54>34.#"!532>5#5354>32#"#".54>3wKa,N>@bA!)SW>aE>]>}#=-Dw^g,mf2R=Mb80YQHvT.$)/MN\^":66 >L`A>fI(aZ*(IhA\V :0a=q_*IЇSS3//#OVZ.NxP)7Q6)7 6^G)f)!&EDf)!&EwPf)!#T>73#.'#32>=""&54>32;!'##".546?54.:9229:P;v./t:P(QU>eG&WuH;I)UY:eL^^/1"  73#".#"#>3232>=""&54>32;!'##".546?54.% \4N77YMC!$ \5O77YMCfQU>eG&WuH;I)UY:eL^^/1"  324.#"32>32>=""&54>32;!'##".546?54.3&CZ33ZC&&CZ33ZC&o%11%%11%iQU>eG&WuH;I)UY:eL^^/1"  ="!4."&'#".546?54.#""&54>32632!32>7-QU>eG&WuHysz 4U9Da}LDuU0 (K?;I)UY:eLt-rcn;V'MvQ-TI;,X)`_(JjA{#?\Q`4vs.TA&'Q{T{7]C%!{y^ph1'4&G<(q^&G{q!&IDq!&IwRq!>>73#.'#"!4.".532!32>7:9229:P;v./t:P4r{ 4U%ozAcn;V)MpI5[J9,ZLQQ""QQL"e11e"鹲Q`4Kх">{y^ph1(3&G<(q&Ik&u!&D/}!&wiu!->73#.'#2>54.+5!;!5:9229:P;v./t:P4"=..="n->"LQQ""QQL"e11e"} 7--7 V0: VVu&kq-"6%#".532.'57.'32>54.#"3^QHxU/o{ADt3kN3tACkMMjBBkMMjBK6ug<{Adž DDsb"9Vik66kihi44i9X2>73#".#"#>32!532>54.+5!3>32;!4.#"3J% \4N77YMC!$ \5O77YMC#=-.="K GOY1QY/*:"5V>F_:.="^'/WD((1('/VD((1(VV :0-7 V9I)/ai0: VChH%6\xBP-7 q-!&SDq-!&Swyq-!$8>73#.'##".53232>54.#":9229:P;v./t:Po{Ao{A CkMMjBBkMMjBLQQ""QQL"e11e"NFאEՐru<73#".#"#>32#".53232>54.#"% \4N77YMC!$ \5O77YMCXo{Ao{A CkMMjBBkMMjB^'/WD((1('/VD((1(FאEՐru<32#".4>32#"&o&&&&&&&-;yG , , + + , , , 2q-"-#"&'#7.53273&#"4'32>DGG|3JyoGJJ5Nv#DvMjB/$Z Y;MjBEۘwHߞ }^9J:srlT "73#.'#;!'##".54.+5!32>54.+5!V:9229:P;v./t:P.=" KT\2Q~V-.="o1S>Da?-=#nLQQ""QQL"e11e"-7 V:H).bi-7 V=ChH%0WzJ0; V/&Yk9!&]wq(3!5!;!532>73;!53254&/.'!RN CE/ '*"Ơ ",/{ R 5@y0/40VV $>1 * VVb$[J%EHO0f)gC!5!32>=""&54>32;!'##".546?54.TRQU>eG&WuH;I)UY:eL^^/1"  73;!53254&/.'!IkF#^dLKd_#GjN CE/ '*"Ơ ",/{ R 5+-Lf:KAAK:fL-/40VV $>1 * VVb$[J%EHO0f) Q".'33267332>=""&54>32;!'##".546?54.4IkF#^dLKd_#GjQU>eG&WuH;I)UY:eL^^/1"  733267#".;!532>73;!53254&/.'!(DW/u D7$&4@&),)AhI'N CE/ '*"Ơ ",/{ R 50VG2 (;N1"1 o 7U./40VV $>1 * VVb$[J%EHO0f)^,]4>733267#".32>=""&54>32;!'##".546?54.%(DW/u D7$&4@&),)AhI'QU>eG&WuH;I)UY:eL^^/1"  73#.'#2#4.#"32>7#".54>:9229:P;v./t:P;ig30A&9[Ctf.0hqKsXC5lrPTFLQQ""QQL"e11e"`#>T1!5%0^K/UZ0?" &'QB+lnq!>>73#.'#".54>32#4.#"3267:9229:P;v./t:P.f|EE{a@f@\['C4;_D$_#,WLQQ""QQL"e11e"?՗݆84O5G:0VA%,lP? (#F8#uGC4>32#".2#4.#"32>7#".54> **  ** {ig30A&9[Ctf.0hqKsXC5lrPT$0 0$$0 0#>T1!5%0^K/UZ0?" &'QB+lnq=4>32#".".54>32#4.#"3267 **  ** uf|EE{a@f@\['C4;_D$_#,Ww$0 0$$0 0?՗݆84O5G:0VA%,lP? (#F8#usH3>73#.'2#4.#"32>7#".54>P;955:<P:9229:Rig30A&9[Ctf.0hqKsXC5lrPTs,1331,LQP##PQLs#>T1!5%0^K/UZ0?" &'QB+lnq!B3>73#.'".54>32#4.#"3267P;955:<P:9229:2f|EE{a@f@\['C4;_D$_#,W!,1331,LQP##PQL?՗݆84O5G:0VA%,lP? (#F8#N\s3>3>73#.'#!532>54.+5!22>5+yP;955:<P:9229:T#=..="sZ5zz=s,1331,LQP##PQLgV :0-7 VaS1Bqm 9K>73#;!'##".54>323&'.=4.+5!2>54.#"} (/0Fq.=";L`323&'.=!5!54.+5!2>54.#" .=";L`7XRr{ 4U%ozAcn;V)MpI5[J9,ZyQ`4Kх">{y^ph1(3&G<(ND9".'332673!2>?3!532>54.+5!#'.#!!!IkF#^dLKd_#Gj1E.k"=..=# j +A.+-Lf:KAAK:fL-;.="XV 7-0: VX"=.dq;".'332673"!4.".532!32>78IkF#^dLKd_#GjNr{ 4U%ozAcn;V)MpI5[J9,Z-Lf:KAAK:fL-鹲Q`4Kх">{y^ph1(3&G<(N*;4>32#".!2>?3!532>54.+5!#'.#!!! **  ** ?1E.k"=..=# j +A.$0 0$$0 0.="XV 7-0: VX"=.dq=4>32#"."!4.".532!32>7 **  ** ur{ 4U%ozAcn;V)MpI5[J9,Zw$0 0$$0 0Q`4Kх">{y^ph1(3&G<(NE4>733267#".!2>?3!532>54.+5!#'.#!!!(DW/u D7$&4@&),)AhI'1E.k"=..=# j +A.0VG2 (;N1"1 o 7U.="XV 7-0: VX"=.dq3^&G4>733267#"."!4.".532!32>7(DW/u D7$&4@&),)AhI'\r{ 4U%ozAcn;V)MpI5[J9,Z0VG2 (;N1"1 o 7UQ`4Kх">{y^ph1(3&G<(Ns@3>73#.'!2>?3!532>54.+5!#'.#!!!LP;955:<P:9229:1E.k"=..=# j +A.s,1331,LQP##PQL.="XV 7-0: VX"=.dq!!B3>73#.'"!4.".532!32>7P;955:<P:9229:.r{ 4U%ozAcn;V)MpI5[J9,Z!,1331,LQP##PQL깲Q`4Kх">{y^ph1(3&G<(usN>73#.'#"$&546$32#4.#"32674.+5!#":9229:P;v./t:P=V[ rq83E(@hKt46zŒ;o+.="4&gFLQQ""QQL"e11e"ln#>T1!5%0^K/UT J-7 VV ;00./5!l>73#.'##4.#"#".';2#"&54>7.5467.54>32>3232>54.+"32>54&#":9229:P;v./t:PN )*#-.[] $"/\Q%A͋*G\3( @F,E/0`a%H=1(2;"-aCuDK".'332673"$&546$32#4.#"32674.+5!#"'IkF#^dLKd_#Gj;V[ rq83E(@hKt46zŒ;o+.="4&g+-Lf:KAAK:fL-ln#>T1!5%0^K/UT J-7 VV ;00./5i~".'332673#4.#"#".';2#"&54>7.5467.54>32>3232>54.+"32>54&#" IkF#^dLKd_#Gj )*#-.[] $"/\Q%A͋*G\3( @F,E/0`a%H=1(2;"-aCuGM4>32#"."$&546$32#4.#"32674.+5!#" **  ** qV[ rq83E(@hKt46zŒ;o+.="4&g$0 0$$0 0Gln#>T1!5%0^K/UT J-7 VV ;00./5k4>32#".#4.#"#".';2#"&54>7.5467.54>32>3232>54.+"32>54&#" **  **  )*#-.[] $"/\Q%A͋*G\3( @F,E/0`a%H=1(2;"-aCu; E>73#"$&546$32#4.#"32674.+5!#" (/0ZV[ rq83E(@hKt46zŒ;o+.="4&gVDJ PTP ln#>T1!5%0^K/UT J-7 VV ;00./5! cx#5>73#4.#"#".';2#"&54>7.5467.54>32>3232>54.+"32>54&#" (.0Z )*#-.[] $"/\Q%A͋*G\3( @F,E/0`a%H=1(2;"-aCN sX>73#.'#532>5!;!532>54.+5!#"!4.+5!#";:9229:P;v./t:P#=-f->"#=..="T">--=#T#=..="FLQQ""QQL"e11e"V :0 0: VV :0-7 VV :0b0: VV :0-7 V%O>73#.'#!532>54.+5!3632;!4.#"3L:9229:P;v./t:P#=-.="y \W\0*:"5V>@]=.="}LQQ""QQL"e11e"VV :0J-7 V>=/ai0: VChH%/W{KP-7 N KO;!532>5!;!532>5#5354.+5!#"!54.+5!#"35!H.="#=-f->"#=..="T">--=#T#=.of-7 VV :0 0: VV :0ds-7 VV :0kk0: VV :0kd#B%!532>5#5354.+5!!!3632;!4.#"3L#=-.="y^ \W\0*:"5V>@]=.="VVV :0a-7 Va=/aiE0: VChH%/W{Ky-7  1?2>73#".#"#>32532>54.+5!#";$% \4N77YMC!$ \5O77YMCJ#=..=#T">-->"'/WD((1('/VD((1(PV :00: VV :00: V82>73#".#"#>322>54.+5!;!5% \4N77YMC!$ \5O77YMC"=..="n->"^'/WD((1('/VD((1( 7--7 V0: VVN#!5!532>54.+5!#";R#=..=#T">-->"@yGV :00: VV :00: Vug!5!2>54.+5!;!5SR"=..="n->"y 7--7 V0: VVND1".'332673532>54.+5!#";xIkF#^dLKd_#Gj#=..=#T">-->"+-Lf:KAAK:fL-V :00: VV :00: Vu*".'3326732>54.+5!;!58IkF#^dLKd_#Gj"=..="n->"-Lf:KAAK:fL-} 7--7 V0: VVN=4>733267#".532>54.+5!#";(DW/u D7$&4@&),)AhI'g#=..=#T">-->"0VG2 (;N1"1 o 7UEV :00: VV :00: V/u6J4>733267#".2>54.+5!;!54>32#".g(DW/u D7$&4@&),)AhI'"=..="n->" **** 0VG2 (;N1"1 o 7U 7--7 V0: VV@$0 0$$0 0NG34>32#".532>54.+5!#"; **  ** #=..=#T">-->"$0 0$$0 0[V :00: VV :00: V/uJ72>54.+5!;!5J"=..="n->"V 7--7 V0: VVNX&-./9&MNs2>73#.'#32>54.+5!#"+I:9229:P;v./t:P`BgF%.="T">-H~b#FLQQ""QQL"e11e"J%Wl-7 VV :0#m.E!+>73#.'#+532>54.+5:9229:P;v./t:P73#>54!" ;#".';!532>54.+5!#"d (/0Z#!, 23#AAE(;m9gZC&->""=..="T">-VDJ PTP 6&;0$TT1G-QSV*G70: VV 7--7 VV :0%; H>73#;#".';!532>54.+5!>54!" (/0Z5iEYsTF+͗.="#=-.="y!+ 13GPVDJ PTP XkRVV )ODAp-7 VV :0J-7 VW*05%8*!VVd[%J< ;#".';!532>54.+5!>54!"5iEYsTF+͗.="#=-.="y!+ 13GPkRVV )ODAp-7 VV :0-7 VW*05%8*!VVd[Ns&0wRe&PwQN; ->73#532>54.+5!#"!2>?3  (/0ZD#=..=#T"=..A*kVDJ PTP V :00: VV 7-!5B!H;` $>73#2>54.+5!;!5 (/0Zn#=-.=".=#VDJ PTP  :0J-7 V0: VVN ->73#532>54.+5!#"!2>?3` (/0F#=..=#T"=..A*kEJ PSP V :00: VV 7-!5B!H $>73#2>54.+5!;!5 (/0F'#=-.=".=#EJ PSP :0J-7 V0: VVN54>32#".532>54.+5!#"!2>?3p **  ** #=..=#T"=..A*k$0 0$$0 01V :00: VV 7-!5B!H-,4>32#".2>54.+5!;!5C **  ** #=-.=".=#$0 0$$0 0 :0J-7 V0: VVN)74.+5!#"%!2>?3!532>5N.=#T"=.@.A*k#=.Hp0: VV 7-Zv!5B!HV :0[o9 4.+5!7;!532>55.="->"#=--7 VnwlC0: VV :0NbsNs&2w;R9!&RwN; 8>73# ;!532>54.+5!4.+5!#" (/0Z->"#=..="w.="#=.VDJ PTP M0: VV :0-7 V-7 VV :039;^ D>73#!532>54.+5!3>32;!4.#"3 (/0ZK#=-.="K GOY1QY/*:"5V>F_:.="VDJ PTP VV :0-7 V9I)/ai0: VChH%6\xBP-7 NsE3>73#.' ;!532>54.+5!4.+5!#"P;955:<P:9229:~->"#=..="w.="#=.s,1331,LQP##PQLM0: VV :0-7 V-7 VV :039!Q3>73#.'!532>54.+5!3>32;!4.#"3wP;955:<P:9229:#=-.="K GOY1QY/*:"5V>F_:.="!,1331,LQP##PQLPVV :0-7 V9I)/ai0: VChH%6\xBP-7 'RCN9+532>=;!532>54.+5!4.+5!#"'NuN/1L5-=##=..="w.="#=.m.a%WlM0: VV :0-7 Vo-7 VV :09L^=%!532>54.+5!3>32+532>54.#"3`#=-.="K GOY1QY/8eS 2L45V>F_:.="VVV :0-7 V9I)/ai#m.a%WlChH%6\xBP-7 s{+!5!#".54>3232>54.#"R^TPPT-drrc,,crre-@y$llkk뫘WWVVq-g'!5!#".53232>54.#"sRo{Ao{A CkMMjBBkMMjByFאEՐru<3232>54.#"IkF#^dLKd_#Gj:TPPT-drrc,,crre-+-Lf:KAAK:fL-llkk뫘WWVVq-!5".'332673#".53232>54.#"NIkF#^dLKd_#Gjo{Ao{A CkMMjBBkMMjB-Lf:KAAK:fL-NFאEՐru<73!5>73#".54>3232>54.#"0/* '29:7 0/* '29:7TPPT-drrc,,crre-+!LPN"18;82!LPN"18;82llkk뫘WWVVq-!/C5>73!5>73#".53232>54.#"0/* '29:7 0/* '29:7Ao{Ao{A CkMMjBBkMMjB!LPN"18;82!LPN"18;82NFאEՐru<?3!#".54>32!#'.#!!!267.#"0E.j598PP9949 j +A.i75.#""!4."&'!".532>32!32>77CkMLiB BjKMjBsz 4U%:ycn;V"HrS5[J9,Z'ru<:spno7:sWQ`4hdFאbddb>{y^co;(3&G<(NLs&6wRD!&VwN;L :G>73#;#".'#;!532>54.+5! %32>54.+ (/0ZZ4bA`{V=#.=""=..="' 5Vl6ZxH"LyWVDJ PTP RRV(H:Z-7 VV 7--7 VR{Z</(PxPRsI!D;^ =>73#!532>54.+5!3>32#4&#"; (/0Z#=-.=";' *=ZDpm.H40<&<-.="9VDJ PTP V :0-7 V.Q=#NG 6'UK+G\a`'-7 NLsGT3>73#.';#".'#;!532>54.+5! %32>54.+BP;955:<P:9229:-4bA`{V=#.=""=..="' 5Vl6ZxH"LyWs,1331,LQP##PQLRRV(H:Z-7 VV 7--7 VR{Z</(PxPRsI!D!J3>73#.'!532>54.+5!3>32#4&#";P;955:<P:9229:#=-.=";' *=ZDpm.H40<&<-.="9!,1331,LQP##PQLV :0-7 V.Q=#NG 6'UK+G\a`'-7 bs&7w;R\B!&WwbsT>73#.'#".546332654.'.54>32#4.#":9229:P;v./t:Pdg4MG!BfH JyZ_^.Cxa\b3WJ6XA;]@" KzYZb4GFLQQ""QQL"e11e"*Kk@>L@vZ6}8VIC%'YmTX_2&@S-BC0]I.!=V5=]KC$%Re}Oaj7\B!V>73#.'#".54>332>54.'.54>32#4&#":9229:P;v./t:PM}X0'-4U>7T99bJOuL&7fWIpL&MGU[4J/=aDQtK$:jLQQ""QQL"e11e"7Q6)7 6^G)1E)&702 #ALaCFlI&3E&8Cgr,<$'90-"BNb@PxQ(b&7{\B\&W{{bsX3>73#.'".546332654.'.54>32#4.#"P;955:<P:9229:dg4MG!BfH JyZ_^.Cxa\b3WJ6XA;]@" KzYZb4Gs,1331,LQP##PQL*Kk@>L@vZ6}8VIC%'YmTX_2&@S-BC0]I.!=V5=]KC$%Re}Oaj7\B!Z3>73#.'".54>332>54.'.54>32#4&#"P;955:<P:9229:M}X0'-4U>7T99bJOuL&7fWIpL&MGU[4J/=aDQtK$:j!,1331,LQP##PQL7Q6)7 6^G)1E)&702 #ALaCFlI&3E&8Cgr,<$'90-"BNb@PxQ()&8{,'F&X{F)s<3>73#.';!532>5#"#!#'.+DP;955:<P:9229:->"//"=.-=' j  j &>.s,1331,LQP##PQL0: VV 7-q.="XfX"=.' +>73#267#".5#5267>73!! (/0F %> *16NpH#%Y"#+^ UEJ PSP Z !JzXR#&iOuNib)+!!;!532>5!5!#"#!#'.+Z->"//"=.V-=' j  j &>.dI0: VV 7-dL.="XfX"=.'F'%267#".5#53#5267>73!!3#%> *16NpH#%Y"#+^ UXZ !JzX+`!R#&iOu`ib1U2>73#".#"#>32".54.+5!#"32>54.+5!#"% \4N77YMC!$ \5O77YMCyF.="T">-3[}KYU).="">-A'/WD((1('/VD((1(<3o}-7 VV :0Y}N$0UuF/-7 VV :0fq</Q2>73#".#"#>32;!'##".54.+5!32>54.+5!'% \4N77YMC!$ \5O77YMC0.=" KT\2Q~V-.="o1S>Da?-=#n^'/WD((1('/VD((1(-7 V:H).bi-7 V=ChH%0WzJ0; V9!5!".54.+5!#"32>54.+5!#"-RyF.="T">-3[}KYU).="">-A@y33o}-7 VV :0Y}N$0UuF/-7 VV :0fq</g5!5!;!'##".54.+5!32>54.+5!R.=" KT\2Q~V-.="o1S>Da?-=#nyx-7 V:H).bi-7 V=ChH%0WzJ0; VDG".'332673".54.+5!#"32>54.+5!#"IkF#^dLKd_#Gj\yF.="T">-3[}KYU).="">-A+-Lf:KAAK:fL-3o}-7 VV :0Y}N$0UuF/-7 VV :0fq</C".'332673;!'##".54.+5!32>54.+5!{IkF#^dLKd_#Gjs.=" KT\2Q~V-.="o1S>Da?-=#n-Lf:KAAK:fL--7 V:H).bi-7 V=ChH%0WzJ0; V']#".54>324.#"32>".54.+5!#"32>54.+5!#"&CZ33ZC&&CZ33ZC&o%11%%11%yF.="T">-3[}KYU).="">-A7S88S76T88T6!//!!//3o}-7 VV :0Y}N$0UuF/-7 VV :0fq</'Y#".54>324.#"32>;!'##".54.+5!32>54.+5!e&CZ33ZC&&CZ33ZC&o%11%%11%A.=" KT\2Q~V-.="o1S>Da?-=#n7S88S76T88T6!//!!//\-7 V:H).bi-7 V=ChH%0WzJ0; VsU5>73!5>73".54.+5!#"32>54.+5!#"0/* '29:7 0/* '29:7yF.="T">-3[}KYU).="">-A+!LPN"18;82!LPN"18;823o}-7 VV :0Y}N$0UuF/-7 VV :0fq</!Q5>73!5>73;!'##".54.+5!32>54.+5!R0/* '29:7 0/* '29:7.=" KT\2Q~V-.="o1S>Da?-=#n!LPN"18;82!LPN"18;82-7 V:H).bi-7 V=ChH%0WzJ0; VS4>733267#".".54.+5!#"32>54.+5!#"/(DW/u D7$&4@&),)AhI'yF.="T">-3[}KYU).="">-A0VG2 (;N1"1 o 7U13o}-7 VV :0Y}N$0UuF/-7 VV :0fq</JO4>733267#".;!'##".54.+5!32>54.+5!(DW/u D7$&4@&),)AhI'.=" KT\2Q~V-.="o1S>Da?-=#n0VG2 (;N1"1 o 7U$-7 V:H).bi-7 V=ChH%0WzJ0; VNsM>73#.'#>7>54&+5!#"# #.+5!#">7':9229:P;v./t:Pu-'CD/'-$ǽ ".4/>= .)FLQQ""QQL"e11e"fGJcx  5/VV ">3?{ * VV/3$q]JPco!T>73#.'#3>7>54&+5!#"#'#.+5!#"3>7`:9229:P;v./t:Po  (f CE,#%ޢ ",=> `  LQQ""QQL"e11e"%USJ3cJ;50VV #>3ч * VV$20%XWLEOR%ksS>73#.'#532>5.+5!#">?>54&+5!#";V:9229:P;v./t:P/"=.!(3L# $2 !$@;<'(+.="0FLQQ""QQL"e11e"V 7-) VV  :?{06=A #?--VV%=.0: V!O>73#.'##"+52>7.+5!#"3>7>54&+5/:9229:P;v./t:PV+#$@FSj[hmI!+>=  ' CDLQQ""QQL"e11e"V $>1ckF*a>lV ) VV03##SQH-J.50VF&=kDRJfs&>whRV!&^w%JfG+4>32#". !2>?3!5!"#! **  ** >.>& j C-=& j $0 0$$0 0.="XR.="XfV+4>32#".2>?3!5!"#! **  **  $/ V R(4! Vw$0 0$$0 0".=!/R*>)#TJfs03>73#.' !2>?3!5!"#!@P;955:<P:9229:.>& j C-=& j s,1331,LQP##PQL .="XR.="XfV!03>73#.'2>?3!5!"#!P;955:<P:9229:$/ V R(4! V!,1331,LQP##PQLo.=!/R*>)#Tf)%3532>54>32#4.#";#=-2_TPmD]K 4'WB.=#MV :0\`1&4 8;;.&0: Vs%)654&5432! !  !  Xu}NO8db\#^B1fZmde}q654&5432! ! 2654&#"Xu}1%됆#^B1f]z;7/s%2>32;!532654&#"! ! 324&#"8zJ^aGq}}O8GsީžyFFVVKI5bd+q^!->32;!4&#"#"3232654&#"0k?]IMTP8tzcKIVwn$lq#&/2!#;!532654&#"#"&546332654&++GaCaG:O9<%891lEDVVJIEFHA"0H5wp´%y0<3>32#"&'#;!532654632#4&#"32654&#6jl1GaaGnLR73F7|vJ/[/m`[YEEVVKI[G3BWb^N L+4#"3 ;#"&'#;!532654&+5!32654&+aG 9b:FGaaGGaTÐ`DEƈ0C[IVBw̰EDVVDEDGV:h'$67#"&546$654&#""&546323>u{st}KWߴjdS &\ΑǕ~hzCBcȫӕtusZH\'$67#"&54>54&#""&546323T%Ũ¿^ZbXHL}~nfVD (Pt]_]OUrg=8Vl{WSSO/u}%&5#"&546323267#&#"3265b3Dk~{TG%> m+C6:>A7A8qqJibZQEL9>EC@'mF($67#"&5467326=#"&5#52673!!3D> ilHT/"=>&V#^ UGXʘ88%KIVRtuNib$#'.+;!53265#"#"&5463 j UJGa//aGCG%4GX[MIJVVDEqK>"0R6yx'%3267#"&5#52>32.#"!!UG%> i1a)kNHS0">= #ibZ Rm88%LHu)3267#"&5#"#!#'.+PT)X#HU j  j SMǶg\` M[XfXWQ%)'# 4+5!#"!2654+5!654&5432TV?Xu}VV/VqB1f</()654&5432;!'## 4+5!3 4+5!7Xu} aonoB1f73#R/+k-bdM:e2)N #5>73N0*k.bH;c2-q3267#"&=3N?" =+DRNNZJH^$654&#""&54632#"&546331vYU[[ΖسcSIqRuw:G^sql>Mpq^=4>32#".".54>32#4.#"3267 **  ** f|EE{a@f@\['C4;_D$_#,WE$0 0$$0 0?՗݆84O5G:0VA%,lP? (#F8#H^14>32#".654&#""&54632#"&54633E **  ** vYU[[ΖسcSIqE$0 0$$0 01uw:G^sql>MpbT-^>73#&#'032C![ba'8BGD=  )4632#"&%4632#"&'>73#8)#:&)88(#:&(8 ,;@Ds60 &522560 &522ILSQ!PYT&%YXH^4>32#"."./""/."&5!!5&%4""4L')YX',YXD'-YX{&3YX'=YX&{YX&Z%N&NT!)532>54.+5!#'.#!;#=..=# k,K<.="DV :00: VH+D0-7 ?bN)Jf>N ,s{/C;26?3#'.+"##".54>3232>54.#"' %<.3RQ VV QR3.<% VTPPT-drrc,,crre-'# 3+''+3 #'qũllkk뫘WWVVN-N/h) ;!53254&'.';!532>7 "-/{-/  DD/ ',# * VVb$[KK`n/40VV #>2N31N2V#?)33!2>?3#'.#!"#!;26?3#'.+"# k'?..?'k>j(>.l.?'k 3 &<.pRQ WW QRp.<& V=8**8=>7**7>{'# 3+'{'+3 #'s{3N1!#";!532>5!;!532>54.+N">-.="#=.->"#=..="V :0-7 VV :0g0: VV :0-7 N4/%2>?3!5 5!#'.#!N0D- j  k +A.V/{4H*=DB;X"<-)8=D JW32>54.+532>=#".54>;54.+5!#"32+;#";q/]T'"LyWMx#=-DezV6<}q-=#J#=.p|=6VzfC.=#yNWxL"'T]/s.^aV\/V :0)&C]lw=dvA0: VV :0Avd=wl]C&)0: VV/\Va^.7<O32>5!"+;!532>5#".=4.#5!;4.+5!#"/]wEs">-)GmeD->"#=-DemF)-=#rEw]0-=#J">-^+\aV :0=thV?#0: VV :0#?Vht=0: Va\+o0: VV :0V;4>3232>?3!>54.#"!3;'&PT0D-j]Q$,crre-%Q]k-D0ٚTTم-0"C Ixgqy@@yqgxI TfC"0-IF&-k&RF&=kDRq^&Yo^&Y5^&YN^&Y%N&Zq^*;!".'##".54>323>73;%2>=.#"3F.;L`32#"&'2654.'#"&54632>54.#"Dw^#.8GGsR-=sfi-{]>=IRsq_*1SD50 CbZvv;2*BSyV7 " #)z;aE'(IhA-,"+^=2>54&'4632#"&54>7.#"'>+G>;?J.AgG%26D3)5 $=Q[`-1C(**%"@?>=>))39>P"R@D?Y?<#8G$Jv)3avB?48lbX%ױ~F >!o-F4.'326#".54>7.54>32#4.#"q2Qf4:kP0&IiCR=bER^4EmgG@pW3X@$7bQUU+PG6M01G-JkW!HtmFvV0,FCF,4m{XC=unjxR!ITa9FlI&(=L$A@3[C',<o\L>32#".'32>7#".54>75.54>32#4&#"TYa**'%-?6+.+%@0Y@* 1@L)FlI& 5E&A:gv5Go`5>4>7.'7>32#5>54.'.o;pf,^]Z(: Ubk68>@-1WQ'FsT=bE&%MvQ,:#5]JW\0[*8"I5,!##@9aiTkG, %4I26k\Dk './%32#.54&#"#  s"/ 9Kb?YW*  p[F_;1tpa*[6)K9"/ai&gfVWjr/N6e[q1)#".54>322>7!"!.1;xxu77vxw;!HjF$#GlKGjH&>%Fgmn'%llZZ`T瓓TJ3267#".5UG%> *16NpH#JibZ !JzX!%T44.+5!>32.#";#".'#.="yPl[TR-KM 7-*HC@#J4jEYuUE)ɛh-7 Vc2:@yc>K8-$9)VDTTV (PEVB)0.#".54>32;#".'.'##/;BH)9V3M4>eSCAEF 0@ZF8*"'xV 3 ,0%%Wl3j`-VAyd\hRZY"Jx1^,#.#"'>32>54&'46321'E]mv;m#A=;:;%%(i>,D;7>J/BpR.36@3)7 J1ٳG @#3#T@D?Y?<#8Go`5e5>54.'.54>75.54>7.'7>32#>32#".'5,VT=bF&&MvQ,:#5]JWl=>mW=sY6'CX1&UTN 9P\b/?HJ!-'.W~OIS'@T.-//(2,@* 3kX9CX>* %4I26k\Dk './%6WXSe" '6H/-QH>(I' !!-3wK%>1$  !$Srq-^SBJ:#3267#".54>767!+52>7#"#4>3!#+'U.-J4 y?dHV(C5% ;N;:V6W>|5pk`%4>! ^:\A%eqw8YV*VGx[I8=lR0q^*#"&'#4>324.#"32>q=uk[B6qwoI%KrMMe<?`8^C%Ѕ?,2[7xD}DMܐs{A:l]w6C/iq`^55>54.'.54>32#4.#"7"KvU3!!32654.'#"Ho~E4[|PE=)*OuK&-)MxKI|tW5ZoJZl=µQ{['bBJ'!3267#"&54>7#"#4>3!(*(6&R#)2='*7-=$V&Eb;l4K.Z  Af0?$]S&%NZ,".54.+5!32>54.'4>32ugf22@"yw_yF#8F"!+5M1,Fj:ne-7 V`KkV^8 /!OUW~\4q#^#4632#$47>54&#"a\{봬7t_9H) &#1ykFP/#.#"'>32332>7#".'ۤ$+  '(c>-?0%w)g%+  #)^>-@0%T'E4 B#- ?\=Z'E4 B#,>]=%0%>54.'4>32#.54.+5!3H`T%.A'!+Q_+Hh[{}{=2@"y{s R}^V`@.Oz^@ ;nd-7 V` q^N".'##".54>732>7.5463232>54.'715ZH4 5GZ5Ye6'F`9V"8'#GJ#VJJV#JG>9\B#0di[x32#"!2#&#"326532654&#)F!#爖“55XadgZ/72Rv]n>SlpŻ`X,4GJ;L O.#"#".54>54.+532324.'.54>323f 5HX0KW+eH@ăo`*  $B@T0 6S9?(TYetLu~B]O=rX7\; w7^~G)^XL&V0C)#OSV*3XA&SO   EqL>iM+UߊW7J%3!532>=4.'.+532>7>32#.#"0/"=."6DC<5i!'J:$T=iQEz3D~2Tk>O?1"->8cO"]kusm.0: 1'Y7F&kDRq# +#.5%34.'>#{ȋJ {}ȌJ%Q^^Q%%%Q\]Q$' &Mω HL͈jtC ArjirAj CtB-3^".'##".5467#"#4>3!2>53+32>7.5463232>54&'5ZG55HZ5Yd6PA-=$V&Eb;-=%V&Eb;PAP6e/2#54.5q;yAjoZ'gtZM{&.xRܜc% *({@挌Nve12a]L54&#".54632!3267#"&5_]FH)# NG`iLFOb$*,]TYcf`04 , (GniMrfp*.' -4HpgV!&5475654መ#Sn=nihGBuv]\GCMyw19ñ"WLFNF! .#""&54$3 !524&''.'3'8`JQ*W&/#QJB?rvmn;H4^6Z(%Z.'5'654&''%&''Dم5@KMM ^p8]-5b\hpaq]!W$#""&546323265467##"&'#"&54&+5!#"32654&+5!#"32654&+5!#"#;XNNJȎl ;zy2;GaTaGklGaTaGv_H`TaGe{>3hi"A"slnstmDDGVVJIDGVVJIώۨKHVVJIJ9VJN65467##"&'##"&54&+5!32654&+5!32654&+5!#"#"$#".546323ti 4vp"3y>] ehoot?]ehoszEa']@۾~IKJS}js7K&aY_[`ZJJV=KIV=DFVVHLcjK=GZRV332674&+5!#";!53265#"&5432#4&#"!Q`32#"$#:P\xz{MDGa`HGaTaGUa;JaK99H`8&#839IJVVHKEDVVJIRB=/{J84&#";!532654&+5!3>32#"&#""&5463239{GaaGH\ n -qL,4EE{N}eu6IJVVDEGEV7aXcC<'-?Uh/#"&546$654&#";#"&54632326u{e31F9UU! &\ΑǕ~k~m[,.-=]Oͦӕtusd)\.3#"&546323267#"&54>$654&#",3532#.#"' x5V: 3*MG)V'^"%35.#".54632>324&#"' VKO*'E\d?>=+4ESqjZE4*>>?X_\ s{&#">3 ! !26732654&#" m p ?uUBl?-j$:uq+s*+.5467#"&32673#"&#"32654&#UurLzAknX&it{%,0־ A*y?ػ!h/54&+5!#"32#4&+;!53265#""&5463GaTaG[QZlJGaaGGk^Q[JIJVVJIPRG>fZIJVVJIYg>GSO!!!53265#""&546;!#"BV|aGJNG NL9o]@J^VJI7D96WMVFE\^!3#"&5467#654መq:=fuYK}.*}CI]`;6+dJ9Pmyc.54&#".'#;!532>54.+5!3>32Pk@AkQC`=v=7je;`M;.="">-.="y:L`32#".A\Pȩ{L\+#//##//#qLLS6@=vB?q}f(6 6('5!!5Ns&)DRNF&)k3R)E+532>54.#";!532>5#"#!#'.+>325e]/1L4)Kf>-UK=->"/"=.-=' j + j &>.BO[1pw=DŽh+`!QefH 0: VV 7-q.="XfX"=.  *fNTs&fw}Ru22#4.#"!!32>7#".54>ig30A&9[Cof355glKsXC5lrPT#>T1!5%0^K/NڍdӗS0?" &'QB+lnb7N-IF&-k&R.ER#"32#!532>5! #"&546332>7>54.+532>54.+'/!=.Xф<=|!=.%1=K\9RR0* &421 -;"bWyL"'U]CV 3*J;kYZl;V 3*yf]N!KD5H!5!;!532>54.+5!#"!4.+532>54.+!=.Xф<=|!=.->"#=..="T">-H-=#bWyL"'U]CV 3*J;kYZl;V 3* 0: VV :0-7 VV :0b0: V%IpKVyL#)yI!532>=4.#";!532>5#"#!#'.+>32;%#=.)Kf>-UK=->"/"=.-=' j + j &>.BO[1pw=->"V :0fH 0: VV 7-q.="XfX"=.  *f0: VN{s&wRNs&DmRf@P#".'332>7#"+532>7.+5!#">7>54&+5!B1]dgX)2L5,I6"')!!:;CVnIp4cUA/!)= >=#3 CD+@>fI(&Hg@9I)+H5 $>0PwS5 `7L.) VV/3$H? >@G*.5/VNR=732>54.+5!#"!4.+5!#";!"#4.#!N"=..=#T">-\.=#T"=.->"V7V;^$B\8iV 7-0: VV :0g0: VV 7-0: V1irri1%N%2#'.#!32#!532>54.+532>54.+) j '>.ˁЄ<=|"=..=#WyL"'T]mX"=.;kYZl;V 7-0: V%IpKVyL#N&NTfR5 4!654.+5!#";#4.#!"#!9KSV(IkA2A"5'->")^*NpGFqN*^PeRA7w!VV 7-#0; ri11irN)4.+5!#"2>7>7>32.#";#".'.#;!532>5"+53267>7.'.#".54>323.="">-)4$ L9'OWd<-@'$*)9XH->""=.HX9)>XbEq0-;M6'*1 ?m<*$'@-54.+532>54.#"".54>32#".5463/HxU/-YVDuW2AhIVm>%@0:spkH4YxE9oIYno1\P#HoZ"N~\@jJ)h,SuI<^B"2Tn= 3';eI*(TYPzZ; $Mbwj1/IZ,LL6iS3NC!532>5;!532>54.+5!#"54.+5!#";#=.R->"#=..="T">-.=#T">-.="V :0+)0: VV :0-7 VV :0)0: VV :0-7 VN@Y#".'332>7532>5;!532>54.+5!#"54.+5!#";1]dgX)2L5,I6"=#=.R->"#=..="T">-.=#T">-.="@>fI(&Hg@9I)+H5V :0+)0: VV :0-7 VV :0)0: VV :0-7 VN{[.#";#".'.#;!532>54.+5!#"2>7>7>32J#*.?^H->""=..="T">-0<' L9'OWd<-@'B0#* v|?`I6,A*WMV+K;d.7 90: VV 7--7 VV :0A qM{W/"0PA"&546332>7>54.+5!#";!532>5! RR0* &421 -;"#=--=#"=.%1=K\KD5H!7.+5!#">7>54&+5!f')!!:;CVnIp4cUA/!)= >=#3 CD+` $>0PwS5 `7L.) VV/3$H? >@G*.5/VDx7<NR74.#!532>54.+5!#"!4.+5!#";}*QuK "=..=#T">-\.=#T"=.->")Rri1V 7-0: VV :0g0: VV 7-0: +A#"&54.+5!#"32>74.+5!#";!532>5-7divI.="T">-p3\]_6-=#T">-.="#=-.#J-7 VV :0}t(0: VV :0-7 VV :0NTC%4.+5!#";!532>54.+5!#"!4.+5!#"-=#T">-.=""=..=#T">- )57'fg0: VV :0-7 VV 7-0: VV :0o*6 VV !9-NRbG#4&#!532>54.+5!#"!4.+5!#"!4.+5!#";b^w"=..=#T">- )57' -=#T">-->")RV 7-0: VV :0o*6 VV !9-g0: VV :00: )V%2#"32#!532>5#"#32>54.+D"=.ф<=|"=.-=' j }WyL"'T]mV 7-R;kYZl;V 7-o.="Xf%IpKVyL#N#0P#"32#!532>54.+532>54.+532>54.+5!#";D"=.XЄ<=|"=..=#cWxL"'T]D#=..=#T">-->"V 7-R;kYZl;V 7-0: V%IpKVyL#7V :00: VV :00: VN#0#"32#!532>54.+532>54.+D"=.Є<=|"=..=#WyL"'T]mV 7-R;kYZl;V 7-0: V%IpKVyL#\s0".546332>7!5!.#""&54>32}f+\PAgI]]05*T]CgF$L\7orהOQ.HY,LL6iT4[܀dڕN/Ne6B?3^H+_뵭lN6J#".'!;!532>54.+5!#"!>3232>54.#"Q䓙N->"#=..="T">-5 TޓQ*\ij[))[ij]*ݩlh 0: VV :0-7 VV :0b_k뫘WWVV =#";+532>7.54$)#";!532>5`d_V(%MtO"=Tx\ 8323bN0"=..=""=.T%NzUItR,`A9G)V)=*<]\ʿV 7- -7 VV 7-f)^Eq+'94>7>733>32#"%4.#"32>q)GmgD|bC A;okrK=YrF:x{CmQQk>QmC{q˯lE "Uc8 5e{/R=#ʊG@lm77ml8o/RJ#.;!2#!532>54.+2>54&+32>54.#/T!=U5AgJ'4il"=..="TDa>>W65W?J=[?% &=W:CsT/V 7--7 j6V54.+5d  0#.="/"=..="JD0@&-7 VV 7--7 VR}J-87>7>54.+5!#"3#'.'!"#%!! A" .=""=.0&sd &7B"0G0 dX$ #^2}*w|s')1 VV 7-u>: NjACkM Wk^q^IV4.+5!#"2>7>7>32.#";#"./.#;!532>5"+5326?>7.'.#".546323+)5 6)) G5#=CU;WY$'-,.,&$`.k/eEHNiL:d3BV;)6 5(:WB3d9LjNHEe/k.`$&,-,-($YW;UC=#5G )h-7 VV 3*  jO6V0#XUVNV+K;-6 -7 VV :0) 6-;K+VNVUX#0>(';' * -8E!%2654&+532>54.#""&54>32#".543vqp4N3+G3glQQ,\bXa37L.5Y@$2kunS 8UNphao5G)(G5vg:A%F5 %Ed>1UC2 )>S7Gz\4*AN$6]D'/RJC#";!532>5;!532>54.+5!#"54.+5R"=..=""=..=""=..="F"=..="JV 7-u-7 VV 7- -7 VV 7--7 VV 7--7 V/RY#".'332>7#";!532>5;!532>54.+5!#"54.+5J1]dgX)2L5,I6""=..=""=..=""=..="F"=..=">fI(&Hg@9I)+H5\V 7-u-7 VV 7- -7 VV 7--7 VV 7--7 V%VY!"./.#;!532>54.+5!#"2>7>7>32.#";NpS@e,;P:.="%">-.="%;!=.,! F5#=DT;WY$(2T4,&$0H;0k0pE+K;-6 -7 VV :0-7 VV 3*  jO6V5!#"&546332>7>.=""=..=""=. #:GY9RR0* &321 u)1 VV 7-u-7 VV 7- ^E]N!KD5H!5###;!532>54.+5! !#";"=.^.="!"=..="DR"=..="V 7-op-7 VV 7--7 V5!;!532>54.+5!#"!4.+5R"=..=""=..=""=..="1"=..="JV 7-u-7 VV 7-%-7 VV 7--7 VV 7--7 Vq-^S/)J1#";!532>5!;!532>54.+5)"=..=""=. .=""=..="JV 7-u-7 VV 7- -7 VV 7--7 Vy^Tq^G)7J##'.+;!532>5#"#+ d  0$.="/"=.#0  d JD0@&-7 VV 7- &@0DHJ]qL*5@2>=.5%54.+5!;!54.'>#=-~ƊH.="r}ƉI->"ˈ#N~[[~N#B#N}Z[}N"h ;0 O̅ -7 VF PɄ0; VVgtE  DrgfrD l Et J\/R=J8#'.#!532>54.+5!#"!4.+5!#"3=d &8B"<"=..="F"=..="E"=.(5/RNlBV 7--7 VV 7- -7 VV 7-{*4 JC!532>5#".=4.+5!#"32>74.+5!#";"=.1Z\b;DjH&.=""=.SQ'IJR0.="2"=..="V 7-#2$%Da<-7 VV 7-GL "-7 VV 7-u-7 V/bJC3532>54.+5!#"!4.+5!#"!4.+5!#";/"=..="%"=..=""=..="%"=..="V 7--7 VV 7- -7 VV 7- -7 VV 7-w-7 V/RbJJ'.#!532>54.+5!#"!4.+5!#"!4.+5!#"3 &7B""=..="%"=..=""=..="%"=.)5/RNlBV 7--7 VV 7- -7 VV 7- -7 VV 7-i$- =1J%0#"32#!532>5#"#2>54&+h"=._M4il"=.#0  e Ea=JV 7-@t_CsT/V 7- &@0DH7X>hXZ/XJ#.N#"32#!532>54.+52>54&+#";!532>54.+5u"=._M4ik"=..="Da>"=..=""<..<"JV 7-@t_CsT/V 7--7 V7X>hXZV 7-u-7 VV 7--7 V/RJ#.#"32#!532>54.+52>54&+u"=._M4il"=..="TDa>JV 7-@t_CsT/V 7--7 V7X>hXZR}^-2#".5433267!5!.#""&54>dp54.+5!#"!63232>54.#"oguB.=""=..="1"=.) ju?3=cHGc=>cGHb='BɈ-7 VV 7--7 VV 7-EՐru<";#532>7.54>3!#";!532>5#?V55V>3Pz^-'%/`M11el@"<..<""=."9J(,O;#*>)V/!7 +GcADlK(V 7-w-7 VV 7-q!&IDq&Ik#7G3532>5#5354.+5!!!3632+532>54.#";%#=-.="y^ \W\08dS 1L55V>@]=.="V :0a-7 Va=/aiLm.a%WlChH%/W{Ky-7 V/!&wq^.".54>32#4.#"!!3267Df|EE{a@f@\['C47[B(7'KrN_#,W?՗݆84O5G:0VA%']vnb`/P? (#F8#\B\W/uM v&kNfJCN4.+5!#"32#!532>5##"&546332>7>2>54&+.=""=._M4il"=. #:GY9RR0* &321 Da>u)1 VV 7-@t_CsT/V 7- ^E]N!KD5H!hXZ/JGR#"32#!532>5!;!532>54.+5!#"!4.+52>54&+5"=._M4il"=..=""=..="1"=..="Da>JV 7-@t_CsT/V 7-%-7 VV 7--7 VV 7--7 V7X>hXZ#%!& w/R!& DP#".'332>7#"+52>7.+5!#"3>7>54&+51]dgX)2L5,I6"g+#$@FSj[hmI!+>=  ' CD>fI(&Hg@9I)+H5\V $>1ckF*a>lV ) VV03##SQH-J.50V/R=J=)"#4.#!532>54.+5!#"!4.+5!#";=P7B$ ^+I7d"=..="F"=..="E"=..="1irri1V 7--7 VV 7- -7 VV 7-u-7 ud)%# 32#&#"!2733 #""5463 !"ۙ{=HXu36dxmrIA1TjsPw^!654'432#&'# #"'632'Bwsisk>IɕA&"%\^t]WJ~~{ݧ5T{@V')'03 #!5325#"#7!54+5!#"!#'.#32654&+^%IYN`^^%o `Bh\m/mVN#^HVVJQ03/R"4+5!!!3 #!5325#52654!#+Tu#V`V`Nk{ZN1# !!!27# !;!53254+5!#"!!2Xvx'ͨT5G Vd7\~_ VVVVb>^~h/ ^/!;!53254+5!#"!!2#4#"!!!27# ר1)ζ 8 )U#:ۉVVVVr_jn}5Ou$#!53273;!5654'##!'&'Be{\`<ѕ+Vd>>+>3aI1'\VVoVVQ!97/uLJ%#!53273;!5654'##!'&'#ZdCNDlw.GqIgd3?1xD,B VVT{oVVC(<b) NJ5<353254+5!#"!3;!5654'###!5327!;!'&'NTk+Vddzg`<%=+>3YVVVboVVQ=7I1'\VV V/ub/J17#!5327!!53254+5!#"!3;!5654'##!'&'#ZeCMDs}1uѴw.GpIfd3J'D,B VVVVV{oVVC(<b)L14 32;#"&'.#;!5325"+532676;5! !`Z@Fo!LC˃"i\bd\h"ELoE-oru!Je?VQt`fDVVGctQVCaZlJ15675!;#"&/.#;!53265"+532673!GHL.:3+h-G!RX.Q@P/`J!H0o+<;%5 6 teeq3VF{[5CFVVGL.9WƄ=VE_wZN GJ4+5!#"!5!32;#"&'.#;!5325"+5326767!;!5325 !TirsZ@FnMD˃"i\bd[h"ELo%u!ՋVVbllaCVQt`fDVVGctQVCaZK* VVY/JDH67!!53254+5!#"!5!;#"&/.#;!53265"+532673!}1^KK':;+q8H"VR.Q?P/jHH0o+5?(5 54VVVee} [IV7V9CFVVGL>CƄ=V>fhiRjA3632&#"32$32&#"# 546$654&+532654! "54%&'=Pe}Z& mQlsӘZWx`4OqCp>H 0P /սn``5r!hυ"b+mJ>3632&#"32$32&#"# 546$54+532654#""547&'Pe}Z& gM1PNo[3NǠ`nӢ0vH>H -H :$uvjTV0ev(okY{$Fz%s{ ! ! 632327! #"$#"! O8+V2ywMQOI{q/{uOPOIdeomCL7/kL7q-^ ! 632327! #"&#"! L% U;>57/ T=>672 ;7/V'/V'P!#&+5!#"67>32&#"F&k3/{..0 ?yyD532&#"(j{H?#=B{{D$.2D4mVVc.}mqۘhB32&#"dpP^dpP^oF&k3/{..0 ?yyD532&#"pdpP^dpP^(j{H?#=B{{D$.2D4ن mVVc.}mqۘhB7654+59%@w=:%yTo-d{L *ggoln}V7654+57:7|z|=:%yTo-d{L *;7j/V`bD.LJ;}=IK9}xwd9E#"$#"#63235654&5432"54632!"'# 32#.#"!2733 #")}:` \G=pb`sT{ѧ{'SDH HFRɁpVpA@%?3*GjHIr~ hqJ}PjVhG#"$#"#63235654&543232&#""5463 #"'#"!2#4&#"327)~:` \G=pb`sLZRfP<ɱnkIɕA&"%\^t]Wgggg~~{ݧ5T{@V'u!4&# !273;!532=# !2~rVdV \5dVv%hVV^[~h@Oq^ !2#4#"!273#D-ȖϷx6`J3?s^P-yhy %'%7%7%LG㴁FGJ{J;{Z}9IĤ{#"5463!632# U`+7 Xb+9_k;%^h9)2$32#'&#"+5r9I\ ^<)fqVq5 &5432ac#L=L(*35 5654&5432ub`L)3,'Lu#"$#"#>323u)H(<\ rnQ*xq)-yyp) '1;EO&#"#632&#"#632!&#"#632&#"#632!&#"#632&#"#632!&#"#632&#"#632oK L/L~K L ~L/~L~KXXXXXXXXXX XXXXXX)} ")07'673'&'7%7677&'&'5&''67#67q +Pa2TCCk\EzҌhҌ1QFCnY#Ez )Ra2uҌF~+UCDmY +Pa2; )Ra2hFz)QGDmYҌNRX? :! 3327;#!5325;!53254+5!#"54+5!#"TwTBhRRTT?eUGG V+)VVVV)VV/R :! 3327325;!53254+5!#"54+5!#";#!JRyF1>jReVh VVVVVVw?D N33!!3 #!5325#32654&+N\%m1dmV㈡/R'3!!3 #!5325#52654!#+Tu`V`Nk{ZN&353254+5! '+;327'7654&+N?qR{fDmuIRLVVTw7!V7Uy^!0%'#"'#;!53254+5!363 '76#"32eRm9Tcfb{RyV4+8ĊVVjV-7i N%!!;!532>54.+5!2>?3.="D#=..=#54.+5!2>?3.="/"=..="+#0  d-7 VV 7--7 X&@0C/T)5325#534+5!#'.#!!!; k ]d>¨DVdVHkMd /J#'.+3#;!5325#534+5d =A/èJDj7&#"&543234+5!#"26632&#";#4&'&'d0[\0EZ5he,mcb}Q^]Qߪ}bcm,dj4[^HjH%\/9VV/\=VZ_O sqB7NjVVA6qsO_Ǭ?0R-VQ.#;!5325"+532?67&#"&5432354+5!#"26632&#";#'.')y{ j'd8|HZkb,R]bplIG IHlpb^R,akU)d O?W4͉VV)?LoRVJsi}h'VV(Uh}isuP\BVV!3#"5473254'2>54.+532>54.#"".54>32#".5463lɅ-'VBHxU/-YVDuW2AhIVm>%@0:spkH4YxE9oIYno1\P#HoyTXo"N~\@jJ)h,SuI<^B"2Tn= 3';eI*(TYPzZ; $Mbwj1/IZ,LL6iS3RBy\M!3#"5473254'2654&+532>54.#""&54>32#".543qlɅ-'V1vqp4N3+G3glQQ,\bXa37L.5Y@$2kunS 8UyTXóphao5G)(G5vg:A%F5 %Ed>1UC2 )>S7Gz\4*AN$6]D'NR4&#";#4&'&'.#;!53254+5!#"26632bm,ck4H^HjH.bTkR}sO_Ǭ?0dX39VVVVA1q%RV3;!53254+5!#"26632&#";#'./.%%;VItnb^R,ehX/e SFe1g͉VVVV0Hm}issQ`+N9#;!53254+5!#"3347632&#";#"&'&'#VwTw{.æbcl.di5[F6A{9VVVVAL!VqsN`V;dg%V8#;!53254+5!#"3536632&#";#"&/&'#m%%;mtvb]9Y zak]G=d6/t͉VVVV$/x}isY%VMtlN{:&#";#"&'.#;!5325#5354+5!#"3#26632bm,ck4[E.b¨TkR}sO_V=dX39VVeVVe1q%526632&#";#"&/.#;!5325#5354+5!!!VItnb^R,`k]HXdec49}Bx]PTq^'/%327#"'# !2&#"327&46326#"4D>'%~|Td!U@uqwD#"Z?;7N'!6`uB>!3#"54732542#4.#"32>7#".54>dlɅ-'Vig30A&9[Ctf.0hqKsXC5lrPTyTXoJ#>T1!5%0^K/UZ0?" &'QB+lnqB^8!3#"5473254'".54>32#4.#"3267lɅ-'V"f|EE{a@f@\['C4;_D$_#,WyTXok?՗݆84O5G:0VA%,lP? (#F8#)R%;#!#5325#"#!#'&+װ)^/Ĕ j  j ߉VqXfX)R7J#'.+;#'#!5325#"#+ d 5O9d B< d JDSSV =iDH=J*5!#"367654+5!#";!5325&#{H_@8$(jVVc.}m4$eVVC]VV m0!532=!5!5&+5!#"6?654+5!#"!!;F/>T3LZ%8/h%{<PZ0VdflVVA)Df1B9ZVVfdVJ2;!532=!5!5&+5!#"367654+5!#"!(j{H_@8$`VV`mVVc.}m4$eVVC] `Rj75!#" 3#!#53254' ;!53267 &+5!#"654#Fef`Yt=^ zC5 BT?VBn+u13n`VVTȏVD!lFN9@VV5Z%lVV;+N'N/; RJ95!#";#'+53254/;!53267 &+5!#"7654#EQ9-Ke/d  {N7IX>P`u0j3nVV8KkeVD%hM4@VV4ON`mVV<CJ3<)R&)5325#"#!#'&+!4+5!#"; j  k fJ)RVoXfXgVV)RVJ)#'#!5325#"#!#'.+!4+5!#"3Vd lB< d } d 6Mm 7/RV =iDHDTRr VV{+R+# 4+5!#"3274+5!#";#!#5325-TܨTDd)^rJVVjǓVVKHVRJ,!5325#"&=4+5!#"3274+5!#";#'#Ҳ2/e V#zVVדZVVu+/ 4+5!#";3674+5!#";!5325#IT {dTQ{sJVV\IǓVVVVTJ1!5325#5#"&=4+5!#";53674+5!#";|;t+.t?x2V#MzVVד:VVuVN'63 ;!53254#";!53254+5!#"}ܨTVV@k9VVVV/J(#"632;!532=4#";!53254+5uұJVމxVVהZVVV #  54323! !!2!!  &N/Bx!cӠ*>Fd;;^" 54323!2!!27#"!#"F'6S+V*d'ǡƔ.6<5^V1K"wkR %#4&'$ 54323! !!2!! ^a&N/Bx!@d?Ӡ*>Fd;;R^#(#4&'$ 54323!2!!27!#"?%^~Ɣ.6<5^V16nskN-@#".'332>74.+5!#"2>7>7>32.#";#".'.#;!532>5"+53267>7.'.#".54>323i1]dgX)2L5,I6".="">-)4$ L9'OWd<-@'$*)9XH->""=.HX9)>XbEq0-;M6'*1 ?m<*$'@-fI(&Hg@9I)+H5-7 VV :0A qM{W/"00#* v|?`I6,A*WMV+K;d.7 90: VV 7- 7.;K+VMWZ*A,6I`?|v *#00"/W{Mq #".'332>74.+5!#"2>7>7>32.#";#"./.#;!532>5"+5326?>7.'.#".5463231]dgX)2L5,I6")5 6)) G5#=CU;WY$'-,.,&$`.k/eEHNiL:d3BV;)6 5(:WB3d9LjNHEe/k.`$&,-,-($YW;UC=#5G )>fI(&Hg@9I)+H5z-7 VV 3*  jO6V0#XUVNV+K;-6 -7 VV :0) 6-;K+VNVUX#0>(';' * -8E!CgR#=ZtTVVGD Vg}RJ'%325! #"54332654+5!#";#!"ysZ9+Gii>jRV 紐}#=hVVEI N ,%! 5473 !;!53254+5!#"!4+5!#"H`{dkfTThl3 VVVVbVV/RJ.#"#"&5473 !;!53254+5!#"!4+5RְuI1JVbQj ۉVVVVVNRD/%;#!5325!;!53254+5!#"!4+5!#"HBhRfTTGG V VVVVbVV/RJ/#";#!5325!;!53254+5!#"!4+5R>jR1JVEI V%ۉVVVVV+R*# 4+5!#"3274+5!#";# #327-TܨT^)rJVVjǓVVVRRJ,!"#325#"&=4+5!#"3274+5!#";׬ d/Ҳ2 #zVVדZVVuVNRm*%;#!53265#;!53254+5! !#"q@jR&W<+o%:Z'?D V>CFMFVVVmV/RTJ*%325###;!53254+5! !#";#!^!DR>jRVopVVV7;!532>73;!53254&/.'!V1]dgX)2L5,I6"N CE/ '*"Ơ ",/{ R 5@>fI(&Hg@9I)+H5/40VV $>1 * VVb$[J%EHO0f)$U#".'332>732>=""&54>32;!'##".546?54.1]dgX)2L5,I6"(QU>eG&WuH;I)UY:eL^^/1"  fI(&Hg@9I)+H5;`_(JjA#?\!7!2>?3!532>54.+5!#'.#!!!1]dgX)2L5,I6"1E.k"=..=# j +A.@>fI(&Hg@9I)+H5&.="XV 7-0: VX"=.dq?#".'332>7"!4.".532!32>71]dgX)2L5,I6"r{ 4U%ozAcn;V)MpI5[J9,Z>fI(&Hg@9I)+H5Q`4Kх">{y^ph1(3&G<(o&54$3 ! 5!!"!!  ;Rd Sa"[ztn<#hf^!!"&54632!"&5!32fֿf'ƣ9)31JoF&k^Rf&kF&kR&k7\VF&kRRy&k\V !"#!#"&5433 4&+s{`@ V Y7D%-R7Tll|JRJ !"#!#"&5433265!#`A9 e F̗uf/1PBe[n[b̽dNG!5!532>5;!532>54.+5!#"54.+5!#";^R#=.R->"#=..="T">-.=#T">-.="@yGV :0+)0: VV :0-7 VV :0)0: VV :0-7 V/RgG!5!#";!532>5;!532>54.+5!#"54.+5Rh"=..=""=..=""=..="F"=..="yV 7-u-7 VV 7- -7 VV 7--7 VV 7--7 VNF&kR/R& kss{F&3kRq-&Sks{  ! !! !! O8+V2B{q/deomC/kq-^  ! !! !! L% / ;7Ps{F&kRq-&k\sF&kRR}&kf>!5!#"+532>7.+5!#">7>54&+5!Rf')!!:;CVnIp4cUA/!)= >=#3 CD+@y $>0PwS5 `7L.) VV/3$H? >@G*.5/Vg>!5!#"+52>7.+5!#"3>7>54&+5R+#$@FSj[hmI!+>=  ' CDyV $>1ckF*a>lV ) VV03##SQH-J.50VfF&kR&]kfsZ5>73!5>73#"+532>7.+5!#">7>54&+5!0/* '29:7 0/* '29:7')!!:;CVnIp4cUA/!)= >=#3 CD++!LPN"18;82!LPN"18;82 $>0PwS5 `7L.) VV/3$H? >@G*.5/V!Z5>73!5>73#"+52>7.+5!#"3>7>54&+5L0/* '29:7 0/* '29:7d+#$@FSj[hmI!+>=  ' CD!LPN"18;82!LPN"18;82V $>1ckF*a>lV ) VV03##SQH-J.50V+F&kR&kBNRT353254+5!#'.#!;#!Nk `a˞N^VVHmK/RJ353254+5!#'.+3#'#/Rd =AєCd VVDj<NF&kRR/X&k/mT +%#"54732=!5325#534+5!#'.#!!!;՜/;us k ]d>¨DVp-!VVdVHkMd /mJ +%#"54732=#'.+3#;!5325#534+5՜/;ukd =A/èVp-!Dj7 .+5!#">8՜/;u(1.1y-P' z  AD %7/.V%].+#.  Vp-! VV#8*T<1VVD ,"F !$%#VV"6(%;1VV  $'#> mJ U%#"54732=4&+5!#";!53254./;!532>7 .+5!#"7>՜/;u?/1/2--Q& {  :E%822-U.#. jVp-!b%VV 4)k<1VVD , "##VV 3&N`58VV  ) #>7:5!#"!!;!53254' ;!53267!5!&+5!#"654#FefFD` zC5 BT?TbdCm+u13n`VVddmVVD!lFN9@VV5ZdlVV;+N'N/; J<5!#"!!;!53254/;!53267'!5!'&+5!#"7654#EQ9L QS {N7IX>P`u0j3nVV8K`mVVD%hM4@VV4ON`mVV<CJ3<,72#"54;!532>73;!53254&/.'!ttuN CE/ '*"Ơ ",/{ R 5yb/40VV $>1 * VVb$[J%EHO0f)^G2#"5432>=""&54>32;!'##".546?54.%ttuQU>eG&WuH;I)UY:eL^^/1"  73;!53254&/.'! fg`C)N CE/ '*"Ơ ",/{ R 5wZLR9lF/40VV $>1 * VVb$[J%EHO0f)P#'654#"&543232>=""&54>32;!'##".546?54.T fg`C)QU>eG&WuH;I)UY:eL^^/1"  73;!53254&/.'!K4dN37PpmWPN CE/ '*"Ơ ",/{ R 5[nyU^fF`OW/40VV $>1 * VVb$[J%EHO0fM#T673#673#&'#32>=""&54>32;!'##".546?54.K4dN37PpmWP+QU>eG&WuH;I)UY:eL^^/1"  73;!53254&/.'!Ma4KPWmpP53N CE/ '*"Ơ ",/{ R 5Xvn[VP`Fb^/40VV $>1 * VVb$[J%EHO0)#T#&'53#&'#567332>=""&54>32;!'##".546?54.GMa4KPWmpP53QU>eG&WuH;I)UY:eL^^/1"  73;!53254&/.'! V yV9' 37PpmWPN CE/ '*"Ơ ",/{ R 5-3\ C= Ga^fF`OW/40VV $>1 * VVb$[J%EHO0f),]#'654#"&5432673#&'#32>=""&54>32;!'##".546?54.} V yV9' 37PpmWP+QU>eG&WuH;I)UY:eL^^/1"  73;!53254&/.'!]6G\2#Hf37PpmWPN CE/ '*"Ơ ",/{ R 5Z\Zg^fF`OW/40VV $>1 * VVb$[J%EHO0f)+\#6323273#"&#"673#&'#32>=""&54>32;!'##".546?54.P]6G\2#Hf37PpmWP+QU>eG&WuH;I)UY:eL^^/1"  73#.'#;!532>73;!53254&/.'!ttu:9229:P;v./t:PN CE/ '*"Ơ ",/{ R 5yLQQ""QQL"e11e"/40VV $>1 * VVb$[J%EHO0f)!+\2#"54>73#.'#32>=""&54>32;!'##".546?54.%ttu:9229:P;v./t:P(QU>eG&WuH;I)UY:eL^^/1"  73;!53254&/.'!K4h}N`b#/ N CE/ '*"Ơ ",/{ R 5J[n~Q }}/40VV $>1 * VVb$[J%EHO0f) Q673#%! 332732>=""&54>32;!'##".546?54.K4h}N`b#/:QU>eG&WuH;I)UY:eL^^/1"  73;!53254&/.'!N}h4Kb#/ N CE/ '*"Ơ ",/{ R 5/Q~n[ }}/40VV $>1 * VVb$[J%EHO0f) Q#&'53! 332732>=""&54>32;!'##".546?54.hN}h4Kb#/:QU>eG&WuH;I)UY:eL^^/1"  73;!53254&/.'! V yV8(b#/ N CE/ '*"Ơ ",/{ R 5R3\ C=!Ha9 }}/40VV $>1 * VVb$[J%EHO0f))Z#'654#"&5432! 332732>=""&54>32;!'##".546?54.V V yV8(b#/:QU>eG&WuH;I)UY:eL^^/1"  I#6323273#"&#"! 3327;!532>73;!53254&/.'!]6G]2#Hb#/ N CE/ '*"Ơ ",/{ R 5Z\Z }}/40VV $>1 * VVb$[J%EHO0f)(Y#6323273#"&#"! 332732>=""&54>32;!'##".546?54.X]6G]2#Hb#/:QU>eG&WuH;I)UY:eL^^/1"  I2#"54".'332673;!532>73;!53254&/.'!ttuqIkF#^dLKd_#GjN CE/ '*"Ơ ",/{ R 5y-Lf:KAAK:fL-/40VV $>1 * VVb$[J%EHO0f)(Y2#"54".'33267332>=""&54>32;!'##".546?54.%ttuIkF#^dLKd_#GjQU>eG&WuH;I)UY:eL^^/1"  ?3!532>54.+5!#'.#!!!yttu%1E.k"=..=# j +A.y.="XV 7-0: VX"=.dq^12#"54"!4.".532!32>7+ttu}r{ 4U%ozAcn;V)MpI5[J9,ZyiQ`4Kх">{y^ph1(3&G<(N8#'654#"&5432!2>?3!532>54.+5!#'.#!!! fg`C)`1E.k"=..=# j +A.wZLR9l.="XV 7-0: VX"=.dq:#'654#"&5432"!4.".532!32>7a fg`C)r{ 4U%ozAcn;V)MpI5[J9,Z/wZLR9lQ`4Kх">{y^ph1(3&G<(N1G2>73#".#"#>32!2>?3!532>54.+5!#'.#!!!@% \4N77YMC!$ \5O77YMC1E.k"=..=# j +A.'/WD((1('/VD((1(.="XV 7-0: VX"=.dq(I2>73#".#"#>32"!4.".532!32>7% \4N77YMC!$ \5O77YMCr{ 4U%ozAcn;V)MpI5[J9,Z^'/WD((1('/VD((1(Q`4Kх">{y^ph1(3&G<(N<673#673#&'#!2>?3!532>54.+5!#'.#!!!tK4dN37PpmWP1E.k"=..=# j +A.[nyU^fF`OW;.="XV 7-0: VX"=.dqG>673#673#&'#"!4.".532!32>7K4dN37PpmWP7r{ 4U%ozAcn;V)MpI5[J9,Z[nyU^fF`OW鹲Q`4Kх">{y^ph1(3&G<(N<#&'53#&'#5673!2>?3!532>54.+5!#'.#!!!Ma4KPWmpP53%1E.k"=..=# j +A.Xvn[VP`Fb^ .="XV 7-0: VX"=.d>#&'53#&'#5673"!4.".532!32>7AMa4KPWmpP53r{ 4U%ozAcn;V)MpI5[J9,ZXvn[VP`Fb^Q`4Kх">{y^ph1(3&G<(N3E#'654#"&5432673#&'#!2>?3!532>54.+5!#'.#!!! V yV9' 37PpmWP1E.k"=..=# j +A.-3\ C= Ga^fF`OW;.="XV 7-0: VX"=.dq&G#'654#"&5432673#&'#"!4.".532!32>7w V yV9' 37PpmWP7r{ 4U%ozAcn;V)MpI5[J9,Z3\ C= Ga^fF`OW鹲Q`4Kх">{y^ph1(3&G<(NbD#6323273#"&#"673#&'#!2>?3!532>54.+5!#'.#!!!]6G\2#Hf37PpmWP1E.k"=..=# j +A.Z\Zg^fF`OW;.="XV 7-0: VX"=.dq%F#6323273#"&#"673#&'#"!4.".532!32>7J]6G\2#Hf37PpmWP7r{ 4U%ozAcn;V)MpI5[J9,Z1Z\Zg^fF`OW鹲Q`4Kх">{y^ph1(3&G<(NsD2#"54>73#.'#!2>?3!532>54.+5!#'.#!!!yttu:9229:P;v./t:P1E.k"=..=# j +A.yLQQ""QQL"e11e";.="XV 7-0: VX"=.dq!%F2#"54>73#.'#"!4.".532!32>7+ttu:9229:P;v./t:P4r{ 4U%ozAcn;V)MpI5[J9,ZymLQQ""QQL"e11e"鹲Q`4Kх">{y^ph1(3&G<(N0#'654#"&5432532>54.+5!#"; fg`C)#=..=#T">-->"wZLR9l]V :00: VV :00: V/u)#'654#"&54322>54.+5!;!5w fg`C)"=..="n->"/wZLR9l 7--7 V0: VVN'2#"54'532>54.+5!#";wttu#=..=#T">-->"yyV :00: VV :00: V/u 42#"54'2>54.+5!;!54>32#".Httu"=..="n->" **** y 7--7 V0: VV@$0 0$$0 0s{/2#"54#".54>3232>54.#"ttuTPPT-drrc,,crre-yVllkk뫘WWVVq-^+2#"54#".53232>54.#"NttuTo{Ao{A CkMMjBBkMMjByFאEՐru<3232>54.#"' fg`C)TPPT-drrc,,crre-wZLR9l:llkk뫘WWVVq- 4#'654#"&5432#".53232>54.#"} fg`C)o{Ao{A CkMMjBBkMMjB/wZLR9lFאEՐru<3232>54.#"K4dN37PpmWPTPPT-drrc,,crre-[nyU^fF`OWllkk뫘WWVVqd$8673#673#&'##".53232>54.#"1K4dN37PpmWPo{Ao{A CkMMjBBkMMjB[nyU^fF`OWNFאEՐru<3232>54.#"Ma4KPWmpP53TTPPT-drrc,,crre-Xvn[VP`Fb^llkk뫘WWVV+-$8#&'53#&'#5673#".53232>54.#"^Ma4KPWmpP53o{Ao{A CkMMjBBkMMjBXvn[VP`Fb^3FאEՐru<3232>54.#"D V yV9' 37PpmWPTPPT-drrc,,crre--3\ C= Ga^fF`OWllkk뫘WWVVq--A#'654#"&5432673#&'##".53232>54.#" V yV9' 37PpmWPo{Ao{A CkMMjBBkMMjB3\ C= Ga^fF`OWNFאEՐru<3232>54.#"]6G\2#Hf37PpmWPTPPT-drrc,,crre-Z\Zg^fF`OWllkk뫘WWVVq-,@#6323273#"&#"673#&'##".53232>54.#"g]6G\2#Hf37PpmWPo{Ao{A CkMMjBBkMMjB1Z\Zg^fF`OWNFאEՐru<73#.'##".54>3232>54.#"ttu:9229:P;v./t:PTPPT-drrc,,crre-yLQQ""QQL"e11e"llkk뫘WWVVq-!,@2#"54>73#.'##".53232>54.#"Nttu:9229:P;v./t:Po{Ao{A CkMMjBBkMMjBymLQQ""QQL"e11e"NFאEՐru<73#".#"#>32654&5432! !  ! % \4N77YMC!$ \5O77YMCXu}NO8db\'/WD((1('/VD((1(#^B1fZmde}q4?2>73#".#"#>32654&5432! ! 2654&#"% \4N77YMC!$ \5O77YMCXu}1%됆^'/WD((1('/VD((1(3#^B1f]z;7/s%)'2#"54654&5432! !  ! ttuXu}NO8db\y-#^B1fZmde}q'2#"54654&5432! ! 2654&#"NttuXu}1%됆y #^B1f]z;7/=2#"547".54.+5!#"32>54.+5!#"ttu|yF.="T">-3[}KYU).="">-Aye3o}-7 VV :0Y}N$0UuF/-7 VV :0fq</J92#"54;!'##".54.+5!32>54.+5!ttu".=" KT\2Q~V-.="o1S>Da?-=#nyX-7 V:H).bi-7 V=ChH%0WzJ0; VF#'654#"&5432".54.+5!#"32>54.+5!#"6 fg`C)yF.="T">-3[}KYU).="">-AwZLR9lI3o}-7 VV :0Y}N$0UuF/-7 VV :0fq</B#'654#"&5432;!'##".54.+5!32>54.+5! fg`C).=" KT\2Q~V-.="o1S>Da?-=#n/wZLR9l-7 V:H).bi-7 V=ChH%0WzJ0; V%s&PwR/!&Qw%s&PD=R/!&QD%8#'654#"&5432# 4+5!#"!2654+5!654&54326 fg`C)TV?Xu}wZLR9lVV/VqB1f</9:#'654#"&5432654&5432;!'## 4+5!3 4+5! fg`C)Xu} aon/wZLR9l4oB1f73#".#"#>32# 4+5!#"!2654+5!654&5432% \4N77YMC!$ \5O77YMCYTV?Xu}'/WD((1('/VD((1(VV/VqB1f</HI2>73#".#"#>32654&5432;!'## 4+5!3 4+5!'% \4N77YMC!$ \5O77YMC0Xu} aon^'/WD((1('/VD((1('oB1f5.+5!#">?>54&+5!#";ttu/"=.!(3L# $2 !$@;<'(+.="0yyV 7-) VV  :?{06=A #?--VV%=.0: VJB2#"54#"+52>7.+5!#"3>7>54&+5ttu^+#$@FSj[hmI!+>=  ' CDyV $>1ckF*a>lV ) VV03##SQH-J.50VO#'654#"&5432532>5.+5!#">?>54&+5!#"; fg`C)/"=.!(3L# $2 !$@;<'(+.="0wZLR9l]V 7-) VV  :?{06=A #?--VV%=.0: VK#'654#"&5432#"+52>7.+5!#"3>7>54&+5 fg`C)B+#$@FSj[hmI!+>=  ' CD/wZLR9lV $>1ckF*a>lV ) VV03##SQH-J.50V1^2>73#".#"#>32532>5.+5!#">?>54&+5!#";F% \4N77YMC!$ \5O77YMC /"=.!(3L# $2 !$@;<'(+.="0'/WD((1('/VD((1(PV 7-) VV  :?{06=A #?--VV%=.0: VZ2>73#".#"#>32#"+52>7.+5!#"3>7>54&+5% \4N77YMC!$ \5O77YMC+#$@FSj[hmI!+>=  ' CD^'/WD((1('/VD((1(V $>1ckF*a>lV ) VV03##SQH-J.50V+#+V!#'7'77'+V5555X7777 '7##!'77RJ75}o}7L) ##'7!)T77L}57}3H{5!3ᚚR'+!5!'+y b!5! y b!5! y b!5! ye'`g`dT!5!!5!T^^yysu4>7#".s$Q[e^"&"M99,'AzhSV \<);>-C=s5>54.54632$Q\e^"&"M9 8,AzhSV \<);>-C=%5>54.54632$Q\e^"&"M9 8,VAzhSV \<);>-Css4>32.s,99M"&"^e[Q$+C->;)<\ VShzsu\/4>7#".%4>7#". $Q[d^!'!L9:+g$Q[e^"&"M99,'AzhSV \<);>-C+AzhSV \<);>-C=s'/5>54.546325>54.54632$Q\e^"&"M9 8,$Q\d_"&"L9 9+AzhSV \<);>-C+AzhSV \<);>-C='/%5>54.546325>54.54632$Q\e^"&"M9 8,$Q\d_"&"L9 9+VAzhSV \<);>-C+AzhSV \<);>-Css\632.5$632.5 YE9L^dgZC9M^eSc>;JG+<\ V0̕R`>;JG+<\ V0̕HN#4'&'753%%DVJX69X~l:55:HN)-%#5'67>7.'&'753%%X96XJJX69XN :66:SBCP 9669 OBES d4>32#".d)Hd:8bJ**Jb8:dH)TrEErTTqFFq9';74>32#".%4>32#".%4>32#".#//##//#J#//##//#I#//##//#}(5  5('6  6'(5  5('6  6'(5  5('6  6#!+ToPN)5!#NTP###!V ###!!!VtP !!5!###tVPN\ ';OSg{#".54>3232>54.#"#".54>3232>54.#"#3#".54>3232>54.#"*T~TXR''RYT}S*$:**:##8**;%*T~TXQ''RYT}S*$:**:""8**;%ۆ*T~TXQ''RYT}S*$:**:""8**;%gxBBxggw@@wgX`22`XW_11_WgxAAxggw@@wgX`22`XW_11_gxAAxggw@@wgX`22`XW_11_uN uu 3#3#3#>^k>^s=_%3#9ggJd{{d' #3'gg9T=A%2>7#".'#53.=#53>32#4.#"!!!!4Q>/ %LtP`b[_N[2[W,G35bO7 N^ ;Xsd"-=4"=؛`6-a:7L-G:0V@%.ra16`mq:7X.P5267#3#53267.+533#";%;!532>5##7!#'.'#)#*G*(/  N  # Z <V<",^7#9=)77% 979 )7v77  11*^ #&'5673!9>HH>9DH$HDV^ &'3#67!59>HH>9#DH$HDV !! !!5>Q>t^`G  G`R 5!7'!5!7 '^^t>Q>57`RR`GGF3G""&54>32#".54>323><54.2>7.#"+6L2DI'KoHgl8]~]Z|L!2OnZU(&GfAsZ> %5C&9\H4#[Z 6F&39+I5N}i`̍K5!;!532>5.+5 #=.-<"#=-f->"#=.-<"V :0'-7 VV ;0R0; VV ;0-7 VP12>?3!5 5!#'.#!0D- j )9P j +A.4G*>Cc\PX"<-J!5!oy+3ۆNdz'B##5!3{ݧn1d:H`!1A#"&'#".54>32>32%"32>54.267.#"`.SuG_J?[FvV/.TvI/]YQ"?gFtS.M{>9{T/K56L4J<7T-J42MPPk>uy{7eZRi=;\Bww8f*Ic88aH)*Jb86`I+`3!!^j8^4>32#4&#"rуwfŠ)>"&546332654.54>7>32#4.#"ylKJ,'HK4Z~PzxLJ,'8_LD8;;.9T3x|zkU^q?LD7;;.(n|r\*pz|kQ]q?o{ %#G.#"563232>7#"..#"563232>7#".%8-);;8c27C/%8.)<;8c17C/%8-);;8b27C/%8.)<;8b17C !,l  !,l   -m  ,l 73!!!!#7!5!!5D9w::J?7y9VJ`yyyydHP 5!5!5!d8d 5 !5!oPoHىy 75 5!5!Pooqu'HHy{Z!!{!!!!!7L17}1mh{!!hmh{!!!hKPb!!L! XVRZ 7L LRZZ79e=% !# 3 ZR5Rb^%BH-)4>32#".732>54.#"wx{yy{xwV`bcb`c``dyyyyxyy{b``bcbbbV^R'/7?GOW_gow#"5432'#"5432#"5432#"5432#"5432#"5432#"5432#"5432#"5432#"5432#"5432#"5432#"5432%#"5432#"5432'#"5432377349947575#3773865567557R75577667377349944976#58856556\677675577667667+557775555885Z557w55763:C558337775555776557737+558# 2#"54>jmsoujlw)3!32>54.#")wvuwwwvu}Bwwwutww)#3!4>32#".'32>54.#")R`babbab`Nwvuwwwvu}B`bb`c``cwwwutwwsbu #"&546324&#"326bcfdiFIKgFEgcIN_}khfJHfFffFHdh!"3!2654&#!"&5463!2`B^^B@B^^ީwww@w^BB^^B@B^ww@w/D#!"&5463!2#"'&#!"3!26=4?632"'&4?62 62www@?6 1 B^^B@B^ @ BRnBBn^ww@w 1 ^BB^^B @ BnnB0) ;"%\K\\\\\\ \\\d\n\\7\\\ \\\\\\\\\\\\ %\ K \ \ \ \ \ \ \ \ \ d\ n\ \ 7\ \ \  \ \ \ \ \ \ \ \ \ \ \ \  %\dgnqqq *7q\D H M b%\% \%q%#%'%+%3%5%8%9%:\%;q%=q%G%H%I%K%S%U%Y%Z%[%]%%%%%%%%%%%q%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%#%%%'%)%*%+%,%-%.%/%0%1%2%3%4%5q%6%7q%8%9q%A%B%P%Q%%%%%%%%%%%%%%%%%%%%% % % % % %%%%%%%%%%%%%%%%%%% %!%"%#q%$%%q%&%'q%(%)q%*%Cq%Gq%\q&&#&%&8&:&;&<&=&>&[&]&&&&&&&&&&&&&#&%&'&5&6&7&8&9&:&<&>&&&&&&&&&&&&&#&$&%&&&'&(&)&*&C&G&\&b(#(%(8(:(;(<(=((((((((((((#(%('(5(7(9(((((((((((((#(%('()(b):);)=))5)7)9)#)%)'))*%q*E*G*H*I*K*S*U*q*q*q*q*q*q*********************q**q**q*********************B*q**q**q**q**q**q**q**q**q**q**q**q**************** * ****+#+8+:+;+=+++#+%+'+5+7+9+#+%+'+)/'/+/3/5/G/H/I/K/S/U/Y/[/]/////////////////////////////////////////////// ////////*/,/./0/2/4/6/8/A/B/Q///////////////////// / / / / ///////////// /"/$/&/(/*00 0\0#q08q0:0;0=00#q0%q0'q0507090#0%0'0)0C\0G\0\\3#3%383:3;3<3=333333333333#3%3'3537393333333333333#3%3'3)3b4 4 4%4444444\4444444444444444D 4H 4M 4b5#5%585:5;5<5=555555555555#5%5'5557595555555555555#5%5'5)5b66#6'6+636568696:6;6=6[6]666666666666666666666 6666#6%6'6)6+6-6/616365666768696A6P6666666 6 6 6666666666!6#6$6%6&6'6(6)6*6C6G6\7#7%787:7;7<7=7[7]7777777777777#7%7'75767778797777777777777#7$7%7&7'7(7)7*7b8H8H8%8'8+83858E8G8H8I8K8S8U8888888\8888888888888888888888888888888888888888888888888888888 88888888A8B888888888888888888888888888888888888888888888 8 8 8 8 88888888DH8HH8MH8b9%999999999999999999999:::%\:':+:3:5:E:G:H:I:K:S:U:W:\:\:\:\:\:\:::::::::::::::::::::::::::\::\::\::::::::::::::::::::::::: :::::::::: :":A:B:\::\::\::\::\::\::\::\::\::\::\::\:::::::::::::::::::::: : : : : ::::::::D:H:M:b;H;H;%;';+;3;5;E;G;H;I;K;S;U;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;A;B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; ; ; ; ;;;;;;;;DH;HH;MH;b<'<+<3<5<7<[<]<<<<<<<<<<<<<<<< <<<<<<<!<6<8<A<<<<<<< < < <<<<$<&<(<*=\=\=%q='=+=3=5=7=E=Gq=Hq=Iq=Kq=Sq=Uq=W=q=q=q=q=q=q=H==============q=q=q=q=q=q=q=q=q=q=q=q=q==q==q===q==q==q==q=q=q=q=q=q=q=q==q==q==q==q= =q==q==q==q====== =!="=A=Bq=q==q==q==q==q==q==q==q==q==q==q==q==q=q=q=q=q=q=q=q==q==q==q==q==q==q= = q= = q= =q==q==q==q=D\=H\=M\=bEE E]EE8E$E&E(E*F]FF8F$F&F(F*JJ J JJAJaJCJGJ\LL]LL8L$L&L(L*OGOHOIOKOSOUOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOBOOOOOOOOOOOOOOO O OOOORR R]RR8R$R&R(R*S]SS8S$S&S(S*T]TT8T$T&T(T*V=VEVVVVVVVVVVVVVVVVVVVVVVVC=VG=V\=ZZq[q[q[Dq[Hq[Mq]H]H]DH]HH]MH\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q:;=579#%'):;=579#%'):;=579#%'):;=579#%'):;=579#%')#%8:;<=#%'579#%')b#%8:;<=#%'579#%')b#%8:;<=#%'579#%')b#%8:;<=#%'579#%')b#%8:;<=#%'579#%')b#%8:;<=#%'579#%')b#%8:;<=#%'579#%')b%%%%\\%q'+357EGqHqIqKqSqUqWqqqqqqHqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq qqqq !"ABqqqqqqqqqqqqqqqqqqqqqqqqqqq  q  q qqqqD\H\M\b#%8:;<=#%'579#%')b]8$&(* ]8$&(* ]8$&(* ]8$&(* ]8$&(* ]8$&(* ]8$&(*]8$&(* ]8$&(*]8$&(*]8$&(*]8$&(*]8$&(*]8$&(*]8$&(*HHDHHHMH\ \q#'+3589:\;q=qGHIKSUY[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q#%8:;<=#%'579#%')bR#=FPCRGR\R#%8:;<=#%'579#%')b:;=579#%'):;=579#%'):;=579#%'):;=579#%'):;=579#%')#8:;=#%'579#%')#8:;=#%'579#%')#8:;=#%'579#%')#8:;=#%'579#%') ]8$&(* ]8$&(*'+35GHIKSUY[] *,.02468ABQ      "$&(*GHIKSUB  GHIKSUB   \#q8q:;=#q%q'q579#%')C\G\\\ \#q8q:;=#q%q'q579#%')C\G\\\R#=FPCRGR\R ]8$&(* ]8$&(*   ]  8 $ & ( *   ]  8 $ & ( *   ]  8 $ & ( * # % 8 : ; < =            # % ' 5 7 9             # % ' ) b]8$&(*#%8:;<=#%'579#%')b]8$&(*#%8:;<=#%'579#%')b]8$&(*:;=579#%')#'+3589:;=[] #%')+-/1356789AP   !#$%&'()*CG\=EC=G=\=#'+3589:;=[] #%')+-/1356789AP   !#$%&'()*CG\=EC=G=\=#'+3589:;=[] #%')+-/1356789AP   !#$%&'()*CG\=EC=G=\=#%8:;<=[]#%'56789#$%&'()*b#%8:;<=[]#%'56789#$%&'()*b#%8:;<=[]#%'56789#$%&'()*b!#!%!8!:!;!<!=![!]!!!!!!!!!!!!!#!%!'!5!6!7!8!9!!!!!!!!!!!!!#!$!%!&!'!(!)!*!b#H#H#%#'#+#3#5#E#G#H#I#K#S#U#######\####################################################### ########A#B############################################# # # # # ########DH#HH#MH#b%H%H%%%'%+%3%5%E%G%H%I%K%S%U%%%%%%%\%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%A%B%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % %%%%%%%%DH%HH%MH%b'H'H'%'''+'3'5'E'G'H'I'K'S'U'''''''\''''''''''''''''''''''''''''''''''''''''''''''''''''''' ''''''''A'B''''''''''''''''''''''''''''''''''''''''''''' ' ' ' ' ''''''''DH'HH'MH'b)%)))))))))))))))))))))+%+++++++++++++++++++++-%---------------------/%/////////////////////3%3333333333333333333335H5H5%5'5+53555E5G5H5I5K5S5U55555555555555555555555555555555555555555555555555555555555555 55555555A5B555555555555555555555555555555555555555555555 5 5 5 5 55555555DH5HH5MH5b6q6q6Dq6Hq6Mq7\7\7%q7'7+7375777E7Gq7Hq7Iq7Kq7Sq7Uq7W7q7q7q7q7q7q7H77777777777777q7q7q7q7q7q7q7q7q7q7q7q7q77q77q777q77q77q77q7q7q7q7q7q7q7q77q77q77q77q7 7q77q77q77q777777 7!7"7A7Bq7q77q77q77q77q77q77q77q77q77q77q77q77q7q7q7q7q7q7q7q77q77q77q77q77q77q7 7 q7 7 q7 7q77q77q77q7D\7H\7M\7b8H8H8DH8HH8MH9\9\9%q9'9+9395979E9Gq9Hq9Iq9Kq9Sq9Uq9W9q9q9q9q9q9q9H99999999999999q9q9q9q9q9q9q9q9q9q9q9q9q99q99q999q99q99q99q9q9q9q9q9q9q9q99q99q99q99q9 9q99q99q99q999999 9!9"9A9Bq9q99q99q99q99q99q99q99q99q99q99q99q99q9q9q9q9q9q9q9q99q99q99q99q99q99q9 9 q9 9 q9 9q99q99q99q9D\9H\9M\9bA#)A%A8)A:)A;)A=)AEAGAHAIAKASAUAWA[A\A]AAAAAAA)AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA A"A#)A%)A')A5)A6A7)A8A9)ABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA A AAAAA#)A$A%)A&A')A(A))A*B)BQ)BR)BT)BX=BY)B[=B]=B)B)B)B)B)B=B)B)B)B )B )B$=B&=B(=B*)B,)B.)B0)B2)B4)B6=B8=BQ)B)B)B)B)B)B )B")B$=B&=B(=B*=BC)BG)B\)P%P'P+P3P5PEPGPHPIPKPQPRPSPTPUPWPYP[P]P^PPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP P P PPPPPPPPPP P"P*P,P.P0P2P4P6P8P;P=P?PAPBPQPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP P P P P PPPPPPPPPPPPP P"P$P&P(P*Q)QC)QG)Q\)[\[ \[q[#[`[k[r[v[wq[x[zq[}q[~[[[[[[[[[[[[[[[[Cq[Gq[\q`#`d`g`n`v`w`y`z`}`bd\d \dqd#d`dkdrdvdwqdxdzqd}qd~ddddddddddddddddCqdGqd\qee#edeieneveweyeze}eeeeCeGe\ebfHfHf`fdfgfkfnfrfxf~fffffffffDHfHHfMHfbg#gvgwgxgzg}hwhzh}k#kdkgknkvkwkykzk}kbm`mkmrmxm~mmmmmmmmmmmmmmmn\n \nqn#n`nknrnvnwqnxnzqn}qn~nnnnnnnnnnnnnnnnCqnGqn\qqwqzq}r#rdrgrnrvrwryrzr}rbt t tdtgtntD tH tM tbvHvHv`vdvgvkvnvrvxv~vvvvvvvvvDHvHHvMHvbw\w\w`wdqwgwkwnqwrwxw~qwqwqwqwqwqwqwqwqwD\wH\wM\wbx#xdxgxnxvxwxyxzx}xby`ykyryxyyyz\z\z`zdqzgzkznqzrzxz~qzqzqzqzqzqzqzqzqzD\zH\zM\zb}\}\}`}dq}g}k}nq}r}x}~q}q}q}q}q}q}q}q}q}D\}H\}M\}b \\D\H\M\ ~DHMDHMAEGr~AEGr~HH "%*17CDIJKLMNOQRyz{|\DHHHMHb#/237;AEFGHPgq}bCG\CG\q#qqqqq/23qAEFGHPqq}qqqqqqCqGq\q"%/12CDFHIJKLMNOPQRryz{|~\\\\\ \"%&*\17\CDIJKLMNOQRyz{|\\\\DHMb\ \q#H) )"%*)/123AqCDE\FG\HIJKLMNOPQRqryz{|}~qqHH)HHCqGq\q# */237;AEFGHPgqr}~CG\bHH "%*17CDIJKLMNOQRyz{|\DHHHMHbAEGr~"%/12CDFHIJKLMNOPQRryz{|~# */237;AEFGHPgqr}~CG\b"%/12CDFHIJKLMNOPQRryz{|~# *37;AEGgq}b  qqq *7q\D H M bHH "%*17CDIJKLMNOQRyz{|\DHHHMHb\\\\\ \"%&*\17\CDIJKLMNOQRyz{|\\\\DHMb# *37;AEGgq}b/12CFHIKMOPQry{~CG\CG\# *37;AEGgq}b# *37;AEGgq}b /FH/FH=qq *C=DqG=HqMq\="%DJLNRz|/FH     " % D J L N R z |      /FH/FH=qq *C=DqG=HqMq\=HHDHHHMH/FH"%DJLNRz|/FH/FH## ##/#F#H#####$=$q$q$$ $*$$C=$Dq$G=$Hq$Mq$\=,, ,,/,F,H,,,,,-----"-%-D-J-L-N-R-z-|------/H/H/DH/HH/MH1#1111111111111 1*13171;1A1E1G1g1q1}11111111111111111b2q2q22 2*22Dq2Hq2Mq33C3G3\7\7 \7q7#777777777H7777)77 )77777777"7%7*)7/7172737Aq7C7D7E\7F7G\7H7I7J7K7L7M7N7O7P7Q7R7q7r7y7z7{7|7}7~7q77q7777H77H7777)7H77777777777777777777H77Cq7Gq7\q9\9 \9q9#999999999H9999)99 )99999999"9%9*)9/9192939Aq9C9D9E\9F9G\9H9I9J9K9L9M9N9O9P9Q9R9q9r9y9z9{9|9}9~9q99q9999H99H9999)9H99999999999999999999H99Cq9Gq9\q;;;;;;;;;;;;;;;;";%;/;1;2;C;D;F;H;I;J;K;L;M;N;O;P;Q;R;r;y;z;{;|;~;;;;;;;;;;;;;;;;;;;;;;;;;;;;<<<<<"<%<D<J<L<N<R<z<|<<<<<<================"=%=/=1=2=C=D=F=H=I=J=K=L=M=N=O=P=Q=R=r=y=z={=|=~============================>>>>>">%>D>J>L>N>R>z>|>>>>>>??#?????????????? ????*?/?2?3?7?;?A?E?F?G?H?P?g?q?r?}?~???????????????????????????C?G?\?b@@/@F@H@@@@@A\A\AAAAqAAAAAAAAAqAqA qAqAqAqA"qA%qA&A*qA1A7qACADqAIAJqAKALqAMANqAOAQARqAyAzqA{A|qAAAAqAqAAqAAHAAqAAqAAqAAqAAqAAqAAD\AH\AM\AbC#CCCCCCCCCCCCC C*C3C7C;CACECGCgCqC}CCCCCCCCCCCCCCCCCbDD/DFDHDDDDDEEEE\E\E\E\EEEEEEE\EE \EEEE"E%E&E*\E1E7\ECEDEIEJEKELEMENEOEQEREyEzE{E|EEE\E\E\EE\EEEEEEEEEEEEEEEEDEHEMEbFHFHFDHFHHFMHGGGG\G\G\G\GGGGGGG\GG \GGGG"G%G&G*\G1G7\GCGDGIGJGKGLGMGNGOGQGRGyGzG{G|GGG\G\G\GG\GGGGGGGGGGGGGGGGDGHGMGbHHHHHDHHHHHMHIHIHIDHIHHIMHJHJHJDHJHHJMHK#KKKKKKKKKKKKK K*K3K7K;KAKEKGKgKqK}KKKKKKKKKKKKKKKKKbLL/LFLHLLLLLM#MMMMMMMMMMMMM M*M3M7M;MAMEMGMgMqM}MMMMMMMMMMMMMMMMMbNN/NFNHNNNNNO#OOOOOOOOOOOOO O*O3O7O;OAOEOGOgOqO}OOOOOOOOOOOOOOOOObPqPqPP P*PPDqPHqPMq]]C]G]\^^/^F^H^^^^^_ _ _q___q_q___ _*_7_q____\____D _H _M _b``/`F`H`````aHaHaaaaaaaaaaaaaa aaaa"a%a*a1a7aCaDaIaJaKaLaMaNaOaQaRayaza{a|aaaaaaaaa\aaaaaaaaaaaaaaDHaHHaMHabb=bqbqbb b*bbC=bDqbG=bHqbMqb\=cHcHcccccccccccccc cccc"c%c*c1c7cCcDcIcJcKcLcMcNcOcQcRcyczc{c|ccccccccc\ccccccccccccccDHcHHcMHcbd=dqdqdd d*ddC=dDqdG=dHqdMqd\=eqe#qeqeqeqeqee/e2e3qeAeEeFeGeHePeqqe}qeeeeeqeqeqeqeeeeqeCqeGqe\qgggggggggggggggg"g%g/g1g2gCgDgFgHgIgJgKgLgMgNgOgPgQgRgrgygzg{g|g~gggggggggggggggggggggggggggghhhhh"h%hDhJhLhNhRhzh|hhhhhhii#iiiiiiiiiiiiii iiii*i/i2i3i7i;iAiEiFiGiHiPigiqiri}i~iiiiiiiiiiiiiiiiiiiiiiiiiiiCiGi\ibjj/jFjHjjjjjkkkkkkkkkkkkkkkk"k%k/k1k2kCkDkFkHkIkJkKkLkMkNkOkPkQkRkrkykzk{k|k~kkkkkkkkkkkkkkkkkkkkkkkkkkkklllll"l%lDlJlLlNlRlzl|llllllmmmmmmmmmmmmmmmm"m%m/m1m2mCmDmFmHmImJmKmLmMmNmOmPmQmRmrmymzm{m|m~mmmmmmmmmmmmmmmmmmmmmmmmmmmmnnnnn"n%nDnJnLnNnRnzn|nnnnnnoooooooooooooooo"o%o/o1o2oCoDoFoHoIoJoKoLoMoNoOoPoQoRoroyozo{o|o~ooooooooooooooooooooooooooooppppp"p%pDpJpLpNpRpzp|ppppppqqqqqqqqqqqqqqqq"q%q/q1q2qCqDqFqHqIqJqKqLqMqNqOqPqQqRqrqyqzq{q|q~qqqqqqqqqqqqqqqqqqqqqqqqqqqqrrrrr"r%rDrJrLrNrRrzr|rrrrrruHuHuuuuuuuuuuuuuu uuuu"u%u*u1u7uCuDuIuJuKuLuMuNuOuQuRuyuzu{u|uuuuuuuuu\uuuuuuuuuuuuuuDHuHHuMHubwqw#qwqwqwqwqww/w2w3qwAwEwFwGwHwPwqqw}qwwwwwqwqwqwqwwwwqwCqwGqw\q}H}H}}}}}}}}}}}}}} }}}}"}%}*}1}7}C}D}I}J}K}L}M}N}O}Q}R}y}z}{}|}}}}}}}}}\}}}}}}}}}}}}}}DH}HH}MH}b~=~q~q~~ ~*~~C=~Dq~G=~Hq~Mq~\=\\qqq qqqq"q%q&*q17qCDqIJqKLqMNqOQRqyzq{|qqqqHqqqqqqD\H\M\bHHDHHHMH\\qqq qqqq"q%q&*q17qCDqIJqKLqMNqOQRqyzq{|qqqqHqqqqqqD\H\M\bHHDHHHMH"%DJLNRz|q#qqqqq/23qAEFGHPqq}qqqqqqCqGq\q# *37;AEGgq}b# *37;AEGgq}b"%/12CDFHIJKLMNOPQRryz{|~"%DJLNRz|q#qqqqq/23qAEFGHPqq}qqqqqqCqGq\q\ \q#H) )"%*)/123AqCDE\FG\HIJKLMNOPQRqryz{|}~qqHH)HHCqGq\q /FH\ \q#H) )"%*)/123AqCDE\FG\HIJKLMNOPQRqryz{|}~qqHH)HHCqGq\q *` 0 /FHAEGr~AEGr~# *37;AEGgq}b/FH# *37;AEGgq}b/FH"%/12CDFHIJKLMNOPQRryz{|~"%DJLNRz|# */237;AEFGHPgqr}~CG\b# */237;AEFGHPgqr}~CG\b# *37;AEGgq}b/FH# *37;AEGgq}b/FH# *37;AEGgq}b/FH# *37;AEGgq}b\\\\\ \"%&*\17\CDIJKLMNOQRyz{|\\\\DHMbHHDHHHMH\\\\\ \"%&*\17\CDIJKLMNOQRyz{|\\\\DHMbHHDHHHMH\\\\\ \"%&*\17\CDIJKLMNOQRyz{|\\\\DHMbHHDHHHMHHH "%*17CDIJKLMNOQRyz{|\DHHHMHb=qq *C=DqG=HqMq\=HH "%*17CDIJKLMNOQRyz{|\DHHHMHb=qq *C=DqG=HqMq\="%/12CDFHIJKLMNOPQRryz{|~"%/12CDFHIJKLMNOPQRryz{|~"%DJLNRz|\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q ]8$&(*\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q ]8$&(*\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q ]8$&(*\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q ]8$&(*\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q ]8$&(*\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q ]8$&(*\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q ]8$&(*\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q ]8$&(*\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q ]8$&(*\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q ]8$&(*\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q ]8$&(*\ \q#'+3589:\;q=qGHIKSUYZ[]q #%')*+,-./012345q67q89qABPQ      !"#q$%q&'q()q*CqGq\q ]8$&(*:;=579#%'):;=579#%'):;=579#%'):;=579#%'):;=579#%'):;=579#%'):;=579#%'):;=579#%')#%8:;<=#%'579#%')b]8$&(*#%8:;<=#%'579#%')b]8$&(*#%8:;<=#%'579#%')b]8$&(*#%8:;<=#%'579#%')b]8$&(*#%8:;<=#%'579#%')b]8$&(*#%8:;<=#%'579#%')b]8$&(* # % 8 : ; < =            # % ' 5 7 9             # % ' ) b ]  8 $ & ( * #) % 8) :) ;) =) E G H I K S U W [ \ ]       )                                                  " #) %) ') 5) 6 7) 8 9) B                                               #) $ %) & ') ( )) * ) Q) R) T) X= Y) [= ]= ) ) ) ) ) = ) ) )  )  ) $= &= (= *) ,) .) 0) 2) 4) 6= 8= Q) ) ) ) ) )  ) ") $= &= (= *= C) G) \) #) % 8) :) ;) =) E G H I K S U W [ \ ]       )                                                  " #) %) ') 5) 6 7) 8 9) B                                               #) $ %) & ') ( )) *)Q)R)T)X=Y)[=]=)))))=))) ) )$=&=(=*),).)0)2)4)6=8=Q)))))) )")$=&=(=*=C)G)\)#)%8):);)=)EGHIKSUW[\]) "#)%)')5)67)89)B  #)$%)&')())*)Q)R)T)X=Y)[=]=)))))=))) ) )$=&=(=*),).)0)2)4)6=8=Q)))))) )")$=&=(=*=C)G)\)#)%8):);)=)EGHIKSUW[\]) "#)%)')5)67)89)B  #)$%)&')())*)Q)R)T)X=Y)[=]=)))))=))) ) )$=&=(=*),).)0)2)4)6=8=Q)))))) )")$=&=(=*=C)G)\)#)%8):);)=)EGHIKSUW[\]) "#)%)')5)67)89)B  #)$%)&')())*)Q)R)T)X=Y)[=]=)))))=))) ) )$=&=(=*),).)0)2)4)6=8=Q)))))) )")$=&=(=*=C)G)\)%%%'+35EGHIKQRSTUWY[]^    "*,.02468;=?ABQ      "$&(*)C)G)\)%'+35EGHIKQRSTUWY[]^    "*,.02468;=?ABQ      "$&(*)C)G)\)%'+35EGHIKQRSTUWY[]^    "*,.02468;=?ABQ      "$&(*)C)G)\)%'+35EGHIKQRSTUWY[]^    "*,.02468;=?ABQ      "$&(* ) C) G) \)!%!'!+!3!5!E!G!H!I!K!Q!R!S!T!U!W!Y![!]!^!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! ! ! !!!!!!!!!! !"!*!,!.!0!2!4!6!8!;!=!?!A!B!Q!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! ! ! ! ! !!!!!!!!!!!!! !"!$!&!(!*")"C)"G)"\)#\#\#%q#'#+#3#5#7#E#Gq#Hq#Iq#Kq#Sq#Uq#W#q#q#q#q#q#q#H##############q#q#q#q#q#q#q#q#q#q#q#q#q##q##q###q##q##q##q#q#q#q#q#q#q#q##q##q##q##q# #q##q##q##q###### #!#"#A#Bq#q##q##q##q##q##q##q##q##q##q##q##q##q#q#q#q#q#q#q#q##q##q##q##q##q##q# # q# # q# #q##q##q##q#D\#H\#M\#b$H$H$DH$HH$MH%\%\%%q%'%+%3%5%7%E%Gq%Hq%Iq%Kq%Sq%Uq%W%q%q%q%q%q%q%H%%%%%%%%%%%%%%q%q%q%q%q%q%q%q%q%q%q%q%q%%q%%q%%%q%%q%%q%%q%q%q%q%q%q%q%q%%q%%q%%q%%q% %q%%q%%q%%q%%%%%% %!%"%A%Bq%q%%q%%q%%q%%q%%q%%q%%q%%q%%q%%q%%q%%q%q%q%q%q%q%q%q%%q%%q%%q%%q%%q%%q% % q% % q% %q%%q%%q%%q%D\%H\%M\%b&H&H&DH&HH&MH'\'\'%q'''+'3'5'7'E'Gq'Hq'Iq'Kq'Sq'Uq'W'q'q'q'q'q'q'H''''''''''''''q'q'q'q'q'q'q'q'q'q'q'q'q''q''q'''q''q''q''q'q'q'q'q'q'q'q''q''q''q''q' 'q''q''q''q'''''' '!'"'A'Bq'q''q''q''q''q''q''q''q''q''q''q''q''q'q'q'q'q'q'q'q''q''q''q''q''q''q' ' q' ' q' 'q''q''q''q'D\'H\'M\'b(H(H(DH(HH(MH)\)\)%q)')+)3)5)7)E)Gq)Hq)Iq)Kq)Sq)Uq)W)q)q)q)q)q)q)H))))))))))))))q)q)q)q)q)q)q)q)q)q)q)q)q))q))q)))q))q))q))q)q)q)q)q)q)q)q))q))q))q))q) )q))q))q))q)))))) )!)")A)Bq)q))q))q))q))q))q))q))q))q))q))q))q))q)q)q)q)q)q)q)q))q))q))q))q))q))q) ) q) ) q) )q))q))q))q)D\)H\)M\)b*H*H*DH*HH*MHB%qBqBqBqBqBqBqBBqBqBqBdqBnqB\BqB\B\BB7qB\BqBqBBqBqBqBqBqBqBqBqBqBqBqBqCWF%qFqFqFqFqFqFqFFqFqFqFdqFnqF\FqF\F\FF7qF\FqFqFFqFqFqFqFqFqFqFqFqFqFqFqb#b8b:b;b=bb#b%b'b5b7b9bvbwbxbzb}bbbb3bAbEbGbqb}bbbb#b%b'b)n/`  9 ^ " ^ . @  KU ^   : # D k D * (4 \s > <`  4Copyright 2012 Google Inc. All Rights Reserved.Copyright 2012 Google Inc. All Rights Reserved.Noto SerifNoto SerifRegularRegularMonotype Imaging - Noto SerifMonotype Imaging - Noto SerifNoto SerifNoto SerifVersion 1.06Version 1.06NotoSerifNotoSerifNoto is a trademark of Google Inc.Noto is a trademark of Google Inc.Monotype Imaging Inc.Monotype Imaging Inc.Monotype Design TeamMonotype Design TeamData hinted. Designed by Monotype design team.Data hinted. Designed by Monotype design team.http://www.google.com/get/noto/http://www.google.com/get/noto/http://www.monotype.com/studiohttp://www.monotype.com/studioThis Font Software is licensed under the SIL Open Font License, Version 1.1. This Font Software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the SIL Open Font License for the specific language, permissions and limitations governing your use of this Font Software.This Font Software is licensed under the SIL Open Font License, Version 1.1. This Font Software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the SIL Open Font License for the specific language, permissions and limitations governing your use of this Font Software.http://scripts.sil.org/OFLhttp://scripts.sil.org/OFLff  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a bcdefghjikmlnoqprsutvwxzy{}|~     !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~glyph1uni000Duni000Auni00A0uni00ADuni00B2uni00B3uni00B9AmacronamacronAbreveabreveAogonekaogonek Ccircumflex ccircumflex Cdotaccent cdotaccentDcarondcaronDcroatEmacronemacronEbreveebreve Edotaccent edotaccentEogonekeogonekEcaronecaron Gcircumflex gcircumflex Gdotaccent gdotaccentuni0122uni0123 Hcircumflex hcircumflexHbarhbarItildeitildeImacronimacronIbreveibreveIogonekiogonekIJij Jcircumflex jcircumflexuni0136uni0137 kgreenlandicLacutelacuteuni013Buni013CLcaronlcaronLdotldotNacutenacuteuni0145uni0146Ncaronncaron napostropheEngengOmacronomacronObreveobreve Ohungarumlaut ohungarumlautRacuteracuteuni0156uni0157RcaronrcaronSacutesacute Scircumflex scircumflexuni0162uni0163TcarontcaronTbartbarUtildeutildeUmacronumacronUbreveubreveUringuring Uhungarumlaut uhungarumlautUogonekuogonek Wcircumflex wcircumflex Ycircumflex ycircumflexZacutezacute Zdotaccent zdotaccentlongsOhornohornuni01A2uni01A3uni01A4uni01A5uni01A6uni01A7uni01A8uni01A9uni01AAuni01ABuni01ACuni01ADuni01AEUhornuhornuni0374uni0375uni037Auni037Buni037Cuni037Duni037Etonos dieresistonos Alphatonos anoteleia EpsilontonosEtatonos Iotatonos Omicrontonos Upsilontonos OmegatonosiotadieresistonosAlphaBetaGammauni0394EpsilonZetaEtaThetaIotaKappaLambdaMuNuXiOmicronPiRhoSigmaTauUpsilonPhiChiPsiuni03A9 IotadieresisUpsilondieresis alphatonos epsilontonosetatonos iotatonosupsilondieresistonosalphabetagammadeltaepsilonzetaetathetaiotakappalambdauni03BCnuxiomicronrhosigma1sigmatauupsilonphichipsiomega iotadieresisupsilondieresis omicrontonos upsilontonos omegatonosuni03D0theta1Upsilon1uni03D3uni03D4phi1omega1uni03D7uni03D8uni03D9uni03DAuni03DBuni03DCuni03DDuni03DEuni03DFuni03E0uni03E1uni03E2uni03E3uni03E4uni03E5uni03E6uni03E7uni03E8uni03E9uni03EAuni03EBuni03ECuni03EDuni03EEuni03EFuni03F0uni03F1uni03F2uni03F3uni03F4uni03F5uni03F6uni03F7uni03F8uni03F9uni03FAuni03FBuni03FCuni03FDuni03FEuni03FFuni0400uni0401uni0402uni0403uni0404uni0405uni0406uni0407uni0408uni0409uni040Auni040Buni040Cuni040Duni040Euni040Funi0410uni0411uni0412uni0413uni0414uni0415uni0416uni0417uni0418uni0419uni041Auni041Buni041Cuni041Duni041Euni041Funi0420uni0421uni0422uni0423uni0424uni0425uni0426uni0427uni0428uni0429uni042Auni042Buni042Cuni042Duni042Euni042Funi0430uni0431uni0432uni0433uni0434uni0435uni0436uni0437uni0438uni0439uni043Auni043Buni043Cuni043Duni043Euni043Funi0440uni0441uni0442uni0443uni0444uni0445uni0446uni0447uni0448uni0449uni044Auni044Buni044Cuni044Duni044Euni044Funi0450uni0451uni0452uni0453uni0454uni0455uni0456uni0457uni0458uni0459uni045Auni045Buni045Cuni045Duni045Euni045Funi0460uni0461uni0462uni0463uni0464uni0465uni0466uni0467uni0468uni0469uni046Auni046Buni046Cuni046Duni046Euni046Funi0470uni0471uni0472uni0473uni0474uni0475uni0476uni0477uni0478uni0479uni047Auni047Buni047Cuni047Duni047Euni047Funi0480uni0481uni0482uni0483uni0484uni0485uni0486uni0487uni0488uni0489uni048Auni048Buni048Cuni048Duni048Euni048Funi0490uni0491uni0492uni0493uni0494uni0495uni0496uni0497uni0498uni0499uni049Auni049Buni049Cuni049Duni049Euni049Funi04A0uni04A1uni04A2uni04A3uni04A4uni04A5uni04A6uni04A7uni04A8uni04A9uni04AAuni04ABuni04ACuni04ADuni04AEuni04AFuni04B0uni04B1uni04B2uni04B3uni04B4uni04B5uni04B6uni04B7uni04B8uni04B9uni04BAuni04BBuni04BCuni04BDuni04BEuni04BFuni04C0uni04C1uni04C2uni04C3uni04C4uni04C5uni04C6uni04C7uni04C8uni04C9uni04CAuni04CBuni04CCuni04CDuni04CEuni04CFuni04D0uni04D1uni04D2uni04D3uni04D4uni04D5uni04D6uni04D7uni04D8uni04D9uni04DAuni04DBuni04DCuni04DDuni04DEuni04DFuni04E0uni04E1uni04E2uni04E3uni04E4uni04E5uni04E6uni04E7uni04E8uni04E9uni04EAuni04EBuni04ECuni04EDuni04EEuni04EFuni04F0uni04F1uni04F2uni04F3uni04F4uni04F5uni04F6uni04F7uni04F8uni04F9uni04FAuni04FBuni04FCuni04FDuni04FEuni04FFuni1EA0uni1EA1uni1EA2uni1EA3uni1EA4uni1EA5uni1EA6uni1EA7uni1EA8uni1EA9uni1EAAuni1EABuni1EACuni1EADuni1EAEuni1EAFuni1EB0uni1EB1uni1EB2uni1EB3uni1EB4uni1EB5uni1EB6uni1EB7uni1EB8uni1EB9uni1EBAuni1EBBuni1EBCuni1EBDuni1EBEuni1EBFuni1EC0uni1EC1uni1EC2uni1EC3uni1EC4uni1EC5uni1EC6uni1EC7uni1EC8uni1EC9uni1ECAuni1ECBuni1ECCuni1ECDuni1ECEuni1ECFuni1ED0uni1ED1uni1ED2uni1ED3uni1ED4uni1ED5uni1ED6uni1ED7uni1ED8uni1ED9uni1EDAuni1EDBuni1EDCuni1EDDuni1EDEuni1EDFuni1EE0uni1EE1uni1EE2uni1EE3uni1EE4uni1EE5uni1EE6uni1EE7uni1EE8uni1EE9uni1EEAuni1EEBuni1EECuni1EEDuni1EEEuni1EEFuni1EF0uni1EF1Ygraveygraveuni1EF4uni1EF5uni1EF6uni1EF7uni1EF8uni1EF9uni2000uni2001uni2002uni2003uni2004uni2005uni2006uni2007uni2008uni2009uni200Auni200Buni200Cuni200Duni200Euni200Funi2011 figuredashuni2015uni2016 underscoredbl quotereverseduni201Funi202Auni202Buni202Cuni202Duni202Euni202Fminuteseconduni2034uni2060Euro arrowleft arrowright arrowdblleft arrowdblrightuni2215uni2219 orthogonal intersection equivalence filledboxH22073H18543H18551 filledrecttriaguptriagrttriagdntriaglfcircleuni25CCH18533 invbullet invcircle openbulletuni2610uni2611uniFEFFEX4Vruby-asciidoctor-pdf-1.6.2/data/themes/000077500000000000000000000000001416357056400177625ustar00rootroot00000000000000ruby-asciidoctor-pdf-1.6.2/data/themes/base-theme.yml000066400000000000000000000066711416357056400225310ustar00rootroot00000000000000# NOTE file is read "as is"; variables are not parsed; key layout must be flat # QUESTION should vertical_spacing be block_spacing instead? vertical_spacing: 12 page_background_color: 'FFFFFF' page_layout: portrait page_initial_zoom: FitH # 36 is equivalent to 0.5in page_margin: 36 page_margin_inner: 48 page_margin_outer: 24 page_size: A4 base_align: left #base_font_color: '333333' base_font_color: '000000' #base_font_family: Times-Roman base_font_family: Helvetica base_font_size: 12 # QUESTION should we rename to min_font_size? base_font_size_min: 6 base_font_style: normal base_line_height: 1.15 base_border_color: 'EEEEEE' base_border_width: 0.5 role_line-through_text_decoration: line-through role_underline_text_decoration: underline role_big_font_size: 14 role_small_font_size: 10 role_subtitle_font_size: 0.8em button_content: '[%s]' button_font_family: Courier button_font_style: bold key_font_family: Courier key_font_style: italic mark_background_color: ffff00 mark_border_offset: 1 link_font_color: '0000EE' literal_font_family: Courier heading_font_style: bold heading_h1_font_size: 24 heading_h2_font_size: 18 heading_h3_font_size: 16 heading_h4_font_size: 14 heading_h5_font_size: 12 heading_h6_font_size: 10 heading_line_height: 1.15 heading_margin_top: 4 heading_margin_bottom: 12 heading_min_height_after: 20 title_page_align: center title_page_line_height: 1.15 title_page_logo_top: 10% title_page_title_top: 40% title_page_title_font_size: 18 title_page_subtitle_font_size: 14 title_page_authors_margin_top: 12 outline_list_indent: 30 outline_list_item_spacing: 6 description_list_description_indent: 30 description_list_term_font_style: bold description_list_term_spacing: 4 block_margin_top: 0 block_margin_bottom: 12 caption_align: left caption_font_style: italic caption_margin_inside: 4 caption_margin_outside: 0 abstract_font_size: 13.5 abstract_line_height: 1.4 abstract_padding: 0 abstract_title_align: center abstract_title_font_style: bold admonition_column_rule_color: 'EEEEEE' admonition_column_rule_width: 0.5 admonition_padding: [0, 12, 0, 12] admonition_label_font_style: bold admonition_label_text_transform: uppercase blockquote_border_color: 'EEEEEE' blockquote_border_left_width: 4 blockquote_padding: [6, 12, -6, 14] verse_border_color: 'EEEEEE' verse_border_left_width: 4 verse_padding: [6, 12, -6, 14] code_font_family: Courier code_font_size: 10.8 code_line_height: 1.2 code_padding: 9 code_border_color: 'EEEEEE' code_border_width: 0.5 conum_line_height: 1.15 conum_glyphs: circled example_background_color: 'FFFFFF' example_border_color: 'EEEEEE' example_border_width: 0.5 # FIXME reenable margin bottom once margin collapsing is implemented example_padding: [12, 12, 0, 12] image_align: left lead_font_size: 13.5 lead_line_height: 1.4 prose_margin_top: 0 prose_margin_bottom: 12 sidebar_background_color: 'EEEEEE' # FIXME reenable margin bottom once margin collapsing is implemented sidebar_padding: [12, 12, 0, 12] sidebar_title_align: center sidebar_title_font_style: bold table_border_color: '000000' table_border_style: solid table_border_width: 0.5 table_cell_padding: 2 table_head_font_style: bold table_head_border_bottom_width: 1.25 table_body_stripe_background_color: 'EEEEEE' thematic_break_border_color: 'EEEEEE' thematic_break_border_style: solid thematic_break_border_width: 0.5 toc_indent: 15 toc_line_height: 1.4 footnotes_font_size: 9 footnotes_item_space: 3 footer_recto_right_content: '{page-number}' footer_verso_left_content: '{page-number}' ruby-asciidoctor-pdf-1.6.2/data/themes/default-theme.yml000066400000000000000000000207431416357056400232370ustar00rootroot00000000000000font: catalog: # Noto Serif supports Latin, Latin-1 Supplement, Latin Extended-A, Greek, Cyrillic, Vietnamese & an assortment of symbols Noto Serif: normal: notoserif-regular-subset.ttf bold: notoserif-bold-subset.ttf italic: notoserif-italic-subset.ttf bold_italic: notoserif-bold_italic-subset.ttf # M+ 1mn supports ASCII and the circled numbers used for conums M+ 1mn: normal: mplus1mn-regular-subset.ttf bold: mplus1mn-bold-subset.ttf italic: mplus1mn-italic-subset.ttf bold_italic: mplus1mn-bold_italic-subset.ttf page: background_color: FFFFFF layout: portrait initial_zoom: FitH margin: [0.5in, 0.67in, 0.67in, 0.67in] # margin_inner and margin_outer keys are used for recto/verso print margins when media=prepress margin_inner: 0.75in margin_outer: 0.59in size: A4 base: align: justify # color as hex string (leading # is optional) font_color: 333333 # color as RGB array #font_color: [51, 51, 51] # color as CMYK array (approximated) #font_color: [0, 0, 0, 0.92] #font_color: [0, 0, 0, 92%] font_family: Noto Serif # choose one of these font_size/line_height_length combinations #font_size: 14 #line_height_length: 20 #font_size: 11.25 #line_height_length: 18 #font_size: 11.2 #line_height_length: 16 font_size: 10.5 #line_height_length: 15 # correct line height for Noto Serif metrics line_height_length: 12 #font_size: 11.25 #line_height_length: 18 line_height: $base_line_height_length / $base_font_size font_size_large: round($base_font_size * 1.25) font_size_small: round($base_font_size * 0.85) font_size_min: $base_font_size * 0.75 font_style: normal border_color: EEEEEE border_radius: 4 border_width: 0.5 role: line-through: text_decoration: line-through underline: text_decoration: underline big: font_size: $base_font_size_large small: font_size: $base_font_size_small subtitle: font_size: 0.8em font_color: 999999 # FIXME vertical_rhythm is weird; we should think in terms of ems #vertical_rhythm: $base_line_height_length * 2 / 3 # correct line height for Noto Serif metrics (comes with built-in line height) vertical_rhythm: $base_line_height_length horizontal_rhythm: $base_line_height_length # QUESTION should vertical_spacing be block_spacing instead? vertical_spacing: $vertical_rhythm link: font_color: 428BCA # literal is currently used for inline monospaced in prose and table cells literal: font_color: B12146 font_family: M+ 1mn button: content: "[\u2009%s\u2009]" font_style: bold key: background_color: F5F5F5 border_color: CCCCCC border_offset: 2 border_radius: 2 border_width: 0.5 font_family: $literal_font_family separator: "\u202f+\u202f" mark: background_color: FFFF00 border_offset: 1 menu: caret_content: " \u203a " heading: align: left font_color: $base_font_color font_style: bold # h1 is used for part titles (book doctype) or the doctitle (article doctype) h1_font_size: floor($base_font_size * 2.6) # h2 is used for chapter titles (book doctype only) h2_font_size: floor($base_font_size * 2.15) h3_font_size: round($base_font_size * 1.7) h4_font_size: $base_font_size_large h5_font_size: $base_font_size h6_font_size: $base_font_size_small #line_height: 1.4 # correct line height for Noto Serif metrics (comes with built-in line height) line_height: 1 margin_top: $vertical_rhythm * 0.4 margin_bottom: $vertical_rhythm * 0.9 min_height_after: $base_line_height_length * 1.5 title_page: align: right logo: top: 10% title: top: 55% font_size: $heading_h1_font_size font_color: 999999 line_height: 0.9 subtitle: font_size: $heading_h3_font_size font_style: bold_italic line_height: 1 authors: margin_top: $base_font_size * 1.25 font_size: $base_font_size_large font_color: 181818 revision: margin_top: $base_font_size * 1.25 block: margin_top: 0 margin_bottom: $vertical_rhythm caption: align: left font_size: $base_font_size * 0.95 font_style: italic # FIXME perhaps set line_height instead of / in addition to margins? margin_inside: $vertical_rhythm / 3 #margin_inside: $vertical_rhythm / 4 margin_outside: 0 lead: font_size: $base_font_size_large line_height: 1.4 abstract: font_color: 5C6266 font_size: $lead_font_size line_height: $lead_line_height font_style: italic first_line_font_style: bold title: align: center font_color: $heading_font_color font_size: $heading_h4_font_size font_style: $heading_font_style admonition: column_rule_color: $base_border_color column_rule_width: $base_border_width padding: [0, $horizontal_rhythm, 0, $horizontal_rhythm] #icon: # tip: # name: far-lightbulb # stroke_color: 111111 # size: 24 label: text_transform: uppercase font_style: bold blockquote: font_size: $base_font_size_large border_color: $base_border_color border_width: 0 border_left_width: 5 # FIXME disable negative padding bottom once margin collapsing is implemented padding: [0, $horizontal_rhythm, $block_margin_bottom * -0.75, $horizontal_rhythm + $blockquote_border_left_width / 2] cite_font_size: $base_font_size_small cite_font_color: 999999 verse: font_size: $blockquote_font_size border_color: $blockquote_border_color border_width: $blockquote_border_width border_left_width: $blockquote_border_left_width padding: $blockquote_padding cite_font_size: $blockquote_cite_font_size cite_font_color: $blockquote_cite_font_color # code is used for source blocks (perhaps change to source or listing?) code: font_color: $base_font_color font_family: $literal_font_family font_size: ceil($base_font_size) padding: $code_font_size line_height: 1.25 # line_gap is an experimental property to control how a background color is applied to an inline block element line_gap: 3.8 background_color: F5F5F5 border_color: CCCCCC border_radius: $base_border_radius border_width: 0.75 conum: font_family: $literal_font_family font_color: $literal_font_color font_size: $base_font_size line_height: 4 / 3 glyphs: circled example: border_color: $base_border_color border_radius: $base_border_radius border_width: 0.75 background_color: $page_background_color # FIXME reenable padding bottom once margin collapsing is implemented padding: [$vertical_rhythm, $horizontal_rhythm, 0, $horizontal_rhythm] image: align: left prose: margin_top: $block_margin_top margin_bottom: $block_margin_bottom sidebar: background_color: EEEEEE border_color: E1E1E1 border_radius: $base_border_radius border_width: $base_border_width # FIXME reenable padding bottom once margin collapsing is implemented padding: [$vertical_rhythm, $vertical_rhythm * 1.25, 0, $vertical_rhythm * 1.25] title: align: center font_color: $heading_font_color font_size: $heading_h4_font_size font_style: $heading_font_style thematic_break: border_color: $base_border_color border_style: solid border_width: $base_border_width margin_top: $vertical_rhythm * 0.5 margin_bottom: $vertical_rhythm * 1.5 description_list: term_font_style: bold term_spacing: $vertical_rhythm / 4 description_indent: $horizontal_rhythm * 1.25 outline_list: indent: $horizontal_rhythm * 1.5 #marker_font_color: 404040 # NOTE outline_list_item_spacing applies to list items that do not have complex content item_spacing: $vertical_rhythm / 2 table: background_color: $page_background_color border_color: DDDDDD border_width: $base_border_width cell_padding: 3 head: font_style: bold border_bottom_width: $base_border_width * 2.5 body: stripe_background_color: F9F9F9 foot: background_color: F0F0F0 toc: indent: $horizontal_rhythm line_height: 1.4 dot_leader: #content: ". " font_color: A9A9A9 #levels: 2 3 footnotes: font_size: round($base_font_size * 0.75) item_spacing: $outline_list_item_spacing / 2 header: font_size: $base_font_size_small line_height: 1 vertical_align: middle footer: font_size: $base_font_size_small # NOTE if background_color is set, background and border will span width of page border_color: DDDDDD border_width: 0.25 height: $base_line_height_length * 2.5 line_height: 1 padding: [$base_line_height_length / 2, 1, 0, 1] vertical_align: top recto: #columns: "<50% =0% >50%" right: content: '{page-number}' verso: #columns: $footer_recto_columns left: content: $footer_recto_right_content ruby-asciidoctor-pdf-1.6.2/data/themes/default-with-fallback-font-theme.yml000066400000000000000000000006371416357056400267110ustar00rootroot00000000000000extends: default font: catalog: merge: true # M+ 1p supports Latin, Latin-1 Supplement, Latin Extended, Greek, Cyrillic, Vietnamese, Japanese & an assortment of symbols # It also provides arrows for ->, <-, => and <= replacements in case these glyphs are missing from font M+ 1p Fallback: mplus1p-regular-fallback.ttf Noto Emoji: notoemoji-subset.ttf fallbacks: [M+ 1p Fallback, Noto Emoji] ruby-asciidoctor-pdf-1.6.2/docs/000077500000000000000000000000001416357056400165145ustar00rootroot00000000000000ruby-asciidoctor-pdf-1.6.2/docs/theming-guide.adoc000066400000000000000000004366751416357056400221170ustar00rootroot00000000000000= Asciidoctor PDF Theming Guide Dan Allen // Settings: :idprefix: :idseparator: - :toc: macro :experimental: ifndef::env-github[:icons: font] ifdef::env-github[] :outfilesuffix: .adoc :!toc-title: :caution-caption: :fire: :important-caption: :exclamation: :note-caption: :paperclip: :tip-caption: :bulb: :warning-caption: :warning: endif::[] :window: _blank // Aliases: :conum-guard-yaml: # ifndef::icons[:conum-guard-yaml: # #] ifdef::backend-pdf[:conum-guard-yaml: # #] :url-fontforge: https://fontforge.github.io/en-US/ :url-fontforge-scripting: https://fontforge.github.io/en-US/documentation/scripting/ :url-prawn: http://prawnpdf.org //// Topics remaining to document: * line height and line height length (and what that all means) * title page layout / title page images (logo & background) * document that unicode escape sequences can be used inside double-quoted strings //// [.lead] The theming system in Asciidoctor PDF is used to control the layout and styling of the PDF file Asciidoctor PDF generates from AsciiDoc. This document describes how the theming system works, how to define a custom theme in YAML and how to activate the theme when running Asciidoctor PDF. TIP: The quickest way to create your own theme is to <>. This not only gives you a set of foundation styles to build on, it also provides a collection of <>. If you want to replace the bundled fonts with your own, you must declare the name and location of each font in the <>. To reuse the bundled fonts, you can either extend the default theme and/or redeclare the bundled fonts in the font catalog. WARNING: If you don't declare your own fonts (or extend the default theme), only the built-in (AFM) fonts provided by the PDF reader will be available. Using AFM fonts can result in missing functionality and warnings. See the <> section to learn more about these limitations. toc::[] == Language Overview The Asciidoctor PDF theme language is described using the http://en.wikipedia.org/wiki/YAML[YAML] data format and incorporates many _concepts_ from CSS and SASS. Therefore, if you have a background in web design, the terminology should be immediately familiar to you. *Note, however, that the theming system isn't actually CSS.* The theme file must be named _-theme.yml_, where `` is the name of the theme. _We recommend *not* using the names *base* or *default* so you don't confuse it with one of the built-in themes._ === Selectors and Properties Like CSS, themes have both selectors and properties. Selectors are the component you want to style. The properties are the style elements of that component that can be styled. All selector names are implicit (e.g., `heading`), so you customize the theme primarily by manipulating pre-defined property values (e.g., `font-size`). [NOTE] ==== The theme language in Asciidoctor PDF supports a limited subset of the properties from CSS. Some of these properties have different names from those found in CSS. * An underscore (`_`) may be used in place of a hyphen (`-`) in all property names (so you may use `font_family` or `font-family`). * An underscore (`_`) may be used in place of a hyphen (`-`) in all variable names (so you may use `$base_font_family` or `$base-font-family`). * Instead of separate properties for font weight and font style, the theme language combines these settings in the `font-style` property (allowed values: `normal`, `bold`, `italic` and `bold_italic`). * The `align` property in the theme language is roughly equivalent to the `text-align` property in CSS. * The `font-color` property in the theme language is equivalent to the `color` property in CSS. ==== A theme is described in a YAML-based data format and stored in a dedicated theme file. YAML is a human-friendly data format that resembles CSS and helps to describe the theme. The theme language adds some extra features to YAML, such as variables, basic math, measurements and color values. These enhancements will be explained in detail in later sections. === Basic Theme Here's an example of a basic theme file that extends the base theme: .basic-theme.yml [source,yaml] ---- page: layout: portrait margin: [0.75in, 1in, 0.75in, 1in] size: Letter base: font-color: #333333 font-family: Times-Roman font-size: 12 line-height-length: 17 line-height: $base-line-height-length / $base-font-size vertical-spacing: $base-line-height-length heading: font-color: #262626 font-size: 17 font-style: bold line-height: 1.2 margin-bottom: $vertical-spacing link: font-color: #002FA7 outline-list: indent: $base-font-size * 1.5 footer: height: $base-line-height-length * 2.5 line-height: 1 recto: right: content: '{page-number}' verso: left: content: $footer-recto-right-content ---- When creating a new theme, you only have to define the keys you want to override from the base theme, which is loaded prior to loading your custom theme. All the available keys are documented in <>. The converter uses the information from the theme map to help construct the PDF. === Basic Extended Theme Instead of designing a theme from scratch, you can extend the default theme using the `extends` key as follows: [source,yaml] ---- extends: default base: font-color: #ff0000 ---- You can also point the extends key at another custom theme to extend from it. If you don't want to extend any theme, including the base theme, assign the value `~` to the `extends` key (i.e., `extends: ~`). WARNING: If you start a new theme from scratch, we strongly recommend defining TrueType fonts and specifying them in the `base` and `literal` categories. Otherwise, Asciidoctor PDF will use built-in AFM fonts, which can result in missing functionality and warnings. [TIP] ==== Instead of creating a theme from scratch, another option is to download the https://github.com/asciidoctor/asciidoctor-pdf/blob/main/data/themes/default-theme.yml[default-theme.yml] file from the source repository. Save the file using a unique name (e.g., _custom-theme.yml_) and start hacking on it. Alternatively, you can snag the file from your local installation using the following command: $ ASCIIDOCTOR_PDF_DIR=`gem contents asciidoctor-pdf --show-install-dir`;\ cp "$ASCIIDOCTOR_PDF_DIR/data/themes/default-theme.yml" custom-theme.yml ==== === Key Nesting Keys may be nested to an arbitrary depth to eliminate redundant prefixes (an approach inspired by SASS). Once the theme is loaded, all keys are flattened into a single map of qualified keys. Nesting is simply a shorthand way of organizing the keys. In the end, a theme is just a map of key/value pairs. Nested keys are adjoined to their parent key with an underscore (`_`) or hyphen (`-`). This means the selector part (e.g., `link`) is combined with the property name (e.g., `font-color`) into a single, qualified key (e.g., `link_font_color` or `link-font-color`). For example, let's assume we want to set the base (i.e., global) font size and color. These keys may be written longhand: [source,yaml] ---- base-font-color: #333333 base-font-family: Times-Roman base-font-size: 12 ---- Or, to avoid having to type the prefix `base-` multiple times, the keys may be written as a hierarchy: [source,yaml] ---- base: font-color: #333333 font-family: Times-Roman font-size: 12 ---- Or even: [source,yaml] ---- base: font: color: #333333 family: Times-Roman size: 12 ---- Each level of nesting must be indented by two spaces from the indentation of the parent level. Also note the presence of the colon (`:`) after each key name. == Values The value of a key may be one of the following types: * String ** Font family name (e.g., Roboto) ** Font style (normal, bold, italic, bold_italic) ** Alignment (left, center, right, justify) ** Color as hex string (e.g., 'ff0000', #ff0000, or '#ff0000') ** Image path ** Enumerated type (where specified) ** Text content (where specified) * Null (clears any previously assigned value) ** _empty_ (i.e., no value specified) ** null ** ~ * Number (integer or float) with optional units (default unit is points) * Array ** Color as RGB array (e.g., [51, 51, 51]) ** Color CMYK array (e.g., [50, 100, 0, 0]) ** Margin (e.g., [1in, 1in, 1in, 1in]) ** Padding (e.g., [1in, 1in, 1in, 1in]) * Variable reference (e.g., $base_font_color or $base-font-color) * Math expression Note that keys almost always require a value of a specific type, as documented in <>. === Inheritance Like CSS, inheritance is a principle feature in the Asciidoctor PDF theme language. For many of the properties, if a key is not specified, the key inherits the value applied to the parent content in the content hierarchy. This behavior saves you from having to specify properties unless you want to override the inherited value. The following keys are inherited: * font-family * font-color * font-size * font-style * text-transform * line-height (currently some exceptions) * margin-bottom (if not specified, defaults to $vertical-spacing) .Heading Inheritance **** Headings inherit starting from a specific heading level (e.g., `heading-h2-font-size`), then to the heading category (e.g., `heading-font-size`), then directly to the base value (e.g., `base-font-size`). Any setting from an enclosing context, such as a sidebar, is skipped. **** === Variables To save you from having to type the same value in your theme over and over, or to allow you to base one value on another, the theme language supports variables. Variables consist of the key name preceded by a dollar sign (`$`) (e.g., `$base-font-size`). Any qualified key that has already been defined can be referenced in the value of another key. (In order words, as soon as the key is assigned, it's available to be used as a variable). IMPORTANT: Variables are defined from top to bottom (i.e., in document order). Therefore, a variable must be defined before it is referenced. In other words, the path the variable refers to must be *above* the usage of that variable. For example, once the following line is processed, [source,yaml] ---- base: font-color: #333333 ---- the variable `$base-font-color` will be available for use in subsequent lines and will resolve to `#333333`. Let's say you want to make the font color of the sidebar title the same as the heading font color. Just assign the value `$heading-font-color` to the `$sidebar-title-font-color`. [source,yaml] ---- heading: font-color: #191919 sidebar: title: font-color: $heading-font-color ---- You can also use variables in math expressions to use one value to build another. This is commonly done to set font sizes proportionally. It also makes it easy to test different values very quickly. [source,yaml] ---- base: font-size: 12 font-size-large: $base-font-size * 1.25 font-size-small: $base-font-size * 0.85 ---- We'll cover more about math expressions later. ==== Custom Variables You can define arbitrary key names to make custom variables. This is one way to group reusable values at the top of your theme file. If you are going to do this, it's recommended that you organize the keys under a custom namespace, such as `brand`. For instance, here's how you can define your brand colors: [source,yaml,subs=attributes+] ---- brand: primary-color: #E0162B {conum-guard-yaml} <1> secondary-color: '#FFFFFF' {conum-guard-yaml} <2> alert-color: '0052A5' {conum-guard-yaml} <3> ---- <1> To align with CSS, you may add `+#+` in front of the hex color value to coerce it to a string. A YAML preprocessor is used to ensure the value is not treated as a comment as would normally be the case in YAML. <2> You may put quotes around the CSS-style hex value to make it friendly to a YAML editor or validation tool. <3> The leading `+#+` on a hex value is entirely optional. However, we recommend that you always use either a leading `+#+` or surrounding quotes (or both) to prevent YAML from mangling the value (for example, 000000 would become 0, so use '000000' or #000000 instead). You can now use these custom variables later in the theme file: [source,yaml] ---- base: font-color: $brand-primary-color ---- === Math Expressions & Functions The theme language supports basic math operations to support calculated values. Like programming languages, multiply and divide take precedence over add and subtract. The following table lists the supported operations and the corresponding operator for each. [width=25%] |=== |Operation |Operator |multiply |* |divide |/ |add |+ |subtract |- |=== IMPORTANT: Operators must always be surrounded by a space on either side (e.g., 2 + 2, not 2+2). Here's an example of a math expression with fixed values. [source,yaml] ---- conum: line-height: 4 / 3 ---- Variables may be used in place of numbers anywhere in the expression: [source,yaml] ---- base: font-size: 12 font-size-large: $base-font-size * 1.25 ---- Values used in a math expression are automatically coerced to a float value before the operation. If the result of the expression is an integer, the value is coerced to an integer afterwards. IMPORTANT: Numeric values less than 1 must have a 0 before the decimal point (e.g., 0.85). The theme language also supports several functions for rounding the result of a math expression. The following functions may be used if they surround the whole value or expression for a key. round(...):: Rounds the number to the nearest half integer. floor(...):: Rounds the number up to the next integer. ceil(...):: Rounds the number down the previous integer. You might use these functions in font size calculations so that you get more exact values. [source,yaml] ---- base: font-size: 12.5 font-size-large: ceil($base-font-size * 1.25) ---- === Measurement Units Several of the keys require a value in points (pt), the unit of measure for the PDF canvas. A point is defined as 1/72 of an inch. If you specify a number without any units, the units defaults to pt. However, us humans like to think in real world units like inches (in), centimeters (cm), or millimeters (mm). You can let the theme do this conversion for you automatically by adding a unit notation next to any number. The following units are supported: [width=25%] |=== |Unit |Suffix |Centimeter |cm |Inches |in |Millimeter |mm |Percentage^[1]^ |%, vw, or vh |Points |pt (default) |=== . A percentage with the % unit is calculated relative to the width or height of the content area. Viewport-relative percentages (vw or vh units) are calculated as a percentage of the page width or height, respectively. Currently, percentage units can only be used for placing elements on the title page or for setting the width of a block image. Here's an example of how you can use inches to define the page margins: [source,yaml] ---- page: margin: [0.75in, 1in, 0.75in, 1in] ---- The order of elements in a measurement array is the same as it is in CSS: . top . right . bottom . left === Alignments The align subkey is used to align text and images within the parent container. ==== Text Alignments Text can be aligned as follows: * left * center * right * justify (stretched to each edge) ==== Text Decorations The following decorations can be applied to text: * none (no decoration) * underline * line-through ==== Image Alignments Images can be aligned as follows: * left * center * right === Font Styles In most cases, wherever you can specify a custom font family, you can also specify a font style. These two settings are combined to locate the font to use. The following font styles are recognized: * normal (no style) * italic * bold * bold_italic === Text Transforms Many places where font properties can be specified, a case transformation can be applied to the text. The following transforms are recognized: * uppercase * lowercase * capitalize (each word, like CSS) * none (clears an inherited value) [CAUTION#transform-unicode-letters] ==== Since Ruby 2.4, Ruby has built-in support for transforming the case of any letter defined by Unicode. If you're using Ruby < 2.4, and the text you want to transform contains characters beyond the Basic Latin character set (e.g., an accented character), you must install either the `activesupport` or the `unicode` gem in order for those characters to be transformed. $ gem install activesupport or $ gem install unicode ==== === Colors The theme language supports color values in three formats: Hex:: A string of 3 or 6 characters with an optional leading `#`, optional surrounding quotes, or both. RGB:: An array of numeric values ranging from 0 to 255. CMYK:: An array of numeric values ranging from 0 to 1 or from 0% to 100%. Transparent:: The special value `transparent` indicates that a color should not be used. ==== Hex The hex color value is likely most familiar to web developers. The value must be either 3 or 6 characters (case insensitive) with an optional leading hash (`#`), optional surrounding quotes, or both. To align with CSS, you may add a `+#+` in front of the hex color value. A YAML preprocessor is used to ensure the value is not treated as a comment as would normally be the case in YAML. That same preprocessor will also coerce a primitive value to a string if `color` is the name of the last segment in the key (e.g., `font-color`). This avoids the problem of 000 becoming 0 (and similar implicit conversions) when the theme file is parsed. You also may put quotes around the CSS-style hex value to make it friendly to a YAML editor or validation tool. In this case, the leading `+#+` on a hex value is entirely optional. Regardless, we recommend that you always use either a leading `+#+` or surrounding quotes (or both) to prevent YAML from mangling the value. The following are all equivalent values for the color red: [cols="8*m"] |=== |#ff0000 |#FF0000 |'ff0000' |'FF0000' |#f00 |#F00 |'f00' |'F00' |=== Here's how a hex color value appears in the theme file: [source,yaml] ---- base: font-color: #ff0000 ---- ==== RGB An RGB array value must be three numbers ranging from 0 to 255. The values must be separated by commas and be surrounded by square brackets. NOTE: An RGB array is automatically converted to a hex string internally, so there's no difference between ff0000 and [255, 0, 0]. Here's how to specify the color red in RGB: * [255, 0, 0] Here's how a RGB color value appears in the theme file: [source,yaml] ---- base: font-color: [255, 0, 0] ---- ==== CMYK A CMYK array value must be four numbers ranging from 0 and 1 or from 0% to 100%. The values must be separated by commas and be surrounded by square brackets. Unlike the RGB array, the CMYK array _is not_ converted to a hex string internally. PDF has native support for CMYK colors, so you can preserve the original color values in the final PDF. Here's how to specify the color red in CMYK: * [0, 0.99, 1, 0] * [0, 99%, 100%, 0] Here's how a CMYK color value appears in the theme file: [source,yaml] ---- base: font-color: [0, 0.99, 1, 0] ---- ==== Transparent It's possible to specify no color by assigning the special value `transparent`, as shown here: [source,yaml] ---- table: background-color: transparent ---- The `transparent` keyword can be used for the background or border color, but not the font color. === Images An image is specified either as a bare image path or as an inline image macro as found in the AsciiDoc syntax. Images in the theme file are currently resolved relative to the value of the `pdf-themesdir` attribute. (If `pdf-theme` is a path that ends in `.yml`, and `pdf-themesdir` is not set, then the images are resolved relative to the directory of the path specified by `pdf-theme`). The following image types (and corresponding file extensions) are supported: * PNG (.png) * JPEG (.jpg) * SVG (.svg) CAUTION: The GIF format (.gif) and BMP format (.bmp) are not supported unless you're using prawn-gmagick. See https://github.com/asciidoctor/asciidoctor-pdf#supporting-additional-image-file-formats[support for additional image file formats] for details. Here's how an image is specified in the theme file as a bare image path: [source,yaml] ---- title-page: background-image: title-cover.png ---- Here's how the image is specified using the inline image macro: [source,yaml] ---- title-page: background-image: image:title-cover.png[] ---- In either case, the image is resolved relative to the value of the `pdf-themesdir` attribute, as previously described. Like in the AsciiDoc syntax, wrapping the value in the image macro allows you to specify other settings, such as `pdfwidth`, `fit`, and/or `align`. For example: [source,yaml] ---- title-page: logo-image: image:logo.png[pdfwidth=2.5in,align=center] ---- === Quoted String Some of the keys accept a quoted string as text content. The final segment of these keys is always named `content`. A content key accepts a string value. It's usually best to quote the string or use the http://symfony.com/doc/current/components/yaml/yaml_format.html#strings[YAML multi-line string syntax]. Text content may be formatted using a subset of inline HTML. You can use the well-known elements such as ``, ``, ``, ``, ``, ``, ``, and ``. The `` element supports the `style` attribute, which you can use to specify the `color`, `font-weight`, and `font-style` CSS properties. You can also use the `rgb` attribute on the `` element to change the color or the `name` and `size` attributes on the `` element to change the font properties. If you need to add an underline or strikethrough decoration to the text, you can assign the `underline` or `line-through` to the `class` attribute on any aforementioned element. Here's an example of using formatting in the content of the menu caret: [source,yaml] ---- menu-caret-content: " \u203a " ---- NOTE: The string must be double quoted in order to use a Unicode escape code like `\u203a`. Additionally, normal substitutions are applied to the value of content keys for <>, so you can use most AsciiDoc inline formatting (e.g., `+*strong*+` or `+{attribute-name}+`) in the values of those keys. == Fonts You can select from <>, <> or <> loaded from TrueType font (TTF) files. If you want to use custom fonts, you must first declare them in your theme file. IMPORTANT: Asciidoctor has no challenge working with Unicode. In fact, it prefers Unicode and considers the entire range. However, once you convert to PDF, you have to meet the font requirements of PDF in order to preserve Unicode characters. That means you need to provide a font (at least a fallback font) that contains glyphs for all the characters you want to use. If you don't, you may notice that characters are missing (usually replaced with a box). There's nothing Asciidoctor can do to convince PDF to work with extended characters without the right fonts in play. To see which characters are missing from the font, enable verbose mode (`-v`) when running Asciidoctor PDF. === Built-In (AFM) Fonts The names of the built-in fonts (for general-purpose text) are as follows: [width=33.33%] |=== |Font Name |Font Family |Helvetica |sans-serif |Times-Roman |serif |Courier |monospace |=== Using a built-in font requires no additional files. You can use the key anywhere a `font-family` property is accepted in the theme file. For example: [source,yaml] ---- base: font-family: Times-Roman ---- However, when you use a built-in font, the characters you can use in your document are limited to the characters in the WINANSI (http://en.wikipedia.org/wiki/Windows-1252[Windows-1252]) code set. WINANSI includes most of the characters needed for writing in Western languages (English, French, Spanish, etc). For anything outside of that, PDF is BYOF (Bring Your Own Font). Even though the built-in fonts require the content to be encoded in WINANSI, _you still type your AsciiDoc document in UTF-8_. Asciidoctor PDF encodes the content into WINANSI when building the PDF. WARNING: Built-in (AFM) fonts do not use the <>. In order for the fallback font to kick in, you must use a TrueType font as the primary font. .WINANSI Encoding Behavior **** When using the built-in PDF (AFM) fonts on a block of content in your AsciiDoc document, any character that cannot be encoded to WINANSI is replaced with a logic "`not`" glyph (`¬`) and you'll see the following warning in your console: The following text could not be fully converted to the Windows-1252 character set: | This behavior differs from the default behavior in Prawn, which is to simply crash. You'll often see this warning if you're using callouts in your document and you haven't specified a TrueType font in your theme. To prevent this warning, you need to specify a TrueType font. When using a TrueType font, you will get no warning for a missing glyph. That's a consequence of how Prawn works and is outside of Asciidoctor PDF's control. However, you'll likely see it substituted with a box (guaranteed if you're using one of the bundled fonts). For more information about how Prawn handles character encodings for built-in fonts, see https://github.com/prawnpdf/prawn/blob/master/CHANGELOG.md#vastly-improved-handling-of-encodings-for-pdf-built-in-afm-fonts[this note in the Prawn CHANGELOG]. **** === Bundled Fonts Asciidoctor PDF bundles several fonts that are used by the default theme. You can also use these fonts in your custom theme by simply declaring them. These fonts provide more characters than the built-in PDF fonts, but still only a subset of UTF-8 (to reduce the size of the gem). The family name of the fonts bundled with Asciidoctor PDF are as follows: http://www.google.com/get/noto/#/family/noto-serif[Noto Serif]:: A serif font that can be styled as normal, italic, bold or bold_italic. http://mplus-fonts.osdn.jp/mplus-outline-fonts/design/index-en.html#mplus_1mn[M+ 1mn]:: A monospaced font that maps different thicknesses to the styles normal, italic, bold and bold_italic. Also provides the circuled numbers used in callouts. http://mplus-fonts.osdn.jp/mplus-outline-fonts/design/index-en.html#mplus_1p[M+ 1p Fallback]:: A sans-serif font that provides a very complete set of Unicode glyphs. Cannot be styled as italic, bold or bold_italic. Used as the fallback font in the `default-with-fallback-font` theme. TIP: The default themes in Asciidoctor PDF < 2 do not include the `GEM_FONTS_DIR` prefix in the path of the bundled font files. Therefore, if you want to specify the location of custom fonts using the `pdf-fontsdir` attribute, yet still be able to use the bundled fonts, you need to qualify the path of the bundled fonts using the `GEM_FONTS_DIR` token. To do so, you can either a) redeclare the bundle fonts in your theme and prefix the path with the segment `GEM_FONTS_DIR` (e.g., `GEM_FONTS_DIR/mplus1p-regular-fallback.ttf`, or b) include `GEM_FONTS_DIR` in the value of the `pdf-fontsdir` attribute separated by the location of your custom fonts using a semi-colon (e.g., `"path/to/your/fonts;GEM_FONTS_DIR"`). === Custom Fonts The limited character set of WINANSI, or the bland look of the built-in fonts, may motivate you to load your own font. Custom fonts can enhance the look of your PDF theme substantially. To start, find the TTF file collection for the font you want to use. A collection typically consists of all four font styles: * normal * italic * bold * bold_italic You'll need all four variants to support AsciiDoc content properly. Otherwise, the converter will likely crash. If you don't have one of the variants, you can simply reuse the normal variant in its place. _Asciidoctor PDF cannot italicize a font dynamically like a browser can, so the italic styles are required._ In order for a third-party font to work properly with Prawn (and hence Asciidoctor PDF), several modifications are required. See <> to learn how to prepare your font for use with Asciidoctor PDF. Once you've obtained the TTF files, put them in the directory inside your project where you want to store the fonts. It's recommended that you name them consistently so it's easier to type the names in the theme file. Let's assume the name of the font is https://github.com/google/roboto/tree/master/out/RobotoTTF[Roboto]. Rename the files as follows: * roboto-normal.ttf (_originally Roboto-Regular.ttf_) * roboto-italic.ttf (_originally Roboto-Italic.ttf_) * roboto-bold.ttf (_originally Roboto-Bold.ttf_) * roboto-bold_italic.ttf (_originally Roboto-BoldItalic.ttf_) Next, declare the font under the `font-catalog` key at the top of your theme file, giving it a unique key (e.g., `Roboto`). [source,yaml] ---- font: catalog: Roboto: normal: roboto-normal.ttf italic: roboto-italic.ttf bold: roboto-bold.ttf bold_italic: roboto-bold_italic.ttf ---- CAUTION: You must declare all four variants. If you're missing the font file for one of the variants, configure it to use the same font file as the normal variant. You can use the key that you assign to the font in the font catalog anywhere the `font-family` property is accepted in the theme file. For example, to use the Roboto font for all headings (section titles and discrete headings), use: [source,yaml] ---- heading: font-family: Roboto ---- When you execute Asciidoctor PDF, specify the directory where the fonts reside using the `pdf-fontsdir` attribute: $ asciidoctor-pdf -a pdf-theme=basic-theme.yml -a pdf-fontsdir=path/to/fonts document.adoc You can specify multiple directories by separating the entries with a semi-colon and enclosing the value in double quotes: $ asciidoctor-pdf -a pdf-theme=basic-theme.yml -a pdf-fontsdir="path/to/fonts;path/to/more-fonts" document.adoc To include the bundled fonts in the search, use the `GEM_FONTS_DIR` token: $ asciidoctor-pdf -a pdf-theme=basic-theme.yml -a pdf-fontsdir="path/to/fonts;GEM_FONTS_DIR" document.adoc When running Asciidoctor PDF on the JVM (perhaps using AsciidoctorJ PDF), you can refer a directory inside of any JAR file on the classpath by prefixing the path with `uri:classloader:`: $ asciidoctorj -b pdf -a pdf-theme=basic-theme.yml -a pdf-fontsdir="uri:classloader:/path/to/fonts;GEM_FONTS_DIR" document.adoc TIP: When Asciidoctor PDF creates the PDF, it only embeds the glyphs from the font that are needed to render the characters present in the document. Effectively, it subsets the font. While that saves space taken up by the generated PDF, you may still be storing the full font in your source repository. To minimize the size of the source font, you can use {url-fontforge}[FontForge] to subset the font ahead of time. Subsetting a font means remove glyphs you don't plan to use. Doing so is not a requirement, simply a personal preference. You can add any number of fonts to the catalog. Each font must be assigned a unique key, as shown here: [source,yaml] ---- font: catalog: Roboto: normal: roboto-normal.ttf italic: roboto-italic.ttf bold: roboto-bold.ttf bold_italic: roboto-bold_italic.ttf Roboto Light: normal: roboto-light-normal.ttf italic: roboto-light-italic.ttf bold: roboto-light-bold.ttf bold_italic: roboto-light-bold_italic.ttf ---- Text in SVGs will use the font catalog from your theme. We recommend that you match the font key in your theme file to the name of the font seen by the operating system. This will allow you to use the same font names (aka families) in both your graphics program and Asciidoctor PDF, thus making them portable. === Fallback Fonts If a TrueType font is missing a character needed to render the document, such as a special symbol or emoji, you can have Asciidoctor PDF look for the character in a fallback font. You only need to specify a single fallback font, typically one that provides a full set of symbols. If the character isn't found in the fallback font, it will mostly likely be replaced by a box (i.e., the notdef glyph), which is guaranteed if you're using the bundled fallback font. IMPORTANT: When defining the fallback font, you *must specify all four variants* (normal, bold, italic, bold_italic), even if you use the same font file for each. IMPORTANT: The fallback font only gets used when the primary font is a TrueType font (i.e., TTF, DFont, TTC). Any glyph missing from an AFM font is simply replaced with the "`not`" glyph (`¬`). CAUTION: The `default` theme does not use a fallback font. However, the built-in `default-with-fallback-font` theme does. In fact, it provides two. One for general writing in non-Latin languages (M+ 1p) and another for emoji (Noto Emoji). Using the fallback font slows down PDF generation slightly because it has to analyze every single character. It's use is not recommended for large documents. Instead, it's best to select primary fonts that have all the characters you need. Like with other custom fonts, you first need to declare the fallback font. Let's choose https://github.com/android/platform_frameworks_base/blob/master/data/fonts/DroidSansFallback.ttf[Droid Sans Fallback]. You can map all the styles to a single font file (since bold and italic don't usually make sense for symbols). [source,yaml] ---- font: catalog: Roboto: normal: roboto-normal.ttf italic: roboto-italic.ttf bold: roboto-bold.ttf bold_italic: roboto-bold_italic.ttf DroidSansFallback: normal: droid-sans-fallback.ttf italic: droid-sans-fallback.ttf bold: droid-sans-fallback.ttf bold_italic: droid-sans-fallback.ttf ---- Notice that we define all four variants for the fallback font, even though we're use the same font file for each variant. This ensures the fallback font will be used regardless of which font style is active when it gets called on. Next, add the key name to the `fallbacks` key under the `font-catalog` key. The `fallbacks` key accepts an array of values, meaning you can specify more than one fallback font. However, we recommend using a single fallback font, if possible, as shown here: [source,yaml] ---- font: catalog: Roboto: normal: roboto-normal.ttf italic: roboto-italic.ttf bold: roboto-bold.ttf bold_italic: roboto-bold_italic.ttf DroidSansFallback: normal: droid-sans-fallback.ttf italic: droid-sans-fallback.ttf bold: droid-sans-fallback.ttf bold_italic: droid-sans-fallback.ttf fallbacks: - DroidSansFallback ---- TIP: If you are using more than one fallback font, add additional lines to the `fallbacks` key. Of course, make sure you've configured your theme to use your custom font: [source,yaml] ---- base: font-family: Roboto ---- That's it! Now you're covered. If your custom TTF font is missing a glyph, Asciidoctor PDF will look in your fallback font. You don't need to reference the fallback font anywhere else in your theme file. Here's another example that shows how to use an alternative emoji font (Symbola): [source,yaml] ---- extends: default-with-fallback-font font: catalog: merge: true Symbola: /path/to/symbola.ttf fallbacks: [ M+ 1p, Symbola ] ---- Now Asciidoctor PDF will look for the emoji in the Symbola font instead of the Noto Emoji font. == Keys This section lists all the keys that are available when creating a custom theme. The keys are organized by category. Each category represents a common prefix under which the keys are typically nested. TIP: Keys can be nested wherever an underscore (`_`) or hyphen (`-`) appears in the name. This nested structure is for organizational purposes only. All keys are flatted when the theme is loaded (e.g., `align` nested under `base` becomes `base-align`). The converter uses the values of these keys to control how most elements are arranged and styled in the PDF. The default values listed in this section get inherited from the https://github.com/asciidoctor/asciidoctor-pdf/blob/main/data/themes/base-theme.yml[base theme]. IMPORTANT: The https://github.com/asciidoctor/asciidoctor-pdf/blob/main/data/themes/default-theme.yml[default theme] has a different set of values which are not shown in this guide. When creating a theme, all keys are optional. Required keys are provided by the base theme. Therefore, you only have to declare keys that you want to override. [#keys-extends] === Extends A theme can extend another theme using the `extends` key. For example: [source,yaml] ---- extends: default base: font-color: #ff0000 ---- The extends key accepts either a single value or an array of values. Each value is interpreted as a filename. If the filename equals `default`, it resolves to the location of the default (built-in) theme. If the filename is absolute, it's used as is. If the filename begins with `./`, it's resolved as a theme file relative to the current theme file. Otherwise, the filename is resolved as a theme file in the normal way (relative to the value of the `pdf-themesdir` attribute). CAUTION: If you define the <> in a theme that extends from `default`, you either have to redeclare any built-in font that on which the combined theme depends, or you need to set `merge: true` above your font definitions. You can find the built-in definitions in default theme. You'll then need to include `GEM_FONTS_DIR` in the value of the `pdf-fontsdir` attribute so that the converter can find and register them. To avoid having to do this, make sure you set the font family for any element that declares a font family in the default theme. Currently, the base theme is always loaded first. Then, the files referenced by the extends key are loaded in order. Finally, the keys in the current file are loaded. Each time a theme is loaded, the keys are overlaid onto the keys from the previous theme. [cols="3,4,5l"] |=== |Key |Value Type |Example |extends |String or Array (default: []) |extends: - default - ./brand-theme.yml |=== [#keys-role] === Role The keys in the `role` category define custom roles for formatting. The name of the role is the first subkey level. The role name may contain a hyphen, but *a role name cannot contain an underscore*. The keys under the role are the theming properties. IMPORTANT: Custom roles only apply to inline phrases. Here's an example of a role for making text red: [source,yaml] ---- role: red: font-color: #ff0000 ---- This role can be used as follows: [source,asciidoc] ---- Error text is shown in [.red]#red#. ---- You can also use a role to unset a font color (to make it inherit): [source,yaml] ---- role: heading-code: font-color: ~ ---- This role can be used as follows: [source,asciidoc] ---- == [.heading-code]`SELECT` clause ---- The converter provides several predefined roles, which can can all be redefined. The `big` and `small` roles map the font size to the $base-font-size-large and $base-font-size-small values, respectively. The `underline` and `line-through` roles add the underline and strikethrough decorations, respectively. The `subtitle` role is used to configure the font properties of the subtitle of a section title. The color roles (e.g., `blue`), which you may be familiar with from the HTML converter, are not mapped by default. You'll need to define these color roles in your theme if you'd like to make use of them when converting to PDF. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-role]*Key Prefix:* <{zwsp}>> |background-color |<> + (default: _not set_) |role: highlight: background-color: #ffff00 |border-color |<> + (default: _not set_) |role: found: border-color: #cccccc |border-offset |<> + (default: 0) |role: found: border-offset: 2 |border-radius |<> + (default: _not set_) |role: found: border-radius: 3 |border-width |<> + (default: _not set_) |role: found: border-width: 0.5 |font-color |<> + (default: _inherit_) |role: red: font-color: #ff0000 |font-family |<> + (default: Courier) |role: label: font-family: M+ 1mn |font-size |<> + (default: _inherit_) |role: large: font-size: 12 |font-style |<> + (default: _inherit_) |role: heavy: font-style: bold |text-decoration |<> + (default: none) |role: deleted: text-decoration: line-through |text-decoration-color |<> + (default: $role--font-color) |role: deleted: text-decoration-color: #ff0000 |text-decoration-width |<> + (default: 1) |role: underline: text-decoration-width: 0.5 |=== [#keys-page] === Page The keys in this category control the size, margins and background of each page (i.e., canvas). We recommended that you define this category before all other categories. NOTE: The background of the title page can be styled independently of other pages. See <> for details. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-page]*Key Prefix:* <<key-prefix-page,page>> |background-color^[1]^ |<<colors,Color>> + (default: #ffffff) |page: background-color: #fefefe |background-image^[2]^ |image macro^[3]^ + (default: _not set_) |page: background-image: image:page-bg.png[] |background-image-(recto{vbar}verso)^[2]^ |image macro^[3]^ + (default: _not set_) |page: background-image: recto: image:page-bg-recto.png[] verso: image:page-bg-verso.png[] |foreground-image^[2]^ |image macro^[3]^ + (default: _not set_) |page foreground-image: image:watermark.svg[] |initial-zoom |Fit {vbar} FitH {vbar} FitV + (default: FitH) |page: initial-zoom: Fit |layout |portrait {vbar} landscape + (default: portrait) |page: layout: landscape |margin |<<measurement-units,Measurement>> {vbar} <<measurement-units,Measurement[top,right,bottom,left]>> + (default: 36) |page: margin: [0.5in, 0.67in, 1in, 0.67in] |margin-inner^[4]^ |<<measurement-units,Measurement>> + (default: 48) |page: margin-inner: 0.75in |margin-outer^[4]^ |<<measurement-units,Measurement>> + (default: 24) |page: margin-outer: 0.59in |mode |outline {vbar} none {vbar} thumbs {vbar} fullscreen {vbar} fullscreen outline {vbar} fullscreen none {vbar} fullscreen thumbs + (default: outline) |page: mode: fullscreen none |size |https://github.com/prawnpdf/pdf-core/blob/0.6.0/lib/pdf/core/page_geometry.rb#L16-L68[Named size^] {vbar} <<measurement-units,Measurement[width,height]>> + (default: A4) |page: size: Letter |numbering-start-at^[5]^ |title {vbar} toc {vbar} body {vbar} Integer + (default: body) |page: numbering-start-at: toc |=== . To disable the background color for the page, set the value to white (i.e., FFFFFF). The color keyword `transparent` is not recognized in this context. . By default, page background and foreground images are automatically scaled to fit the bounds of the page (i.e., `fit=contain`) and centered (i.e., `position=center`). The size of the image can be controlled using any of the sizing attributes on the image macro (i.e., fit, pdfwidth, scaledwidth, or width) when `fit=none`. The position of the image can be controlled using the `position` attribute. If the recto (right-hand, odd-numbered pages) or verso (left-hand, even-numbered pages) background image is specified, it will be used only for that side (not available for the foreground image). If you define the keys using the flatten structure (e.g., `page-background-image-recto`), you can also set the default page background image (`page-background-image`), which will then be used as a fallback if a background image isn't specified for a given side. To disable the image, use the value `none`. . Target may be an absolute path or a path relative to the value of the `pdf-themesdir` attribute. . The margins for `recto` (right-hand, odd-numbered) and `verso` (left-hand, even-numbered) pages are calculated automatically from the margin-inner and margin-outer values. These margins and used when the value `prepress` is assigned to the `media` document attribute. If no cover is specified, the recto margin is not applied to the title page. To apply the recto margin to the title page, but not include a cover, assign the value `~` to the `front-cover-image` attribute. . Only works if the document uses a title page (i.e., doctype is book or `title-page` attribute is set) The `toc` value only applies if the toc is in the default location (before the first page of the body). If the toc macro is used to position the toc, the start-at behavior is the same as if the toc is not enabled. If value is an integer, page numbering will start at the specified page of the body (i.e., 1 is first page, 2 is second page, etc.) [#keys-base] === Base The keys in this category provide generic theme settings and are often referenced throughout the theme file as variables. We recommended that you define this category after the page category and before all other categories. NOTE: While it's common to define additional keys in this category (e.g., `base-border-radius`) to keep your theme DRY, we recommend using <<Custom Variables,custom variables>> instead. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-base]*Key Prefix:* <<key-prefix-base,base>> |align |<<text-alignments,Text alignment>> + (default: left) |base: align: justify |border-color |<<colors,Color>> + (default: #eeeeee) |base: border-color: #eeeeee // border-radius is variable, not an official key //|border-radius //|<<values,Number>> //|base: // border-radius: 4 |border-width |<<values,Number>> + (default: 0.5) |base: border-width: 0.5 |font-color |<<colors,Color>> + (default: #000000) |base: font-color: #333333 |font-family |<<fonts,Font family name>> + (default: Helvetica) |base: font-family: Noto Serif |font-kerning |normal {vbar} none + (default: normal) |base: font-kerning: none |font-size |<<values,Number>> + (default: 12) |base: font-size: 10.5 // font-size-large is a variable, not an official key //|font-size-large //|<<values,Number>> //|base: // font-size-large: 13 |font-size-min |<<values,Number>> + (default: 6) |base: font-size-min: $base-font-size * 0.75 // font-size-small is a variable, not an official key //|font-size-small //|<<values,Number>> //|base: // font-size-small: 9 |font-style |<<font-styles,Font style>> + (default: normal) |base: font-style: normal |text-transform^[1]^ |none + (default: none) |base: text-transform: none |line-height-length^[2]^ |<<values,Number>> + (default: _not set_) |base: line-height-length: 12 |line-height^[2]^ |<<values,Number>> + (default: 1.15) |base: line-height: > $base-line-height-length / $base-font-size |text-decoration-width |<<values,Number>> + (default: 1) |base: text-decoration-width: 0.5 |=== . The `text-transform` key cannot be set globally. Therefore, this key should not be used. The value of `none` is implicit and is documented here for completeness. . `line-height-length` is a utility property that's internal to the theme. It's used as an intermediate property for computing the `base-line-height` from the base font size and the desired line height size. For instance, if you set `base-line-height-length`, you can use `$base-line-height-length / $base-font-size` to set the value of `base-line-height`. You don't have to go about it this way in your own theme. [#keys-vertical-spacing] === Vertical Spacing The keys in this category control the general spacing between elements where a more specific setting is not designated. [cols="3,4,5l"] |=== |Key |Value Type |Example |vertical-spacing |<<values,Number>> + (default: 12) |vertical-spacing: 10 |=== [#keys-link] === Link The keys in this category are used to style hyperlink text. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-link]*Key Prefix:* <<key-prefix-link,link>> |font-color |<<colors,Color>> + (default: #0000ee) |link: font-color: #428bca |font-family |<<fonts,Font family name>> + (default: _inherit_) |link: font-family: Roboto |font-size |<<values,Number>> + (default: _inherit_) |link: font-size: 9 |font-style |<<font-styles,Font style>> + (default: _inherit_) |link: font-style: italic |text-decoration |<<text-decorations,Text decoration>> + (default: none) |link: text-decoration: underline |text-decoration-color |<<colors,Color>> + (default: $link-font-color) |link: text-decoration-color: #0000ff |text-decoration-width |<<values,Number>> + (default: 1) |link: text-decoration-width: 0.5 |=== [#keys-literal] === (Inline) Literal The keys in this category are used for inline monospaced text in prose and table cells. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-literal]*Key Prefix:* <<key-prefix-literal,literal>> |background-color |<<colors,Color>> + (default: _not set_) |literal: background-color: #f5f5f5 |border-color^[1]^ |<<colors,Color>> + (default: _not set_) |literal: border-color: #cccccc |border-offset^[2]^ |<<values,Number>> + (default: 0) |literal: border-offset: 2 |border-radius |<<values,Number>> + (default: _not set_) |literal: border-radius: 3 |border-width |<<values,Number>> + (default: $base-border-width) |literal: border-width: 0.5 |font-color |<<colors,Color>> + (default: _inherit_) |literal: font-color: #b12146 |font-family |<<fonts,Font family name>> + (default: Courier) |literal: font-family: M+ 1mn |font-size |<<values,Number>> + (default: _inherit_) |literal: font-size: 12 |font-style |<<font-styles,Font style>> + (default: _inherit_) |literal: font-style: bold |=== . The border is only used if a border color is specified and the border width is not explicitly set to 0. The border only works properly if the literal phrase does not have nested formatting. Otherwise, the border will be inherited, producing a less than desirable result. . The border offset is the amount that the background and border swells around the text. It does not affect the distance between the formatted phrase and the phrases that surround it. [#keys-heading] === Heading The keys in this category control the style of most headings, including part titles, chapter titles, sections titles, the table of contents title and discrete headings. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-heading]*Key Prefix:* <<key-prefix-heading,heading>> |align |<<text-alignments,Text alignment>> + (default: $base-align) |heading: align: center |font-color |<<colors,Color>> + (default: _inherit_) |heading: font-color: #222222 |font-family |<<fonts,Font family name>> + (default: _inherit_) |heading: font-family: Noto Serif |font-kerning |normal {vbar} none + (default: _inherit_) |heading: font-kerning: none // NOTE: heading-font-size is overridden by h<n>-font-size in base theme //|font-size //|<<values,Number>> + //(default: $base-font-size) //|heading: // font-size: 18 |font-style |<<font-styles,Font style>> + (default: bold) |heading: font-style: bold |text-decoration |<<text-decorations,Text decoration>> + (default: none) |heading: text-decoration: underline |text-decoration-color |<<colors,Color>> + (default: $heading-font-color) |heading: text-decoration-color: #cccccc |text-decoration-width |<<values,Number>> + (default: 1) |heading: text-decoration-width: 0.5 |text-transform |<<text-transforms,Text transform>> + (default: _inherit_) |heading: text-transform: capitalize |line-height |<<values,Number>> + (default: 1.15) |heading: line-height: 1.2 |margin-top |<<measurement-units,Measurement>> + (default: 4) |heading: margin-top: $vertical-spacing * 0.2 |margin-page-top |<<measurement-units,Measurement>> + (default: 0) |heading: margin-page-top: $vertical-spacing |margin-bottom |<<measurement-units,Measurement>> + (default: 12) |heading: margin-bottom: 9.6 |min-height-after |<<measurement-units,Measurement>> + (default: $base-font-size * $base-line-height * 1.5) |heading: min-height-after: 0.5in |chapter-break-before |always {vbar} auto + (default: always) |heading: chapter: break-before: auto |part-break-before |always {vbar} auto + (default: always) |heading: part: break-before: auto |part-break-after |always {vbar} auto + (default: auto) |heading: part: break-after: always 3+|[#key-prefix-heading-level]*Key Prefix:* <<key-prefix-heading-level,heading-h<n>{zwsp}>>^[1]^ |align |<<text-alignments,Text alignment>> + (default: $heading-align) |heading: h2-align: center |font-color |<<colors,Color>> + (default: $heading-font-color) |heading: h2-font-color: [0, 99%, 100%, 0] |font-family |<<fonts,Font family name>> + (default: $heading-font-family) |heading: h4-font-family: Roboto |font-kerning |normal {vbar} none + (default: $heading-font-kerning) |heading: h3-font-kerning: none |font-size^[1]^ |<<values,Number>> + (default: <1>=24; <2>=18; <3>=16; <4>=14; <5>=12; <6>=10) |heading: h6-font-size: $base-font-size * 1.7 |font-style |<<font-styles,Font style>> + (default: $heading-font-style) |heading: h3-font-style: bold_italic |text-transform |<<text-transforms,Text transform>> + (default: $heading-text-transform) |heading: h3-text-transform: uppercase |margin-top |<<measurement-units,Measurement>> + (default: $heading-margin-top) |heading: h2-margin-top: $vertical-spacing * 0.5 |margin-page-top |<<measurement-units,Measurement>> + (default: $heading-margin-page-top) |heading: h2-margin-page-top: $vertical-spacing |margin-bottom |<<measurement-units,Measurement>> + (default: $heading-margin-bottom) |heading: h2-margin-bottom: 10 |=== . `<n>` is a number ranging from 1 to 6, representing each of the six heading levels. . A font size is assigned to each heading level by the base theme. If you want the font size of a specific level to be inherited, you must assign the value `null` (or `~` for short). [#keys-section] === Section The keys in this category control the style of a section body. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-section]*Key Prefix:* <<key-prefix-section,section>> |indent |<<measurement-units,Measurement>> {vbar} <<measurement-units,Measurement[left,right]>>^[1]^ + (default: 0) |section: indent: [0.5in, 0] |=== . A single value gets applied to both the left and right side (e.g., `0.5in`). A two-value array configures the left and right side independently (e.g., `[0.5in, 0]`). [#keys-title-page] === Title Page The keys in this category control the style of the title page as well as the arrangement and style of the elements on it. IMPORTANT: The title page is only enabled by default for the book doctype (e.g., `:doctype: book`). If you want to enable the title page when using a different doctype (such as the article doctype), you must define the `title-page` attribute in the document header (i.e., `:title-page:`). NOTE: Subtitle partitioning of the doctitle is only enabled when the title page is also enabled. TIP: The title page can be disabled for the book doctype by setting the `notitle` attribute in the AsciiDoc document header (i.e., `:notitle:`). (For other doctypes, just don't set the `title-page` attribute). [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-title-page]*Key Prefix:* <<key-prefix-title-page,title-page>> |align |<<text-alignments,Text alignment>> + (default: center) |title-page: align: right |background-color^[1]^ |<<colors,Color>> + (default: _inherit_) |title-page: background-color: #eaeaea |background-image^[2]^ |image macro^[3]^ + (default: _not set_) |title-page: background-image: image:title.png[] |font-color |<<colors,Color>> + (default: _inherit_) |title-page: font-color: #333333 |font-family |<<fonts,Font family name>> + (default: _inherit_) |title-page: font-family: Noto Serif |font-kerning |normal {vbar} none + (default: _inherit_) |title-page: font-kerning: none |font-size |<<values,Number>> + (default: _inherit_) |title-page: font-size: 13 |font-style |<<font-styles,Font style>> + (default: _inherit_) |title-page: font-style: bold |text-transform |<<text-transforms,Text transform>> + (default: _inherit_) |title-page: text-transform: uppercase |line-height |<<values,Number>> + (default: 1.15) |title-page: line-height: 1 3+|[#key-prefix-title-page-logo]*Key Prefix:* <<key-prefix-title-page-logo,title-page-logo>> |align |<<image-alignments,Image alignment>> + (default: _inherit_) |title-page: logo: align: right |image |image macro^[3]^ + (default: _not set_) |title-page: logo: image: image:logo.png[pdfwidth=25%] |top |<<measurement-units,Measurement>>^[4]^ + (default: 10%) |title-page: logo: top: 25% 3+|[#key-prefix-title-page-title]*Key Prefix:* <<key-prefix-title-page-title,title-page-title>> |display |none + (default: _not set_) |title-page: title: display: none |font-color |<<colors,Color>> + (default: _inherit_) |title-page: title: font-color: #999999 |font-family |<<fonts,Font family name>> + (default: _inherit_) |title-page: title: font-family: Noto Serif |font-kerning |normal {vbar} none + (default: _inherit_) |title-page: title: font-kerning: none |font-size |<<values,Number>> + (default: 18) |title-page: title: font-size: $heading-h1-font-size |font-style |<<font-styles,Font style>> + (default: _inherit_) |title-page: title: font-style: bold |text-transform |<<text-transforms,Text transform>> + (default: _inherit_) |title-page: title: text-transform: uppercase |line-height |<<values,Number>> + (default: $heading-line-height) |title-page: title: line-height: 0.9 |top |<<measurement-units,Measurement>>^[4]^ + (default: 40%) |title-page: title: top: 55% |margin-top |<<measurement-units,Measurement>> + (default: 0) |title-page: title: margin-top: 13.125 |margin-bottom |<<measurement-units,Measurement>> + (default: 0) |title-page: title: margin-bottom: 5 3+|[#key-prefix-title-page-subtitle]*Key Prefix:* <<key-prefix-title-page-subtitle,title-page-subtitle>> |display |none + (default: _not set_) |title-page: subtitle: display: none |font-color |<<colors,Color>> + (default: _inherit_) |title-page: subtitle: font-color: #181818 |font-family |<<fonts,Font family name>> + (default: _inherit_) |title-page: subtitle: font-family: Noto Serif |font-kerning |normal {vbar} none + (default: _inherit_) |title-page: subtitle: font-kerning: none |font-size |<<values,Number>> + (default: 14) |title-page: subtitle: font-size: $heading-h3-font-size |font-style |<<font-styles,Font style>> + (default: _inherit_) |title-page: subtitle: font-style: bold_italic |text-transform |<<text-transforms,Text transform>> + (default: _inherit_) |title-page: subtitle: text-transform: uppercase |line-height |<<values,Number>> + (default: $heading-line-height) |title-page: subtitle: line-height: 1 |margin-top |<<measurement-units,Measurement>> + (default: 0) |title-page: subtitle: margin-top: 13.125 |margin-bottom |<<measurement-units,Measurement>> + (default: 0) |title-page: subtitle: margin-bottom: 5 3+|[#key-prefix-authors]*Key Prefix:* <<key-prefix-authors,title-page-authors>> |content |<<quoted-string,Quoted AsciiDoc string>> + (optional subkeys: name_only, with_email, with_url) + (default: "\{author}") |title-page: authors: content: name_only: "{author}" with_email: "{author} <{email}>" with_url: "{url}[{author}]" |display |none + (default: _not set_) |title-page: authors: display: none |delimiter |<<quoted-string,Quoted string>> + (default: ', ') |title-page: authors: delimiter: '; ' |font-color |<<colors,Color>> + (default: _inherit_) |title-page: authors: font-color: #181818 |font-family |<<fonts,Font family name>> + (default: _inherit_) |title-page: authors: font-family: Noto Serif |font-kerning |normal {vbar} none + (default: _inherit_) |title-page: authors: font-kerning: none |font-size |<<values,Number>> + (default: _inherit_) |title-page: authors: font-size: 13 |font-style |<<font-styles,Font style>> + (default: _inherit_) |title-page: authors: font-style: bold_italic |text-transform |<<text-transforms,Text transform>> + (default: _inherit_) |title-page: authors: text-transform: uppercase |margin-top |<<measurement-units,Measurement>> + (default: 12) |title-page: authors: margin-top: 13.125 |margin-bottom |<<measurement-units,Measurement>> + (default: 0) |title-page: authors: margin-bottom: 5 3+|[#key-prefix-revision]*Key Prefix:* <<key-prefix-revision,title-page-revision>> |display |none + (default: _not set_) |title-page: revision: display: none |delimiter |<<quoted-string,Quoted string>> + (default: ', ') |title-page: revision: delimiter: ': ' |font-color |<<colors,Color>> + (default: _inherit_) |title-page: revision: font-color: #181818 |font-family |<<fonts,Font family name>> + (default: _inherit_) |title-page: revision: font-family: Noto Serif |font-kerning |normal {vbar} none + (default: _inherit_) |title-page: revision: font-kerning: none |font-size |<<values,Number>> + (default: _inherit_) |title-page: revision: font-size: $base-font-size-small |font-style |<<font-styles,Font style>> + (default: _inherit_) |title-page: revision: font-style: bold |text-transform |<<text-transforms,Text transform>> + (default: _inherit_) |title-page: revision: text-transform: uppercase |margin-top |<<measurement-units,Measurement>> + (default: 0) |title-page: revision: margin-top: 13.125 |margin-bottom |<<measurement-units,Measurement>> + (default: 0) |title-page: revision: margin-bottom: 5 |=== . To disable the background color for the title page, set the value to white (i.e., FFFFFF). The color keyword `transparent` is not recognized in this context. . By default, page background images are automatically scaled to fit the bounds of the page (i.e., `fit=contain`) and centered (i.e., `position=center`). The size of the background image can be controlled using any of the sizing attributes on the image macro (i.e., fit, pdfwidth, scaledwidth, or width) when `fit=none`. The position of the background image can be controlled using the `position` attribute. . Target may be an absolute path or a path relative to the value of the `pdf-themesdir` attribute. . % unit is relative to content height; vh unit is relative to page height. [#keys-prose] === Prose The keys in this category control the spacing around paragraphs (paragraph blocks, paragraph content of a block, and other prose content). Typically, all the margin is placed on the bottom. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-prose]*Key Prefix:* <<key-prefix-prose,prose>> |margin-top |<<measurement-units,Measurement>> + (default: 0) |prose: margin-top: 0 |margin-bottom |<<measurement-units,Measurement>> + (default: 12) |prose: margin-bottom: $vertical-spacing |margin-inner^[1]^ |<<measurement-units,Measurement>> + (default: $prose-margin-bottom) |prose: margin-inner: 0 |text-indent |<<measurement-units,Measurement>> + (default: _not set_) |prose: text-indent: 18 |=== . Controls the margin between adjacent paragraphs. Useful when using indented paragraphs. [#keys-block] === Block The keys in this category control the spacing around block elements when a more specific setting is not designated. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-block]*Key Prefix:* <<key-prefix-block,block>> //|padding //|<<measurement-units,Measurement>> {vbar} <<measurement-units,Measurement[top,right,bottom,left]>> //|block: // padding: [12, 15, 12, 15] |margin-top |<<measurement-units,Measurement>> + (default: 0) |block: margin-top: 6 |margin-bottom |<<measurement-units,Measurement>> + (default: 12) |block: margin-bottom: 6 |=== Block styles are applied to the following block types: [cols="3*a",grid=none,frame=none] |=== | * admonition * example * quote | * verse * sidebar * image | * listing * literal * table |=== [#keys-caption] === Caption The keys in this category control the arrangement and style of block captions. In addition to the generic caption category, each of these keys can be set on the caption key nested inside the following block categories: blockquote, code, example, footnotes, image, listing, table, and verse. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-caption]*Key Prefix:* <<key-prefix-caption,caption>> |align^[1]^ |<<text-alignments,Text alignment>> + (default: left) |caption: align: left |font-color |<<colors,Color>> + (default: _inherit_) |caption: font-color: #333333 |font-family |<<fonts,Font family name>> + (default: _inherit_) |caption: font-family: M+ 1mn |font-kerning |normal {vbar} none + (default: _inherit_) |caption: font-kerning: none |font-size |<<values,Number>> + (default: _inherit_) |caption: font-size: 11 |font-style |<<font-styles,Font style>> + (default: italic) |caption: font-style: italic |text-transform |<<text-transforms,Text transform>> + (default: _inherit_) |caption: text-transform: uppercase |margin-inside |<<measurement-units,Measurement>> + (default: 4) |caption: margin-inside: 3 |margin-outside |<<measurement-units,Measurement>> + (default: 0) |caption: margin-outside: 0 |=== . When nested inside the `image` key (i.e., `image-caption-align`), the value `inherit` is also accepted. The value `inherit` resolves to the alignment of the block image. [#keys-code] === Code The keys in this category are used to control the style of literal, listing and source blocks. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-code]*Key Prefix:* <<key-prefix-code,code>> |background-color |<<colors,Color>> + (default: _not set_) |code: background-color: #f5f5f5 |border-color |<<colors,Color>> + (default: #eeeeee) |code: border-color: #cccccc |border-radius |<<values,Number>> + (default: _not set_) |code: border-radius: 4 |border-width |<<values,Number>> + (default: 0.5) |code: border-width: 0.75 |font-color |<<colors,Color>> + (default: _inherit_) |code: font-color: #333333 |font-family |<<fonts,Font family name>> + (default: Courier) |code: font-family: M+ 1mn |font-size |<<values,Number>> + (default: 10.8) |code: font-size: 11 |font-style |<<font-styles,Font style>> + (default: _inherit_) |code: font-style: italic |line-height |<<values,Number>> + (default: 1.2) |code: line-height: 1.25 |line-gap^[1]^ |<<values,Number>> + (default: 0) |code: line-gap: 3.8 |padding |<<measurement-units,Measurement>> {vbar} <<measurement-units,Measurement[top,right,bottom,left]>> + (default: 9) |code: padding: 11 3+|[#key-prefix-code-highlight]*Key Prefix:* <<key-prefix-code-highlight,code-highlight>>^[2]^ |background-color |<<colors,Color>> + (default: #FFFFCC) |code: highlight-background-color: #ffff00 3+|[#key-prefix-code-linenum]*Key Prefix:* <<key-prefix-code-linenum,code-linenum>>^[3]^ |font-color |<<colors,Color>> + (default: #999999) |code: linenum-font-color: #ccc |=== . The line-gap property is used to tune the height of the background color applied to a span of block text highlighted using Rouge. . The code-highlight category only applies when using Rouge as the source highlighter. Otherwise, the styles are controlled by the source highlighter theme. . The code-linenum category only applies when using Pygments as the source highlighter. Otherwise, the styles are controlled by the source highlighter theme. [#keys-callout-numbers] === Callout Numbers The keys in this category are used to control the style of callout numbers (i.e., conums) inside verbatim blocks and in callout lists (colists). [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-conum]*Key Prefix:* <<key-prefix-conum,conum>> |font-color |<<colors,Color>> + (default: _inherit_) |conum: font-color: #b12146 |font-family^[1,2]^ |<<fonts,Font family name>> + (default: _inherit_) |conum: font-family: M+ 1mn |font-kerning^[2]^ |normal {vbar} none + (default: _inherit_) |conum: font-kerning: none |font-size^[2]^ |<<values,Number>> + (default: _inherit_) |conum: font-size: $base-font-size |font-style^[2]^ |<<font-styles,Font style>> + (default: _inherit_) |conum: font-style: normal |line-height^[2]^ |<<values,Number>> + (default: 1.15) |conum: line-height: 4 / 3 |glyphs^[2]^ |circled {vbar} filled {vbar} Unicode String ranges + (default: circled) |conum: glyphs: \u0031-\u0039 |=== . Currently, the font must contain the circle numbers starting at glyph U+2460. . font-family, font-kerning, font-size, font-style, and line-height are only used for markers in a colist. These properties are inherited for conums inside a verbatim block. . The font must provide the required glyphs. The glyphs can be specified as a comma-separated list of ranges, where the range values are Unicode numbers (e.g., \u2460). [#keys-button] === Button The keys in this category apply to a button reference (generated from the inline button macro). [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-button]*Key Prefix:* <<key-prefix-button,button>> |background-color |<<colors,Color>> + (default: _not set_) |button: background-color: #0000ff |border-color^[1]^ |<<colors,Color>> + (default: _not set_) |button: border-color: #cccccc |border-offset^[2]^ |<<values,Number>> + (default: 0) |button: border-offset: 1.5 |border-radius |<<values,Number>> + (default: 0) |button: border-radius: 2 |border-width |<<values,Number>> + (default: $base-border-width) |button: border-width: 0.5 |content^[3]^ |<<quoted-string,Quoted string>> + (default: "%s") |button: content: "[\u2009%s\u2009]" |font-color |<<colors,Color>> + (default: _inherit_) |button: font-color: #ffffff |font-family |<<fonts,Font family name>> + (default: Courier) |button: font-family: M+ 1mn |font-size |<<values,Number>> + (default: _inherit_) |button: font-size: 12 |font-style |<<font-styles,Font style>> + (default: bold) |button: font-style: normal |=== . The border is only used if a border color is specified and the border width is not explicitly set to 0. . The border offset is the amount that the background and border swells around the text. It does not affect the distance between the formatted phrase and the phrases that surround it. . The character sequence `%s` in the content key gets replaced with the button label. [#keys-key] === Key The keys in this category apply to a key reference (generated from the inline kbd macro). [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-key]*Key Prefix:* <<key-prefix-key,key>> |background-color |<<colors,Color>> + (default: _not set_) |key: background-color: #fafafa |border-color^[1]^ |<<colors,Color>> + (default: _not set_) |key: border-color: #cccccc |border-offset^[2]^ |<<values,Number>> + (default: 0) |key: border-offset: 1.5 |border-radius |<<values,Number>> + (default: 0) |key: border-radius: 2 |border-width |<<values,Number>> + (default: $base-border-width) |key: border-width: 0.375 |separator^[3]^ |<<quoted-string,Quoted string>> + (default: "+") |key: separator: "\u2009+\u2009" |font-color |<<colors,Color>> + (default: _inherit_) |key: font-color: #000 |font-family |<<fonts,Font family name>> + (default: Courier) |key: font-family: $base-font-family |font-size |<<values,Number>> + (default: _inherit_) |key: font-size: 10.5 |font-style |<<font-styles,Font style>> + (default: italic) |key: font-style: normal |=== . The border is only used if a border color is specified and the border width is not explicitly set to 0. . The border offset is the amount that the background and border swells around the text. It does not affect the distance between the formatted phrase and the phrases that surround it. . The separator is only used for multi-key sequences. [#keys-menu] === Menu The keys in this category apply to the menu label (generated from the inline menu macro). [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-menu]*Key Prefix:* <<key-prefix-menu,menu>> |caret-content |<<quoted-string,Quoted string>> + (default: " \u203a ") |menu: caret-content: ' > ' |=== [#keys-blockquote] === Blockquote The keys in this category control the arrangement and style of quote blocks. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-blockquote]*Key Prefix:* <<key-prefix-blockquote,blockquote>> |background-color |<<colors,Color>> + (default: _not set_) |blockquote: background-color: #dddddd |border-width^[1]^ |<<values,Number>> + (default: 0) |blockquote: border-width: 0.5 |border-left-width^[1]^ |<<values,Number>> + (default: 4) |blockquote: border-left-width: 5 |border-color^[1]^ |<<colors,Color>> + (default: #eeeeee) |blockquote: border-color: #dddddd |font-color |<<colors,Color>> + (default: _inherit_) |blockquote: font-color: #333333 |font-family |<<fonts,Font family name>> + (default: _inherit_) |blockquote: font-family: Noto Serif |font-kerning |normal {vbar} none + (default: _inherit_) |blockquote: font-kerning: none |font-size |<<values,Number>> + (default: _inherit_) |blockquote: font-size: 13 |font-style |<<font-styles,Font style>> + (default: _inherit_) |blockquote: font-style: bold |text-transform |<<text-transforms,Text transform>> + (default: _inherit_) |blockquote: text-transform: uppercase |padding |<<measurement-units,Measurement>> {vbar} <<measurement-units,Measurement[top,right,bottom,left]>> + (default: [6, 12, -6, 14]) |blockquote: padding: [5, 10, -5, 12] 3+|[#key-prefix-blockquote-cite]*Key Prefix:* <<key-prefix-blockquote-cite,blockquote-cite>> |font-size |<<values,Number>> + (default: _inherit_) |blockquote: cite: font-size: 9 |font-color |<<colors,Color>> + (default: _inherit_) |blockquote: cite: font-color: #999999 |font-family |<<fonts,Font family name>> + (default: _inherit_) |blockquote: cite: font-family: Noto Serif |font-kerning |normal {vbar} none + (default: _inherit_) |blockquote: cite: font-kerning: none |font-style |<<font-styles,Font style>> + (default: _inherit_) |blockquote: cite: font-style: bold |text-transform |<<text-transforms,Text transform>> + (default: _inherit_) |blockquote: cite: text-transform: uppercase |=== . If border-left-width is non-zero, the border is only applied to the left side. Otherwise, if border-width is non-zero, the border is drawn around the whole block. [#keys-verse] === Verse The keys in this category control the arrangement and style of verse blocks. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-verse]*Key Prefix:* <<key-prefix-verse,verse>> |background-color |<<colors,Color>> + (default: _not set_) |verse: background-color: #dddddd |border-width^[1]^ |<<values,Number>> + (default: 0) |verse: border-width: 0.5 |border-left-width^[1]^ |<<values,Number>> + (default: 4) |verse: border-left-width: 5 |border-color^[1]^ |<<colors,Color>> + (default: #eeeeee) |verse: border-color: #dddddd |font-color |<<colors,Color>> + (default: _inherit_) |verse: font-color: #333333 |font-family |<<fonts,Font family name>> + (default: _inherit_) |verse: font-family: M+ 1mn |font-kerning |normal {vbar} none + (default: _inherit_) |verse: font-kerning: none |font-size |<<values,Number>> + (default: _inherit_) |verse: font-size: 10 |font-style |<<font-styles,Font style>> + (default: _inherit_) |verse: font-style: bold |text-transform |<<text-transforms,Text transform>> + (default: _inherit_) |verse: text-transform: uppercase |padding |<<measurement-units,Measurement>> {vbar} <<measurement-units,Measurement[top,right,bottom,left]>> + (default: [6, 12, -6, 14]) |verse: padding: [5, 10, -5, 12] 3+|[#key-prefix-verse-cite]*Key Prefix:* <<key-prefix-verse-cite,verse-cite>> |font-size |<<values,Number>> + (default: _inherit_) |verse: cite: font-size: 9 |font-color |<<colors,Color>> + (default: _inherit_) |verse: cite: font-color: #999999 |font-family |<<fonts,Font family name>> + (default: _inherit_) |verse: cite: font-family: Noto Serif |font-kerning |normal {vbar} none + (default: _inherit_) |verse: cite: font-kerning: none |font-style |<<font-styles,Font style>> + (default: _inherit_) |verse: cite: font-style: italic |text-transform |<<text-transforms,Text transform>> + (default: _inherit_) |verse: cite: text-transform: uppercase |=== . If border-left-width is non-zero, the border is only applied to the left side. Otherwise, if border-width is non-zero, the border is drawn around the whole block. [#keys-sidebar] === Sidebar The keys in this category control the arrangement and style of sidebar blocks. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-sidebar]*Key Prefix:* <<key-prefix-sidebar,sidebar>> |background-color |<<colors,Color>> + (default: #eeeeee) |sidebar: background-color: #eeeeee |border-color |<<colors,Color>> + (default: _not set_) |sidebar: border-color: #ffffff |border-radius |<<values,Number>> + (default: _not set_) |sidebar: border-radius: 4 |border-width |<<values,Number>> + (default: _not set_) |sidebar: border-width: 0.5 |font-color |<<colors,Color>> + (default: _inherit_) |sidebar: font-color: #262626 |font-family |<<fonts,Font family name>> + (default: _inherit_) |sidebar: font-family: M+ 1p |font-kerning |normal {vbar} none + (default: _inherit_) |sidebar: font-kerning: none |font-size |<<values,Number>> + (default: _inherit_) |sidebar: font-size: 13 |font-style |<<font-styles,Font style>> + (default: _inherit_) |sidebar: font-style: italic |text-transform |<<text-transforms,Text transform>> + (default: _inherit_) |sidebar: text-transform: uppercase |padding |<<measurement-units,Measurement>> {vbar} <<measurement-units,Measurement[top,right,bottom,left]>> + (default: [12, 12, 0, 12]) |sidebar: padding: [12, 15, 0, 15] 3+|[#key-prefix-sidebar-title]*Key Prefix:* <<key-prefix-sidebar-title,sidebar-title>> |align |<<text-alignments,Text alignment>> + (default: center) |sidebar: title: align: center |font-color |<<colors,Color>> + (default: _inherit_) |sidebar: title: font-color: #333333 |font-family |<<fonts,Font family name>> + (default: _inherit_) |sidebar: title: font-family: Noto Serif |font-kerning |normal {vbar} none + (default: _inherit_) |sidebar: title: font-kerning: none |font-size |<<values,Number>> + (default: _inherit_) |sidebar: title: font-size: 13 |font-style |<<font-styles,Font style>> + (default: bold) |sidebar: title: font-style: bold |text-transform |<<text-transforms,Text transform>> + (default: _inherit_) |sidebar: title: text-transform: uppercase |=== [#keys-example] === Example The keys in this category control the arrangement and style of example blocks. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-example]*Key Prefix:* <<key-prefix-example,example>> |background-color |<<colors,Color>> + (default: #ffffff) |example: background-color: #fffef7 |border-color |<<colors,Color>> + (default: #eeeeee) |example: border-color: #eeeeee |border-radius |<<values,Number>> + (default: _not set_) |example: border-radius: 4 |border-width |<<values,Number>> + (default: 0.5) |example: border-width: 0.75 |font-color |<<colors,Color>> + (default: _inherit_) |example: font-color: #262626 |font-family |<<fonts,Font family name>> + (default: _inherit_) |example: font-family: M+ 1p |font-kerning |normal {vbar} none + (default: _inherit_) |example: font-kerning: none |font-size |<<values,Number>> + (default: _inherit_) |example: font-size: 13 |font-style |<<font-styles,Font style>> + (default: _inherit_) |example: font-style: italic |text-transform |<<text-transforms,Text transform>> + (default: _inherit_) |example: text-transform: uppercase |padding |<<measurement-units,Measurement>> {vbar} <<measurement-units,Measurement[top,right,bottom,left]>> + (default: [12, 12, 0, 12]) |example: padding: [15, 15, 0, 15] |=== [#keys-admonition] === Admonition The keys in this category control the arrangement and style of admonition blocks and the icon used for each admonition type. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-admonition]*Key Prefix:* <<key-prefix-admonition,admonition>> |column-rule-color |<<colors,Color>> + (default: #eeeeee) |admonition: column-rule-color: #aa0000 |column-rule-style |solid {vbar} double {vbar} dashed {vbar} dotted + (default: solid) |admonition: column-rule-style: double |column-rule-width |<<values,Number>> + (default: 0.5) |admonition: column-rule-width: 0.5 |font-color |<<colors,Color>> + (default: _inherit_) |admonition: font-color: #999999 |font-family |<<fonts,Font family name>> + (default: _inherit_) |admonition: font-family: Noto Sans |font-kerning |normal {vbar} none + (default: _inherit_) |admonition: font-kerning: none |font-size |<<values,Number>> + (default: _inherit_) |admonition: font-size: $base-font-size-large |font-style |<<font-styles,Font style>> + (default: _inherit_) |admonition: font-style: italic |text-transform |<<text-transforms,Text transform>> + (default: _inherit_) |admonition: text-transform: none |padding |<<measurement-units,Measurement>> {vbar} <<measurement-units,Measurement[top,right,bottom,left]>> + (default: [0, 12, 0, 12]) |admonition: padding: [0, 12, 0, 12] 3+|[#key-prefix-admonition-label]*Key Prefix:* <<key-prefix-admonition-label,admonition-label>> |align |<<text-alignments,Text alignment>> + (default: center) |admonition: label: align: center |min-width |<<measurement-units,Measurement>> + (default: _not set_) |admonition: label: min-width: 48 |padding^[1]^ |<<measurement-units,Measurement>> {vbar} <<measurement-units,Measurement[top,right,bottom,left]>> + (default: $admonition-padding) |admonition: padding: [0, 12, 0, 12] |vertical-align |top {vbar} middle {vbar} bottom + (default: middle) |admonition: label: vertical-align: top 3+|*Key Prefix:* admonition-label, admonition-label-<name>^[2]^ |font-color |<<colors,Color>> + (default: _inherit_) |admonition: label: font-color: #262626 |font-family |<<fonts,Font family name>> + (default: _inherit_) |admonition: label: font-family: M+ 1p |font-kerning |normal {vbar} none + (default: _inherit_) |admonition: label: font-kerning: none |font-size |<<values,Number>> + (default: _inherit_) |admonition: label: font-size: 12 |font-style |<<font-styles,Font style>> + (default: bold) |admonition: label: font-style: bold_italic |text-transform |<<text-transforms,Text transform>> + (default: uppercase) |admonition: label: text-transform: lowercase 3+|[#key-prefix-admonition-icon]*Key Prefix:* <<key-prefix-admonition-icon,admonition-icon-<name>{zwsp}>>^[2]^ |name |<icon set>-<icon name>^[3]^ + (default: _not set_) |admonition: icon: tip: name: fas-fire |stroke-color |<<colors,Color>> + (default: caution=#bf3400; important=#bf0000; note=#19407c; tip=#111111; warning=#bf6900) |admonition: icon: important: stroke-color: ff0000 |size |<<values,Number>> + (default: 24) |admonition: icon: note: size: 24 |=== . The top and bottom padding values are ignored on admonition-label-padding. . `<name>` can be `note`, `tip`, `warning`, `important`, or `caution`. All icon types must be grouped under a single `icons` category. In other words, _do not_ declare the `icons` category multiple times. The subkeys in the icon category cannot be flattened (e.g., `tip-name: far-lightbulb` is not valid syntax). . Required. See the `.yml` files in the https://github.com/jessedoyle/prawn-icon/tree/master/data/fonts[prawn-icon repository] for a list of valid icon names. The prefix (e.g., `fas-`) determines which font set to use. If the prefix is not specified, `fa-` is assumed. [#keys-image] === Image The keys in this category control the arrangement of block images. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-image]*Key Prefix:* <<key-prefix-image,image>> |align |<<image-alignments,Image alignment>> + (default: left) |image: align: left |width^[1]^ |<<measurement-units,Measurement>> + (default: _not set_) |image: width: 100% |border-color^[2]^ |<<colors,Color>> + (default: _not set_) |image: border-color: #cccccc |border-radius |<<values,Number>> + (default: _not set_) |image: border-radius: 2 |border-width^[2]^ |<<values,Number>> + (default: _not set_) |image: border-width: 0.5 |border-fit^[3]^ |content {vbar} auto (default: content) |image: border-fit: auto 3+|[#key-prefix-image-alt]*Key Prefix:* <<key-prefix-image-alt,image-alt>> |content^[4]^ |<<quoted-string,Quoted string>> + (default: "%\{link}[%\{alt}]%{/link} {vbar} %\{target}") |image: alt: content: "%{alt} (%{target})" |font-color |<<colors,Color>> + (default: _inherit_) |image: alt: font-color: #ff000 |font-family |<<fonts,Font family name>> + (default: _inherit_) |image alt: font-family: Courier |font-kerning |normal {vbar} none + (default: _inherit_) |image: alt: font-kerning: none |font-size |<<values,Number>> + (default: _inherit_) |image: alt: font-size: 9 |font-style |<<font-styles,Font style>> + (default: normal) |image: alt: font-style: italic |caption-align |<<text-alignments,Text alignment>> {vbar} inherit + (default: $caption-align) |image: caption: align: inherit |caption-max-width^[5]^ |fit-content {vbar} none {vbar} <<measurement-units,Measurement>> + (default: none) |image: caption: max-width: fit-content |=== . Only applies to block images that don't have either a `pdfwidth` or `scaledwidth` attribute on the image macro. If specified, this value takes precedence over the value of the `width` attribute on the image macro, but not over the value of the `pdfwidth` or `scaledwidth` attributes. This key accepts the same values as the `pdfwidth` attribute. . The border is only used if a border color is specified, the border width is specified, the border width is greater than 0, and the `noborder` role is not present. The border is drawn above the image on the inside of the box reserved for the image. . The value `auto` means the border should expand to fit the width of the container (i.e., full width) instead of the image. . Use the placeholders `%\{alt}`, `%\{target}`, `%\{link}`, and `%{/link}` to insert the alt text, image target, and link open/close tags into the content template. . In order for the image to be sized correctly when max-width is fit-content, a width should always be specified on the image. [#keys-svg] === SVG The keys in this category control the SVG integration. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-image]*Key Prefix:* <<key-prefix-svg,svg>> |fallback_font_family^[1]^ |<<fonts,Font family name>> + (default: $base-font-family) |svg: fallback_font_family: Times-Roman |=== . The fallback font family is only used when the font family in the SVG does not map to a known font name from the font catalog. [#keys-lead] === Lead The keys in this category control the styling of lead paragraphs. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-lead]*Key Prefix:* <<key-prefix-lead,lead>> |font-color |<<colors,Color>> + (default: _inherit_) |lead: font-color: #262626 |font-family |<<fonts,Font family name>> + (default: _inherit_) |lead: font-family: M+ 1p |font-kerning |normal {vbar} none + (default: _inherit_) |lead: font-kerning: none |font-size |<<values,Number>> + (default: 13.5) |lead: font-size: 13 |font-style |<<font-styles,Font style>> + (default: _inherit_) |lead: font-style: bold |text-transform |<<text-transforms,Text transform>> + (default: _inherit_) |lead: text-transform: uppercase |line-height |<<values,Number>> + (default: 1.4) |lead: line-height: 1.4 |=== [#keys-abstract] === Abstract The keys in this category control the arrangement and style of the abstract. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-abstract]*Key Prefix:* <<key-prefix-abstract,abstract>> |font-color |<<colors,Color>> + (default: $base-font-color) |abstract: font-color: #5c6266 |font-size |<<values,Number>> + (default: 13.5) |abstract: font-size: 13 |font-style |<<font-styles,Font style>> + (default: $base-font-style) |abstract: font-style: italic |text-transform |<<text-transforms,Text transform>> + (default: $base-text-transform) |abstract: text-transform: uppercase |line-height |<<values,Number>> + (default: 1.4) |abstract: line-height: 1.4 |padding |<<measurement-units,Measurement>> {vbar} <<measurement-units,Measurement[top,right,bottom,left]>> + (default: 0) |abstract: padding: [0, 12, 0, 12] 3+|[#key-prefix-abstract-first-line]*Key Prefix:* <<key-prefix-abstract-first-line,abstract-first-line>> |font-color |<<colors,Color>> + (default: _not set_) |abstract: first-line: font-color: #AA0000 |font-style |<<font-styles,Font style>> + (default: _not set_) |abstract: first-line: font-style: bold 3+|[#key-prefix-abstract-title]*Key Prefix:* <<key-prefix-abstract-title,abstract-title>> |align |<<text-alignments,Text alignment>> + (default: center) |abstract: title: align: center |font-color |<<colors,Color>> + (default: $base-font-color) |abstract: title: font-color: #333333 |font-family |<<fonts,Font family name>> + (default: $base-font-family) |abstract: title: font-family: Noto Serif |font-kerning |normal {vbar} none + (default: _inherit_) |abstract: title: font-kerning: none |font-size |<<values,Number>> + (default: $base-font-size) |abstract: title: font-size: 13 |font-style |<<font-styles,Font style>> + (default: bold) |abstract: title: font-style: bold |text-transform |<<text-transforms,Text transform>> + (default: $base-text-transform) |abstract: title: text-transform: uppercase |=== [#keys-thematic-break] === Thematic Break The keys in this category control the style of thematic breaks (aka horizontal rules). [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-thematic-break]*Key Prefix:* <<key-prefix-thematic-break,thematic-break>> |border-color |<<colors,Color>> + (default: #eeeeee) |thematic-break: border-color: #eeeeee |border-style |solid {vbar} double {vbar} dashed {vbar} dotted + (default: solid) |thematic-break: border-style: dashed |border-width |<<measurement-units,Measurement>> + (default: 0.5) |thematic-break: border-width: 0.5 |margin-top |<<measurement-units,Measurement>> + (default: 0) |thematic-break: margin-top: 6 |margin-bottom |<<measurement-units,Measurement>> + (default: $vertical-spacing) |thematic-break: margin-bottom: 18 |=== [#keys-description-list] === Description List The keys in this category control the arrangement and style of definition list items (terms and descriptions). [TIP] ==== Asciidoctor PDF supports unordered and ordered description lists. These are defined as a description list, but get displayed as an unordered or ordered description list with the term as a subject. Only one term is supported. The subject is shown using the term font style (bold by default). The subject is stacked above the description if the "stack" role is present. Otherwise, the subject is arranged as a run-in followed by a subject stop (`:` by default). The subject stop can be customized using the `subject-stop` attribute. [source,asciidoc] ---- [unordered] alpha:: partially complete and unstable beta:: feature complete and undergoing testing ---- ==== [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-description-list]*Key Prefix:* <<key-prefix-description-list,description-list>> |term-font-color |<<colors,Color>> + (default: _inherit_) |description-list: term-font-color: #AA0000 |term-font-family |<<fonts,Font family name>> + (default: _inherit_) |description-list: term-font-family: Noto Serif |term-font-kerning |normal {vbar} none + (default: _inherit_) |description-list: term-font-kerning: none |term-font-size |<<values,Number>> + (default: _inherit_) |description-list: term-font-size: 12 |term-font-style |<<font-styles,Font style>> + (default: bold) |description-list: term-font-style: italic |term-text-transform |<<text-transforms,Text transform>> + (default: none) |description-list: term-text-transform: none |term-line-height |<<values,Number>> + (default: $base-line-height) |description-list: term-line-height: 1.2 |term-spacing |<<measurement-units,Measurement>> + (default: 4) |description-list: term-spacing: 5 |description-indent |<<values,Number>> + (default: 30) |description-list: description-indent: 15 |=== [#keys-outline-list] === Outline List The keys in this category control the arrangement and style of outline list items. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-outline-list]*Key Prefix:* <<key-prefix-outline-list,outline-list>> |indent |<<measurement-units,Measurement>> + (default: 30) |outline-list: indent: 40 |item-spacing |<<measurement-units,Measurement>> + (default: 6) |outline-list: item-spacing: 4 |marker-font-color^[1]^ |<<colors,Color>> + (default: _inherit_) |outline-list: marker-font-color: #3c763d |text-align^[2]^ |<<text-alignments,Text alignment>> + (default: $base-align) |outline-list: text-align: left |=== . Controls the color of the bullet glyph that marks items in unordered lists and the number for items in ordered lists. . Controls the alignment of the list text only, not nested content (blocks or lists). [#keys-ulist] === Unordered List The keys in this category control the arrangement and style of unordered list items. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-ulist-marker]*Key Prefix:* <<key-prefix-ulist-marker,ulist-marker>> |font-family |<<fonts,Font family name>> + (default: _inherit_) |ulist: marker: font-family: Noto Serif |font-size |<<values,Number>> + (default: _inherit_) |ulist: marker: font-size: 9 |font-color |<<colors,Color>> + (default: $outline-list-marker-font-color) |ulist: marker: font-color: #cccccc |line-height |<<values,Number>> + (default: $base-line-height) |ulist: marker: line-height: 1.5 |=== [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-ulist-marker-type]*Key Prefix:* <<key-prefix-ulist-marker-type,ulist-marker-<type>{zwsp}>>^[1]^ |content |<<quoted-string,Quoted string>> |ulist: marker: disc: content: "\uf140" |font-family |<<fonts,Font family name>> + (default: _inherit_) |ulist: marker: disc: font-family: fas |font-size |<<values,Number>> + (default: _inherit_) |ulist: marker: disc: font-size: 9 |font-color |<<colors,Color>> + (default: _inherit_) |ulist: marker: disc: font-color: #ff0000 |line-height |<<values,Number>> + (default: _inherit_) |ulist: marker: disc: line-height: 2 |=== . <type> is one of disc, square, circle, checked, unchecked [#keys-table] === Table The keys in this category control the arrangement and style of tables and table cells. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-table]*Key Prefix:* <<key-prefix-table,table>> |background-color |<<colors,Color>> + (default: transparent) |table: background-color: #ffffff |border-color |<<colors,Color>> + (default: #000000) |table: border-color: #dddddd |border-style |solid {vbar} dashed {vbar} dotted + (default: solid) |table: border-style: solid |border-width |<<values,Number>> + (default: 0.5) |table: border-width: 0.5 |caption-align |<<text-alignments,Text alignment>> {vbar} inherit + (default: $caption-align) |table: caption-align: inherit |caption-side |top {vbar} bottom + (default: top) |table: caption-side: bottom |caption-max-width |fit-content {vbar} none {vbar} <<measurement-units,Measurement>> + (default: fit-content) |table: caption-max-width: none |font-color |<<colors,Color>> + (default: _inherit_) |table: font-color: #333333 |font-family |<<fonts,Font family name>> + (default: _inherit_) |table: font-family: Helvetica |font-kerning |normal {vbar} none + (default: _inherit_) |table: font-kerning: none |font-size |<<values,Number>> + (default: _inherit_) |table: font-size: 9.5 |font-style |<<font-styles,Font style>> + (default: _inherit_) |table: font-style: italic |grid-color |<<colors,Color>> + (default: $table-border-color) |table: grid-color: #eeeeee |grid-style |solid {vbar} dashed {vbar} dotted + (default: solid) |table: grid-style: dashed |grid-width |<<values,Number>> + (default: $table-border-width) |table: grid-width: 0.5 3+|[#key-prefix-table-head]*Key Prefix:* <<key-prefix-table-head,table-head>> //|align //|<<text-alignments,Text alignment>> + //(default: _inherit_) //|table: // head: // align: center |background-color |<<colors,Color>> + (default: $table-background-color) |table: head: background-color: #f0f0f0 |border-bottom-color |<<colors,Color>> + (default: $table-border-color) |table: head: border-bottom-color: #dddddd |border-bottom-style |solid {vbar} dashed {vbar} dotted + (default: solid) |table: head: border-bottom-style: dashed |border-bottom-width |<<values,Number>> + (default: 1.25) |table: head: border-bottom-width: 1 |font-color |<<colors,Color>> + (default: $table-font-color) |table: head: font-color: #333333 |font-family |<<fonts,Font family name>> + (default: $table-font-family) |table: head: font-family: Noto Serif |font-kerning |normal {vbar} none + (default: _inherit_) |table: head: font-kerning: none |font-size |<<values,Number>> + (default: $table-font-size) |table: head: font-size: 10 |font-style |<<font-styles,Font style>> + (default: bold) |table: head: font-style: normal |text-transform |<<text-transforms,Text transform>> + (default: _inherit_) |table: head: text-transform: uppercase 3+|[#key-prefix-table-body]*Key Prefix:* <<key-prefix-table-body,table-body>> |background-color |<<colors,Color>> + (default: $table-background-color) |table: body: background-color: #fdfdfd |stripe-background-color^[1]^ |<<colors,Color>> + (default: #eeeeee) |table: body: stripe-background-color: #efefef 3+|[#key-prefix-table-foot]*Key Prefix:* <<key-prefix-table-foot,table-foot>> |background-color |<<colors,Color>> + (default: $table-background-color) |table: foot: background-color: #f0f0f0 |font-color |<<colors,Color>> + (default: $table-font-color) |table: foot: font-color: #333333 |font-family |<<fonts,Font family name>> + (default: $table-font-family) |table: foot: font-family: Noto Serif |font-size |<<values,Number>> + (default: $table-font-size) |table: foot: font-size: 10 |font-style |<<font-styles,Font style>> + (default: normal) |table: foot: font-style: italic 3+|[#key-prefix-table-cell]*Key Prefix:* <<key-prefix-table-cell,table-cell>> |padding |<<measurement-units,Measurement>> {vbar} <<measurement-units,Measurement[top,right,bottom,left]>> + (default: 2) |table: cell: padding: 3 3+|[#key-prefix-table-header-cell]*Key Prefix:* <<key-prefix-table-header-cell,table-header-cell>> //|align //|<<text-alignments,Text alignment>> + //(default: $table-head-align) //|table: // header-cell: // align: center |background-color |<<colors,Color>> + (default: $table-head-background-color) |table: header-cell: background-color: #f0f0f0 |font-color |<<colors,Color>> + (default: $table-head-font-color) |table: header-cell: font-color: #1a1a1a |font-family |<<fonts,Font family name>> + (default: $table-head-font-family) |table: header-cell: font-family: Noto Sans |font-size |<<values,Number>> + (default: $table-head-font-size) |table: header-cell: font-size: 12 |font-style |<<font-styles,Font style>> + (default: $table-head-font-style) |table: header-cell: font-style: italic |text-transform |<<text-transforms,Text transform>> + (default: $table-head-text-transform) |table: header-cell: text-transform: uppercase |=== . This key only controls the color that is used for stripes. The appearance of stripes is controlled using the `stripes` table attribute, the `table-stripes` document attribute (since Asciidoctor 2), or the `stripes` document attribute (prior to Asciidoctor 2). Permitted attribute values are even, odd, all, and none. Prior to Asciidoctor 2, even rows are shaded by default (e.g., `stripes=even`). Since Asciidoctor 2, table stripes are not enabled by default (e.g., `stripes=none`). [#keys-footnotes] === Footnotes The keys in this category control the style of the footnotes list at the end of the chapter (book) or document (otherwise). If the `footnotes-title` attribute is specified, it is styled as a block caption. The styling of the links is controlled by the global link styles. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-footnotes]*Key Prefix:* <<key-prefix-footnotes,footnotes>> |font-color |<<colors,Color>> + (default: $base-font-color) |footnotes: font-color: #cccccc |font-size |<<values,Number>> + (default: 9) |footnotes: font-size: 8 |font-style |<<font-styles,Font style>> + (default: $base-font-style) |footnotes: font-style: italic |item-spacing |<<measurement-units,Measurement>> + (default: 3) |footnotes: item-spacing: 5 |margin-top |<<measurement-units,Measurement>> + (default: 0) |footnotes: margin-top: 10 |text-transform |<<text-transforms,Text transform>> + (default: _inherit_) |footnotes: text-transform: lowercase |=== [#keys-table-of-contents] === Table of Contents (TOC) The keys in this category control the arrangement and style of the table of contents. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-toc]*Key Prefix:* <<key-prefix-toc,toc>> |font-color |<<colors,Color>> + (default: _inherit_) |toc: font-color: #333333 |font-family |<<fonts,Font family name>> + (default: _inherit_) |toc: font-family: Noto Serif |font-kerning |normal {vbar} none + (default: _inherit_) |toc: font-kerning: none |font-size |<<values,Number>> + (default: _inherit_) |toc: font-size: 9 |font-style |<<font-styles,Font style>> + // QUESTION why is the default not inherited? (default: normal) |toc: font-style: bold |text-decoration |<<text-decorations,Text decoration>> + (default: none) |toc: text-decoration: underline |text-decoration-color |<<colors,Color>> + (default: $toc-font-color) |toc text-decoration-color: #cccccc |text-decoration-width |<<values,Number>> + (default: 1) |toc: text-decoration-width: 0.5 |text-transform |<<text-transforms,Text transform>> + (default: _inherit_) |toc: text-transform: uppercase |line-height |<<values,Number>> + (default: 1.4) |toc: line-height: 1.5 |indent |<<measurement-units,Measurement>> + (default: 15) |toc: indent: 20 |hanging-indent |<<measurement-units,Measurement>> + (default: _not set_) |toc: hanging-indent: 0.5in |margin-top |<<measurement-units,Measurement>> + (default: 0) |toc: margin-top: 0 3+|[#key-prefix-toc-level]*Key Prefix:* <<key-prefix-toc-level,toc-h<n>{zwsp}>>^[1]^ |font-color |<<colors,Color>> + (default: _inherit_) |toc: h3-font-color: #999999 |font-family |<<fonts,Font family name>> + (default: _inherit_) |toc: h2-font-family: Noto Serif |font-kerning |normal {vbar} none + (default: _inherit_) |toc: h3-font-kerning: none |font-size |<<values,Number>> + (default: _inherit_) |toc: h3-font-size: 9 |font-style |<<font-styles,Font style>> + (default: _inherit_) |toc: h2-font-style: italic |text-transform |<<text-transforms,Text transform>> + (default: _inherit_) |toc: h3-text-transform: uppercase 3+|[#key-prefix-toc-title]*Key Prefix:* <<key-prefix-toc-title,toc-title>> |align |<<text-alignments,Text alignment>> + (default: $heading-h2-align) |toc: title: align: right |font-color |<<colors,Color>> + (default: $heading-h2-font-color) |toc: title: font-color: #aa0000 |font-family |<<fonts,Font family name>> + (default: $heading-h2-font-family) |toc: title: font-family: Noto Serif |font-kerning |normal {vbar} none + (default: _inherit_) |toc: title: font-kerning: none |font-size |<<values,Number>> + (default: $heading-h2-font-size) |toc: title: font-size: 18 |font-style |<<font-styles,Font style>> + (default: $heading-h2-font-style) |toc: title: font-style: bold_italic |text-transform |<<text-transforms,Text transform>> + (default: $heading-h2-text-transform) |sidebar: title: text-transform: uppercase 3+|[#key-prefix-toc-dot-leader]*Key Prefix:* <<key-prefix-toc-dot-leader,toc-dot-leader>> |content |<<quoted-string,Quoted string>> + (default: '. ') |toc: dot-leader: content: ". " |font-color^[2]^ |<<colors,Color>> + (default: _inherit_) |toc: dot-leader: font-color: #999999 |font-style^[2]^ |<<font-styles,Font style>> + (default: normal) |toc: dot-leader: font-style: bold |levels^[3]^ |all {vbar} none {vbar} Integers (space-separated) + (default: all) |toc: dot-leader: levels: 2 3 |=== . `<n>` is a number ranging from 1 to 6, representing each of the six heading levels. . The dot leader inherits all font properties except `font-style` from the root `toc` category. . 0-based levels (e.g., part = 0, chapter = 1). Dot leaders are only shown for the specified levels. If value is not specified, dot leaders are shown for all levels. [#keys-running-content] === Running Content (Header & Footer) The keys in this category control the arrangement and style of running header and footer content. Please note that the running content will _not_ be used unless a) the periphery (header or footer) is configured and b) the height key for the periphery is assigned a value. CAUTION: If the height of the running content periphery is larger than the page margin, the running content will cover the main content. To avoid this problem, reduce the height of the running content periphery or make the page margin on that side larger. [cols="3,4,5l"] |=== |Key |Value Type |Example 3+|[#key-prefix-header]*Key Prefix:* <<key-prefix-header,header>> |background-color^[1]^ |<<colors,Color>> + (default: _not set_) |header: background-color: #eeeeee |background-image |image macro + (default: _not set_) |header: background-image: image:running-content.svg[fit=contain] |border-color |<<colors,Color>> + (default: _not set_) |header: border-color: #dddddd |border-style |solid {vbar} double {vbar} dashed {vbar} dotted + (default: solid) |header: border-style: dashed |border-width |<<measurement-units,Measurement>> + (default: $base-border-width) |header: border-width: 0.25 |font-color |<<colors,Color>> + (default: _inherit_) |header: font-color: #333333 |font-family |<<fonts,Font family name>> + (default: _inherit_) |header: font-family: Noto Serif |font-kerning |normal {vbar} none + (default: _inherit_) |header: font-kerning: none |font-size |<<values,Number>> + (default: _inherit_) |header: font-size: 9 |font-style |<<font-styles,Font style>> + (default: _inherit_) |header: font-style: italic |height^[2]^ |<<measurement-units,Measurement>> + (default: _not set_) |header: height: 0.75in |line-height |<<values,Number>> + (default: $base-line-height) |header: line-height: 1.2 |padding^[3]^ |<<measurement-units,Measurement>> {vbar} <<measurement-units,Measurement[top,right,bottom,left]>> + (default: 0) |header: padding: [0, 3, 0, 3] |image-vertical-align |top {vbar} middle {vbar} bottom {vbar} <<measurement-units,Measurement>> + (default: _not set_) |header: image-vertical-align: 4 |sectlevels^[4]^ |Integer + (default: 2) |header: sectlevels: 3 |text-transform |<<text-transforms,Text transform>> + (default: none) |header: text-transform: uppercase |title-style |document {vbar} toc {vbar} basic + (default: document) |header: title-style: toc |vertical-align |top {vbar} middle {vbar} bottom {vbar} [top {vbar} middle {vbar} bottom, <<measurement-units,Measurement>>] + (default: middle) |header: vertical-align: middle |<side>-columns^[5]^ |Column specs triple + (default: _not set_) |header: recto: columns: <25% =50% >25% |<side>-<position>-content^[5,6]^ |<<quoted-string,Quoted string>> + (default: '\{page-number}') |header: recto: left: content: '\{page-number}' 3+|[#key-prefix-footer]*Key Prefix:* <<key-prefix-footer,footer>> |background-color^[1]^ |<<colors,Color>> + (default: _not set_) |footer: background-color: #eeeeee |background-image |image macro + (default: _not set_) |footer: background-image: image:running-content.svg[fit=contain] |border-color |<<colors,Color>> + (default: _not set_) |footer: border-color: #dddddd |border-style |solid {vbar} double {vbar} dashed {vbar} dotted + (default: solid) |footer: border-style: dashed |border-width |<<measurement-units,Measurement>> + (default: $base-border-width) |footer: border-width: 0.25 |font-color |<<colors,Color>> + (default: _inherit_) |footer: font-color: #333333 |font-family |<<fonts,Font family name>> + (default: _inherit_) |footer: font-family: Noto Serif |font-kerning |normal {vbar} none + (default: _inherit_) |footer: font-kerning: none |font-size |<<values,Number>> + (default: _inherit_) |footer: font-size: 9 |font-style |<<font-styles,Font style>> + (default: _inherit_) |footer: font-style: italic |height^[2]^ |<<measurement-units,Measurement>> + (default: _not set_) |footer: height: 0.75in |line-height |<<values,Number>> + (default: $base-line-height) |footer: line-height: 1.2 |padding^[3]^ |<<measurement-units,Measurement>> {vbar} <<measurement-units,Measurement[top,right,bottom,left]>> + (default: 0) |footer: padding: [0, 3, 0, 3] |image-vertical-align |top {vbar} middle {vbar} bottom {vbar} <<measurement-units,Measurement>> + (default: _not set_) |footer: image-vertical-align: 4 |sectlevels^[4]^ |Integer + (default: 2) |footer: sectlevels: 3 |text-transform |<<text-transforms,Text transform>> + (default: none) |footer: text-transform: uppercase |title-style |document {vbar} toc {vbar} basic + (default: document) |footer: title-style: toc |vertical-align |top {vbar} middle {vbar} bottom {vbar} [top {vbar} middle {vbar} bottom, <<measurement-units,Measurement>>] + (default: middle) |footer: vertical-align: top |<side>-columns^[5]^ |Column specs triple + (default: _not set_) |footer: verso: columns: <50% =0% <50% |<side>-<position>-content^[5,6]^ |<<quoted-string,Quoted string>> + (default: '\{page-number}') |footer: verso: center: content: '\{page-number}' 3+|[#key-prefix-running-content]*Key Prefix:* <<key-prefix-running-content,running-content>> |start-at^[7]^ |title {vbar} toc {vbar} body {vbar} Integer + (default: body) |running-content: start-at: toc |=== . The background color spans the width of the page, as does the border when a background color is specified. . *If the height is not set, the running content at this periphery is disabled.* . If the side padding is negative, the content will bleed into the margin of the page. . The maximum section level considered when assigning the implicit `section-title` attribute (and related) available to the running content. . `<side>` can be `recto` (right-hand, odd-numbered pages) or `verso` (left-hand, even-numbered pages). The `columns` key can also be defined one level up (on `header` or `footer`), in which case the setting will be inherited. Where the page sides fall in relation to the physical or printed page number is controlled using the `pdf-folio-placement` attribute (except when `media=prepress`, which implies `physical`). . `<position>` can be `left`, `center` or `right`. . Only works if the document uses a title page (i.e., doctype is book or `title-page` attribute is set) The `toc` value only applies if the toc is in the default location (before the first page of the body). If the toc macro is used to position the toc, the start-at behavior is the same as if the toc is not enabled. If value is an integer, the running content will start at the specified page of the body (i.e., 1 is first page, 2 is second page, etc.) IMPORTANT: If you don't specify a height for either the header or footer key, it effectively disables the content at that periphery. TIP: Although not listed in the table above, you can control the font settings (font-family, font-size, font-color, font-style, text-transform) that get applied to the running content in each column position for each page side (e.g., `footer-<side>-<position>-font-color`). For example, you can set the font color used for the right-hand column on recto pages by setting `footer-recto-right-font-color: 6CC644`. ==== Disabling If you define running header and footer content in your theme (including the height), you can still disable this content per document by setting the `noheader` and `nofooter` attributes in the AsciiDoc document header, respectively. If you extend either the base or default theme, and don't specify content for the footer, the current page number will be added to the right side on recto pages and the left side on verso pages. To disable this behavior, you can use the following snippet: [source,yaml] ---- extends: default footer: recto: right: content: ~ verso: left: content: ~ ---- Instead of erasing the content (which is what the `~` does), you can specify content of your choosing. ==== Replacing If you want to replace the alternating page numbers with a centered page number, then you can restrict the footer to a single column and specify the content for the center position. [source,yaml] ---- extends: default footer: columns: =100% recto: center: content: '{page-number}' verso: center: content: '{page-number}' ---- In the last two examples, the recto and verso both have the same content. In this case, you can reduce the amount of configuring using a YAML reference. For example: [source,yaml] ---- extends: default footer: columns: =100% recto: &shared_footer center: content: '{page-number}' verso: *shared_footer ---- The `&shared_footer` assigns an ID to the YAML subtree under the `recto` key and the `*shared_footer` outputs a copy of it under the `verso` key. This technique can be used throughout the theme file as it's a core feature of YAML. ==== Attribute References You can use _any_ attribute defined in your AsciiDoc document (such as `doctitle`) in the content of the running header and footer. In addition, the following attributes are also available when defining the content keys in the footer: * page-count * page-number (only set if the `pagenums` attribute is set on the document, which it is by default) * document-title * document-subtitle * part-title * chapter-title * section-title * section-or-chapter-title If you reference an attribute which is not defined, all the text on that same line in the running content will be dropped. This feature allows you to have alternate lines that are selected when all the attribute references are satisfied. One case where this is useful is when referencing the `page-number` attribute. If you unset the `pagenums` attribute on the document, any line in the running content that makes reference to `\{page-number}` will be dropped. You can also use built-in AsciiDoc text replacements like `+(C)+`, numeric character references like `+©+`, hexadecimal character references like `+€+`, and inline formatting (e.g., bold, italic, monospace). Here's an example that shows how attributes and replacements can be used in the running footer: [source,yaml] ---- header: height: 0.75in line-height: 1 recto: center: content: '(C) ACME -- v{revnumber}, {docdate}' verso: center: content: $header-recto-center-content footer: height: 0.75in line-height: 1 recto: right: content: '{section-or-chapter-title} | *{page-number}*' verso: left: content: '*{page-number}* | {chapter-title}' ---- ==== Multiple Lines You can split the content value across multiple lines using YAML's multiline string syntax. In this case, the single quotes around the string are not necessary. To force a hard line break in the output, add `{sp}+` to the end of the line in normal AsciiDoc fashion. [source,yaml] ---- footer: height: 0.75in line-height: 1.2 recto: right: content: | Section Title - Page Number + {section-or-chapter-title} - {page-number} verso: left: content: | Page Number - Chapter Title + {page-number} - {chapter-title} ---- TIP: You can use most AsciiDoc inline formatting in the values of these keys. For instance, to make the text bold, surround it in asterisks (as shown above). One exception to this rule are inline images, which are described in the next section. ==== Images You can add an image to the running header or footer using the AsciiDoc inline image syntax. The image target is resolved relative to the value of the `pdf-themesdir` attribute. If the image macro is the whole value for a column position, you can use the `position` and `fit` attributes to align and scale it relative to the column box. Otherwise, the image is treated like a normal inline image, for which you can only adjust the width. Here's an example of how to use an image in the running header (which also applies for the footer). [source,yaml,subs=attributes+] ---- header: height: 0.75in image-vertical-align: 2 {conum-guard-yaml} <1> recto: center: content: image:footer-logo.png[pdfwidth=15pt] verso: center: content: $header-recto-center-content ---- <1> You can use the `image-vertical-align` key to slightly nudge the image up or down. CAUTION: The image must fit in the allotted space for the running header or footer. Otherwise, you'll run into layout issues or the image may not display. You can adjust the width of the image to a fixed value using the `pdfwidth` attribute. Alternatively, you can use the `fit` attribute to set the size of the image dynamically based on the available space. Set the `fit` attribute to `scale-down` (e.g., `fit=scale-down`) to reduce the image size to fit in the available space or `contain` (i.e., `fit=contain`) to scale the image (up or down) to fit the available space. You should not rely on the `width` attribute to set the image width when converting to PDF. == Applying Your Theme After creating a theme, you'll need to tell Asciidoctor PDF where to find it. This is done using AsciiDoc attributes. There are three AsciiDoc attributes that tell Asciidoctor PDF how to locate and apply your theme. pdf-theme (or pdf-style):: The name of the YAML theme file to load. If the name ends with `.yml`, it's assumed to be the complete name of a file and is resolved relative to `pdf-themesdir`, if specified, otherwise the current directory. Otherwise, `-theme.yml` is appended to the name to make the file name (i.e., `<name>-theme.yml`) and is resolved relative to `pdf-themesdir`, if specified, otherwise the built-in themes dir. pdf-themesdir (or pdf-stylesdir):: The directory where the theme file is located. _Specifying an absolute path is recommended._ + If you use images in your theme, image paths are resolved relative to this directory. If `pdf-theme` ends with `.yml`, and `pdf-themesdir` is not specified, then `pdf-themesdir` defaults to the directory of the path specified by `pdf-theme`. pdf-fontsdir:: The directory or directories where the fonts used by your theme, if any, are located. Multiple entries must be separated by a semi-colon. To reference a file inside a JAR file on the classpath, prefix with the path with `uri:classloader:` (AsciidoctorJ only). _Specifying an absolute path is recommended._ Let's assume that you've put your theme files inside a directory named `resources` with the following layout: .... document.adoc resources/ themes/ basic-theme.yml fonts/ roboto-normal.ttf roboto-italic.ttf roboto-bold.ttf roboto-bold_italic.ttf .... Here's how you'd load your theme when calling Asciidoctor PDF: $ asciidoctor-pdf -a pdf-themesdir=resources/themes -a pdf-theme=basic -a pdf-fontsdir=resources/fonts If all goes well, Asciidoctor PDF should run without an error or warning. NOTE: You only need to specify the `pdf-fontsdir` if you're using custom fonts in your theme. You can skip setting the `pdf-themesdir` attribute and just pass the absolute path of your theme file to the `pdf-theme` attribute. $ asciidoctor-pdf -a pdf-theme=resources/themes/basic-theme.yml -a pdf-fontsdir=resources/fonts However, in this case, image paths in your theme won't be resolved properly. Paths are resolved relative to the current directory. However, in the future, this may change so that paths are resolved relative to the base directory (typically the document's directory). Therefore, it's recommend that you specify absolute paths for now to future-proof your configuration. $ asciidoctor-pdf -a pdf-themesdir=/path/to/resources/themes -a pdf-theme=basic -a pdf-fontsdir=/path/to/resources/fonts As usual, you can also use build tools like Maven and Gradle to build a themed PDF. The only thing you need to add to an existing build is the attributes mentioned above. * https://github.com/asciidoctor/asciidoctor-maven-examples/tree/master/asciidoctor-pdf-with-theme-example[Maven Example] * https://github.com/asciidoctor/asciidoctor-gradle-examples/tree/master/asciidoc-to-pdf-with-theme-example[Gradle Example] Speaking of Java, you can bundle and distribute your theme and fonts in a jar file. To reference the theme file and/or directory of fonts from inside the jar, refer to their location on the classpath using the `uri:classloader:` prefix. Here's how you'd load both the theme and fonts from the classpath: $ asciidoctorj -b pdf -a pdf-theme="uri:classloader:/path/to/themes/my-theme.yml" -a pdf-fontsdir="uri:classloader:/path/to/fonts" document.adoc This only works when running Asciidoctor PDF on the JVM. == Theme-Related Document Attributes There are various settings in the theme you control using document attributes. These settings override equivalent keys defined in the theme file, where applicable. [cols="2,3,6l"] |=== |Attribute |Value Type |Example |autofit-option |flag (default: _not set_) |:autofit-option: |chapter-label |string (default: Chapter) |:chapter-label: Chapitre |<face>-cover-image^[1]^ |path^[2]^ {vbar} image macro^[3]^ + (format can be image or PDF) |:front-cover-image: image:front-cover.pdf[] |hyphens^[7]^ |language code {vbar} _blank_ to default to en_us (default: _not set_) |:hyphens: de |media |screen {vbar} print {vbar} prepress |:media: prepress |compress |flag (default: _not set_) |:compress: |optimize |screen {vbar} ebook {vbar} printer {vbar} prepress {vbar} default (default: default) |:optimize: prepress |outlinelevels^[10]^ |Integer {vbar} Integer:Integer (default: same as _toclevels_) |:outlinelevels: 2 |page-background-image^[4]^ |path^[2]^ {vbar} image macro^[3]^ |:page-background-image: image:bg.jpg[] |page-background-image-(recto{vbar}verso)^[4]^ |path^[2]^ {vbar} image macro^[3]^ |:page-background-image-recto: image:bg-recto.jpg[] |page-foreground-image |path^[2]^ {vbar} image macro^[3]^ |:page-foreground-image: image:watermark.svg[] |pagenums^[5]^ |flag (default: _set_) |:pagenums: |pdf-page-layout |portrait {vbar} landscape |:pdf-page-layout: landscape |pdf-page-margin |<<measurement-units,Measurement>> {vbar} <<measurement-units,Measurement[top,right,bottom,left]>> |:pdf-page-margin: [1in, 0.5in] |pdf-page-mode |outline {vbar} none {vbar} thumbs {vbar} fullscreen {vbar} fullscreen outline {vbar} fullscreen none {vbar} fullscreen thumbs (default: outline) |:pdf-page-mode: fullscreen none |pdf-page-size |https://github.com/prawnpdf/pdf-core/blob/0.6.0/lib/pdf/core/page_geometry.rb#L16-L68[Named size^] {vbar} <<measurement-units,Measurement[width, height]>> |:pdf-page-size: [6in, 9in] |pdf-folio-placement |virtual {vbar} virtual-inverted {vbar} physical {vbar} physical-inverted |:pdf-folio-placement: physical |pdf-version |1.3 {vbar} 1.4 {vbar} 1.5 {vbar} 1.6 {vbar} 1.7 (default: 1.4) |:pdf-version: 1.7 |pdfmark^[6]^ |flag (default: _not set_) |:pdfmark: |scripts^[7]^ |cjk (default: _not set_) |:scripts: cjk |text-align^[8]^ |<<text-alignments,Text alignment>> |:text-align: left |title-logo-image |path^[2]^ {vbar} image macro^[3]^ |:title-logo-image: image:logo.png[top=25%, align=center, pdfwidth=0.5in] |title-page^[9]^ |flag (default: _not set_) |:title-page: |title-page-background-image |path^[2]^ {vbar} image macro^[3]^ |:title-page-background-image: image:title-bg.jpg[] |toc-max-pagenum-digits^[10]^ |Integer (default: 3) |:toc-max-pagenum-digits: 4 |=== . `<face>` can be `front` or `back`. . The path is resolved relative to base_dir. . The target of the image macro is resolved relative to `imagesdir`. If the image macro syntax is not used, the value is resolved relative to the base directory, which defaults to the document directory. . By default, page background images are automatically scaled to fit the bounds of the page (i.e., `fit=contain`) and centered (i.e., `position=center`). The size of the background image can be controlled using any of the sizing attributes on the image macro (i.e., fit, pdfwidth, scaledwidth, or width) when `fit=none`. The position of the background image can be controlled using the `position` attribute. If the recto (right-hand, odd-numbered pages) or verso (left-hand, even-numbered pages) background is specified, it will be used only for that side. If a background image isn't specified for a side, the converter will use the default page background image (`page-background-image`), if specified. To disable the background image for a side, use the value `none`. . Controls whether the implicit `page-number` attribute is to the running header and footer content specified in the theme file. Instead of disabling page numbers, you can use the `noheader` and `nofooter` attributes to disable the running header and footer, respectively. . Enables generation of the http://milan.kupcevic.net/ghostscript-ps-pdf/#marks[pdfmark] file, which contains metadata that is fed to Ghostscript when optimizing the PDF file. . Activates line break rules for CJK languages (specifically Chinese and Japanese). Chinese and Japanese are written without spaces (and may not use spaces when mixing with English words either). This setting allows a line break to be placed between any two CJK characters to accommodate wrapping. These languages also use different punctuation for pause, full stop, and dash, which are taken into account when breaking lines. . _(Experimental)_ The `text-align` document attribute is intended as a simple way to toggle text justification. The value of this attribute overrides the `base-align` key set by the theme. For more fine-grained control, you should customize using the theme. . The title page is only enabled by default for the book doctype. To force the title page to be used for other doctypes, set the `title-page` attribute in the document header. . If the TOC overlaps the first page of content, increase this number. . The second number in the value of `outlinelevels` is the number of levels of the outline to expand (e.g., `3:1`). If the second number is not present, all levels are expanded. == Publishing Mode Asciidoctor PDF provides the following features to assist with publishing: * Double-sided (mirror) page margins * Automatic facing pages These features are activated when you set the `media` attribute to `prepress` in the header of your AsciiDoc document or from the CLI or API. The following sections describe the behaviors that this setting activates. === Double-Sided Page Margins The page margins for the recto (right-hand, odd-numbered) and verso (left-hand, even-numbered) pages are automatically calculated by replacing the side page margins with the values of the `page-margin-inner` and `page-margin-outer` keys. For example, let's assume you've defined the following settings in your theme: [source,yaml] ---- page: margin: [0.5in, 0.67in, 0.67in, 0.67in] margin-inner: 0.75in margin-outer: 0.59in ---- The page margins for the recto and verso pages will be resolved as follows: recto page margin:: [0.5in, *0.59in*, 0.67in, *0.75in*] verso page margin:: [0.5in, *0.75in*, 0.67in, *0.59in*] The page margins alternate between recto and verso. The first page in the document (after the cover) is a recto page. If no cover is specified, the recto margin is not applied to the title page. To apply the recto margin to the title page, but not include a cover, assign the value `~` to the `front-cover-image` attribute. === Automatic Facing Pages When converting the book doctype using the prepress media setting, a blank page will be inserted when necessary to ensure the following elements start on a recto page: * Title page * Table of contents * First page of body * Parts and chapters Other "`facing`" pages may be added in the future. It's possible to disable the automatic facing feature for a given part or chapter. This can be done by adding the nonfacing option to the section node. When the nonfacing option is present, the part or chapter title will be placed on the next adjacent page rather than the next facing page. [source,asciidoc] ---- [%nonfacing] = Minor Chapter content ---- For documents that use the article doctype, Asciidoctor PDF incorrectly places the document title and table of contents on their own pages. This can result in the page numbering and the page facing to be out of sync. As a workaround, Asciidoctor PDF inserts a blank page, if necessary, to ensure the first page of body content is a recto-facing page. You can check on the status of this defect by following https://github.com/asciidoctor/asciidoctor-pdf/issues/95[issue #95]. == Source Highlighting Theme You can define and apply your own source highlighting theme to source blocks when using Rouge as the source highlighter. This section explains how. A custom theme for Rouge is defined using a Ruby class. Start by creating a Ruby source file to define your theme. Name the file according to the name of your theme and put the file in a folder of your choice (e.g., [.path]_rouge_themes/custom.rb_). The name of the Ruby class doesn't matter, though it's customary to name it according to the name of the theme as well. .rouge_themes/custom.rb [source,ruby] ---- require 'rouge' unless defined? ::Rouge.version module Rouge; module Themes class Custom < CSSTheme name 'custom' style Comment, fg: '#008800', italic: true style Error, fg: '#a61717', bg: '#e3d2d2' style Str, fg: '#0000ff' style Str::Char, fg: '#800080' style Num, fg: '#0000ff' style Keyword, fg: '#000080', bold: true style Operator::Word, bold: true style Name::Tag, fg: '#000080', bold: true style Name::Attribute, fg: '#ff0000' style Generic::Deleted, fg: '#000000', bg: '#ffdddd', inline_block: true, extend: true style Generic::Inserted, fg: '#000000', bg: '#ddffdd', inline_block: true, extend: true style Text, {} end end; end ---- Each style declaration accepts the following properties: * `fg` - sets the foreground (text) color * `bg` - sets the background color * `bold` - change the font weight to bold * `italic` - change the font style to italic * `underline` - add an underline to the text * `inline_block` - fill the background color to the height of the line (Asciidoctor PDF only) * `extend` - extend the background color to the end of the line for a line-oriented match (Asciidoctor PDF only) Colors are defined using hexadecimal format (e.g., #ff0000 for red). Use the `Text` token to set the background color of the source block and the default text color. The complete list of tokens can be found in the https://github.com/jneen/rouge/blob/master/lib/rouge/token.rb[token.rb] file from Rouge. Refer to the https://github.com/jneen/rouge/tree/master/lib/rouge/themes[bundled themes] to find more examples. Once you've defined your theme, you need to enable it use it using the `rouge-style` document attribute, which you specify in the document header or via the Asciidoctor CLI or API. [source,asciidoc] ---- :source-highlighter: rouge :rouge-style: custom ---- Finally, you need to active your theme by requiring the theme file when you invoke Asciidoctor. $ asciidoctor -r ./rouge_themes/custom.rb sample.adoc You should now see that the source code is highlighted to your liking. For more information about source highlighting with Rouge, refer to the http://rouge.jneen.net/[Rouge project page]. //// == Resources for Extending Asciidoctor PDF * http://www.sitepoint.com/hackable-pdf-typesetting-in-ruby-with-prawn[Hackable PDF typesetting in Ruby with Prawn] //// == Extending the Converter This converter uses {url-prawn}[Prawn] under the covers to generate the PDF. Prawn is a low-level PDF writer that can load fonts, ink text, embed images, add graphics, and draw lines. With those operations alone, this converter manages to produce a PDF from an AsciiDoc document. This section explains the role of theming in this process and how to extend the converter to take it further. === Going Beyond Theming While creating the PDF document, there are thousands of small decisions the converter must make about how to instruct Prawn to layout the content elements on the page (so-called "`hackable typesetting`"). But once these elements are written, they can't be moved or styled (as is the case with HTML and CSS). To help influence those decisions--and thus prevent the converter from becoming too opinionated, a theming system was introduced. That theming system is described in this document. The theme support is there to provide basic customizations (fonts, colors, borders, spacing, etc.). But it can only go so far. At some point, it becomes necessary to extend the converter to meet advanced design requirements. Before you dive into extending this converter, you'll need to understand how to use Prawn. The article https://www.sitepoint.com/hackable-pdf-typesetting-in-ruby-with-prawn/[Hackable PDF Typesetting in Ruby with Prawn] gives a crash course in how to create your first PDF document containing text, graphics, and images with Prawn. That article is essential reading for working with Asciidoctor PDF, which uses many of the same operations (as well as many helpful add-ons). Once you feel comfortable with Prawn, you're ready to extend the converter. === Tailoring Conversion The methods on a converter class that handle conversion follow the pattern `convert_<name>` for block elements (e.g., `convert_example`) and `convert_inline_<name>` for inline elements (e.g., `convert_inline_anchor`), where `<name>` is the name of the element. When you override a block element, you write PDF objects directly to the Prawn Document (the current context). When you override an inline element, you return pseudo-HTML, which is then parsed and converted into PDF objects. The pseudo-HTML in Asciidoctor PDF evolved from the inline formatting in Prawn, now supporting the following elements: a, br, button, code, color, del, em, font, img, key, mark, span, strong, sub, sup. All decimal and hexadecimal character references are supported, as well as the named entities amp, apos, gt, lt, nbsp, and quot (e.g., `\'`). You can change the font color using the `rgb` attribute on the `color` element (e.g., `<color rgb="#ff0000">`) and the font family and size using the `name` and `size` attributes on the `font` element, respectively (e.g., `<font name="sans" size="12">`). You can also use the `style` attribute on `span` to control the font color, weight, and style using the relevant CSS property names. The pseudo-HTML in Asciidoctor PDF also supports the `class` attribute on any element for applying roles from the theme. (Though not recommended, you can pass this pseudo-HTML straight through to Prawn using an inline passthrough in AsciiDoc). === Defining the Extended Converter Starting with Asciidoctor 2, defining an extending converter and registering it in place of the original is very straightforward. .custom-pdf-converter.rb [source,ruby] ---- class CustomPDFConverter < (Asciidoctor::Converter.for 'pdf') register_for 'pdf' # overrides go here end ---- As it stands, the converter doesn't do anything differently than the primary converter because we haven't yet overridden any of its methods. Let's do that now, starting by overriding the thematic break (aka horizontal rule) to make it render like a ribbon: [source,ruby] ---- def convert_thematic_break node theme_margin :thematic_break, :top stroke_horizontal_rule 'FF0000', line_width: 0.5, line_style: :solid move_down 1 stroke_horizontal_rule 'FF0000', line_width: 1, line_style: :solid move_down 1 stroke_horizontal_rule 'FF0000', line_width: 0.5, line_style: :solid theme_margin :thematic_break, :bottom end ---- This converter will replace the thematic break with a red ribbon. Another way to override the converter is to modify the node, then delegate back to the primary converter. Let's put a page break before all paragraphs unless the cursor is at the top of the page. We'll call `super` to let the primary converter handle the work of rendering the paragraph. [source,ruby] ---- def convert_paragraph node bounds.move_past_bottom unless at_page_top? super end ---- Now let's look at how to modify an inline element. Let's say we want to override the kbd element. [source,ruby] ---- def convert_inline_kbd node %(<strong><color rgb="AA0000">#{(node.attr 'keys').join ' + '}</color></strong>) end ---- Refer to the primary converter to discover the pseudo-HTML you can use for inline elements. So far we've just been biting around the edges. A more realistic use case is to customize the part title page in a multi-part book. Since this is a specialized section element, there's a dedicated method named `layout_part_title` that you'll need to override. Let's customize the part title page by making the background orange, making the font white, centering the title on the page, and disabling the running content. (You don't need to start a new page before and after the part title since that's already done for you). [source,ruby] ---- def layout_part_title node, title, opts = {} fill_absolute_bounds 'E64C3D' move_down 20 typeset_text title, (calc_line_metrics 1.5), color: 'FFFFFF', inline_format: true, align: :center, size: 42 page.instance_variable_set :@imported_page, true end ---- The method `typeset_text` and `calc_line_metrics` are provided by Asciidoctor PDF to make writing text easier. If you wanted, you could just use the low-level `text` method provided by Prawn. To find all the available methods to override, consult the https://www.rubydoc.info/github/asciidoctor/asciidoctor-pdf/Asciidoctor/Pdf/Converter[API docs]. For deeper examples of how to override the behavior of the converter, refer to the extended converter in the https://github.com/mraible/infoq-mini-book/blob/master/src/main/ruby/asciidoctor-pdf-extensions.rb[InfoQ Mini-Book template]. Now that you've seen some examples of how to extend the converter, let's look at how to use it. === Using the Extended Converter To use this converter, register it by passing the path to the `-r` flag when calling the `asciidoctor-pdf` command: $ asciidoctor-pdf -r ./custom-pdf-converter.rb document.adoc That's all there is too it. Now you're hacking the typesetting! [appendix] == Preparing a Custom Font Any TTF font can be used with Prawn--and hence Asciidoctor PDF--without modifications (unless, of course, it's corrupt or contains errors). However, you may discover that kerning is disabled and certain required glyphs are missing (or replaced with boxes). To address these problems, you need to prepare the font using a font program such as {url-fontforge}[FontForge]. === Validate the Font Before using the font, you may want to check that the font is valid. To do so, create the following script, which will verify that the TTF font is free from errors. .validate-font.rb [source,ruby] ---- require 'ttfunk' require 'ttfunk/subset_collection' ttf_subsets = TTFunk::SubsetCollection.new TTFunk::File.open ARGV[0] (0...(ttf_subsets.instance_variable_get :@subsets).size).each {|idx| ttf_subsets[idx].encode } ---- Run the script on your font as follows: $ ruby validate-font.rb path/to/font.ttf If this script fails, the font will not work with Asciidoctor PDF. To repair it, open the font in FontForge and resave it using menu:File[Generate Fonts...,Generate]. Dismiss any warning dialogs. Resaving the font in FontForge will usually resolve any errors in the font. (If not, you may need to find another font, or at least another copy of it). === Modifying the Font To ready your font for use with Asciidoctor PDF, you'll need to modify it using a font program. We recommend using {url-fontforge}[FontForge]. But don't let this scare you off. FontForge essentially works like a vector-drawing tool, in which each character is a separate canvas. You can find a crash course in how to use the program on the FontForge project site. Here are the modifications you need to apply to a custom font for it to work best with Asciidoctor PDF: * Convert the font to TTF (only required if the font is not already a TTF, such as an OTF or TTC). * Add the glyphs for the required characters if missing from the font (optional if using a fallback font). * Subset the font to exclude unused characters to reduce the file size (optional). * Save the file using the old-style kern table to activate kerning. NOTE: Technically, subsetting the font (i.e., removing glyphs) is not required since Prawn only embeds the characters from the font used in the document (i.e., it automatically subsets the font). However, if you plan to commit the font to a repository, subsetting helps keep the file size down. Most fonts do not provide glyphs for all the Unicode character ranges (i.e., scripts). (A glyph is the corresponding vector image for a Unicode character). In fact, many fonts only include glyphs for Latin (Basic, Supplement, and Extended) and a few other scripts (e.g., Cyrillic, Greek). That means certain glyphs Asciidoctor PDF relies on may be missing from the font. Below are the non-Latin characters (identified by Unicode code point) on which Asciidoctor PDF relies that are often missing from fonts. Unless you're using a fallback font that fills in the missing glyphs, you need to ensure these glyphs are present in your font (and add them if not). * \u00a0 - no-break space * \ufeff - zero width no-break space * \u200b - zero width space (used for line break hints) * \u000a - line feed character (zero width) * \u2009 - thin spaced (used in the button UI element) * \u202f - narrow no-break space (used in the keybinding UI element) * \u2011 - non-breaking hyphen * \u2022 - disc (used for first-level unordered list level) * \u25e6 - circle (used for second-level unordered list level) * \u25aa - square (used for third-level unordered list level) * \u2611 - ballot box checked (used for checked list item) * \u2610 - ballot box unchecked (used for unchecked list item) * \u2014 - em-dash (used in quote attribute) * \u203a - single right-pointing quotation mark (used in the menu UI element) * \u25ba - right pointer (used for media play icon when icon fonts are disabled) * .notdef - used as the default glyph when a requested character is missing from the font (usually a box) NOTE: If the .notdef glyph is non-empty (i.e., contains splines), it will be used as the default glyph when the document requests a character that is missing from the font. Unlike other glyphs, the .notdef glyph is referenced by name only. It does not have a designated Unicode code point. If you're preparing a font for use in verbatim blocks (e.g., a listing block), you'll also need this range of characters: * \u2460 to \u2468 - circled numbers One way to get these glyphs is to steal them from another font (or from another character in the same font). To do so, open the other font in FontForge, select the character, press kbd:[Ctrl,c], switch back to your font, select the character again, and press kbd:[Ctrl,v]. You may need to scale the glyph so it fits properly in the art box. IMPORTANT: If you're copying a non-visible character, be sure to set the width to 0 using menu:Metrics[Set Width...], enter 0 into *Set Width To*, then click btn:[OK]. When you're done, save the font with the old-style kern table enabled. To do so, select menu:File[Generate Fonts...], select *TrueType*, click btn:[Options], make sure _only_ the following options are checked (equivalent to the flags 0x90 + 0x08): * [x] OpenType ** [x] Old style 'kern' Then click btn:[OK], then uncheck *Validate Before Saving*, and finally click btn:[Generate] to generate and save the font. Your font file is now ready to be used with Asciidoctor PDF. === Scripting the Font Modifications Performing all this font modification manually can be tedious (not to mention hard to reproduce). Fortunately, FontForge provides a {url-fontforge-scripting}[scripting interface], which you can use to automate the process. In fact, that's what we use to prepare the fonts that are bundled with Asciidoctor PDF. You can find that FontForge script, the Bash script that calls it, and the Docker image in which it is run in the https://github.com/asciidoctor/asciidoctor-pdf/tree/main/scripts[scripts directory] of this project. You can use that script as a starting point or reference for your own font preparation / modification script. �������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/examples/����������������������������������������������������������������0000775�0000000�0000000�00000000000�14163570564�0017402�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/examples/basic-example.adoc����������������������������������������������0000664�0000000�0000000�00000001565�14163570564�0022753�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������= Document Title Doc Writer <doc@example.com> :reproducible: :listing-caption: Listing :source-highlighter: rouge :toc: // Uncomment next line to add a title page (or set doctype to book) //:title-page: // Uncomment next line to set page size (default is A4) //:pdf-page-size: Letter An example of a basic http://asciidoc.org[AsciiDoc] document prepared by {author}. == Introduction A paragraph followed by an unordered list{empty}footnote:[AsciiDoc supports unordered, ordered, and description lists.] with square bullets.footnote:[You may choose from square, disc, and circle for the bullet style.] [square] * item 1 * item 2 * item 3 == Main Here's how you say "`Hello, World!`" in Prawn: .Create a basic PDF document using Prawn [source,ruby] ---- require 'prawn' Prawn::Document.generate 'example.pdf' do text 'Hello, World!' end ---- == Conclusion That's all, folks! �������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/examples/basic-example.pdf�����������������������������������������������0000664�0000000�0000000�00000165641�14163570564�0022624�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Document Title) /Author (Doc Writer) /Creator (Asciidoctor PDF, based on Prawn) /Producer (Doc Writer) >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 10 0 R /Outlines 35 0 R /PageLabels 41 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 10166 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 192.5425 777.054 Td /F2.0 27 Tf <446f63756d656e74205469746c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 630.5974 Td /F1.0 13 Tf <416e206578616d706c65206f66206120626173696320> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2588 0.5451 0.7922 scn 0.2588 0.5451 0.7922 SCN BT 186.911 630.5974 Td /F1.0 13 Tf <4173636969446f63> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 239.977 630.5974 Td /F1.0 13 Tf [<20646f63756d656e742070726570617265642062> 20.0195 <7920446f63205772697465722e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 585.5769 Td /F2.0 22 Tf <496e74726f64756374696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 556.3889 Td /F1.0 10.5 Tf [<4120706172> 20.0195 <616772> 20.0195 <61706820666f6c6c6f7765642062> 20.0195 <7920616e20756e6f726465726564206c697374>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 261.2529 556.3889 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 261.2529 561.946 Td /F1.0 6.1215 Tf <5b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2588 0.5451 0.7922 scn 0.2588 0.5451 0.7922 SCN BT 263.4505 561.946 Td /F1.0 6.1215 Tf <31> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 266.8724 561.946 Td /F1.0 6.1215 Tf <5d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 269.07 556.3889 Td /F1.0 10.5 Tf <2077697468207371756172652062756c6c6574732e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 370.542 556.3889 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 370.542 561.946 Td /F1.0 6.1215 Tf <5b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2588 0.5451 0.7922 scn 0.2588 0.5451 0.7922 SCN BT 372.7397 561.946 Td /F1.0 6.1215 Tf <32> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 376.1616 561.946 Td /F1.0 6.1215 Tf <5d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 56.954 528.6089 Td /F1.1 10.5 Tf <21> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 66.24 528.6089 Td /F1.0 10.5 Tf <6974656d2031> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 56.954 506.8289 Td /F1.1 10.5 Tf <21> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 66.24 506.8289 Td /F1.0 10.5 Tf <6974656d2032> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 56.954 485.0489 Td /F1.1 10.5 Tf <21> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 66.24 485.0489 Td /F1.0 10.5 Tf <6974656d2033> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 440.9369 Td /F2.0 22 Tf <4d61696e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 411.7489 Td /F1.0 10.5 Tf [<48657265d57320686f7720796f75207361> 20.0195 <7920d248656c6c6f2c2057> 60.0586 <6f726c6421d320696e205072> 20.0195 <61776e3a>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 384.5671 Td /F3.0 9.975 Tf [<4c697374696e6720312e2043726561746520612062617369632050444620646f63756d656e74207573696e67205072> 20.0195 <61776e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.9608 0.9608 0.9608 scn 52.24 376.9419 m 543.04 376.9419 l 545.2491 376.9419 547.04 375.151 547.04 372.9419 c 547.04 285.2419 l 547.04 283.0327 545.2491 281.2419 543.04 281.2419 c 52.24 281.2419 l 50.0309 281.2419 48.24 283.0327 48.24 285.2419 c 48.24 372.9419 l 48.24 375.151 50.0309 376.9419 52.24 376.9419 c h f 0.8 0.8 0.8 SCN 0.75 w 52.24 376.9419 m 543.04 376.9419 l 545.2491 376.9419 547.04 375.151 547.04 372.9419 c 547.04 285.2419 l 547.04 283.0327 545.2491 281.2419 543.04 281.2419 c 52.24 281.2419 l 50.0309 281.2419 48.24 283.0327 48.24 285.2419 c 48.24 372.9419 l 48.24 375.151 50.0309 376.9419 52.24 376.9419 c h S Q 0.0 0.2 0.5333 scn 0.0 0.2 0.5333 SCN BT 59.24 354.1169 Td /F4.0 11 Tf <72657175697265> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 97.74 354.1169 Td /F4.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.8667 0.1333 0.0 scn 0.8667 0.1333 0.0 SCN BT 103.24 354.1169 Td /F4.0 11 Tf <27707261776e27> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.2 0.4 scn 0.0 0.2 0.4 SCN BT 59.24 324.6369 Td /F5.0 11 Tf <507261776e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 86.74 324.6369 Td /F4.0 11 Tf <3a3a> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.2 0.4 scn 0.0 0.2 0.4 SCN BT 97.74 324.6369 Td /F5.0 11 Tf <446f63756d656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 141.74 324.6369 Td /F4.0 11 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.4 0.7333 scn 0.0 0.4 0.7333 SCN BT 147.24 324.6369 Td /F5.0 11 Tf <67656e6572617465> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 191.24 324.6369 Td /F4.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.8667 0.1333 0.0 scn 0.8667 0.1333 0.0 SCN BT 196.74 324.6369 Td /F4.0 11 Tf <276578616d706c652e70646627> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 268.24 324.6369 Td /F4.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.5333 0.0 scn 0.0 0.5333 0.0 SCN BT 273.74 324.6369 Td /F5.0 11 Tf <646f> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 309.8969 Td /F4.0 11 Tf <ca20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 70.24 309.8969 Td /F4.0 11 Tf <74657874> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 92.24 309.8969 Td /F4.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.8667 0.1333 0.0 scn 0.8667 0.1333 0.0 SCN BT 97.74 309.8969 Td /F4.0 11 Tf <2748656c6c6f2c20576f726c642127> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.5333 0.0 scn 0.0 0.5333 0.0 SCN BT 59.24 295.1569 Td /F5.0 11 Tf <656e64> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 240.9459 Td /F2.0 22 Tf <436f6e636c7573696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 211.7579 Td /F1.0 10.5 Tf <54686174d57320616c6c2c20666f6c6b7321> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 69.1703 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 69.1703 Td /F1.0 8 Tf <5b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2588 0.5451 0.7922 scn 0.2588 0.5451 0.7922 SCN BT 51.112 69.1703 Td /F1.0 8 Tf <31> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 55.584 69.1703 Td /F1.0 8 Tf <5d204173636969446f6320737570706f72747320756e6f7264657265642c206f7264657265642c20616e64206465736372697074696f6e206c697374732e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 54.1474 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 54.1474 Td /F1.0 8 Tf <5b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2588 0.5451 0.7922 scn 0.2588 0.5451 0.7922 SCN BT 51.112 54.1474 Td /F1.0 8 Tf <32> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 55.584 54.1474 Td /F1.0 8 Tf [<5d2059> 69.8242 <6f75206d61> 20.0195 <792063686f6f73652066726f6d207371756172652c20646973632c20616e6420636972636c6520666f72207468652062756c6c6574207374796c652e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 730.074 Td /F2.0 22 Tf [<54> 29.7852 <61626c65206f6620436f6e74656e7473>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 699.536 Td /F1.0 10.5 Tf <496e74726f64756374696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6627 0.6627 0.6627 scn 0.6627 0.6627 0.6627 SCN BT 112.9306 699.536 Td /F1.0 10.5 Tf <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn BT 540.4906 699.536 Td /F1.0 2.625 Tf <ca> Tj ET 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 541.1705 699.536 Td /F1.0 10.5 Tf <31> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 681.056 Td /F1.0 10.5 Tf <4d61696e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6627 0.6627 0.6627 scn 0.6627 0.6627 0.6627 SCN BT 75.5191 681.056 Td /F1.0 10.5 Tf <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn BT 540.4906 681.056 Td /F1.0 2.625 Tf <ca> Tj ET 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 541.1705 681.056 Td /F1.0 10.5 Tf <31> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 662.576 Td /F1.0 10.5 Tf <436f6e636c7573696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6627 0.6627 0.6627 scn 0.6627 0.6627 0.6627 SCN BT 107.5861 662.576 Td /F1.0 10.5 Tf <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn BT 540.4906 662.576 Td /F1.0 2.625 Tf <ca> Tj ET 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 541.1705 662.576 Td /F1.0 10.5 Tf <31> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /Stamp1 Do 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 541.009 14.263 Td /F1.0 9 Tf <31> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 8 0 R /F1.0 12 0 R /F1.1 19 0 R /F3.0 21 0 R /F4.0 22 0 R /F5.0 23 0 R >> /XObject << /Stamp1 42 0 R >> >> /Annots [13 0 R 16 0 R 18 0 R 26 0 R 28 0 R 29 0 R 30 0 R 31 0 R 32 0 R 33 0 R 34 0 R] >> endobj 8 0 obj << /Type /Font /BaseFont /f349b6+NotoSerif-Bold /Subtype /TrueType /FontDescriptor 45 0 R /FirstChar 32 /LastChar 255 /Widths 47 0 R /ToUnicode 46 0 R >> endobj 9 0 obj [7 0 R /XYZ 0 645.41 null] endobj 10 0 obj << /Type /Names /Dests 11 0 R >> endobj 11 0 obj << /Names [(__anchor-top) 9 0 R (_conclusion) 24 0 R (_footnotedef_1) 25 0 R (_footnotedef_2) 27 0 R (_footnoteref_1) 15 0 R (_footnoteref_2) 17 0 R (_introduction) 14 0 R (_main) 20 0 R] >> endobj 12 0 obj << /Type /Font /BaseFont /55f1b4+NotoSerif /Subtype /TrueType /FontDescriptor 49 0 R /FirstChar 32 /LastChar 255 /Widths 51 0 R /ToUnicode 50 0 R >> endobj 13 0 obj << /Border [0 0 0] /A << /Type /Action /S /URI /URI (http://asciidoc.org) >> /Subtype /Link /Rect [186.911 626.8014 239.977 644.4814] /Type /Annot >> endobj 14 0 obj [7 0 R /XYZ 0 613.8729 null] endobj 15 0 obj [7 0 R /XYZ 261.2529 567.6029 null] endobj 16 0 obj << /Border [0 0 0] /Dest (_footnotedef_1) /Subtype /Link /Rect [263.4505 560.1585 266.8724 568.4837] /Type /Annot >> endobj 17 0 obj [7 0 R /XYZ 370.542 567.6029 null] endobj 18 0 obj << /Border [0 0 0] /Dest (_footnotedef_2) /Subtype /Link /Rect [372.7397 560.1585 376.1616 568.4837] /Type /Annot >> endobj 19 0 obj << /Type /Font /BaseFont /d08812+NotoSerif /Subtype /TrueType /FontDescriptor 53 0 R /FirstChar 32 /LastChar 255 /Widths 55 0 R /ToUnicode 54 0 R >> endobj 20 0 obj [7 0 R /XYZ 0 469.2329 null] endobj 21 0 obj << /Type /Font /BaseFont /b2950b+NotoSerif-Italic /Subtype /TrueType /FontDescriptor 57 0 R /FirstChar 32 /LastChar 255 /Widths 59 0 R /ToUnicode 58 0 R >> endobj 22 0 obj << /Type /Font /BaseFont /1f6b74+mplus1mn-regular /Subtype /TrueType /FontDescriptor 61 0 R /FirstChar 32 /LastChar 255 /Widths 63 0 R /ToUnicode 62 0 R >> endobj 23 0 obj << /Type /Font /BaseFont /b4db40+mplus1mn-bold /Subtype /TrueType /FontDescriptor 65 0 R /FirstChar 32 /LastChar 255 /Widths 67 0 R /ToUnicode 66 0 R >> endobj 24 0 obj [7 0 R /XYZ 0 269.2419 null] endobj 25 0 obj [7 0 R /XYZ 48.24 77.7143 null] endobj 26 0 obj << /Border [0 0 0] /Dest (_footnoteref_1) /Subtype /Link /Rect [51.112 66.8343 55.584 77.7143] /Type /Annot >> endobj 27 0 obj [7 0 R /XYZ 48.24 62.6914 null] endobj 28 0 obj << /Border [0 0 0] /Dest (_footnoteref_2) /Subtype /Link /Rect [51.112 51.8114 55.584 62.6914] /Type /Annot >> endobj 29 0 obj << /Border [0 0 0] /Dest (_introduction) /Subtype /Link /Rect [48.24 696.47 111.702 710.75] /Type /Annot >> endobj 30 0 obj << /Border [0 0 0] /Dest (_introduction) /Subtype /Link /Rect [541.1705 696.47 547.04 710.75] /Type /Annot >> endobj 31 0 obj << /Border [0 0 0] /Dest (_main) /Subtype /Link /Rect [48.24 677.99 74.1015 692.27] /Type /Annot >> endobj 32 0 obj << /Border [0 0 0] /Dest (_main) /Subtype /Link /Rect [541.1705 677.99 547.04 692.27] /Type /Annot >> endobj 33 0 obj << /Border [0 0 0] /Dest (_conclusion) /Subtype /Link /Rect [48.24 659.51 103.5015 673.79] /Type /Annot >> endobj 34 0 obj << /Border [0 0 0] /Dest (_conclusion) /Subtype /Link /Rect [541.1705 659.51 547.04 673.79] /Type /Annot >> endobj 35 0 obj << /Type /Outlines /Count 5 /First 36 0 R /Last 40 0 R >> endobj 36 0 obj << /Title <feff0044006f00630075006d0065006e00740020005400690074006c0065> /Parent 35 0 R /Count 0 /Next 37 0 R /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 37 0 obj << /Title <feff005400610062006c00650020006f006600200043006f006e00740065006e00740073> /Parent 35 0 R /Count 0 /Next 38 0 R /Prev 36 0 R /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 38 0 obj << /Title <feff0049006e00740072006f00640075006300740069006f006e> /Parent 35 0 R /Count 0 /Next 39 0 R /Prev 37 0 R /Dest [7 0 R /XYZ 0 613.8729 null] >> endobj 39 0 obj << /Title <feff004d00610069006e> /Parent 35 0 R /Count 0 /Next 40 0 R /Prev 38 0 R /Dest [7 0 R /XYZ 0 469.2329 null] >> endobj 40 0 obj << /Title <feff0043006f006e0063006c007500730069006f006e> /Parent 35 0 R /Count 0 /Prev 39 0 R /Dest [7 0 R /XYZ 0 269.2419 null] >> endobj 41 0 obj << /Nums [0 << /P (1) >>] >> endobj 42 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 595.28 841.89] /Length 162 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d q 0.25 w /DeviceRGB CS 0.8667 0.8667 0.8667 SCN 48.24 30.0 m 547.04 30.0 l S Q Q endstream endobj 43 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 595.28 841.89] /Length 162 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d q 0.25 w /DeviceRGB CS 0.8667 0.8667 0.8667 SCN 48.24 30.0 m 547.04 30.0 l S Q Q endstream endobj 44 0 obj << /Length1 9408 /Length 5670 /Filter [/FlateDecode] >> stream xY P[י>ޫ`@"0 � Py][ ! 'ΣvIqmuͤ4;\ܬlw'ɶvMt6]鶛Lgqm2YbbC{u?{/ JC<.K-z&CHmEdcTcdSP?Bl5Bio4paSy- G(khC @*}\|I w*Yg“'"Woy0#<? UFj#hbU`}9$v_q$TP 1OUJڷG~+堫D J\0Nyl稥J4R!r<ǩ${JfyaeDS bR '2F< cdH$zΨ A gP]J$punkv2-$^FQ9>pTξZd�Y >& wugh6"K֙U(S`TX 2esG]C}۷r;;mm-M u5ɸT_"rԔ$B.X#CbGJ/kQzP5~ 4д%4m4oF&#x _;@ S+L*0:;/b;[LI:&#ZLN2(qY[Z1%-E)Sɴ"wx}at&SL uRSTP|@GGEk G/Єǰ'"녱 caa1 v~(X5O)(ӫ~#\_/J^"dwaK< K+&^%,,nڴq@рF]Z#Z踨plP5-2.> ]V13yဘt#lhР;hB{,qV{GHϡ՞[=d^9'8 G XOwT*1cNX,TTN_ev�2dAEZ4#o ? xQ1$R?mv l^)G z EA;Mh"Z踕Oti%-;w,fdKG^a XkmEhN k:a :ܾ)ȣZh?N%D]Dszw%Љb;0# 3<E^ɻ-;*]@P  CdYw4nE�C,~GuFeduZthue22K%I@jSd "\U-q!7񍄇fD ͏uܚ`AWLˠ]\؞;Ru-d (λ gX6/N߂r7k)!\wpu, E~ĵ 3t/@+T)' 4k_!trT@KQrU%&!Sq Y @w> qƑ AZ1#$& 1E 6"oKD5doA>53]�VdZ,d%1zԘY:(a(9Fq\XI_>̦/?\[p>,f PN5ЗF&hSM6NS%4I: WPAa`d2A><nxw0 g)!ā x*[չ災\ƶeRd�j]f:,Z:$.҇KK+f{ _u( l[KW*wvvsŋ^҅kXc˞ yEgZβWfOO]9&ՓWN2ٓ7Ndm'񕓘?O9xij'WO\9 Lт/|;RV+צي)M6~lk7},k t {eNJhd(3Ѱj3>4,lՎh#8}DeMWm+B#Ϧ_KgүHg z @C,×a{IjN?"] 又hdN"Ə1Q+V)} ! T1Fcza (JEQB(ŻR(Ao $T�e7;6oS \xVl_9h^vAV.ե# ϻ>{ fA\7[s 3۵>F;a.._9%6>aԌ\kߗ_edBVzGK؊_rיyy}eʄײo>Iiޅ.c5 ??a'{/WpL)G\FüɰXşAyu޼`,?,tW{GV" BVgά-V2TRmiЅ ;;ˑ2Ϝ|cѽc'RQiԌڼK껊7U T\ƚo˳zXUi{=OsIp7@|h5NXUMn5*N)SAIJ.]9UR(8;?{k><o%m6,O_rq]cb�27a"˦.gM8!1ҜQ滣2BiFbޜM3 خEh,`%r?U*>y$ޟ]V_)΍jJ $O0b:ABAeIϥ~ߔ'(*Qo  ϔ t,d鲄23klsyskYL~4*k5?sj}mA|,=X\W5k:(CiVCi468\\ZSе2!Ͱ kp D?Uljw Wi. G:+ FX2ߊ+n53_5 VT臾Yxk.-teK׃#{F!gm-} mj"xɖ03e⎔e ڊ v,kUmMu)Vݧ<ۛ4Y |cN%c9.x"F6ε TC-;??֙_ѱL( ƚshɲyg88}޺<+[xшI\miĥwmݓ_iH- s_¶̼\O}pߤk( s<Sn\6^ gbeAW%XKa)`)pD68nbRmii޺lBocvaZSs q`Z]9bunZ CgvX:ۉ'q̑gh.i6&jW,[Y)Cb5A̔h+Xv +di44dQ Od}/Ӂ:lcVYYW+ڋ=0j[KI %$ge*/##XoN96EIc5\P9WtL-++I V@GG99]S^;lyU:mn{rt21d3䯩Yψ+b_ j-mzVQPPam|)0Z5WjMTY!ԗ֗df/-S@Ze SO̯FvTlM58]w$S` sKkj#6 I$5MFuQ쎌6^]ZW,_> b9>M.rU;,rvVq̜Q\],78wT j`9\tz,?`. gcazF{INR='q}E,b湯 m($d:OrBpwS;JaN2 o:ue㿋{ԉӱ>\ɱ55 Z50kt?XHCClhuuߔb TP90 'E\hܚduEζs<SVPR]iJk ;BE̐0)t0 lmՔ48;rϘ6'ќy{ p9o ܺ}\ޔSȒ>=i*kU5+s=csGFx#;u-&m^̰=27͝U֪Tw̺b+hwu 7EWk=STU[* r[#wU^UzP!yǫ˖f8pfF<ɫꜻjOuڊ^RR_Uf'߿y<X]h/&qj+2/]lp)ghgřS9fSe);wKm]RUva+z~Sh9qwoa0ڃ5Ukϛ U'nÂVفQ2p A%h` hڄf%ZlIh%%: ޡ.Kt22%:a—UNŽ!i(9H0GVnE2V) R%EvD9T$Zr�g$lHtmdʭb؄Kt*sJ,iZq390*;I3>3(?}p,̻so{x6;w:8;͛ <ѸEY\Q;en5 `^>6C޹|xj-̹NhGӳ{c^>lI[ʾr ́X,hs=i:y2LcP[tT!T0FaY˹g FvX*|hl.81]Uw.#?ڇ?wٝ>qg7 F(メL>V~*$Owvz; ^Ds`8`txn@x~Kg\]Ctr.E9<7mچ:QE4hP US n |sn}Y>7nRl}0: ?c u�?ۡ�A~y^lde(HL<dj׌ R^(1?0,Lm?54N$r0p^k:FDƣ o`ٷrLlN#t͠u33` x?Z$a6c ,$."i<@; ,]Ey}4ě�uAdAOg]gy: Fl*iTd> �T1 _¦Ű+\4.*lX]PèP@Kv/CPD:$<~'}]tqh{~@ѕ!*cQ\yQx]Nt$DK<\D(jFR|RCnulb0%vkO! If#3Sl3D~}'XwRZ59Sqn:l?@Xc-e) endstream endobj 45 0 obj << /Type /FontDescriptor /FontName /f349b6+NotoSerif-Bold /FontFile2 44 0 R /FontBBox [-212 -250 1306 1058] /Flags 6 /StemV 0 /ItalicAngle 0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 46 0 obj << /Length 1278 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }ik/y_!}t~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=n?[i(JKiU:JSz2QeL*EJ̔Ye,*+eU(NU-уk5x5F^ky ^#k5x5F^ky ^#kxZV^kZy-^+kxZV^kZy-^+uxu:N^:y^'uxu:N^:y^'xz^^zy=^/xz^^zy=^/o xo7 Aހ7y o xo7 Aހ7y oxo7jo$JI$$*I$ITH$$QI"IDD%$JI$$*I$ITD$$III$$u>M&Iބ7ɛ&y$o›Mx o7M&Iބ7ɛ&yUoa[5joSor4ۂs�ޮ>,x/x;Â31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x e#e_y+h܊7k:/Z5dUluz5n[eB&Si|y(%q& %+S%*ABijPU6\h,(+L,4G5<cD [˧*t [ jjaijIxʪwgFwضR>sh>:OVRP*#i|e0U,*oU/*[U,Nmlx:&\}M)L2\%CHF7էʻBL)jƻJ1:%H߯:=S۳zrmkO媳7 endstream endobj 47 0 obj [259 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 667 767 600 600 600 600 400 600 600 600 952 600 600 600 600 600 600 652 600 600 600 600 600 600 600 600 600 600 600 600 599 648 526 648 570 407 600 600 352 600 600 352 985 666 612 600 600 522 487 404 666 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600] endobj 48 0 obj << /Length1 13304 /Length 8123 /Filter [/FlateDecode] >> stream x{ \[ו=-&CZ@,f$v !lbKXl@$N8&q'u9nx<KL&!I~_/f:6_tq|m_~߹Wb5{s=9saP":X7ڃgt;|v!!ौ-_y1>71s~ B o`IYA-&D(IwuH}$0]e PLo @P~s?}>퇡<2{yPg3>ŧ*#=U?@_}L~DƊ¡{j⤈\_?WG뽏V> ˥]B(J"Z O'+]TL9f"JF_E"Z@))e~ j|U~?21cnf݂lGF1b|kB,B2>w{vtIt~D.u1.1Ž B'̇m;chG�p�1亐I$GZ42q/0RJN*Q!SY%gBvay.X89`VX5HV+~affEbI*AqD]paA2R32R\!O+@EvG#2-l!kggG{[kK`TW(/1]6Oը3ĄD,XbC/HYû j,=T,i-mM'P;>]^7Ч=wR˧(h4ЂwdNP󝓋]m|bt%68B\`Ŕ` W$M ݆X;u;JfPJ 5Q!qSHBUS:zR#KhģƼ녶cqDH P_d}b֎~:ֻ!6Y`8mx6ψ`fo^,zV|x%>~qF=nhP#Cd$#ڻb8^PjdC2=U`FC @!t)hDC!Cj\I 5GWk֚{fG{1iao> !9R#,*UY)b2-$~y^ R*=s2P>z;daF}b6A \4e \h\'w&f!yS6ha'=E[''=24 ^zݯ!Wx?ZPMExHQJM6*o%XBL/trTuֱEVF@xZ)f&oBhgH Ρ\֍+Ѫ4=*GʛH5j"ijUj4P@5ZHZWX-c@ egn' |&c#'WcW ĘfrqC-VlRݶZ/JE\*D-HvȔt #4{!L fh,^HE]KaWy:pP _?{ņ~ 6;!%3Mơ+yP~}r%LRIhꃂ+_!trAˣKQt%q^ʜZLj\ G`CXüC1'4~=Gb—@dtl(>i=APdgn'8_'F3/%#/dY#+8y{zq2>.ZZZ@JI8 Jh�ǃL~xı1f$xtn@ӃE7K۰/7tP�nYJ}Op#\:&@c&h΀w-uS|?ĢqX{Zz?",~O-{od[Go1gc/<V? ΧXdsO}CgO$?^}{ןXy=?ʙ9s w̳g?s)3ⅮTung8s +uE-Vb ؄fcc c{ܩ�~{βfqW> q~d֖Xua K[pE9nIᤁdK�dP <~St5zGGWuāc^]qK؇%=C<mBBh`n:~jC6B"9J:j A=p`o@zX} \X{{@<"!^ z"'0g".8idۛTΆgX˟qIWo! ]h-)ރC;~3\8flwĚgte-~t78:pc a -ioU|ޡ7Ts>?5-XrA[eʛCgүнh?r(AʭQu2Zrб(R;`r ;K,@нbT,%!s/㗈%v [l}S2_fV~)TP}wO<üþsc}SS$Y2"yNrCK,Fs4g}18gWL"I_dV#ӌe&fvWnpK2J[fe,*&MF? &$ &$EUÂr>1//Uwq/ O:ڴARneF(ŧz wgM+]p\&.TX3 MTv t"TՑ G;!5XRjee_neE&W158BAkթ ~c+u˜+V]m];u% mvMZ"'AE%gWLƉ5rlea�3IQl>lOH]NcW߮ʲtW4hmfwv{n[h}1EQJ>?#5{Rl]ڢ }ꮕkxd�@# 1D%'Pvo:K-EWC}a45nw9w;ǃj|khr>70^8i[hӘfq.ǡfW5ak/JZ VGF-K˜-K[#/EXgh5OD!'%8MQb|fXJX >0u\u*|5>+X\~t8Fw/IRӳSLr%YK7o&EY.׈,/϶Cm\�_^WnT8j KbV<EinϪ|nh⁎I!K/4_󟈾+X%rܼ4NKrqj]o~8.a7g}>`ҒHgΥHiJU8F2ea|J!Jc] Z.?꡺?e/tv Gۧp nIl�c_X VDgӨ]vs9"˾${y\i*_�˩̵9NP2 d|~V2;ƅ�f;L]+Ƭ"bj-U{TʰH ܡ(EOgzX+U:EnQI/\1JK|碬ߋɮ4P#ܜlG;dm֯e-k+T=uUSH~m΃oAv/Q3t'#ˆ}gqEItFV7S|PKrb!Ϸs&7sqW _$܁V\J5Kn"QVԨ( F9$]ˬT,j:!O~)5LZ+(K*T~,|-_eW1&+>jYy/& .`^|y/Q|C{P`2@`,ق\d^,FK_.3uzE2TZ|>P񝒙SCaszE];>`pu/ODB 7k ;mwr#1;!LKk{t'GnHY, d7hKQ+mhkp!%zu?t+_IWN KI`CגBӚāj߃{cJT$/k[w _г}_%1'3g4}vSybd,G{;W xX !,:AeiŐZ,6l(1wr3ΚR257dfTwzj} ) {{벳뼌=Ҥ07\Mtv-򜦇5/UU=?= сk3[ѦE+c{mGmûuMe5{yG$y}}{*.o6ӯz ]_-jb݇|lJϧK3j"6=ež `&O]R,:UάZ8#2;b)u^CX %�)j֨ c?Y6_9p'gk]LιU)YŻNR:{8V\WdIf%[PT BTZ_R-3U4Y[ F=M,C6A]+KšdvEwY~S_gs5ܦeD&),ʹp*FNKR"R4ҵ|J#,otlz2)R#?˕'( I4E\0w?|Yt<erjI᣽چ~^2lI+b)y̫m+IJ*(UTI.d֎w͞v*˻,58Z(Nupt],>3-!>A<cf3T2@ъjw bbTE^e葑̄d&]ikwWĤNs!۴> yشV?o]b<1l,rvGD*XMާ‘MZp#9`$,܌0n95b<I^vf:5U]UħЭ9 Xb]"[Y2;!Ae^QHLtipmӮ/_]Byʧ✡YHWĖX7ZN0g\n;n{f9wكErQIR$\c#>P{}WU`zU,Qw# tz3M|dD1Mx2heھs\kg]L;deO6Xش{GpbP^j+B޷Tsq-8`;qÑZT;|KPI!S&syoug &l=�ؒH6iG{ц% ns9Vմ}9FV1_5?`tzjk^!P]x J"lMs c^ޒ ckSA3 ? ՍܘZ#2Ό3hAmcy Ra,WTVT޶Wn+o-?m' #)!ls 4t<K3-;>M;lx`  uaJ3WAYͤ[̵uUm {넮B6Сoztᯭ͑a=aYh"CҴ-C _y۬R*UFH{Bg~ms;[vA b vU{B(**KR^h65O,Mŵy*!;kswoխ\sx39k!sL(˒FtF E%]s3ڡ\ALJ?pKŻ1"M!7BJȟ꾵55M0/ɵ\hkq1z$zϹ JvoG`z.[ #OMQ-ב<x_2׬}`SJ -'7ms %le*{xe\$)PKXc?ֆ\xEnJo(qbOlzj2"ew9 ]Q#+7YTZnseDKZ`B2)~H긳 1 7Șkӧlj eSMbfT>6zcST'OȓcpfvGi 3adb8/#]f]V.旾 BNe]S劑ǧK_Ha9ぼ G(kv.XT)ٚ-N<;Ӗ>:ID2'cbb~Tuqdu=*fL{[ct8&.â%A28|Tqd C kog1yGwI@Ya}WWgqm??3?`c&mk_$s5:*BX0OQ,!٦h#kiQ4MQA@"4r-Js sGx4(t ףt,2qZkBVF܁W1$"� Y04FrVfP"YTͪ4;JP&;%ήꔢ"Q:ұhSD8d{9J'0gt"*<;8?51K%|?1fG|4G|/7f|o~j70Aoe)o>0K2=\ ^>8xPnd LMNw zɩ @}cA~Mx,"ad08Wm2u] ڙq?cM 7m6ؔ9 A?;#cυ1<m|o6"(-RbW66O,hx |[._9[`C__CwM]6g[w!^�<{ny~jfnzl?2otj|jN,x'`s�ov ?3iyo~a_�MmC]C`t~j.0 Sws'jB~4y4wJRZiRE0WyȱG}k䃷t 1AyOShJMhNRG�Yx�vz(�haFK) w$GG5꿌%2VJ^hkgb:Qm'<.~c4'AU܄?FZAeȚ@mzfK[�,N:bf*" biߚ= Y7d @Q/LR~l'i4wnP bZoA6FAW#*\@󨑖I c77)7@ mAvY \;mFH]3k]hPCdnXgHPt3%^*2O|-`#&hQ:$O,^QE8Cm@~cQб^ONvvmvŰ«[C�ѕHMÛq;W8;m.3$$C!7CH0z3JY!caei/;ݨȍvhc2'davln0G0)bVV(> endstream endobj 49 0 obj << /Type /FontDescriptor /FontName /55f1b4+NotoSerif /FontFile2 48 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 50 0 obj << /Length 1278 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }ik/y_!}t~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=n?[i(JKiU:JSz2QeL*EJ̔Ye,*+eU(NU-уk5x5F^ky ^#k5x5F^ky ^#kxZV^kZy-^+kxZV^kZy-^+uxu:N^:y^'uxu:N^:y^'xz^^zy=^/xz^^zy=^/o xo7 Aހ7y o xo7 Aހ7y oxo7jo$JI$$*I$ITH$$QI"IDD%$JI$$*I$ITD$$III$$u>M&Iބ7ɛ&y$o›Mx o7M&Iބ7ɛ&yUoa[5joSor4ۂs�ޮ>,x/x;Â31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x e#e_y+h܊7k:/Z5dUluz5n[eB&Si|y(%q& %+S%*ABijPU6\h,(+L,4G5<cD [˧*t [ jjaijIxʪwgFwضR>sh>:OVRP*#i|e0U,*oU/*[U,Nmlx:&\}M)L2\%CHF7էʻBL)jƻJ1:%H߯:=S۳zrmkO媳7 endstream endobj 51 0 obj [259 333 500 500 500 500 500 500 500 500 500 500 250 500 250 500 500 559 559 559 500 500 500 500 500 500 286 500 500 500 500 500 500 705 500 613 727 500 500 500 792 367 500 500 500 937 500 500 604 500 500 500 612 500 500 1046 500 625 500 359 500 359 500 500 500 562 613 492 613 535 369 538 634 319 500 584 310 944 645 577 613 613 471 451 352 634 500 861 578 564 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 259 500 500 500 500 500 500 500 450 450 500 250 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj 52 0 obj << /Length1 6476 /Length 3620 /Filter [/FlateDecode] >> stream xX}l[u?=>lQ(V]E]}жTHJ}QI'IO$#|ˬ6K1qSLs9 m,h;0,u$,AY~Q\G{=s{WĈh-͑Jёg=7D, jt*S6�uS' Пc59"et.~sw*~/3y5Kx~?�' Bvel?dC{?3٩5ܙ=Sb9L,5\(H]{ry={:j R$ꟸp3ux޽S1ӑn4$/BzsK&iQ%E %vXܦ}_w`yT٧ )vf)<d]yN WxCS.=V1/(--mt>Lbߏ &c#Ï:48z{|wGvtvo{xkCwKSc~ښjgnSF~-֨i۪ t\[AjG_-޲wYx7uws͟4Ȏin~"$l*5@nhpSM~3p2YG}P[ӧ5PS M-mm 9׈iMcatk5dQ4i:*i_h⢋&muq-{"l1U-ܮ +v7ۄաynOL{K>x5%fQHX h<PcIB]]1Gi4 /4#+dƇcM51PwPsmv7D*2bp nX ^b΍8KEL%*8T8B3W,G5ds(.G_sTh.snD,W7[hT@K"k?/4c > fZ'M0;́r'¦r_F,|2}G˙Zr>[T0,U,5 2=~~L!_1D[U7vS' oC ni%ǮfDD Qp-3PP;k9]fsVfps t:yXiV#t�nfUͅH(nfTv}WXsvwhWp TXj+N $&Ut-% ȌX: [,`WL3ּ2fėс;؃6/:`Q,M,O Q1Z 2AȊ).xZDq6/jpil3bu4Ć&z;q.h؂  ~v"|IaJ_7x8+ DXoy$& Zd$i ԢR*44[4 KMIgE~~7,F#i#"?f2�X`ά^V~Lwz*md]~3{e"/zMaAY$z\*Qh@FK!Δn.FX{i-n($nvAX=zꁭL<\j)YMgЮ zVZ]FS_=;6Q/}< *B_ &߲~MŌVvF*`>CRK ^ckḵXv_e+]K }?dM{.ګՖW_aG^~+*z9˶Z.qu^|EϳKyg'ߘyK_/|o)=}4۟U7K-URn`w/N׬ ]_Q@;k]mp^=^WU MGGFC#ˡ+!č Ei~@Wshc׆PC ~ ]R\^z ٟl}ga"6XU{jq5[3gM {<ط#ϟ;G]2�ڼz#aÌF mdT(FAedgf!_=nq:)teIX(Thkmb:C@l3hk"G#ma|G7?_j;KD%qkXj5�O}(#s^{ ?\I~ nos~Ae[Oџc㔥}}{4=Op[%/3itNζQM;MN{_V0ƞ*_�3l Q%-GGi?ѳ$MPE鱿yhC:]ӢE[tYxUzVyFhtlpʳJQC' -1ce}eTiovoQU冪vWVw/yIۧ8쌒T9bPv6[*7NF5ʰ,X`dbv/װ*;QfX\C\K-ts ex b&=V 8U5*7-X˂Uگ>h6jTl&uƂȧVl:KO-Zp =adtv҂C ^|vÂoesDwعgf:y ,놞?;,f9cT&;m=osǞ{wjR)7B>ӱ<;ҕߘdѧDO豴/Vd*S]|Y8^.@3Y({<NL:iOB/x `-u)2N$r )`vp*fRSz煤΃HNϔw7O|jrᐌe  n=`;?:810G{{'A>2F}#g8‡}\O<ןu<Os3)W>-SeV!eX:U$Ȟ<%KʧrHtf H0TS 7IⴋvN͂>C:ASثz@8eHLǨIqHC)()XB* @y ܌: ?ʳI@6ws7 UUtb-{VȦ1$cRqsHLs_%}22"V« `1/Ii`Emq-~U Nd)u,d=uz,Y@wN1m hE}BFD9 2C"X֗0q xF֍X,̢XMRG䬙Uj`ij &Ul3&-A `N( !A폣>H~; .'5%\^!përt{J0y4"•D_ŕ#FU91ΔuB;;&+Je,+1ŭZNuzRfwifOZ-z~0lN\ҷb EW_YwyTs 򗒓RHd endstream endobj 53 0 obj << /Type /FontDescriptor /FontName /d08812+NotoSerif /FontFile2 52 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 54 0 obj << /Length 227 /Filter [/FlateDecode] >> stream x]j >E#&B^rШswt-0||y/NX ni/a%D6Hp֛ݮ&3Ntl1J1AV'f|`8,!.pL=\1VLkp_͊;vgb6> alrec SBhf?K^oS(u1o?{)gi)Brʍj pW endstream endobj 55 0 obj [259 354 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj 56 0 obj << /Length1 8876 /Length 5460 /Filter [/FlateDecode] >> stream x9kxSǕ3^I6H+_l~WlKem2F%["$$pMIM6 t[l6!i\C &ݒ@Se) InR¦ItgFvH+9gΜ#栽E6kYO!}@u Cv#,g{"4ڪP@MAD]J玄 >((O}v,B(Bnơ-A> _? `[z#!Ɔ08pxG츀\@g5(`@: tސj8TSD|╧oQ t'mdҵĘS(sR%X2?>%OReO. qԠ~XKα`)+* 9o^|AL,C3ƶFXϣIRF'/q͊$�]@/1:DLPC[1h%~݄rrè}F0FcL &Uh� ĞDu4AZGt�3a ̇S (2svVjZlM5 -Blhtm֎ m׵4[̦ZcگYjU˖/^TXP7249Rg e0*6 .^,t\TBp K0G]i$qk5hMI1oxI NGLB'/^z s �+xsċśņeyiB7Xk1Uf"[`v{ NIo0t[9Nz*RT֋**~~؁1 v{{Sdݰ6ƚc}bFD0K}.xY,"R[:&REEFc!pG2>)G XAb{,[5Bl4==2CQV%߯tmh37 zCFOM#bj0Q7 $Σnqd,+yqb&NfNL.w 3&r`w{TqMAi3e,?/* !,j$Ȝfh!r̂%m�Xl*J&�n9GѥeM4}buBd>YfID]_b*l"yseJ@d QEh%?Q*Q0gC]cNO{`NA4vB;DhePgEl -69WȆ$'8<C'@ɉ))ѳ�PzQUMTRukx'֣ n0C\›&ӄ*H97MHS7 SR4/+)$MSl@c@ %X撚睂W|hlwHxh`И˹Mæ „ 0=` E)>6͘LL#Y -""%l\g v4ϱQeٶ1 V ']D[]I1fuoèg</l f]u ay Je H�$OKg9JxF2AègI44h\f4@r}c8ͼgw/$5!"E,kG1LSo&z $JBWAel\R|WLc>-sQ;Evc6Y03h?1s<c'd,iO؟K] 05 ̠8V85q8gkK@85X 0%xҀJzSaEyfah יvV1#Kx勵 � A5B0emh,)muhW1k}yoW\_¬7l"okc#X}$󭇏>,n6V?[3AvεL䩸D?ۇ/ue^f9auX gܞ3+v@f`LVnR`kmoۯk6Fs͸15/,{vE= .(v܈Wfjԯ7F,XFm֢1UTw>JzM>7{GFP];[D�F@34uF"h}p("E("S) !(BF]@tD`QdK$!3E[~:ͷM: *N*.LqH"O#$%t>mF>4KG9P/ { ~>SE2ꣲza_ rz �?0I�meJShm(ftC SoO0/ {?@a&{V>Hk? }319Ugğq4GoOT ^"o$ wS0:F,P.SUbVg00Әf:l.q3U"ؖ* Ɇϗ!@'чxs 1ob˾~re qPq,y4dZ>;c'?iqaFUkx5[2ryEyNܰeEѱɞkW, y-K ˫3W s_N(qCm\p;G%)wmyǁ=8PpXo߽ݚW,SJlP-(C ʹeߟ>.c߉s;~~eݏP7`w-tZ!q8q"E`kUe6PKp λ<-NRN8b)zL8Ď㥷x‡_a,~ TtS 'UBrxA Ae`.[/*.N3aIfIUk_w57 33g=zyHr{?;CJWXCy ` 9&#Mw_|O-MIgO<D7>OꩢI.A}`+x%ZˡN++Xf=TǢtlIyK)qՇq 2S�n _XES]AArPTB>Cpm53>x f{7XPjS_앻{//UҩImF5w=]˼, .=AVEp&?UȗRU�WE٠rϨ.njLԇ/Jҡ;tQ_ؖrH=:)N_r˾R:(g^zo&2wN`4gq:~!d[1pd }p+|T2='84*ݜ-tYWV9¾ >%q%W) V9{JOEfr<+O; S|&UX+w*BUCK�*RQ5˫ ,]98Kg ^R"IoigV N#Ċ4>xpd^Qڊ `psnuCEjV/\i# ~ƹb}|cd\w7IކL2\<u ;PFWD״8?ϴYu]m=Pm۶tj'Y 64d9HmJRͨҢ 5 ,*94@fG~V-[>3ZvUx-NkoTk\TpN["hravi)^뇤߉`W n$aBW{WwٚhѳCҟZ!=dc`bb SF;ͬ*}Xͨݻ}5| _<:jX> Hgi۔yoHǥkڞ:׸_&]/uԧ7|)pSC<2s�\bױbzZqt11)6.թo|ȫ}6 )$ i%gLl7($]UJ1-+aso|g7S%>ݳ* {֙GX :#P(S:S.ϬPUd2>!{[给uU}<su_]iy Ƕ %Ap]Ln&̊QT_A}K<?Hi{oI UЮ=G\ ;|%k[=jܷa;{]b\\]-$ڌ Y r8}8%m/Je N;tќ'ǥ}U 7sHR*Ϥߓۻ=**f_ߝݓ?V1J, 3HV0nM@=2@(*J^Vi @՞YV R <Jt�O02<c!UN20م2̢&v s() a2rRЗٛ2< -xNE&NCke8ޕw dxT=W }(_tY9 {yK;TF^Oik0ްu{PV >'y>Gpx0/+]Z]jiw,%S#;|'j4O#_y&w(/ӽ{d$\FCvQG2`MSx}6 Dyk7o :oղo yIuIbV`Ga x;Zy5ZFn7vtԶ,f+׷,6K[+` |mk'bi5^?;Cao$ü 'z_l+Lz y{t!ox!@uG) Ha~$AZsu"?Fp_Y[:T!xC #?9`_-EˠQ#ޏYP�΀Rjcż0zAv= xdt?[~gH> @]~D#SVnhQt^jKyxm/DcFH憵&9x HL%lEgeh-J 2YrۯwDGiHd D;dּCHQ^+DvmTk`u$v5FbQZe`UT/)M|!Vw+<8&#kat@ 6?ۀj+,N5]؊:alCd{dt JPԏOT5U\yQpZN"tM݃M \4pkv606HmmJ#3C,& 3#I{J܀֋nh.?eͧ-BK`ed ! m ۡ*7"'S)I$_H endstream endobj 57 0 obj << /Type /FontDescriptor /FontName /b2950b+NotoSerif-Italic /FontFile2 56 0 R /FontBBox [-254 -250 1238 1047] /Flags 70 /StemV 0 /ItalicAngle -12 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 58 0 obj << /Length 1278 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }ik/y_!}t~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=n?[i(JKiU:JSz2QeL*EJ̔Ye,*+eU(NU-уk5x5F^ky ^#k5x5F^ky ^#kxZV^kZy-^+kxZV^kZy-^+uxu:N^:y^'uxu:N^:y^'xz^^zy=^/xz^^zy=^/o xo7 Aހ7y o xo7 Aހ7y oxo7jo$JI$$*I$ITH$$QI"IDD%$JI$$*I$ITD$$III$$u>M&Iބ7ɛ&y$o›Mx o7M&Iބ7ɛ&yUoa[5joSor4ۂs�ޮ>,x/x;Â31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x e#e_y+h܊7k:/Z5dUluz5n[eB&Si|y(%q& %+S%*ABijPU6\h,(+L,4G5<cD [˧*t [ jjaijIxʪwgFwضR>sh>:OVRP*#i|e0U,*oU/*[U,Nmlx:&\}M)L2\%CHF7էʻBL)jƻJ1:%H߯:=S۳zrmkO媳7 endstream endobj 59 0 obj [259 600 600 600 600 600 600 600 600 600 600 600 600 600 250 600 600 559 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 626 725 600 589 600 600 600 600 600 623 600 600 600 620 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 579 562 486 579 493 600 556 600 304 600 600 600 895 599 574 600 600 467 463 368 599 600 818 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600] endobj 60 0 obj << /Length1 4592 /Length 2994 /Filter [/FlateDecode] >> stream xX lSϵ" B 87 ΍8<BLC:Cul'v֎FUMc됦BL+֭PWU u[Wm}ikܛU9?{O��hFk3�F@ԟ4c�B=TX3&ʋђgдNhŸJ!n<b?Vp}ef##7 !v kkG>ES_g*י~ A.Щ ?Ap}4$3dk2w%=ڟXΞ^] jXp-WwՐ5E,~@֖}F8+!sqm0 - %"!3?:4!@()-7P @ft. #Z R2F6ڰ`֪6'ʫfULSelWyJd6$(GiXe/jU�`Q!:+ ZR++CXZ]e &ʝWAT)6x78n}S&JLL\`"fYcTR5>51Sh>yg D|\!^xt,Uc5Ȁ0ys5ձ7F\`w3'D*kj{E*kdpy32bh2|Vf"%RC M2OD弆Q/[EzipL`z35;1bY=mRi4 z1!56#W+1\^(7 fz3(&l0˥l0nKe$a蟼Li |/(fd^D t.|{<e+ab"va;x] %84 / -UauΌy2wLSwyrwVC.ōw#qķ6z|}o|*hǧ�7<#RIڈIcr|(zON x #jul:H nQ{ +iļ[ūEpuvGa&҄oVRlY({fI`&V[5ǚGA. //".,W}D}33;Q�~_!jlyp5&1֑#|`>8أc+˵IhwN cy\}Yg&2sSrV(êWu-HKsXbYTչ%6k+9u'ƚunwx8mcscjeU} %<V!Rkm!("jFܥ-6F5kn:54h.!1q4[Wux ZE0 5y6}@eS`pO-yw.#sx>V7'vg?p%ZxH Vr~N4><\]\joA- @Z⪒-c鰐?9Ԏ+תVh2ﵷ O+W\< �F_ĜY<_9Vܨgk]}6rrA4?U\e{6:{qqelAT=v:c$ѠgźeuIinu]i\WR p)9d e;|Te?rcd:vA;)W=ڪfﺝ#Ppd~. oT9a?^/_} ߣ'E٤:)ۊ PxęwmmM]?Љ#UJ*RCrB)*9spPֹ2O[=\gZP]uk}v|`{A7={}}]q!"pr|~FނZ9JX=.FIK{H8Xi MKL)H=pəl3y Y72ؽ,V\\%?)ϩS#S~9E˗\%[VuZ[JkۨZԹ]s>ҹB*]7C*] aFK!o <CdɴJ("TZW*Aߨ*Q YؤŸ)."k}SmJ3?4;8L*5xu {=зۃh'XON"T"a^%Sx6Y$4nkmn&S(4'p:XqDNY`2#)8PdBbSh$ D(THcTDcAt:D#iIi<tFx$O#Ju4J"L9̲POO /ѻyfZ9j:N(eQnCB_4n�k$huHm0�A]x>؂UQ|qSN4L1CL6&D~YT8VYg"$!ƹEDzǞ\iD0fWHv ,0 .Ѕy}xS(G~Q-) jFD^_FM4J).&*01 MC4cZ9FUykR#Ʊ3FlCn[2Q|,?f6#Ǹijxz#T+d6^ٌjTjbXSw{C?ytVG鋹{>n& CGiiBI%/'=Z+b{ҞGOK!wD"7CHt߷IzҸtT"s|r1~]}�KP;b"Ɓw3m(v"fit!|}N0 sc6}"`nK ¯F`'!yӱ$uJWgn=) endstream endobj 61 0 obj << /Type /FontDescriptor /FontName /1f6b74+mplus1mn-regular /FontFile2 60 0 R /FontBBox [0 -270 1000 1025] /Flags 4 /StemV 0 /ItalicAngle 0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 62 0 obj << /Length 1278 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }ik/y_!}t~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=n?[i(JKiU:JSz2QeL*EJ̔Ye,*+eU(NU-уk5x5F^ky ^#k5x5F^ky ^#kxZV^kZy-^+kxZV^kZy-^+uxu:N^:y^'uxu:N^:y^'xz^^zy=^/xz^^zy=^/o xo7 Aހ7y o xo7 Aހ7y oxo7jo$JI$$*I$ITH$$QI"IDD%$JI$$*I$ITD$$III$$u>M&Iބ7ɛ&y$o›Mx o7M&Iބ7ɛ&yUoa[5joSor4ۂs�ޮ>,x/x;Â31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x e#e_y+h܊7k:/Z5dUluz5n[eB&Si|y(%q& %+S%*ABijPU6\h,(+L,4G5<cD [˧*t [ jjaijIxʪwgFwضR>sh>:OVRP*#i|e0U,*oU/*[U,Nmlx:&\}M)L2\%CHF7էʻBL)jƻJ1:%H߯:=S۳zrmkO媳7 endstream endobj 63 0 obj [500 500 364 364 364 364 364 500 364 364 364 364 500 364 500 364 364 364 364 364 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 500 364 364 500 500 500 364 364 500 364 364 500 500 500 500 500 500 500 364 500 500 364 500 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj 64 0 obj << /Length1 4092 /Length 2686 /Filter [/FlateDecode] >> stream xW{l[M$e'N =m4Ə<Z4I<jcNGmmJ:XkML۪nbleL[6?&@hL:4u! cwoCױwo{{su�@9<X{O�$@ԟiP$i*l)(xKPGSuD^ZY[y96 6, GjBh헅|ޕx_\^TQ6EG =hFQ @1+x:OI9|ԊG WTJA аkBfwda}U8͇kpp$$H5#! 4epx(7EB  ÞVJ(ɛ_O\ +Y# ɉɂdC#zOR.Wd)[qk_t7y@SeGm%,qY9P@ը2U܇} w*VWRe(L)E0zhQ̑ZNxJϢYQ4fxg@?u_}Ѩz>n\6?gQ4&r S|q+Wn̕:i(fz/K[J޶*n&9㧌`4 .yrKx[:AkD3}Sj6uKnqȿL4`~e,3;334#t"Wzc WfƔL;^5 F6#w0U5HSB| 64"fDɈ~ aEѲPuX [D͝*36;(f :1\A~2zY W<eWW\~.Dz9D(ENڬ d 9Jф"!_]bwCF{9k{}`|k`0\ga o"$ 89G$/|14"Ç3:Hy9%\Qxnc*Saow9D45/3c#)r gO³vbsM9ECAjNSmCޣ1ᔻ(bG )Oq)a g!NM\^%4zLilŃk그|9m&*TNξ@t۶Gvg:1golոUhMHiEg{{]ĝ;pB} 6{NjrbÛ\^6ڰinu߷nedi&<{쉚7{rs!o.-븝%aA5m+ 5<:+ 웗HKg0U'L ux:0�lrwtzMޡ֜ Ƿۮ_h {:ޞ5Y'71`ӳ/"jbZ'rw~c掻:dPVo.:z}yv5T}Y9ܛ1{򱩕yŽ=O,;+dԨ;M٫#˲E<}IRkӏ9/X զ*ܬj*N^[nO^=~E'.G5yͶV[׾ݡP|<Yb_<)|1X$9\:C[>9A(ֶe>ޤ8V.<ۺK <ySlVd+ n| z1fσ`V|(/_ *=S |G_�<RrI("Ϩ|xȳ*5B@`Up n/#?Np^7'֒P8NR['_PCcSt35r[4_ cx2$SU]4gQ9YlwXX̬LE1fEgp)F+),G8Ntl\gY)k<YH2 ekRi*>OV:[D#i9Hr2I$JcLՔlL FRddq5-HLDaO5x0 d2j$FGr2񯬬1X<vJG�5Ml{Gg>olg]A"0qpPmЉhLA ? ;V6k ؚDd#ZBf.UƘ"p"ݨ?#n$06m<G;Fy7i lxF[ )\RKwAA rs>RhYBtV͠ zFҼh(Z-~Md|V)ރ}a<c>Aj}Ӽy\968d3s%�bՊX<{D>+xm xbӘa;Ʈ9( @ MEŏL܇12X))&Awy)ܻҿ֋j^,5KIK祐_:-= =(wXQ:7P;'t`f(=iٳ}c$'yPzruLy B=CLC2=h!ʀt@ZP=j~_th �n73gp^˽t`C endstream endobj 65 0 obj << /Type /FontDescriptor /FontName /b4db40+mplus1mn-bold /FontFile2 64 0 R /FontBBox [0 -275 1000 1042] /Flags 4 /StemV 0 /ItalicAngle 0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 66 0 obj << /Length 1278 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }ik/y_!}t~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=n?[i(JKiU:JSz2QeL*EJ̔Ye,*+eU(NU-уk5x5F^ky ^#k5x5F^ky ^#kxZV^kZy-^+kxZV^kZy-^+uxu:N^:y^'uxu:N^:y^'xz^^zy=^/xz^^zy=^/o xo7 Aހ7y o xo7 Aހ7y oxo7jo$JI$$*I$ITH$$QI"IDD%$JI$$*I$ITD$$III$$u>M&Iބ7ɛ&y$o›Mx o7M&Iބ7ɛ&yUoa[5joSor4ۂs�ޮ>,x/x;Â31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x e#e_y+h܊7k:/Z5dUluz5n[eB&Si|y(%q& %+S%*ABijPU6\h,(+L,4G5<cD [˧*t [ jjaijIxʪwgFwضR>sh>:OVRP*#i|e0U,*oU/*[U,Nmlx:&\}M)L2\%CHF7էʻBL)jƻJ1:%H߯:=S۳zrmkO媳7 endstream endobj 67 0 obj [500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 500 500 500 364 500 364 364 364 364 364 500 500 500 364 364 500 364 500 500 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj xref 0 68 0000000000 65535 f 0000000015 00000 n 0000000147 00000 n 0000000349 00000 n 0000000406 00000 n 0000000457 00000 n 0000000729 00000 n 0000010948 00000 n 0000011426 00000 n 0000011595 00000 n 0000011637 00000 n 0000011686 00000 n 0000011893 00000 n 0000012058 00000 n 0000012224 00000 n 0000012269 00000 n 0000012321 00000 n 0000012454 00000 n 0000012505 00000 n 0000012638 00000 n 0000012803 00000 n 0000012848 00000 n 0000013020 00000 n 0000013192 00000 n 0000013361 00000 n 0000013406 00000 n 0000013454 00000 n 0000013581 00000 n 0000013629 00000 n 0000013756 00000 n 0000013880 00000 n 0000014006 00000 n 0000014122 00000 n 0000014240 00000 n 0000014363 00000 n 0000014487 00000 n 0000014561 00000 n 0000014723 00000 n 0000014910 00000 n 0000015079 00000 n 0000015216 00000 n 0000015364 00000 n 0000015409 00000 n 0000015679 00000 n 0000015949 00000 n 0000021709 00000 n 0000021926 00000 n 0000023280 00000 n 0000024194 00000 n 0000032408 00000 n 0000032620 00000 n 0000033974 00000 n 0000034889 00000 n 0000038599 00000 n 0000038811 00000 n 0000039113 00000 n 0000040027 00000 n 0000045577 00000 n 0000045799 00000 n 0000047153 00000 n 0000048067 00000 n 0000051151 00000 n 0000051362 00000 n 0000052716 00000 n 0000053630 00000 n 0000056406 00000 n 0000056614 00000 n 0000057968 00000 n trailer << /Size 68 /Root 2 0 R /Info 1 0 R >> startxref 58882 %%EOF �����������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/examples/chronicles-dark-theme.yml���������������������������������������0000664�0000000�0000000�00000002603�14163570564�0024276�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# invoke with -a pdf-theme=chronicles-dark -a rouge-style=molokai extends: chronicles page: background-color: 000000 base: font-color: CCCCCC border-color: 111111 link: font-color: BD7435 literal: font-color: 4EDEB9 mark: background-color: 0000FF key: background-color: 0A0A0A border-color: 333333 heading: font-color: $base-font-color title_page: title: font-color: 666666 authors: font-color: E7E7E7 abstract: font-color: A39D99 admonition: column-rule-color: $base-border-color icon: caution: stroke-color: 40CBFF note: stroke-color: E6BF83 tip: stroke-color: EEEEEE warning: stroke-color: 4096FF blockquote: border-color: $base-border-color cite: font-color: 666666 verse: border-color: $blockquote-border-color cite: font-color: $blockquote-cite-font-color code: font-color: $base-font-color background-color: 0A0A0A border-color: 333333 conum: font-color: $literal-font-color example: background-color: $page-background-color border-color: $base-border-color sidebar: background-color: 111111 border-color: 1A1A1A title: font-color: $heading-font-color thematic-break: border-color: $base-border-color table: background-color: $page-background-color border-color: 222222 foot: background-color: $table-background-color header: font-color: 666666 footer: border-color: 222222 �����������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/examples/chronicles-example.adoc�����������������������������������������0000664�0000000�0000000�00000031504�14163570564�0024017�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������= The Dangerous & _Thrilling_ Documentation Chronicles: Based on True Events Kismet Caméléon; Lazarus het_Draeke v1.0, 2014-01-01 :description: This story chronicles the inexplicable hazards and vicious beasts a \ team must conquer and vanquish on their journey to discovering the true power of \ Open Source. :organization: Company Name :doctype: book // Settings: :experimental: :reproducible: :icons: font :listing-caption: Listing :sectnums: :toc: :toclevels: 3 ifdef::backend-pdf[] :pdf-theme: chronicles :pdf-themesdir: {docdir} :title-logo-image: image:sample-banner.svg[pdfwidth=4.25in,align=center] :source-highlighter: rouge //:rouge-style: github endif::[] // URIs: :uri-devoxx: https://devoxx.be :uri-devoxx-top-talks: https://www.youtube.com/watch?v=1OpAgZvYXLQ&list=PLRsbF2sD7JVq7fv1GZGORShSUIae1ZAPy&index=1 :uri-stbernardusabt12: http://www.sintbernardus.be/stbernardusabt12.php?l=en :uri-wolpertinger: http://en.wikipedia.org/wiki/Wolpertinger [abstract] {description} == It's a City Under Siege This journey begins one late Monday afternoon at {uri-devoxx}[((Devoxx))]. Our team needs coffee, _desperately_, but none of us dare open the theater doors... During the {uri-devoxx-top-talks}[opening university session], a script-happy warlock inadvertently released a legion of Wolpertingers! To leave now would mean *code dismemberment and certain death*. Behold -> the horror! .Wolpertinger, stuffed [.left.thumb] image::wolpertinger.jpg[Wolpertinger,pdfwidth=50%,link={uri-wolpertinger}] (((Wolpertinger))) (((Ravenous Beast,Wolpertinger))) You may not be familiar with these {uri-wolpertinger}[ravenous beasts]. Trust us, they'll eat your shorts and suck loops from your code. In light of this danger, we've searched high and wide for the security crew's defensive operations manual. We can't find it and the DefOps{empty}footnote:defops[DefOps is a portmanteau of "`defensive`" and "`operations`".] werewolves haven't returned from their rendezvous at Bier Central. They've either eaten each other or fallen victim to the Wolpertingers roaming the streets of ((Antwerp)). Quick, hit kbd:[Ctrl,Alt,Backspace] or select menu:File[Quit] and let's bail out of here! WARNING: Working with DefOps{empty}footnote:defops[] werewolves leads to howling and trying to train aggressive regular expressions with Pavlovian reinforcement. _Weak light from the hallway trickled across the theater, chased by a distant scream._ === Rendezvous Point Come on, [[bier-central,Bier Central]]_Bier Central_, of course! Did you have to ask? If you beat me there, order me a {uri-stbernardusabt12}[St. Bernardus Abt 12]. Here's some €. [#ravages] == The Ravages of Writing Crystalline XML tags relentlessly bombarded the theater. .XML tags [source,xml] ---- <author id="1"> <personname> <firstname>Lazarus</firstname> <surname>het Draeke</surname> </personname> </author> ---- Despite the assault, we continued our pursuit to draft a DefOps{empty}footnote:defops[] plan. .DefOps Plan ==== Click btn:[Download Zip] to download the defensive operation plan bundle. OMG! Somebody please save us now! I want my mum -- and an extra-large double macchiato, please. ==== Unfortunaly, Lazarus and I had both come to the conclusion that we weren't going to get out of this without corrupted hardrives if we didn't locate caffeine within the next few hours. === A Recipe for Potion That Will Ensure You Win the Hearts of Developers This potion for a sample document contains the following ingredients, which are listed in a very random, chaotically nested order. .Ingredients for Potion that Demystifies Documents * all the headings ** syntax highlighted source code *** non-syntax highlighted source code or just a listing block * quote block ** verse block *** table with some cell formatting **** sequential paragraphs ***** admonition blocks, but use them sparingly *** bullet list with nesting ** numbered list with nesting ** definition list *** sidebar * example block ** block image (no inline images) *** inline formatting in a paragraph **** two fresh Burdockian leaves ***** They must be harvested by the light of the teal moons. Are you square? [square] * one * two * three What is there to do? * [x] Done * [ ] Next * Who's counting? ==== Searching for Burdockian .Steps for finding and preparing Burdockian leaves . Locate dusty botany .. Sneeze ... Sneeze some more . Find section on Burdockian .. Review its characteristics ... Take a picture of the diagram of its leaves .... Don't rip out the picture like a troglodyte ..... Don't do it, I'm watching you . Put on your hiking boots . Freeze your butt off on the side of a mountain at midnight Let's skip a few steps and start counting from 10. [start=10] . arabic (10) .. loweralpha (a) ... lowerroman (i) ... lowerroman (ii) ... lowerroman (iii) ... lowerroman (iv) .... upperalpha (A) . arabic (11) It's time for a top 5 list, made using the `reversed` option on an ordered list! [%reversed] . Stone Imperial Russian Stout . Pliny the Elder . Chimay Grande Réserve (Blue) . St. Bernardus Abt 12 . Westvleteren 12 (XII) How about a list with some terms? * Fruits Apple:: The round fruit of a tree of the rose family, which typically has thin red or green skin and crisp flesh. Yes, I said _flesh_. Pear:: A yellowish- or brownish-green edible fruit that is typically narrow at the stalk and wider toward the base, with sweet, slightly gritty flesh. More flesh. Mmmmm. * Vegetables Carrot:: An orange-colored root eaten as a vegetable. Beware, it's a favorite of the Wolpertinger. ===== Are You Still Here? .Move, move, move! [CAUTION] ==== The Wolpertingers can smell your procrastination. It's not their fault you can't find your boots. ==== ====== Sigh... TIP: Your boots are in your closet. == Dawn on the Plateau Lazarus was hanging from the bottom limb of a Burdockian tree, licking the bark. [quote,Mark Tobey] On pavements and the bark of trees I have found whole worlds. "`If there are whole worlds on that bark, he just swallowed them,`" Kizmet replied. [verse,The documentation attorneys] ____ No bark was harmed in the making of this potion. We're not so sure about a couple ants though. Nor those worlds... Crap, I smell an injunction. ____ We'd retrieved the leaves, but we'd obviously lost our minds in the process. [verse] Roses are +++<span style="color: #FF0000">red</span>+++. Violets are +++<span style="color: #0000FF">blue</span>+++__-ish__. == Words Seasoned with Power To _tame_ the [.wild]#wild# wolpertingers, we needed to build a *charm*. But **ul**timate victory could only be won if we divined the *_true name_* of the __war__lock. "`What kind of charm?`" Lazarus asked. "`An odoriferous one or a mineral one?`" Kizmet shrugged. "`The note from Olaf's desk says '`wormwood and licorice,`' but these could be normal groceries for werewolves.`" "`Well the H~2~O written on the security whiteboard could be part of a shopping list, but I don't think the local bodega also sells e = mc^2^,`" Lazarus replied. "`Wait!`" Indigo plucked a small vial from her desk's top drawer and held it toward us. The vial's label read '```e = mc^2^ *_the scent of science_* _smells like a genius_```'. === Can I Get Some `Code`? [%hardbreaks] Sure. Have a listing block. ---- This is an example of a listing block. The content inside is rendered as <pre> text. ---- But I'm not giving you any highlighting shazam just yet. .What is a listing block? **** Like literal blocks, the content in listing blocks is displayed exactly as you entered it. Listing block content is rendered as `<pre>` text. The `listing` style is applied to an element, such as a paragraph, by setting the `listing` attribute on that element. **** Let's get our #((highlighting))# on! <<< Install Prawn: $ gem install prawn Then create your first PDF document in Ruby! .Generates a basic PDF document using Prawn [source,ruby] ---- require 'prawn' # <1> Prawn::Document.generate 'output.pdf' do # <3> text 'Hello, World!' # <2> end ---- <1> Imports Prawn library <2> Adds text “Hello, World!” to first page <3> Writes PDF to [file]_output.pdf_ after executing all statements How about some source code that styles code? So meta! [source,css] ---- code { padding: 2px 4px; font-size: 90%; font-weight: normal; color: #c7254e; white-space: nowrap !important; background-color: #f9f2f4; border-radius: 4px; } ---- Where could we go without some Java(TM)? Naturally, some autosizing is necessary. [source%autofit,java] ---- package org.javaee7.cdi.events; import javax.annotation.PostConstruct; import javax.enterprise.context.SessionScoped; import javax.enterprise.event.Observes; import java.io.Serializable; import java.util.ArrayList; import java.util.Collections; import java.util.List; import javax.ws.rs.*; /** * This session-scoped bean receives greeting strings from the event bus * and provides access to the collection of these greetings via a REST API. * * @author The Duke * @since 1.0 */ @SessionScoped public class GreetingReceiver implements EventReceiver, Serializable { private List<String> greetings; @PostConstruct void init() { this.greetings = new ArrayList<String>(); } void receive(@Observes String greet) { this.greetings.add(greet); } @GET @Produces("application/json") public List<String> listAll(@QueryParam("start") Integer start, @QueryParam("max") Integer max) { int numGreetings = this.greetings.size(); if (numGreetings == 0 || max == 0) { return Collections.<String>emptyList(); } if (start == null) { start = 0; } if (max == null) { max = numGreetings; } return this.greetings.subList(start, Math.min(max + start, numGreetings)); } } ---- We already showed you an XML example in <<ravages>>, a language we often rant about over beers at <<bier-central>>. I'll trade you a little table for some of that bark. [cols=4,frame=topbot,grid=rows] |=== |Column 1 |Column 2 |Column 3 |Column 4 ^m|Prefix `{vbar}` with `{caret}` to center content horizontally within the cell. .>|Prefix `{vbar}` with a `.` and `>` to align content to the bottom of the cell. ^.^|Prefix `{vbar}` with a `^`, `.`, and `^` to place content in the middle of the cell. >|Prefix `{vbar}` with `>` to align content to the right horizontally within the cell. 4+^e|This content spans all four columns (`4{plus}`) and is centered horizontally (`{caret}`) within the cell. |=== Wait. What? Where is this story going? `<span>`:: an html tag that makes me crazy align:: something I never get going in the right direction. Also has to do with my poor verbal communication skills float:: style:: don't make me laugh Does anyone have the time? Tg lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborumj. == Keeping It Together On this page we have nested "`keep together`" logic. The combined block will be shifted to the next page if there isn't room available on this one. [verse] First, we need to waste several lines using a verse to push the next block to its breaking point. [NOTE] .What happens if there is both a field and a method with the same name? ==== Back to the previous example, suppose that we have both a field and a method with the same name, as in: .Java class with a field and method that share the same name [source,java] ---- public class Foo { public String bar; public String bar() { return bar; } } ---- *Golo resolves methods first, fields last.* Hence, the following Golo code will resolve the `bar()` method, not the `bar` field: .Golo picks the method over the field with the same name [source,golo] ---- let foo = Foo() foo: bar("baz") # <1> println(foo: bar()) # <2> ---- <1> Writes the field <2> Calls the `bar()` method ==== <<< Here's a preview of how each heading level is rendered. [discrete] = Heading 1 (Level 0) filler content [discrete] == Heading 2 (Level 1) filler content [discrete] === Heading 3 (Level 2) filler content [discrete] ==== Heading 4 (Level 3) filler content [discrete] ===== Heading 5 (Level 4) filler content [discrete] ====== Heading 6 (Level 5) filler content --- -- Here's some content inside an open block. -- [appendix] == Credits .Brought to you with icon:heart[set=fas,role=love] by OpenDevise [%header%footer,cols="2,2s,^4",grid=rows,frame=topbot,width=75%,caption=] |=== |Name |Title |Alias |Sarah White |President |http://twitter.com/carbonfray[@carbonfray] |Dan Allen |Vice President |http://twitter.com/mojavelinux[@mojavelinux] 3+^.e|Powered by Open Source |=== [index] == Index ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/examples/chronicles-example.pdf������������������������������������������0000664�0000000�0000000�00001201303�14163570564�0023657�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (The Dangerous & Thrilling Documentation Chronicles: Based on True Events) /Author <feff004b00690073006d00650074002000430061006d00e9006c00e9006f006e002c0020004c0061007a0061007200750073002000680065007400200044007200610065006b0065> /Creator (Asciidoctor PDF, based on Prawn) /Producer <feff004b00690073006d00650074002000430061006d00e9006c00e9006f006e002c0020004c0061007a0061007200750073002000680065007400200044007200610065006b0065> >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 17 0 R /Outlines 130 0 R /PageLabels 144 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 17 /Kids [7 0 R 13 0 R 15 0 R 20 0 R 45 0 R 52 0 R 55 0 R 60 0 R 63 0 R 70 0 R 73 0 R 77 0 R 79 0 R 82 0 R 84 0 R 94 0 R 99 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 22736 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN q 144.64 603.985 m 450.64 603.985 l 450.64 730.125 l 144.64 730.125 l h W n 0.0 0.0 0.0 scn 0.34 0.0 0.0 0.34 95.4624 481.8825 cm 1.0 0.0 0.0 1.0 0.0 0.0 cm q q 1.0 0.0 0.0 1.0 0.0 681.36218 cm q q 0.9176 0.2824 0.1843 scn q 2 j 543.0782 -158.8156 m 549.3302 -160.3947 l 548.0196 -165.5294 545.6563 -169.4503 542.2403 -172.1574 c 538.8458 -174.8429 534.6886 -176.1857 529.7687 -176.1857 c 524.6768 -176.1857 520.5304 -175.1544 517.3292 -173.0919 c 514.1495 -171.0079 511.7218 -168.0001 510.046 -164.0685 c 508.3917 -160.1369 507.5646 -155.9152 507.5646 -151.4034 c 507.5646 -146.4836 508.4991 -142.1974 510.3683 -138.545 c 512.2589 -134.8713 514.9337 -132.089 518.3927 -130.1984 c 521.8731 -128.2863 525.6973 -127.3303 529.8653 -127.3302 c 534.5919 -127.3303 538.5665 -128.5334 541.7892 -130.9396 c 545.0118 -133.3459 547.2569 -136.7297 548.5245 -141.0909 c 542.3693 -142.5411 l 541.2735 -139.1037 539.6837 -136.6008 537.5997 -135.0324 c 535.5157 -133.464 532.8946 -132.6799 529.7364 -132.6798 c 526.1056 -132.6799 523.0655 -133.55 520.6163 -135.2902 c 518.1886 -137.0304 516.4806 -139.3722 515.4923 -142.3156 c 514.504 -145.2375 514.0099 -148.256 514.0099 -151.3712 c 514.0099 -155.3888 514.5899 -158.9015 515.7501 -161.9093 c 516.9317 -164.8956 518.7579 -167.13 521.2286 -168.6124 c 523.6993 -170.0949 526.3741 -170.8361 529.253 -170.8361 c 532.755 -170.8361 535.7198 -169.8263 538.1476 -167.8068 c 540.5753 -165.7872 542.2188 -162.7902 543.0782 -158.8156 c f Q q 2 j 555.1632 -152.3702 m 555.1632 -144.5285 557.2687 -138.3947 561.4796 -133.9689 c 565.6905 -129.5216 571.1261 -127.298 577.7862 -127.298 c 582.1475 -127.298 586.0792 -128.34 589.5812 -130.424 c 593.0831 -132.508 595.7471 -135.4191 597.5734 -139.1573 c 599.421 -142.8742 600.3448 -147.0958 600.3448 -151.8224 c 600.3448 -156.6134 599.378 -160.8995 597.4444 -164.6808 c 595.5108 -168.462 592.7715 -171.3302 589.2267 -173.2853 c 585.6817 -175.2189 581.8575 -176.1857 577.754 -176.1857 c 573.3067 -176.1857 569.3321 -175.1115 565.8302 -172.963 c 562.3282 -170.8146 559.6749 -167.882 557.8702 -164.1652 c 556.0655 -160.4484 555.1632 -156.5167 555.1632 -152.3702 c 561.6085 -152.4669 m 561.6085 -158.1603 563.1339 -162.6505 566.1847 -165.9376 c 569.2569 -169.2033 573.1026 -170.8361 577.7218 -170.8361 c 582.4268 -170.8361 586.294 -169.1818 589.3234 -165.8732 c 592.3741 -162.5646 593.8995 -157.8703 593.8995 -151.7902 c 593.8995 -147.9445 593.2442 -144.5929 591.9337 -141.7355 c 590.6446 -138.8566 588.7432 -136.633 586.2296 -135.0646 c 583.7374 -133.4748 580.9337 -132.6799 577.8185 -132.6798 c 573.3927 -132.6799 569.5792 -134.2053 566.378 -137.256 c 563.1983 -140.2853 561.6085 -145.3556 561.6085 -152.4669 c f Q q 2 j 608.1759 -175.38 m 608.1759 -128.1359 l 617.586 -128.1359 l 628.7687 -161.587 l 629.7999 -164.7023 630.5518 -167.0333 631.0245 -168.5802 c 631.5616 -166.8615 632.3995 -164.337 633.5382 -161.007 c 644.8497 -128.1359 l 653.2608 -128.1359 l 653.2608 -175.38 l 647.2345 -175.38 l 647.2345 -135.838 l 633.506 -175.38 l 627.8663 -175.38 l 614.2023 -135.1612 l 614.2023 -175.38 l 608.1759 -175.38 l f Q q 2 j 663.4122 -175.38 m 663.4122 -128.1359 l 681.2335 -128.1359 l 684.3702 -128.1359 686.7657 -128.2863 688.42 -128.587 c 690.7403 -128.9738 692.6846 -129.715 694.253 -130.8107 c 695.8214 -131.8849 697.0782 -133.3996 698.0235 -135.3546 c 698.9903 -137.3097 699.4737 -139.4582 699.4737 -141.7999 c 699.4737 -145.8175 698.1954 -149.2228 695.6388 -152.0158 c 693.0821 -154.7872 688.463 -156.173 681.7814 -156.173 c 669.6642 -156.173 l 669.6642 -175.38 l 663.4122 -175.38 l 669.6642 -150.5978 m 681.878 -150.5978 l 685.9171 -150.5978 688.7852 -149.8459 690.4825 -148.3419 c 692.1798 -146.838 693.0284 -144.7218 693.0284 -141.9933 c 693.0284 -140.0168 692.5235 -138.3302 691.5138 -136.9337 c 690.5255 -135.5158 689.2149 -134.5812 687.5821 -134.13 c 686.5294 -133.8508 684.585 -133.7111 681.7491 -133.7111 c 669.6642 -133.7111 l 669.6642 -150.5978 l f Q q 2 j 697.4112 -175.38 m 715.5548 -128.1359 l 722.2902 -128.1359 l 741.6261 -175.38 l 734.504 -175.38 l 728.9933 -161.0714 l 709.2384 -161.0714 l 704.0499 -175.38 l 697.4112 -175.38 l 711.0431 -155.9796 m 727.0597 -155.9796 l 722.129 -142.8956 l 720.6251 -138.9211 719.5079 -135.6554 718.7775 -133.0988 c 718.1759 -136.1281 717.3272 -139.1359 716.2316 -142.1222 c 711.0431 -155.9796 l f Q q 2 j 746.6212 -175.38 m 746.6212 -128.1359 l 753.0343 -128.1359 l 777.8487 -165.2286 l 777.8487 -128.1359 l 783.8429 -128.1359 l 783.8429 -175.38 l 777.4298 -175.38 l 752.6153 -138.255 l 752.6153 -175.38 l 746.6212 -175.38 l f Q q 2 j 807.6905 -175.38 m 807.6905 -155.3673 l 789.4825 -128.1359 l 797.088 -128.1359 l 806.4015 -142.38 l 808.1202 -145.0441 809.7208 -147.7082 811.2032 -150.3722 c 812.6212 -147.9015 814.3399 -145.1193 816.3595 -142.0255 c 825.5118 -128.1359 l 832.795 -128.1359 l 813.9425 -155.3673 l 813.9425 -175.38 l 807.6905 -175.38 l f Q Q q q 2 j 856.7071 -175.38 m 856.7071 -128.1359 l 863.1202 -128.1359 l 887.9347 -165.2286 l 887.9347 -128.1359 l 893.9288 -128.1359 l 893.9288 -175.38 l 887.5157 -175.38 l 862.7013 -138.255 l 862.7013 -175.38 l 856.7071 -175.38 l f Q q 2 j 899.2784 -175.38 m 917.422 -128.1359 l 924.1573 -128.1359 l 943.4933 -175.38 l 936.3712 -175.38 l 930.8605 -161.0714 l 911.1056 -161.0714 l 905.9171 -175.38 l 899.2784 -175.38 l 912.9103 -155.9796 m 928.9269 -155.9796 l 923.9962 -142.8956 l 922.4923 -138.9211 921.3751 -135.6554 920.6446 -133.0988 c 920.0431 -136.1281 919.1944 -139.1359 918.0987 -142.1222 c 912.9103 -155.9796 l f Q q 2 j 948.3595 -175.38 m 948.3595 -128.1359 l 957.7696 -128.1359 l 968.9523 -161.587 l 969.9835 -164.7023 970.7354 -167.0333 971.2081 -168.5802 c 971.7452 -166.8615 972.5831 -164.337 973.7218 -161.007 c 985.0333 -128.1359 l 993.4444 -128.1359 l 993.4444 -175.38 l 987.4181 -175.38 l 987.4181 -135.838 l 973.6896 -175.38 l 968.0499 -175.38 l 954.3859 -135.1612 l 954.3859 -175.38 l 948.3595 -175.38 l f Q q 2 j 1003.7247 -175.38 m 1003.7247 -128.1359 l 1037.8849 -128.1359 l 1037.8849 -133.7111 l 1009.9767 -133.7111 l 1009.9767 -148.1808 l 1036.1124 -148.1808 l 1036.1124 -153.7238 l 1009.9767 -153.7238 l 1009.9767 -169.8048 l 1038.9806 -169.8048 l 1038.9806 -175.38 l 1003.7247 -175.38 l f Q Q Q q q 2 j 673.0826 -115.9434 m 675.1192 -116.4578 l 674.6923 -118.1305 673.9224 -119.4077 672.8096 -120.2895 c 671.7038 -121.1644 670.3496 -121.6018 668.7469 -121.6018 c 667.0882 -121.6018 665.7374 -121.2659 664.6946 -120.594 c 663.6588 -119.9151 662.868 -118.9353 662.3221 -117.6545 c 661.7832 -116.3738 661.5137 -114.9985 661.5137 -113.5288 c 661.5137 -111.9261 661.8182 -110.5299 662.427 -109.3401 c 663.0429 -108.1433 663.9143 -107.237 665.0411 -106.6211 c 666.1748 -105.9982 667.4206 -105.6868 668.7784 -105.6868 c 670.3181 -105.6868 671.6128 -106.0787 672.6626 -106.8626 c 673.7124 -107.6464 674.4438 -108.7487 674.8567 -110.1694 c 672.8516 -110.6419 l 672.4947 -109.5221 671.9768 -108.7067 671.2979 -108.1958 c 670.619 -107.6849 669.7652 -107.4295 668.7364 -107.4294 c 667.5536 -107.4295 666.5633 -107.7129 665.7654 -108.2798 c 664.9746 -108.8467 664.4182 -109.6096 664.0962 -110.5684 c 663.7743 -111.5202 663.6133 -112.5035 663.6133 -113.5183 c 663.6133 -114.8271 663.8023 -115.9714 664.1802 -116.9512 c 664.5652 -117.924 665.16 -118.6519 665.9649 -119.1348 c 666.7697 -119.6177 667.6411 -119.8591 668.5789 -119.8591 c 669.7197 -119.8591 670.6855 -119.5302 671.4764 -118.8723 c 672.2672 -118.2144 672.8026 -117.2381 673.0826 -115.9434 c f Q q 2 j 677.0193 -113.8438 m 677.0193 -111.2892 677.7052 -109.2911 679.077 -107.8494 c 680.4487 -106.4007 682.2194 -105.6763 684.389 -105.6763 c 685.8097 -105.6763 687.0905 -106.0157 688.2313 -106.6946 c 689.372 -107.3735 690.2399 -108.3218 690.8348 -109.5396 c 691.4366 -110.7503 691.7376 -112.1256 691.7376 -113.6653 c 691.7376 -115.226 691.4226 -116.6222 690.7928 -117.854 c 690.1629 -119.0858 689.2705 -120.0201 688.1158 -120.657 c 686.961 -121.2869 685.7152 -121.6018 684.3785 -121.6018 c 682.9297 -121.6018 681.635 -121.2519 680.4942 -120.552 c 679.3534 -119.8521 678.4891 -118.8968 677.9012 -117.686 c 677.3133 -116.4753 677.0193 -115.1945 677.0193 -113.8438 c 679.1189 -113.8753 m 679.1189 -115.7299 679.6158 -117.1926 680.6097 -118.2634 c 681.6105 -119.3272 682.8632 -119.8591 684.368 -119.8591 c 685.9007 -119.8591 687.1604 -119.3202 688.1473 -118.2424 c 689.1411 -117.1647 689.638 -115.6354 689.638 -113.6548 c 689.638 -112.402 689.4245 -111.3102 688.9976 -110.3794 c 688.5777 -109.4416 687.9583 -108.7172 687.1394 -108.2063 c 686.3276 -107.6884 685.4143 -107.4295 684.3995 -107.4295 c 682.9577 -107.4295 681.7154 -107.9264 680.6726 -108.9202 c 679.6368 -109.907 679.1189 -111.5587 679.1189 -113.8753 c f Q q 2 j 694.2886 -121.3394 m 694.2886 -105.9492 l 697.3541 -105.9492 l 700.9969 -116.8462 l 701.3328 -117.861 701.5778 -118.6204 701.7317 -119.1243 c 701.9067 -118.5644 702.1796 -117.742 702.5506 -116.6572 c 706.2354 -105.9492 l 708.9754 -105.9492 l 708.9754 -121.3394 l 707.0123 -121.3394 l 707.0123 -108.4583 l 702.5401 -121.3394 l 700.7029 -121.3394 l 696.2518 -108.2378 l 696.2518 -121.3394 l 694.2886 -121.3394 l f Q q 2 j 712.2823 -121.3394 m 712.2823 -105.9492 l 718.0877 -105.9492 l 719.1095 -105.9492 719.8899 -105.9982 720.4288 -106.0962 c 721.1846 -106.2222 721.818 -106.4636 722.3289 -106.8206 c 722.8398 -107.1705 723.2492 -107.6639 723.5572 -108.3008 c 723.8721 -108.9377 724.0296 -109.6375 724.0296 -110.4004 c 724.0296 -111.7092 723.6132 -112.8185 722.7803 -113.7283 c 721.9475 -114.6311 720.4427 -115.0825 718.2662 -115.0825 c 714.3189 -115.0825 l 714.3189 -121.3394 l 712.2823 -121.3394 l 714.3189 -113.2664 m 718.2977 -113.2664 l 719.6134 -113.2664 720.5477 -113.0214 721.1006 -112.5315 c 721.6535 -112.0416 721.93 -111.3522 721.93 -110.4634 c 721.93 -109.8195 721.7655 -109.2701 721.4366 -108.8152 c 721.1146 -108.3533 720.6877 -108.0488 720.1558 -107.9019 c 719.8129 -107.8109 719.1795 -107.7654 718.2557 -107.7654 c 714.3189 -107.7654 l 714.3189 -113.2664 l f Q q 2 j 723.3577 -121.3394 m 729.2681 -105.9492 l 731.4622 -105.9492 l 737.761 -121.3394 l 735.441 -121.3394 l 733.6458 -116.6782 l 727.2105 -116.6782 l 725.5203 -121.3394 l 723.3577 -121.3394 l 727.7984 -115.0195 m 733.0159 -115.0195 l 731.4097 -110.7573 l 730.9198 -109.4626 730.5559 -108.3988 730.3179 -107.5659 c 730.122 -108.5528 729.8455 -109.5326 729.4886 -110.5054 c 727.7984 -115.0195 l f Q q 2 j 739.3882 -121.3394 m 739.3882 -105.9492 l 741.4773 -105.9492 l 749.5608 -118.0325 l 749.5608 -105.9492 l 751.5135 -105.9492 l 751.5135 -121.3394 l 749.4244 -121.3394 l 741.3409 -109.2456 l 741.3409 -121.3394 l 739.3882 -121.3394 l f Q q 2 j 759.282 -121.3394 m 759.282 -114.8201 l 753.3506 -105.9492 l 755.8282 -105.9492 l 758.8621 -110.5894 l 759.422 -111.4572 759.9434 -112.325 760.4263 -113.1929 c 760.8882 -112.388 761.4481 -111.4817 762.106 -110.4739 c 765.0874 -105.9492 l 767.46 -105.9492 l 761.3186 -114.8201 l 761.3186 -121.3394 l 759.282 -121.3394 l f Q q 2 j 774.1998 -116.3948 m 776.1209 -116.2268 l 776.2119 -116.9967 776.4218 -117.63 776.7508 -118.1269 c 777.0867 -118.6169 777.6046 -119.0158 778.3045 -119.3237 c 779.0043 -119.6247 779.7917 -119.7751 780.6666 -119.7751 c 781.4434 -119.7751 782.1293 -119.6597 782.7242 -119.4287 c 783.3191 -119.1978 783.76 -118.8828 784.0469 -118.4839 c 784.3409 -118.078 784.4878 -117.637 784.4878 -117.1611 c 784.4878 -116.6782 784.3479 -116.2583 784.0679 -115.9014 c 783.788 -115.5374 783.3261 -115.233 782.6822 -114.988 c 782.2692 -114.8271 781.3559 -114.5786 779.9422 -114.2427 c 778.5284 -113.8997 777.5381 -113.5778 776.9712 -113.2769 c 776.2364 -112.8919 775.687 -112.416 775.323 -111.8491 c 774.9661 -111.2752 774.7876 -110.6349 774.7876 -109.928 c 774.7876 -109.1511 775.0081 -108.4268 775.449 -107.7549 c 775.8899 -107.076 776.5338 -106.5616 777.3807 -106.2117 c 778.2275 -105.8617 779.1688 -105.6868 780.2046 -105.6868 c 781.3454 -105.6868 782.3497 -105.8722 783.2176 -106.2432 c 784.0924 -106.6071 784.7643 -107.146 785.2332 -107.8599 c 785.7021 -108.5737 785.9541 -109.3821 785.9891 -110.2849 c 784.0364 -110.4319 l 783.9314 -109.4591 783.5745 -108.7242 782.9656 -108.2273 c 782.3637 -107.7304 781.4714 -107.4819 780.2886 -107.4819 c 779.0568 -107.4819 778.1575 -107.7094 777.5906 -108.1643 c 777.0307 -108.6122 776.7508 -109.1546 776.7508 -109.7915 c 776.7508 -110.3444 776.9502 -110.7993 777.3492 -111.1562 c 777.7411 -111.5132 778.7629 -111.8806 780.4146 -112.2585 c 782.0733 -112.6295 783.2106 -112.9549 783.8265 -113.2349 c 784.7223 -113.6478 785.3837 -114.1727 785.8106 -114.8096 c 786.2375 -115.4395 786.451 -116.1673 786.451 -116.9932 c 786.451 -117.812 786.2165 -118.5854 785.7476 -119.3132 c 785.2787 -120.0341 784.6033 -120.5975 783.7215 -121.0034 c 782.8466 -121.4023 781.8598 -121.6018 780.761 -121.6018 c 779.3683 -121.6018 778.1995 -121.3988 777.2547 -120.9929 c 776.3169 -120.587 775.5785 -119.9781 775.0396 -119.1663 c 774.5077 -118.3474 774.2278 -117.4236 774.1998 -116.3948 c f Q q 2 j 789.17 -121.3394 m 789.17 -105.9492 l 791.2066 -105.9492 l 791.2066 -119.5232 l 798.7862 -119.5232 l 798.7862 -121.3394 l 789.17 -121.3394 l f Q q 2 j 800.6023 -113.8438 m 800.6023 -111.2892 801.2882 -109.2911 802.66 -107.8494 c 804.0317 -106.4007 805.8024 -105.6763 807.972 -105.6763 c 809.3927 -105.6763 810.6735 -106.0157 811.8143 -106.6946 c 812.955 -107.3735 813.8229 -108.3218 814.4178 -109.5396 c 815.0196 -110.7503 815.3206 -112.1256 815.3206 -113.6653 c 815.3206 -115.226 815.0057 -116.6222 814.3758 -117.854 c 813.7459 -119.0858 812.8536 -120.0201 811.6988 -120.657 c 810.544 -121.2869 809.2982 -121.6018 807.9615 -121.6018 c 806.5127 -121.6018 805.218 -121.2519 804.0772 -120.552 c 802.9364 -119.8521 802.0721 -118.8968 801.4842 -117.686 c 800.8963 -116.4753 800.6023 -115.1945 800.6023 -113.8438 c 802.702 -113.8753 m 802.702 -115.7299 803.1989 -117.1926 804.1927 -118.2634 c 805.1935 -119.3272 806.4463 -119.8591 807.951 -119.8591 c 809.4837 -119.8591 810.7434 -119.3202 811.7303 -118.2424 c 812.7241 -117.1647 813.221 -115.6354 813.221 -113.6548 c 813.221 -112.402 813.0075 -111.3102 812.5806 -110.3794 c 812.1607 -109.4416 811.5413 -108.7172 810.7225 -108.2063 c 809.9106 -107.6884 808.9973 -107.4295 807.9825 -107.4295 c 806.5407 -107.4295 805.2985 -107.9264 804.2557 -108.9202 c 803.2199 -109.907 802.7019 -111.5587 802.7019 -113.8753 c f Q q 2 j 825.1363 -115.303 m 825.1363 -113.4973 l 831.6556 -113.4868 l 831.6556 -119.1977 l 830.6547 -119.9956 829.6224 -120.5975 828.5586 -121.0034 c 827.4948 -121.4023 826.403 -121.6018 825.2833 -121.6018 c 823.7715 -121.6018 822.3963 -121.2799 821.1575 -120.636 c 819.9257 -119.9851 818.9949 -119.0473 818.365 -117.8225 c 817.7352 -116.5977 817.4202 -115.2295 817.4202 -113.7178 c 817.4202 -112.2201 817.7317 -110.8238 818.3545 -109.529 c 818.9844 -108.2273 819.8873 -107.2615 821.063 -106.6316 c 822.2388 -106.0017 823.5931 -105.6868 825.1258 -105.6868 c 826.2386 -105.6868 827.2429 -105.8687 828.1387 -106.2327 c 829.0415 -106.5896 829.7484 -107.09 830.2593 -107.7339 c 830.7702 -108.3778 831.1586 -109.2176 831.4246 -110.2534 c 829.5875 -110.7573 l 829.3565 -109.9735 829.0695 -109.3576 828.7266 -108.9097 c 828.3837 -108.4617 827.8938 -108.1048 827.2569 -107.8389 c 826.62 -107.5659 825.9131 -107.4294 825.1363 -107.4294 c 824.2054 -107.4294 823.4006 -107.5729 822.7217 -107.8598 c 822.0428 -108.1398 821.4934 -108.5107 821.0735 -108.9726 c 820.6606 -109.4346 820.3387 -109.942 820.1077 -110.4949 c 819.7158 -111.4467 819.5198 -112.479 819.5198 -113.5918 c 819.5198 -114.9635 819.7543 -116.1113 820.2232 -117.0351 c 820.6991 -117.959 821.3885 -118.6448 822.2913 -119.0928 c 823.1941 -119.5407 824.1529 -119.7646 825.1678 -119.7646 c 826.0496 -119.7646 826.9104 -119.5967 827.7503 -119.2607 c 828.5901 -118.9178 829.227 -118.5539 829.6609 -118.1689 c 829.6609 -115.303 l 825.1363 -115.303 l f Q q 2 j 832.9573 -121.3394 m 838.8677 -105.9492 l 841.0618 -105.9492 l 847.3606 -121.3394 l 845.0406 -121.3394 l 843.2454 -116.6782 l 836.8101 -116.6782 l 835.1199 -121.3394 l 832.9573 -121.3394 l 837.398 -115.0195 m 842.6155 -115.0195 l 841.0093 -110.7573 l 840.5194 -109.4626 840.1555 -108.3988 839.9175 -107.5659 c 839.7216 -108.5528 839.4451 -109.5326 839.0882 -110.5054 c 837.398 -115.0195 l f Q q 2 j 848.9878 -121.3394 m 848.9878 -105.9492 l 851.077 -105.9492 l 859.1605 -118.0325 l 859.1605 -105.9492 l 861.1131 -105.9492 l 861.1131 -121.3394 l 859.024 -121.3394 l 850.9405 -109.2456 l 850.9405 -121.3394 l 848.9878 -121.3394 l f Q q 2 j 868.8501 -121.6018 m 873.3118 -105.6868 l 874.8235 -105.6868 l 870.3724 -121.6018 l 868.8501 -121.6018 l f Q q 2 j 885.9725 -121.3394 m 885.9725 -107.7654 l 880.9019 -107.7654 l 880.9019 -105.9492 l 893.1006 -105.9492 l 893.1006 -107.7654 l 888.0091 -107.7654 l 888.0091 -121.3394 l 885.9725 -121.3394 l f Q q 2 j 891.9144 -121.3394 m 897.8248 -105.9492 l 900.0189 -105.9492 l 906.3177 -121.3394 l 903.9976 -121.3394 l 902.2024 -116.6782 l 895.7671 -116.6782 l 894.077 -121.3394 l 891.9144 -121.3394 l 896.355 -115.0195 m 901.5726 -115.0195 l 899.9664 -110.7573 l 899.4764 -109.4626 899.1125 -108.3988 898.8746 -107.5659 c 898.6786 -108.5528 898.4021 -109.5326 898.0452 -110.5054 c 896.355 -115.0195 l f Q q 2 j 915.1675 -115.303 m 915.1675 -113.4973 l 921.6868 -113.4868 l 921.6868 -119.1977 l 920.686 -119.9956 919.6537 -120.5975 918.5899 -121.0034 c 917.5261 -121.4023 916.4343 -121.6018 915.3145 -121.6018 c 913.8028 -121.6018 912.4275 -121.2799 911.1888 -120.636 c 909.957 -119.9851 909.0262 -119.0473 908.3963 -117.8225 c 907.7664 -116.5977 907.4515 -115.2295 907.4515 -113.7178 c 907.4515 -112.2201 907.7629 -110.8238 908.3858 -109.529 c 909.0157 -108.2273 909.9185 -107.2615 911.0943 -106.6316 c 912.2701 -106.0017 913.6243 -105.6868 915.157 -105.6868 c 916.2698 -105.6868 917.2741 -105.8687 918.17 -106.2327 c 919.0728 -106.5896 919.7797 -107.09 920.2906 -107.7339 c 920.8015 -108.3778 921.1899 -109.2176 921.4559 -110.2534 c 919.6187 -110.7573 l 919.3877 -109.9735 919.1008 -109.3576 918.7579 -108.9097 c 918.4149 -108.4617 917.925 -108.1048 917.2881 -107.8389 c 916.6512 -107.5659 915.9444 -107.4294 915.1675 -107.4294 c 914.2367 -107.4294 913.4318 -107.5729 912.753 -107.8598 c 912.0741 -108.1398 911.5247 -108.5107 911.1048 -108.9726 c 910.6919 -109.4346 910.3699 -109.942 910.139 -110.4949 c 909.747 -111.4467 909.5511 -112.479 909.5511 -113.5918 c 909.5511 -114.9635 909.7855 -116.1113 910.2544 -117.0351 c 910.7304 -117.959 911.4197 -118.6448 912.3226 -119.0928 c 913.2254 -119.5407 914.1842 -119.7646 915.199 -119.7646 c 916.0809 -119.7646 916.9417 -119.5967 917.7815 -119.2607 c 918.6214 -118.9178 919.2583 -118.5539 919.6922 -118.1689 c 919.6922 -115.303 l 915.1675 -115.303 l f Q q 2 j 924.5948 -121.3394 m 924.5948 -105.9492 l 926.6314 -105.9492 l 926.6314 -119.5232 l 934.211 -119.5232 l 934.211 -121.3394 l 924.5948 -121.3394 l f Q q 2 j 936.993 -121.3394 m 936.993 -105.9492 l 939.0296 -105.9492 l 939.0296 -121.3394 l 936.993 -121.3394 l f Q q 2 j 942.5884 -121.3394 m 942.5884 -105.9492 l 944.6775 -105.9492 l 952.761 -118.0325 l 952.761 -105.9492 l 954.7137 -105.9492 l 954.7137 -121.3394 l 952.6246 -121.3394 l 944.5411 -109.2456 l 944.5411 -121.3394 l 942.5884 -121.3394 l f Q q 2 j 958.1885 -121.3394 m 958.1885 -105.9492 l 969.3165 -105.9492 l 969.3165 -107.7654 l 960.2251 -107.7654 l 960.2251 -112.479 l 968.7391 -112.479 l 968.7391 -114.2847 l 960.2251 -114.2847 l 960.2251 -119.5232 l 969.6734 -119.5232 l 969.6734 -121.3394 l 958.1885 -121.3394 l f Q q 2 j 978.5337 -121.3394 m 978.5337 -105.9492 l 980.5704 -105.9492 l 980.5704 -112.269 l 988.5699 -112.269 l 988.5699 -105.9492 l 990.6065 -105.9492 l 990.6065 -121.3394 l 988.5699 -121.3394 l 988.5699 -114.0852 l 980.5704 -114.0852 l 980.5704 -121.3394 l 978.5337 -121.3394 l f Q q 2 j 994.0499 -121.3394 m 994.0499 -105.9492 l 1005.1778 -105.9492 l 1005.1778 -107.7654 l 996.0865 -107.7654 l 996.0865 -112.479 l 1004.6004 -112.479 l 1004.6004 -114.2847 l 996.0865 -114.2847 l 996.0865 -119.5232 l 1005.5347 -119.5232 l 1005.5347 -121.3394 l 994.0499 -121.3394 l f Q q 2 j 1008.4007 -121.3394 m 1008.4007 -105.9492 l 1015.2244 -105.9492 l 1016.5962 -105.9492 1017.639 -106.0892 1018.3528 -106.3691 c 1019.0667 -106.6421 1019.6371 -107.1285 1020.064 -107.8284 c 1020.4909 -108.5283 1020.7044 -109.3016 1020.7044 -110.1484 c 1020.7044 -111.2402 1020.3509 -112.1606 1019.6441 -112.9094 c 1018.9372 -113.6583 1017.8454 -114.1342 1016.3687 -114.3372 c 1016.9076 -114.5961 1017.317 -114.8516 1017.597 -115.1035 c 1018.1919 -115.6494 1018.7552 -116.3318 1019.2872 -117.1506 c 1021.9642 -121.3394 l 1019.4026 -121.3394 l 1017.366 -118.1375 l 1016.7711 -117.2136 1016.2812 -116.5068 1015.8963 -116.0169 c 1015.5114 -115.5269 1015.1649 -115.184 1014.857 -114.988 c 1014.556 -114.7921 1014.2481 -114.6556 1013.9332 -114.5786 c 1013.7022 -114.5296 1013.3243 -114.5051 1012.7994 -114.5051 c 1010.4373 -114.5051 l 1010.4373 -121.3393 l 1008.4007 -121.3393 l 1010.4373 -112.7414 m 1014.815 -112.7414 l 1015.7458 -112.7414 1016.4737 -112.6469 1016.9986 -112.458 c 1017.5235 -112.262 1017.9224 -111.9541 1018.1954 -111.5342 c 1018.4683 -111.1073 1018.6048 -110.6453 1018.6048 -110.1484 c 1018.6048 -109.4206 1018.3388 -108.8222 1017.8069 -108.3533 c 1017.282 -107.8844 1016.4492 -107.6499 1015.3084 -107.6499 c 1010.4373 -107.6499 l 1010.4373 -112.7414 l f Q q 2 j 1023.9483 -121.3394 m 1023.9483 -105.9492 l 1035.0762 -105.9492 l 1035.0762 -107.7654 l 1025.9849 -107.7654 l 1025.9849 -112.479 l 1034.4988 -112.479 l 1034.4988 -114.2847 l 1025.9849 -114.2847 l 1025.9849 -119.5232 l 1035.4332 -119.5232 l 1035.4332 -121.3394 l 1023.9483 -121.3394 l f Q Q q q 331.0 0.0 0.0 369.0 144.8543 -321.0229 cm /I1 Do Q f Q Q Q Q 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN BT 209.837 361.6965 Td /F1.0 27 Tf <5468652044616e6765726f7573202620> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN BT 437.717 361.6965 Td /F2.0 27 Tf <546872696c6c696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN BT 547.04 361.6965 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN BT 205.031 327.6765 Td /F1.0 27 Tf <446f63756d656e746174696f6e204368726f6e69636c6573> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 351.236 301.9185 Td /F3.0 18 Tf <4261736564206f6e2054727565204576656e7473> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0941 0.0941 0.0941 scn 0.0941 0.0941 0.0941 SCN BT 312.8195 268.7249 Td /F1.0 13 Tf [<4b69736d65742043616d8e6c8e6f6e2c204c617a6172757320686574204472> 20.0195 <61656b> 20.0195 <65>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 433.2206 238.9114 Td /F1.0 10.5 Tf [<56> 60.0586 <657273696f6e20312e302c20323031342d30312d3031>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 9 0 R /F2.0 10 0 R /F3.0 11 0 R >> /XObject << /I1 8 0 R >> >> >> endobj 8 0 obj << /Type /XObject /Subtype /Image /ColorSpace /DeviceRGB /BitsPerComponent 8 /Width 331 /Height 369 /Length 10696 /Filter [/DCTDecode] >> stream �JFIF��`�`���C�    $.' ",#(7),01444'9=82<.342�C  2!!22222222222222222222222222222222222222222222222222�qK"������������ ����}�!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�������� ���w�!1AQaq"2B #3Rbr $4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz� ��?�( ( ( ( ( ( ( ( ( ( Jm#O;Z0h"֣�Gl|п? g.^khO2((((�(�(�(�(�(�(�(�(�(�(�(�(�(�(�(�(�(�JhtsQ՛�'W_:֥&?d!ݿ¶IԕO׳7r}J)dU'du9VS>E{KC{փM̽ŽG  HeYNA -'\Ѧk/Orv:E-`o i#{R=xYQo"y9=+Δ\]:Z(Š(((((((((((((((waOVbJu)j;�מԓM%4ZI fbz֣j%N68*M(Ԁ(� 98+|uqeR qA(ڸ+:QZHem[,u=>ׇڥr'naGzmƶz/1mtx?#ck̭=Ve-H@c`(�(�(�(�(�(�(�(�(�(�()j&[$W7Gż<8TC V"wY1Y|}o3m`=� rDXY1h89gIpF 3WԺ bOo�s[?blL;~\ezXJ\RQ]8QE�QE�QE�Qx�t/^;aͨi?2OG5-^δ?ExMkwqepLJO5[ UsEh><ॾz ov謌H#6ti#3RuQPPQE�QE�QE�QE�QE�QE�QE4VfiJspFq:/.wG`g˟?Zų_Zw;CU#wpOu5?Mycz\tKq!i^IVcQֱ[' :S-,j(^1QV+ռ#�ji $9OCtb6s%ܟCTM]~gnSkaؼ?pwo+cR`4o'oݢ玬{k=BmSPs;O GJd|UjJI9$E!EPEPEPEPEPEP^ {ȴ%f%``F=�H?Ҹ h-jA\k S>뱢E(UP�*4 &<t+:(((()y'ހu51tѣaH�u_jz x"<;mze_iP+$I�֮#U~Z;lZz +'z0HMZV9rřrM6*Q+lQE ( >WK �ꗿi3i#n�7e"hs[__O-^Hd'\zah#Qȸ?>F= 5(X9 (`(�X|Ceo2,|L䢛}FNA{pv/TxH;s�UW}4W7t:l LUe�vB*6OEz|>я7+�ms:?r>5KO oSͨ^Ekn啶Ow/ MNL�hvk%]T1_Ց(msuZ6k$ nk|IA AlUk͕*ݣb(kYXWqSR f�tS}Q~tOΤx�SHeJ`6"SЊ,ʺ:LZC (+m&.5产5-X48=s^@9zOV g)2dkâ+sB(aEPEPE`O�7mz>mR+H>?z:6+H Ԛ𞂺EejtvZ Pce,-r{^X'Kg;~5XzwxaǨ `(�)v\�kn#7`cX?˧#ԨO@(�J(חIinҿnPnR)kZ١clJ�=k'&id9f<JJ4"x8ά( ( 0=PӧCN8?FE+'Х&ds:}٤F5 /K節E'ж/E`\�3"{1"�:J(ū#NRaX,?ty6.guB=zW:vTt?Qj+~ƤAqOc~|5JwW>YVQL(�(�+Nne3?}~+AѤֵ$A+=ۤ1(X�t<<cܘt+B��\Ƹ,=keΏ5hoG?edrYN=zJU%Q]F!]Ôαw&:A͇W]dڋ,cϊv)/}EWwQ@ $($#ߛی)p޴C`$M\z\v}yXE�wQEvhQE�QE�QE�QE�QEoL]ڔ�ZцuX};/ݿP+1<Q_G$O#�q^FA0GQ^Fk|igjp.rٻVrlW,7EV҅Q@Q@=6CfYbf%y5܃xH$zkkuuŸ1>wNRuiߡU; JRMk2ȇUՉJ..j-Q@0֏P_D'ϯ^Y=c{ Of kBfu#-E:H9*#6 ?;9E�מW;MÑˌvkG;(J_-~xQjԲ,Q@U$z׷-!AA[P/#_CM#fiQ^<&QE(�(�(�(�(�:}5W3?Q]5y EV`=(jD�<>:~}?פM;; IJ;™Y{J<m}T\c7''.akԔQE΀(�(͕֝p'q؎mB{}c63Z{0K^OxI+=�lyQJx|iA##p\;:((84mEuW,uG:Ycմ޿)au%C($lUG`G8B莽SI(<߮?y]z߂glscF50: 3Efj z/y:g53;\< g_}ObI''ӂlWR|((gp[߰O*_q)ք7ޖM 2"fpO݆M"T牓hzT0Ք$MB"pq%,m 2]s t}{SUjVorqtEWyEPEP2NށG󮊰|6H�yuwE EV'PQIZ�ތ:W4r4n]I =u59>ǩ WU9t=?c.'EVӅQ@Q@Q@Koq54r)e8beZJ/$mP vʒx2A^Z?oi�̐B= g*}Q2u+ʇ{ yǏ"=N%MK:WYYP#.p2b>STgeB3{T3єo 3+|0_ }[yԉ#b {F>msllrVn囙CQ\e<Fe,=.U ewR\(ejaV妅o\~nxC͙RԩC*3�M( dol*��;SxERӆV68% G`)֕(bTW0-Ż! KE M]Y,дRO>oݨ�`}kե>x|"(QEQEpbC!B+3A]`?bjWU28ɦhp%D 'ֿZ<z<'t?QXTvgf*uգΓ:td'̠�J@n�މ¹+:Hý>"kپG4CzZ^[b12<+E\qUWR?pF+}+]M9:,Ƒ�v^@U#j_Iə!~ν Q#1X^-\gkڰ�|PIi3ݐsZg" 뉜1P?xͧ.{%b[xiZ}ajn#J!;AHQOU{CUxWJ+ѩU糁O#EWtw~PI-ؠ�t?hVyOO%Gx])ʲkмs$`3$}2;74FnƩ+By`X�sS*&%rԋnc\d@VNy.?*KicX�hqr$wQȤd+O?:oMN$ﶰQsgtCi\Ji[5qݺ9j? ?*/� s9?drS��1KXKS)?ƥ_X+{L5t�Ҥ]Z�cqZ,Uٷݹ�J.!o*joi %{KTUp"%Ukzs)}=ϭtarÍe9(# (u"J'5U4MVǟϣq^>{ v5MM|gkM_lT4QEx'Q@ttB B^a}c 9T0Aqi4̐�^Yr>9_Q^aEPEPR~iQ/ncv~&Wce'v_ח|&kANد?>$K&质<?E&o:y&WnA\uq՞$SZN�XnJo/ {SQnO$eB�.GHΦ"|:8lfއ<5?w4eoN8Qu'orrrr?*֛f9�gF"2̫[N$xtr62Za~K Hc 8Ev7kyiCcޖ L⺱e,D}<ӿg%X@~_;ZJ2QE&=JZ(kf+IN*As:٥G#TU[6^2�:j�TXi04[_oskGH?Ekv"-Z`ՎEIpu z\?WMɶcIN+xZO7%V�r?b]>hTG#ȷbҤ\S++!kξ(7rvBtԬbl߯�ZzRgpQEx܅QH%/;Ơvw&QSN/S޴F-WMAּζaHI3$9q^^ �-%&p:XZNjtrK8a�,ߍ\)ҝIr]ݫ'U)]‡Dk¼X^\?ܻ;I'9䴁ar9ެeӣ4]7 [ZYydnQ\+NϡթŠ*k[YnBT{i]ntNJ)kx_@}TExi״EpBFQ K>_H�n浻W|>ex_ Dԁ]g[nAke|J^GV^tM7'+t;Fduu8`r>ik{f`<g<=G.>,RCC2C<k^PZ<W<󃹵_.d*C5of9P:ƹC@ [$}vkL^T@cQA8#WkhER�(�(Q]NH o $u# \=lh nr�zlI袊׭> /BMzxɗƻR=|7|QEfQE�QE�Kmq%W0bp}zy\`O+^T5*;][UX �W 9[1\99Ԕ߼VQEfnQE�mFt/�U+ÇXW nrr8w>z�` t?䏙α��!QEzG͘'l[B�\t^)??2-~lzȺ6~Iz}kXS\xLCUjjY蝨zuིIA{r@5R q|Ţ+A[%~^X\Xٔ㳎d$RE /StEo+-9LgV+#e*êFiEW0Q@*V r=(kp;}:^Y$Ō7h7gX}�Jk0^}VQEw�xx^={Ik<HOjM�0J?ݣW2袊O ( ( ( ( ( sVvs7e^ Y%{|84M;͝G'�;-tIXՅ6: .;uk}I)kI%d|DŠ(#;f\[$;%=|i+} Z (?$�?ҺH 2)!?8oc_WbKǏQ嗴]KåQ_DyEP\߈thGPıi@=OqrHv95fjEQE�QE�(8 M.^$\Ujhwfܼ}c?*2Wf`uQڊҼV/dZ[llރ57Wcן~>͌+>(�(�(�(�(9˯jnXS 3/.m%j9ßijH|nvMV 5 @*j(Td|&3,MWRBEQHiWz*̫nէ9`~B=ǻfϣëR (Mt߳^Lw/C+*H A զAŞ(MཱG'_4F>rQqn,)�2ik,g{GXЦ3uKrX/ 4Q_V]@((({uQM;ji^ $rs"hd c}k˱>ފ}P <?1^csR9б#vAǽz!F5~# m{D�uԷ]ffE`T瘕ٞ ד9jM?ʽ*^>{ ~7TM q1_Bm1h~QњLj'�"AG^}}-T^MI}_݊}$h=a&+z$7\w\R3Z9YKsqyd`iօ$f7W1hMU#�zM|E|8>Y+cͩjE*jPxbu"P>ku?FŝaSx*ݎG{V�E<@Y%=RQ��EbTϟBf4O�)j-R9�TIO$#{G_ ^\%%՟AMZ QYQE�iwer?ֻs^wWaj.f1 9WxԢM<d,mN9A\s1f,$V/~;*�tUjqoSMQ^pQ@Q@T[r!v%'h"#B{[~' t��܂djڽ|6ORMrt�`u-l%<<y`(�(�(�(�(+]Ծ~N�~;+gA}+KCcx?Sp~;pxi.ilשQ@Q@Q@Q@Q@Q@zևK\e?0@~۝,}Ov;nq_AeG/ysTOS:'NnyAEV@QV4۫ q? ҝ)|WXlC0�k8ic¶*(P:�+dW`0;a?^�^b8$hi+ݣEZEWHQ@Q@Q@Q@Q@Q@ne$j^$*:WsYdsz_;3'Vz8Lbh泗dɴ#T(Kj%%x* ( ( ( ( Y;8]vH< w)bۢT_K;d 9>֬QڊAB*1m/\Uu.G+A U}+05RרM" O?G�~MhQz 2+[l36Aݺµ�WJ:JV�+` ( ( ( ( ( ( ( ( (!+re=kPK\ȟ"+mJ;ŞtA#=CH/ZN|JC crgu=UʴQEyXQE�QE�QEY{륉rVoAWJB:LtߴKWh~P{𮲣%5T` } -%SugŢ+(�(�(�(�(�(�(�(�(�(�(�(�(�(�*9#IPe=A))4|=e`:4nQԫ z%Rm.taWaR(cvz7$U j*Q$ՏZHW (,URFK] P̭˟Jȼ?κ:̛{6;#QE} Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@ e # 2Zv?[W6# KYJueM,顖CQb*ޓ>RYx&0E:8Dp^%<wwKNԙ"P�� uWѤ<Т)QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�P( ( ( ( ( ( ( ( ( ( (? endstream endobj 9 0 obj << /Type /Font /BaseFont /24a158+NotoSerif /Subtype /TrueType /FontDescriptor 148 0 R /FirstChar 32 /LastChar 255 /Widths 150 0 R /ToUnicode 149 0 R >> endobj 10 0 obj << /Type /Font /BaseFont /b99a30+NotoSerif-Italic /Subtype /TrueType /FontDescriptor 152 0 R /FirstChar 32 /LastChar 255 /Widths 154 0 R /ToUnicode 153 0 R >> endobj 11 0 obj << /Type /Font /BaseFont /27ee78+NotoSerif-BoldItalic /Subtype /TrueType /FontDescriptor 156 0 R /FirstChar 32 /LastChar 255 /Widths 158 0 R /ToUnicode 157 0 R >> endobj 12 0 obj << /Length 8356 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 782.394 Td /F4.0 22 Tf [<54> 29.7852 <61626c65206f6620436f6e74656e7473>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 751.856 Td /F1.0 10.5 Tf <312e204974d5732061204369747920556e646572205369656765> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6627 0.6627 0.6627 scn 0.6627 0.6627 0.6627 SCN BT 171.7201 751.856 Td /F1.0 10.5 Tf <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn BT 540.4906 751.856 Td /F1.0 2.625 Tf <ca> Tj ET 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 541.1705 751.856 Td /F1.0 10.5 Tf <32> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 60.24 733.376 Td /F1.0 10.5 Tf <312e312e2052656e64657a766f757320506f696e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6627 0.6627 0.6627 scn 0.6627 0.6627 0.6627 SCN BT 171.7201 733.376 Td /F1.0 10.5 Tf <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn BT 540.4906 733.376 Td /F1.0 2.625 Tf <ca> Tj ET 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 541.1705 733.376 Td /F1.0 10.5 Tf <32> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 714.896 Td /F1.0 10.5 Tf <322e205468652052617661676573206f662057726974696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6627 0.6627 0.6627 scn 0.6627 0.6627 0.6627 SCN BT 177.0646 714.896 Td /F1.0 10.5 Tf <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn BT 540.4906 714.896 Td /F1.0 2.625 Tf <ca> Tj ET 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 541.1705 714.896 Td /F1.0 10.5 Tf <33> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 60.24 696.416 Td /F1.0 10.5 Tf [<322e312e20412052656369706520666f7220506f74696f6e20546861742057696c6c20456e737572652059> 69.8242 <6f752057696e2074686520486561727473206f6620446576656c6f70657273>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6627 0.6627 0.6627 scn 0.6627 0.6627 0.6627 SCN BT 438.9451 696.416 Td /F1.0 10.5 Tf <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn BT 540.4906 696.416 Td /F1.0 2.625 Tf <ca> Tj ET 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 541.1705 696.416 Td /F1.0 10.5 Tf <33> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 72.24 677.936 Td /F1.0 10.5 Tf <322e312e312e20536561726368696e6720666f7220427572646f636b69616e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6627 0.6627 0.6627 scn 0.6627 0.6627 0.6627 SCN BT 230.5096 677.936 Td /F1.0 10.5 Tf <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn BT 540.4906 677.936 Td /F1.0 2.625 Tf <ca> Tj ET 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 541.1705 677.936 Td /F1.0 10.5 Tf <34> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 659.456 Td /F1.0 10.5 Tf <332e204461776e206f6e2074686520506c6174656175> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6627 0.6627 0.6627 scn 0.6627 0.6627 0.6627 SCN BT 166.3756 659.456 Td /F1.0 10.5 Tf <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn BT 540.4906 659.456 Td /F1.0 2.625 Tf <ca> Tj ET 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 541.1705 659.456 Td /F1.0 10.5 Tf <36> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 640.976 Td /F1.0 10.5 Tf [<342e2057> 60.0586 <6f72647320536561736f6e6564207769746820506f776572>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6627 0.6627 0.6627 scn 0.6627 0.6627 0.6627 SCN BT 203.7871 640.976 Td /F1.0 10.5 Tf <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn BT 540.4906 640.976 Td /F1.0 2.625 Tf <ca> Tj ET 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 541.1705 640.976 Td /F1.0 10.5 Tf <37> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 60.24 622.496 Td /F1.0 10.5 Tf <342e312e2043616e20492047657420536f6d6520> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 157.8795 622.496 Td /F5.0 10.5 Tf <436f6465> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 178.8795 622.496 Td /F1.0 10.5 Tf <3f> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6627 0.6627 0.6627 scn 0.6627 0.6627 0.6627 SCN BT 187.7536 622.496 Td /F1.0 10.5 Tf <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn BT 540.4906 622.496 Td /F1.0 2.625 Tf <ca> Tj ET 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 541.1705 622.496 Td /F1.0 10.5 Tf <37> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 604.016 Td /F1.0 10.5 Tf [<352e204b> 20.0195 <656570696e672049742054> 29.7852 <6f676574686572>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6627 0.6627 0.6627 scn 0.6627 0.6627 0.6627 SCN BT 160.5061 604.016 Td /F1.0 10.5 Tf <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn BT 534.6211 604.016 Td /F1.0 2.625 Tf <ca> Tj ET 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 535.301 604.016 Td /F1.0 10.5 Tf <3131> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 585.536 Td /F1.0 10.5 Tf <417070656e64697820413a2043726564697473> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6627 0.6627 0.6627 scn 0.6627 0.6627 0.6627 SCN BT 149.8171 585.536 Td /F1.0 10.5 Tf <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn BT 534.6211 585.536 Td /F1.0 2.625 Tf <ca> Tj ET 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 535.301 585.536 Td /F1.0 10.5 Tf <3134> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 567.056 Td /F1.0 10.5 Tf <496e646578> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6627 0.6627 0.6627 scn 0.6627 0.6627 0.6627 SCN BT 80.3386 567.056 Td /F1.0 10.5 Tf <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn BT 534.6211 567.056 Td /F1.0 2.625 Tf <ca> Tj ET 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 535.301 567.056 Td /F1.0 10.5 Tf <3135> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 13 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 12 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F4.0 22 0 R /F1.0 9 0 R /F5.0 35 0 R >> >> /Annots [106 0 R 107 0 R 108 0 R 109 0 R 110 0 R 111 0 R 112 0 R 113 0 R 114 0 R 115 0 R 116 0 R 117 0 R 118 0 R 119 0 R 120 0 R 121 0 R 122 0 R 123 0 R 124 0 R 125 0 R 126 0 R 127 0 R 128 0 R 129 0 R] >> endobj 14 0 obj << /Length 1257 >> stream q /DeviceRGB cs 0.3608 0.3843 0.4 scn /DeviceRGB CS 0.3608 0.3843 0.4 SCN 1.8164 Tw BT 48.24 789.406 Td /F3.0 13 Tf <546869732073746f7279206368726f6e69636c65732074686520696e6578706c696361626c652068617a6172647320616e6420766963696f7573206265617374732061207465616d> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.3608 0.3843 0.4 scn 0.3608 0.3843 0.4 SCN 0.0242 Tw BT 48.24 766.526 Td /F2.0 13 Tf <6d75737420636f6e7175657220616e642076616e7175697368206f6e207468656972206a6f75726e657920746f20646973636f766572696e6720746865207472756520706f776572206f66204f70656e> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.3608 0.3843 0.4 scn 0.3608 0.3843 0.4 SCN BT 48.24 743.646 Td /F2.0 13 Tf <536f757263652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d q 18.0 0.0 0.0 20.0665 288.64 813.8568 cm /I3 Do Q 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN BT 480.9262 820.398 Td /F2.0 9 Tf [<436f6d70616e> 20.0195 <79204e616d65>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /Stamp1 Do 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 499.204 16.663 Td /F1.0 9 Tf <50726566616365207c2031> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 15 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 14 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F3.0 11 0 R /F2.0 10 0 R /F1.0 9 0 R >> /XObject << /I3 8 0 R /Stamp1 145 0 R >> >> >> endobj 16 0 obj [15 0 R /XYZ 0 841.89 null] endobj 17 0 obj << /Type /Names /Dests 18 0 R >> endobj 18 0 obj << /Kids [86 0 R 87 0 R] >> endobj 19 0 obj << /Length 14071 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 782.394 Td /F4.0 22 Tf <4368617074657220312e204974d5732061204369747920556e646572205369656765> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.6404 Tw BT 48.24 753.206 Td /F1.0 10.5 Tf [<54686973206a6f75726e657920626567696e73206f6e65206c617465204d6f6e6461> 20.0195 <792061667465726e6f6f6e20617420>] TJ ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.6404 Tw BT 304.8901 753.206 Td ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2588 0.5451 0.7922 scn 0.2588 0.5451 0.7922 SCN 0.6404 Tw BT 304.8901 753.206 Td /F1.0 10.5 Tf <4465766f7878> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.6404 Tw BT 342.4171 753.206 Td /F1.0 10.5 Tf <2e204f7572207465616d206e6565647320636f666665652c20> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.6404 Tw BT 468.3744 753.206 Td /F2.0 10.5 Tf [<646573706572> 20.0195 <6174656c79>] TJ ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.6404 Tw BT 524.2656 753.206 Td /F1.0 10.5 Tf <2c20627574> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 737.426 Td /F1.0 10.5 Tf <6e6f6e65206f662075732064617265206f70656e20746865207468656174657220646f6f7273c9> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 1.5774 Tw BT 48.24 709.646 Td /F1.0 10.5 Tf <447572696e672074686520> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2588 0.5451 0.7922 scn 0.2588 0.5451 0.7922 SCN 1.5774 Tw BT 107.8114 709.646 Td /F1.0 10.5 Tf <6f70656e696e6720756e69766572736974792073657373696f6e> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 1.5774 Tw BT 244.1902 709.646 Td /F1.0 10.5 Tf [<2c2061207363726970742d68617070> 20.0195 <79207761726c6f636b20696e616476657274656e746c792072656c65617365642061206c6567696f6e206f66>] TJ ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 693.866 Td /F1.0 10.5 Tf [<57> 60.0586 <6f6c70657274696e67657273212054> 29.7852 <6f206c65617665206e6f7720776f756c64206d65616e20>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 259.6486 693.866 Td /F4.0 10.5 Tf <636f6465206469736d656d6265726d656e7420616e64206365727461696e206465617468> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 471.9901 693.866 Td /F1.0 10.5 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 666.086 Td /F1.0 10.5 Tf <4265686f6c6420> Tj /F1.1 10.5 Tf <2120> Tj /F1.0 10.5 Tf <74686520686f72726f7221> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 249.4 0.0 0.0 281.1418 48.24 369.1282 cm /I2 Do Q 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 353.7624 Td /F2.0 9.975 Tf [<46696775726520312e2057> 60.0586 <6f6c70657274696e6765722c2073747566666564>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.2697 Tw BT 48.24 326.1732 Td ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.2697 Tw BT 48.24 326.1732 Td ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.2697 Tw BT 48.24 326.1732 Td ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.2697 Tw BT 48.24 326.1732 Td /F1.0 10.5 Tf [<59> 69.8242 <6f75206d61> 20.0195 <79206e6f742062652066616d696c696172207769746820746865736520>] TJ ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2588 0.5451 0.7922 scn 0.2588 0.5451 0.7922 SCN 0.2697 Tw BT 227.3694 326.1732 Td /F1.0 10.5 Tf [<72> 20.0195 <6176656e6f757320626561737473>] TJ ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.2697 Tw BT 308.0374 326.1732 Td /F1.0 10.5 Tf <2e2054727573742075732c2074686579d56c6c2065617420796f75722073686f72747320616e64207375636b206c6f6f7073> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 2.4043 Tw BT 48.24 310.3932 Td /F1.0 10.5 Tf <66726f6d20796f757220636f64652e20496e206c69676874206f6620746869732064616e6765722c207765d57665207365617263686564206869676820616e64207769646520666f72207468652073656375726974792063726577d573> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.5794 Tw BT 48.24 294.6132 Td /F1.0 10.5 Tf [<646566656e73697665206f706572> 20.0195 <6174696f6e73206d616e75616c2e2057> 60.0586 <652063616ed5742066696e6420697420616e6420746865204465664f7073>] TJ ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.5794 Tw BT 359.1928 294.6132 Td ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.5794 Tw BT 359.1928 300.1703 Td /F1.0 6.1215 Tf <5b> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2588 0.5451 0.7922 scn 0.2588 0.5451 0.7922 SCN 0.5794 Tw BT 361.3904 300.1703 Td /F1.0 6.1215 Tf <31> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.5794 Tw BT 364.8123 300.1703 Td /F1.0 6.1215 Tf <5d> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.5794 Tw BT 367.0099 294.6132 Td /F1.0 10.5 Tf <2077657265776f6c76657320686176656ed5742072657475726e65642066726f6d> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 4.6476 Tw BT 48.24 278.8332 Td /F1.0 10.5 Tf [<74686569722072656e64657a766f757320617420426965722043656e7472> 20.0195 <616c2e2054686579d576652065697468657220656174656e2065616368206f74686572206f722066616c6c656e2076696374696d20746f20746865>] TJ ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN -0.3126 Tw BT 48.24 260.9112 Td /F1.0 10.5 Tf [<57> 60.0586 <6f6c70657274696e6765727320726f616d696e67207468652073747265657473206f6620>] TJ ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN -0.3126 Tw BT 233.2406 260.9112 Td ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN -0.3126 Tw BT 233.2406 260.9112 Td /F1.0 10.5 Tf <416e74776572702e20517569636b2c2068697420> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.9608 0.9608 0.9608 scn 334.4204 271.9412 m 355.4204 271.9412 l 356.5249 271.9412 357.4204 271.0458 357.4204 269.9412 c 357.4204 259.4412 l 357.4204 258.3366 356.5249 257.4412 355.4204 257.4412 c 334.4204 257.4412 l 333.3158 257.4412 332.4204 258.3366 332.4204 259.4412 c 332.4204 269.9412 l 332.4204 271.0458 333.3158 271.9412 334.4204 271.9412 c h f 0.2 0.2 0.2 scn 0.8 0.8 0.8 SCN 0.5 w 334.4204 271.9412 m 355.4204 271.9412 l 356.5249 271.9412 357.4204 271.0458 357.4204 269.9412 c 357.4204 259.4412 l 357.4204 258.3366 356.5249 257.4412 355.4204 257.4412 c 334.4204 257.4412 l 333.3158 257.4412 332.4204 258.3366 332.4204 259.4412 c 332.4204 269.9412 l 332.4204 271.0458 333.3158 271.9412 334.4204 271.9412 c h S 0.2 0.2 0.2 SCN 1 w BT 334.4204 260.9112 Td /F5.0 10.5 Tf <4374726c> Tj ET -0.3126 Tw BT 332.4204 260.9112 Td ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN -0.3126 Tw BT 357.4204 260.9112 Td /F1.1 10.5 Tf <22> Tj /F1.0 10.5 Tf <2b> Tj /F1.1 10.5 Tf <22> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.9608 0.9608 0.9608 scn 369.4899 271.9412 m 385.2399 271.9412 l 386.3444 271.9412 387.2399 271.0458 387.2399 269.9412 c 387.2399 259.4412 l 387.2399 258.3366 386.3444 257.4412 385.2399 257.4412 c 369.4899 257.4412 l 368.3853 257.4412 367.4899 258.3366 367.4899 259.4412 c 367.4899 269.9412 l 367.4899 271.0458 368.3853 271.9412 369.4899 271.9412 c h f 0.2 0.2 0.2 scn 0.8 0.8 0.8 SCN 0.5 w 369.4899 271.9412 m 385.2399 271.9412 l 386.3444 271.9412 387.2399 271.0458 387.2399 269.9412 c 387.2399 259.4412 l 387.2399 258.3366 386.3444 257.4412 385.2399 257.4412 c 369.4899 257.4412 l 368.3853 257.4412 367.4899 258.3366 367.4899 259.4412 c 367.4899 269.9412 l 367.4899 271.0458 368.3853 271.9412 369.4899 271.9412 c h S 0.2 0.2 0.2 SCN 1 w BT 369.4899 260.9112 Td /F5.0 10.5 Tf <416c74> Tj ET -0.3126 Tw BT 367.4899 260.9112 Td ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN -0.3126 Tw BT 387.2399 260.9112 Td /F1.1 10.5 Tf <22> Tj /F1.0 10.5 Tf <2b> Tj /F1.1 10.5 Tf <22> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.9608 0.9608 0.9608 scn 399.3094 271.9412 m 446.5594 271.9412 l 447.6639 271.9412 448.5594 271.0458 448.5594 269.9412 c 448.5594 259.4412 l 448.5594 258.3366 447.6639 257.4412 446.5594 257.4412 c 399.3094 257.4412 l 398.2048 257.4412 397.3094 258.3366 397.3094 259.4412 c 397.3094 269.9412 l 397.3094 271.0458 398.2048 271.9412 399.3094 271.9412 c h f 0.2 0.2 0.2 scn 0.8 0.8 0.8 SCN 0.5 w 399.3094 271.9412 m 446.5594 271.9412 l 447.6639 271.9412 448.5594 271.0458 448.5594 269.9412 c 448.5594 259.4412 l 448.5594 258.3366 447.6639 257.4412 446.5594 257.4412 c 399.3094 257.4412 l 398.2048 257.4412 397.3094 258.3366 397.3094 259.4412 c 397.3094 269.9412 l 397.3094 271.0458 398.2048 271.9412 399.3094 271.9412 c h S 0.2 0.2 0.2 SCN 1 w BT 399.3094 260.9112 Td /F5.0 10.5 Tf <4261636b7370616365> Tj ET -0.3126 Tw BT 397.3094 260.9112 Td ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN -0.3126 Tw BT 448.5594 260.9112 Td /F1.0 10.5 Tf <206f722073656c65637420> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN -0.3126 Tw BT 494.8717 260.9112 Td /F4.0 10.5 Tf <46696c6520> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN -0.3126 Tw BT 517.1761 260.9112 Td /F4.0 12.075 Tf <dd> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN -0.3126 Tw BT 521.4386 260.9112 Td /F4.0 10.5 Tf <2051756974> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN -0.3126 Tw BT 547.04 260.9112 Td ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 245.1312 Td /F1.0 10.5 Tf <616e64206c6574d573206261696c206f7574206f66206865726521> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.5 w 0.9333 0.9333 0.9333 SCN 108.24 229.3152 m 108.24 189.7552 l S Q 0.749 0.4118 0.0 scn 0.749 0.4118 0.0 SCN BT 64.74 200.5352 Td /F6.1 24 Tf <21> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.2323 Tw BT 120.24 213.3512 Td /F1.0 10.5 Tf [<57> 60.0586 <6f726b696e672077697468204465664f7073>] TJ ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.2323 Tw BT 228.2345 218.9083 Td /F1.0 6.1215 Tf <5b> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2588 0.5451 0.7922 scn 0.2588 0.5451 0.7922 SCN 0.2323 Tw BT 230.4321 218.9083 Td /F1.0 6.1215 Tf <31> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.2323 Tw BT 233.854 218.9083 Td /F1.0 6.1215 Tf <5d> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.2323 Tw BT 236.0516 213.3512 Td /F1.0 10.5 Tf [<2077657265776f6c766573206c6561647320746f20686f776c696e6720616e6420747279696e6720746f207472> 20.0195 <61696e2061676772657373697665>] TJ ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 120.24 197.5712 Td /F1.0 10.5 Tf <726567756c61722065787072657373696f6e732077697468205061766c6f7669616e207265696e666f7263656d656e742e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 165.7912 Td /F2.0 10.5 Tf [<57> 60.0586 <65616b206c696768742066726f6d207468652068616c6c7761> 20.0195 <7920747269636b6c6564206163726f73732074686520746865617465722c206368617365642062> 20.0195 <7920612064697374616e742073637265616d2e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 125.9512 Td /F4.0 18 Tf <312e312e2052656e64657a766f757320506f696e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 2.7459 Tw BT 48.24 97.9312 Td /F1.0 10.5 Tf <436f6d65206f6e2c20> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 2.7459 Tw BT 102.6513 97.9312 Td ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 2.7459 Tw BT 102.6513 97.9312 Td /F2.0 10.5 Tf [<426965722043656e7472> 20.0195 <616c>] TJ ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 2.7459 Tw BT 164.113 97.9312 Td /F1.0 10.5 Tf <2c206f6620636f75727365212044696420796f75206861766520746f2061736b3f20496620796f752062656174206d652074686572652c206f72646572206d65206120> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2588 0.5451 0.7922 scn 0.2588 0.5451 0.7922 SCN 2.7459 Tw BT 535.0175 97.9312 Td /F1.0 10.5 Tf <53742e> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2588 0.5451 0.7922 scn 0.2588 0.5451 0.7922 SCN BT 48.24 82.1512 Td /F1.0 10.5 Tf <4265726e617264757320416274203132> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 135.8205 82.1512 Td /F1.0 10.5 Tf <2e2048657265d57320736f6d6520> Tj /F1.1 10.5 Tf <23> Tj /F1.0 10.5 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 54.1474 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 54.1474 Td /F1.0 8 Tf <5b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2588 0.5451 0.7922 scn 0.2588 0.5451 0.7922 SCN BT 51.112 54.1474 Td /F1.0 8 Tf <31> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 55.584 54.1474 Td /F1.0 8 Tf [<5d204465664f7073206973206120706f72746d616e74656175206f6620d2646566656e73697665d320616e6420d26f706572> 20.0195 <6174696f6e73d32e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN BT 48.24 820.398 Td /F2.0 9 Tf [<436f6d70616e> 20.0195 <79204e616d65>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 18.0 0.0 0.0 20.0665 288.64 813.8568 cm /I4 Do Q Q q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /Stamp2 Do 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 49.24 16.663 Td /F1.0 9 Tf <32207c204368617074657220312e204974d5732061204369747920556e646572205369656765> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 20 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 19 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F4.0 22 0 R /F1.0 9 0 R /F2.0 10 0 R /F1.1 26 0 R /F5.0 35 0 R /F6.1 36 0 R >> /XObject << /I2 27 0 R /I4 8 0 R /Stamp2 146 0 R >> >> /Annots [24 0 R 25 0 R 28 0 R 31 0 R 33 0 R 37 0 R 40 0 R 41 0 R 43 0 R] >> endobj 21 0 obj [20 0 R /XYZ 0 841.89 null] endobj 22 0 obj << /Type /Font /BaseFont /b679d1+NotoSerif-Bold /Subtype /TrueType /FontDescriptor 160 0 R /FirstChar 32 /LastChar 255 /Widths 162 0 R /ToUnicode 161 0 R >> endobj 23 0 obj [20 0 R /XYZ 304.8901 764.42 null] endobj 24 0 obj << /Border [0 0 0] /A << /Type /Action /S /URI /URI (https://devoxx.be) >> /Subtype /Link /Rect [304.8901 750.14 342.4171 764.42] /Type /Annot >> endobj 25 0 obj << /Border [0 0 0] /A << /Type /Action /S /URI /URI (https://www.youtube.com/watch?v=1OpAgZvYXLQ&list=PLRsbF2sD7JVq7fv1GZGORShSUIae1ZAPy&index=1) >> /Subtype /Link /Rect [107.8114 706.58 244.1902 720.86] /Type /Annot >> endobj 26 0 obj << /Type /Font /BaseFont /e4b84a+NotoSerif /Subtype /TrueType /FontDescriptor 164 0 R /FirstChar 32 /LastChar 255 /Widths 166 0 R /ToUnicode 165 0 R >> endobj 27 0 obj << /Type /XObject /Subtype /Image /ColorSpace /DeviceRGB /BitsPerComponent 8 /Width 220 /Height 248 /Length 22060 /Filter [/DCTDecode] >> stream �JFIF������C�   %# , #&')*)-0-(0%()(�C   (((((((((((((((((((((((((((((((((((((((((((((((((((�������������������=����!1AQ"a2qB#3Rb$CrS���������������2�����!1AQ"aq2B#R3� ��?�$ Ipnƕ*C:AŰ�ZvܟO`/Lfee+]\}t[ڛK P(HOZ -0utb7>~g T ((bXk_Ԁ.ta( І@ۓɵ퇥`46~/;}07S [j@hv< &i 2Ik~B 9ga}vXYUyImŅ;a>rآq@�aũ'="v&ç\ (`V�c<P6D}d,Hۡ5ua<ieXq\h+*Vʧmh·rVS(%vi݇�#6MTHQv:cUɹV u^Fp) >csoFPI\8mCek�A\zlqP"}I&l o[Aua#Blc|%X$'7B\ @nv? m,PT}b5m'ߐ4 Z'?EL-h@,H6?_gH/wҬAV|+L>x* )hdnvg7�};QIw FklpzFkc#;<`r�[�MV$m;{`Z5 iPmnFg-:K!6F %*K2{[\ Qs{b)7'p_ ? %]$ bvjڜ�k{nj^8ѕn�0|II$"�+]jd[~VڞMuUhd 5 a< ۝7+7!fJShkn1Dk97b$F#kl#!^ ]Q}%O xɟ#Ikv ;k%QK`M-ۤ F;8Xx9Pf}|.wt@U)N5Ճt_P i~i'G @mc wS rHͨQ#r~U HqyM^kIҦ{�qE<5$>ͩkK"H#4]˵,YbNj[}; 5nZ + '2�HvQJ3m/'67or{ta P"ͽ)qR+KQ {-`U opnM:׶ E1-lJPԩz}6~0Ȳ EgV"~sӮ 6.D1P}7Nc{ �4{ JKܡ͏h;SbR]{,e �{7 �F5$I[) }j(UTt:\SupqVaXwa{p1Ic":"h+$GTViÝ`$0e&dF V[l7+hg\K0Am�j̰0Dk?d4+UlPb.=T0hQ#@ Гxvs7o5u4Xҁfm)p%.qJy�'Юuݑ+~PYsUiKf^!%t>sm$h>(JF6p{cxm_l~Aֆٲȫk_1Vd NttPKF nuaSQT6n{g-7 E<s2){/b^q fQZ+Il5& X (<X\{#4It A}qb'7;wĒ1}>b [|6,3 ̩o; F8 v?yǘQ)1 X:MWC&kԤR 7'\e:nzbOI&:mpB.TBi'[eJn$߸7tBs�)WAJ4p~*``,/r=DZƅ9Id $t UQfZGac{XrE8CebuIᣁJE߱ԝIiǗ. &KF[bk*Oru_P{}/:V* UѧPf"UAdRPץO"s�ce#L1/ʇ֏g]]RL-F~h ]9|T~U<�%t烿|<7�F d\lΛrm8�j4ޜrt5JqMN,F _8LU:tz|!,#˪YQEFI&k窕b+ef�/i1ؐ>^}Ͼ:_*J>ꍈ;فS R�XXHdeaeޣ$,@AP`*!7oǿ¤ٛѱ�~N!DO -"}?`[FQhFǴHJ~p &yd �xʦFZ'nM H/cē$ӁL,JJMi2in.$bFY7!MvIrg`%a}l A*H�29U3*GO"V]Z~F7$_Nwt aFu (4WO:Yf"R:CiqbHi(U}sIU%V">c NOS7:gVޝ=΀W O$RHǨ=F'�} '0RŇ`\ߐ8d=20 GOooVE~W͓ᧈǢ,= ,2)ʨM.v�Kw8clQE׃"k(+s6A :A%+,-2Ʊ+GY99m-h: -K @jؐhH)7R //nSUΔxNYK.bO%X t/%^ ho3SF6 ׷;j_A 5^rSo- l8VMxE` w~8-,X-RAo6SK/VcsmF\0DnvLORC(lZHRUFH"�WA oPgo#JHtH_SӇN݊ k'$2VV-3(g;|v,ހkk:T7�_ ȧGM,6};`5eNGlpgֺڅڴo$lcs,1ʠ͟SCUJ5Az4|Eh%@f� ګ) K:BMJw:qoQ8$zo>XGW~n]AnvzԤzR&HVo��|tUrJDRN7醍 |bX< j*�yl&^cPj3FeHClEv7pA~ݵ4*f2dپZZ@cBU*ޟuul/tg;LE�fЖ\8#R)n(QWWly;J+R5|ម>i,-HCHvǬUGdʍ.;)ӑ8`j%?j=) ;5mo5g",Sx`y| ,-6l�heJ cd H$l{ܪƋc=*8; Rl0JP�ŵun\"~eGo<KFK 3meRƞ9ƝVn4qxjd'JZ;ȉe}V.B<s09yp+#lll�:tq9EڏOIC<tu RBT([r6~r PfekSX) Q̼=�lq+s<Wt/[ᚸis<|sؒtw|*FB]*4ɭv7RrXu$Rw4^:*`3Y,ZJ@�]ѣZ{5D4i)j؎s() IQ$ډ"8\;oŸr*gtuT9ʥU+4qԬdGE)8׹߶ۑGiqb?k&_LV!- 4g9Ӎ/cA /cv>F;$,} p�7@SPSBEطXQmEHH:EqqT8ov# ΅a@?q(!CJI$Z|_-lXyao LP8:NR iZێ1T)) \oku4T) F$ũ@V7Y&<Uu1] s=vM #LwU Hy;XYɜa$>!X,ZB@7$n88+c$$|Y5-Mdx<zZ̥X5ГnXU#FU&yT?f̠-`C ~Ŷ;# =⟖Mȼa[PK5\p Vt�:n~-o)ռC'Fc;""2[k#uߐݮ~r.⒲L0I"�T7pn $PrX W5 CG);('?k[fnsWQ)-w)C CA z*c-⟚0'g4dTĎO^7 }Loa͆Mk3gg-=K U % ``٣";⵷Q>o?3<Pd2b7�X �:ROTzX$%NǦBTpGssn� Y�E`Mk{s]Y@a5 %X)ZlS8 kzj!K :X]V:ߦ kSri"nnmc* ]JmIbC^cFW L92:dɴ,5=5Tc*_HROտlOZN+tRo'nsMes CK9YD#dg^ۋg&>,g5)2Bjt/{ =X} oT #* Pr_{bZ*;}I84k'zO&&n־M_jHO'Ds`�o}$vpu~Ma^OO[P JZۋOsm�>RN|L+b9xHe}6eVH.Xg* < bZJMiYJ콍{\nSEזI1}4dI-lXIQv70<f7쒑EW,AUܟ{}۩'I3[4xv$9$-ͽ ؛\nQj+O)dK?/Q: 1W2 %lm-і!RfOY5#VtujG@6 } xuWJU|mΞ%s̑$)I=u,|U7^5хh22:hY#QpobJC&_W(u%iu*AecRH?! lgD~,PG}os*mo,?y,IM)Cڅb6�ӄSi ?9I8|XJi2|W""eݛXkxl~IittMMz~_&He*_oе@o6+ -׮X dzKv`77wW�*빵]FcSbw탛 erfh0 4uF=Vv8I- (ϔCvj+Q@c4.y BJF%<is(ٙ˲ 2<u37*X$Mj#~c!k6!I. **!+rcTyA,Y;^̤iy]Yhŕt44nWKO1;B~Vt{pE,%mFxk?W/dp-eS4uX]@O�;~v[d')֧)7Dc#f \�lEGWM':kPΪɨ) uK;k^{m8C+Kx( E5J.i]37|ʠ33h䞕\ Dlx":\_ZSLjr9|:VlfȪX˪0!I�r[?mqJs?:U$}^<}+%/Ӹоq*W42*%H7ۦ:4RLI2y`I'`-a}⻔Yx*3 v]܎nīX#TBRQ̥$]r9)gIe`~5|XjxΫ76&$[OM*ߋ/*Ihqtw{#=|iK/ةj�%J\筅1ء,2Z$ 2ŋ;~ؘ s"G&c v߿_�aMT%n�#aԣm,`z8WR|ۛ }0RbVB7kI5Cu0paI f"  0Ke- /Ċ <,H})ReE>c4]v:or1O^|/:X~ƴ5a)TJ&nڷTJ Z32/y",&i2M-OObaeXwqt �Ϩ�ѽ8`e|9_YQ6}Ջ1׸,C$n8au-J[gu%|k-nT# & CAp%WqjhgzDqR$[B_үn-~"ӷaMRWAt�pHFϤ q{k+= -d~!))yϟ:$1Unk}u+sċQiW_Ri!s29'KD\d}M@yvF$N R^jE+zzr,?hrr\ְ̫O0[PѝT+ܝ:;˓{'v*FT6!p6;5qY<)1őRo"�fb2[5abeIG5RβyH X @6w`th|S*³tK&PI}ga0zz+#*3B!;}'T'A+gIU\*`jD;5}9c�Oj;`#fzGQ+z}ߐw)靶bQ #pv/8.Ƞo`9 B*Y6`(%ê'uuuV'm#|fT$H\n1'ݡӥCy5=+ٜJq0IX[uj1w H>Y_o{a&JW5z"b[O:^6(qC>S?m== 7f̲̈[2C1)o01Uf�bC8?OYgH+<QO3(tc$=͈xbjE\Q]D%b;�͉TYAW@u+d(k/$R5|+/JMf.(AgLir´so2%kjEŹ Ote_TQR^efTJnefhf`}Hm:tᨓu1iC]&*wQ2@XC_ccEu7B2k2aI_5JиQh�A'Ԧc< 7Iig'Teyي:46HoF!=ŻiV{ث4\溦')<EIh(S6F+E?i5OO׹A-D;GrPHO'XF:eX\zO'j*P fm)K<96m&YBvOP #]H; ":b7$Ν*+cg, HU|,^x:w)2ᗉ筌fu9<F!4厲O`-|r']puH7P9OTlk_I 7`wsOR\q~do_EU&_T[R Y 6$8ӭ\ui<k𫣣\ʊ,iYRXT-PA P8YK*)ؑ5t�Y? XD<J6}G}:Y$><~eež,,ewmٷ$)PںܥlUV_ڨ@y4Œ 6,6w?ݏUXp!ЂwXa9uJzGknEs{߮FKvi]SPE`1 W#5NU+uA%a9(Ԣʍrd\l5SY_N{RY&e.zX#)|f4G,EKDo5T?g4aFz,fMO:hV"W1Q͉ 4|M"µϐPe:|HuI(($q(a FjsIW&dg-E"kL&]5t_SUBr<r|)j:XMd&Hn =q:҄z-^ A/ =82)Z\pѨO?6I3@ uʋ&_SBsO5$21�n oьr$gܕeYg2^ ,21dx-~-ؾ+x&'jmdΉ崑H7ۆzm NxX(a<U :oem<3fÉ=9tredyFh^M^T2ၰRԌ|ώ�ߥ'0њxki'1)mXZNnƗ&5>ןj\j$kJu)xd,v$v9'87Ls9*2:ԚKS0Vfy�^ bOܿ:UfmmvWVcZZSEptRp>!5[>|S!JqPyxΆ2HJmkzyzXNܿs|7O2˩"[4yM%:cgrͶ"U߿ϝP%}⎖J%Q±�Pt:*q[nK lCi:GBH=0hT$;�GocpVO3Zp80lb&r2cl�l>E]jz^l7Jb{�gٛS;p&g5ń%T`.^k5mJ?]b°sKl\3,* m+{2^NyG"1'=$^sQAE,yiA"jԷ�I^5hcJ%l2eU#1QbxxtpIUiFÃ'X|.sY;y .C +yC�AkܬVTjKl5lTjwVe1bH,\jһH! Fю99=WK<Y/e*r}:_ VSjr QURK\-d36* u;JXR}N]d5 VeUF OPbδoKFGmq'rqx)k8FX[KAm݈N&4ymU5$4ouQ2VI^l7I<?̲Zb*I)Y)y>XJ]F?( x m}QMA:C:Wh&6@nnqŭIKz aL=h!33m]iv(5)"8z)R_NRm?f(2q[LZaZn _:HKIMqS5ZIehZdPٚ{#{#[r9}߂}U|ҜQS ×dV054t^g2<K㧑cyΐ.7cv&-R$fttGhJLq{_(HeY@1J)bz[b> rG*$-ۿ `y).YEm#,�M7 kq}0Jͩd`1_/D}`řտrp0wUd$;q Q>c��>(|V9GNy %U! H`ᕵ-}''/ I[IR&# fVaumOЃqmu-[5'>/7ْ1OYIQO1x,)PWN|�^.|,1x�IUI%) ȹ-rJcPSffXj45s3D$O-ѾF$RQ;?8amحKA%E=$t1CQ̼jW:wwa*Gݗ0fs-DEvG To ,ROjn2)v4y-�.& +-^ 鎕$۶, AJ�f_NHd�uEv ok-M [#x55I$mM#$RqbYm}ihER9u4E୨J .,\0�07]D Ϊdz7Y5,,HqpK ܜ,5 &,QT}`+-}E<v8yeܖD^J]fMWY,f(BN 2 3PybIO&B7G25FO+t/q.�m-St%f[UD(pƴci5[�]}#+TB*hz!Gu8>ݰc2;h!2ASJcqܓ@Hoq)4 5X&rO8s KTp0S:Al5@u+by錢MvzXjBk~�2k&qib]�وH[M5!Gcm� /&NUCzA)Fl.wX(TK�o&W?ۼN$%.[ n][qɣ~ ZYcrp @1,%zh*I#A\UoP[~=[eJ3ś gQA,iGS*MD&V-+m&F41A:#q~SS}C$Fzr#U-!;̡EAt4`1+|%5F (CBkVmv�Z;nCː۲ixik4f�#0٬ \a]6I!πZ5G76,.GFۢ~}.u"L)cي{+PAm(wNя[C,bXb6X].y<DRHm9G ̨2ѭLR%#{iزߧb/mO+lv%Y&4+T#F`H s($X)Qr|xo*OI$fVmɷ፡%=6]83VeY ѓGQ=e Jw ci+f[nqH}C4'3:r.Ye){oHP0e8(EwJЌ˙ TG**9JS*>ɘyVq;Yok'=mrNk|q /O}*yalqKQjhTyjb hF*�]=f,uBU-GFFΣDw>Ὄ =k ;mq (xVL2`$.Բ [`NM6AuV#Fx3zH \ Rb"sn >Aaŗa_qˠĞ=Y gfyMu q|7= ~eJ3Ctbt܍͏t⒲Zw()$T6 +?u k ;M mI(Ϊ)T&�n{@ؑ�ۓQ^7GO˲J_554wň6;M%WLJ\HF4LԓeֱgR`4N5ަ9,[QSuY#nUHJZO1anHnl/ۥ͎-W IH}R""+iY ܅aOSbUu̧ȑ^4pv6[x:~TA>% X qp,۽'%&aVLDKUHW~Kuµ� U=ptzܲ1˪GS}tڕp9ܛn~{}_: ;*U;:t=-h*%,\xaZi_ePC-I vZ:s"jClGJ̪5O&fjpYig_UAtUx9Ċ%JeDf9ansxGEÜʴ+YSAhf[|I=tuc\?ᏥLUdSd[|[Gy ZMY3 2,Go3 ܘ47ZVR0!moʳ.BSQ|ZY�`Qw6N1ǖiHOkz~IV8㴆5HO�m~q+܆"BnaIdW�8+@+6銦/6PA^�j9Y.T{~x )kN^ nS iE{ H^p &"dY@@d :نǂQ})]QYr$y[6{X[- bSVR2=lI SA*KN)&a2YEaɹ#O'WS˩JFnm?ncF;7<YlJzQH ąerI�[%F\~&gNuSMi{8@zGm`m+58'25O)~$QT^w-cJQp/Ӗcrc[XA�ۚ5C2N<]b1F+]c`$b!A!O'nַ\5YK$I[o{$]GR-5okgѥ8D+ s橳[H׵O:t5"DuSX 湄5J)\F-{Ůo6bΎTs\&Uh؋5 [W'tm5Zipꦛ+E�n6xǦ"MuVٞcYWEU&]QYC#iDP�tMϨ;#~5*cR2D^LT_"GN)EԽ} 糗A틑NYK<:#̨tIoX GnrrYh`8Ir �-�O|gƍ ꚣQ:#mDpz>]B׾%+c*j> Xr bH.؜AI ]ktJr\편"~Ad,H7d؎=,Xf e?/ hgj 9oo3Pڦp겿mDbDi$pBӆ$�6 F'eZ hs�ixȕ,*N� bQyM[R,%~j�B]]D5ۍ7#2ۓepJ#UOTF+ =Ȳ38f1"0rXŎnq'p5 v} J5BSBQAߞq|IݰRњ8Pbኅb esEC%lc%0 %Kᄳ,@e%oacRtʤURֈZV&p[StWiKM%!t>_/a}EiSH+@ҒMDOfP: kz/̞ٙ5zhRF>zKXo׌bK??7QKdRTèFmiB6:ܿ\8a* .z5eD TI۞}Lnnzr W_ДɛNM4lTޡ7erdg&|rtΩ*MBeI$!O JFn6`ENM.Bn 3ٓ,pEB:*Sl X){ Y4ۣEK\Ln=@,:o T펍U6cacHL*\aKs؏* ;ٕJEKĥluOs vdS y"ݽ@rLOJ{:$!tw|j�i4hYTF%�wrnNU&9&_1�*/8Pl5� Ou:LL\\iڵl�ݷ]2 TVRfRIQ!D`Ee-,H�Rǩ8mzՔGUqm\* a!rw`@i&-uPbZی.qALg0QeRDXzA nzUH(*ic) PIk؝ Q ɸDRd d/ l{mUym1T>K dIu6=ʟ sњbu˱}9=6&?F71QNPw�Cro R\uTrMъGC&6abҧ1!zʙj*8 @.UOn8uSK$]gZiVx^Nn 77PwgMy']Hc )MD̠F$өقEȸmԎGhvISK'17$R ~FخducH낡吹db7G} ˳+ J ['~?:춢4Hu<6c/09*�_[,$L= a(_LIe$ۧ| RSSU[I$WC~pzܵDjI.K#r0c2�ࡘv7P@5 a6F@oqŰqolr.�A罰[ $Š|: -"TApTm,B=8 jF/(LMLIO̪" 7 ˒`1(y0%|K4c]om�3nycܡͲ*Vce6XOP-aQq Hx3oh3 U"]UX6~8o:q<"m|4*+B3rn>r}kɭ4M _>Q!U/eBߝ7?\$}1Km2 ZzXg@Uw#W&qQD:C;216 l{_c~m 6Uq$K5J;p4=֢jy2=AE  -}<A/I̧̧?iiUn\` 1wo[yEQdcJY$(<fD<Bw&WE50湥-~aU g*}3v;o;<4_bZ!H`Mr1ud Jpmd2-hm\ L|RH}6XoP5<)7 EMB}'IM&YE NǺǨ~g6y^5 mChqw=y$h*j@ q*Aw=^,$}Vc<~IuF]] OoFb&Ȍ#}x1w(ṣhIPiKv*x{r[ Q&Tx!C Z 7�1vnM;bs~X0p3RQ% wp( [`}D1�aZ?gDgK idO�} qϩ)"i$D 'xC`agT檬Y�ꠓΒ{n7hR֎Yb(:/k0P}7�b>e-MH;aQ{Q"*((hjJڒFH-W6|+Ը$hP7HCj%ob9GJPgYD5XL% rD[p߂Tzߟ�RԬiYʐ<�cn= y9%,P5A pLIb<&y 7bK{0RHOzD"2X)\Q Y>)QǠE-�, :\ȱm]cU%}$0ZMd؅22FV6N'F'G �[ mpP+.zqv!)�\u5ٸ$ 7Jv*LopV !c[ҧHzSз}&ֿ՘Sn{XY $̤26`9ƍ5kfR =c|>Qxh8kBk#{}B.o;WFzz:?SO%fIT�6Y�@$mkXcB[gq܋教t5QS="vSAn~붭7zT9@jO)¢TU#hw"��Q8I 'Y+ ([Ɋ&*H�J7C7RsD4F(yr skx02l*E4uO-ᖩ݄^[Iw}vvhf9xnXuXf6 Ԥsm2FczZ*3Mz|Nm2yUnx@%NM@P [ӪonG1ez'c4jdEFs4LVZNFYQԵ=q4#-7s'N$X;'ᬧBSvay_[[8nv=0+�XV@ō1yi&0ܒz}pS/e,ZrUJ %աVf`V褁muC]Wrn۱LVc57�72tՄ7+ploql03f*vǶ5 S=$m* orm/r2]G # Nz/;X3Y+N�/l ;t4]`ICEBU6ߟoQv#S6&ݶ�jjaJR-۵|ݪ|eφ^ ͩ*?GyK 4ā:NoM|<^*3Bg,<3(b5c5;KZA]IN*ؼeBG}Jp/k-OB4M<{E/Pe]^�"X\z2*/".<   mf!CLF�{�'o CP24?{H QƏFvJL%?k+)K1:/Ue.\4O2SHB8nOb:Sý73SX#O7Hrn.Tke;cUq#"f-Ii_%0"V\w`{Ptj]7:4%-K|%洫6zX_-[lR.f �mlQkME 6fĨ~gԭˑu2E 5XH *.aO=]6Mm $p$DQZ^׿^pWWePbAw ڡk$XuUk�LI64$l$R_S[o>�L PgFӠ05sU~7 1(6FЦGp.}ne 0@rxlnp#U� 7QH5Q$`px�|&(кX^1q2 �؃t+V#M#3vf3 dyWF#mJ* I k651$V2>s,gUO=?_A�)"n۩6]ڋ)H:9S̍Jg250ێ+ LY<mTsU-)_:`6؀m{~qh6&P$&uYU,/Ib4}7.+ [+qU?Y]@!+FUdmRm%U!/uq}J-KYxcïRO]̂_Zʼnߐlk[rߟw.Bc OfR=3N }dvsOgW1,Ht?;aĢE-i龟z\\6ii>DJI{uC%(P*nMƒc?Q � .0ZqePnGղv.-ۮ:#@,jxBݴ=,#]XԄ(l0�}R| 7ՊC:Ai>�5Y`WA] ׾$aF\@0tUb�m5*NX\-dkG ` ŹapQsTf~.Z剰<^^ax=w2of"!#h�'\f#/.Jx|ґv]U%~q$}q'ЦUM+jwqZ9֠Pqq#K7m"~Sj*Jj<pp�z0c)C8׉~Y&vW]Qǣa"̍`dFUSц!㥲CFw+UY|:ڮK&i%5 �`@9 WQt�arY|ieUٳ}L"eeh_m}luـtrz\T77ǑUTe9UYb.iLT"Q� Z=m~mp `hO] |+"v[ъ EӤr�PUvEH|2mk'$tB;1U|` �}0(;rs턦=ckRXn˫ka &fm:pρW" ۝+u=1R@&РqZo4bF-A Nz}p60S| V Pڔ;*[ T6nGc%HRae{C]ugCp{ #P[P Q~x1X2]QרMQ5 M}jtؑbEٍE2�c `|,G7qu&-ҷ"kyl>ތ(h*hਆHX߯;qQeYo2X(w0TUa0`bIms`;_59V6ߩ/(dz5�7'ª agh&k6t>J iͳ-v=%^CX/'VauV:ٕbxB]ܛq ݀$nN  [1�ۓDۨk@ajűu7<A4r!(7A}76`{&0Ul"J jӶjYm@XXc7?ZR18;jw %Zˋfx ."mm 킻3znTv0֘]rmsnY(j& ËF`U<GS:WW�©7m�= S?_\6́U^nX 1<1&`FzئY I.*yt2c!A`^B9O؎/ӬWm?L4FU:@0" AAvsnށz'�oakܜoc u$!6oQJPth�X ܳڛK6vuƻ�n,"/3]w'ߧ�Flw_9*<) tٿ{[iPڡ>f^K\0[,<JA7X�iy>^lvj|WMQ,oH? 1ԊT6aZH2)Fہl>LAU\ǵ^)+UX ktîtr? N`�rK2yh ]&Ì2XXM'Ya{}v[ uy(mDAH"0_qmpEf�[ampc4Ơq{a%t#U\`#0O�ŹW#rpqva`l |E`I#{} YJ؛ml* V(J c{)'g$-"P9�/̄ 6 ywT%o*y(1jl�^߈UTn؄:'r?/ Y+2iXR\ (0~p 'kcv;0jź Sj �l$2V<Lk6v Jѹ!�@nO˾0w;y`;v3,dpmqY5�`GA+=FfJ�(K#A mڐmhѬ-:? endstream endobj 28 0 obj << /Border [0 0 0] /A << /Type /Action /S /URI /URI (http://en.wikipedia.org/wiki/Wolpertinger) >> /Subtype /Link /Rect [48.24 369.1282 297.64 650.27] /Type /Annot >> endobj 29 0 obj [20 0 R /XYZ 48.24 337.3872 null] endobj 30 0 obj [20 0 R /XYZ 48.24 337.3872 null] endobj 31 0 obj << /Border [0 0 0] /A << /Type /Action /S /URI /URI (http://en.wikipedia.org/wiki/Wolpertinger) >> /Subtype /Link /Rect [227.3694 323.1072 308.0374 337.3872] /Type /Annot >> endobj 32 0 obj [20 0 R /XYZ 359.1928 305.8272 null] endobj 33 0 obj << /Border [0 0 0] /Dest (_footnotedef_1) /Subtype /Link /Rect [361.3904 298.3828 364.8123 306.708] /Type /Annot >> endobj 34 0 obj [20 0 R /XYZ 233.2406 272.1252 null] endobj 35 0 obj << /Type /Font /BaseFont /0d3944+mplus1mn-regular /Subtype /TrueType /FontDescriptor 168 0 R /FirstChar 32 /LastChar 255 /Widths 170 0 R /ToUnicode 169 0 R >> endobj 36 0 obj << /Type /Font /BaseFont /24e1a9+FontAwesome5Free-Solid /Subtype /TrueType /FontDescriptor 172 0 R /FirstChar 32 /LastChar 255 /Widths 174 0 R /ToUnicode 173 0 R >> endobj 37 0 obj << /Border [0 0 0] /Dest (_footnotedef_1) /Subtype /Link /Rect [230.4321 217.1208 233.854 225.446] /Type /Annot >> endobj 38 0 obj [20 0 R /XYZ 0 149.9752 null] endobj 39 0 obj [20 0 R /XYZ 102.6513 109.1452 null] endobj 40 0 obj << /Border [0 0 0] /A << /Type /Action /S /URI /URI (http://www.sintbernardus.be/stbernardusabt12.php?l=en) >> /Subtype /Link /Rect [535.0175 94.8652 547.04 109.1452] /Type /Annot >> endobj 41 0 obj << /Border [0 0 0] /A << /Type /Action /S /URI /URI (http://www.sintbernardus.be/stbernardusabt12.php?l=en) >> /Subtype /Link /Rect [48.24 79.0852 135.8205 93.3652] /Type /Annot >> endobj 42 0 obj [20 0 R /XYZ 48.24 62.6914 null] endobj 43 0 obj << /Border [0 0 0] /Dest (_footnoteref_1) /Subtype /Link /Rect [51.112 51.8114 55.584 62.6914] /Type /Annot >> endobj 44 0 obj << /Length 11779 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 782.394 Td /F4.0 22 Tf <4368617074657220322e205468652052617661676573206f662057726974696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 753.206 Td /F1.0 10.5 Tf <4372797374616c6c696e6520584d4c20746167732072656c656e746c6573736c7920626f6d6261726465642074686520746865617465722e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 726.0242 Td /F2.0 9.975 Tf <4c697374696e6720312e20584d4c2074616773> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.9608 0.9608 0.9608 scn 52.24 718.399 m 543.04 718.399 l 545.2491 718.399 547.04 716.6081 547.04 714.399 c 547.04 611.959 l 547.04 609.7499 545.2491 607.959 543.04 607.959 c 52.24 607.959 l 50.0309 607.959 48.24 609.7499 48.24 611.959 c 48.24 714.399 l 48.24 716.6081 50.0309 718.399 52.24 718.399 c h f 0.8 0.8 0.8 SCN 0.75 w 52.24 718.399 m 543.04 718.399 l 545.2491 718.399 547.04 716.6081 547.04 714.399 c 547.04 611.959 l 547.04 609.7499 545.2491 607.959 543.04 607.959 c 52.24 607.959 l 50.0309 607.959 48.24 609.7499 48.24 611.959 c 48.24 714.399 l 48.24 716.6081 50.0309 718.399 52.24 718.399 c h S Q 0.7333 0.0 0.4 scn 0.7333 0.0 0.4 SCN BT 59.24 695.574 Td /F7.0 11 Tf <3c617574686f72> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 97.74 695.574 Td /F5.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.4 0.6 scn 0.2 0.4 0.6 SCN BT 103.24 695.574 Td /F5.0 11 Tf <69643d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.8667 0.1333 0.0 scn 0.8667 0.1333 0.0 SCN BT 119.74 695.574 Td /F5.0 11 Tf <223122> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.7333 0.0 0.4 scn 0.7333 0.0 0.4 SCN BT 136.24 695.574 Td /F7.0 11 Tf <3e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 680.834 Td /F5.0 11 Tf <ca20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.7333 0.0 0.4 scn 0.7333 0.0 0.4 SCN BT 70.24 680.834 Td /F7.0 11 Tf <3c706572736f6e6e616d653e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 666.094 Td /F5.0 11 Tf <ca202020> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.7333 0.0 0.4 scn 0.7333 0.0 0.4 SCN BT 81.24 666.094 Td /F7.0 11 Tf <3c66697273746e616d653e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 141.74 666.094 Td /F5.0 11 Tf <4c617a61727573> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.7333 0.0 0.4 scn 0.7333 0.0 0.4 SCN BT 180.24 666.094 Td /F7.0 11 Tf <3c2f66697273746e616d653e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 651.354 Td /F5.0 11 Tf <ca202020> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.7333 0.0 0.4 scn 0.7333 0.0 0.4 SCN BT 81.24 651.354 Td /F7.0 11 Tf <3c7375726e616d653e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 130.74 651.354 Td /F5.0 11 Tf <68657420447261656b65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.7333 0.0 0.4 scn 0.7333 0.0 0.4 SCN BT 185.74 651.354 Td /F7.0 11 Tf <3c2f7375726e616d653e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 636.614 Td /F5.0 11 Tf <ca20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.7333 0.0 0.4 scn 0.7333 0.0 0.4 SCN BT 70.24 636.614 Td /F7.0 11 Tf <3c2f706572736f6e6e616d653e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.7333 0.0 0.4 scn 0.7333 0.0 0.4 SCN BT 59.24 621.874 Td /F7.0 11 Tf <3c2f617574686f723e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 583.995 Td /F1.0 10.5 Tf [<44657370697465207468652061737361756c742c20776520636f6e74696e756564206f7572207075727375697420746f206472> 20.0195 <6166742061204465664f7073>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 361.7068 589.5521 Td /F1.0 6.1215 Tf <5b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2588 0.5451 0.7922 scn 0.2588 0.5451 0.7922 SCN BT 363.9044 589.5521 Td /F1.0 6.1215 Tf <31> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 367.3263 589.5521 Td /F1.0 6.1215 Tf <5d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 369.524 583.995 Td /F1.0 10.5 Tf <20706c616e2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 556.8132 Td /F2.0 9.975 Tf <4578616d706c6520312e204465664f707320506c616e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 1.0 1.0 1.0 scn 52.24 549.188 m 543.04 549.188 l 545.2491 549.188 547.04 547.3971 547.04 545.188 c 547.04 469.848 l 547.04 467.6389 545.2491 465.848 543.04 465.848 c 52.24 465.848 l 50.0309 465.848 48.24 467.6389 48.24 469.848 c 48.24 545.188 l 48.24 547.3971 50.0309 549.188 52.24 549.188 c h f 0.9333 0.9333 0.9333 SCN 0.75 w 52.24 549.188 m 543.04 549.188 l 545.2491 549.188 547.04 547.3971 547.04 545.188 c 547.04 469.848 l 547.04 467.6389 545.2491 465.848 543.04 465.848 c 52.24 465.848 l 50.0309 465.848 48.24 467.6389 48.24 469.848 c 48.24 545.188 l 48.24 547.3971 50.0309 549.188 52.24 549.188 c h S Q 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 60.24 525.224 Td /F1.0 10.5 Tf <436c69636b20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 87.2985 525.224 Td /F4.0 10.5 Tf <5b> Tj /F4.1 10.5 Tf <21> Tj /F4.0 10.5 Tf <446f776e6c6f6164205a6970> Tj /F4.1 10.5 Tf <21> Tj /F4.0 10.5 Tf <5d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 174.039 525.224 Td /F1.0 10.5 Tf [<20746f20646f776e6c6f61642074686520646566656e73697665206f706572> 20.0195 <6174696f6e20706c616e2062756e646c652e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.4952 Tw BT 60.24 497.444 Td /F1.0 10.5 Tf <4f4d472120536f6d65626f647920706c656173652073617665207573206e6f772120492077616e74206d79206d756d> Tj /F1.1 10.5 Tf <24> Tj /F1.0 10.5 Tf <d1> Tj /F1.1 10.5 Tf <24> Tj /F1.0 10.5 Tf [<616e6420616e2065787472> 20.0195 <612d6c6172676520646f75626c65206d616363686961746f2c>] TJ ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 60.24 481.664 Td /F1.0 10.5 Tf <706c656173652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.3095 Tw BT 48.24 441.884 Td /F1.0 10.5 Tf [<556e666f7274756e616c79> 89.8438 <2c204c617a6172757320616e6420492068616420626f746820636f6d6520746f2074686520636f6e636c7573696f6e207468617420776520776572656ed57420676f696e6720746f20676574206f7574206f662074686973>] TJ ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 426.104 Td /F1.0 10.5 Tf <776974686f757420636f7272757074656420686172647269766573206966207765206469646ed574206c6f63617465206361666665696e652077697468696e20746865206e6578742066657720686f7572732e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 386.264 Td /F4.0 18 Tf [<322e312e20412052656369706520666f7220506f74696f6e20546861742057696c6c20456e737572652059> 69.8242 <6f752057696e20746865>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 361.784 Td /F4.0 18 Tf <486561727473206f6620446576656c6f70657273> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 1.2801 Tw BT 48.24 333.764 Td /F1.0 10.5 Tf <5468697320706f74696f6e20666f7220612073616d706c6520646f63756d656e7420636f6e7461696e732074686520666f6c6c6f77696e6720696e6772656469656e74732c20776869636820617265206c697374656420696e20612076657279> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 317.984 Td /F1.0 10.5 Tf [<72> 20.0195 <616e646f6d2c206368616f746963616c6c79206e6573746564206f726465722e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 290.8022 Td /F2.0 9.975 Tf <496e6772656469656e747320666f7220506f74696f6e20746861742044656d797374696669657320446f63756d656e7473> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 56.8805 271.213 Td /F1.0 10.5 Tf <a5> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 66.24 271.213 Td /F1.0 10.5 Tf <616c6c207468652068656164696e6773> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 74.954 249.433 Td /F1.1 10.5 Tf <25> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 84.24 249.433 Td /F1.0 10.5 Tf <73796e74617820686967686c69676874656420736f7572636520636f6465> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 92.954 227.653 Td /F1.1 10.5 Tf <26> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 102.24 227.653 Td /F1.0 10.5 Tf <6e6f6e2d73796e74617820686967686c69676874656420736f7572636520636f6465206f72206a7573742061206c697374696e6720626c6f636b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 56.8805 205.873 Td /F1.0 10.5 Tf <a5> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 66.24 205.873 Td /F1.0 10.5 Tf <71756f746520626c6f636b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 74.954 184.093 Td /F1.1 10.5 Tf <25> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 84.24 184.093 Td /F1.0 10.5 Tf <766572736520626c6f636b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 92.954 162.313 Td /F1.1 10.5 Tf <26> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 102.24 162.313 Td /F1.0 10.5 Tf <7461626c65207769746820736f6d652063656c6c20666f726d617474696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 110.954 140.533 Td /F1.1 10.5 Tf <26> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 120.24 140.533 Td /F1.0 10.5 Tf [<73657175656e7469616c20706172> 20.0195 <616772> 20.0195 <61706873>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 128.954 118.753 Td /F1.1 10.5 Tf <26> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 138.24 118.753 Td /F1.0 10.5 Tf <61646d6f6e6974696f6e20626c6f636b732c2062757420757365207468656d2073706172696e676c79> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 92.954 96.973 Td /F1.1 10.5 Tf <26> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 102.24 96.973 Td /F1.0 10.5 Tf <62756c6c6574206c6973742077697468206e657374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 74.954 75.193 Td /F1.1 10.5 Tf <25> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 84.24 75.193 Td /F1.0 10.5 Tf <6e756d6265726564206c6973742077697468206e657374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 74.954 53.413 Td /F1.1 10.5 Tf <25> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 84.24 53.413 Td /F1.0 10.5 Tf <646566696e6974696f6e206c697374> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d q 18.0 0.0 0.0 20.0665 288.64 813.8568 cm /I5 Do Q 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN BT 480.9262 820.398 Td /F2.0 9 Tf [<436f6d70616e> 20.0195 <79204e616d65>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /Stamp1 Do 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 211.1574 16.663 Td /F1.0 9 Tf [<322e312e20412052656369706520666f7220506f74696f6e20546861742057696c6c20456e737572652059> 69.8242 <6f752057696e2074686520486561727473206f6620446576656c6f70657273207c2033>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 45 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 44 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F4.0 22 0 R /F1.0 9 0 R /F2.0 10 0 R /F7.0 47 0 R /F5.0 35 0 R /F4.1 49 0 R /F1.1 26 0 R >> /XObject << /I5 8 0 R /Stamp1 145 0 R >> >> /Annots [48 0 R] >> endobj 46 0 obj [45 0 R /XYZ 0 841.89 null] endobj 47 0 obj << /Type /Font /BaseFont /425da5+mplus1mn-bold /Subtype /TrueType /FontDescriptor 176 0 R /FirstChar 32 /LastChar 255 /Widths 178 0 R /ToUnicode 177 0 R >> endobj 48 0 obj << /Border [0 0 0] /Dest (_footnotedef_1) /Subtype /Link /Rect [363.9044 587.7646 367.3263 596.0899] /Type /Annot >> endobj 49 0 obj << /Type /Font /BaseFont /bbf95d+NotoSerif-Bold /Subtype /TrueType /FontDescriptor 180 0 R /FirstChar 32 /LastChar 255 /Widths 182 0 R /ToUnicode 181 0 R >> endobj 50 0 obj [45 0 R /XYZ 0 410.288 null] endobj 51 0 obj << /Length 9516 >> stream q -0.5 Tc 0.0 Tc -0.5 Tc /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 92.954 793.926 Td /F1.1 10.5 Tf <26> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 102.24 793.926 Td /F1.0 10.5 Tf <73696465626172> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 56.8805 772.146 Td /F1.0 10.5 Tf <a5> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 66.24 772.146 Td /F1.0 10.5 Tf <6578616d706c6520626c6f636b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 74.954 750.366 Td /F1.1 10.5 Tf <25> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 84.24 750.366 Td /F1.0 10.5 Tf <626c6f636b20696d61676520286e6f20696e6c696e6520696d6167657329> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 92.954 728.586 Td /F1.1 10.5 Tf <26> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 102.24 728.586 Td /F1.0 10.5 Tf [<696e6c696e6520666f726d617474696e6720696e206120706172> 20.0195 <616772> 20.0195 <617068>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 110.954 706.806 Td /F1.1 10.5 Tf <26> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 120.24 706.806 Td /F1.0 10.5 Tf <74776f20667265736820427572646f636b69616e206c6561766573> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 128.954 685.026 Td /F1.1 10.5 Tf <26> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 138.24 685.026 Td /F1.0 10.5 Tf [<54686579206d757374206265206861727665737465642062> 20.0195 <7920746865206c69676874206f6620746865207465616c206d6f6f6e732e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 657.246 Td /F1.0 10.5 Tf <41726520796f75207371756172653f> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 56.954 629.466 Td /F1.1 10.5 Tf <26> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 66.24 629.466 Td /F1.0 10.5 Tf <6f6e65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 56.954 607.686 Td /F1.1 10.5 Tf <26> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 66.24 607.686 Td /F1.0 10.5 Tf <74776f> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 56.954 585.906 Td /F1.1 10.5 Tf <26> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 66.24 585.906 Td /F1.0 10.5 Tf <7468726565> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 558.126 Td /F1.0 10.5 Tf <5768617420697320746865726520746f20646f3f> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 52.145 530.346 Td /F1.1 10.5 Tf <27> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 66.24 530.346 Td /F1.0 10.5 Tf <446f6e65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 52.145 508.566 Td /F1.1 10.5 Tf <28> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 66.24 508.566 Td /F1.0 10.5 Tf <4e657874> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 66.24 486.786 Td /F1.0 10.5 Tf <57686fd57320636f756e74696e673f> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 452.286 Td /F4.0 13 Tf <322e312e312e20536561726368696e6720666f7220427572646f636b69616e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 426.3242 Td /F2.0 9.975 Tf <537465707320666f722066696e64696e6720616e6420707265706172696e6720427572646f636b69616e206c6561766573> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 52.6765 406.735 Td /F1.0 10.5 Tf <312e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 66.24 406.735 Td /F1.0 10.5 Tf [<4c6f6361746520647573747920626f74616e> 20.0195 <79>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 70.645 384.955 Td /F1.0 10.5 Tf <612e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 84.24 384.955 Td /F1.0 10.5 Tf <536e65657a65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 91.1965 363.175 Td /F1.0 10.5 Tf <692e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 102.24 363.175 Td /F1.0 10.5 Tf <536e65657a6520736f6d65206d6f7265> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 52.6765 341.395 Td /F1.0 10.5 Tf <322e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 66.24 341.395 Td /F1.0 10.5 Tf <46696e642073656374696f6e206f6e20427572646f636b69616e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 70.645 319.615 Td /F1.0 10.5 Tf <612e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 84.24 319.615 Td /F1.0 10.5 Tf [<526576696577206974732063686172> 20.0195 <6163746572697374696373>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 91.1965 297.835 Td /F1.0 10.5 Tf <692e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 102.24 297.835 Td /F1.0 10.5 Tf [<54> 29.7852 <616b> 20.0195 <6520612070696374757265206f6620746865206469616772> 20.0195 <616d206f6620697473206c6561766573>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 105.1435 276.055 Td /F1.0 10.5 Tf <412e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 120.24 276.055 Td /F1.0 10.5 Tf [<446f6ed57420726970206f7574207468652070696374757265206c696b> 20.0195 <6520612074726f676c6f64797465>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 126.6925 254.275 Td /F1.0 10.5 Tf <492e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 138.24 254.275 Td /F1.0 10.5 Tf <446f6ed57420646f2069742c2049d56d207761746368696e6720796f75> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 52.6765 232.495 Td /F1.0 10.5 Tf <332e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 66.24 232.495 Td /F1.0 10.5 Tf <507574206f6e20796f75722068696b696e6720626f6f7473> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 52.6765 210.715 Td /F1.0 10.5 Tf <342e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 66.24 210.715 Td /F1.0 10.5 Tf <467265657a6520796f75722062757474206f6666206f6e207468652073696465206f662061206d6f756e7461696e206174206d69646e69676874> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 182.935 Td /F1.0 10.5 Tf <4c6574d57320736b697020612066657720737465707320616e6420737461727420636f756e74696e672066726f6d2031302e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 47.307 155.155 Td /F1.0 10.5 Tf <31302e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 66.24 155.155 Td /F1.0 10.5 Tf [<6172> 20.0195 <616269632028313029>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 70.645 133.375 Td /F1.0 10.5 Tf <612e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 84.24 133.375 Td /F1.0 10.5 Tf [<6c6f776572> 20.0195 <616c70686120286129>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 91.1965 111.595 Td /F1.0 10.5 Tf <692e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 102.24 111.595 Td /F1.0 10.5 Tf <6c6f776572726f6d616e20286929> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 88.347 89.815 Td /F1.0 10.5 Tf <69692e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 102.24 89.815 Td /F1.0 10.5 Tf <6c6f776572726f6d616e2028696929> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 85.4975 68.035 Td /F1.0 10.5 Tf <6969692e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 102.24 68.035 Td /F1.0 10.5 Tf <6c6f776572726f6d616e202869696929> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN BT 48.24 820.398 Td /F2.0 9 Tf [<436f6d70616e> 20.0195 <79204e616d65>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 18.0 0.0 0.0 20.0665 288.64 813.8568 cm /I6 Do Q Q q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /Stamp2 Do 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 49.24 16.663 Td /F1.0 9 Tf <34207c204368617074657220322e205468652052617661676573206f662057726974696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 52 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 51 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.1 26 0 R /F1.0 9 0 R /F4.0 22 0 R /F2.0 10 0 R >> /XObject << /I6 8 0 R /Stamp2 146 0 R >> >> >> endobj 53 0 obj [52 0 R /XYZ 0 470.97 null] endobj 54 0 obj << /Length 7806 >> stream q -0.5 Tc 0.0 Tc -0.5 Tc /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 86.3502 793.926 Td /F1.0 10.5 Tf [<6976> 69.8242 <2e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 102.24 793.926 Td /F1.0 10.5 Tf <6c6f776572726f6d616e2028697629> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 105.1435 772.146 Td /F1.0 10.5 Tf <412e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 120.24 772.146 Td /F1.0 10.5 Tf [<7570706572> 20.0195 <616c70686120284129>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 47.307 750.366 Td /F1.0 10.5 Tf <31312e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 66.24 750.366 Td /F1.0 10.5 Tf [<6172> 20.0195 <616269632028313129>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 722.586 Td /F1.0 10.5 Tf <4974d5732074696d6520666f72206120746f702035206c6973742c206d616465207573696e672074686520> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 244.422 722.586 Td /F5.0 10.5 Tf <7265766572736564> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 286.422 722.586 Td /F1.0 10.5 Tf <206f7074696f6e206f6e20616e206f726465726564206c69737421> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 52.6765 694.806 Td /F1.0 10.5 Tf <352e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 66.24 694.806 Td /F1.0 10.5 Tf <53746f6e6520496d70657269616c205275737369616e2053746f7574> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 52.6765 673.026 Td /F1.0 10.5 Tf <342e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 66.24 673.026 Td /F1.0 10.5 Tf [<506c696e> 20.0195 <792074686520456c646572>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 52.6765 651.246 Td /F1.0 10.5 Tf <332e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 66.24 651.246 Td /F1.0 10.5 Tf [<4368696d61> 20.0195 <79204772> 20.0195 <616e646520528e73657276652028426c756529>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 52.6765 629.466 Td /F1.0 10.5 Tf <322e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 66.24 629.466 Td /F1.0 10.5 Tf <53742e204265726e617264757320416274203132> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 52.6765 607.686 Td /F1.0 10.5 Tf <312e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 66.24 607.686 Td /F1.0 10.5 Tf [<57> 60.0586 <657374766c65746572656e203132202858494929>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 579.906 Td /F1.0 10.5 Tf <486f772061626f75742061206c697374207769746820736f6d65207465726d733f> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 56.8805 552.126 Td /F1.0 10.5 Tf <a5> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 66.24 552.126 Td /F1.0 10.5 Tf <467275697473> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 66.24 524.346 Td /F4.0 10.5 Tf <4170706c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 1.0913 Tw BT 81.24 505.566 Td /F1.0 10.5 Tf [<54686520726f756e64206672756974206f6620612074726565206f662074686520726f73652066616d696c79> 89.8438 <2c207768696368207479706963616c6c7920686173207468696e20726564206f7220677265656e20736b696e20616e64>] TJ ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 81.24 489.786 Td /F1.0 10.5 Tf [<637269737020666c6573682e2059> 69.8242 <65732c2049207361696420>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 189.3183 489.786 Td /F2.0 10.5 Tf <666c657368> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 212.1663 489.786 Td /F1.0 10.5 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 66.24 462.006 Td /F4.0 10.5 Tf <50656172> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 1.3357 Tw BT 81.24 443.226 Td /F1.0 10.5 Tf <412079656c6c6f776973682d206f722062726f776e6973682d677265656e20656469626c652066727569742074686174206973207479706963616c6c79206e6172726f7720617420746865207374616c6b20616e64207769646572> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 81.24 427.446 Td /F1.0 10.5 Tf <746f776172642074686520626173652c20776974682073776565742c20736c696768746c792067726974747920666c6573682e204d6f726520666c6573682e204d6d6d6d6d2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 56.8805 399.666 Td /F1.0 10.5 Tf <a5> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 66.24 399.666 Td /F1.0 10.5 Tf [<56> 60.0586 <6567657461626c6573>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 66.24 371.886 Td /F4.0 10.5 Tf <436172726f74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 81.24 353.106 Td /F1.0 10.5 Tf [<416e206f72> 20.0195 <616e67652d636f6c6f72656420726f6f7420656174656e206173206120766567657461626c652e204265776172652c206974d5732061206661766f72697465206f66207468652057> 60.0586 <6f6c70657274696e6765722e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 315.276 Td /F4.0 10.5 Tf [<4172652059> 69.8242 <6f75205374696c6c20486572653f>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.5 w 0.9333 0.9333 0.9333 SCN 108.24 301.41 m 108.24 242.859 l S Q 0.749 0.2039 0.0 scn 0.749 0.2039 0.0 SCN BT 69.24 263.1345 Td /F6.1 24 Tf <22> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 120.24 286.0442 Td /F2.0 9.975 Tf <4d6f76652c206d6f76652c206d6f766521> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.1101 Tw BT 120.24 266.455 Td /F1.0 10.5 Tf [<5468652057> 60.0586 <6f6c70657274696e676572732063616e20736d656c6c20796f75722070726f6372> 20.0195 <617374696e6174696f6e2e204974d573206e6f74207468656972206661756c7420796f752063616ed5742066696e64>] TJ ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 120.24 250.675 Td /F1.0 10.5 Tf <796f757220626f6f74732e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 216.447 Td /F4.0 9 Tf <53696768c9> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.5 w 0.9333 0.9333 0.9333 SCN 108.24 203.019 m 108.24 179.239 l S Q 0.0667 0.0667 0.0667 scn 0.0667 0.0667 0.0667 SCN BT 70.0716 182.2115 Td /F8.1 23.78 Tf <21> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 120.24 187.055 Td /F1.0 10.5 Tf [<59> 69.8242 <6f757220626f6f74732061726520696e20796f757220636c6f7365742e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d q 18.0 0.0 0.0 20.0665 288.64 813.8568 cm /I7 Do Q 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN BT 480.9262 820.398 Td /F2.0 9 Tf [<436f6d70616e> 20.0195 <79204e616d65>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /Stamp1 Do 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 211.1574 16.663 Td /F1.0 9 Tf [<322e312e20412052656369706520666f7220506f74696f6e20546861742057696c6c20456e737572652059> 69.8242 <6f752057696e2074686520486561727473206f6620446576656c6f70657273207c2035>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 55 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 54 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 9 0 R /F5.0 35 0 R /F4.0 22 0 R /F2.0 10 0 R /F6.1 36 0 R /F8.1 58 0 R >> /XObject << /I7 8 0 R /Stamp1 145 0 R >> >> >> endobj 56 0 obj [55 0 R /XYZ 0 331.29 null] endobj 57 0 obj [55 0 R /XYZ 0 230.859 null] endobj 58 0 obj << /Type /Font /BaseFont /72b0f2+FontAwesome5Free-Regular /Subtype /TrueType /FontDescriptor 184 0 R /FirstChar 32 /LastChar 255 /Widths 186 0 R /ToUnicode 185 0 R >> endobj 59 0 obj << /Length 3912 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 782.394 Td /F4.0 22 Tf <4368617074657220332e204461776e206f6e2074686520506c6174656175> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 753.206 Td /F1.0 10.5 Tf <4c617a61727573207761732068616e67696e672066726f6d2074686520626f74746f6d206c696d62206f66206120427572646f636b69616e20747265652c206c69636b696e6720746865206261726b2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 62.74 722.5774 Td /F1.0 13 Tf <4f6e20706176656d656e747320616e6420746865206261726b206f662074726565732049206861766520666f756e642077686f6c6520776f726c64732e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN BT 62.74 695.598 Td /F1.0 9 Tf [<d1204d61726b2054> 29.7852 <6f626579>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 5 w 0.9333 0.9333 0.9333 SCN 50.74 737.39 m 50.74 689.3271 l S Q 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 665.3631 Td /F1.0 10.5 Tf <d24966207468657265206172652077686f6c6520776f726c6473206f6e2074686174206261726b2c206865206a757374207377616c6c6f776564207468656d2cd3204b697a6d6574207265706c6965642e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 62.74 634.7346 Td /F1.0 13 Tf <4e6f206261726b20776173206861726d656420696e20746865206d616b696e67206f66207468697320706f74696f6e2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 62.74 615.1974 Td /F1.0 13 Tf [<ca20202057> 60.0586 <65d57265206e6f7420736f20737572652061626f7574206120636f75706c6520616e74732074686f7567682e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 62.74 576.1231 Td /F1.0 13 Tf <ca202020202020204e6f722074686f736520776f726c6473c9> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 62.74 537.0489 Td /F1.0 13 Tf [<ca202020204372> 20.0195 <61702c204920736d656c6c20616e20696e6a756e6374696f6e2e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN BT 62.74 510.0694 Td /F1.0 9 Tf <d12054686520646f63756d656e746174696f6e206174746f726e657973> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 5 w 0.9333 0.9333 0.9333 SCN 50.74 649.5471 m 50.74 503.7986 l S Q 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 479.8346 Td /F1.0 10.5 Tf [<57> 60.0586 <65d5642072657472696576656420746865206c65617665732c20627574207765d564206f6276696f75736c79206c6f7374206f7572206d696e647320696e207468652070726f636573732e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 62.74 449.206 Td /F1.0 13 Tf <526f7365732061726520> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 1.0 0.0 0.0 scn 1.0 0.0 0.0 SCN BT 124.555 449.206 Td /F1.0 13 Tf <726564> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 145.602 449.206 Td /F1.0 13 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 62.74 429.6689 Td /F1.0 13 Tf <56696f6c6574732061726520> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.0 1.0 scn 0.0 0.0 1.0 SCN BT 131.692 429.6689 Td /F1.0 13 Tf <626c7565> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 158.888 429.6689 Td /F2.0 13 Tf <2d697368> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 180.676 429.6689 Td /F1.0 13 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 5 w 0.9333 0.9333 0.9333 SCN 50.74 464.0186 m 50.74 421.9443 l S Q q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN BT 48.24 820.398 Td /F2.0 9 Tf [<436f6d70616e> 20.0195 <79204e616d65>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 18.0 0.0 0.0 20.0665 288.64 813.8568 cm /I8 Do Q Q q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /Stamp2 Do 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 49.24 16.663 Td /F1.0 9 Tf <36207c204368617074657220332e204461776e206f6e2074686520506c6174656175> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 60 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 59 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F4.0 22 0 R /F1.0 9 0 R /F2.0 10 0 R >> /XObject << /I8 8 0 R /Stamp2 146 0 R >> >> >> endobj 61 0 obj [60 0 R /XYZ 0 841.89 null] endobj 62 0 obj << /Length 11520 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 782.394 Td /F4.0 22 Tf [<4368617074657220342e2057> 60.0586 <6f72647320536561736f6e6564207769746820506f776572>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.6745 Tw BT 48.24 753.206 Td /F1.0 10.5 Tf [<54> 29.7852 <6f20>] TJ ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.6745 Tw BT 63.8058 753.206 Td /F2.0 10.5 Tf <74616d65> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.6745 Tw BT 88.3233 753.206 Td /F1.0 10.5 Tf <2074686520> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.1333 0.1333 0.1333 scn 0.1333 0.1333 0.1333 SCN 0.7373 0.8392 0.2157 scn 111.0818 748.64 31.9695 17.28 re f 0.1333 0.1333 0.1333 scn BT 112.5818 753.206 Td /F2.0 10.5 Tf <57494c44> Tj ET 0.6745 Tw BT 111.0818 753.206 Td ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.6745 Tw BT 143.0513 753.206 Td /F1.0 10.5 Tf <20776f6c70657274696e676572732c207765206e656564656420746f206275696c64206120> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.6745 Tw BT 332.4994 753.206 Td /F4.0 10.5 Tf <636861726d> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.6745 Tw BT 367.1284 753.206 Td /F1.0 10.5 Tf <2e2042757420> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.6745 Tw BT 393.7509 753.206 Td /F4.0 10.5 Tf <756c> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.6745 Tw BT 404.4399 753.206 Td /F1.0 10.5 Tf <74696d61746520766963746f727920636f756c64206f6e6c79206265> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 737.426 Td /F1.0 10.5 Tf <776f6e20696620776520646976696e65642074686520> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 159.603 737.426 Td /F3.0 10.5 Tf <74727565206e616d65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 214.959 737.426 Td /F1.0 10.5 Tf <206f662074686520> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 249.021 737.426 Td /F2.0 10.5 Tf <776172> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 268.593 737.426 Td /F1.0 10.5 Tf <6c6f636b2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 1.2201 Tw BT 48.24 709.646 Td /F1.0 10.5 Tf [<d257686174206b696e64206f6620636861726d3fd3204c617a617275732061736b> 20.0195 <65642e20d2416e206f646f72696665726f7573206f6e65206f722061206d696e6572> 20.0195 <616c206f6e653fd3204b697a6d65742073687275676765642e>] TJ ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.8419 Tw BT 48.24 693.866 Td /F1.0 10.5 Tf [<d2546865206e6f74652066726f6d204f6c6166> -80.0781 <d573206465736b207361> 20.0195 <797320d4776f726d776f6f6420616e64206c69636f726963652cd52062757420746865736520636f756c64206265206e6f726d616c2067726f63657269657320666f72>] TJ ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 678.086 Td /F1.0 10.5 Tf <77657265776f6c7665732ed3> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.5535 Tw BT 48.24 650.306 Td /F1.0 10.5 Tf [<d257> 60.0586 <656c6c207468652048>] TJ ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.5535 Tw BT 106.2775 648.5185 Td /F1.0 6.1215 Tf <32> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.5535 Tw BT 109.6994 650.306 Td /F1.0 10.5 Tf <4f207772697474656e206f6e20746865207365637572697479207768697465626f61726420636f756c642062652070617274206f6620612073686f7070696e67206c6973742c20627574204920646f6ed574207468696e6b> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 634.526 Td /F1.0 10.5 Tf <746865206c6f63616c20626f6465676120616c736f2073656c6c732065203d206d63> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 211.095 640.0831 Td /F1.0 6.1215 Tf <32> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 214.5169 634.526 Td /F1.0 10.5 Tf <2cd3204c617a61727573207265706c6965642e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 1.4728 Tw BT 48.24 606.746 Td /F1.0 10.5 Tf [<d257> 49.8047 <61697421d320496e6469676f20706c75636b> 20.0195 <6564206120736d616c6c207669616c2066726f6d20686572206465736bd57320746f70206472> 20.0195 <6177657220616e642068656c6420697420746f776172642075732e20546865207669616cd573>] TJ ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 590.966 Td /F1.0 10.5 Tf <6c6162656c207265616420d4> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 103.6695 590.966 Td /F5.0 10.5 Tf <65203d206d63> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 135.1695 595.4408 Td /F5.0 6.1215 Tf <32> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 138.2303 590.966 Td /F5.0 10.5 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 143.4803 590.966 Td /F9.0 10.5 Tf <746865207363656e74206f6620736369656e6365> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 248.4803 590.966 Td /F5.0 10.5 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 253.7303 590.966 Td /F10.0 10.5 Tf <736d656c6c73206c696b6520612067656e697573> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 358.7303 590.966 Td /F1.0 10.5 Tf <d52e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 551.126 Td /F4.0 18 Tf <342e312e2043616e20492047657420536f6d6520> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 225.108 551.126 Td /F5.0 18 Tf <436f6465> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 261.108 551.126 Td /F4.0 18 Tf <3f> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 523.106 Td /F1.0 10.5 Tf <537572652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 507.326 Td /F1.0 10.5 Tf <486176652061206c697374696e6720626c6f636b2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.9608 0.9608 0.9608 scn 52.24 491.51 m 543.04 491.51 l 545.2491 491.51 547.04 489.7191 547.04 487.51 c 547.04 444.03 l 547.04 441.8209 545.2491 440.03 543.04 440.03 c 52.24 440.03 l 50.0309 440.03 48.24 441.8209 48.24 444.03 c 48.24 487.51 l 48.24 489.7191 50.0309 491.51 52.24 491.51 c h f 0.8 0.8 0.8 SCN 0.75 w 52.24 491.51 m 543.04 491.51 l 545.2491 491.51 547.04 489.7191 547.04 487.51 c 547.04 444.03 l 547.04 441.8209 545.2491 440.03 543.04 440.03 c 52.24 440.03 l 50.0309 440.03 48.24 441.8209 48.24 444.03 c 48.24 487.51 l 48.24 489.7191 50.0309 491.51 52.24 491.51 c h S Q 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 468.685 Td /F5.0 11 Tf <5468697320697320616e206578616d706c65206f662061206c697374696e6720626c6f636b2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 453.945 Td /F5.0 11 Tf <54686520636f6e74656e7420696e736964652069732072656e6465726564206173203c7072653e20746578742e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 416.066 Td /F1.0 10.5 Tf [<4275742049d56d206e6f7420676976696e6720796f7520616e> 20.0195 <7920686967686c69676874696e67207368617a616d206a757374207965742e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.9333 0.9333 0.9333 scn 52.24 400.25 m 543.04 400.25 l 545.2491 400.25 547.04 398.4591 547.04 396.25 c 547.04 276.65 l 547.04 274.4409 545.2491 272.65 543.04 272.65 c 52.24 272.65 l 50.0309 272.65 48.24 274.4409 48.24 276.65 c 48.24 396.25 l 48.24 398.4591 50.0309 400.25 52.24 400.25 c h f 0.8824 0.8824 0.8824 SCN 0.5 w 52.24 400.25 m 543.04 400.25 l 545.2491 400.25 547.04 398.4591 547.04 396.25 c 547.04 276.65 l 547.04 274.4409 545.2491 272.65 543.04 272.65 c 52.24 272.65 l 50.0309 272.65 48.24 274.4409 48.24 276.65 c 48.24 396.25 l 48.24 398.4591 50.0309 400.25 52.24 400.25 c h S Q 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 221.5575 374.366 Td /F4.0 13 Tf <576861742069732061206c697374696e6720626c6f636b3f> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.8377 Tw BT 63.24 347.806 Td /F1.0 10.5 Tf [<4c696b> 20.0195 <65206c69746572> 20.0195 <616c20626c6f636b732c2074686520636f6e74656e7420696e206c697374696e6720626c6f636b7320697320646973706c61> 20.0195 <7965642065786163746c7920617320796f7520656e74657265642069742e204c697374696e67>] TJ ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 63.24 332.026 Td /F1.0 10.5 Tf <626c6f636b20636f6e74656e742069732072656e646572656420617320> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 206.775 332.026 Td /F5.0 10.5 Tf <3c7072653e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 233.025 332.026 Td /F1.0 10.5 Tf <20746578742e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 3.0105 Tw BT 63.24 304.246 Td /F1.0 10.5 Tf <54686520> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN 3.0105 Tw BT 87.6705 304.246 Td /F5.0 10.5 Tf <6c697374696e67> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 3.0105 Tw BT 124.4205 304.246 Td /F1.0 10.5 Tf [<207374796c65206973206170706c69656420746f20616e20656c656d656e742c2073756368206173206120706172> 20.0195 <616772> 20.0195 <6170682c2062> 20.0195 <792073657474696e672074686520>] TJ ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN 3.0105 Tw BT 495.29 304.246 Td /F5.0 10.5 Tf <6c697374696e67> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 3.0105 Tw BT 532.04 304.246 Td ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 63.24 288.466 Td /F1.0 10.5 Tf <617474726962757465206f6e207468617420656c656d656e742e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 248.686 Td /F1.0 10.5 Tf <4c6574d57320676574206f757220> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 112.2375 248.686 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 1.0 1.0 0.0 scn 112.2375 244.62 62.69 16.28 re f 0.2 0.2 0.2 scn BT 113.2375 248.686 Td /F1.0 10.5 Tf <686967686c69676874696e67> Tj ET BT 112.2375 248.686 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 174.9275 248.686 Td /F1.0 10.5 Tf <206f6e21> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d q 18.0 0.0 0.0 20.0665 288.64 813.8568 cm /I9 Do Q 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN BT 480.9262 820.398 Td /F2.0 9 Tf [<436f6d70616e> 20.0195 <79204e616d65>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /Stamp1 Do 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 425.125 16.663 Td /F1.0 9 Tf <342e312e2043616e20492047657420536f6d6520> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 508.816 16.663 Td /F5.0 9 Tf <436f6465> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 526.816 16.663 Td /F1.0 9 Tf <3f207c2037> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 63 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 62 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F4.0 22 0 R /F1.0 9 0 R /F2.0 10 0 R /F3.0 11 0 R /F5.0 35 0 R /F9.0 65 0 R /F10.0 66 0 R >> /XObject << /I9 8 0 R /Stamp1 145 0 R >> >> >> endobj 64 0 obj [63 0 R /XYZ 0 841.89 null] endobj 65 0 obj << /Type /Font /BaseFont /17df97+mplus1mn-bold_italic /Subtype /TrueType /FontDescriptor 188 0 R /FirstChar 32 /LastChar 255 /Widths 190 0 R /ToUnicode 189 0 R >> endobj 66 0 obj << /Type /Font /BaseFont /75dbba+mplus1mn-italic /Subtype /TrueType /FontDescriptor 192 0 R /FirstChar 32 /LastChar 255 /Widths 194 0 R /ToUnicode 193 0 R >> endobj 67 0 obj [63 0 R /XYZ 0 575.15 null] endobj 68 0 obj [63 0 R /XYZ 112.2375 259.9 null] endobj 69 0 obj << /Length 13421 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf [<496e7374616c6c205072> 20.0195 <61776e3a>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.9608 0.9608 0.9608 scn 52.24 778.11 m 543.04 778.11 l 545.2491 778.11 547.04 776.3191 547.04 774.11 c 547.04 745.37 l 547.04 743.1609 545.2491 741.37 543.04 741.37 c 52.24 741.37 l 50.0309 741.37 48.24 743.1609 48.24 745.37 c 48.24 774.11 l 48.24 776.3191 50.0309 778.11 52.24 778.11 c h f 0.8 0.8 0.8 SCN 0.75 w 52.24 778.11 m 543.04 778.11 l 545.2491 778.11 547.04 776.3191 547.04 774.11 c 547.04 745.37 l 547.04 743.1609 545.2491 741.37 543.04 741.37 c 52.24 741.37 l 50.0309 741.37 48.24 743.1609 48.24 745.37 c 48.24 774.11 l 48.24 776.3191 50.0309 778.11 52.24 778.11 c h S Q 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 755.285 Td /F5.0 11 Tf <242067656d20696e7374616c6c20707261776e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 717.406 Td /F1.0 10.5 Tf [<5468656e2063726561746520796f75722066697273742050444620646f63756d656e7420696e20527562> 20.0195 <7921>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 690.2242 Td /F2.0 9.975 Tf [<4c697374696e6720322e2047656e6572> 20.0195 <6174657320612062617369632050444620646f63756d656e74207573696e67205072> 20.0195 <61776e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.9608 0.9608 0.9608 scn 52.24 682.599 m 543.04 682.599 l 545.2491 682.599 547.04 680.8081 547.04 678.599 c 547.04 590.899 l 547.04 588.6899 545.2491 586.899 543.04 586.899 c 52.24 586.899 l 50.0309 586.899 48.24 588.6899 48.24 590.899 c 48.24 678.599 l 48.24 680.8081 50.0309 682.599 52.24 682.599 c h f 0.8 0.8 0.8 SCN 0.75 w 52.24 682.599 m 543.04 682.599 l 545.2491 682.599 547.04 680.8081 547.04 678.599 c 547.04 590.899 l 547.04 588.6899 545.2491 586.899 543.04 586.899 c 52.24 586.899 l 50.0309 586.899 48.24 588.6899 48.24 590.899 c 48.24 678.599 l 48.24 680.8081 50.0309 682.599 52.24 682.599 c h S Q 0.0 0.2 0.5333 scn 0.0 0.2 0.5333 SCN BT 59.24 659.774 Td /F5.0 11 Tf <72657175697265> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 97.74 659.774 Td /F5.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.8667 0.1333 0.0 scn 0.8667 0.1333 0.0 SCN BT 103.24 659.774 Td /F5.0 11 Tf <27707261776e27> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 141.74 659.774 Td /F5.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 147.24 659.774 Td /F5.1 11 Tf <21> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.2 0.4 scn 0.0 0.2 0.4 SCN BT 59.24 630.294 Td /F7.0 11 Tf <507261776e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 86.74 630.294 Td /F5.0 11 Tf <3a3a> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.2 0.4 scn 0.0 0.2 0.4 SCN BT 97.74 630.294 Td /F7.0 11 Tf <446f63756d656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 141.74 630.294 Td /F5.0 11 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.4 0.7333 scn 0.0 0.4 0.7333 SCN BT 147.24 630.294 Td /F7.0 11 Tf <67656e6572617465> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 191.24 630.294 Td /F5.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.8667 0.1333 0.0 scn 0.8667 0.1333 0.0 SCN BT 196.74 630.294 Td /F5.0 11 Tf <276f75747075742e70646627> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 262.74 630.294 Td /F5.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.5333 0.0 scn 0.0 0.5333 0.0 SCN BT 268.24 630.294 Td /F7.0 11 Tf <646f> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 279.24 630.294 Td /F5.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 284.74 630.294 Td /F5.1 11 Tf <22> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 615.554 Td /F5.0 11 Tf <ca20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 70.24 615.554 Td /F5.0 11 Tf <74657874> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 92.24 615.554 Td /F5.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.8667 0.1333 0.0 scn 0.8667 0.1333 0.0 SCN BT 97.74 615.554 Td /F5.0 11 Tf <2748656c6c6f2c20576f726c642127> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 180.24 615.554 Td /F5.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 185.74 615.554 Td /F5.1 11 Tf <23> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.5333 0.0 scn 0.0 0.5333 0.0 SCN BT 59.24 600.814 Td /F7.0 11 Tf <656e64> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 50.865 569.174 Td /F5.1 10.5 Tf <21> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 63.99 568.935 Td /F1.0 10.5 Tf [<496d706f727473205072> 20.0195 <61776e206c696272> 20.0195 <617279>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 50.865 547.394 Td /F5.1 10.5 Tf <23> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 63.99 547.155 Td /F1.0 10.5 Tf [<41> 20.0195 <646473207465787420d248656c6c6f2c2057> 60.0586 <6f726c6421d320746f2066697273742070616765>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 50.865 525.614 Td /F5.1 10.5 Tf <22> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 63.99 525.375 Td /F1.0 10.5 Tf <5772697465732050444620746f20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 135.39 525.375 Td /F2.0 10.5 Tf <6f75747075742e706466> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 185.874 525.375 Td /F1.0 10.5 Tf <20616674657220657865637574696e6720616c6c2073746174656d656e7473> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 497.595 Td /F1.0 10.5 Tf <486f772061626f757420736f6d6520736f7572636520636f64652074686174207374796c657320636f64653f20536f206d65746121> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.9608 0.9608 0.9608 scn 52.24 481.779 m 543.04 481.779 l 545.2491 481.779 547.04 479.9881 547.04 477.779 c 547.04 331.119 l 547.04 328.9099 545.2491 327.119 543.04 327.119 c 52.24 327.119 l 50.0309 327.119 48.24 328.9099 48.24 331.119 c 48.24 477.779 l 48.24 479.9881 50.0309 481.779 52.24 481.779 c h f 0.8 0.8 0.8 SCN 0.75 w 52.24 481.779 m 543.04 481.779 l 545.2491 481.779 547.04 479.9881 547.04 477.779 c 547.04 331.119 l 547.04 328.9099 545.2491 327.119 543.04 327.119 c 52.24 327.119 l 50.0309 327.119 48.24 328.9099 48.24 331.119 c 48.24 477.779 l 48.24 479.9881 50.0309 481.779 52.24 481.779 c h S Q 0.7333 0.0 0.4 scn 0.7333 0.0 0.4 SCN BT 59.24 458.954 Td /F7.0 11 Tf <636f6465> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 81.24 458.954 Td /F5.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 86.74 458.954 Td /F5.0 11 Tf <7b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 444.214 Td /F5.0 11 Tf <ca20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.4 0.6 scn 0.2 0.4 0.6 SCN BT 70.24 444.214 Td /F5.0 11 Tf <70616464696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 108.74 444.214 Td /F5.0 11 Tf <3a> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.24 444.214 Td /F5.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.0 0.8667 scn 0.0 0.0 0.8667 SCN BT 119.74 444.214 Td /F7.0 11 Tf <327078> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 136.24 444.214 Td /F5.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.0 0.8667 scn 0.0 0.0 0.8667 SCN BT 141.74 444.214 Td /F7.0 11 Tf <347078> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 158.24 444.214 Td /F5.0 11 Tf <3b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 429.474 Td /F5.0 11 Tf <ca20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.4 0.6 scn 0.2 0.4 0.6 SCN BT 70.24 429.474 Td /F5.0 11 Tf <666f6e742d73697a65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 119.74 429.474 Td /F5.0 11 Tf <3a> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 125.24 429.474 Td /F5.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.0 0.8667 scn 0.0 0.0 0.8667 SCN BT 130.74 429.474 Td /F7.0 11 Tf <393025> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 147.24 429.474 Td /F5.0 11 Tf <3b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 414.734 Td /F5.0 11 Tf <ca20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.4 0.6 scn 0.2 0.4 0.6 SCN BT 70.24 414.734 Td /F5.0 11 Tf <666f6e742d776569676874> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 130.74 414.734 Td /F5.0 11 Tf <3a> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 136.24 414.734 Td /F5.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.2 0.5333 scn 0.0 0.2 0.5333 SCN BT 141.74 414.734 Td /F5.0 11 Tf <6e6f726d616c> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 174.74 414.734 Td /F5.0 11 Tf <3b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 399.994 Td /F5.0 11 Tf <ca20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.4 0.6 scn 0.2 0.4 0.6 SCN BT 70.24 399.994 Td /F5.0 11 Tf <636f6c6f72> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 97.74 399.994 Td /F5.0 11 Tf <3a> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 103.24 399.994 Td /F5.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.0 0.8667 scn 0.0 0.0 0.8667 SCN BT 108.74 399.994 Td /F7.0 11 Tf <23633732353465> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 147.24 399.994 Td /F5.0 11 Tf <3b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 385.254 Td /F5.0 11 Tf <ca20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.4 0.6 scn 0.2 0.4 0.6 SCN BT 70.24 385.254 Td /F5.0 11 Tf <77686974652d7370616365> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 130.74 385.254 Td /F5.0 11 Tf <3a> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 136.24 385.254 Td /F5.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.2 0.5333 scn 0.0 0.2 0.5333 SCN BT 141.74 385.254 Td /F5.0 11 Tf <6e6f77726170> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 174.74 385.254 Td /F5.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.8 0.0 0.0 scn 0.8 0.0 0.0 SCN BT 180.24 385.254 Td /F7.0 11 Tf <21696d706f7274616e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 235.24 385.254 Td /F5.0 11 Tf <3b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 370.514 Td /F5.0 11 Tf <ca20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.4 0.6 scn 0.2 0.4 0.6 SCN BT 70.24 370.514 Td /F5.0 11 Tf <6261636b67726f756e642d636f6c6f72> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 158.24 370.514 Td /F5.0 11 Tf <3a> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 163.74 370.514 Td /F5.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.0 0.8667 scn 0.0 0.0 0.8667 SCN BT 169.24 370.514 Td /F7.0 11 Tf <23663966326634> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 207.74 370.514 Td /F5.0 11 Tf <3b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 355.774 Td /F5.0 11 Tf <ca20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.4 0.6 scn 0.2 0.4 0.6 SCN BT 70.24 355.774 Td /F5.0 11 Tf <626f726465722d726164697573> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 141.74 355.774 Td /F5.0 11 Tf <3a> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 147.24 355.774 Td /F5.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.0 0.8667 scn 0.0 0.0 0.8667 SCN BT 152.74 355.774 Td /F7.0 11 Tf <347078> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 169.24 355.774 Td /F5.0 11 Tf <3b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 341.034 Td /F5.0 11 Tf <7d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 303.155 Td /F1.0 10.5 Tf [<576865726520636f756c6420776520676f20776974686f757420736f6d65204a617661aa3f204e61747572> 20.0195 <616c6c79> 89.8438 <2c20736f6d65206175746f73697a696e67206973206e6563657373617279> 89.8438 <2e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN BT 48.24 820.398 Td /F2.0 9 Tf [<436f6d70616e> 20.0195 <79204e616d65>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 18.0 0.0 0.0 20.0665 288.64 813.8568 cm /I10 Do Q Q q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /Stamp2 Do 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 49.24 16.663 Td /F1.0 9 Tf [<38207c204368617074657220342e2057> 60.0586 <6f72647320536561736f6e6564207769746820506f776572>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 70 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 69 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 9 0 R /F5.0 35 0 R /F2.0 10 0 R /F5.1 71 0 R /F7.0 47 0 R >> /XObject << /I10 8 0 R /Stamp2 146 0 R >> >> >> endobj 71 0 obj << /Type /Font /BaseFont /89598b+mplus1mn-regular /Subtype /TrueType /FontDescriptor 196 0 R /FirstChar 32 /LastChar 255 /Widths 198 0 R /ToUnicode 197 0 R >> endobj 72 0 obj << /Length 36254 >> stream q q /DeviceRGB cs 0.9608 0.9608 0.9608 scn 52.24 805.89 m 543.04 805.89 l 545.2491 805.89 547.04 804.0991 547.04 801.89 c 547.04 96.5643 l 547.04 94.3551 545.2491 92.5643 543.04 92.5643 c 52.24 92.5643 l 50.0309 92.5643 48.24 94.3551 48.24 96.5643 c 48.24 801.89 l 48.24 804.0991 50.0309 805.89 52.24 805.89 c h f /DeviceRGB CS 0.8 0.8 0.8 SCN 0.75 w 52.24 805.89 m 543.04 805.89 l 545.2491 805.89 547.04 804.0991 547.04 801.89 c 547.04 96.5643 l 547.04 94.3551 545.2491 92.5643 543.04 92.5643 c 52.24 92.5643 l 50.0309 92.5643 48.24 94.3551 48.24 96.5643 c 48.24 801.89 l 48.24 804.0991 50.0309 805.89 52.24 805.89 c h S Q /DeviceRGB cs 0.0 0.5333 0.0 scn /DeviceRGB CS 0.0 0.5333 0.0 SCN BT 59.24 784.4053 Td /F7.0 9.4415 Tf <7061636b616765> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 92.2853 784.4053 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.7333 0.0 0.4 scn 0.7333 0.0 0.4 SCN BT 97.006 784.4053 Td /F7.0 9.4415 Tf <6f72672e6a6176616565372e6364692e6576656e7473> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 200.8625 784.4053 Td /F5.0 9.4415 Tf <3b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.5333 0.0 scn 0.0 0.5333 0.0 SCN BT 59.24 758.3228 Td /F7.0 9.4415 Tf <696d706f7274> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 87.5645 758.3228 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.7333 0.0 0.4 scn 0.7333 0.0 0.4 SCN BT 92.2853 758.3228 Td /F7.0 9.4415 Tf <6a617661782e616e6e6f746174696f6e2e506f7374436f6e737472756374> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 233.9078 758.3228 Td /F5.0 9.4415 Tf <3b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.5333 0.0 scn 0.0 0.5333 0.0 SCN BT 59.24 745.2816 Td /F7.0 9.4415 Tf <696d706f7274> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 87.5645 745.2816 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.7333 0.0 0.4 scn 0.7333 0.0 0.4 SCN BT 92.2853 745.2816 Td /F7.0 9.4415 Tf <6a617661782e656e74657270726973652e636f6e746578742e53657373696f6e53636f706564> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 271.6738 745.2816 Td /F5.0 9.4415 Tf <3b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.5333 0.0 scn 0.0 0.5333 0.0 SCN BT 59.24 732.2404 Td /F7.0 9.4415 Tf <696d706f7274> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 87.5645 732.2404 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.7333 0.0 0.4 scn 0.7333 0.0 0.4 SCN BT 92.2853 732.2404 Td /F7.0 9.4415 Tf <6a617661782e656e74657270726973652e6576656e742e4f62736572766573> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 238.6285 732.2404 Td /F5.0 9.4415 Tf <3b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.5333 0.0 scn 0.0 0.5333 0.0 SCN BT 59.24 719.1991 Td /F7.0 9.4415 Tf <696d706f7274> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 87.5645 719.1991 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.7333 0.0 0.4 scn 0.7333 0.0 0.4 SCN BT 92.2853 719.1991 Td /F7.0 9.4415 Tf <6a6176612e696f2e53657269616c697a61626c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 186.7003 719.1991 Td /F5.0 9.4415 Tf <3b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.5333 0.0 scn 0.0 0.5333 0.0 SCN BT 59.24 706.1579 Td /F7.0 9.4415 Tf <696d706f7274> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 87.5645 706.1579 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.7333 0.0 0.4 scn 0.7333 0.0 0.4 SCN BT 92.2853 706.1579 Td /F7.0 9.4415 Tf <6a6176612e7574696c2e41727261794c697374> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 181.9795 706.1579 Td /F5.0 9.4415 Tf <3b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.5333 0.0 scn 0.0 0.5333 0.0 SCN BT 59.24 693.1167 Td /F7.0 9.4415 Tf <696d706f7274> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 87.5645 693.1167 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.7333 0.0 0.4 scn 0.7333 0.0 0.4 SCN BT 92.2853 693.1167 Td /F7.0 9.4415 Tf <6a6176612e7574696c2e436f6c6c656374696f6e73> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 191.421 693.1167 Td /F5.0 9.4415 Tf <3b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.5333 0.0 scn 0.0 0.5333 0.0 SCN BT 59.24 680.0754 Td /F7.0 9.4415 Tf <696d706f7274> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 87.5645 680.0754 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.7333 0.0 0.4 scn 0.7333 0.0 0.4 SCN BT 92.2853 680.0754 Td /F7.0 9.4415 Tf <6a6176612e7574696c2e4c697374> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 158.3758 680.0754 Td /F5.0 9.4415 Tf <3b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.5333 0.0 scn 0.0 0.5333 0.0 SCN BT 59.24 667.0342 Td /F7.0 9.4415 Tf <696d706f7274> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 87.5645 667.0342 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.7333 0.0 0.4 scn 0.7333 0.0 0.4 SCN BT 92.2853 667.0342 Td /F7.0 9.4415 Tf <6a617661782e77732e72732e2a> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 153.655 667.0342 Td /F5.0 9.4415 Tf <3b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.5333 0.5333 0.5333 scn 0.5333 0.5333 0.5333 SCN BT 59.24 640.9517 Td /F5.0 9.4415 Tf <2f2a2a> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.5333 0.5333 0.5333 scn 0.5333 0.5333 0.5333 SCN BT 59.24 627.9105 Td /F5.0 9.4415 Tf <ca2a20546869732073657373696f6e2d73636f706564206265616e207265636569766573206772656574696e6720737472696e67732066726f6d20746865206576656e7420627573> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.5333 0.5333 0.5333 scn 0.5333 0.5333 0.5333 SCN BT 59.24 614.8693 Td /F5.0 9.4415 Tf <ca2a20616e642070726f76696465732061636365737320746f2074686520636f6c6c656374696f6e206f66207468657365206772656574696e67732076696120612052455354204150492e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.5333 0.5333 0.5333 scn 0.5333 0.5333 0.5333 SCN BT 59.24 601.828 Td /F5.0 9.4415 Tf <ca2a> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.5333 0.5333 0.5333 scn 0.5333 0.5333 0.5333 SCN BT 59.24 588.7868 Td /F5.0 9.4415 Tf <ca2a2040617574686f72205468652044756b65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.5333 0.5333 0.5333 scn 0.5333 0.5333 0.5333 SCN BT 59.24 575.7456 Td /F5.0 9.4415 Tf <ca2a204073696e636520312e30> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.5333 0.5333 0.5333 scn 0.5333 0.5333 0.5333 SCN BT 59.24 562.7043 Td /F5.0 9.4415 Tf <ca2a2f> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.3333 0.3333 0.3333 scn 0.3333 0.3333 0.3333 SCN BT 59.24 549.6631 Td /F5.0 9.4415 Tf <4053657373696f6e53636f706564> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.5333 0.0 scn 0.0 0.5333 0.0 SCN BT 59.24 536.6218 Td /F7.0 9.4415 Tf <7075626c6963> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 87.5645 536.6218 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.5333 0.0 scn 0.0 0.5333 0.0 SCN BT 92.2853 536.6218 Td /F7.0 9.4415 Tf <636c617373> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 115.889 536.6218 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.7333 0.0 0.4 scn 0.7333 0.0 0.4 SCN BT 120.6098 536.6218 Td /F7.0 9.4415 Tf <4772656574696e675265636569766572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 196.1418 536.6218 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.5333 0.0 scn 0.0 0.5333 0.0 SCN BT 200.8625 536.6218 Td /F7.0 9.4415 Tf <696d706c656d656e7473> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 248.07 536.6218 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.7333 0.0 0.4 scn 0.7333 0.0 0.4 SCN BT 252.7908 536.6218 Td /F7.0 9.4415 Tf <4576656e745265636569766572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 314.1605 536.6218 Td /F5.0 9.4415 Tf <2c> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 318.8813 536.6218 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.7333 0.0 0.4 scn 0.7333 0.0 0.4 SCN BT 323.602 536.6218 Td /F7.0 9.4415 Tf <53657269616c697a61626c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 380.251 536.6218 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 384.9718 536.6218 Td /F5.0 9.4415 Tf <7b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 510.5394 Td /F5.0 9.4415 Tf <ca202020> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.5333 0.0 scn 0.0 0.5333 0.0 SCN BT 78.123 510.5394 Td /F7.0 9.4415 Tf <70726976617465> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 111.1683 510.5394 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.7333 0.0 0.4 scn 0.7333 0.0 0.4 SCN BT 115.889 510.5394 Td /F7.0 9.4415 Tf <4c697374> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 134.772 510.5394 Td /F5.0 9.4415 Tf <3c> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.7333 0.0 0.4 scn 0.7333 0.0 0.4 SCN BT 139.4928 510.5394 Td /F7.0 9.4415 Tf <537472696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 167.8173 510.5394 Td /F5.0 9.4415 Tf <3e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 172.538 510.5394 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 177.2588 510.5394 Td /F5.0 9.4415 Tf <6772656574696e6773> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 219.7455 510.5394 Td /F5.0 9.4415 Tf <3b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 484.4569 Td /F5.0 9.4415 Tf <ca202020> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.3333 0.3333 0.3333 scn 0.3333 0.3333 0.3333 SCN BT 78.123 484.4569 Td /F5.0 9.4415 Tf <40506f7374436f6e737472756374> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 471.4157 Td /F5.0 9.4415 Tf <ca202020> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.5333 0.5333 0.5333 scn 0.5333 0.5333 0.5333 SCN BT 78.123 471.4157 Td /F7.0 9.4415 Tf <766f6964> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 97.006 471.4157 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.4 0.7333 scn 0.0 0.4 0.7333 SCN BT 101.7268 471.4157 Td /F7.0 9.4415 Tf <696e6974> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 120.6098 471.4157 Td /F5.0 9.4415 Tf <2829> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 130.0513 471.4157 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 134.772 471.4157 Td /F5.0 9.4415 Tf <7b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 458.3744 Td /F5.0 9.4415 Tf <ca20202020202020> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.5333 0.0 scn 0.0 0.5333 0.0 SCN BT 97.006 458.3744 Td /F7.0 9.4415 Tf <74686973> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 115.889 458.3744 Td /F5.0 9.4415 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.4 0.6 scn 0.2 0.4 0.6 SCN BT 120.6098 458.3744 Td /F5.0 9.4415 Tf <6772656574696e6773> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 163.0965 458.3744 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 167.8173 458.3744 Td /F5.0 9.4415 Tf <3d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 172.538 458.3744 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.5333 0.0 scn 0.0 0.5333 0.0 SCN BT 177.2588 458.3744 Td /F7.0 9.4415 Tf <6e6577> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 191.421 458.3744 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.7333 0.0 0.4 scn 0.7333 0.0 0.4 SCN BT 196.1418 458.3744 Td /F7.0 9.4415 Tf <41727261794c697374> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 238.6285 458.3744 Td /F5.0 9.4415 Tf <3c> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.7333 0.0 0.4 scn 0.7333 0.0 0.4 SCN BT 243.3493 458.3744 Td /F7.0 9.4415 Tf <537472696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 271.6738 458.3744 Td /F5.0 9.4415 Tf <3e28293b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 445.3332 Td /F5.0 9.4415 Tf <ca202020> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 78.123 445.3332 Td /F5.0 9.4415 Tf <7d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 419.2507 Td /F5.0 9.4415 Tf <ca202020> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.5333 0.5333 0.5333 scn 0.5333 0.5333 0.5333 SCN BT 78.123 419.2507 Td /F7.0 9.4415 Tf <766f6964> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 97.006 419.2507 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.4 0.7333 scn 0.0 0.4 0.7333 SCN BT 101.7268 419.2507 Td /F7.0 9.4415 Tf <72656365697665> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 134.772 419.2507 Td /F5.0 9.4415 Tf <28> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.3333 0.3333 0.3333 scn 0.3333 0.3333 0.3333 SCN BT 139.4928 419.2507 Td /F5.0 9.4415 Tf <404f62736572766573> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 181.9795 419.2507 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.7333 0.0 0.4 scn 0.7333 0.0 0.4 SCN BT 186.7003 419.2507 Td /F7.0 9.4415 Tf <537472696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 215.0248 419.2507 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 219.7455 419.2507 Td /F5.0 9.4415 Tf <6772656574> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 243.3493 419.2507 Td /F5.0 9.4415 Tf <29> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 248.07 419.2507 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 252.7908 419.2507 Td /F5.0 9.4415 Tf <7b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 406.2095 Td /F5.0 9.4415 Tf <ca20202020202020> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.5333 0.0 scn 0.0 0.5333 0.0 SCN BT 97.006 406.2095 Td /F7.0 9.4415 Tf <74686973> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 115.889 406.2095 Td /F5.0 9.4415 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.4 0.6 scn 0.2 0.4 0.6 SCN BT 120.6098 406.2095 Td /F5.0 9.4415 Tf <6772656574696e6773> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 163.0965 406.2095 Td /F5.0 9.4415 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.4 0.6 scn 0.2 0.4 0.6 SCN BT 167.8173 406.2095 Td /F5.0 9.4415 Tf <616464> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 181.9795 406.2095 Td /F5.0 9.4415 Tf <28> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 186.7003 406.2095 Td /F5.0 9.4415 Tf <6772656574> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 210.304 406.2095 Td /F5.0 9.4415 Tf <293b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 393.1683 Td /F5.0 9.4415 Tf <ca202020> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 78.123 393.1683 Td /F5.0 9.4415 Tf <7d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 367.0858 Td /F5.0 9.4415 Tf <ca202020> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.3333 0.3333 0.3333 scn 0.3333 0.3333 0.3333 SCN BT 78.123 367.0858 Td /F5.0 9.4415 Tf <40474554> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 354.0446 Td /F5.0 9.4415 Tf <ca202020> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.3333 0.3333 0.3333 scn 0.3333 0.3333 0.3333 SCN BT 78.123 354.0446 Td /F5.0 9.4415 Tf <4050726f6475636573> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 120.6098 354.0446 Td /F5.0 9.4415 Tf <28> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.8667 0.1333 0.0 scn 0.8667 0.1333 0.0 SCN BT 125.3305 354.0446 Td /F5.0 9.4415 Tf <226170706c69636174696f6e2f6a736f6e22> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 210.304 354.0446 Td /F5.0 9.4415 Tf <29> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 341.0033 Td /F5.0 9.4415 Tf <ca202020> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.5333 0.0 scn 0.0 0.5333 0.0 SCN BT 78.123 341.0033 Td /F7.0 9.4415 Tf <7075626c6963> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 106.4475 341.0033 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.7333 0.0 0.4 scn 0.7333 0.0 0.4 SCN BT 111.1683 341.0033 Td /F7.0 9.4415 Tf <4c697374> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 130.0513 341.0033 Td /F5.0 9.4415 Tf <3c> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.7333 0.0 0.4 scn 0.7333 0.0 0.4 SCN BT 134.772 341.0033 Td /F7.0 9.4415 Tf <537472696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 163.0965 341.0033 Td /F5.0 9.4415 Tf <3e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 167.8173 341.0033 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.4 0.7333 scn 0.0 0.4 0.7333 SCN BT 172.538 341.0033 Td /F7.0 9.4415 Tf <6c697374416c6c> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 205.5833 341.0033 Td /F5.0 9.4415 Tf <28> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.3333 0.3333 0.3333 scn 0.3333 0.3333 0.3333 SCN BT 210.304 341.0033 Td /F5.0 9.4415 Tf <405175657279506172616d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 262.2322 341.0033 Td /F5.0 9.4415 Tf <28> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.8667 0.1333 0.0 scn 0.8667 0.1333 0.0 SCN BT 266.953 341.0033 Td /F5.0 9.4415 Tf <22737461727422> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 299.9983 341.0033 Td /F5.0 9.4415 Tf <29> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 304.719 341.0033 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.7333 0.0 0.4 scn 0.7333 0.0 0.4 SCN BT 309.4398 341.0033 Td /F7.0 9.4415 Tf <496e7465676572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 342.485 341.0033 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 347.2058 341.0033 Td /F5.0 9.4415 Tf <7374617274> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 370.8095 341.0033 Td /F5.0 9.4415 Tf <2c> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 375.5303 341.0033 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.3333 0.3333 0.3333 scn 0.3333 0.3333 0.3333 SCN BT 380.251 341.0033 Td /F5.0 9.4415 Tf <405175657279506172616d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 432.1793 341.0033 Td /F5.0 9.4415 Tf <28> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.8667 0.1333 0.0 scn 0.8667 0.1333 0.0 SCN BT 436.9 341.0033 Td /F5.0 9.4415 Tf <226d617822> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 460.5038 341.0033 Td /F5.0 9.4415 Tf <29> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 465.2245 341.0033 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.7333 0.0 0.4 scn 0.7333 0.0 0.4 SCN BT 469.9453 341.0033 Td /F7.0 9.4415 Tf <496e7465676572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 502.9905 341.0033 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 507.7113 341.0033 Td /F5.0 9.4415 Tf <6d6178> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 521.8735 341.0033 Td /F5.0 9.4415 Tf <29> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 526.5943 341.0033 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 531.315 341.0033 Td /F5.0 9.4415 Tf <7b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 327.9621 Td /F5.0 9.4415 Tf <ca20202020202020> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.5333 0.5333 0.5333 scn 0.5333 0.5333 0.5333 SCN BT 97.006 327.9621 Td /F7.0 9.4415 Tf <696e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 111.1683 327.9621 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 115.889 327.9621 Td /F5.0 9.4415 Tf <6e756d4772656574696e6773> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 172.538 327.9621 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 177.2588 327.9621 Td /F5.0 9.4415 Tf <3d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 181.9795 327.9621 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.5333 0.0 scn 0.0 0.5333 0.0 SCN BT 186.7002 327.9621 Td /F7.0 9.4415 Tf <74686973> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 205.5833 327.9621 Td /F5.0 9.4415 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.4 0.6 scn 0.2 0.4 0.6 SCN BT 210.304 327.9621 Td /F5.0 9.4415 Tf <6772656574696e6773> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 252.7908 327.9621 Td /F5.0 9.4415 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.4 0.6 scn 0.2 0.4 0.6 SCN BT 257.5115 327.9621 Td /F5.0 9.4415 Tf <73697a65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 276.3945 327.9621 Td /F5.0 9.4415 Tf <28293b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 301.8796 Td /F5.0 9.4415 Tf <ca20202020202020> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.5333 0.0 scn 0.0 0.5333 0.0 SCN BT 97.006 301.8796 Td /F7.0 9.4415 Tf <6966> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 106.4475 301.8796 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 111.1683 301.8796 Td /F5.0 9.4415 Tf <28> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 115.889 301.8796 Td /F5.0 9.4415 Tf <6e756d4772656574696e6773> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 172.538 301.8796 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 177.2588 301.8796 Td /F5.0 9.4415 Tf <3d3d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 186.7003 301.8796 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.0 0.8667 scn 0.0 0.0 0.8667 SCN BT 191.421 301.8796 Td /F7.0 9.4415 Tf <30> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 196.1418 301.8796 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 200.8625 301.8796 Td /F5.0 9.4415 Tf <7c7c> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 210.304 301.8796 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 215.0248 301.8796 Td /F5.0 9.4415 Tf <6d6178> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 229.187 301.8796 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 233.9078 301.8796 Td /F5.0 9.4415 Tf <3d3d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 243.3493 301.8796 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.0 0.8667 scn 0.0 0.0 0.8667 SCN BT 248.07 301.8796 Td /F7.0 9.4415 Tf <30> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 252.7908 301.8796 Td /F5.0 9.4415 Tf <29> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 257.5115 301.8796 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 262.2323 301.8796 Td /F5.0 9.4415 Tf <7b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 288.8384 Td /F5.0 9.4415 Tf <ca2020202020202020202020> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.5333 0.0 scn 0.0 0.5333 0.0 SCN BT 115.889 288.8384 Td /F7.0 9.4415 Tf <72657475726e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 144.2135 288.8384 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.7333 0.0 0.4 scn 0.7333 0.0 0.4 SCN BT 148.9343 288.8384 Td /F7.0 9.4415 Tf <436f6c6c656374696f6e73> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 200.8625 288.8384 Td /F5.0 9.4415 Tf <2e3c> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.7333 0.0 0.4 scn 0.7333 0.0 0.4 SCN BT 210.304 288.8384 Td /F7.0 9.4415 Tf <537472696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 238.6285 288.8384 Td /F5.0 9.4415 Tf <3e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 243.3493 288.8384 Td /F5.0 9.4415 Tf <656d7074794c697374> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 285.836 288.8384 Td /F5.0 9.4415 Tf <28293b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 275.7971 Td /F5.0 9.4415 Tf <ca20202020202020> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 97.006 275.7971 Td /F5.0 9.4415 Tf <7d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 249.7147 Td /F5.0 9.4415 Tf <ca20202020202020> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.5333 0.0 scn 0.0 0.5333 0.0 SCN BT 97.006 249.7147 Td /F7.0 9.4415 Tf <6966> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 106.4475 249.7147 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 111.1683 249.7147 Td /F5.0 9.4415 Tf <28> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 115.889 249.7147 Td /F5.0 9.4415 Tf <7374617274> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 139.4928 249.7147 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 144.2135 249.7147 Td /F5.0 9.4415 Tf <3d3d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 153.655 249.7147 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.5333 0.0 scn 0.0 0.5333 0.0 SCN BT 158.3758 249.7147 Td /F7.0 9.4415 Tf <6e756c6c> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 177.2588 249.7147 Td /F5.0 9.4415 Tf <29> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 181.9795 249.7147 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 186.7002 249.7147 Td /F5.0 9.4415 Tf <7b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 236.6734 Td /F5.0 9.4415 Tf <ca2020202020202020202020> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 115.889 236.6734 Td /F5.0 9.4415 Tf <7374617274> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 139.4928 236.6734 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 144.2135 236.6734 Td /F5.0 9.4415 Tf <3d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 148.9343 236.6734 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.0 0.8667 scn 0.0 0.0 0.8667 SCN BT 153.655 236.6734 Td /F7.0 9.4415 Tf <30> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 158.3757 236.6734 Td /F5.0 9.4415 Tf <3b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 223.6322 Td /F5.0 9.4415 Tf <ca20202020202020> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 97.006 223.6322 Td /F5.0 9.4415 Tf <7d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 197.5497 Td /F5.0 9.4415 Tf <ca20202020202020> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.5333 0.0 scn 0.0 0.5333 0.0 SCN BT 97.006 197.5497 Td /F7.0 9.4415 Tf <6966> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 106.4475 197.5497 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 111.1683 197.5497 Td /F5.0 9.4415 Tf <28> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 115.889 197.5497 Td /F5.0 9.4415 Tf <6d6178> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 130.0513 197.5497 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 134.772 197.5497 Td /F5.0 9.4415 Tf <3d3d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 144.2135 197.5497 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.5333 0.0 scn 0.0 0.5333 0.0 SCN BT 148.9343 197.5497 Td /F7.0 9.4415 Tf <6e756c6c> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 167.8173 197.5497 Td /F5.0 9.4415 Tf <29> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 172.538 197.5497 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 177.2588 197.5497 Td /F5.0 9.4415 Tf <7b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 184.5085 Td /F5.0 9.4415 Tf <ca2020202020202020202020> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 115.889 184.5085 Td /F5.0 9.4415 Tf <6d6178> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 130.0513 184.5085 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 134.772 184.5085 Td /F5.0 9.4415 Tf <3d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 139.4928 184.5085 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 144.2135 184.5085 Td /F5.0 9.4415 Tf <6e756d4772656574696e6773> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 200.8625 184.5085 Td /F5.0 9.4415 Tf <3b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 171.4673 Td /F5.0 9.4415 Tf <ca20202020202020> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 97.006 171.4673 Td /F5.0 9.4415 Tf <7d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 145.3848 Td /F5.0 9.4415 Tf <ca20202020202020> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.5333 0.0 scn 0.0 0.5333 0.0 SCN BT 97.006 145.3848 Td /F7.0 9.4415 Tf <72657475726e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 125.3305 145.3848 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.5333 0.0 scn 0.0 0.5333 0.0 SCN BT 130.0512 145.3848 Td /F7.0 9.4415 Tf <74686973> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 148.9343 145.3848 Td /F5.0 9.4415 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.4 0.6 scn 0.2 0.4 0.6 SCN BT 153.655 145.3848 Td /F5.0 9.4415 Tf <6772656574696e6773> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 196.1418 145.3848 Td /F5.0 9.4415 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.4 0.6 scn 0.2 0.4 0.6 SCN BT 200.8625 145.3848 Td /F5.0 9.4415 Tf <7375624c697374> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 233.9078 145.3848 Td /F5.0 9.4415 Tf <28> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 238.6285 145.3848 Td /F5.0 9.4415 Tf <7374617274> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 262.2323 145.3848 Td /F5.0 9.4415 Tf <2c> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 266.953 145.3848 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.7333 0.0 0.4 scn 0.7333 0.0 0.4 SCN BT 271.6738 145.3848 Td /F7.0 9.4415 Tf <4d617468> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 290.5568 145.3848 Td /F5.0 9.4415 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.4 0.6 scn 0.2 0.4 0.6 SCN BT 295.2775 145.3848 Td /F5.0 9.4415 Tf <6d696e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 309.4398 145.3848 Td /F5.0 9.4415 Tf <28> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 314.1605 145.3848 Td /F5.0 9.4415 Tf <6d6178> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 328.3228 145.3848 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 333.0435 145.3848 Td /F5.0 9.4415 Tf <2b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 337.7643 145.3848 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 342.485 145.3848 Td /F5.0 9.4415 Tf <7374617274> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 366.0888 145.3848 Td /F5.0 9.4415 Tf <2c> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 370.8095 145.3848 Td /F5.0 9.4415 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 375.5303 145.3848 Td /F5.0 9.4415 Tf <6e756d4772656574696e6773> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 432.1793 145.3848 Td /F5.0 9.4415 Tf <29293b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 132.3436 Td /F5.0 9.4415 Tf <ca202020> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 78.123 132.3436 Td /F5.0 9.4415 Tf <7d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 106.2611 Td /F5.0 9.4415 Tf <7d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 1.9621 Tw BT 48.24 68.6003 Td /F1.0 10.5 Tf [<57> 60.0586 <6520616c72656164792073686f77656420796f7520616e20584d4c206578616d706c6520696e20>] TJ ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2588 0.5451 0.7922 scn 0.2588 0.5451 0.7922 SCN 1.9621 Tw BT 285.738 68.6003 Td /F1.0 10.5 Tf <5468652052617661676573206f662057726974696e67> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 1.9621 Tw BT 407.9223 68.6003 Td /F1.0 10.5 Tf [<2c2061206c616e6775616765207765206f6674656e2072> 20.0195 <616e74>] TJ ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 52.8203 Td /F1.0 10.5 Tf <61626f7574206f76657220626565727320617420> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2588 0.5451 0.7922 scn 0.2588 0.5451 0.7922 SCN BT 147.5175 52.8203 Td /F1.0 10.5 Tf [<426965722043656e7472> 20.0195 <616c>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 207.4198 52.8203 Td /F1.0 10.5 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d q 18.0 0.0 0.0 20.0665 288.64 813.8568 cm /I11 Do Q 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN BT 480.9262 820.398 Td /F2.0 9 Tf [<436f6d70616e> 20.0195 <79204e616d65>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /Stamp1 Do 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 425.125 16.663 Td /F1.0 9 Tf <342e312e2043616e20492047657420536f6d6520> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 508.816 16.663 Td /F5.0 9 Tf <436f6465> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 526.816 16.663 Td /F1.0 9 Tf <3f207c2039> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 73 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 72 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F7.0 47 0 R /F5.0 35 0 R /F1.0 9 0 R /F2.0 10 0 R >> /XObject << /I11 8 0 R /Stamp1 145 0 R >> >> /Annots [74 0 R 75 0 R] >> endobj 74 0 obj << /Border [0 0 0] /Dest (ravages) /Subtype /Link /Rect [285.738 65.5343 407.9223 79.8143] /Type /Annot >> endobj 75 0 obj << /Border [0 0 0] /Dest (bier-central) /Subtype /Link /Rect [147.5175 49.7543 207.4198 64.0343] /Type /Annot >> endobj 76 0 obj << /Length 11128 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf [<49d56c6c207472> 20.0195 <61646520796f752061206c6974746c65207461626c6520666f7220736f6d65206f662074686174206261726b2e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 48.24 756.33 124.7 21.78 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 172.94 756.33 124.7 21.78 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 297.64 756.33 124.7 21.78 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 422.34 756.33 124.7 21.78 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 48.24 687.21 124.7 69.12 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 172.94 687.21 124.7 69.12 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 297.64 687.21 124.7 69.12 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 422.34 687.21 124.7 69.12 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 48.24 665.43 498.8 21.78 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 172.94 665.43 124.7 21.78 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 297.64 665.43 124.7 21.78 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 422.34 665.43 124.7 21.78 re f 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 778.11 m 172.94 778.11 l S [] 0 d 1.25 w 0.8667 0.8667 0.8667 SCN 48.24 756.33 m 172.94 756.33 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 51.24 763.146 Td /F4.0 10.5 Tf <436f6c756d6e2031> Tj ET 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 172.94 778.11 m 297.64 778.11 l S [] 0 d 1.25 w 0.8667 0.8667 0.8667 SCN 172.94 756.33 m 297.64 756.33 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 175.94 763.146 Td /F4.0 10.5 Tf <436f6c756d6e2032> Tj ET 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 297.64 778.11 m 422.34 778.11 l S [] 0 d 1.25 w 0.8667 0.8667 0.8667 SCN 297.64 756.33 m 422.34 756.33 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 300.64 763.146 Td /F4.0 10.5 Tf <436f6c756d6e2033> Tj ET 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 422.34 778.11 m 547.04 778.11 l S [] 0 d 1.25 w 0.8667 0.8667 0.8667 SCN 422.34 756.33 m 547.04 756.33 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 425.34 763.146 Td /F4.0 10.5 Tf <436f6c756d6e2034> Tj ET 0.0 0.0 0.0 scn 1.25 w 0.8667 0.8667 0.8667 SCN 48.24 756.33 m 172.94 756.33 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 687.21 m 172.94 687.21 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.6941 0.1294 0.2745 scn BT 63.84 742.605 Td /F5.0 10.5 Tf <50726566697820> Tj ET 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 100.59 742.605 Td /F5.0 10.5 Tf <7c> Tj ET 0.0 0.0 0.0 SCN 0.6941 0.1294 0.2745 scn BT 105.84 742.605 Td /F5.0 10.5 Tf <207769746820> Tj ET 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 137.34 742.605 Td /F5.0 10.5 Tf <5e> Tj ET 0.0 0.0 0.0 SCN 0.6941 0.1294 0.2745 scn BT 142.59 742.605 Td /F5.0 10.5 Tf <20746f> Tj ET BT 74.34 729.66 Td /F5.0 10.5 Tf <63656e74657220636f6e74656e74> Tj ET BT 61.215 716.715 Td /F5.0 10.5 Tf <686f72697a6f6e74616c6c792077697468696e> Tj ET BT 87.465 703.77 Td /F5.0 10.5 Tf <7468652063656c6c2e> Tj ET 0.0 0.0 0.0 scn 1.25 w 0.8667 0.8667 0.8667 SCN 172.94 756.33 m 297.64 756.33 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 172.94 687.21 m 297.64 687.21 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 175.94 724.586 Td /F1.0 10.5 Tf <50726566697820> Tj ET 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 208.8575 724.586 Td /F5.0 10.5 Tf <7c> Tj ET 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 214.1075 724.586 Td /F1.0 10.5 Tf <2077697468206120> Tj ET 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 250.91 724.586 Td /F5.0 10.5 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 256.16 724.586 Td /F1.0 10.5 Tf <20616e6420> Tj ET 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 280.709 724.586 Td /F5.0 10.5 Tf <3e> Tj ET 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 285.959 724.586 Td ET BT 175.94 708.806 Td /F1.0 10.5 Tf <746f20616c69676e20636f6e74656e7420746f20746865> Tj ET BT 175.94 693.026 Td /F1.0 10.5 Tf <626f74746f6d206f66207468652063656c6c2e> Tj ET 0.0 0.0 0.0 scn 1.25 w 0.8667 0.8667 0.8667 SCN 297.64 756.33 m 422.34 756.33 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 297.64 687.21 m 422.34 687.21 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 302.8555 731.443 Td /F1.0 10.5 Tf <50726566697820> Tj ET 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 335.773 731.443 Td /F5.0 10.5 Tf <7c> Tj ET 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 341.023 731.443 Td /F1.0 10.5 Tf <2077697468206120> Tj ET 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 377.8255 731.443 Td /F5.0 10.5 Tf <5e> Tj ET 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 383.0755 731.443 Td /F1.0 10.5 Tf <2c20> Tj ET 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 388.42 731.443 Td /F5.0 10.5 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 393.67 731.443 Td /F1.0 10.5 Tf <2c20616e64> Tj ET 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 301.0653 715.663 Td /F5.0 10.5 Tf <5e> Tj ET 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 306.3153 715.663 Td /F1.0 10.5 Tf <20746f20706c61636520636f6e74656e7420696e20746865> Tj ET BT 315.9963 699.883 Td /F1.0 10.5 Tf <6d6964646c65206f66207468652063656c6c2e> Tj ET 0.0 0.0 0.0 scn 1.25 w 0.8667 0.8667 0.8667 SCN 422.34 756.33 m 547.04 756.33 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 422.34 687.21 m 547.04 687.21 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 433.32 741.366 Td /F1.0 10.5 Tf <50726566697820> Tj ET 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 466.2375 741.366 Td /F5.0 10.5 Tf <7c> Tj ET 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 471.4875 741.366 Td /F1.0 10.5 Tf <207769746820> Tj ET 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 499.6695 741.366 Td /F5.0 10.5 Tf <3e> Tj ET 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 504.9195 741.366 Td /F1.0 10.5 Tf <20746f20616c69676e> Tj ET BT 449.0805 725.586 Td /F1.0 10.5 Tf <636f6e74656e7420746f20746865207269676874> Tj ET BT 429.5295 709.806 Td /F1.0 10.5 Tf <686f72697a6f6e74616c6c792077697468696e20746865> Tj ET BT 525.1215 694.026 Td /F1.0 10.5 Tf <63656c6c2e> Tj ET 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 687.21 m 547.04 687.21 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 665.43 m 547.04 665.43 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 86.9797 672.246 Td /F2.0 10.5 Tf <5468697320636f6e74656e74207370616e7320616c6c20666f757220636f6c756d6e732028> Tj ET 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 266.6347 672.246 Td /F5.0 10.5 Tf <342b> Tj ET 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 277.1347 672.246 Td /F2.0 10.5 Tf <2920616e642069732063656e746572656420686f72697a6f6e74616c6c792028> Tj ET 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 426.2243 672.246 Td /F5.0 10.5 Tf <5e> Tj ET 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 431.4743 672.246 Td /F2.0 10.5 Tf <292077697468696e207468652063656c6c2e> Tj ET 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 641.466 Td /F1.0 10.5 Tf [<57> 49.8047 <6169742e20576861743f20576865726520697320746869732073746f727920676f696e673f>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 613.686 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 48.24 613.686 Td /F7.0 10.5 Tf <3c7370616e3e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 63.24 594.906 Td /F1.0 10.5 Tf [<616e2068746d6c207461672074686174206d616b> 20.0195 <6573206d65206372> 20.0195 <617a79>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 567.126 Td /F4.0 10.5 Tf <616c69676e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 3.6751 Tw BT 63.24 548.346 Td /F1.0 10.5 Tf <736f6d657468696e672049206e657665722067657420676f696e6720696e2074686520726967687420646972656374696f6e2e20416c736f2068617320746f20646f2077697468206d7920706f6f722076657262616c> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 63.24 532.566 Td /F1.0 10.5 Tf <636f6d6d756e69636174696f6e20736b696c6c73> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 504.786 Td /F4.0 10.5 Tf <666c6f6174> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 486.006 Td /F4.0 10.5 Tf <7374796c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 63.24 467.226 Td /F1.0 10.5 Tf [<646f6ed574206d616b> 20.0195 <65206d65206c61756768>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 439.446 Td /F1.0 10.5 Tf [<446f657320616e> 20.0195 <796f6e652068617665207468652074696d653f>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 1.6377 Tw BT 48.24 411.666 Td /F1.0 10.5 Tf [<54> 29.7852 <67206c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e73656374657475722061646970697363696e6720656c69742c2073656420646f20656975736d6f642074656d706f7220696e6369646964756e74207574>] TJ ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0148 Tw BT 48.24 395.886 Td /F1.0 10.5 Tf <6c61626f726520657420646f6c6f7265206d61676e6120616c697175612e20557420656e696d206164206d696e696d2076656e69616d2c2071756973206e6f737472756420657865726369746174696f6e20756c6c616d636f206c61626f726973> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.7187 Tw BT 48.24 380.106 Td /F1.0 10.5 Tf <6e69736920757420616c697175697020657820656120636f6d6d6f646f20636f6e7365717561742e2044756973206175746520697275726520646f6c6f7220696e20726570726568656e646572697420696e20766f6c7570746174652076656c6974> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.5443 Tw BT 48.24 364.326 Td /F1.0 10.5 Tf <657373652063696c6c756d20646f6c6f726520657520667567696174206e756c6c612070617269617475722e204578636570746575722073696e74206f6363616563617420637570696461746174206e6f6e2070726f6964656e742c2073756e7420696e> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 348.546 Td /F1.0 10.5 Tf <63756c706120717569206f666669636961206465736572756e74206d6f6c6c697420616e696d20696420657374206c61626f72756d6a2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN BT 48.24 820.398 Td /F2.0 9 Tf [<436f6d70616e> 20.0195 <79204e616d65>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 18.0 0.0 0.0 20.0665 288.64 813.8568 cm /I12 Do Q Q q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /Stamp2 Do 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 49.24 16.663 Td /F1.0 9 Tf [<3130207c204368617074657220342e2057> 60.0586 <6f72647320536561736f6e6564207769746820506f776572>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 77 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 76 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 9 0 R /F4.0 22 0 R /F5.0 35 0 R /F2.0 10 0 R /F7.0 47 0 R >> /XObject << /I12 8 0 R /Stamp2 146 0 R >> >> >> endobj 78 0 obj << /Length 3646 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 782.394 Td /F4.0 22 Tf [<4368617074657220352e204b> 20.0195 <656570696e672049742054> 29.7852 <6f676574686572>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.8283 Tw BT 48.24 753.206 Td /F1.0 10.5 Tf [<4f6e207468697320706167652077652068617665206e657374656420d26b> 20.0195 <65657020746f676574686572> -29.7852 <d3206c6f6769632e2054686520636f6d62696e656420626c6f636b2077696c6c206265207368696674656420746f20746865206e657874>] TJ ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 737.426 Td /F1.0 10.5 Tf <706167652069662074686572652069736ed57420726f6f6d20617661696c61626c65206f6e2074686973206f6e652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 62.74 706.7974 Td /F1.0 13 Tf <46697273742c> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 62.74 687.2603 Td /F1.0 13 Tf <7765> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 62.74 667.7231 Td /F1.0 13 Tf <6e656564> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 62.74 648.186 Td /F1.0 13 Tf <746f> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 62.74 628.6489 Td /F1.0 13 Tf <7761737465> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 62.74 609.1117 Td /F1.0 13 Tf [<7365766572> 20.0195 <616c>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 62.74 589.5746 Td /F1.0 13 Tf <6c696e6573> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 62.74 570.0374 Td /F1.0 13 Tf <7573696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 62.74 550.5003 Td /F1.0 13 Tf <61> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 62.74 530.9631 Td /F1.0 13 Tf <7665727365> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 62.74 511.426 Td /F1.0 13 Tf <746f> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 62.74 491.8889 Td /F1.0 13 Tf <70757368> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 62.74 472.3517 Td /F1.0 13 Tf <746865> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 62.74 452.8146 Td /F1.0 13 Tf <6e657874> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 62.74 433.2774 Td /F1.0 13 Tf <626c6f636b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 62.74 413.7403 Td /F1.0 13 Tf <746f> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 62.74 394.2031 Td /F1.0 13 Tf <697473> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 62.74 374.666 Td /F1.0 13 Tf <627265616b696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 62.74 355.1289 Td /F1.0 13 Tf <706f696e742e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 5 w 0.9333 0.9333 0.9333 SCN 50.74 721.61 m 50.74 347.4043 l S Q q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d q 18.0 0.0 0.0 20.0665 288.64 813.8568 cm /I13 Do Q 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN BT 480.9262 820.398 Td /F2.0 9 Tf [<436f6d70616e> 20.0195 <79204e616d65>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /Stamp1 Do 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 396.3862 16.663 Td /F1.0 9 Tf [<4368617074657220352e204b> 20.0195 <656570696e672049742054> 29.7852 <6f676574686572207c203131>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 79 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 78 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F4.0 22 0 R /F1.0 9 0 R /F2.0 10 0 R >> /XObject << /I13 8 0 R /Stamp1 145 0 R >> >> >> endobj 80 0 obj [79 0 R /XYZ 0 841.89 null] endobj 81 0 obj << /Length 9627 >> stream q q 0.5 w /DeviceRGB CS 0.9333 0.9333 0.9333 SCN 108.24 805.89 m 108.24 377.357 l S Q /DeviceRGB cs 0.098 0.251 0.4863 scn /DeviceRGB CS 0.098 0.251 0.4863 SCN BT 66.24 582.6235 Td /F6.1 24 Tf <23> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 120.24 790.5242 Td /F2.0 9.975 Tf <576861742068617070656e7320696620746865726520697320626f74682061206669656c6420616e642061206d6574686f642077697468207468652073616d65206e616d653f> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 1.6731 Tw BT 120.24 770.935 Td /F1.0 10.5 Tf <4261636b20746f207468652070726576696f7573206578616d706c652c20737570706f73652074686174207765206861766520626f74682061206669656c6420616e642061206d6574686f64> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 120.24 755.155 Td /F1.0 10.5 Tf <77697468207468652073616d65206e616d652c20617320696e3a> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 120.24 727.9732 Td /F2.0 9.975 Tf <4c697374696e6720332e204a61766120636c61737320776974682061206669656c6420616e64206d6574686f642074686174207368617265207468652073616d65206e616d65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.9608 0.9608 0.9608 scn 124.24 720.348 m 531.04 720.348 l 533.2491 720.348 535.04 718.5571 535.04 716.348 c 535.04 599.168 l 535.04 596.9589 533.2491 595.168 531.04 595.168 c 124.24 595.168 l 122.0309 595.168 120.24 596.9589 120.24 599.168 c 120.24 716.348 l 120.24 718.5571 122.0309 720.348 124.24 720.348 c h f 0.8 0.8 0.8 SCN 0.75 w 124.24 720.348 m 531.04 720.348 l 533.2491 720.348 535.04 718.5571 535.04 716.348 c 535.04 599.168 l 535.04 596.9589 533.2491 595.168 531.04 595.168 c 124.24 595.168 l 122.0309 595.168 120.24 596.9589 120.24 599.168 c 120.24 716.348 l 120.24 718.5571 122.0309 720.348 124.24 720.348 c h S Q 0.0 0.5333 0.0 scn 0.0 0.5333 0.0 SCN BT 131.24 697.523 Td /F7.0 11 Tf <7075626c6963> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 164.24 697.523 Td /F5.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.5333 0.0 scn 0.0 0.5333 0.0 SCN BT 169.74 697.523 Td /F7.0 11 Tf <636c617373> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 197.24 697.523 Td /F5.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.7333 0.0 0.4 scn 0.7333 0.0 0.4 SCN BT 202.74 697.523 Td /F7.0 11 Tf <466f6f> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 219.24 697.523 Td /F5.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 224.74 697.523 Td /F5.0 11 Tf <7b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 131.24 682.783 Td /F5.0 11 Tf <ca20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.5333 0.0 scn 0.0 0.5333 0.0 SCN BT 142.24 682.783 Td /F7.0 11 Tf <7075626c6963> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 175.24 682.783 Td /F5.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.7333 0.0 0.4 scn 0.7333 0.0 0.4 SCN BT 180.74 682.783 Td /F7.0 11 Tf <537472696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 213.74 682.783 Td /F5.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 219.24 682.783 Td /F5.0 11 Tf <626172> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 235.74 682.783 Td /F5.0 11 Tf <3b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 131.24 653.303 Td /F5.0 11 Tf <ca20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.5333 0.0 scn 0.0 0.5333 0.0 SCN BT 142.24 653.303 Td /F7.0 11 Tf <7075626c6963> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 175.24 653.303 Td /F5.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.7333 0.0 0.4 scn 0.7333 0.0 0.4 SCN BT 180.74 653.303 Td /F7.0 11 Tf <537472696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 213.74 653.303 Td /F5.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.4 0.7333 scn 0.0 0.4 0.7333 SCN BT 219.24 653.303 Td /F7.0 11 Tf <626172> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 235.74 653.303 Td /F5.0 11 Tf <2829> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 246.74 653.303 Td /F5.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 252.24 653.303 Td /F5.0 11 Tf <7b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 131.24 638.563 Td /F5.0 11 Tf <ca202020> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.5333 0.0 scn 0.0 0.5333 0.0 SCN BT 153.24 638.563 Td /F7.0 11 Tf <72657475726e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 186.24 638.563 Td /F5.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 191.74 638.563 Td /F5.0 11 Tf <626172> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 208.24 638.563 Td /F5.0 11 Tf <3b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 131.24 623.823 Td /F5.0 11 Tf <ca20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 142.24 623.823 Td /F5.0 11 Tf <7d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 131.24 609.083 Td /F5.0 11 Tf <7d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 2.7183 Tw BT 120.24 571.204 Td /F4.0 10.5 Tf <476f6c6f207265736f6c766573206d6574686f64732066697273742c206669656c6473206c6173742e> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 2.7183 Tw BT 339.9781 571.204 Td /F1.0 10.5 Tf <2048656e63652c2074686520666f6c6c6f77696e6720476f6c6f20636f64652077696c6c> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 120.24 555.424 Td /F1.0 10.5 Tf <7265736f6c76652074686520> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 177.9585 555.424 Td /F5.0 10.5 Tf <6261722829> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 204.2085 555.424 Td /F1.0 10.5 Tf <206d6574686f642c206e6f742074686520> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 288.5865 555.424 Td /F5.0 10.5 Tf <626172> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 304.3365 555.424 Td /F1.0 10.5 Tf <206669656c643a> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 120.24 528.2422 Td /F2.0 9.975 Tf <4c697374696e6720342e20476f6c6f207069636b7320746865206d6574686f64206f76657220746865206669656c642077697468207468652073616d65206e616d65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.9608 0.9608 0.9608 scn 124.24 520.617 m 531.04 520.617 l 533.2491 520.617 535.04 518.8261 535.04 516.617 c 535.04 428.917 l 535.04 426.7079 533.2491 424.917 531.04 424.917 c 124.24 424.917 l 122.0309 424.917 120.24 426.7079 120.24 428.917 c 120.24 516.617 l 120.24 518.8261 122.0309 520.617 124.24 520.617 c h f 0.8 0.8 0.8 SCN 0.75 w 124.24 520.617 m 531.04 520.617 l 533.2491 520.617 535.04 518.8261 535.04 516.617 c 535.04 428.917 l 535.04 426.7079 533.2491 424.917 531.04 424.917 c 124.24 424.917 l 122.0309 424.917 120.24 426.7079 120.24 428.917 c 120.24 516.617 l 120.24 518.8261 122.0309 520.617 124.24 520.617 c h S Q 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 131.24 497.792 Td /F5.0 11 Tf <6c657420666f6f203d20466f6f2829> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 131.24 468.312 Td /F5.0 11 Tf <666f6f3a20626172282262617a2229> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 213.74 468.312 Td /F5.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 219.24 468.312 Td /F5.1 11 Tf <21> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 131.24 438.832 Td /F5.0 11 Tf <7072696e746c6e28666f6f3a20626172282929> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 235.74 438.832 Td /F5.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 241.24 438.832 Td /F5.1 11 Tf <23> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 122.865 407.192 Td /F5.1 10.5 Tf <21> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 135.99 406.953 Td /F1.0 10.5 Tf <57726974657320746865206669656c64> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 122.865 385.412 Td /F5.1 10.5 Tf <23> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 135.99 385.173 Td /F1.0 10.5 Tf <43616c6c732074686520> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 180.9825 385.173 Td /F5.0 10.5 Tf <6261722829> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 207.2325 385.173 Td /F1.0 10.5 Tf <206d6574686f64> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN BT 48.24 820.398 Td /F2.0 9 Tf [<436f6d70616e> 20.0195 <79204e616d65>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 18.0 0.0 0.0 20.0665 288.64 813.8568 cm /I14 Do Q Q q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /Stamp2 Do 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 49.24 16.663 Td /F1.0 9 Tf [<3132207c204368617074657220352e204b> 20.0195 <656570696e672049742054> 29.7852 <6f676574686572>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 82 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 81 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F6.1 36 0 R /F2.0 10 0 R /F1.0 9 0 R /F7.0 47 0 R /F5.0 35 0 R /F4.0 22 0 R /F5.1 71 0 R >> /XObject << /I14 8 0 R /Stamp2 146 0 R >> >> >> endobj 83 0 obj << /Length 2789 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf <48657265d57320612070726576696577206f6620686f7720656163682068656164696e67206c6576656c2069732072656e64657265642e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 744.474 Td /F4.0 27 Tf <48656164696e67203120284c6576656c203029> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 713.826 Td /F1.0 10.5 Tf <66696c6c657220636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 669.714 Td /F4.0 22 Tf <48656164696e67203220284c6576656c203129> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 640.526 Td /F1.0 10.5 Tf <66696c6c657220636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 600.686 Td /F4.0 18 Tf <48656164696e67203320284c6576656c203229> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 572.666 Td /F1.0 10.5 Tf <66696c6c657220636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 538.166 Td /F4.0 13 Tf <48656164696e67203420284c6576656c203329> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 511.606 Td /F1.0 10.5 Tf <66696c6c657220636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 479.776 Td /F4.0 10.5 Tf <48656164696e67203520284c6576656c203429> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 453.946 Td /F1.0 10.5 Tf <66696c6c657220636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 423.718 Td /F4.0 9 Tf <48656164696e67203620284c6576656c203529> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 398.326 Td /F1.0 10.5 Tf <66696c6c657220636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.5 w 0.9333 0.9333 0.9333 SCN 48.24 376.51 m 547.04 376.51 l S Q 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 346.546 Td /F1.0 10.5 Tf <48657265d57320736f6d6520636f6e74656e7420696e7369646520616e206f70656e20626c6f636b2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d q 18.0 0.0 0.0 20.0665 288.64 813.8568 cm /I15 Do Q 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN BT 480.9262 820.398 Td /F2.0 9 Tf [<436f6d70616e> 20.0195 <79204e616d65>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /Stamp1 Do 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 396.3862 16.663 Td /F1.0 9 Tf [<4368617074657220352e204b> 20.0195 <656570696e672049742054> 29.7852 <6f676574686572207c203133>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 84 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 83 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 9 0 R /F4.0 22 0 R /F2.0 10 0 R >> /XObject << /I15 8 0 R /Stamp1 145 0 R >> >> >> endobj 85 0 obj [84 0 R /XYZ 0 778.11 null] endobj 86 0 obj << /Limits [(__anchor-top) (_dawn_on_the_plateau)] /Names [(__anchor-top) 16 0 R (__indexterm-1) 23 0 R (__indexterm-2) 29 0 R (__indexterm-3) 30 0 R (__indexterm-4) 34 0 R (__indexterm-5) 68 0 R (_a_recipe_for_potion_that_will_ensure_you_win_the_hearts_of_developers) 50 0 R (_are_you_still_here) 56 0 R (_can_i_get_some_code) 67 0 R (_credits) 95 0 R (_dawn_on_the_plateau) 61 0 R] >> endobj 87 0 obj << /Limits [(_footnotedef_1) (ravages)] /Names [(_footnotedef_1) 42 0 R (_footnoteref_1) 32 0 R (_heading_1_level_0) 85 0 R (_heading_2_level_1) 88 0 R (_heading_3_level_2) 89 0 R (_heading_4_level_3) 90 0 R (_heading_5_level_4) 91 0 R (_heading_6_level_5) 92 0 R (_index) 100 0 R (_its_a_city_under_siege) 21 0 R (_keeping_it_together) 80 0 R (_rendezvous_point) 38 0 R (_searching_for_burdockian) 53 0 R (_sigh) 57 0 R (_words_seasoned_with_power) 64 0 R (bier-central) 39 0 R (ravages) 46 0 R] >> endobj 88 0 obj [84 0 R /XYZ 0 698.01 null] endobj 89 0 obj [84 0 R /XYZ 0 624.71 null] endobj 90 0 obj [84 0 R /XYZ 0 556.85 null] endobj 91 0 obj [84 0 R /XYZ 0 495.79 null] endobj 92 0 obj [84 0 R /XYZ 0 438.13 null] endobj 93 0 obj << /Length 4853 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 782.394 Td /F4.0 22 Tf <417070656e64697820413a2043726564697473> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 753.8042 Td /F2.0 9.975 Tf <42726f7567687420746f20796f75207769746820> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.8784 0.1412 0.3686 scn 0.8784 0.1412 0.3686 SCN BT 143.8304 753.8042 Td /F6.1 9.975 Tf <24> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 153.8054 753.8042 Td /F2.0 9.975 Tf [<2062> 20.0195 <79204f70656e446576697365>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 48.24 724.399 93.525 21.78 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 141.765 724.399 93.525 21.78 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 235.29 724.399 187.05 21.78 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 48.24 702.619 93.525 21.78 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 141.765 702.619 93.525 21.78 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 235.29 702.619 187.05 21.78 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 48.24 680.839 93.525 21.78 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 141.765 680.839 93.525 21.78 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 235.29 680.839 187.05 21.78 re f 0.0 0.0 0.0 scn 0.9412 0.9412 0.9412 scn 48.24 659.059 374.1 21.78 re f 0.0 0.0 0.0 scn 0.9412 0.9412 0.9412 scn 141.765 659.059 93.525 21.78 re f 0.0 0.0 0.0 scn 0.9412 0.9412 0.9412 scn 235.29 659.059 187.05 21.78 re f 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 746.179 m 141.765 746.179 l S [] 0 d 1.25 w 0.8667 0.8667 0.8667 SCN 48.24 724.399 m 141.765 724.399 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 51.24 731.215 Td /F4.0 10.5 Tf <4e616d65> Tj ET 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 141.765 746.179 m 235.29 746.179 l S [] 0 d 1.25 w 0.8667 0.8667 0.8667 SCN 141.765 724.399 m 235.29 724.399 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 144.765 731.215 Td /F4.0 10.5 Tf <5469746c65> Tj ET 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 235.29 746.179 m 422.34 746.179 l S [] 0 d 1.25 w 0.8667 0.8667 0.8667 SCN 235.29 724.399 m 422.34 724.399 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 315.9695 731.215 Td /F4.0 10.5 Tf <416c696173> Tj ET 0.0 0.0 0.0 scn 1.25 w 0.8667 0.8667 0.8667 SCN 48.24 724.399 m 141.765 724.399 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 702.619 m 141.765 702.619 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 51.24 709.435 Td /F1.0 10.5 Tf [<536172> 20.0195 <6168205768697465>] TJ ET 0.0 0.0 0.0 scn 1.25 w 0.8667 0.8667 0.8667 SCN 141.765 724.399 m 235.29 724.399 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 141.765 702.619 m 235.29 702.619 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 144.765 709.435 Td /F4.0 10.5 Tf <507265736964656e74> Tj ET 0.0 0.0 0.0 scn 1.25 w 0.8667 0.8667 0.8667 SCN 235.29 724.399 m 422.34 724.399 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 235.29 702.619 m 422.34 702.619 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn 0.2588 0.5451 0.7922 scn 0.2588 0.5451 0.7922 SCN BT 296.7337 709.435 Td /F1.0 10.5 Tf [<40636172626f6e6672> 20.0195 <61> 20.0195 <79>] TJ ET 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 702.619 m 141.765 702.619 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 680.839 m 141.765 680.839 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 51.24 687.655 Td /F1.0 10.5 Tf <44616e20416c6c656e> Tj ET 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 141.765 702.619 m 235.29 702.619 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 141.765 680.839 m 235.29 680.839 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 144.765 687.655 Td /F4.0 10.5 Tf <5669636520507265736964656e74> Tj ET 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 235.29 702.619 m 422.34 702.619 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 235.29 680.839 m 422.34 680.839 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn 0.2588 0.5451 0.7922 scn 0.2588 0.5451 0.7922 SCN BT 293.0795 687.655 Td /F1.0 10.5 Tf <406d6f6a6176656c696e7578> Tj ET 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 680.839 m 422.34 680.839 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 659.059 m 422.34 659.059 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 175.6094 665.875 Td /F2.0 10.5 Tf [<506f77657265642062> 20.0195 <79204f70656e20536f75726365>] TJ ET 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN BT 48.24 820.398 Td /F2.0 9 Tf [<436f6d70616e> 20.0195 <79204e616d65>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 18.0 0.0 0.0 20.0665 288.64 813.8568 cm /I16 Do Q Q q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /Stamp2 Do 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 49.24 16.663 Td /F1.0 9 Tf <3134207c20417070656e64697820413a2043726564697473> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 94 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 93 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F4.0 22 0 R /F2.0 10 0 R /F6.1 36 0 R /F1.0 9 0 R >> /XObject << /I16 8 0 R /Stamp2 146 0 R >> >> /Annots [96 0 R 97 0 R] >> endobj 95 0 obj [94 0 R /XYZ 0 841.89 null] endobj 96 0 obj << /Border [0 0 0] /A << /Type /Action /S /URI /URI (http://twitter.com/carbonfray) >> /Subtype /Link /Rect [296.7337 706.369 361.8963 720.649] /Type /Annot >> endobj 97 0 obj << /Border [0 0 0] /A << /Type /Action /S /URI /URI (http://twitter.com/mojavelinux) >> /Subtype /Link /Rect [293.0795 684.589 365.5505 698.869] /Type /Annot >> endobj 98 0 obj << /Length 2699 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 782.394 Td /F4.0 22 Tf <496e646578> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 753.206 Td /F4.0 10.5 Tf <41> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 734.426 Td /F1.0 10.5 Tf <416e74776572702c20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2588 0.5451 0.7922 scn 0.2588 0.5451 0.7922 SCN BT 97.4955 734.426 Td /F1.0 10.5 Tf <32> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 706.646 Td /F4.0 10.5 Tf <44> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 687.866 Td /F1.0 10.5 Tf <4465766f78782c20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2588 0.5451 0.7922 scn 0.2588 0.5451 0.7922 SCN BT 91.1115 687.866 Td /F1.0 10.5 Tf <32> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 660.086 Td /F4.0 10.5 Tf <48> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 641.306 Td /F1.0 10.5 Tf <686967686c69676874696e672c20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2588 0.5451 0.7922 scn 0.2588 0.5451 0.7922 SCN BT 114.2745 641.306 Td /F1.0 10.5 Tf <37> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 613.526 Td /F4.0 10.5 Tf <52> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 594.746 Td /F1.0 10.5 Tf <526176656e6f7573204265617374> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 63.24 578.966 Td /F1.0 10.5 Tf [<57> 60.0586 <6f6c70657274696e6765722c20>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2588 0.5451 0.7922 scn 0.2588 0.5451 0.7922 SCN BT 135.2799 578.966 Td /F1.0 10.5 Tf <32> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 551.186 Td /F4.0 10.5 Tf <57> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 532.406 Td /F1.0 10.5 Tf [<57> 60.0586 <6f6c70657274696e6765722c20>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2588 0.5451 0.7922 scn 0.2588 0.5451 0.7922 SCN BT 120.2799 532.406 Td /F1.0 10.5 Tf <32> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d q 18.0 0.0 0.0 20.0665 288.64 813.8568 cm /I17 Do Q 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN BT 480.9262 820.398 Td /F2.0 9 Tf [<436f6d70616e> 20.0195 <79204e616d65>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /Stamp1 Do 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 501.643 16.663 Td /F1.0 9 Tf <496e646578207c203135> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 99 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 98 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F4.0 22 0 R /F1.0 9 0 R /F2.0 10 0 R >> /XObject << /I17 8 0 R /Stamp1 145 0 R >> >> /Annots [101 0 R 102 0 R 103 0 R 104 0 R 105 0 R] >> endobj 100 0 obj [99 0 R /XYZ 0 841.89 null] endobj 101 0 obj << /Border [0 0 0] /Dest (__indexterm-4) /Subtype /Link /Rect [97.4955 731.36 103.365 745.64] /Type /Annot >> endobj 102 0 obj << /Border [0 0 0] /Dest (__indexterm-1) /Subtype /Link /Rect [91.1115 684.8 96.981 699.08] /Type /Annot >> endobj 103 0 obj << /Border [0 0 0] /Dest (__indexterm-5) /Subtype /Link /Rect [114.2745 638.24 120.144 652.52] /Type /Annot >> endobj 104 0 obj << /Border [0 0 0] /Dest (__indexterm-3) /Subtype /Link /Rect [135.2799 575.9 141.1494 590.18] /Type /Annot >> endobj 105 0 obj << /Border [0 0 0] /Dest (__indexterm-2) /Subtype /Link /Rect [120.2799 529.34 126.1494 543.62] /Type /Annot >> endobj 106 0 obj << /Border [0 0 0] /Dest (_its_a_city_under_siege) /Subtype /Link /Rect [48.24 748.79 167.772 763.07] /Type /Annot >> endobj 107 0 obj << /Border [0 0 0] /Dest (_its_a_city_under_siege) /Subtype /Link /Rect [541.1705 748.79 547.04 763.07] /Type /Annot >> endobj 108 0 obj << /Border [0 0 0] /Dest (_rendezvous_point) /Subtype /Link /Rect [60.24 730.31 169.104 744.59] /Type /Annot >> endobj 109 0 obj << /Border [0 0 0] /Dest (_rendezvous_point) /Subtype /Link /Rect [541.1705 730.31 547.04 744.59] /Type /Annot >> endobj 110 0 obj << /Border [0 0 0] /Dest (ravages) /Subtype /Link /Rect [48.24 711.83 175.752 726.11] /Type /Annot >> endobj 111 0 obj << /Border [0 0 0] /Dest (ravages) /Subtype /Link /Rect [541.1705 711.83 547.04 726.11] /Type /Annot >> endobj 112 0 obj << /Border [0 0 0] /Dest (_a_recipe_for_potion_that_will_ensure_you_win_the_hearts_of_developers) /Subtype /Link /Rect [60.24 693.35 433.7583 707.63] /Type /Annot >> endobj 113 0 obj << /Border [0 0 0] /Dest (_a_recipe_for_potion_that_will_ensure_you_win_the_hearts_of_developers) /Subtype /Link /Rect [541.1705 693.35 547.04 707.63] /Type /Annot >> endobj 114 0 obj << /Border [0 0 0] /Dest (_searching_for_burdockian) /Subtype /Link /Rect [72.24 674.87 228.795 689.15] /Type /Annot >> endobj 115 0 obj << /Border [0 0 0] /Dest (_searching_for_burdockian) /Subtype /Link /Rect [541.1705 674.87 547.04 689.15] /Type /Annot >> endobj 116 0 obj << /Border [0 0 0] /Dest (_dawn_on_the_plateau) /Subtype /Link /Rect [48.24 656.39 163.131 670.67] /Type /Annot >> endobj 117 0 obj << /Border [0 0 0] /Dest (_dawn_on_the_plateau) /Subtype /Link /Rect [541.1705 656.39 547.04 670.67] /Type /Annot >> endobj 118 0 obj << /Border [0 0 0] /Dest (_words_seasoned_with_power) /Subtype /Link /Rect [48.24 637.91 201.7284 652.19] /Type /Annot >> endobj 119 0 obj << /Border [0 0 0] /Dest (_words_seasoned_with_power) /Subtype /Link /Rect [541.1705 637.91 547.04 652.19] /Type /Annot >> endobj 120 0 obj << /Border [0 0 0] /Dest (_can_i_get_some_code) /Subtype /Link /Rect [60.24 619.43 157.8795 633.71] /Type /Annot >> endobj 121 0 obj << /Border [0 0 0] /Dest (_can_i_get_some_code) /Subtype /Link /Rect [157.8795 621.026 178.8795 631.526] /Type /Annot >> endobj 122 0 obj << /Border [0 0 0] /Dest (_can_i_get_some_code) /Subtype /Link /Rect [178.8795 619.43 184.1295 633.71] /Type /Annot >> endobj 123 0 obj << /Border [0 0 0] /Dest (_can_i_get_some_code) /Subtype /Link /Rect [541.1705 619.43 547.04 633.71] /Type /Annot >> endobj 124 0 obj << /Border [0 0 0] /Dest (_keeping_it_together) /Subtype /Link /Rect [48.24 600.95 157.3791 615.23] /Type /Annot >> endobj 125 0 obj << /Border [0 0 0] /Dest (_keeping_it_together) /Subtype /Link /Rect [535.301 600.95 547.04 615.23] /Type /Annot >> endobj 126 0 obj << /Border [0 0 0] /Dest (_credits) /Subtype /Link /Rect [48.24 582.47 147.822 596.75] /Type /Annot >> endobj 127 0 obj << /Border [0 0 0] /Dest (_credits) /Subtype /Link /Rect [535.301 582.47 547.04 596.75] /Type /Annot >> endobj 128 0 obj << /Border [0 0 0] /Dest (_index) /Subtype /Link /Rect [48.24 563.99 76.989 578.27] /Type /Annot >> endobj 129 0 obj << /Border [0 0 0] /Dest (_index) /Subtype /Link /Rect [535.301 563.99 547.04 578.27] /Type /Annot >> endobj 130 0 obj << /Type /Outlines /Count 13 /First 131 0 R /Last 143 0 R >> endobj 131 0 obj << /Title <feff005400680065002000440061006e006700650072006f007500730020002600200054006800720069006c006c0069006e006700200044006f00630075006d0065006e0074006100740069006f006e0020004300680072006f006e00690063006c00650073003a0020004200610073006500640020006f006e002000540072007500650020004500760065006e00740073> /Parent 130 0 R /Count 0 /Next 132 0 R /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 132 0 obj << /Title <feff005400610062006c00650020006f006600200043006f006e00740065006e00740073> /Parent 130 0 R /Count 0 /Next 133 0 R /Prev 131 0 R /Dest [13 0 R /XYZ 0 841.89 null] >> endobj 133 0 obj << /Title <feff004300680061007000740065007200200031002e00200049007420190073002000610020004300690074007900200055006e006400650072002000530069006500670065> /Parent 130 0 R /Count 1 /First 134 0 R /Last 134 0 R /Next 135 0 R /Prev 132 0 R /Dest [20 0 R /XYZ 0 841.89 null] >> endobj 134 0 obj << /Title <feff0031002e0031002e002000520065006e00640065007a0076006f0075007300200050006f0069006e0074> /Parent 133 0 R /Count 0 /Dest [20 0 R /XYZ 0 149.9752 null] >> endobj 135 0 obj << /Title <feff004300680061007000740065007200200032002e0020005400680065002000520061007600610067006500730020006f0066002000570072006900740069006e0067> /Parent 130 0 R /Count 2 /First 136 0 R /Last 136 0 R /Next 138 0 R /Prev 133 0 R /Dest [45 0 R /XYZ 0 841.89 null] >> endobj 136 0 obj << /Title <feff0032002e0031002e00200041002000520065006300690070006500200066006f007200200050006f00740069006f006e00200054006800610074002000570069006c006c00200045006e007300750072006500200059006f0075002000570069006e002000740068006500200048006500610072007400730020006f006600200044006500760065006c006f0070006500720073> /Parent 135 0 R /Count 1 /First 137 0 R /Last 137 0 R /Dest [45 0 R /XYZ 0 410.288 null] >> endobj 137 0 obj << /Title <feff0032002e0031002e0031002e00200053006500610072006300680069006e006700200066006f007200200042007500720064006f0063006b00690061006e> /Parent 136 0 R /Count 0 /Dest [52 0 R /XYZ 0 470.97 null] >> endobj 138 0 obj << /Title <feff004300680061007000740065007200200033002e0020004400610077006e0020006f006e002000740068006500200050006c00610074006500610075> /Parent 130 0 R /Count 0 /Next 139 0 R /Prev 135 0 R /Dest [60 0 R /XYZ 0 841.89 null] >> endobj 139 0 obj << /Title <feff004300680061007000740065007200200034002e00200057006f00720064007300200053006500610073006f006e006500640020007700690074006800200050006f007700650072> /Parent 130 0 R /Count 1 /First 140 0 R /Last 140 0 R /Next 141 0 R /Prev 138 0 R /Dest [63 0 R /XYZ 0 841.89 null] >> endobj 140 0 obj << /Title <feff0034002e0031002e002000430061006e00200049002000470065007400200053006f006d006500200043006f00640065003f> /Parent 139 0 R /Count 0 /Dest [63 0 R /XYZ 0 575.15 null] >> endobj 141 0 obj << /Title <feff004300680061007000740065007200200035002e0020004b0065006500700069006e006700200049007400200054006f006700650074006800650072> /Parent 130 0 R /Count 0 /Next 142 0 R /Prev 139 0 R /Dest [79 0 R /XYZ 0 841.89 null] >> endobj 142 0 obj << /Title <feff0041007000700065006e00640069007800200041003a00200043007200650064006900740073> /Parent 130 0 R /Count 0 /Next 143 0 R /Prev 141 0 R /Dest [94 0 R /XYZ 0 841.89 null] >> endobj 143 0 obj << /Title <feff0049006e006400650078> /Parent 130 0 R /Count 0 /Prev 142 0 R /Dest [99 0 R /XYZ 0 841.89 null] >> endobj 144 0 obj << /Nums [0 << /P (i) >> 1 << /P (ii) >> 2 << /P (1) >> 3 << /P (2) >> 4 << /P (3) >> 5 << /P (4) >> 6 << /P (5) >> 7 << /P (6) >> 8 << /P (7) >> 9 << /P (8) >> 10 << /P (9) >> 11 << /P (10) >> 12 << /P (11) >> 13 << /P (12) >> 14 << /P (13) >> 15 << /P (14) >> 16 << /P (15) >>] >> endobj 145 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 595.28 841.89] /Length 162 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d q 0.25 w /DeviceRGB CS 0.8667 0.8667 0.8667 SCN 48.24 32.4 m 547.04 32.4 l S Q Q endstream endobj 146 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 595.28 841.89] /Length 162 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d q 0.25 w /DeviceRGB CS 0.8667 0.8667 0.8667 SCN 48.24 32.4 m 547.04 32.4 l S Q Q endstream endobj 147 0 obj << /Length1 18868 /Length 11835 /Filter [/FlateDecode] >> stream x| x[Օ=nْlKgY$ٖ]qȲXޝx' I!I6B`B !(4 m -Pt@6% M$۲h޻{=srlBahQSNn0@{ܓrEˣ�6T =~7894GcG( s==՜!Csm|I#dXp[C5rqQ3᱙mAщ>U001IUڪΎ\3'* 791=SwB_דS5"<khAd8ҥ7K^ٟ/W>[=/4S*A~`"Iҳ]Q. hcR ahA"3'S4?,CQ:̨j*dG,b}mL (!4H`DZ"CaVj'2s7Ի:�0\w]pMڨZtn_t(/D 'hV<຀`Y 5POD'm{QXퟡi)*4AQ)F"u]ًa \h+u2 $!2QKg^N xRP>sR"c苨~uQ!=11O##D1PIhd0/_D+4hOii?$> hW!P,hHQPpHhXx42 #EtLRְ.QONIMK7M(ePs%'7/j+WTVUգ pg"6[W}8Zm{]{EԸaC}]mMuUeEyYif-*,ͱdfd}.Kjbd҈@IXF\eI0I\u97�~ ʵ}<lЍ]={{Wz \* #\;P $ F1m=\pPW6dHG炂 %O27y'۰P+ QHJк wUQj 50\hBeJ dG{."PoOZH?ryh7+xiܓ1O:W^I#XW[{D pAĺ RWrl|ϼҞ^υOV�Q F]XzSy3 |lD5u<v~9mJ+m_e�jd.Q/T<{\:zU/#)C7[䭤erY0~x| }rR6.e#J()d|P &HF!x*@=i^;\{9n*e`D4R.c&=2tE07#+#*l<ѭW{@{&kȼlVm3F t0b?aW.cok(%p3C M+PÕ#@1uh8ʋ#IXۡc�J(pEp$pEp(Q"օUh7Ia+}H} RQelbR<e*m1S&"&ZV`@1ڹacot1CO55?f+4?s=UB}Zfpu-9C"nϓKA4t3n'BjW.2W$uRC:s~?z-)LK6k,J( K*S3T$Bkv�}0`eF}(/,bF|@J1cl?ڇ{ډ#p~s6g;)q'(s^L^@3wGTp1,a9j2ԊpE(D%cc%zcZ=KxX|bk"_-=+J-Ejp8ja@`O0Ò;X3:\4 8�`]hQO#0~YڇpQO ф\4H`}ޅ:\ q,`TأZ4=WqU,*sb?~^!?b+i[`[=bvae*08 Ty|4z,<cG#}<?(eC}o:>Q档OKGENm6DifONTMJ `4b !|aMJ̀i{`&2Glwi&pڝNuc뻭^o5:>sPtuU& %U8άjURaoW֧? NO%t1 = ,-iiu4vz] ۛ:<<u9J<Y-.OO|{ vRs T>===&|MPOCːi-!6=3 gfgqt7tFp nޞ~ didiih:-eOl$WDFL-Z"٘ߝ`o~$˅!'D(; E"?[|EA�[g.VpmEdn4΢+~A@μȧR6ފ)̡#l pBr{O_kx4Z`�[Y6nK:@O]h r"D#HtC|fWzK wӆ"6]) dD,?EMA .R/P'.W00( B=G]Xں+HtP�}px~LePߠ~J)0}if3EũI ؀ )I+9 E7ڐC Мo[XR`s ?PGlxR!.DvG>y3*5j2,FGJy99/!fq*x9'@irbj:T;Hg/o^Y|~9,F(Lst2g),ԕOeI4qr9gRLLʭW-lXkIg"l5O 0`�\#mCmk\p@.r]ta\pHbf=kװչ"S\P/K>:;ߦOj׍g"5*4ig S#|42CMvgo/j/;Zm=n[1:\Yiͅ qSg)5pYM&⏔-åuJzK_^V,poRk)`D h\e5rǻ v.{upǧۻN]^Ú_?eSRl[T\F,6*ວ߶w=kk\9m?YQ )'ZR95?v)~?9wA+_#ذ%Xs,Ħ]݊ņ|6/=YcEdd*,.ESh6{_)(ʢ)9z`jnŽ0OBpz uQk,d8RR0Y ye6/oۿpQW<T[7XR +8͛϶={OOK�@qa)$P16KarP9A[ՆMqU}Jwi 2쌆<5S6J(9 aXl-hyArV#=F& (I q-<XƜʶH=Ce8>1V?Љv~25WOÇ6ۿpS.1n ј)kxM=>a?siZk rd/XYygIIl[Vk:Ֆ^tl(7 (&Ce!WHhd6e<[S]Ofz\CŎJ)0T|<5Jgk1*r:Kuā!~ؾA_^hEarL WMw cD𼍢ELRӱ!g <[hƟF''2Lv%u<O0(m7Ҝve,-ӛ, ӣ2K:8&ξ*}avQWbqzW?״ݴQ/ QXyo V>3:2}QMB=> dME@jEh?JȆ1^iBX'NZ[o)( \wpv4nJ/K-ɑS~.0Y,}wW_ܯ9<XԐRhj+-k'~9oNBtDk6!sQZ9o7 O?KDÃx&9 kS(F/e|чUuH&TYAo>kIȬ􋳅WecRS\0Έm/o/@.=ONU ]cmJ4=e7y?0ecZp] 3uTJ:,b6Z#RhxzAhUdԪ̟UQ6:ug=(itKag_Soym,.):,)Jtݭ.j8[~rxug[.r|ªɲIРPe7ɱ=,_~f[^h´9œe}N.鉅S sss-}N^@Ow]s5eNk-'Fg3( s^n|dĹ&欖6kBj&TtظM.T~Y E9دN�Fϭ":Lgzn4鞘$8IŒcBh2bSyCUsrKYKmk92Xw&Ms0Ќ<kt>~yO_8|qlDz,Gw{̼v룶l6!Dg"hg;z]Yq:r쾻3716mY<ET{t*o޹q~2>&szuo3GG ]&|*8'f~Gt(xQ+X@I F k�'*L|^o&UL;%ͧY4 Jy1&ivhd޼ʦƂG&F/u>UޘQذ7&-2Bo ĤܩZ,ͷ{4՗ߕS9b/O*9Q2ZafGm5;~`jMB\Ab) )kwE_3n٪m IlںRY`;Obe}3M@EG22Jb;f4f skݴL)UXFL=?4:BZt:S3O3 I}Si`oV"r]/b0D@U*rG3}w,Zv?~lJ˩?ǙV ,n5[3CDCF(lKحW VzJF) VbOAB? 5П !E/~п<oKVK0KuSìD+I{'1g=o"L`6>YYCNR]^0L[^%g?sSښ6W$ǁՙ?8\8FHP2I|vb藲U׃?}k B\U?aD<b_auuo_ zTġJT ʩ(j&C]|J#^|re!ҐD>fN45S #B ;oP2 /pǃa#0EGUW}?k(5_[ek I$A_ Vc =JYf|+)H=cb辎$y>☭I(CYe_^<H7oݦo 2^/ou#ƒhF%l չ[_ZJsae̕bߙxE Ou2}nׯ2� ŧ۫9UToD~zo1Go AvWt#ߙ,+̑En )(J�2O.lMo=BS 3i#;E\q'Tc<iǭ_z/=N l蟓_?tϡ۴gҖB:?#PY?zs=‰gn:o;&i>E}^^6|,%(Y 6yoxsl]#=i#/~qS_%/ oKswV^_ 2["ref֓H> K.i|E5Z^ș?TL|7#~IAE{9| Utz vcӃƲ]js\%wغGz{]Znoٿ+YSӷpoJJ21jND]$i#.ql  ]B*84Ll6>a[> GxkYOV:U/:IKܛ+ͭsW]/`%+3OV텫3Zg+i3[H=4C) ":Jm87"&A2XIjlY%W5҈4N-] 65a2CD8|mPQj19!-V@C$BOBSy'N3}̓qiXDhW  M0@oJ4<EuCtvwj飶@V1o۵': 4{yW)Zov,/؈WK_!~]#oF3w zσwT&02"\DŽrM8_eTQibΨ :N9a\^*X|(,Vp% &"x3<!'Bs`"$XJT񗱞A|M kk'4xO3DR$~ZTR8NXb4PM' >9Mɟ!F|2452&4@Z3Cc-a @j\&>1ߤe(Z} Ӟ �o@xym=Ʈz!&! )U #;b!JaQtt *%?$ey ZmUIf5-I km/p)L Y)[Ti/mυ$ᔞMɵKΈ:-j(Ԛ:ǁ?%9=igNwUzu@ՀJ!@AunC*D4Ol(T&"s#ItA}Os-vdKS&k\MeʌS#Zo.�יa6[;ZFOOl9=?393Ser 7_ZEtwڻ:#eمpYz۽.?vy-U]+!q\e e. *^~7$[�?Y))B]LNE)[J]Me=ָmW\0 \9̹ȳBN/& &K_>Ip8@+xU~?eݪ8/N.: 5ȰgtOۏ58չog$IJMUQ2KP} Zu)ܲĀorl<;8^5Xul}zab8E=u'SƥŇk q e%sED&912Dmhi+ʀcJpĻ_Ch>idSDy;ɲČ%T'Wʕ2`<tq(Y*"*kOKԪ.<++L=uAp*ha!G`~'8(G_+Q!1АдYWn 4Q'EǪ"cR׃}9'uؓթ9Zk{jdqSpovpTLh^oX]igʅ=vmx}b_sYcߤˊl/ۇteĤm{2ﲪI|-ΪTǿnryòjmgHPon,C2ܵ¹u羵{D1(MjLl*)" \x׉uF"<CCՐP s0DP؛ɢG۵B@7"5i11idn:CRz7 ;?çwL";P`eB>L@RH 4㷪6RG-Ngpr\27!R3,8F W;^}(d%,ϫwcy++y'غ;fw-?ײַwP؞_hA=q*HS5#c5Jnjhhs3 گZ֙nAtgkRT6}tb?@N|u~r:U[=iw) rSA}khGN'jnk%e[6l\.jJ? &凧^-*}qj邂|*s0_6{}`( wί NޕF[A q _-ƨx[@A(Y`k G"%UZϓ{[&]a\\| n2tZ*L@cqrM<$Zln#Surpg`  eoSGωWP$KvOɍEIEMOMV[Ҫ=z=qO)EڕO39$?qxq.WJoTdrڍIL'mj̆�i.`2UnSNJ.]ʬHIbzwYhM\W64^0%67%kӢJrU7JP,b#̜jI]{эC.C(pQ/4 ##VG6wĘ\A"w9q2gj @0g SG-ZhQdkJ~= 4ѐHI(Y%Cq2&@ ;XV_rAp:3R.ߕS*J64C ͞ !oy Gp#~R*F&&k%ea:S=}C 41ڂ=AHL7u-J}VY( /PX8D9#?s+u~Xs &~4kL$ cё&)K3l04%Gc>(*1Q,5xjTQ!68.\\v {~!Z^q !jsn=<3Pl>�;C`q?Lt I~bQS$Ne|g𱱚X~R&YiT FW 3^8wlKej6zIfSA˚tkiV. L:.1u!Ѥ r-|jLʃ).0gjMfz<Ֆ"ca~2۹XD21r5{y֏=^"߭.S zkSSk{ S_8*)ckZ]v@.%#7:bt4G1![#Uf69LY@Fs$zN¥W}WDPE|ՏɆ<8X/UjLJi.<NҡPGQ"1 (0 2[S2:@LHODŽ1ۄ{.IE`YlxgƧb^\/''X/~PAj[-Q'~?Q$Id9{z]�}#T.#z Il߭BW)HSCΧ&?=ϴ/{hӴ^x#ƵoM $4_҂ _x [˂w.X>"N^0eb- {Fp@t)-WQRMM rU%&i4^&_Bx4Gv_>w"|e1@Ӿr�J@|e g}@$CA`Wxda寢X+:LCRR%!W7uWHF- #|ej_A2+P =+rz?Q2l6_91}P/a22تfȖͤim6ol`[FfGS&'f&aȘ{hd|5}VK΁鑉q6Әδ䥑^#Ӭr6`8pg sJ~ol,0n0ob440c&1plȄcHa[&gvO 5 OÜS�RSnvvHgW9iddzfjwVBO8Pִ$%-5-l[zcm+in.ipTٲ 5 PdKٺtv`șbON LOSaUNxW2=9728ǎLJfCɁix?ld=#ԇ& LqMN :sR075293m5NL 6V֣24&B# bQ�UAG�j8ꃽB3 ?,j^5-9�z6X"GРkx7@6@k2-Cw,2u'<w94 VVa(u5=@0 e۔~yr3W*03-'0.`a6 2>`MnVWfZ' <;[7*i-a5˕BAB3pz`E7dPHV3,ms0k0N:)pCY Z@EBmPr@“K@�T!vF #jRk uB@;SBm;pfJЄi)ac�%^*O&dZ':ғ󸰳݂F:' ^.Kdǿ~DŽNt0v|ewlVaGwR]b"IrFI8gi}>B<  G >+s1() ADCH HF)( 0go?Eyo@PlmTUyՂ�46&ОЙV6:P'ꂨl�:}G^A##%BT'Aw}p endstream endobj 148 0 obj << /Type /FontDescriptor /FontName /24a158+NotoSerif /FontFile2 147 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 149 0 obj << /Length 1278 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }ik/y_!}t~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=n?[i(JKiU:JSz2QeL*EJ̔Ye,*+eU(NU-уk5x5F^ky ^#k5x5F^ky ^#kxZV^kZy-^+kxZV^kZy-^+uxu:N^:y^'uxu:N^:y^'xz^^zy=^/xz^^zy=^/o xo7 Aހ7y o xo7 Aހ7y oxo7jo$JI$$*I$ITH$$QI"IDD%$JI$$*I$ITD$$III$$u>M&Iބ7ɛ&y$o›Mx o7M&Iބ7ɛ&yUoa[5joSor4ۂs�ޮ>,x/x;Â31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x e#e_y+h܊7k:/Z5dUluz5n[eB&Si|y(%q& %+S%*ABijPU6\h,(+L,4G5<cD [˧*t [ jjaijIxʪwgFwضR>sh>:OVRP*#i|e0U,*oU/*[U,Nmlx:&\}M)L2\%CHF7էʻBL)jƻJ1:%H߯:=S۳zrmkO媳7 endstream endobj 150 0 obj [259 333 500 500 500 500 742 500 346 346 500 559 250 310 250 500 559 559 559 559 559 559 559 559 559 559 286 500 500 559 500 500 920 705 653 613 727 623 589 713 792 367 356 700 623 937 763 742 604 742 655 543 612 716 674 1046 660 625 500 359 500 359 500 500 500 562 613 492 613 535 369 538 634 319 299 584 310 944 645 577 613 613 471 451 352 634 579 861 578 564 511 500 559 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 535 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 361 500 500 500 500 834 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 857 259 500 500 500 500 500 500 1000 450 450 250 250 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj 151 0 obj << /Length1 12396 /Length 8033 /Filter [/FlateDecode] >> stream xz XSW<@F"" oCyĀ ^A|;hhZױ:mh:NkZ:!;'' s^{^{@! UMXB -x !� 8#4QMni,8b_GH!؛~ X?ayCR% 4jbGݶ5&B5O a^Xv0rmeGؖ?#[-˚|&Kv^ONuK{ln6+!6Dmy~DC~޼Z>}~jx!ZFu@90 I"IGj@2q`YXsq Y�Q'!Ʒ 1a8tgf~LXϣQ Ρ7-XydN#sڽA3Jf$rQ}p}!<T6#P윻냫GQ=s|FZ}Avsw2}v+磣,nydڐ O[l"W8{16øCw*QsO-n%9أB0!Aށfq o29,=@^Kc29$wȽi2_F- B#t R aBx1Qcƍ`HHhW>9ygdgHOKMIN1})''&Ə7&rtD P Te`4.CȬ+h!++ ,NPi|HL(=XOCb<.ݸltw^"̍` >cxm:|3sIm{FE:&Y}cơ.!�9Fhcf``dLF:و K`9#]חƌv JY:iNȒM|׸77wPeE*2d-ho vF Ψ_˭qBz3r-엓{O$v"T#sc,FQ0ޞ)nJW ]C7gQVuOl937:UxdlfaS3gDdozi ~i#S;Uf3Q0J.u2t L` Y_^!@4sN."J�o8TB>P*^hWJEZʮ㝲X5pd ]Ү~w<:0:@O !dTHKj>f3+b39dqR!KZ!?T"DZԦ9V92ҩd>"ݣ%1G^%tJy5:\U UAUfޙ\ .Rhࡨ N/Jt2i"!wNyg"2c#u6rNe73:U3RݩP¥Xx3!/53b*锖&Cӗ=q L`XNN�6"r8y,XRw&m=%g>bU<h4Y&i:ә\Lq?̺o:;ͷ+ܢv\"<ۉh 'O ЉOYȴ@CEޕLkm].԰֭(ƌ,KJƏx|LZEjiW8̙pVXb)x: auǓZ#r"B/H)8v3ʋc�yp"~ JkǰgU4>Jk+Ji b'fw]u T!(>ɃS2q+UcL A,~3Ԣ#p1X5`^;F3ݨc%KJ7wcz7&w.ƅ\T.ŦTLq�`wa !w}#6L%'+α7RF2\ Js"tv&/"^yius;b"fKƺCy?t &]{w1w'6ܚ ui3fxxCwsa+5FwXf5ʌJ[j<8"y[W1Kd l{eg7% LlRI~K%7Jd7g~7g U8$XKThPJLT%& 6 AW^A7 &p7~(::[ᆃNQ0ωwF{2q'*)gxKPdvV:�H�T!]A(n;Gۑ"% Ey x$S;rwzZ[ vxP:=|Pw0jq9H"tђnRD6KEY ?s]˄Q3ZYU3swPȫ#ҏr{H28u'Bbx;;`b?s 4Ya- E1=GѢdGv@?atu̢]WDgŧD4䮇#c-#G3+zTE s'4 "-D2P{ʾ$2 ojGOCge b5L7sY2 pZn,H ; O^,oTRT(v(QeruW>c|}8_!"BƲm_z;V,wmS}%td6ذĄ Z9N>)Weh˖iZM}eӡ6MPpw`K :P?tVtESbjworFʌjXI3/-/CtⲖ?4sGdq҃'Ö9ZT7(5-srFIc[>v c;S}C޷!4F"gJg'KtSaA(#*jrV7^FTN 0aQ3(a!,q"'&Kj QʵXhMɔڷt⥖V081a& cX?8X!_9Y=qۿ}$ T>Էs[WR9}<]5N�QsbGDwQ8P a7A"h|/B_~{ɛOk|lœȼYNٳaWa/}}2yˉm!_m_h$BCvQ&by@8Lڨag~ 'r{Jdٝc Mo~u z\ ئ Apσ<$V+Lau2~Wu:lfu׉êW<K}N}d1Ywvp"  ب 200q zAztC{;F D3wɟejfH$ !v r|+xl7N̻z5Y<yhAJ~]#Ǘw"/8Z_4{qe] >!ZZ.YإF#ʈ ݳet$lrdx .%+'Dne.w-~`gp=*C 2E'D $ =WJwSEeGU9~=IjNH.{h?htF`"I]<&Z4$* V`XsFp: H4[TuԙѸpM@ذ.gWWP|vB|" +!(ȫlFY8K Wr]xݑܮ0Lٹr .&|e-ɳ9gRu$[ru=W[U65di`K'C"Zx OL7H#XY,$w&~޼Y# K}}l{+Շp_/@ mRfC8<",ggL6fy4edn;4竸 |cƨ6h$ tש Υm:sNZW'fef>f(4d.޷Eexw1Tzc>4>H+,dHz?>jun7ܬ^w<w+sB:U'YHi #! b$?ɧRxJyi7"xYv6߸^^@+Yw;DzY=[OG+Ld Mx$3Y(0trli$=/#>÷_�oў򃳫k ޳)2{/@`PCm[_f_zb[o/])Ň=ey Ug,[m޼dnKm3~7#vN1(nB?4V3۔;4uԐz6wÙ+bfrq5,Y|B�߱?~ck FH{ VGw{}e!qb4q۹x;|qY//"dJ^Лzq&Sؑů=oxtQMNhAUT.;T:SS.gF'.NLħ6Ufq*jbäud gC&Sl5&iYm0yr yW',l@6`94a FڰVo 0ZyTڔ[nkx8;݅G$;LVLa䐴W\#ȍ^7Q!x-g HHL5ET*}w]^N=p7k{tSWHC8 ll'VhtK(L0M |W˰c¢✭=W^h­?S3 דs{><�r/7?nR)~[Ujƥ偕}p Vr8,RNR*`#[ +d/G0{mfsÙvδ(8FHbz>29UOM1D/lpb,<}Eu_=}] (;x:'ۊ2֟Z:'v-w{EDB뛾LPδCD5I9ƄFW;%30?Y>yB>S?Y6A.3soŲ#Zv,s{=-'.M4}wizfS^ֹ6|~&ŏѼ+Mj?%4فe/賈D]Ԭ%ȸQ-Na_4K c,"eﭕ+9ˏyUrrv6w )Cb1`xѺ>:(5A{I +5m MjزaVylb,9%qf6hr5m/T<+L; Cs 4kɂωB>ib}p)^)+;6KzSe[Y'>a#ف^d]f韎V}pq{.lgfLELKHwg*$>_xuO9 b^$TsL+zzh %7%A_%$71G.U�ͰO&štXi?}Ȝ3!sYV\)D/ggk,XL@ =4ܓGK+ytr'?A1TTt R\6@'O{$φ?ҹ@74 *qfNCr<!w_+r̼|k[xmB^'3Z1ht=FN ^MڰJM Zȋvkrfk\jKU &f'D_]ƧA>y:p{ĩ h&ү[k&աɤ,r4u}yc8Rw,.s]8[%lgA6f|30 )Z0_pG?&>OگMR>9hn�gNh7zo{)}r2wEwycٓV./n̹EVWj􊸦wX]q2ۚ^j.ls,9Q1N)OVho][ğiCE*o^оVW)͞r #Ry}6*A6蝎)<2{Jg#\WCLki*NL?:e?p\1}/Ԉ jMgDtj ?}9srMFomf甝<A}<gɫ K:�{)HXr|#q\<§fuM1a;5ے5D /'޶<dWUkuP $jFa, 1(G&j7Va~Ĵ9Y: t*r}?9g28iAT=)eyvф"ӡ8]ȹQ7I:�c۔X/v#<ާ1ޛ3T7J^%7JB8`7L7.w -fmշ|Q[EMPorE91ZSA9s͜Ù sqH!.R6ϗ!R,/<0hC$I0B !r5o+a<.>H>`_.CP(EWa8ϖ`?4yWrceU̠l(/ cI g;%XY/%ޑ`4%$xhw 씍`?8fk^RWS'ϴj|vX>/Svj,V6RW4-mk97ÊFKM]S #=4?C-:[;X9y0>҈$1y hTY--x[@~&y2ji⋭t59@} o+Ub:S.][# ]hk:7`QZ.UuZP9lՎ+̱6AfkSwZY|~C<C0X̪쎖VJKRg)EEY%ܔ”">OK.σQ&Wf祏uN o]by[ _PG]Ud|cٺn!`iiԀ֖:;5T79,q\c[bmiZnkm[3Sq/lkvcu Y( P3ZZPAP<ƣxh&�߀0FMx#+<k ܫ2V;QCŁ,x͆&f9h50wkr&oJX8`eh.PZ@K Z8V2e3EU1,6QZC`zQ%jg9Vh?@uϲXq0mЃW7';ZAbL!Ƌz\qD TvV(RkjE",xRq58<(EhV%>bUVI?Ox )^0R1Q=T@xq N!`2ĵ>.a\Xy0Ci(o+hN8Zi3."XaoVѪ.Y( u*ք'͢/K(B+<%ڦZVQVI'O:/z=AcfqOuk'g}r߆=?C&PT=< uHXE p4v)h*2̄F9YPy �́(\(l24GKݛ2݈?d endstream endobj 152 0 obj << /Type /FontDescriptor /FontName /b99a30+NotoSerif-Italic /FontFile2 151 0 R /FontBBox [-254 -250 1238 1047] /Flags 70 /StemV 0 /ItalicAngle -12 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 153 0 obj << /Length 1278 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }ik/y_!}t~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=n?[i(JKiU:JSz2QeL*EJ̔Ye,*+eU(NU-уk5x5F^ky ^#k5x5F^ky ^#kxZV^kZy-^+kxZV^kZy-^+uxu:N^:y^'uxu:N^:y^'xz^^zy=^/xz^^zy=^/o xo7 Aހ7y o xo7 Aހ7y oxo7jo$JI$$*I$ITH$$QI"IDD%$JI$$*I$ITD$$III$$u>M&Iބ7ɛ&y$o›Mx o7M&Iބ7ɛ&yUoa[5joSor4ۂs�ޮ>,x/x;Â31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x e#e_y+h܊7k:/Z5dUluz5n[eB&Si|y(%q& %+S%*ABijPU6\h,(+L,4G5<cD [˧*t [ jjaijIxʪwgFwضR>sh>:OVRP*#i|e0U,*oU/*[U,Nmlx:&\}M)L2\%CHF7էʻBL)jƻJ1:%H߯:=S۳zrmkO媳7 endstream endobj 154 0 obj [259 333 600 600 600 600 600 600 346 346 600 600 250 310 250 600 600 559 559 559 559 600 600 600 600 600 600 600 600 600 600 500 600 600 653 626 725 623 589 713 600 367 356 600 623 937 763 742 620 600 600 543 612 600 600 1044 660 600 600 600 600 600 600 600 600 579 562 486 579 493 317 556 599 304 291 568 304 895 599 574 577 560 467 463 368 599 538 818 545 527 511 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600] endobj 155 0 obj << /Length1 10220 /Length 6228 /Filter [/FlateDecode] >> stream x: p[Օ_dYyl/d[%ۊd%Iɖl),ǒB2'!@Z(,K:vR)Ll) .;P`i}! vs=|odB$weJ5 P3axվ9(fXWe~hͳs9!چD4." ܨm97tw?!#>? B"+`8vk髀 >23. Eʍ px JA~ڱH4F@�ť?#^Dl9{_>G(CSyOU)PqkO/ğL<(m مHE"+@0�р3L #AD@/M_Y )ň4A7\}}HXt[Ryæg'�BhRto5 tV4ƘϐiAcN^GJ^@"/d> | %wciHü ǟd<w&5"vmsH,A2`ʬlH<") T_>esLx㮱ё];}{Owlij1]evW)S)re9YiRXFe /TpFs> < <<6ӖmpbkEVup,cQ˿+,@4:TA;c/{W^;[HzFZM�0 ^-b]�Jh]4LZϏzvF3a48l.tA$/%H6DTGgUOV]i>}{=<탱+ce 8;_uۿ�o^Om39%EZǮ|k)E} ]Yj4ʸ̕Exx`Ϫsĭ)c{x-AP௓45<#_ԍFC ?{ՆOz8Wͬ)/zO\ . h~>>ONC> d|j ˶'^rC,/� SȐd| *r9M@�k4d=͗c #|^Q.7sވ'Qry!a,57;dfֱ'U Qs>j~=j@v¬쁼px|WJe=j o�OpI4P0Fz=.n`tӜR$A1Z b8:)RjR( �mhj`5Z5*MSO41AANOZ3I^Fljb!%N_�1RErpn mCl#rTƷa[nB^G3^zs>@ovw+RnBs)4w򈤰9W-T?gE -ʪFj9HvsW8*p r\}+ nU5jw&=YksT{buyca"AXIcH~s6N @ 4: T&[Q@c4@#DI`$>_x'H#%x0ױ)q& ; 3I2+pۊ}2>ؕV b,wrcJb|!b$F JU_],.6h1E ,,Zs�Ytx ivx+tZK-ƈG i} SؽP("#B#?G}F8)F ^aP&.9JmO(QVob;:Q |tIvz {/(% { /zpыo]~1qQDp܅DIAyng`v:Me|w.qspp>~43՜9tݎA="|߻:JAIFn]EZ$/G[<3qy]2׹<db`#I�d%J=FczSW4 TOE:y .`NEAQ}Lի 8mI�-D tĵYi㊸'rWEן>_xx3ϟk(?q/'V?IB;̇bN3q*,镌@D=M=NJqǽU%*V̧C  @w=<EǴ>Aa~| u{/KqIY$y&_\&W3K7E~sk`UZ ߜuEށL[4u|E6Ki4ZP}uMPfDRe-RRcm}eovko޷V@st=xJ-aiQR,'YeYG:&OY sy� zn#u4FtwzZRuFT߇i[t5u| k+354꽌V;$;*5Lq]E~[{^mj/ RAxגT+')}3t6WRmXzA%Ԗ=|ҷEbQQbª̘l7zxTRl55}$H# tX(B5ZW464Yl+7Ad:RROgCȔ$KA6A& z2oYK+p.8ڝ |P)a23:5u_;Je+t֙*5¶"-GFyꡘ#KQUv*MQ_W7(%;Y!6ט`M4p2~B,E� *%&%t)3F*,cr ytԂkaب:t\PE:eEogcUx\i[#m:IVqaS\'l ښ}g']W.?g*rڨ߷7Ålܝ+80-ZķX-a *ܴ)?+<о<#cj~¢5ryKgJje2Gp}¼k6M>guSϦVLV X7ovkt ~堶uz]O=.1uѩF1ÝÇZs֠K$Tޖ#ʡxqIgU^c(Qv(uUrx_ck0SEYW6`U.W"Tʡ8%:P7]]3`h凞?t񽏿}gNNպ̼;|3%液sval=zp EKoD픢*)z`Wg/䶨 4khZl25rK[VA׍`UPr $\9l-Wpor|+egV]4#KdΒU;j ;vM5/ᶡryLЯk@GWU>VR6Y7}zcQTSE/'Q?W!=mїD l[7 ߓ)ӖM\ch_ D=² MQ2;fi0V:5J֖WwV G%fA+rmLTgRp+[!hzac^t>}XJk01Ə[ k oȁ-agOl[YL*ɔd2&#Cd {:i4{*nPY1:ݹs8ߚ(nws3$ʹNM.[;mr&wr8mތk{,;:Fedͪ^PoDP}F=7:Oa G+Gp?+JńE%cMUm܈=*ZƗY; !/\"ت`Ic; !y8f/ G1cK6D_&kv}:j^`o<3;tjd/S0 C*nn4"Ӷ.4vԊJ$7^(Գ=H ʲUVnsɥȐ ݳzӔ)Yʣެ޽o*~_Z,CC"[mCɝ/?rYfsworgeobXtVP%}:ᴂʒ$i:~Bsqrl@4Xl;t#%?|=xDo`Ro$Rugn<?waDXVa5:*u,<c KEpfl~ek2JmC^n#ثYWT6Ҟ}-;֖7tW-]zw z ޥy9g!{c^%<f\> 5h9 k4w'2Қ/ʡʂ<(,Rg^5:K^ /.R[My2dQFs~aB\%gdJS.qfθ=/kf%KN44UQv5P=(M$76ztHYc]x0{DE奸^8s M"(.jJ*|TNH{rue\jp/,/ЇjUzxou:l|SO7WqLA^JC5jh\_Tb67W`꼬lDş(fs__kvJCi ոWpaI}&+O#L~{P#'7%.$"@Xc6ey,˪(IWB}~c-4X9arWr-/Sz>n;xp_ߺѯ2ǃO qܨT^^J/ɚ,X)%/*6[qXUzN#kcg5s|ޭWIϾGhG<K@-)s=3H)X2)XB ,E)8 0c)NYx�{Sp6*._Y4R0F KRҖL1zW f~4E ;,ELe NC:f4:Sp&)8z@4Q=ţK`c"�\1]銲ch`po"+Yg7YĎ.°o.0M>v ͩKPd54YK0 |F·ep(ؒ٭NmD{ [`B ,J~v(O2ǀ[#GL3y.3sļ;.0DcPd<*Fb+2;[ B\^X0b`!<d0Ω57EcKeN[brt=a8klkhpcl9`Cv:Klť@4FPxq>D\ XWv6$ ͆fyܲoX ,CQboC1_L"K $\G#K2H>gz3KX ͛"KsA#hEK(PP |ϣ�`NfYfƨ�Y"@Y <y18RwuA> $g C.@"#<7~Ŀwh&A!B<1􁄀: r˾.xh5ڡ +A{mc)&!1iMŒ 6-35�^sJr0(ЖAq^?&Dx6RqHF-�\є�(k <;aaօmI0�f9P+x//cBMV~I>-q qwLrK%qZM.1h�w"0v(,T0P�'zBCd@wV̒ QA%0P׳OW|0fFFIb`Yd, Â/#MϟXTf?؅: eANjQ1좰Ml~A១3K~U(H, ꃀa4F!.nBx ڋ 5)|&?4t endstream endobj 156 0 obj << /Type /FontDescriptor /FontName /27ee78+NotoSerif-BoldItalic /FontFile2 155 0 R /FontBBox [-265 -250 1289 1058] /Flags 70 /StemV 0 /ItalicAngle -12 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 157 0 obj << /Length 1278 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }ik/y_!}t~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=n?[i(JKiU:JSz2QeL*EJ̔Ye,*+eU(NU-уk5x5F^ky ^#k5x5F^ky ^#kxZV^kZy-^+kxZV^kZy-^+uxu:N^:y^'uxu:N^:y^'xz^^zy=^/xz^^zy=^/o xo7 Aހ7y o xo7 Aހ7y oxo7jo$JI$$*I$ITH$$QI"IDD%$JI$$*I$ITD$$III$$u>M&Iބ7ɛ&y$o›Mx o7M&Iބ7ɛ&yUoa[5joSor4ۂs�ޮ>,x/x;Â31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x e#e_y+h܊7k:/Z5dUluz5n[eB&Si|y(%q& %+S%*ABijPU6\h,(+L,4G5<cD [˧*t [ jjaijIxʪwgFwضR>sh>:OVRP*#i|e0U,*oU/*[U,Nmlx:&\}M)L2\%CHF7էʻBL)jƻJ1:%H߯:=S۳zrmkO媳7 endstream endobj 158 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 671 500 500 632 500 500 500 500 500 500 500 500 500 500 500 500 500 500 652 500 500 500 500 500 500 500 500 500 500 500 500 665 623 527 665 535 500 500 655 354 500 500 354 969 671 618 623 500 550 514 416 672 585 500 604 585 558 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj 159 0 obj << /Length1 15940 /Length 10160 /Filter [/FlateDecode] >> stream x{ X[י9^-h Е.�ľEb1,lbKXl 0q,vblNYd\7M%r:N'/k'q<L7mҴ$i0\Y4Ĺ?9?v{!)ڇHk^q.`}!ߺ6vLCÀW:41*}!D!Qj*a|ppP  !&y$$Olm@)<I>΀zHh_zP應B ~ u>m P='NOM+BǠd`"tbOM'+N{- Fb}^{8wsB|PhbDƉ,<׃sAO A 155C"NQ %hANGhA "VLP 5Q}kk={%KGۨu&�^#@ωfQ.TJ(Z(PqtBB! |DEۅ KWDhTB�*2] f] !!,$B=d"*B>o@>݈ :r\^(U Eԓ w2QyNµڼdJj` H#(k#A&OLR(Uj4Hd z3-9V9r'|\+XvwuvonZP_qTW*+JK rv5'l2f0.Y!%Hc%1bP@F9GM0eb\¿ Ӏ['LnUshMϪHϪ=.Gn7{>fz<)_^#hOc @\ H9$X™9Yy#86L=p[֜ưqM'ֆE<Izc:{ ,q̠&0v;uoA@8q{jSyaQгF '1(Fhq`wvf} Z̞QF]X!mpoXQa:I훼aXG.F_{}]3E:@z=' U*}HFP&|\˫K-neR> SA:>ʙ_jl.}iqp Lr�x 7dVW_Fnja<.a Gx|ѿ#@,wyUn�Qy90yDX\'ǖg +jðFG773|믵>䝇{GMLE\|Z'Gn|u> !ګՇzD/ rN 5 ]ަN}8t#G=k0^m gXl^BKBG :�rEF1rn]SN{-6Y'꫈ 8׫mX&@AG>0Ba4B�dxdN 0jrq-Uo]VV( ԄмThW*7\ׯW47.5ӳbs#D "\q+ Ya?@2L\3ݣ+5᦮ks \sE$uy#0Q=miWx,a9$W G*bEج0q%FN#�GEpU<G@= g{Gf}# 8JPSy¸ Ԅc^EX9<̟jJԆU5 II̳p(w0j2e/g|EQm;.b"f.,. G ܾ k4@T+dp8ڤ=ST10M 1X x! '1I|ZmگysrDWqK}.A S^2U]UZ?_su_u^;6{{sω.,$X _8j^UW/E] p {Wϓb=S )G�|dK O]:EƠN񓟝\<IVėNb$n=8:~W_:NoGoޅ58;%iQ'uBKWIPPI aW�_|{PL�H@%?#Ʉ gg_ЍQ5ѵKvn9N9!U:x•p)rEϢO>vbi ZZԶ) ;kUư0޸{{9jҚy|iMA.Jp>�diTwjjj0Shj B$+3Pgf6O\)4Y?n@LGY,P6;=c!L@J'5\\R >"wV\qeG ،.߯||t\c D![ۮhb4w H#<y-^ybR.YkB;GqGW B-bLj#48 Q@/ M ݇Bx#>?'ģĿm۔S A8m [a!+=/8_O_1IN2+mlF`w*;*>|BNXs2lZl^&!?̩HIG^/8k^u#ԇZ oB+=ŠtBDA~b%.RJIr-[)ġx9wp/t=rV0J!ŢJϤxZ~uُs/zv/=x!BJp mTA~3O=4hUz^0S}Hv6ZӓRTꌂ,Oí/~ZIWμtB 4دV2 Vk00Vq$\v[I.7Ur[r ~͜@ #jb8Q�sUT,_ݙ#_U&j()iJHl(.i̖W`M~i֭?f>Ǐ~9 yRN9^o=1i̞ ]Nҹ{~΢Ow)RSfjcq|: ,tR* ./MAfH۶E|՛(;_[nKn*{L%ߛzvg9ӱѷGo4z\l;Zg?xVX_T<l{X:xpj^kV-8"8njPL+ )J'bۜc8oS]VV{鯢{<&ْM]蚬sGRd{,Eu>=-kipdy-9=y<ܮ;{҂:`%#PFL癭@ܩERRҠY+a*څ.bIN-?q$DWس|i^Ʒ}]IlUY kcY)"s>1HFH�ӭttn�s=&OփͮBzs5)qJ:!)!)9ku;_;[6 zvM{7?tJ/2?f{X_f^Bgp̞u4x뢺>s9X\ `̤3"(g |k[is3]<10c֔K/K,c޺iP0ZU|ij[,;L]iƶٱ<I</U͹E= q*Y:_)kGFo$duC9?'Q puDӗ^s衡=YމDsE67kzK3ۃ4/+)G̖ЭetvD0#oC?|7oYxIWytz gǤ4ǓzrX.{DN7$YdZ$kqc7Ez,8}z:K^ $+Sl"5C%= ;hOȆ")@eEC<F4o*Hoto)鶳\vͩryYE lZ+&n?Ұ$Y[j܁DIkӭM?}+CL >mwzmi!cOknsi ~/~"[#&0q+0c�M5y4$[𹻟c {71xvT_TTg>4-mw+3Vm3U;@㱏NFζޞiMH1ʣTr-x?~ף6di&Uqiw.L>)Y`9g_pc.C YzoVM3@C,}XC' d'\kQdT.>*YuvfO XEd"u򕾼<7H$.G]yjj"2-'15.*.b4ȔFm`"n?KXW$7q*y\߽*Ni+wV._}L=Z-]z͜rh+GefݣB1vT e9l(.]ZDUDүGx9,|,O5 i&e 51/Fo1*{x?e #Ns[qhgbx-A7$⚜*3Ui^Ah*І#�Un77]z6.EX2/RxeGoÜ~󥞨"XLS5LInҠٺUd[!B]@ٳ78ZWa~=}n9j(!= m~WM0Fu-i| Ї]ofF*<yYٳ[෈w"=]h1Oe Eu_Ht| F"_:ٺLX1k>^؜׼V-iZ^m%3۟`+Lwuj5{vV!"Q~tYrүJcwhWLq{S%X>qxӵ7ua4vܳwD\9/ݙNzg w)~im㝝à'f'I̒̒W<b؀槉k7y 귔+\dr\YI!)|l,i{SKУU Nzn\HO^;+7v|3u-.u~gYֺ":[,-^Tw 4VCy=ȹ%xGoKHZiX6KscceyW�~b\Er &]<ҜDIgcy*\i;"B^|k(4*s@%좉1p{uVyp=ڳMԹgx[' Q7g&+ =3:fd kj))/ʓ3vJ Φ$ʳsj@R%fHg6'qː*ƓdB#X`dkG7"&I/TWkSeO*1MՈ O!?+W3rYu^qDF!'*qAR$$]n;22ҤO cMkMQ%RR}" 1Yk80Gₜ`0t^!_wQWI0pʫSYy-=r2ĿP|P7Uī.gt SYm:K,2Tׂ8fQ$guYɁ0%ςӈҳSlM}zQgk J3* 9i)y9%.γG6\"rTTq U'hfgJ}!M'{^d0@rDPirh/;'᠜;L'}#[qO[k`BW2@[ WRH+TCHJ&y5L9L>\;}]y:~PC0>aw[ R̆}XĹ^/XHK;eʦ<cob8ɪL'DΞJ�AV҉h͎(WEB3ri'uh22UR [V79ǧ-d6BlHdZ.Iy"$I/SLNA$>Ifo9rzk%ާ}n+ Ax8Dm{a emC,+(w΂[KSmS??}WJVˑ^kXFJ+'8SmY?+;  pv \Wॄf Q 0TIl|mEE[(T)(LXk-7 _V*Frü8]z"ƞR{_x'RQ1lvjK:+ Ψ2ЙesO"=d4T|=O4Wkk3PU(1-gZn7|6np Yz]Nkyg3v+B3wN])K>VӒv|c{Z{Ji)j ְY*xyBuV!J)k6'/GrQN}u~#?ߥ�#L "i#5]ȇL:iSR}Iv*5AnUfheCn5tx2 ofkL"/YUfc1i~ϟw]U`0$ 2 RQCdVҪXX]n4W1EJ h-m3 Ci]-+i|-&1ˠJG ɽ_o'Ak2fJT …CSjINq#!QihcMngē5u S.v%?KeҋmTnVVd3rJk16('0 %q'OVe>L#-Q]v<.Z%_0#8e.frl*HL([n'4T$ۊI zHN,R-Ev\l(L8a:mcm;s'`$He߉ec"IF *ήJxE!Qoz5A6<ܹ8%'I!VnTJs =q}CͻJ;`icz\hgU?aL5vnZ-ip[A~ԝ!i]W8=m /@}˯a4O28`w`#Nol\PeeNSYUcM ()8XQww?Bm+I7=1͌J0$?<KitIl}eC>48`l| ?poo;yk}5M푟<&Cx$f/]l==ڐQ(oPQ.t lu^eIM]6eg) BtXcBO<6uwlUFICcM2(5flJ>)cZs2jti{^RC Vz2z]N[YEFיWa7TCݚVݹq[{&0]Fi}ݑ\>З Z_sϕ "S�"ߥUݙ3ђp͈Υ{ 9~|CA[z"ȡjDS'Ӫ8I`"Y%M'/3)VBF5ުL,LʌtLܛϬt\hafkS}kE3VF3F̚w[:Qg)D= 6fv=:c`Q"HLL IL~ n8k䪊< ~$$Ր8fҹjΥCfM%H(mz]Mz!]~uX!']HxfI,4)™u&-̄-ry#c\yoO-xtv$brزF 5 &Hw+x%o#yToyb <pQ%&w8t=O[MڅB.ehRrGU87O ص="ƪR&Z cr(dYβP6.\JBy&8+,�+Sũtgts>ķ'Aj+'I$V*W>` 'uv-him5fTL~+l;5RK7drTh6bJ{)lօLe_}ghX%qg@;?͐(YK 9rZJ(H;[VG=5+1΢S}jV;^xPbZ"닲sqwIr//s0s'µo0P&1~3L2Ʒo gmw(W(B3&tb}KGq)~?>O'-p@-B%QDȞ#0(,@qh, Eh\A f  "_ϐtl {ic i3tHA0dj&̈J'G�%<dI(2(,A}T~Eq(OH勞59:<2M9r`n 5Me|z LՌ׏O!0m;\5՞ks Z|SBmJns?GFǦ(>0HwtζR}Νa~2x>CqPt8ajzfptkX;LJw' с936Gtgc3:tntȡՒkoNlptjzr6Twҍ3EonjtҭtmkjutuK/Ρ$ub205EOң(@y#LMFFlx? RL&CS `A?4:;cvL3@ :}KvMmֺfTڅ&(F#hѐ%; ZD5juK>/:kB= Vc2q;}oD臐~V(7@_[{x`h52 =0&0nvs|3_U0 itTs8-&WQR>h'Ael8C=�}Q�|th�7pz\mivp\CP㽈sAފ4#|Nl3[YVQn^E!07\^4atM?5 0<<�B u7ܹz5@yaM͏hH[ZP/ܛ�WL[A3'L<Nr�ixɫo?f_\OΖ~~k"b %LE7[ 휟ǎ]_]�70)Z ]S1g >xނpdvN|N>5| AC^]2JAiT3ʄs}6r`;x#`P1\p@ 끙k:x3XvN"/xF [ h&F""N endstream endobj 160 0 obj << /Type /FontDescriptor /FontName /b679d1+NotoSerif-Bold /FontFile2 159 0 R /FontBBox [-212 -250 1306 1058] /Flags 6 /StemV 0 /ItalicAngle 0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 161 0 obj << /Length 1278 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }ik/y_!}t~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=n?[i(JKiU:JSz2QeL*EJ̔Ye,*+eU(NU-уk5x5F^ky ^#k5x5F^ky ^#kxZV^kZy-^+kxZV^kZy-^+uxu:N^:y^'uxu:N^:y^'xz^^zy=^/xz^^zy=^/o xo7 Aހ7y o xo7 Aހ7y oxo7jo$JI$$*I$ITH$$QI"IDD%$JI$$*I$ITD$$III$$u>M&Iބ7ɛ&y$o›Mx o7M&Iބ7ɛ&yUoa[5joSor4ۂs�ޮ>,x/x;Â31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x e#e_y+h܊7k:/Z5dUluz5n[eB&Si|y(%q& %+S%*ABijPU6\h,(+L,4G5<cD [˧*t [ jjaijIxʪwgFwضR>sh>:OVRP*#i|e0U,*oU/*[U,Nmlx:&\}M)L2\%CHF7էʻBL)jƻJ1:%H߯:=S۳zrmkO媳7 endstream endobj 162 0 obj [259 600 600 600 600 600 600 600 399 399 600 600 293 600 293 600 559 559 559 559 559 559 559 600 600 600 304 600 600 600 600 549 600 752 671 667 767 652 621 769 818 400 600 733 653 600 788 600 638 787 707 585 652 747 698 1066 600 692 666 414 600 414 600 600 600 599 648 526 648 570 407 560 666 352 600 636 352 985 666 612 645 600 522 487 404 666 605 855 645 579 528 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 912 600 600 600 600 600 600 600 600 600 600 600 279 600 600 600 600 600 600 600 353 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600] endobj 163 0 obj << /Length1 7220 /Length 4220 /Filter [/FlateDecode] >> stream x9ip[y߾HH¦-.LJ2IP<D(@By�ɡ�GL@rN#e9adL~T3.iNv:q$OcWOi跋RTI~~;@ �P K Bhխs? qfጱ܀'طΞpE3#o@�;c\x;QKltQ�OP~5.# #q$Ew!~W<`}b?@|\z6,|(G.~ #ב?8M?~`*Ȥs&w4( 3|`܇>zJL_ǓϠ�|ϧlcŏtw5�z3_a$S/A˱z8,RqHFhv#}{iSJjASZo (T}8#<a,D LG4,rؓ%�ֹ-,F*~ois;591>vϑÞa9488Kۻswm玖滤&[Rc6UWU+ zV# \;DiFF.R(ܛebt%7I:JuIb}F]U~*9>@S RcaM GPq'UHxrJ4$`X`%BN)Bv;]V0Te(f yjY0M*!EMs+m Oa&Ժ%"E1U(<Դ*$b&9]J+::ƒD6%Z 06S*El  n Bx4#QTXٲqaa"ZŷhPOs(NFm'0Rd` e& Lfc?D@ 0pAE128KeκzHjzEH.aeiWX)$RyM*l;\WH*L jݨ;4}܀ l%4$WH;ަJ ('Z#D '/!e4^O+ pUM )0RL]~J.a%~2*J7xe6y7@ lqjੌ@MqDP A)1k6" ^itx`ti]7 %3=C1f$P7`ـ݌Th4@YPvQTɨm5CH-h+6T]5 �#e،w hXޭ,4 RPS1`Qۄݐ,Lؐ]FX2wkÍU9ٴ`Ff\R zQmwǾ~`;Frq;p6-HHA4mjxFɨo o|+y|rAiC] I©2"C(C)D \Mj8㳫8P]J4s& MS98559{FX}~'/lCfB~̎ԿB(ɃJ4Pct= RG,]gv|fXH-L ] ې)H,pUBJ8("Y,sM\O\'ut sv b& 1!V ~e*L%CHH*v}"鑦KE E;E#^ /@ v">@Z/cqEF+\~DrZz}@~@tŏ\1 O^!Zs.wiw[_zmxbG#G>w95?yvYM%<8g>']:GBssA#'__e//_]..k.?JǶ5HMۉ۶b^Slԡjɨ(w#RD Iطuokm oū8Vku>8:qT<___k'|qdظk ]wnߠd/.CK&1 :\ Vh*yzmm]98Ǖf/ T3g`QPBwG,!`s\.ɝ̵DreJ5%ϣ|~~~:Gs( 8¡$JvQN<WhmelؚHV+,P cF_7?9 8˾O1Y_߆ emx¿s(Da>^%S~`#f<x.!n~/X~ iG ~]_[_;H"Z06o6t@ MdGN&6 i87kx}*e@ƵoCm*\WaUN*\!怵ce6,kCKϵ X΢ս'!!靸 T I\˚=.UaxqFs) ^*u.ɽ,i%[M{wҾ3O2/BԲVzh,=8ҿ$3#w<e ~-�4w {ZK 5مҞn;9Hp cG^j 8mECd*kDHyjf۹3oVƟ[<u☥m{^#ymmL kV})Xڭ {>/{ky@#l~pgmPO?7Gq,:eOOowW}EjZ꺻zso.GnhzN wx[Gh=$ɢ9kZKH~?-jȭlZ .gLтT]m k=Hz6kAZU_C#h/\p8k-*QW_wpt:˿]{umjMLc8ߔߦ7נ,Uh VW72#a.aL&hdoxqoNk/ByQ{iq̬ _D+*,Pa |YX 9CJxRa#oU#v|G)Ud}ۅCOP2gTXjѬ",b@`TXNl�w?P )~FWs WB o>wUJxF WCѡtt6i.:NdIbsriꕳ gITIcT 訜%)i+ 2T"G4 Gd8{MGotWDtʹD,E}r8 4HU.Gi.) Q3::1}6NwN\�בDGTzB8+r*kΧ"r2z* ) эt魍E|613P hӀzMtpcȸG LM <./CcN3>gF254,M$3s *,4.Eȳhb΅Sp d""29K)V,GKXZCn6s\bΞ:G`|2g!7yЅON) #79{,UϠ9(>yZ98hC<v ^NOSIeH).u(DN eS8R|נs+QfV)FaXzoMpO(F/e^3(JD0_K:yfXW>¨1}sy5k ڢd9ZQ�;`_vڈ̎Qqe;Tini 9ͣ/,> ˲yXfheZ^γaq#UdĹ3{qjj#,!V{gYyfЫ_fMx^) rȁc`S8!G S8T'ps6AGdm*e'˱03Yr,#TbD?bқj:1Is0Q 0sYHN_DNS\7~N#m0T:ߠ7z*w.;mgc ,G*Fٻ- #hYG` gϧ]|6]Bv7?3?7'u#tsNog:o\EB endstream endobj 164 0 obj << /Type /FontDescriptor /FontName /e4b84a+NotoSerif /FontFile2 163 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 165 0 obj << /Length 265 /Filter [/FlateDecode] >> stream x]n <P5[(]r-0)C~6:i[?2xy!sIs'g|J֋BU\sل X $g>X``} X|U7�l?컼Q7Ee QiH:!ڞ7ZE0Y}RuX$BZ{B EKx@<@C*E5SAQV~Fйn&9%WnZ%v"(~~o endstream endobj 166 0 obj [259 1000 200 559 200 354 354 812 812 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj 167 0 obj << /Length1 7844 /Length 5362 /Filter [/FlateDecode] >> stream x9 X׹眄@(A� !QHC�V$?!WjZX]uvv]8:{li9n}}nyA!G l"pV{#&k=#Yӊj/ &,>s Fc+WFHmB(iw8.X{°aA;0708 {0yհsn(0jWȏZWGFC#?haő'qo؝XS|+J^(#)-(qVQ'bHEw1?b`kJo| `;!D (8T8tNj::\dRx o#FIy b00<{a< .Q(Qen JC/Ӻ]n[BF<w?t׾[{w]%INqubT9s%$&! INRQZ c.Byu>B LEBRj˖,-tTU8keO(2EQ;㏺6vD_U+;bF/(; Q?V{huGaTiް^Ư:2�? )G6vc02wU2بM/g٥XS[R\cC~l"J+<D@YБ1f^iF+Id�q&N+ V9nXZśGO nDC&xvOG �M;R]�3�QH&f`h&$s~wk!;P?sM|H$UMnH5T $M ܭ %M1P:yÎtUjO'ĞO^?¼,_:T<9 (ʜ9Kg*gCQ?rF4 M`U�/:ƒ+@�yȁ :.-8:Ƨy%$LC^'W$EbbbTmūTeүܬܫ|Uy-F811c>Wū*WmduڣT?>~;&[ЄNj!Y4MEz5?bxo�^ hR, ^m~I"W} 5ޥ0)`Amx#.KJ?'fDY NVc55MS6 3tEXabwpj.);Kr;'|K'C.8Wc5.VSO6wP?>%LNCpVGAғo?ky1lxm p7I(I;p1ׂ7Ȥy `c`c9NVsչ\{ZEm^j5mA3]ϐROvVC7p ΢JbG%W:/!&BnNmvj9<^If{pj,h_G95+LNgh1x WAyX&Dbm*"j1SǩS|ܚ:szNz--+S]zsAUY0'|kG_lmm£XU[ &?xK)#x�0Ȓle&[K,f1봪#S]]hjmK]3=[|MPl m^#KN_b' Н:ɔ,qfIq+Xj"ybüӺom.ifYXs vmX<O{|!\>_9۠Q1KN'Y<_xX5Zð\X< OoP6*9l-ܦ]Ⳍ4/ͩ:,ւV7ҢVo^}|֍[6j |MrQƔ-{lDѥoşԬ4|:w^ZMOJƫK WrI?_5(ה/AAG mvZZ,A>5Y):=~`OSMEA&{v{~Ui[6?U;mqbU-d/ĭ1%yaoܖc6Ki"UKHş.jsUKu>>qցgTɂ>5ԸW6hq`ɆGwƕkH> ? ֢5B1}4rO8'v˸)tW�O k A\d0CIŌ?34Qc?хjqǻ1]|W)W<N˲i,P{!Wċ4edzp(~'<I=8@‡q;S/P <~17|;)3i<DZRTYƤd-ɘJ{5pUU##GsSyD< iLCmC_x5s7`dQֻ 23 uXܹ!F'H򬃸"t>$Ec_Ddn QJ,Չ~s+p.vȅ&Υ1/Mʩ֥.|n.e Ue ˓md~_,r/$iUIvxԱbO riAHM6Xʲ̘+46pT2UW}Ӫr=-V3d}Bo6{cۺT~i x:,�ĿxۡX;'*R^ 9|iVH ~N8l΀ªm V|Vt<F!.SʪEZe_4{e^啥Zk zWĖ(˩OdI4N^-. n(.wɕϴm`5x9CL&%:tȓ_\ZV>0~])ب 3k?(NH2ٙ7�]S.F,)Pu`mػluo_i"2=o)~'udJFkC#ZuʹGY_Uv9 :QtoT8a߮mZՑ1:b|V^i5͎"Sψ{I/>hvϭds9D>%ߓ N$Ce@YͶJ<#VFRh-ުMC߻?Y{ϟEmՊ9[tTwNikuO$we9/)bqKr]=)oC_}#a;us@'1 p.*�FW?uц3b�y=yq.=S\ZL5R^K<% rC|OY0[-xo'~p8$zVo5 ojTKum3}x4-̷, X5#?u8"Vϓi[:a|xR]?k q8C,}ΗB9>u\6m$?ع#ِɐ:ڛIԴ3^wg8 ߾%UrAcwjo/[$~6ON;3W P-^c}ڝ_?%kxCMf=N2*>e1\Hl̲oAoj/V$J}9}y־ƞ.߲g}qycES33|^AI`ҺFmM\cT wV_ E63ⵥyskb)GXVjb�JpfRI׸ŃS*ЁXjT-ɘw28ހN݄-_cѽx"46VFO7/<ՏD/Qm6i:בu+wJlbQ,z]alm{X@4IyS|&7O)1yC9=;mj9ց*qQi5(38+ ‚f!Wm]FmYˤ9ٲflWY'ut+viJ[H[~3p=8uVva Q+I-=)gk9 73F*I0ȓa˰p+eXZHMw'!˰pJ[0F&() Vx&1(2JI ߏpWkPR׀l*Kd|"/#[F‘|,,Vp -;Vmq`^28 F" ã}!\$pK9i�K+ѱ!HYBв`pd`| 6 G%fHddiq1[.cEcu#pGW8 Ȧhk쏄Hhth}!B&43q  sã=<=02q!X `h?00" ݽTZ&f:.Y&_cK[Y4:$ȊZ4F4 t aG&%�@l@-P+䅙 O/APҽ}h �l�CGa=g-,QJ+fdAwQ434&{tY S # 8^Y1gfEh`VYnv> gQy`v61B@O!N8r6H(q냝�/F`c҅  x'h#3k7¤QM D-{g>09cq<#D6$%={t;l�d< ZÇQ'0X,hZ,xҷM}l^4^xR>n]B0$F8&Y0 Wӱ>/M^_ }B@'c07gAX~XCnkΛ?4NG0^uz7t2;b9r_<:� &*`M.uBF ߬D?~PBVC<W26BB0 efDh1liV:vH9r⁻ {9~pI'Bнh5Fk0V B hӈ^ endstream endobj 168 0 obj << /Type /FontDescriptor /FontName /0d3944+mplus1mn-regular /FontFile2 167 0 R /FontBBox [0 -270 1000 1025] /Flags 4 /StemV 0 /ItalicAngle 0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 169 0 obj << /Length 1278 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }ik/y_!}t~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=n?[i(JKiU:JSz2QeL*EJ̔Ye,*+eU(NU-уk5x5F^ky ^#k5x5F^ky ^#kxZV^kZy-^+kxZV^kZy-^+uxu:N^:y^'uxu:N^:y^'xz^^zy=^/xz^^zy=^/o xo7 Aހ7y o xo7 Aހ7y oxo7jo$JI$$*I$ITH$$QI"IDD%$JI$$*I$ITD$$III$$u>M&Iބ7ɛ&y$o›Mx o7M&Iބ7ɛ&yUoa[5joSor4ۂs�ޮ>,x/x;Â31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x e#e_y+h܊7k:/Z5dUluz5n[eB&Si|y(%q& %+S%*ABijPU6\h,(+L,4G5<cD [˧*t [ jjaijIxʪwgFwضR>sh>:OVRP*#i|e0U,*oU/*[U,Nmlx:&\}M)L2\%CHF7էʻBL)jƻJ1:%H߯:=S۳zrmkO媳7 endstream endobj 170 0 obj [500 500 500 364 500 364 364 500 500 500 500 500 500 500 500 500 500 500 500 364 500 364 364 364 364 364 500 500 500 500 500 364 500 500 500 500 500 500 500 500 500 500 364 364 500 364 364 500 500 500 500 500 500 364 364 500 364 364 364 364 364 364 500 364 364 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj 171 0 obj << /Length1 2436 /Length 1218 /Filter [/FlateDecode] >> stream xVMLG~o6`o `cƆjbm( KK%hZEec5M�RC/^**U=PU9�RTqPCU)HUODjP)avA*=;{{?3/ �x` xI3^^qJs8}$Eu$&�"zIU?(;)N|DRXn٦h9~!"Y*u(<$5k{󔿗s@OnsÁnoeEs^›Vp`oˤ\|li5qem,]1xКlAn98y8Q> v qp?f~ЪĺZ+j񎧠[J 7g6h/0]ѳi̛3.$鱔È8çvI~YYgSs`d$a˶񬻚=dn,;}Ne=ʙt*ȐK4.~89 KPrGnyH~-189Ah3,Pw@'=M�ʒesJbh(-`0l!+mN-L uDy3 +@ɚ38nv1WbpA|o`5vV->_ E +Tab2ӎgA9 ".v|ðçWp;^76; 3Ia՜,2 s/!_3 ]p09ư p; wĿŰ8J\,@nPjx~Iյ$TCURۏcxGG1 &A9&s1(i+İbK~]}-ֵՊ9&!*hhZelKQ'ER"sZ}Z9Р+Ѐ20h @i"[֜%PA'JqzҶW%͐BqO%I<(}FkvǸFe1aG' lupnUʫP8"U Uq mA:LЧ*TUr ˚4{o0otT9Sst^FY+Pnr ʍ\EuқQðo\�N endstream endobj 172 0 obj << /Type /FontDescriptor /FontName /24e1a9+FontAwesome5Free-Solid /FontFile2 171 0 R /FontBBox [-39 -148 1291 900] /Flags 4 /StemV 0 /ItalicAngle 0 /Ascent 875 /Descent -125 /CapHeight 421 /XHeight 314 >> endobj 173 0 obj << /Length 245 /Filter [/FlateDecode] >> stream x]=n0 wc:ݤ] Ex�DjI/)AG4<9 8l% qA4-Xoʵ: Iq[ CpN.%o{wBeه v_qMg {EW=#*l{m|n }s c%iY ET9 xYt--*E!zl[xxԌFuWOp n֜)sS 1})SL 9w endstream endobj 174 0 obj [1000 1125 750 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj 175 0 obj << /Length1 6776 /Length 4707 /Filter [/FlateDecode] >> stream x8kt[ř3W/;~ʒs%Y?b,6~/%9Ŗ-9rB !Cæ)'JhiJ `s( r h4) {fF%H6vV>Bav`, oAy ƶFYf!y#'N')89Mzg ea=nrzDvۗO"BI~w\x:.q?U2}0=3uy7CAa܇jal;e/gf_:#pj!#"T*FSjF an_ls$<@'h_Qr; QN@1Ƽd4=B BϣJ3 )3(gYTXC2ECR goi%ZA{Z>454砕B3Ck:9UYAhnhE:hU"CS%~kENJNDWB.8/@f HChUP'�OA()Tj ٕLrrA^jV KJ`0U-V-!} ceXVO qg5:þ*c!Xb!]&Σ5$@&vkcCL'ZNa<9^“icrwy.x<OO2:�HgΉ!`П(S7iJ׳;׀ rlLZCy߼%m9Z'g\ˆ\%h z=jN)ʇ,{b&K"A4;1yX=`}d"V#I֜jsس jmEݴ-EϱgEnư=r;:y @B:C,lC$ ̓NmB҃ƹyEv,ŠZ T*CMrs@{!:5]P?֎5,.ƎŲ|+4̂_e8;P{,}='nR!.�v{knOL]7PsHlr5J-wF<Sm 3a11f9/KÒW$ftYy ZV$sBYLy*o{Pj!˘C ,Jآ87`-Mh7x/В,Nah^ܟHϜ/,xwrj6fQЦh`.ߙp:.V;BVG '?&I >\�= p OmR\n[OYt5#U>3=d-qna0R2_A1DXPd(ŎbGF16==y{paJ'ڭ߾U;|#8:,9-|Y:_>C1w9w*AfU7iG858՞%c:#[uf-|_EEyO(g$C'a.8s:c6\ZjK.'4yʜQFkKY8f>~ˮkcWk̅q /kFJNžk8gSYp:NvB׿~,8rd�;_]C-fm)8? KGCSC[; 71{d]-ji*{�pi*։#[_2K %}NQ`[LW4qpTjVQR*ӇngJ&27mi~rm`~oZգ;wo3ZO1$L# )߁KCW\ mZ%5~ZН񟁭 dQYT\1 9ܞ_D94bR" m�{^`SZ XF ج"IKMUw2Y^LTu+,LJ%8L nZpKg]CK>~nң6?q#�Sj+.\wo79}9R#zzf[u(.)V;1W:ۚ99Z'pOx  ߽x2}(S ig)6MKtOυAr8<':pRQs/1؋ LoBlПBuU妢0 73|~u'Pp+KE4`$S2>aR+~ TV]w݅ۖ.4G^ut?3�IOA3L$5uLMa]Mp\3mhNw;YU6cy�՘+6rxɄx9_åyu)%r x]}]&G{b]`8bmBltuGm2Vn x=]̦r2t*2+:&T^RbVzõa;rWZ<8:Iʟa5,l-H"4.@S'C(w>~c*m #CzK||p5}~B�*w%19|S5 U6>HLoUorK5nnظ1ϕ>&zW8(\YSW ySyr#fCjLɩŃү.wwW* gU ڪ(cL5-8N2#WSNo{CqlAȿc LN<,nmaWgzP_Nt%Zְ=3A/3|p@6} YjDmmϔV,Npyٵ}C=)j|`k:u|wRsD 3;mƬ(r0i^i\i.̕^fW^bܤ4_߲[Ν U`z]En&BUKՂ) |GCn<|Oo1g} R|w= =}_+|{!pR',ذ}0z}Q/r'xSE|H"WX/꺮*VXsS5ע^8檓N|0G9>|oY;]b/ ڦ7%woPS庢4-~ǧ ){7_:uCmW/ QS�^Lqze"6t3*xZi8֛ǏBLO|iF+28hf,0vlZ¯:su Ym-X[$fv7f {H$Ý@LvEYyE;&'ZϷ5ڔ8W<y%eBm-ͅyLYcb5Е�[@~pXDboZXXtSKa'|?;P8%ck$;lLs݉]yH'A O"H]Si-og 7=b)w@GuH,hG ~\w/^ļc 8rRB/*ׂ>SP?q`i裛ҡka$�3p_.a *Ez~Aoa9ZHP6#I=t8`)TԈC"Q">) ï",ELP.cdeD8 =(Y/Iukg#Id5*؎rvu5qe003=<6D&}hbYa sA-̀/2 Fⵚm^[y0<=7 MFt0"f3!Te KLDy#>#Q8EY*&#ΰs>=;YohF#MsQm~f.g1oY"@ "cv :edZZ{V각ƦFV셱lkc.covA4( Q3w U[t9QD}nQj>q!4Ei><YT}@44nF<+=bE�PF,J*^jMF 4 f焨,`{FF4}@&{sYĎYXm ap3-Ja-HP6 +^_*KA¾qJ{ pT"`m 3xr6<F'(%{8�~soX}PZiD +Q#DO#+wO 4.x>d4B?~n/ӛ.n,{i4o: 3o11M<&`:`gzW7&hMG0;d¦]@p^ӔthLc <7<>x`Ʉ{zcD|=u<<�ibZX7.QFC}z-zLN%Tz𥙍rA P*,-Eew$Wl@I<ڌoChL'zM7pGhpj,/#�J^ endstream endobj 176 0 obj << /Type /FontDescriptor /FontName /425da5+mplus1mn-bold /FontFile2 175 0 R /FontBBox [0 -275 1000 1042] /Flags 4 /StemV 0 /ItalicAngle 0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 177 0 obj << /Length 1278 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }ik/y_!}t~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=n?[i(JKiU:JSz2QeL*EJ̔Ye,*+eU(NU-уk5x5F^ky ^#k5x5F^ky ^#kxZV^kZy-^+kxZV^kZy-^+uxu:N^:y^'uxu:N^:y^'xz^^zy=^/xz^^zy=^/o xo7 Aހ7y o xo7 Aހ7y oxo7jo$JI$$*I$ITH$$QI"IDD%$JI$$*I$ITD$$III$$u>M&Iބ7ɛ&y$o›Mx o7M&Iބ7ɛ&yUoa[5joSor4ۂs�ޮ>,x/x;Â31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x e#e_y+h܊7k:/Z5dUluz5n[eB&Si|y(%q& %+S%*ABijPU6\h,(+L,4G5<cD [˧*t [ jjaijIxʪwgFwضR>sh>:OVRP*#i|e0U,*oU/*[U,Nmlx:&\}M)L2\%CHF7էʻBL)jƻJ1:%H߯:=S۳zrmkO媳7 endstream endobj 178 0 obj [500 500 364 500 364 500 364 364 364 364 500 364 364 364 500 500 500 364 500 364 500 500 364 500 364 500 364 364 500 364 500 364 364 500 364 500 500 500 500 500 364 500 364 364 500 500 364 500 500 364 500 500 364 364 364 364 364 364 364 364 364 364 364 364 364 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 364 500 500 500 500 500 500 500 500 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj 179 0 obj << /Length1 6500 /Length 3504 /Filter [/FlateDecode] >> stream xWkpu>wwC(Q4-HVJeKE@B ƒX<`!n2b:FIfz4/OU%Imdơg_IU9m{ic {HSOtssb�l9!:pֱwHtZv ضMh|hu-s�x.>�X$B,xÓaO}}� ߑTXW3+Hp?{^&ګ?;dh1ִjN#O3JZ .e ڑPޝ˫v8lR;WlAuCe/O޽fjM7P T.^Z!J>DZi%rD;L{Ni)yI{(ӛğG')Pg$$RePpU&H1<;B#iD\Q"—H8 LNpbx =G{3]]nk+q476m[X-f$ :/J.Ýu@T64FM7jtW4kN{ze"9=FGPSNi3[q:тz(3ɒ7A uZ uH!s d1 a�-lZ]l*1}|"8Hg_*{K<[KbqtqSS^ 뢂%[*}Ooh}kڌ+WۙבɵyFNItS]�#FD1s3`[*d+EKbynJvP__y10F\p辋Mb}#úIΆHUgqbD`:0N'[E7L!M+<){vGt!$!&J̣2Vs$.R?&{1}n Y)dsS.mkG\K1*,EuSNa&%;g~^>um 0?^5~gvvúۃ[1j]v<|KZ=YXT M 3qP?Jwy=lf-Vr+$VqD=Q_!xA܃mR8[8 ;;."rXM1`0<G&N3;9쨸[[4,8*>$^uKQzi8aWzĶp՛gp8+WgbjLVVHlŧb{3* ˪TwXzxEdu n% NWLX\}k#bULKVy$Pbe!` _ǘ! pC@K?V^v2mklm0BFX798~ߎ" F" {Q~ G211$2Vx 0ǥ8?Hc*F`zQ`*& &U07؅UjNbY1VoEhqhED>I-\^'0}p D:;^+ٽg͝Jv8iױ d;"=ˬǷqBa–v5l-^&^&WCsUѶzyUJ';d;i*rv l+H=u8Xçjp|!V-@ 6͈FQ2=rvrc9uW&XUg 26<86rke!)mJ^?ʕ}壕WX˷n}_Gv[>M e"%rf+7oݸv ~=zץڞl]B[Ko7o,!<54/Dy=O 'cW_*]|⭫KWK$r1uQrqE?!;IsTn1c4K{ ;E)N[�1wl<v;Q̴g[Ȅ p6,S-ɹp@siW#Գ#@l!{-X!2n۶{6϶d[Y8`$ sMDɕ`}dRƿj:9X8:bx#߽t vc)9$` R(v~$ PRM+_.R)H촊Z{;9n^(9]3v(?E ӇZ.ҺAc_"'OÇxG~\dax{G8kd|M:$ɳyKM ¯봳_)V2Î=^} E͍V'B`67柚 Җg,KKVH9$JDxFxZp_L]V}}ow68vGfR]ov/LT6 "WA7h lA2cfï/Fk ~iu}>;Bo!#k[ap}cKm/ ?2hՠSEe"xĽ-SbҠM,A[Pm?٠k`ToеtȠTz_ SAoCw|*P6Q?3Egf$ZPgXhVҀO36CHe>TL/zT3v:S"JLM+ol|}X7УR Jڣh M2mjN5XEYC室厺\gϞJɺiWB\u sX*LbȾlFl\;UԴ)LLS-Ҁ˩B}]tsgTA˧JP`?8< SA7@&ب":tP5j. 4tn&RPJJ 9u:OM%(* \ENͧS_&O4E|"{FgXf<-',{K֡0OBW!5ӕ'\c0Y,! HB7JπO4[ 8fU`CQְQp<q@~/Y? K!@f蚏YzcDLԅ+;*Vic7roˣeEDNA[%}hF73xmx49wwj=\YƚE]* Y6N?2CĊ {e5^+Y Lkuq ElEcl5I̞qϚlo"Q;l Ҍ*>Su va?58T12(~r1D(1D=O(DpA aU<^N(|iDY+bjR61MVK"?ZxijE FbF|-$<}zfN,bECшrZ?F*ϱ. l ̟D*f!b&uP.ʕ~ endstream endobj 180 0 obj << /Type /FontDescriptor /FontName /bbf95d+NotoSerif-Bold /FontFile2 179 0 R /FontBBox [-212 -250 1306 1058] /Flags 6 /StemV 0 /ItalicAngle 0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 181 0 obj << /Length 227 /Filter [/FlateDecode] >> stream x]Mn bɮRTM7YGM{�&Ej�9d0ԅ-?=ay wJv>DG,ŒK[nu,$ӱ\ ln8=4バoB\uXO{?b,C/&A6<:C9m|oᖍE2qA1(Y6$cYFsٝ#3,5ExTNR~m^o endstream endobj 182 0 obj [259 200 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600] endobj 183 0 obj << /Length1 2224 /Length 997 /Filter [/FlateDecode] >> stream xVMlEfqqvDUq9_RҔ4v?]ٛ&B\F ! EBH= .H8po֓BPRPĉy{{oކ̋/s/}9J cw꫘mgo]v_~�(H߭Z;EB7dPGׄkp!E|.tu` _t4g? ~sR3wѻϾs1BHG;?\2 lW^:VM, >GX"J.HfOV&q 7E_šm|y,z5\y Tw`l'ۃX�sH`t$FzPhl$F0FƬu 6 q[ x0K쨃 AT 2J/W2HהƇDXb[ɤ7i>mei!׫hXF_jdƲ5wtwnJ͛0dw äu *FpNbq^؏8% >SJĽgwIhwp3,q81,$-V%f0M]U<K샡؏eAn+q)G{W#DXQ%q8_VRuy4/nZmas/,Yْ)i=)lJey�j<O抙r.)8$2ɵ7D7 V^+M޶\n6׹k57Uu]=N)ɕ*ٍCJK=B T;)&I.Y.bڤ7HetaQ_0vP;^i򦐕rБx9bGA}ǘ29$ϫOD1ALN6Iv\NYJ^N~ctn:q\-6,+4ԗ5:x}/kg,Xuq.){(�1Z endstream endobj 184 0 obj << /Type /FontDescriptor /FontName /72b0f2+FontAwesome5Free-Regular /FontFile2 183 0 R /FontBBox [-39 -138 1263 892] /Flags 4 /StemV 0 /ItalicAngle 0 /Ascent 875 /Descent -125 /CapHeight 421 /XHeight 314 >> endobj 185 0 obj << /Length 225 /Filter [/FlateDecode] >> stream x]Mn bE,=�"M�9d0ԅ-?=ay_ Jv>DG,ŒK[u,$ӱ\h-'[N.$;98}_&ӞWpW̊ vgf67p"J A`tE1pnݯ|#݉8R;CRSK+Ucp endstream endobj 186 0 obj [1000 687 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj 187 0 obj << /Length1 3696 /Length 2358 /Filter [/FlateDecode] >> stream xW{l[͛vǾi۹hC*45u<8u}}R$Wc`6Mچ4[ QTMLE& m?@cl 5ߔcl7sq:z*dOg/$ӱL4_ok hMWUMU}5\fLp&Rh1,u¿v.}: I=0GGIu[$3oீwsh _�9} v^hF_"B(+9k6t"/~{0y/cHj17Լ%|ZRҿtfupDZKI=!O6dUAUHt<SSjz4 H$^A3~ojY"+4N>)Kl9rBk@Vߟ[_< UTRUS6iðyx:1I{Y"7&1gi{x"|@8=f;anT?pq.|iġ:ͪ8HxUGg<fAt~QIq_lZwS#1! pb{PfeI^rAv8GIreN] z7WNg5mGÜߣ'xgnм)jTNf?,1?!0ugfP8͔Sw\Idp  %%5*.b bw n@I j3ܘD)QZ1xqglRHx*,:M 8`Eߺ6!E]Љ[~dhج_d|b@ـf�HTh8bڈħSGN4mxw,=NUFY rSygn ٸߨ:YW*H8|8^Q䉤vjmcV]] ~&º@_מ14_ oݲ[E|;6plO3[ n2_qh8pyՀϑs6+sCwID].Rj;wm|Elܓ^aؖR=+1z]U>FHN@w3-]J{v,T>{BSԯ:PpSzv;R{+v!]X(/PWteTv6wőS^q)>*,17KV M ծֆ&_wgvlK3:*M K/,Ko =8|/2ݶm.,bwWg/wg7ydafgZ衡j;6mOÆ-Y^l۶fGREv=^Gca}0yGin E+Íh7NJXt~-EEw% J G-K~m4`ѕԢtYtmU"]OʼEe%݈XVORsIcgli{8nhhO ߑq4T,\aN>{yـ ^{:=r T.;Z?OiEz4LF]< +zsx{"J\H ΋q*Zн|*NeRyIe,Y!5r|y Svh6㩢QH:On~*e$y ܼ3x*E �^w&bh:}Zgs"/ N tp wGcS!~dľPK)Gy:MJ%F.>Ҩ?8P�(h8MYP8 S @/ߋzoF(#p+ΏXh+7GFAU YR; 4C +"st!x 7mMXbFEhМB !B6[Q̀L䙗e栉J-KNĥ!pFV$%j5y$BB- Y9#[3xF:\V?Yj Virn_Q!q>z#j>L8jZVWM-˵~2ߡX.C#' ڜm@[ԞԞD\N^ОtFcڱ@*sqĮbZB[ИļO I9[9sCc}g ><!؏�#NjcҾAvܲPg|7<l!:O O endstream endobj 188 0 obj << /Type /FontDescriptor /FontName /17df97+mplus1mn-bold_italic /FontFile2 187 0 R /FontBBox [0 -280 1000 1060] /Flags 4 /StemV 0 /ItalicAngle 0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 189 0 obj << /Length 1278 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }ik/y_!}t~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=n?[i(JKiU:JSz2QeL*EJ̔Ye,*+eU(NU-уk5x5F^ky ^#k5x5F^ky ^#kxZV^kZy-^+kxZV^kZy-^+uxu:N^:y^'uxu:N^:y^'xz^^zy=^/xz^^zy=^/o xo7 Aހ7y o xo7 Aހ7y oxo7jo$JI$$*I$ITH$$QI"IDD%$JI$$*I$ITD$$III$$u>M&Iބ7ɛ&y$o›Mx o7M&Iބ7ɛ&yUoa[5joSor4ۂs�ޮ>,x/x;Â31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x e#e_y+h܊7k:/Z5dUluz5n[eB&Si|y(%q& %+S%*ABijPU6\h,(+L,4G5<cD [˧*t [ jjaijIxʪwgFwضR>sh>:OVRP*#i|e0U,*oU/*[U,Nmlx:&\}M)L2\%CHF7էʻBL)jƻJ1:%H߯:=S۳zrmkO媳7 endstream endobj 190 0 obj [500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 500 500 364 500 500 364 364 364 364 500 500 364 364 364 500 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj 191 0 obj << /Length1 3752 /Length 2413 /Filter [/FlateDecode] >> stream xW{l[΍MΣMcZsȍ)}<M8]2c;_NKИ:Ơ5Mh 11Mnib i@ 6:M u u;Ƿuvs}s)1"ZCǩjsw䷉XҙH*iQ9Z-)"gRk_j>QH-ٕ њB_\w|pjr>[=W D¦o<T,I^Gt8A(cE6/0^B(XVho. EV|CǑF*CBo.{*znOȶU>B~&O5:>gcJZ)^Hd!c UQy#ڙR]2( n@vET1R&W,|ƀ1Ï!j3sc#XA&^YU]#$7ѪЩ~L9GtR5Yɩ3?ڝՐͩW8M\ ސS79Mv e념Uf{P:PxfNq@t~bv֪`HQUQ{ڜz' +Z}*M[Gu c0ĭV-d-J_D٭q#˩u6>|X / Ε!jyjUNz/,Q1g&+ p!i#74[P{FpǦ6ES*/jX8]׉mCQ n((5xz(>$6UU: MEelu!9 領Au٫V,LG{^D_E}c+: &'l:{i Ak8ڄCzh3<9)po$~I3N2q)d{Sy YblXT9SmJgH-j֎XgVkذNNlNJbE>Tu;6_<k_c{�?vm,c7T63 5"bjKe)8Jo}ޚUX\c7;l#=4+1ٳhkvvx, jԂ[o=f.Mn<~ߥƒإxƖk˹ѯvf…T^YNOcՎJN–,3ǸU1u[jXٙZ{㹠Tt% vJ"{`}ʹ;ӻ Uw jpmm6ٻ훶:7on"on.ŞT4/˹~g{=$phvu7Ym-yaw ƭlm26NISFǴ/n<>57zꭾvu5lyiZe)oGN{<;ƕcMץ֑ ˡ:P ]1|e[ Zݠ+@ DiƠ 'bЕ*mЫ2= f(/4ZV@ܠ+hʠMԬbfY1UԡLj-udsxa{dwk=_)>oO}p2ʤ CB]:�`gSL,OdҼݥuyݝѹ=M.aLHx&yDɻ2hڵ y.$\X3c\ŧD*QEy6K%2 rᴐ2|)stp:ʣ|![*x8Y*T&OD�9x XީT,IeaΤx`7%{}k3>Mo|�?\4@2(A LvwFj?1�Mk5A4o0P/c\N)gPֺCN?_i9\a Q؈(]@KjEm@%i N7:9 E+ jï9䡙b i؊RȢeen)-24a_-@ev1r#ha'lҷ wl'I*Jyd$¼[rF7fƤOphD rZ'+э�`;;gg I Iз`=JOǏYȥMiijohPiVRR7Ssڂ_;== h酚m]O<} ӾJ>-w,mO5&1RNV~}}yĵqF;M|P ʹv;PNB)Y {jEFi%OeѰ`)� endstream endobj 192 0 obj << /Type /FontDescriptor /FontName /75dbba+mplus1mn-italic /FontFile2 191 0 R /FontBBox [0 -265 1000 1008] /Flags 4 /StemV 0 /ItalicAngle 0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 193 0 obj << /Length 1278 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }ik/y_!}t~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=n?[i(JKiU:JSz2QeL*EJ̔Ye,*+eU(NU-уk5x5F^ky ^#k5x5F^ky ^#kxZV^kZy-^+kxZV^kZy-^+uxu:N^:y^'uxu:N^:y^'xz^^zy=^/xz^^zy=^/o xo7 Aހ7y o xo7 Aހ7y oxo7jo$JI$$*I$ITH$$QI"IDD%$JI$$*I$ITD$$III$$u>M&Iބ7ɛ&y$o›Mx o7M&Iބ7ɛ&yUoa[5joSor4ۂs�ޮ>,x/x;Â31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x e#e_y+h܊7k:/Z5dUluz5n[eB&Si|y(%q& %+S%*ABijPU6\h,(+L,4G5<cD [˧*t [ jjaijIxʪwgFwضR>sh>:OVRP*#i|e0U,*oU/*[U,Nmlx:&\}M)L2\%CHF7էʻBL)jƻJ1:%H߯:=S۳zrmkO媳7 endstream endobj 194 0 obj [500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 364 364 500 364 500 364 500 364 500 500 500 500 364 364 364 364 500 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj 195 0 obj << /Length1 3548 /Length 2105 /Filter [/FlateDecode] >> stream xW[l؎g2=v%,8N_=R5ln@oTjÖZVҖ OղҪwUM'!T}$3|眹@�` 7g_ yNKjzп)rO:&�0ߙJkSEdՈ\q.{uU^S3Οg~?9@{o͗3k{ o]Ux`E֯| }ZVKڗ_lpf�<J]̏TkZ͕價k';n_̅xg/~veցuM8n&aFpL&$xn@bW\1[#rtpf?"@AM/p"YR �Nщf|A8Qχnj = 5<ӊ;[YDwNı|PPxa Ԉ$dވ(^.R^?.uZq#NwYq Fb&^MGcwz~zm�8ū[Pd9.뢃~!ҳOmq$T)3y^q7M/XÏԹ.Ws:"NϴL!!RffZ uִI5ФMl'0r#H 9X^wM\,IKo֊m5<6 MP\h o *+hk6C]lX?hAPgO +]/$g6N&&c]2&ea n0+Iow =&'KzD.xa/dyƌ|/(Wl7 hI4)[pզe�,9,ƿQķnO�.kGKI{o]nl76“X.> (׽k;ms%u}\,6w5,$v{3S-ʯA{zۄ S=$TX=`5}H ijL@,V_DYfI F^-n<;-̿n ZC:W=�z3Pp#uq/vNɓ~_8tѲ*^/iߺ{X|o#<zz, ~-,i6-ێ/1n,{lOXjxf.h/y')#3w7BMܰl֐Y 1l;tr-9WA?ϲWoruvA} k-|j=` s߲*չZ!wwѠ勎IMDr|R9Ehh'!J yjBL>i  FZ,! {\U꙲oE(kF땬~Zi>:Y.J]ЪV+fjjE m5qf"U)ZaktAJ+ *BVu$QեVKbq˕ʐb sh\ڷ>z,O#)Zkp�*P9Aro4'P�: Fa@ &N@Q8)+1!O"g5ׇ[HB~<L!C ꨵbVLQM:e?X/d-uDWAHaU#tCbzb9# +)L":2Jf-fT1KMuh]`61LƬ͝Anaib+H:*&C4r"VYXͬdKǼ4fTY,1ͺǡj qXG)F^H73,߇1X8icMGA_[ywIRYzWWm_|f;`m鲔IAC*:^zY"FKDtb2Z(4؉5RZJ2%y}K!ԑEaP"GR~ns/f&!ˈtB:i! ~s,~G} pl `_,j endstream endobj 196 0 obj << /Type /FontDescriptor /FontName /89598b+mplus1mn-regular /FontFile2 195 0 R /FontBBox [0 -270 1000 1025] /Flags 4 /StemV 0 /ItalicAngle 0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 197 0 obj << /Length 236 /Filter [/FlateDecode] >> stream x]Pn -/ R!ҸCqR h };]f4;ayx?(38,72>^&Xfщb52AJ?flEay,|RC)] zM/َ-x6 eL&mtɮS90jhbRŮ+^IqzjP4(*|loY7WM5Q)ڎn>~)Bqt\ endstream endobj 198 0 obj [500 1000 1000 1000 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj xref 0 199 0000000000 65535 f 0000000015 00000 n 0000000473 00000 n 0000000677 00000 n 0000000847 00000 n 0000000898 00000 n 0000001170 00000 n 0000023959 00000 n 0000024306 00000 n 0000035173 00000 n 0000035340 00000 n 0000035515 00000 n 0000035694 00000 n 0000044103 00000 n 0000044629 00000 n 0000045939 00000 n 0000046304 00000 n 0000046348 00000 n 0000046397 00000 n 0000046441 00000 n 0000060566 00000 n 0000061054 00000 n 0000061098 00000 n 0000061271 00000 n 0000061322 00000 n 0000061484 00000 n 0000061720 00000 n 0000061888 00000 n 0000084120 00000 n 0000084303 00000 n 0000084353 00000 n 0000084403 00000 n 0000084593 00000 n 0000084646 00000 n 0000084778 00000 n 0000084831 00000 n 0000085006 00000 n 0000085187 00000 n 0000085318 00000 n 0000085364 00000 n 0000085417 00000 n 0000085616 00000 n 0000085813 00000 n 0000085862 00000 n 0000085989 00000 n 0000097822 00000 n 0000098256 00000 n 0000098300 00000 n 0000098472 00000 n 0000098605 00000 n 0000098778 00000 n 0000098823 00000 n 0000108392 00000 n 0000108770 00000 n 0000108814 00000 n 0000116673 00000 n 0000117077 00000 n 0000117121 00000 n 0000117166 00000 n 0000117349 00000 n 0000121314 00000 n 0000121679 00000 n 0000121723 00000 n 0000133297 00000 n 0000133715 00000 n 0000133759 00000 n 0000133938 00000 n 0000134112 00000 n 0000134156 00000 n 0000134206 00000 n 0000147681 00000 n 0000148073 00000 n 0000148248 00000 n 0000184556 00000 n 0000184959 00000 n 0000185082 00000 n 0000185211 00000 n 0000196393 00000 n 0000196785 00000 n 0000200484 00000 n 0000200850 00000 n 0000200894 00000 n 0000210574 00000 n 0000210992 00000 n 0000213834 00000 n 0000214200 00000 n 0000214244 00000 n 0000214647 00000 n 0000215163 00000 n 0000215207 00000 n 0000215251 00000 n 0000215295 00000 n 0000215339 00000 n 0000215383 00000 n 0000220289 00000 n 0000220692 00000 n 0000220736 00000 n 0000220912 00000 n 0000221089 00000 n 0000223841 00000 n 0000224257 00000 n 0000224302 00000 n 0000224429 00000 n 0000224554 00000 n 0000224682 00000 n 0000224810 00000 n 0000224939 00000 n 0000225074 00000 n 0000225211 00000 n 0000225340 00000 n 0000225471 00000 n 0000225590 00000 n 0000225711 00000 n 0000225894 00000 n 0000226078 00000 n 0000226215 00000 n 0000226354 00000 n 0000226486 00000 n 0000226620 00000 n 0000226759 00000 n 0000226899 00000 n 0000227032 00000 n 0000227170 00000 n 0000227306 00000 n 0000227440 00000 n 0000227573 00000 n 0000227706 00000 n 0000227826 00000 n 0000227947 00000 n 0000228064 00000 n 0000228183 00000 n 0000228261 00000 n 0000228658 00000 n 0000228850 00000 n 0000229139 00000 n 0000229321 00000 n 0000229606 00000 n 0000230028 00000 n 0000230248 00000 n 0000230492 00000 n 0000230789 00000 n 0000230985 00000 n 0000231229 00000 n 0000231429 00000 n 0000231559 00000 n 0000231859 00000 n 0000232130 00000 n 0000232401 00000 n 0000244329 00000 n 0000244543 00000 n 0000245898 00000 n 0000246815 00000 n 0000254940 00000 n 0000255164 00000 n 0000256519 00000 n 0000257435 00000 n 0000263755 00000 n 0000263983 00000 n 0000265338 00000 n 0000266253 00000 n 0000276506 00000 n 0000276725 00000 n 0000278080 00000 n 0000278996 00000 n 0000283307 00000 n 0000283521 00000 n 0000283862 00000 n 0000284778 00000 n 0000290231 00000 n 0000290444 00000 n 0000291799 00000 n 0000292714 00000 n 0000294023 00000 n 0000294245 00000 n 0000294566 00000 n 0000295704 00000 n 0000300502 00000 n 0000300712 00000 n 0000302067 00000 n 0000302982 00000 n 0000306577 00000 n 0000306796 00000 n 0000307099 00000 n 0000308014 00000 n 0000309101 00000 n 0000309325 00000 n 0000309626 00000 n 0000310764 00000 n 0000313213 00000 n 0000313430 00000 n 0000314785 00000 n 0000315700 00000 n 0000318204 00000 n 0000318416 00000 n 0000319771 00000 n 0000320686 00000 n 0000322882 00000 n 0000323095 00000 n 0000323407 00000 n trailer << /Size 199 /Root 2 0 R /Info 1 0 R >> startxref 324325 %%EOF �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/examples/chronicles-theme.yml��������������������������������������������0000664�0000000�0000000�00000001307�14163570564�0023357�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������extends: default role: love: font-color: E0245E wild: font-color: 222222 text-transform: uppercase font-style: italic background-color: BCD637 border-offset: 1.5 header: font_color: 999999 height: 0.5in recto: columns: "<40% =20% >40%" right: content: '_{organization}_' center: content: image:sample-logo.jpg[pdfwidth=0.25in] verso: columns: $header_recto_columns left: content: $header_recto_right_content center: content: $header_recto_center_content footer: height: 0.45in recto: right: content: '{section-or-chapter-title} | {page-number}' verso: left: content: '{page-number} | {chapter-title}' �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/examples/edge-cases.adoc�������������������������������������������������0000664�0000000�0000000�00000001306�14163570564�0022232�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������= Edge Cases :doctype: book == Long code listing Here's a long listing block that spans multiple pages. .Long listing ---- Line 1 Line 2 Line 3 Line 4 Line 5 Line 6 Line 7 Line 8 Line 9 Line 10 Line 11 Line 12 Line 13 Line 14 Line 15 Line 16 Line 17 Line 18 Line 19 Line 20 Line 21 Line 22 Line 23 Line 24 Line 25 Line 26 Line 27 Line 28 Line 29 Line 30 Line 31 Line 32 Line 33 Line 34 Line 35 Line 36 Line 37 Line 38 Line 39 Line 40 Line 41 Line 42 Line 43 Line 44 Line 45 Line 46 Line 47 Line 48 Line 49 Line 50 ---- <<< . Step X + ---- puts "Hello, World!" <1> ---- <1> Prints "Hello, World!" to the console //^ Step X:: + ---- puts "Hello, World!" <1> ---- <1> Prints "Hello, World!" to the console ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/examples/example-pdf-screenshot.png��������������������������������������0000664�0000000�0000000�00000226002�14163570564�0024467�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR��N��w���t���sBIT|d���tEXtSoftware�gnome-screenshot>�� �IDATxwxwolz$PHU (zg/pHH"ҫJS)!!B ғm3?]Rv!'afYs@DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD~~,$7Uشi*77aXA%L""""""""""""I5՚(;vP$K~:Z�T8ٸqcDvvO͚5k״iShښ= """""""""""o>߿0pΝ;w͛7/bKN@ᨰ5kh7:$I(5</ bXr m#I͛yB�Rdw[D9)f͚ٓ&DDDDDDDDDDDDIX_J%6lGydQPd�=N|_&M˄jDM8)-$$~~~#��`FD %�VDDDDDDDDDDDDUWLJד&9NAt(r."""""""""""8�L p=Yb,'LQI 52Q0Qd{�ʼn&O&[DRWㄉ""""""""""" u8QzD⤉m�=Nj E~2Y$uޅ҉҉8!""""չgot }PuO;e_9cv- aaxpD 8ZܳwL/7oQÇgZUn7glӓk.C""""?Apdhݺ5d2㑓�A\\DQıc<IP2 |Ŷ'pBDDDDTpG.t6mق qA(**BPPPCZ{a|D<c5RŤoٺ ie֕߷ad 4w'fV2 qqq8s � ..�`Za6Oܩ'(zRU^ /�>[ _�L<  1mS�?@]JMcOM+nGƍΛ;"m�OAZzzu�cFO$IjuD@DDDD5EX,ذa LM([UElذP(;*T]g^'�8WJDDDDOXj_09F ��~Ej̃BgOEX4;p�6sI@`` z'}Z�ХWtW^ {aǮHJNF?{! ߾r.gf"<, cG#\~)zvڅϿ 瓡鑗W~?{g}$28( KشyKɁٗ_"!r9nk=6sX5բYӦxG(&]zA9e:O/<uCVvN: Rݺ-s]~K35;tQܭ#"""";_dXnFBan:d2rOs~�4q me;^>McA8r(f͞VWxGXc<x0 P($c$ ' _^^^xuԡ"#±}N<u mZB޽}N,tz�Sգ;Z-vڅ̅$cF(s wu<gx7!d6a=e4q}Nh癧ttْ$m�RRRv݇_z~xr vރߏ &:~|pG?�@Rr28V~'c.h  ĆM?#2"N@q/_}2gmNWܩFC"""""gl=N[78834#d՞`""""\X27F~j'ϿObŪq %IлgF퐐Sϔ}۶o7i2'K!I7{^ 'U˖�͛oB$<>[BēqU=˿ ^^zr O>= 1mS2czgI%�e_|oooY% oڄקĺ1mZx+g0%0L}{:k%·(zy7>yʾ}ڔ|We.s7zr9P]�`0ТE �e{Xw7568!"""[NRyse֫T*߸VߏI'i8ϝ5|[lRWh�b��(**11HLJOyI>d*Sg$mg>X n+<O��4oKJ>F11tzu�HKO$IHHLDLt N}yr~=O${" m-Ivwmw*P]yMDQĺu�̜'0ߍ`℈n9>>V9J̶Ɂ AE]Ad$�`m 'KZv/SF2hW^ERr2bl/qxp$; {2]}6ϯtJד̅JڷEF#Y$%'a��6jID\ T*d^Ʉ(早<FO8qUOu]DDDDD;TlbOoݺu뮻 "fy#=sϘјpv݋fM"99ݫ}Z6l3SBΝ0⫯ŋjۨ~?r�!8zDvi|]*ٷ|z:9k.޵[dz`4aCݪgİxcգEՅ.`(((@Feq(, m?L"^yc:~)F ;w`Q#� ǤEݡjYö́B@q1L}_0[UsYρJgݭ!'AL&tł/$!$$!!!� ,[ Yf{-g½~\ @N!Io̙�]:u„{AE<g֬Ykx{t̞7jE6P!n>Dǎ#+;bbʋݺp8,b9܉͛C$�VA0|n3vH( |f-6mނ�4GTIuHKO~!} +3q~Vk/]t1C$3f44 |-v RZL_ߝSKEΝtᱺ{~9O([ V;zY=Ueq*!ѲdHzJ#,, AAAWKl)W\i8p juVFDDDDT[J%Jm\V ՊBj> P?V+d2$IFӕ)CB.#//@pP* Zqҩ>ZBL6ְmxN=˴(ewtL5EW2ׇ-^I`Za6NP(RaZa2ld2j۪ӝT˯L&jLWʓzz+'''z}ՙǏPd/{!"8!"""[dr:bAnnn~L2Ozn4+LL.IRIGqX\N@Wb6a6+ݧZ.*l;WSY=U<P]usQrw'DDDDDDDDDDt3d`oLՒcb ??`0s-L8TQ-ξ!"""""AAAHJJM=NiiitP7EiDfDDDDDDDDDDDTf4h�gΜAVVV]CuQ),,VE=jUV QM3͸vZ]a'DDDDDDDDDDDD%du�͂"""""""""""L`℈'DDDDDDDDDDDD%8!"""""""""""* Q &NJ0qBDDDDDDDDDDDT'q!>;ξ�g0b8XVVZ^zuZe)ތ;܅ V^<Ij% "~i=xzc=ùZ> :>H>SWۓSTG!߭^\^a}XvuuTqCJO㉩`U*ϑ^=z` g~5dpm;v 7M[Vl6cmS.aǮ]ꦃ_z|$""""""""""q:ХS'ؽK?Qd[Jd^s?@P( հ8Q i|ȼr$i,DDDDDDDDDDts'Δd’?}aEtlSxz&*~9vQgV:۷c%�Q xۻ 0~Ɂ�`Ǯ݈kQ TE.Wvl҅ u/ǂ94 Ç1X,~=^Ͽj\o2ժ}Ndd#0 #ލR#=S$IBZz:~=3 x3f5mǎC၉p ;pj 4:w숤d|#\4=Ʊ87gfM sӞvZoHص+WAff&j5 IW{ɽ~:>o/bcS's@<2獈&TKd p6Z|ݼpE,]!Z ^yc:| i|ӦNA^=�.Bjz>p> ߏgB @Lt4Lrkh4ػo?<�snTvEK?ƥT!?? 0ʆKp.) cȸ|yh٢[/X@Xh(>yo| VQaC%&1'b�^^^ء=DQ'<܉œx;|w; "#q:>).)Oⵗ^ea9+xv|Kp| <#j�(bEx᳥Itx嗐Դ4Y{l Ʉjm[wyzgཷBdD3j1{k9r"""""""""o%qʯ<N$-[10|�>܊?o݊}�@pppJD^=cn9x.lB"ޚ]`@Nk^;v <n]Ȉ}k^t r (�$XGw-.I0X70XlD�nkO~c'Nlb௿OGxGQTT2w9_x<3s:6hP&A.G׮Xw֥ r9tUkBE9' Ͻ#|z{Q�}.!$8~WI�e&zA݋} ո2iE9pto�"#j.WϿ srcnnuN 8�_}{aİQPPMsj} N#ǎ>ŽXڵmVp}1�HȀ$I*SFtT}[M ɤP(Цu+<C3|bqgm ^Pqh ef$IX,fk]BvN6DQt9'z0Xr%&=(w߇F1ѕ)G0\TcM'Nl{k&70��~� %7j묢XCu@֭ ۷;wv;mץS'?w>.\gѦU+XV?w_@Zz:tXm+J> ~۵HPP� hִ} R55 Ap+OxxX56o݆F`O@TY͛5;3#;;s?\^{_E&ܽ+K]X;Qw(V��NFuѭ+~Mrш Ա}YYِ$ N7 t!fjE&@RyRD>1{|tr* ڴƜѯo(j�&w/BC3b=-[ AbЀ`!.B$<u_|ƎY1&I_gW؇r'OU*ګI\g($'[՛ E:Z\幺^˿7ؤA$$$ÊU_c;?aѭ+^xu :/XKŗQPP�='WkݣW͛5;3g��^~?pGP*h߮-T%r {C?MCkc@~Xwգt:]vSo)?^mq(Jߙi&Z}0^Z-Ъe ,c瞞/V|_zyyy C&aȠ axIx{tL}_h ңys&MY`!(_olFXHMKC^^BC Iʮ 65{.\L F]CzDDDDDDDDDT8z\riРA m~mWxDDDDDDDDDTm޼Ǐ @Aɒ_B�E?nM"""""""""""Lቈ4.nTaQ='DDDDDDDDDDDD%8!"""""""""""* Q svumADDDDDDDDDDDTc :[9MD5`Rls8Q(n""""""""""""%9͎(ڌ1qBDDDDDDDDDDDTBV,86 """""""""""sLP]DDDDDDDDDDDD%ㄈ'DNQ!b]S+d2d2T*d2vHx7Wn]N'D(GjZ*2ebuHBT /�*N}{'DfBEjCF iihؠ!4M]cv"#pP0?}+X,رgxj8z!\"4r{Պ, }|}}k0[oADx*욲];F(0u4L>=eUzxCDDDDDDDDu_&rjBz7V#g]; &ábZRBDDDDDDDtK'3 RYek$l6l6A.W@R׻GtɮR,+ۧ*Ij/;.GDDDDDDDD,81MtڷCDdz3gh4!?z xy{uXʓkZRw$IL$Ir^}DDDDDDDDRCu&\8^ D�� �IDATn f345z8T?{d2Եɭ&3gN` 2JzAΟBDDDDDDDTjljl2.xyy#;t: {~-4mF{k WfBBP*U[О%]d2gCud28$Ir^}t~r (,V"#~}'|| 0zDDDDDDDD@%NLF#''C卼dr@cڕh٢^^7TjtcT*5uxUꪯ8T{8TWVCu�$ğ6ހhlmoB֭;IULF#%'IB ReO;+V~6pب&ɡ:8]]lɭ&Ղ, ۮ3qlD I=R$wlѣ8!"""""""P81HL!#$MR-o�ɓM+>CvcXV墨jzVy㤾qnbJ  "qV+VƸ<Kzp6TWM8Zz ˬE+Lf 32*رh۶[b """""""5qb4q645L$5-؆qM$yk1`҄OХK7t:KJƛ3ކT/\VZb0|=ݕ/``]4W}\"$%'a5kFîVUk rj?xAhH<ƎZΰ'Cui#Ci?� RYn;vƆ QPX͛bʓUǝ/`]kȠ*x>Tש3ggחymN lBKn*˵ҹ{AW˕}N|tIwČY&& ܃ٳށZ l˦ Nȝ}CMeXp9#&td2޷?D6tYXW]U>&#ğĈG˫Ldۯ[ѺU[xyyK녟lĀ~+W.?>0~zj�K$ƵYXk|r٧0Wn꤉(Z|h4Ztz(ŧ0??fxyy#??Ϟ81L<t:_J^^JxUU]$b ϵZ^k/((( `ҏq gM 2p755 q_پNT@T{F! Eq{㑇RL7v:w�ɽNkwP"۵(qb{ʼłƱ0͐$ gmJ�˵w)5M}0̘^J^_ %ٷj{GӸ8cO@ѠEfLW: ᬍSS$Ir^TR//VB!G.K�*?>\Q=>"""""""[Y8IOO] 9P(t) ۶Wqo:tϛ7@z%auߣ[WVZ``ᣟ O-R(JVk-77!A!5P(hHKO[Txi!LF.\HF퍫W b2"*־AHKOC#F>sP]UWB{ǎG/lڼ;vk/xCq quvֲ"#"* * r$acq?p#a NgyߡC;|z}R<=Nl6$h4VX_m+]n?< &DQykDF aC?xP{ocy6<8~Bn]m ZYV3))stc*l?CO_S=N܉;߅R��ײ.C\'DTj-,+-""""""""@%Ndf,d2\J_Av +p)d# 011ܵ6nڀA#<" BZZ˺K?H/Zo-d2%mS |f_~VID-0q#0Wu;pFo/}Lٌoā ??? v^TXwoi&d]˂RD^=1b{i%JLh5E+8Ck0+p<^d h߮#T*rr֨++9E~~~EFzl+=AvzF:rsr!A7BCB!QXT$DGEC�RRaZ,e�ğ�}<J<dC�ƍc=f$ \'N\Q7wAx.@q-GeΞMĬ?��ߋA?>ta\jѷo/7Z19NY29lGlW,\�0j}�iSOg妦A$IHJN%KqR rrrO{q%׬hħ{@!W &:9r& K?]*Ю-z1{{LjiGGdD4/ .^DDx8$I0!b6(,,g˗cמ% ~cݼm6 /%8Fhp0==-9& sׯELlB<vi9N\+UIZde]L&"#ǯ-M.Wb0qBDDDDDDDjKq_ ŋs.t:<ڴjMp&4~?Zn`ջ7yFGNEF$$ÆMѫ{[VWqc`4 r%RR.> ZO?VţOF됑q!!E{!ZE{} `Ŋp.>�p,lU@uX'xf㈎bojdgeAѠ//ZǎEdD$C&$%CR} * dijN+!Fb{$OF K`\JAlX#?/b!jxCuyҶ2݇o(L[ 6p�W^~GO>CHp0&Op_WSttCLyQ`fN2̵VgGDc۶_o|9z*q˼ h}me2p '`ݷk!a6C:*RTTS`k0r0H?SzQ ��fϛYE�-\+W܅_x .% ˖_8gXz rrrAth׶ ۏ{F qkӺB/"I%HO/v݋WߜIѩ3g��ڶÓ-'97$$z;$ g{oqҤW> -ӣŝ{*טbZjTj8!"""""""P ߠaC}o{; ~رJJKMŘ�!Hx[_-[ aڴmvS :7pG׷w}6iJee}xn4h AХKG|�p50f'XdDmn/h4bǮxn4\.`y6 ef�pϓBpp k@|B<FC!7/zmZcAdTjLF%%$MTv Tj5&MzTJBpP0.]BFlEYYYB^|L}<\JAaa!D6L^spɶܩ#fzɹd2\MpZƙaѴi&?aaq~R*yt TYa!u:W\;(:M|22KxʎzBf |za}bZ'^~;~޲VضW|xj5,$IBaa!6o݆΁V(s ,X4aL1Q o>zbkEzm`쨑8p:thBQ&dw6|x!a4WF2ulO ~-5 {;�=zo/uNEQt^ VʑXn,BDDDDDDDTT[DRihڬymAAÈrNG]ѥkWY2YmQh4e=/gBE,sJZE&>Jn-=r8v݇ۻLW I'#V*n+?w+g</bİѠAsTFT"<,I nN,жu{~7RJ :J+W@V#;;Oi\SUj DNv222k𵯷M|y7%&  ٳgo. BpK=P/xmL3ӦNhhc�CVp󁃇h'ݳ;ƌLw$6\_خz8Kݹ:l~\>$IZfn={pZrrs "DQDF{ק°_$!-=(ިYY"w "##`XIЭKg_W^šÿa@~'IK/NX)6,矋}b#{ƙ3 zte__ݺW\DPP9$bf℈·Ư6_",,-m tζP�?C$ 2n;cÇsL)Ty�p9#>smdf\d^b\%L&C68YYYux<̛zR�%"*ɵ3}8xp?tJ+W.C +;gФISh4%-JMdD$&RoS<n m%e_|FP@ Q'לp1x驷08*i3 7':\d^O}={@_IOw'=;A˯ GqT6T;-V+n\cNUkb/186 x|J0[dhۦuX��sfƱNGnx C.]I/Z4kl_'Ow]c/QttY;Jn7)>'u6&rܹW; L &NX<TWMt!"""""""E9b(TߢB1tt^:/םաm-`Z>:۶ϿqBNȸ|$ML?/*L�!Wȱk^-f\?KADdbccUC{jD6ls)N\J>}nJB jddL5mZÓ/׾jAAHHo+z F{,&벲`,2":*_.\P\[%T<]o'{K�6y#$8IIn=4j F^rURѝհXlmWG'<Ʉ*q2 y5__ ?ZK08}zvلڵk8w.:6Jķ?.;׋=@k>>>EףsX2\QV9jWmTznCG"&QWܼf/$BP"I"fKկs.\p… .\p… [iqS U| ?Hn:V3AउqFl۷}ճ;fFn=Qά(((C �z=;oĊUVZW+rf& &Wmj5zd^ɀײA4GӦ* ≠ 栨H@RrDB0LHKOCLt A@hH(q9A�m @JJ i^Ws:;~ Q1tԘ ۶mPW#>-[4Ñѣ{١vI+nɢyqu?yU(|D*8)[`Ԉ=o>tޘ6)thWq(w4a<f͞BP` hRLEᒏK/CD{<{ /& `0ЭkL8٭6oZ([]OЭKg{O""^Ͽ`<3P*h׶}*gm[=i#OIT3B|TC �PR�tI`JϻᾈGO{+W4n9x`?:uꌖ-nÉ?O`}ի:aXp5yO|& @Vl6#++ :>F$IBAAF}{V[fш|\JBj"//VzN0Qs#EH8{b'Fvv6ƣY7Ŝ"5_'Ъe+/((@d kx FuqÏj//JK>O s{%v@ff&�8|Pa;;~(>sJkvٷL ohJR$I0=)׶ZO\oXR*eu?/`7kh.DQjOZB@~~ØM&fc*>jB$I4 vQ{P|>xݎFP*U%r�DZ2_VV8w.< Gc((YK^yjsC(,,@H|xzW=qP*\Sg�.Jk˗'uyZZSvur$5E qcğ9F1`իW,7I;iLf> 2\~ddڶi7< >w'w{w_Fq{9^kvl%Lqh4h4VrmYW>Q*iGqKyGb.^$e8ۦ|$Ir^$ & !uǯ0!U"ZEBd6A#4""""""""OP]& Yײ`=_~@dggJ= ł?"2!o'[d7i'2M2^\.ǝȱUZ D;9];(V[φڐ Ɍ�MLĪ5`лQPDQt^q$IZh ?o:+ol?o;4nkDDDDDDDDr8IaAa|uvctzD7AAAj5*남,f ,f ~>~HKM_� lSXT7uΓk-ƍ6k T{FmP4a<t: k:Ҩ 'OoGzF _= w9`T6{Jƍ0t=ʺ}||(j{ѡ ~} F\8X( h4h4t* o| LBBQߔy2T&M'rCuCh)ާjTh.''=u}{'}f3f?*S=N\+�R??}7| r9*EDDDDDDDTN\oo2SdPTwk>];lr(5rT(ѼWCuL<yۡrǶ6Tyv~]+U """"^�� �IDAT""";5:TMŃkZQCh4B\L7¢BhZ*X*}-JܻWS"""""""z4 p)ƺF>}yKnk'#3 O*ł˗/^!"""""""q.ڶn& z*v<�W(񅟿 >P gTk'rzvwO{q."D(,*߀�ds(VB*N}{E$ EEEu!""""""""P]DDDDDDDDDDDD%8 wQU? @PЋt]XqUDA\WW~*vŠtTIS H萄JBKaHfLL23L ~=O=w3Nvw9��������dĉ'N��������݅'N���������28��������R]���������x�������� ��������Lv:~xA��������P&NZ6mYq�(.\ȃqFa�������nQxq5@:n'`:>nyhX?<�#������p7ZxA{taw\\Et\8`r#C��������KIq| ��������@&'���������H���������d"q�������� ��������@&'���������H���������d*V�۪+k.kN]:wVAج[^+������pKO:rD{>BtGjmu*p:wn},������pKO l-:;]kHl\hmyxta5nP<m(0������'vCj݆06!CsWDߥsW=Tli>aMԮ]Wh/m������ĭ{:rD~5ntS׮_WPKP $I)zlY&Yefh4jYJ7ԢYScHߣG꟣O?uH&|?%&%1o 򍗗,ztk 4ny{Z>T{S͔ݻNz9=�������ƭO 9{VڶӦhuVlD9Lձ'Džzɡr;qBgЏ?U||͚%IS>3%%'kڵ{*Iƍ$i ݰAR7/_0 2HCfY9_������[8hۺ RSSվm_H&IFQ4-[ ]T~2`/oIlhu>Ώ�<e2n?A5k%e$M>oU=оo! 7{It������ _'&Ixhl6\\$B 2d2l֍7ufҋza߷jת)ɔ5yr/(ɯnЉ'Զ]kmwU ,CݯM=U\۱ �������܊|Ib0X$3QzsʖxdTVle7nܐhv\l\6i#B=]9?ߟn]:{[=jUR+Ĭ"ո} �������"q%KV-5e ]|EfYgϞߣg'W*&&z_~^ݻO?SzzzA^n]:k3 $i"IjQhhZ]=I kլ-^ ������� )i_MϏWbjެu٬^Mf󖒒TT){{i>sFW_W5zjy)@zx#v˺v馮]�������`׼y={hls$Xbldgr 9iii2 VjjL& S'G~xpF������n`lgO{9լ!C ,))'1˿%'&ɺKKKSZZZo.ŜQ|ߍF��������dU{���������e$N���������28��������D�������� ��������L$N���������28��������D�������� ��������L\tA#uƍ@>+^mev(�������PMD 2�dжCa�������EݥRnd� PJ 7�������'���������H���������d"q�������� ��������@&'���������H���������d"q��������Xa I4Od@2jޫΝ:jUXtԴ4%&&d@ $)|}>GCakz,w߶u6h-կk�������@TF5TJJ:/'OV n yyyvxnh"#|}hXʢN6#IrwY/\N;SW^#i�������N(KuIF$%&& ;$ojޜzavԯW!������mH&N,cjïZ05e wA%Ke2: }d}h:v'=sqq:-WzzܬDEAu]<V냏?Qԫoml|xW]w>^fGo]nz!ڳOIO+W^$uKP .Upܮ%fYTnB�������n/E:q"I'e6%I>6mެ&NPPM9K /?ןkƔFƍS ڋ=uJ 诰szÏԡZjz讱>Ç`ZD.\ԄZ~iuh}6U֭އI飙S'KX,|}ztzly]nO/\P||#q�������(R{ؒf}rrzV"IjҸ>L?_}DIIZ -*V I*WSmnJԾ0O۷ڵmo̕dҍ7ӊ=kKKϿ"[]:t1ҵS'L&yx~*99١k@dK;0p=zݲzKeʔ)hl;vЂ ы/X�����gh.l6fHHsjٳ2:{.+V}|mn6uYL&<5yd&v3*Y k( &Aկ[X-{WHѹs˗ 8�����"81p ~LT|yI҉'հAy'OFRp ʖxĉΑ$CF" 55ʕ-'I6KխSJKOxےq5h:l [t~geޚ1cFG������}E򑂔O 9JUT֐$S>5v:uf?if!KJ}t1f]rETRbjF9zLn sdglVJJΞ=p3mFu/.I Rr (:RRRdRHjJJJ|Ν�������ȩH=qҹG/<<J#`Ϟٖz5m,x%]vMAAЯ?x_'}OMfU^ox」IS/&rJؾg&iKJLLT``:wꨗ_+V{T|owmڸ#u~uA^~E쥷xEԥxcyWU'ɢE4}lǾkUVp]����^3 @[xztxhXY\}L2E|2ooos+222۱ FEv˖-[*U`4E߭k6*W!C%F�����d /{y˸8{`̩f 2ddII?Y,)H=q�$:u*Ǥ5PPnu5lP 6tcD����� =N��ww1�����w7'�"g͚5b?�����n$N��EѣGuw)�����`�@6۷oCϞ=UblǢj*ٳGNRrrTlY5o\ݺuS&Mwqmڴ޽{O?)000۱vکf͚No2l2ZJ'OTrrʕ+ѣGcǎvc*66V;vΝ;+WP@@J**UyjѢVPyuV)>>^*WիN:SNG^ZϟY֡C8Tٳ 4HNu EDDh֭:pueFtҪ[4i.]{[ǟ|ټy:ʗ/|Б&ZA�����e$N��ܹS|ͲUZ'P\O>Daaa9KHHPBB9 ￟cY<ʡ͛X2eM\;jji֭Ϝ9<صkO\~]gΜQdd֮]+Ij֬VZن-Kl6lĉZzTw}W͚5$yxxd29ޢE~eAAA'Nr{vph4jѢEou礤… :|~g}gݻ^|E8OH*ثqN%N j}����@QR]�lJ(a2Y}y=6'Omٲe 8Ę___e׮]$}9&HNNo#F:mODDF_]IIINҥK:t,Yb3irX ։[}?~\?&Nh7ibKJJ,YAݫ~����N>qdŽ�EY^Ѩ_~YgΜqSNӴid0n5Lr늉ŋzWtm Stt&M<OLLԋ/XIOO|U։=ښrEBB^}U}ѣsk}����;ݾ(�|e,11Q3fБ#G\{׮] u54x{{-KLLUFloo\c8vx yu<U``` T7>/Ϥ|||r='--M|[~����Nq�&'bbbn~ܹʕ+˗/kӦMy.+xb{ӦM5vX~^j/ʗ/XÆ i턄Y&q///}ݸqr աC-[Vti̙|۷O&Mҿ/u<yR .[.I>y#Zn&Mu&I IСCUzu ?^+VЬYlFQϟ/[UXc{�����2'�lr@]n1c衇Vnك?:vޭk׮Y7XuiI8q݉m۪F.ǿvZ~!!!9rZn-???Fxj!22R?:5jI&#\rzԽ{w > .O<awŋ+==nÆ ӨQU~ԪU+W||e7o֮]얿Kzꩧ ҳ>k6_w1mܸQ]tq9 ����(c.�^y R~r}}TTT~'˄xӦM5w\uE~~~2=Y*W5g϶[&Lځ?~݉鴴4͟?fdNZRF 9ny {-/D9iUΝs}aٲe[~(̱����Y$N��N[9s-?y#r>S/^<s/^7-:tJ*g=!!!ի+Vl68K.}ݐ!C]vSN15O֎;:4:zm,""BFѥCa=�����`.�S}<'U`9sf#4 8Peʔq]v庑>pݺuիm]|Y'OTճkv9v׮]u!-"vmK[γ-ZhذaU%()챖����$N��Ni߾C煄 Ԯ]:|nnk+88ẚ6mk={JTXP:(?햅8αKQUc-/}����3X �ఠ .]ڡsz9|ѣG햅8ն}bkCo{ВTJ۾{>ȭEa=�����*Z}0v(VSHZ0FfSL<PV_>^Uh?jiJwpd __|5*T_rnYPP-[֩힟J*bnLs{gvQc-7}����DE1bX_ӏ)=<}ɨOV3׋ߟAzKZ׸IѼC( }+{d-vZc%Nr˖mBVX8{k{����� g.v_KYҙ˩XƚKznp@섻h[V[nk`(_4*%%nٝ89_c �����HQ<XQJR*~.\K_+LЈV\ƺ_WT:tZ^Y#oOmUSi+ee3Гm˨]M RBbzx&~Xw1==tJ>]}Fٍ51>l).ud4iQ6M())fYr󟽹dɒ9Anw.ydݾ/kO=�����_dD*כ햋anZyUї8y<[2|>]}V>{|<%I#:V>^1^E_ջ<={/KFv RbzeA.'u{v`}S*[KcuZJ(Ĵ\cʑsf*^dL3Kbw7s,sv^l$-n --͡_w-i/΢�����K^bD]MN,q*#[pCfIR塞 Kj8l,EIm8cS/u.(>1M&tcBR*ԍtZ̒3Gb> Ώֱ7 ;,T|yeNՕ3g-/W\cMpVbbb>Q&n\mtv˜Ea5�����"R3A_LI16 ARn8{ٵodqw F[\ܹ< K]˫}m} sql?~\FQuL&M4qZjvϏQzz<==l;22ҡo۵:uʡ:R׮]l?~\f١VZd____D.n=�����_nĉ=)/\xrrkMʁ:w5c턤*҉9oLJmCgR6ՑG o_N-Ы bj֬ݲdܹSm۶u7-UsY$%%i{Y͍�� �IDATjܸqmۛ=clձj*nҤΝk:rj׮k&Iƍt̔)SԪU+sk�����/Ez\NH6^B^/f[F6D]ըNAP2:|42Z;At59]щzC9AR�/k箤*-ݬJӠjeM_IRҵDѹ-.$W{ԷIi},Iܱ  亄Ҽy'))I˗/[޾}{+ 6̵+Vvll6oޜw6-;pbccs} t!nڴiOXyֱ}vI///5hsX�����m'izGzV8=OV5Ϯ5KZkrR Q%Ka%0i8=Ҳ{elnLYӱ )h@%}.Do ñ:#;A;}`Dl?^(*r[~'xn֭[g=_~?6^zv_j*=zndg}M[2٬ۭ;&&Fcǎu])cov˗/_'O-OOO햷m2]5 {����KQ/ޱikَ|$H3vc֜vlB9=xU-w-%]_[^}׳Ov[յkW)S8p;]tfoٜONN֗_~%Kحcǎ.9գGEEE,KMMի'*$$$[ٍ74vXv0'QFn˖-z+J*v׮]'ի*VJ*m}׶$ 2D?LJJ^}U}{s}ᇹSO<^㯰�����P$'��XTXQǏY\:tPPP.^RJiԨQ>57{~P$?~\r˗;3k ܹs>Ep=ԩ4h (44Ԛ(]_Tu<^vmծ][O҇+<<\ʕSuy-د_?EGGMk[BBB4l0͚5fyLLquEחN<kM>HR>}& sX�����H��f͚i˖-vбc|E?'=СCN>LK<???裏잓uiݺu6GSڝX-ySO5FIpBc5j>KOOϵ^Yn4fY&doa_a5������pg۷/^a0tP{*VVΝ5h ='%%nYϞ=չsgرcUT)߇S08qڵkt 74uT=(k����� � ԛo&݅_~>}6l===շo_͙3&|Mߩ<;v CO$''Z:8ܮƏ-ZHJ,iׯY&L{.פ=6lfΜk,R9�����۱T�ӧJ./B'O{^pp7n\p)cٳgkZ|vܙ*UԦM 2D+Wv]OOOرf͚H 5jHO?ڷoo=^B6_kŋ/h֬Yyz#F(((z<dEbbbm[xxxhĈzG+<<\ѹB ٳ{l䥨k�����l}k޼yFAsO7+�'+EG9<|Ã34 ٬Gúz/�,YR!!!*SLa(ɤ(>}Z/_իW%KtҪSʗ/vccc+))I%JPJ԰aC-[euI߿_JIIWF,)**J |RSSUD UXQ5kTժUo6 k����P,^qqqN׷^S2d Iɒ2;YR O��,ZjVZ]jРA!QJUR@۴VUV(mgU||MWXc ����MU/&6p'Z8C�������"��������28��������D�������� ��������L$N���������28��������D�������� ��������L$N���������28��������D�������� ��������L$N���������28��������D�������� ��������L$N���������28��������D�������� ��������L$N���������28��������D�������� ��������L$N���������28��������D�������� ��������L$N���������28��������D�������� ��������L ;���3gh TV׵~%$${U]'&&F R۶m<~'q>Mttvޭ˫M6N6k(#?>\��'N�.pqM2ESLѾ} ;8)**Jya 8P?jƌ.׵w^}:~'q>ݻk޼yJk(#??>ຂ\��'N�.0{l^Z~M2#BaougQ```a@ժUէOլYC)R/۶mӁ4l07E{V<1���$N�w_^Վ;*Uvh(D'N$ >\:u*`ph֬5kVa9ꗅ *""'_XƸ��;T�VX!ѨΝ;{2ZlYaB$I*UT!G]RE-w���p8;lҥK%IzRɒ%5{lXB/gZl~=Ú?6lؠ .DjٲۧKرcx񢼼TF 0۶mӢEԺuku]gW?fYFN>-jJCŋ5ydUVM/Rq+})IZz/_ӧOXbjР<^wV||$i P };7::Z ,޽{/U^]ݻwW^qk߽pw}WIIIzsʕ+믿dɒzr1yd?~\ÇWz4o<ܹSU͚5կ_?k.G=fY˗/ʕ+uY(QBM63<sK}k:ԢE =*W$iĉUn}v-\P=zCm;;nsQvŋUX1-[V-9gnݺz$I;vЂ ܹs+WN %I7n… -jJFR@@@n>1,["9޷ە OOO8xUNm޺9~Gqg}eanҤ ?TڵGi&Ojذ{˖-Zt;ґϥ[g8sy;g���n$N�cĨrjҤ ׯHѣC\xQRDD6nܨڵkB ѣGٳggXYh>3IR5TfM]xQ6mҦM4l05*[[.]Rxxm6mܸí;n8-^XAu֕-Z駟Vxx_qڗTxqM0A .Tz*44T7oւ {cǎ)--Mti]p! ;(55UիWWƍuum߾]֬Y &X1g3_~]zc.[L{$9RAAAֲ4͟?_FQ|;4zh%%%ZjjԨ0=#z7駟jɒ%PfTdIرC6lc=R+VLcƌѦMTNUTIZxw)((HK+WMhX^uB57[{N:aÆ)>>^KVժU%elm6㏚>}u\9sF2:.8p@]t8p@fY?~ի2eȑ#Zx?3fdV2fe_ȑ#2ǎדe޺9~Gqg}enڴ SO=h)S&[vc8};ϥ[g8{;W���n$N�xbIR~d0$IWdd.]p[tZturҥK9rN8)Sߗ$k>L]tѣGk߿*Ud-L?~\ 1c4htݽ{/^bŊi„ j۶$իzW_eվ8zΝ;KZr劆 h-]T?r}/GѣGo߾:{Ǝ&MXϝ;>@z75hРle#F9s渴~iFvܙmZ&k׮Çkǎݻ|߾}JIIQ&M/)=3fKO<CW^я?MZ?dyyyiʔ)jڴI3fhN$ݻWeʔѲeˬ||FǏkڴizԷo_M:U{QLLu/k?l޼Yׯ_:n9s5p@3:F&NEi֬Y6Z<]cUZU+W=#I4i;͚5K&Is̱>w^=sЉ'Tzukr_Ύwqo_yW=|<wu3Gqg}%u_+VLSLb65eM6M\N[~.W1qg���.q�w(7=<<Էo_^zG;wTLLSu^~]Zod)Sm[qzH 6Y$I;vTݺue2k׮le HfTxq\ի%I=z&M$) @Z#W">>^oV %KlK.UrrZj-!I*TƷh"|M6wޭ4=#Ν;رCK.Օ+WԬYlpTN2m?U$Iݻw&M$`0WŊIJLL믿 *00P;v_6n(Ѩ-[B y{fotw=[[/yl?Xz׬IIz%e||ٖyjܸj׮-Io̕,+Wƌos{ULs,unݲmjo0 /|_Tw0ƥKט���<$N�|rȶM%ԭ[7I(___n:_hIR͚55f6L\|fyթS]wd3ҥK}6rwY9ӗ%KT-rƲtʵk^,YkŋTJ*)::Z.]}vIu1k?$I]vvd0i]RȲɰ~7 wF%ԪU-ǒC=$)cd2e;͚5dh˭ۛY&/^lsdK8lٲ9ȺDzKyer>ʕ1.[[yo]inٲe<<<ܲok\:}}?��R]�p2LZl$i9 +WjŊ5jJ*67S@@^ϫVZֲÇ?Ptt]TСCXm)W\q9So\\$]~ 8r/k[ΰ$Cn^ӧ۶mkײ$ˎ; *y;wΜ9`h߾}*SI ={d(KFQѪWΝ;'Iv\So5kUVTN>[ZW\`7efÇ[ujժڴiR_YeMXdfr˒F~r>ʕ1.[{uo]i徶Ę=;_ҙϥk, ���w'�pڼy5Yem۶-9rԫW/ͺ|}}uUHX7׺u$e,$???֍/YkYfy@@@đ3}iu9XkYK||ޕ۴iѺ˗u*͚5ܹssNO{Qjjڶmk]*kۖ,7',Sx<벥Dv|||A ɓO?Y'6lPZZzpVի^ӦMn&I] f}-/rWmq>ʕ1.[{uo]iU^ʯ5.\oƂ���pg!q�w ˦Rq-]In{ZX=LΜ9S֭S2e4vX5k,D[oe)Iv'\KJKKYgnA#+g y{{h4%>W&]Ecf?M6urײK h4?<PVJDh;vnܸ%dK[Y~iڴiڴi^�T=:nm{{ڵK۶mSxx>1c_ף>Tr+cƝouoU~׶Z~̯qRn\+ƢY�� �aΜ9[`0hʔ) y^bb{9EDDɓVZu_xqɤ+WHxYk^zI͛71rRJ)))r'O,8r/ RuuFzYԸqcܹS.]NZ'{Tvm ;v쐇um_zU7nܰ-y˒?r/S:v쨰0mܸQm۶UDDԩԒIu_JOpkNڵӫN_}&OGy-O(8V3WL~ȯu׽U8WygΜqk\:s{(~V��asx�,]T&I͛7W˖-UF ?5n&N9taӚL~{9Ώn,W $8p Ghƍ $˂ԨQ#Iʱ!Ş={d25jXmڴo߾]UV͖i֬Ο?(<xP54i"Imm6ul,c'**k,:}IC}(IZv֮]+/fbccuȑeAO=hwB6}ʘq[w[ɕ|ػoߞ 8Kfgcw0ƥ3K3yg���'�pIMM?,ɱ{,+Wu$ ٬: H~Mw<+W߶~kիy+o^?+!!!+&s/ eL]V'NVYfIo]~N:eFe)sd2Ym7j޽9G=z׭,cgʕ9&Nl6[5KnZڱc,Y"oooٳp}yY 4H?ȑ#2WC~̕1e $>-qoj<rr׬YcsJ*2EXX$H~̯q+ WָsjΜ9ks8���X � .]y~v#@�� �IDATT\9]pAׯ\ϿsΩcǎ*VuU///9zn޽5i$M4I.]RJtIXB7V޽kڵS>+WSttqCھ}N>Ç_|qd>g 5lPւ SjիW+**JUVu9>WUʔ) 6HR&MCׯd{ug7|QFiWk駟O>3gN>'|Rzj=#^d2I7o~MqqqԩCe)S(&&F=zP@@CZ րtR <XzR*U^z$',z[\3Jߖ/_^>>>JIIѣU~}5h@:tȵ-w[\>}hܹv_߿_k֬рlٲl4iDAAA:{9[%JPdd֭[aÆi̙> ǥ+K3\F{ΕϪ5k*UT^��� �A,?MTzxxO>odɒ<'~~~:u>#}G3fׯo=6d]pA-~WK/O:|y7Ρ #WҥN &hӦM7oծ];}'ڳg$+L_ѣGrʚ3gfΜi=륗^z\`0M6Zr CTfM>|XeʔǨQTre}7Zpڶm^zIjղ/^&O?P:u$?{wUuq!{ @"#D+$DYTl]�󓊥Uj b J B "! K KdL$0 $?fl3Y&<<{{y=G1cS_[&nٲ^xos飏>ҥKKv9}t(&&F6낂4yd3r֔hg35ѺԩSo+>>^񊈈4u%g gj޼y1cvam͚5̙3U\\liΜ9z饗t}ᇒ.y{Y'V/**~/y.9Sr˻ ���OY=D&A~ E;-߰iCKf͘1C}%INҩS뫶mۖ:رcjРZj%OOOyyyuXΝSFe^t>yz뭷jթKW?,oooiFW+yyye˖vi<yR 6T֭e4̈\QFu]UV9}t,..VVVrsse4k9zG붠@YYYjҤk|8sZڵڴi#XSZffԴiSjժrEmܗGcy]}{V��bQ+l.oRRSTRTqƍt^R/B8�8y6˫_6mԩ;|H M^[(OUZjUkau*00( }V+`vi4T_˻BM3Gh8,-uYgCgڵϭґRqGϱjxV��~ 8�\󲲲?AnnnZ`nf?#C ph}WjѢF�����p"8�\󂃃C?פIԫW/5o\ǎӾ}$I'OW$ѣtk֬YvC�����Cp�hZM6M={Կo9rDjԨ c*44Nq-%΅ (Iݻ~iuťhg����'�J >\Çwu1mȐ!2dKp%Fpplb\uhg���� ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������zeddh׮] T]]�������:vҬYԿk28ʕ+uE7NM4qu������P �˴mV{:vh<!!A?~JV}~^uK Fp�����p 8�LHHBBB/_\;w*g7_vٳ*..vu������PEL�w"8^__}�����Մ�$&&jҥx EFF*11QyyyjРM&I4iVdd+ooouQaaa0`1}jOay }'Iڼy/_ yyyO>_WsѠAj������PN��.s d2IN<tIRII:$I*((~&))IӦMSAAڵk=z(;;[qqqڴiƌ޺}^^Tũs*((PjjRSSURRK.iڵ5ktXB… |N/4hP������ 8�ټyN8aRkSNՈ#G_|\M>]zg[8p@SNULLnf :Td4^2))Im۶ڵkհaCIܹsd-ZHZt͖=ڹs9nJ@h�����pu#8�Yrx㍵T&66V M$)88XSL/e˖Y r2w\kh"IG֒%KtIM8f8={sڿӫ�������%<xp(4$) &-ZX?44nΝV�����p�U###C{n䔹L&222ԵkW!EaZvkZ�����Ճ�pհE7ToW}e�����@p�jxyyd2i̙ݻw6iҤJ�����k �=c3̕E˖-]P ԙ3gt…2�������`g.Bztm۶Mw9rD۷wA������p-0���!|&&fȑ#e0yf}6&&Fcǎs=W'e�����7N��J``TXXiӦoTn4p@uE?/^k׮*((PBB{%e?~,+**$=s.պu:-������*Gp�W<<<4uTۊW||"""4p@IRDDZnŋkFjʔ)ԩK~۷u������ �en|6lԤI۬ SXX#///lR>>>v<x-CEz-FСC�����@Gp�|||*=00PuT"������09<�������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� ��Ю]8������� �uvڥYfTpry}WڱcrrrviС޽����� ��\m۶{ձcG JMM]T2<xP%I2 *))ѶmzHӦMsq)�����P�˄($$n˵sΫ.89{Lz뭚:u:v|ZJ ,]jذa..�������zg޽.SV^nZՠAWxx$/tqI�����P8�Lbb/_.]'Pdd X4iVdd+ooouQaaa0`1}jOay }'Iڼy/_ yyyO>_ΧaÆ;ջwoyyy٭ݻbccl�������\ĉd$<yR钤:tHTPP`LRRMkN=zPvvi&3F?u<KSΝUPPTD.]ٳյkW5kLZb> V|F#GH��������l޼Y'N[~]wyvܩSjĈz/f}nnO=zᇭ8S*&&F7|*I2/Jmjڵjذ$iܹZd-Zb-]fKJJx ܹSG 7P۰a$iРA������j �ʕ+oo2WHHMh"I2e^~e-[ ICsZCI=z,Y'Ojĉ6ÁS;w^/-Z衇־������P{�pհ9.se0f3$#ԢE ϲܹs*uꫯ[o|||?������8�\5222$IwVNNN۸d2)##C]v./X4hРnn&KJJ.… pB5jHu������PN��W [$|M^{WQ&I6lؠ {j߾}������5�pd̙3ջw mҤI5e޽[={ٳմiS������UGp�s= seѲeKu]p̡ɤiӦi2dfΜ)W ������UDp�3|pWLzRzzmۦn}II9!x %&&7h4,������p9�zvFAAL&ͺ#G`0hJIIlLLƎ{NzD^Z1c �����U7N��J``TXXiӦoTn4p@uE?/^k׮*((PBB{%e_du=n;gΜz;����� �^ԩSo+>>^񊈈%Ijݺ/^˗[?g4)SSN.)3g$Iyyy˫p .E������ �˄+<<nѣ5l0eeeI&Y0egg+''G^^^jٲ|||5x`%''[ֽ[駟:=�������@S$ �����׀Yk��������N���������N���������N���������N���������N���������N���������N���������N���������N���������N���������N���������N���������N���������N���������N���������N���������N���������N���������N���������N���������N���������N���������N���������N���������N���������N���������N���������N���������N���������N���������N���������\]���\ĉJLL�NsNhB.=g몮8##CvR``_k�����5ҥK裏$IcƌQ+>22R?(C٣[iӦz衇jtӬYԽ{wTÇa=VJJvء{LFe/%%EfR>}l:[^ui[})w+W*;;[}-RvQQQխު[ol]:uJSHH$H$"##%I>|}}=ή]4k,߿V <==բE (((����Dp�טK.iŒ;Ҏh?~\mڴ_-^X_}',X wwwy{{Kz-WFOW?bccVnpRXX9sd2'gϞ;Cb|͵YfaÆ6 U&M=m۶{ձcZ-w{"Ao /I&Z&����k'�zYfjٲʂk+>>^o$̙3:p^}U~;w… &99Y&IcL&yxxmbTVJ}n_IjРz={M^^^ڵWfb `ʟgifӧիWkӦMԒ%KxF���09<�^5rH5nE?B޽[:u$i֭xKWzdRrrrl۶MԣG?^w.sxIR>} VꣲOOOƍe˖zQ/q7tBCCmi׿%www8p@_~ ����5�ʕH%''+77Wر4`�m~鮻Ҝ9s{n1B&Mrj[ny^^bbbc>}Znnn P߾}1 4$[N_|233nݺiĉj߾}PTTRRR+///p 뮻t=Xoz饗TPPڵkG7/lwyÚ8qvZf9{=;vL#G,wD-_\AAA6m I[lѪUԽ{w=vݫX:tHO:tpN\… ŋֹs$I|F]㿸w8‘k ///[۶mӶmtmm/www=ڳg\yގCUQe)))_|k꧟~n I9ZjeSN_}ڥK=IIIR߾}5vX^Zk׮nݺi„ СCpDppnvmڴI 9rsUqM=?ϝ;t=;o[ 2���@=Fp�(SRRMkN=zPvvi&3F?uG ڼyú8O'~ǏkUӦMնm[I'{OHHPLL>*O\wyG˗/W׮]kÆ ںuqF*** 7ܠ={ܹsJLLw}Zt9}w5tPVJJ$ijѢuŋd2W^)M6g}rÁ+V(..Φґs{\\\̬p֡:t蠎;WZ{n�� �IDATڲel٢+""uS 믗t3wuC+9Vwn NcǎgϞ3lwa<yR&8q*o+Wh4*$$D7VRR6nܨxϔk/Ѩ+!!A?pe8qCY)..N^^^:vbbbԥKnݺXuYŸ3gXUi5wuAx5Ts����;�\M>]zgm:8S*&&F7|#9yai…֭.]>%{ZbM>cӭoL&{֢ErY~eee)66+##Cz駭geeW^QQQhԨQ6|Im۶MK.տ}wJNN9s:x𠒒4|p{PzRF-#`޽[?5(}[h4*,,̩s ^\͞=[IN4m4}'9r::S7iѢV\iʿkm0@o;Ǐuu0O>W?ԩSj޼u;& p*{FgϞ=Zr5|%%%Zp>2?g9^h4>_2nǎUll̙3z?=jO?$I6oTv\SS׮]հaC]wu5Vw����78kXttΝ[|*??_!!!v֔)S$I˖-.tz[:vCBB)YCI.q%C<^|E1X^vK =~cccuyǦVZlitttJJJԿI;J۵k.^1cƨAv@$%%IBCC+, $IZf͛7d2[oU˖-:u߯QFtJҠAԥKԳ3uSS9.u]gʷN,H߾}mkYn}vI^9T*eH`ФIL/of0$]~矷y[^ }wd}I׳թ^zI .԰aê\?����nq�װk:9K\?p@ SwqGJڿVXݻ?<<s,qݻr˰/gϞYn+<uԝ>}ZǎS۶mժU+edd(''G͚5tyr`pp]ǟ憸߯7/SO=e3t_-I si^ǎ;j2?lѺ)hUQoÇm6;VTTTd{~?W||d2iΝl79*޽{%g`mݦ uuX4jԨa,ϱ8zݲ۷OQQQpႺw﮻nvܦM}~F=����5,""fh̞=[6,wVNNNswwdRFFͤ͛7&NDmڴI۷oW~ԧO歑*oKgqqcǎIRʍ5Μ9LmVI-$%%)((H-[-ܢO?T'NPPP w^5kL;wVZ)33S۷ov+11Q~~~6ΜCMs:<xPٳgUTTK.쯗uSS\d%''d2C)))*((C;r-rwwWBBe4k.]pA6KT{F'++K}#k\Ieo\.eSY=;ҎkY���Cp�װ~U::n $I|M8wߍ7.sJ]vg}ɲ7m$IܹƏ!CTzDU\*Μ9cݶ?+==:UHH>S%''+,,LwVQQBCCCT`0(<<\ӪUƍuEs=6ΜCMs:L&oC~~~jѢ|||*Ѻ)hUQ׾gϞc׮]۷u~YRϞ=TtMַo `s=SXXh-_Y<==\^Imw}%waR^=;ӎkY���Cp�%ɤ3g9<MiM4N,_^u?^;vPBBtAM>]=uX!$T6EEEڻwo[OJJRII.nfFkǟe( eڲeΜ9#???mذA솽r*|\Ǐ?X|5k ^x^ɑqn+Wk_ѨkJJJR߾} 68$tMր0]=d2ŋepB+߫?\iWٙv\O����(�v%]lѢEاtW дiӴj*=Ӓyڤs.sd߼ysI߳gO8[oU԰aCu:.RRFuh֬ "m޼YOΝ;l7\3`,^WUT:Z#2enيHݸZm+ȵ.KsN/:p:,{rr?.`sS fJ{]v:ƙv\O����(�`W^m۶Dv>KJJt1ۭ3 zG_~EOvUգGIb*..:t`]޿Dm֦S7$$D'OԾ}~C5rlw$iZ~˜ܙsr???ٳt:Z:¯z;v:wyZ7V4g hԾ}bk{(K.jҤ٣]vI..2վ}\oĿRΝ5tPUgq]<?����`gȑ2 ڼyRRRhرz|?F?vsCHRzzL&ˠ,ׯב#Gl]tI-$1fK߷~Ǐ[-mavO?Uqqu.GOAAAJJJʕ+{FΡM6X;?-6mTipQ32m_W5kLt̙2YպqhW_rҜ9s;|ƍ릛nRQQ-[&~.rh֧O*::Z0]9g~풤kڅ6m*7Pn:=zZǿ8ێY 6(::Ziii5O����;2�tE?/^k׮*((A{p=ܣ6mX`Xn$}Mܽ{w=҄ ]vպuo>mV'O\NԬY3mܸQ:z%ѨoVs[&B?~r9K-Zɓ'OhUZZ?^qHs:>\sܹsVZѣZfzÇnIAAA׍F+oQJJ7 ܹSFׯ6l`}spƽޫK*33S5rH5jHӺu4fsÇ?Jq<|<z9_����\]N��eP֭xb-_ܺh4*44TSLQN\ӧ+ @111Yɓ'k̘1QӦMS֭tR}^^^9rLb7L`PvZ r-6ԱcG<xP͚5sz0}GtRCQ9znnn3g^z%9rD~o{t钤M]Gqt)EGG[(}ݧ)SPV/7ߴ NWW3op 0@͓$u֭~m۶v98S̙3sN-X@3f_111NTq����$P2HݠG?XPVDiCoش\uVNNԲeK\beee)77WFQjѢELV6m^e(ԨQtuiժUv/sT^^6mVZU^B;vL 4PVi>//OeqLݸZm>n7FP]uO>'OaÆjݺFFuVu1���_Q6vx))*)*ѸqFI:/R^R!o��*zOѨ ZV$pY>`Gϡ&UM6-w3ujJ<w5eʔZ+ ( ֏kPv �����p W_}-ZhԨQ.NBTOdd�����Px�ѣG*33Srww׬Y솾5njC=w O������pp%I{O?ݻTuSsjbu�����'��\傃eW^n�����k��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������'OԶm;?ӧOk֭jذ ؠԎgjƍrww]] ���@eN�/hɒ%GyD 63qqqz75pZLפ~Ik֬ŋcǧV?h˖-JOO?,@C_֭[5k,ֻशJCiA P=Ԯ]*`0W޽ڶmTӦM1ۗe׮]5k:wLp+V6��� �Fjɓ___{0`@Mꮻצ/>ӢETXX(=S5~jΜ9ڱcG׬Yw}W'Oָqj5k^߿_ԥK^m2!!!zB|oɓZ2X5I}ע\Em����j �\8 IԩƪMi5l0 6Zokĉڔ7xCGUƍUXXΝ;`0qVZ_]/^TppF={_JOO˵{n;:w&MTeI]Fc'zm˹p zgm֝={VGQllvܩ'jٲej޼۷oSZ;wN7|4=3z'ʼK#""2oIݩυ]Tݶ ���f�5A\ǍRIIU1sNM<Y1c:Ky_^ z)?&iڴڵk!CwUdd-Z[_}\׼X~CϞ=}#?'OO>џ*'ԢEpB-\Pmڴo2ЫW/q5qZڷo_5kWs>n���P3N�/322iӦzҴf߿_V˖-5x` :TnnJ[}WJLL$}Zzu~A ,PZW[nE'NTF[\\kj:~ԫW/M0Aze2ꫯۻOMM߯~Z~~~_d𔝝YfI?(w[gyFlKuI<{=m߾]vyv\9{4i={jܸq厏gZJ:}5j:wnFm+Ζ""GUaa˗kʒn6M4I5R#(]VXG̙3 ҠA4vXW|hڴ>L)))}h4jҤI:}bcc5w\ 2ĦGqqVZ 6M7ݤ &KNhTΝ>+W:u|}}խ[7;2VzݻW|ڶmgycT֭o~>N4IK.ƍu9uAO>+22RǎS5rHYfGۤ<L=YW}էͪ~7Tȑ#0as-))IQQQYfٝʕ+m61B[v~���W-�u1IU߽{┝m]K<VXK.}/Sqq$ty)++Kv<43fhƌ*,,TӦMuA-[̦ŋ:ufΜݻwu ci֭ڰa<X*I /X'ca>#?^!!!;vl7h@ ,s=g3N:^xAWVQQMkT=TRRX7N}>3M0AVRaa:v쨒mذA>K+Δ""Ț2e}]tI:~-[~zW#R\\_~Y&Mҷ~B5kLzw5aL*{Cewfͬw&M`ɓ'm:xGUL&=z״glR͛7ƍ+!!At͞=[<֬YbuUAW֣>u둘8Yv\2K;G-[L***Җ-[SOɓԟ'?^ 6TJJfΜiWfɹ6sBEh_廨m* <:8?~?89s<͛۷GN/���Jq�נXnnnرc>s\O8W-RNjĉڲeo߮PM:U:tЌ3Wc%ij߾V^m=>>^SLQbb~']wu}ڶm:uꤹs* Zk&I޽{tO?|yxxȼ kIĉ5oe~AZnW\~[mڴkfKH;zWfH>_={1~}6l]sgPgWK0k.~ꫯԸqcI;~Ǐ{jͺ;.H*̟?_֭Sv[+--M_|E9h4ڔ,{tpg| *|@@n>|Xiiiݻ>yFU?Tbb:vwyGAAA\3g$y)**JmڴٳաCh[zԯ_?k;szT6tbEx 8P_}<<<TTT &(--MsQFFV\i=Z`֮]k3mteqj}՗ʾ}~5mT٣uE׹sh]j*9sF>_���x�AWyKG*))Qn:poh֭q/Sg϶λ,SN)::Z4sLkG\O=rrr$ɡJGǎՠAqL}GU}�NMI#"M EPP뢢‚ k!(,I�� �IDAT*`a/T@PC -@BHI\f22~g͹{qs´$-qY�@ii)/_1V^^?XlSL< Ɵ)kZL2gvW�*a{iibFx !hX;9mǏoQ9<iGJ~~>KHR;ljv;uKOOǮ]�ޖ?!!rٞϪ*c$&&6M)--ux/؂Ϛ5K8;(;;_}b1~m �L4 t_�xv?~vsP(pBd2�HMMſo8p �fKڤ'iOasZ}yz㷨m-mmþ_|1vX�ٌ2 =�ꗈ8℈4SfYpu;v S'5:[,aٳg;MbX`4@�v^">I. cիEz{'Fklܸ3fL_'$$ ;;ۡgϞ viZ�u+O7{ZxZ؞ǿ.QQQ#Wme˖-0L5j6'Oc=ywȟ:uadBYY<~F{/ꔿ6:chZ{ gǎ0ׯw{ܛ6mhĝw.]x" \jjjPPPݾϜ9ڂ@s\n <m=ГzjՖ~Z6m� "55SL(,,Ą P(<_"""""ocZ`p7nlقsO>5j.anu{ũCr刋�Nd6w˱Iii)�;wM,;tھg�֎9<�8 Ξ=?NlFuu5� ..!OC%ehkHAAT*+j�FxRwۑ믿�FᲬذ<6_PPfΜ)SߣGfOc;Fnn.FnLZZ EwNl[ݺjK6ޏӧO>:Ϝ9ł: 00v# gջӶ>i=oAc<h_m鷨%mw_}6Bĉ'�aߗ_~ X'x¡\/1pBDtBXsrW~}_~III/t;;BPAVߩ;:.ֹf?2�/uqb2�2ֳgOcz4556|ii)qa�֯~#""�T*,\>\sOO? Zl_Oui9iGۊFAVV�ia̘1N!T`tIIIߜ>u0V~c<3СChX,HOO{��+ZB�M7탞ON՟h4 e۷okI=oAc<'ekZmW'غu+FB!ԗmÇq)s=B~"kLVVF#b)k\ilŘ1c0f={;wݻwѣꫯz 4t|O:ɔJekǎ]u yDyy9$I-Z \ib}X}}}}iӦ&Ʉs"33z… {EEENu{Rƴ| =8?y[xKvT�D"È Oٿ^|fOm*s/7o`]ȵ?_PJ:n;ur۴Gk.ث?z“6W}?fee`0@Pڨ~ޖɖ}\4Ɠz}yz㷨mO_'~-z=y�p |WD:uS y'DD['D\\\;^;ҭ[7t ӦMÓO> lڴ 3fh5I3~:T-,`0usق0Glnr='Obٲe?>nF!zh4�_Y7̄/}]@dѣG8שxR!rןkɓn;uHrόdH$j&\叏o2�ji_t޶B}QϪ^oǏJ .�p~/z^~ޏu4ԠbXXc%mғts~O\wVtUlZh4lذ a`޽>|4q/Q[мMDDW O:!\Go�q�.} �Νm) ulȍ;w5+gĈ(--:ĉؾ}ö:ڷoH*a;0_}NN�kG[l:= iIb =?#�`1vT:.u:Ⱥ7bԨQȎxک]?Suw^KX,>|8ƌje6 Hq1�厊H$loÆ � ~~~ݏ�7ڰaN\ 4X,HHHޗ-i-h'e -jihe{5 ~\x>6DVcڵX,6mrSDDDDDm'DDט:)+,,ŋ+Lsh";rl6 l[+7_ZZJd2tP*NeEFF lݺ!Ç;_΅w܉~iq/_faFuGyy9 g}Vn-88XoՂf͚{iۂRSS駟.^|Wܓ24%s DHII19ulX'pj+QQQZnYYYXjFK;)o^z >,.^cɒ%ZbccasVVVW^yEׯ�jJJ o̜9gUm]Ç㣏>`}ִr ^i=oASܭh_m鷨%OߣRAAAjXn0x`a-pR\\[b#<_""""Su]Cf~ԡcoԨQ>}֭[7azaÆaǎ;w.Ə޽{%%%رcN:Dw}l_YNB߾}ѿǷ%&&B*u)mw5]֓O>^{ WFVV~ GAP4v`R駟vH6��.\(th[N_6'@~~>lق_WF>}b8qBb~رXpM�̝;f'|L$%%A*"-- ?r9^x~~ Auu5|I7Fs/gŋwߡ_~BWC24%s�Caʔ)4iڵkgbƍ0 ?!Lui9mG �K/+W̙3ܹ3cz<Semwعs'�DJB{`` f̘~ZZZWr9Ǝ͛7cҥFll,rrr}v 0�pz/̛7ӦMƍQQQn G?Lza+wǀm6,]YYYh߾=N8T_|Dce7U U<iz/4zjV~Z.Gp9f$'';[cp߾}0N-_"""""ocrt:�/9\G HO>ׯM4 3g΄裏b8|͸q`X'`Ϟ=HIIA>}j*dff6z\W籭iR_~~111�;kX_~ƺupQ 0fL0eGcsI߿?>;_/�vfvmxꩧ |_8{,/_HA?B7ߌC᭷BrrС=w iI\-0ݿL8x 1a„c„ n85jF#}!XXݙ1cfեY[ 227pѣG _f2o<bXv-� 44fBdd$~g wWҥK�L&Ð!C0ggO '>s�UV!-- .@"$$QQQNI={)֓Smh{4<<wr>?rzG߾}*7!"""L"M_E2z+^ "-F1)}/\o{SYYr !::S{(--B@/{T*d21;vgqR())Vo"QZZ2!**eG(JDEE!44a[UU|}}e@2vVƠ 5|X,塦抵MEE N:5kT}ޒ"::ݽJeee u{Ԛm!--Z}[tޣDDDDD÷u۾ҶN;<ɓ'v""jTxxx_JaĈdsWUU!55bwye+CkwAkQ(nu__6eh5Ǖ'wQCD"[tk]v\..~9{?„Ŷ5dCZ[I=Fr[tޣDDDDD.ODDW/KJ,\jcƌAttJHDD:]8℈fœ9sb׮]HLLRɓ'VѳgO<s.&][DDDDDtcǚ5kW_!==ڵ+./L&v1"""""k'DDtU޽;/^buEDDDDD6qBDDDDDDDDDDDT""""""""""": a'DDDDDDDDDDDDu8!""""""""""" QN0pBDDDDDDDDDDDT""""""""""":Ro.?�]V"RR2š 'DD(Ʉ(JhZo+HH$o ]*++k2 "#""""""", L& jjjPTT2#,,ţ6"kLII !ѱcGxHDDDDDDDD^С"##],jø8<5 CBB&DDDDDDDD��???磪E6"klFNNr99g'Dxd2l6{HF1pBDt(--hBgDDDDDDDD H$`@iiCm'DױBJقBoZAee%d2]"""""""6+((2 JE6뚨?je4h4!"""""""j@jL&o @DQy �@&y$DDDDDDDDm\.�zy4p 5u6!"""""""j#NN0pBDDDDDDDDDDDTXIY!vlAIYBDDDDDDDDD&0pBt]'MDFDcq.Q'DDDDDDDDDDDDu8!""""""""""" QNc%eؕ%e. Q uMTDDDDDDDDDD7 @DQyDDDDDDDDDDm'DDt]S*(,,Dhh(bcc]eY,#.UuFDDDDDDDq.""b̙XfbK#{p~\5XgDDDDDDDT'DDt]k߾=틎;z(-& �HB\댈T]DױB;z%!2"!n v*u@uFDDDDDDD1pBt]'kjZJ?999())A@@� """\j̄FADD:vg.//h߾=bccaXP^^LKfUUUd r8Fc4 4C{6j } I60,z-|{A2Y]p2�. %yC,1 aB.NTJX zH@#c֪aV H*"_H`1LYOjBsꌈ/ ]"#1j8ow/bXh=*l8p ~m<fWƺu,X�IIIN穬Drr2?.sӑw}WVQQ}ʕ+UUUǻܶ~z^!mԨQXhWl&č Ź|7M@ȨPdLjuHg"Nߢh\ļ1߃E>O0p$:!KfNbz$!!I ߜUtYw!/{ ^ KfXYx-sg&mN""jR׮]�'ODJJ Ν;I&CPT@lVXM6a:u*"##q)X ,Up 78yqqL8'Nbm �-5tPDEE�80u;\��]'毀_CP#&Bi|�МS6Cw.CUJHC;+)=!�Dg#>}ɓ'*u g Ο�$b�h3ċ{; E9(zZz܌ѓ[TgDDDDDDDt}a�ػw/D"֬Y)((͛zKx 6 aaa={6V^e˖ y.\4t̙bW HHvgdd48BFNOBީu٧ �w8Ed=1߯v ئR@ZLt  ɨ9Ce Ǖ'+,o �0kj"�$:d@ iD e��M!-AC#|{!ҠCGP{pWf]WN`` D"J%fϞh��łѣG;ӧ ;v �p뭷:;hܕ F!c|:4"ƺN^M D0*K9ߍM�@+wt�0V i =�B hT|�`ka(ȆoǓ)p2ƪFN#Nc%e8v2 7JBdDt}DDH$>|x�9 & FEEE�[;]%bc]/:~\1(x a(<ӥ "D"1 #hljI|Xtd. �Sm<+D)y��sǠ/�޷@o+?2sMIpYsG`ye%""""""" uMTDk׮ryt:�@NNJKK">>&IHj#\"yW8 eHnk^r]r&ok7<jL}@�TJ ұ^D29q]*u 1h3[4&eM8K'DDDDDDDD u,2"kzG:]^$�� �IDAT= 1f̘f$lA{555,%R4N:]`7bT֬WmYڣ{8h!i N8S6ìUb4^'H"߶Xoݯވ""""""" u�<�Bm G"��jӶfyrW X䐶n5'��Mldh]D}( t}!P}y~u] Q2dd2n JM`޼yo{Nw^X:- o<AAAH$(((payָxrWID?;O7 XҢFՎZy[a- sCo(� 趱PN(xH[T6"""""""p.""ju>}:>#<S6m5jCnݺw8q,Yx�F6mF'Я_?W_Ÿq`6cf;v N.++�\p!ѳgOtMW4yl" Aԅl�v=&݁>EٚB߶C) PgdQ:U�A'#UEѻBqI#Z\6"""""""0pBDDɓ> .xb 6)ϫdܹ;w� <s]'/^}a߾}:t(1a 8k:ٳ8{#<q$Yd=4=CuZ3}>D �HB;?@_jg=]ן�@$ì".U]@0<Qkc_u;ϸq0n8CV#<< Cnn.J%"## |�JroAAA�ݻw;?sL̜9kEY,ntp t$B$i0K_U ns%ꩥPL\H m%l4L*%$C$/U.A4YD,zu^� n#"""""""j 'DDtEEE5xǻ'((H5^a[GF,<6F L@$$8S\'DDDDDDDDDDDDu8Uy۷Grr2 rՓ!6.\aڼ�=Ÿ&}2aoT]DDDDDDDDDDDDu8!""""""""""" QN0pBDDDDDDDDDDDT""""""""""": a """""""""""RY|h4!Cz|<8!""""""""""RRSdBMM Ned@ U)/?ezn ]jk z|LNdXJoN0pBDDDDDDDDDDDT""""""""""": a'DDDDDDDDDDDDu8!""""""""""" QN0pBDDDDDDDDDDDT""""""""""": a'DDDDDDDDDDDDu8!""""""""""" QN0pBDDDDDDDDDDDT""""""""""": a'DDDDDDDDDDDDu8!""""""""""" QN0pBDDDDDDDDDDDTG]Mtai ixfj/B!!M>8/0НK88 >q]עA_ V ?$!ᐆF�"5^D]|DDDDDm'DDDDDn_2~CfiN!{=4"gK%< E9Ȟ9ACEܿ׻b4? P0݊;\ZNe /*NQg{!M*"8 c-#^Kv׳" <(atdr =Ӗ݊!7Ŵ]gڴi2dM$ $(Ei{$?�'뷭U|?O\W=0 vQ 0۹||ֈ""jT O]pz��z5O_]x1zd/ft3ž[Cb^3z5N^w{(TVEVVnVoANlI ;#��sMK]}[�>z4;5"""""`e`xi'}7sps"ԺhT"�䔜A2P""4*U%(,φF_ⴏJGXj d62h2 Z#o@Xzl/ד<-ԳlB-X~.Vlz!p̧"8ԺFč`#8j4h{el1 2AaڦTG_�;);� ,U5e֡/|d~.˦իYx] "Bb1}^Z,(kJq&fZTJ"a֛ QVVBhkQ*H$vVEff&4 """бcGϹdBuulFdffBբcǎ sqt�jZJ @P "uUVVQQQs^b@T̙30jDFǝki)`֪<trM JXH!h50@,un,0fM-Q!s~wQY $P0tO}^&Uebk0UW@q@0Ljak 2EfՃ;[gh`(4"3Uh��cY!DR$0V^z@$4w5weP|QP?$ jVZ Q!_FDDDD- GD"F'=}Ƿ"f "l}[,_?/>1>Y38K;aXIxR՛Bj[t!/w/b1](Q{[cBǹH$Cfb :<cP*6mNڬ$� i"G+Ī~D|h2/cUuBzh̝ #t\łwoV%+B;{_è.vE.c圝۪j0~QӶ܈&<~ HE yX,t鍏!xb6zkXzåu�b%`H:�K]z^>O�vUv-Bzz6h ,\ǏG^G91Xz5֭[^cb`$%%9_RR|{/F%KHs΅X,ny�`X|9^|E <-ѣGo퐧K,txW#i4?^{Xz~~~صkS<}/n3b6lk\a] yLtZB(\:a>?tئ ih�' ,;z둄W?wzF=}7 !ve(~ybOHW}`(EC<lBF=%3`R׽;D"?QO/ou OXYE@g0"< 妏Ύw"=~U!}UOSR!mp/</o=U{@g4 !~X6q�۱UHDDDDM QDYW;~Z;_Ncq A.P ltW>CgS0y{d�"9xk&c͂¾ Q=g /:�H�ˆG<1Er;*syظ#􈿹MM=vc­iN\rč 0Z~%4~"q&ic`{>e%F<Q.>O~| "-%K64>3XL 6Rӷ]RgMaӾ1HL{!"C;TΟX9,d"V=^|{R?Đbx߉vW#n<ꫯ"==#G<�???_-bFm[b6mڄbԩĩSb ,X�V 7puOo߾(**{g7G=zt�]v�<y)))8w&M:@R!4ԹcW^C0yd}uZ={O?Err2֬Y#dddd`Æ 2dt-  铊W<妏8p$".44D琷`"V~MET(~[F#hmXLF6^_ qHWP O΋{67<h'f6N@K RPmR. L�A"j �}9;?ob/k4֙'<קA&@3aVPk/{yBy=�V̇EA?b7>2Ϛ}/Ōۺa7@5,<Y_7u oDdW~ǔS;#s=.""""60pBDD-r*O�@Cmz"Yp�Zl wa}􄻓qNdB^Yp\z+%gqKkFW ?�aTFNIBb]dڷg�k``aѧ] N||| ˝o'yU89Ld¶߿DBTO/ K��W|Y+8)(?~}czc錍BNQ=S޼w'"PsBdXg3p5Ur֡lxE75c fg$Vo{ ˞,p^JRNz>2_lH10:]+8rt邗_~Y2^ٳ])((͛zK 6 aaa={6V^e˖ yl%K0tPk$&`0`ѢE8xCē�ڻw/D"֬Y0b>Z ɄAa֬YBzBB8 ǕH$=z4|||a$&&:|ZZCII/8o] <(L% ifDlCVB{ :�iD ,t節o*dBu;8}^]" %yOE! i.لg߅_3-EP�>yΈSt@QN<3yp= Q7CB_(xq9Ư~3�E0 9ϚNWc" NJvjǿ؋s*—ggT(xvH:#Mw؁׷e G4Zw8}�qq@PD"(UXF&�4 M=ŗ'=�9:_:�E0ȝ7hQP> ΋L)v(jS_xzյB��w�p "Bcq:7 ڋvobqSTlx BZ\^k#IF{�Bk.]mX,ȏ>igL*yz//'O�nVu6&N0}?z>} ::iii0 ',,LFTUUymZĢE �?V\r[N 4WK%q]\?Ħf6bA臝+3莨M^�b@tx}-> QrWMt:tC0V;W Yd]*}:[ۧ4YSG!cѹ71f[_qJsyZgrz�q:N yWky딆cz92x|wS�oN&6$D 6i帨5 ط0pBDDͲVL]j2UgРX Qxc:NxHH X7Mh93ig~AiU>t LfrJ��,o\DWHRZ=Wp E;;9e`6iź��fc{%ka_ �¢+�B !.1E@Gk el͗^ڋ N3M0 (xE7!-r�@ddӶN:̓�8r***L&F!>>a[ll~~ֵcF:<6-D"qB1f{EZZJKK`2�x%uvF hEQ  '"}Eo΂&";ljI|Xtd.i# >mA IݴPBO>#a,+h;5\&<s�N.mMne-�S@m -Yf{zWE0 ȮPp]M8!"f|Qb=; Dηܿ|킣 5ޠh^(B;o!i�DZ aT8E!!1xx3Xd(kʐ]INJ[򕤬9a6V�mFg\._ަt � 8|r+T/`�z]`St:�@NNJKK">>&i[Cy�]v˛s^ѣP(۷/bbb JRT*]憴Z.'<ks2`(u~ž^Ȱ (ykt}6ț?GB�C IH*QQ\/��&p]�`ߔܹ֙u5ƶB֟TfOz-ݶՎ""jGɟmo9G3bPQxswNy:E@ʱH9? ^$uDNlCiՈm-}4_k-R.6M}N*rR9ycMiz#U8m?uM@u1ft@inf˖-8z( 7|!ߒ%KRu ۚ ts3aQ{T| CڲG"p(ĽW%3r~wzʬs~_@:s;c <s mo]Cktr\] -=ط<*DDD?��ol,p^�99t.Oouv<K롴Z@wݹZye #"$=:& Q*rX,P|R "8屍Ʃo_!f�IݗjsVǭ62(uڊO>|eΝ;.,9]y8qS%33Uqu+7q+a*wWs 8i]Mw ـ䐶o-3SEk]8sz tx Nk/j%zibׁݞQa�E#,k>D.G]m8!"6&艟tѱ A.űo=3SQTx-{ڵk/kL٣X,xb_~}%7m)^@.4> KϯlNd_z@�� �IDAT"A"S>v2Iz3Ԏs]-}tV9un*7~b)))LWTT`ӦM. 22 [nJh47oXQ?ΟlS{WZ<4^dr(~y6kj;>T|<kE/ iXYצ:;"aV;;Zyb,h[ID?;O7 4Niz2Fڷ<;�jߏN;yN �'FߤBwc$b3ZwN棼F{z68ՆSuQpSٱ>Sa|כstㅅ;E��o T{,,2#]'N\?و H?&&6aߨx<r<|{|2S'B/#73['2,zxs߿ 2 ]oA,`΄7Ȥr:ig~?ql6aǟ_{w]{KKӤM{ -@ x@Am07u<;p& /8P!0V11 "*P)zM/~B&Mʞ#${\.o,{xd[\ sgo_iͳ|͒,eYv8I2wR5:{`qdђkɱOqG?qĜq[hѢmoKWWWsUW ا1-ʕW^s9' .̴iӲ|,^8K.iٸq9|5\{]wݕ:+]w]~eڴin>wTUU{^2cƌfʕ9csqs2yEy 3eᅩ6+˗dҾ?{˦<wT363/z>)7|9/^L_Sk.IE]}*jǥȦIgB6TM7T9'+/L>t|&kSI~n׏}QܨɇŏqGC^:yGeaoL/Ϫ/~,g,JOWg6߃{Q7獳'ko4|H:=KR.Ρ'eVw?3|^Iٲsѷ\7��N�N>y|r󏿚O_ICg>4̓QnheQrPT-o{)堙Gdٳ/<g_x*Pלc矚3'9]Iئ6~]IR#瞐s{Y2]i7)7|^A3Eg}=;y>z_'-?m(UmGn.sEs=4ѾR_טko|.7HL?<8'yƐg҄9}Wo}:r(Ҹ_:mCrO|>}zs=>}z*|pꪔJ,X ks-3gN.䒜xC2qO>9?xn|ӟNz衹RWWo=v[|tM}M4)~\wu}˧L:jDewMZp^7k?g/x\3w?yե?wcoEeCwů.uG9ްƟ4?y~w=̺۩kgmf˃?7%t|!?益~7 x-ܝ-sN]$~s};^o<%3/:OД;3Z]ܕ[vS|Kִwu3:*Mck?E'IJ䄹Ss{Anv'��ǞT-^TU =nƜvwp^ZZZdɒ̘1##==ھ%k6HC]S&ַ'[7~lcHMU떥5'HC]Ӡ[~EmJsÔ45Ly7oݐVe>Z~EoNs4OcYiU::X?iH/3K.g-V^[yX8YfM2qľ===ټysSQ1g\.gڵLcccߍ_zvG)oݜ1SS8rtYʆ{T7&;xqG-{IUٞsRyحsӾ|I7MՔR5}k$,YRֶgn>垞,[ג̘P:7�M7nʕ+3o޼ػn~o5k1r?OOgO,X$I[5I'�*ckiX^*2yFo(Ud9ߴYvꚆ=ձ펊Li7 wuW}ќyo<IrAgmoڴi~ qƎ8`Rw***2eʫǼlwTMsq9`ΔJ?D;{/EUQꙻfW sS3{^2{0 j7uBMݵ}*J̙&�� '��`ݺu馛OsͤI裏R]]w#=D���`�apgfժU[p¾MMM 2s���3 �0(J???O?͛79OUUH)3/T6ڥF���CO8�F&L춊ںL8#=!Z;��`U�������F ����� �����������p�����PN������ �����@A8�����('������1#=��`ޚ3yH'[6cٓ4=US}uC<;ԣߔ!&}i����F>(KjNZx +}weg>캡|;W-39) ';b��q.�F ka 751IRиm?YGz:;YG癏}HSw19+_~|agyogv5OutW^6<}݃g0i��� 8`TikkO??~WEredj٘eOУ)}7~h3n|xsҰ3tu}c\2Ugt})m3s׺i_D>}��@8`TɆ dɒ崵e}KRv[[[.]L<9gNTݦMՕg̘ #q޿ο/mMڒ3R3{~l$[RڒISsIޟ([3됴=P:I}]9֖۶r|sJc$˗sͳ7>c|q쪎N׺3yFg8JU۾<{5 ���CA8`Thmm}M7妛^رcsw د\.ꫯ7ttt-1cF?s1뮻/})~=s?466kIuunkOU~0S΋W_;W80ssc xQrUz0fLĥ۫.BHǪe{ ;ݮc$Iy}v\^˟Ȍ4y,G~ҷ~ܱfV֯s}xs&/hPk$U5>p��`( '� 555 Oo 'N:of$_[n%{l>L:5/sUW]y^~3=yO~vmyӛޔO<1Iݝ/8]]]g?qѸTEm? 5Z}'LfdÓWݙyG qcե?LЧS9qjږ<Ugyq3SxzCHe}^ƴ=4p~y*'LL=:ڃL>_ti4OSAڼ!c' y=مi:O{Iyl}qV_zΠ/Un Sڅ'��$�0*TVVOOMMMn̙3'~+[oͬY/~/bxijj?\}չKO~2K,va<yr<?r˗[ڝq /5:{Itvpێ ~-5_AU83cdO W_Y޺簫ڟe6~SsaSLԿk'lpұe/^}q:V-KŸLOWg֮RAIw;)r5?ݥKh F'vQ-{yo>gzqy0v5 ���#i_,�=ܓ~f~q>}zxtvv[WWW~%\Gy$7pCN9唜q{vz23u_nF<oO-|7?MzTM-0=; /i=ML? }c{ݛR5yfZx -ژgM2+%I:]UR=lIOO^Ke}cR*k y4I?'IwXp^}3M~5Jv5 ���#Ɍ�Y>lκuNWWWVZYf[7gΜ{_9sf>Oqʸ#ܝ&h}Zzuw3Fé㹥Ip}XL%[&Ug8rRSX|ҽus:W nKR"tU7qq 2dWq��� }V{n/_</€5kVw'+"---y[ߚap{ݛ2/oYmᤧ5IҶt܀uۂIw ۶&IJ5cwwyv{KCr)wvQwOҶh}8s3qZ*k4mG?Ko{���B8`{Ex١W/|![ns7_{):<kG_E]Cڲ=[-Ȩ=/-?^:<-8Hj1MSН}7R]{z.yL'IepAlhLa;���0\d}ܹs$<̫l9-ܒ+/9g>70GڹKM큇%Iڟ==i[DJcRAV[Sny)喗!WL-ݑMwۓ$xr<tW֮J&sncLtZ6`]۲'Ϳshh‘�� �0F 'pBrmeֵ7WWyЇ> & /s\.ѸFޝRUu6vm7o跮ܺ%+{O}Fflo}OJyo {Կ;ԊOn|<ѷzglb$xJx:/I̹nz'2^mwDMyّr떔[^J\ ���Ku0̝;7UUU̘1#Yre=wq}666fѢE+s9d…6mZ/_ŋgҥ9=-[rE&]tQ*7>,X 7pC|qf2yEy 3eᅩ6+˗dҾ?Lۯc$Iۓ,>)~6+?x^y33OeLl}gYrL%Ωޚ+I2qyIGoq{3SQSr9[~O;sU<;*c{cZyV}ci<cQz:֯2k ?-<���`4N�U&M??W\qESLQG5` >^{m.s%\O<^zi|s˔)S[hQz|_G7 =l҂21/^<{ˑfqÀ}O;K}o>I2~& MY/kR)<!ν,~ΎTM?~, ^儉ߜMS}LK3wc=9]~s};^o<%3/:OД;xl���џdV-^TU;X nƜvi;v|~/N---YdIf̘=r֮]466^:[nMss=3ѬsnΘ橩l4yYUޚ1gi&kR}4keok_$צj~>{��lܸ1+W̼yR__?an~o5k1r?OOgO,X$I[5I'�JfiӦ h^;ͪ!XEEgԦ[3&=gv.V3{^2���ߙ�֖=PT֍p�����guZqǜH���xp.�`U3uo0���3N������ �����@A8�����('����������� �����������p�����PN������ �^[gwk<¦ ����q �-9#C#=����^�����p�����P3�`߱+ܐ̘0.NH4pr9붴jLj]Σo֎̛:!Sj_8O97fF8a����N�xU\|"m}ؐxq9y~?aK7{ɿܓ5[$R;&Q]lnyΔ\#����e �ꓷܟɒ:F.#_ܿ|m>y9k?̝9j*] _<<Y%ʻѳ&f;'[G:/ۺsM?۫ ���_ �k7k,!S&}QdfLiͩ{.#ܷO)f<b]n\xR~$OoL{Ww>'V 'O~)?ժs.{| ���ߝsI>ṕ}ѤכLWUھhșfo=^$y x3G�����e �wO[.e7)эl?X%IrA<����{p+j-n܆U!S&3`]Olѕ$3🦚1~���� �h|mUua;Nmն85`ݦa;.����l=N�xEє$zuIe X0����z '�wnTȵ= [ޕ\yS$ų~}g���`0�^Ѥ\Μ~G#ϭ7|&'_`Lns8{Ryn}>͟r3/f ?I()=x����Jq:XWh͝}ޘg35$ǹCo+ݷ4ݷ4Irʼoɡߚ!9����p,<,<X%;3al&xƺlvnj؝\{?,YRֶgnO����CI8`j7ǘ7uBM�����q�����PN������ �����@A8�����('����������� ������� (IDAT������p�����PN������ �����@A8x (JI ���J{*=5`̘1I ���ՕT`{ k@UUUJRGz(����^GGGJRFz(B k@EEEҒr<���rZZZА o3WkDsssaÆ ���~twwy(%�F477gرy6���uڲvڌ;V8a׈R9sT*eŊimm!���YbEP`Gא̝;7IlٲY&]]]#<*���ٙ5kdٲeIs禶vdŨ6f�jhhbŊ[.֭Kmmmjjj%���FOOO.i>~̚5+555#<2F;5&|pZZZaÆlڴ)7oN\���Δ)SԔ5����.p�����p�����PN������ �����@A8�����('����������� �����������p�����PN������ �����@A8�����('����������� �����������p�����PN������ �����@A8�����('����������� �����������p�����J.- �����'7np�����fߎ!������6~SYY6~w1 ������45~(Mf�����������p�����PN������ �����@A8�����('����������� �����������p�����PN������ �����@A8�����('����������� �����������p�����PN������ �����@A8�����('����������� �����������p�����PN������ �����@A8�����('����������� �����������p�����PN������ �����@A8�����('����������� �����������p�����PN������ �����@A8�����('����������� �����������p�����PN������ �����@A8�����('����������� �����������p�����PN������ �����@A8�����('����������� �����������p�����PN������ �����@A8�����('����������� �����������p�����PN������ �����@A8�����('����������� �����������p�����PN������ �����@A8�����('����������� �����������p�����PN������ �����@A8�����('����������� �����������p�����PN������ �����@A8�����('����������� �����������p�����PN������ �����@A8�����('����������� �����������p�����PN������ �����@A8�����('����������� �����������p�����PN������ �����@A8�����('����������� �����������p�����PN������ �����@A8�����('����������� �����������p�����PN������ �����@A8�����('����������� �����������p�����PN������ �����@A8�����('����������� �����������p�����PN������ �����@A8�����('����������� �����������p�����PN������ �����@A8�����('����������� �����������p�����PN������ �����@A8�����('����������� �����������p�����PN������ �����@A8�����('�����������pR[S7E;s����=?,6$F>;la=?~şoq����Cw޷=`P4<=`jl/����}o'ڙNR.>zvc$M2vϽ_뫆$������Xg$mGkѶ8ɶҝmե3Ie^-=r�����}AW$yyI̓dǗꝎR.v,v>td_�����ѨwHGœ/wŏ&q4 *������;뤷8Q4LR1|c�����RݣcflMIE�����`QNֱ]queG�����z{eϯ8g-@�����`_ !;A~�����WdJ>Lp����IENDB`������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/examples/sample-banner.svg�����������������������������������������������0000664�0000000�0000000�00000037043�14163570564�0022656�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 900 371"> <g transform="translate(0,-681.36218)"> <g> <g fill="#ea482f"> <path d="m398.43823 888.94055 6.25196 1.5791c-1.3106 5.13478-3.67387 9.05567-7.08985 11.7627-3.39456 2.68555-7.55179 4.02832-12.47168 4.02832-5.09182 0-9.2383-1.03125-12.43945-3.09375-3.1797-2.08398-5.60743-5.09179-7.2832-9.02344-1.65431-3.93162-2.48145-8.1533-2.48145-12.66504 0-4.91989 0.93457-9.20602 2.80371-12.8584 1.89062-3.67378 4.56542-6.45601 8.02442-8.34668 3.48045-1.91206 7.30466-2.86811 11.47265-2.86816 4.72653 0.00005 8.70114 1.20317 11.92383 3.60938 3.22262 2.40629 5.46773 5.79007 6.73535 10.15136l-6.15527 1.4502c-1.09574-3.43747-2.68558-5.94039-4.76953-7.50879-2.08402-1.56832-4.70511-2.3525-7.86328-2.35254-3.63089 0.00004-6.67092 0.87016-9.12012 2.61035-2.42775 1.74027-4.13576 4.08207-5.12403 7.02539-0.98829 2.92191-1.48243 5.94046-1.48242 9.05567-0.00001 4.01759 0.58007 7.53029 1.74024 10.53808 1.18163 2.98634 3.0078 5.22071 5.47851 6.70313 2.47069 1.48242 5.14549 2.22363 8.02442 2.22363 3.50192 0 6.46676-1.00976 8.89453-3.0293 2.4277-2.01952 4.07125-5.01659 4.93066-8.99121"/> <path d="m410.52319 882.49524c0-7.84177 2.10547-13.97555 6.31641-18.40137 4.21092-4.44722 9.64646-6.67085 16.30664-6.6709 4.3613 0.00005 8.29293 1.04204 11.79492 3.12598 3.50191 2.08403 6.16597 4.99516 7.99219 8.7334 1.84761 3.71683 2.77144 7.9385 2.77148 12.66504-0.00004 4.79103-0.96684 9.07716-2.90039 12.8584-1.93363 3.78125-4.67289 6.64941-8.21777 8.60449-3.54496 1.93359-7.36917 2.90039-11.47266 2.90039-4.44728 0-8.42189-1.07422-11.92382-3.22266-3.50197-2.14843-6.15529-5.08104-7.95997-8.79785-1.80469-3.71678-2.70703-7.64842-2.70703-11.79492m6.44532 0.0967c-0.00001 5.69338 1.52538 10.18361 4.57617 13.4707 3.07225 3.26563 6.91795 4.89844 11.53711 4.89844 4.70504 0 8.57223-1.65429 11.60156-4.96289 3.05074-3.30858 4.57613-8.00291 4.57617-14.08301-0.00004-3.84567-0.65531-7.19723-1.96582-10.05469-1.2891-2.87887-3.19047-5.1025-5.7041-6.67089-2.49222-1.58981-5.29593-2.38473-8.41113-2.38477-4.42581 0.00004-8.23928 1.52543-11.44043 4.57617-3.1797 3.02933-4.76954 8.09964-4.76953 15.21094"/> <path d="m463.53589 905.505v-47.24414h9.41015l11.18262 33.45118c1.03123 3.11524 1.78318 5.44629 2.25586 6.99316 0.53708-1.71874 1.37497-4.24315 2.51367-7.57324l11.31153-32.8711h8.41113v47.24414h-6.02637v-39.54199l-13.72851 39.54199h-5.63965l-13.66406-40.21875v40.21875h-6.02637"/> <path d="m518.77222 905.505v-47.24414h17.82129c3.13669 0.00005 5.53219 0.15044 7.18652 0.45118 2.32028 0.38676 4.26461 1.12797 5.83301 2.22363 1.56832 1.07426 2.82515 2.58891 3.7705 4.54394 0.96676 1.95512 1.45016 4.10356 1.4502 6.44532-0.00004 4.0176-1.27836 7.42287-3.83496 10.21582-2.55668 2.7715-7.17581 4.15724-13.85742 4.15722h-12.11719v19.20703h-6.25195m6.25195-24.78222h12.21387c4.03903 0.00002 6.90719-0.75193 8.60449-2.25586 1.69723-1.50388 2.54586-3.62009 2.5459-6.34863-0.00004-1.97653-0.50492-3.66305-1.51465-5.05957-0.98831-1.41793-2.29886-2.3525-3.93164-2.80372-1.05276-0.27925-2.9971-0.4189-5.83301-0.41894h-12.08496v16.88672"/> <path d="m552.77124 905.505 18.14355-47.24414h6.73536l19.33593 47.24414h-7.12207l-5.51074-14.30859h-19.75488l-5.18848 14.30859h-6.63867m13.63184-19.40039h16.0166l-4.93067-13.08398c-1.50393-3.97457-2.62111-7.24019-3.35156-9.79688-0.60158 3.02934-1.45021 6.03715-2.5459 9.02344l-5.18847 13.85742"/> <path d="m601.9812 905.505v-47.24414h6.41309l24.81445 37.09278v-37.09278h5.99414v47.24414h-6.41309l-24.81445-37.125v37.125h-5.99414"/> <path d="m663.05054 905.505v-20.01269l-18.20801-27.23145h7.60547l9.31347 14.24414c1.71874 2.6641 3.31932 5.32816 4.80176 7.99219 1.41795-2.47067 3.1367-5.2529 5.15625-8.34668l9.15235-13.88965h7.2832l-18.85254 27.23145v20.01269h-6.25195"/> </g> <g> <path d="m712.06714 905.505v-47.24414h6.41308l24.81446 37.09278v-37.09278h5.99414v47.24414h-6.41309l-24.81445-37.125v37.125h-5.99414"/> <path d="m754.63843 905.505 18.14355-47.24414h6.73535l19.33594 47.24414h-7.12207l-5.51074-14.30859h-19.75488l-5.18848 14.30859h-6.63867m13.63183-19.40039h16.01661l-4.93067-13.08398c-1.50393-3.97457-2.62111-7.24019-3.35156-9.79688-0.60158 3.02934-1.45022 6.03715-2.5459 9.02344l-5.18848 13.85742"/> <path d="m803.71948 905.505v-47.24414h9.41016l11.18262 33.45118c1.03122 3.11524 1.78317 5.44629 2.25586 6.99316 0.53708-1.71874 1.37497-4.24315 2.51367-7.57324l11.31152-32.8711h8.41113v47.24414h-6.02636v-39.54199l-13.72852 39.54199h-5.63965l-13.66406-40.21875v40.21875h-6.02637"/> <path d="m859.08472 905.505v-47.24414h34.16015v5.5752h-27.9082v14.46973h26.13574v5.54296h-26.13574v16.08106h29.00391v5.57519h-35.25586"/> </g> </g> <g> <path d="m528.44257 846.06836 2.03662 0.5144c-0.42694 1.6727-1.19679 2.94996-2.30957 3.83179-1.10581 0.87484-2.46006 1.31226-4.06275 1.31226-1.6587 0-3.00944-0.33594-4.05224-1.00782-1.03581-0.67887-1.82667-1.65868-2.37256-2.93945-0.5389-1.28076-0.80835-2.656-0.80835-4.12573 0-1.60269 0.30444-2.99893 0.91333-4.18872 0.61588-1.19677 1.48722-2.1031 2.61401-2.719 1.13379-0.62287 2.37955-0.93431 3.73731-0.93432 1.5397 0.00001 2.83446 0.39194 3.88427 1.17578 1.0498 0.78387 1.78116 1.88616 2.1941 3.30688l-2.00513 0.47242c-0.35695-1.11978-0.87485-1.93513-1.55371-2.44605-0.67889-0.51089-1.53273-0.76634-2.56153-0.76636-1.18278 0.00002-2.1731 0.28346-2.97094 0.85035-0.79086 0.5669-1.34726 1.32976-1.66919 2.28857-0.32195 0.95183-0.48292 1.93515-0.48291 2.94995-0.00001 1.30876 0.18896 2.45305 0.56689 3.43286 0.38493 0.97282 0.97982 1.70069 1.78467 2.1836 0.80484 0.48291 1.67618 0.72436 2.61401 0.72436 1.14078 0 2.1066-0.32894 2.89746-0.98682 0.79085-0.65787 1.32625-1.63419 1.60621-2.92895"/> <path d="m532.37933 843.96875c0-2.55451 0.68587-4.55264 2.05762-5.99438 1.37174-1.44872 3.14241-2.17308 5.31201-2.1731 1.42073 0.00002 2.70149 0.33945 3.84229 1.01831 1.14077 0.67889 2.00861 1.62721 2.60351 2.84497 0.60188 1.21079 0.90282 2.58603 0.90284 4.12573-0.00002 1.56072-0.31496 2.95696-0.94483 4.18872-0.6299 1.23178-1.52223 2.1661-2.677 2.80298-1.1548 0.62989-2.40056 0.94483-3.73731 0.94483-1.44873 0-2.74349-0.34994-3.88427-1.04981-1.14079-0.69987-2.00513-1.65519-2.59302-2.86596s-0.88184-2.49154-0.88184-3.84229m2.09961 0.0315c0 1.85466 0.49691 3.31739 1.49073 4.38819 1.0008 1.0638 2.25357 1.5957 3.7583 1.5957 1.5327 0 2.79247-0.5389 3.77929-1.6167 0.99381-1.07779 1.49071-2.60701 1.49073-4.58764-0.00002-1.25276-0.21348-2.34456-0.64039-3.2754-0.41993-0.93781-1.03931-1.66217-1.85815-2.17309-0.81186-0.51789-1.72519-0.77684-2.73999-0.77686-1.44174 0.00002-2.68401 0.49692-3.72681 1.49073-1.03581 0.98682-1.55371 2.63851-1.55371 4.95507"/> <path d="m549.64862 851.46436v-15.39014h3.06543l3.64282 10.89697c0.33593 1.01482 0.58089 1.77417 0.73487 2.27808 0.17495-0.5599 0.4479-1.38224 0.81884-2.46704l3.68482-10.70801h2.73999v15.39014h-1.96314v-12.88111l-4.47216 12.88111h-1.83716l-4.45117-13.10157v13.10157h-1.96314"/> <path d="m567.64227 851.46436v-15.39014h5.80542c1.0218 0.00001 1.80216 0.049 2.34107 0.14697 0.75585 0.12599 1.38923 0.36745 1.90014 0.72437 0.5109 0.34995 0.92032 0.84335 1.22828 1.48022 0.31492 0.6369 0.47239 1.33676 0.47241 2.09961-0.00002 1.30877-0.41644 2.41806-1.24927 3.32788-0.83286 0.90284-2.33758 1.35426-4.51416 1.35425h-3.94727v6.25684h-2.03662m2.03662-8.073h3.97876c1.31575 0.00001 2.25008-0.24495 2.80298-0.73487 0.55289-0.4899 0.82934-1.17927 0.82935-2.06811-0.00001-0.64387-0.16448-1.19327-0.49341-1.64819-0.32195-0.46191-0.74887-0.76635-1.28076-0.91333-0.34295-0.091-0.97633-0.13647-1.90015-0.13648h-3.93677v5.50098"/> <path d="m578.71771 851.46436 5.9104-15.39014h2.19409l6.29883 15.39014h-2.32007l-1.79516-4.66114h-6.4353l-1.69019 4.66114h-2.1626m4.44068-6.31983h5.21753l-1.60621-4.26221c-0.48991-1.29474-0.85384-2.35854-1.09179-3.1914-0.19597 0.98683-0.47242 1.96664-0.82935 2.93945l-1.69018 4.51416"/> <path d="m594.74823 851.46436v-15.39014h2.08911l8.0835 12.08325v-12.08325h1.95263v15.39014h-2.08911l-8.08349-12.09375v12.09375h-1.95264"/> <path d="m614.64203 851.46436v-6.51929l-5.9314-8.87085h2.47754l3.03394 4.64014c0.55989 0.86784 1.08129 1.73568 1.56421 2.60351 0.4619-0.80484 1.0218-1.71117 1.67968-2.71899l2.98145-4.52466h2.37256l-6.14136 8.87085v6.51929h-2.03662"/> <path d="m629.55975 846.51978 1.92115-0.16797c0.091 0.76986 0.30094 1.40324 0.62988 1.90014 0.33593 0.48991 0.85384 0.88884 1.55371 1.19678 0.69986 0.30095 1.48722 0.45142 2.36206 0.45142 0.77685 0 1.46272-0.11548 2.05762-0.34644 0.59488-0.23095 1.03579-0.5459 1.32275-0.94482 0.29394-0.40592 0.44091-0.84684 0.44092-1.32276-0.00001-0.4829-0.13999-0.90282-0.41992-1.25976-0.27996-0.36393-0.74187-0.66837-1.38574-0.91333-0.41294-0.16097-1.32627-0.40942-2.73999-0.74536-1.41375-0.34293-2.40406-0.66487-2.97095-0.96582-0.73487-0.38492-1.28427-0.86084-1.6482-1.42774-0.35693-0.57388-0.5354-1.21426-0.5354-1.92114 0-0.77684 0.22046-1.50121 0.66138-2.1731 0.44092-0.67886 1.0848-1.19326 1.93164-1.54321 0.84684-0.34992 1.78816-0.52489 2.82398-0.5249 1.14078 0.00001 2.14509 0.18548 3.01294 0.55639 0.87482 0.36395 1.5467 0.90285 2.01562 1.6167 0.4689 0.71388 0.72085 1.52223 0.75586 2.42505l-1.95264 0.14697c-0.10499-0.9728-0.46192-1.70766-1.0708-2.20459-0.60189-0.49689-1.49423-0.74534-2.677-0.74536-1.23178 0.00002-2.13111 0.22747-2.698 0.68238-0.5599 0.44793-0.83984 0.99032-0.83984 1.62719 0 0.55291 0.19946 1.00783 0.59839 1.36475 0.39192 0.35694 1.41373 0.72437 3.06543 1.10229 1.65868 0.37094 2.79597 0.69638 3.41186 0.97632 0.89582 0.41293 1.5572 0.93784 1.98413 1.57471 0.42691 0.62989 0.64037 1.35775 0.64038 2.18359-0.00001 0.81886-0.23447 1.59221-0.70337 2.32007-0.46892 0.72087-1.14429 1.28426-2.02612 1.69019-0.87484 0.39892-1.86166 0.59839-2.96045 0.59839-1.39274 0-2.56153-0.20297-3.50634-0.60889-0.93783-0.40592-1.6762-1.01481-2.21509-1.82666-0.53191-0.81884-0.81185-1.74267-0.83985-2.77148"/> <path d="m644.52997 851.46436v-15.39014h2.03662v13.57397h7.57959v1.81617h-9.61621"/> <path d="m655.96234 843.96875c0-2.55451 0.68587-4.55264 2.05762-5.99438 1.37174-1.44872 3.14241-2.17308 5.31201-2.1731 1.42073 0.00002 2.70149 0.33945 3.84229 1.01831 1.14077 0.67889 2.00861 1.62721 2.60351 2.84497 0.60187 1.21079 0.90282 2.58603 0.90283 4.12573-0.00001 1.56072-0.31495 2.95696-0.94482 4.18872-0.6299 1.23178-1.52223 2.1661-2.677 2.80298-1.1548 0.62989-2.40057 0.94483-3.73731 0.94483-1.44874 0-2.74349-0.34994-3.88428-1.04981s-2.00512-1.65519-2.59301-2.86596-0.88184-2.49154-0.88184-3.84229m2.09961 0.0315c0 1.85466 0.4969 3.31739 1.49072 4.38819 1.00081 1.0638 2.25358 1.5957 3.7583 1.5957 1.53271 0 2.79247-0.5389 3.7793-1.6167 0.9938-1.07779 1.49071-2.60701 1.49072-4.58764-0.00001-1.25276-0.21347-2.34456-0.64038-3.2754-0.41993-0.93781-1.03932-1.66217-1.85815-2.17309-0.81186-0.51789-1.72519-0.77684-2.73999-0.77686-1.44174 0.00002-2.68401 0.49692-3.72681 1.49073-1.03581 0.98682-1.55371 2.63851-1.55371 4.95507"/> <path d="m680.49628 845.42798v-1.80567l6.51928-0.0105v5.71093c-1.00082 0.79786-2.03313 1.39974-3.09692 1.80567-1.06381 0.39892-2.15561 0.59839-3.27539 0.59839-1.51173 0-2.88697-0.32194-4.12573-0.96582-1.23178-0.65088-2.1626-1.58871-2.79248-2.81348-0.62989-1.22477-0.94483-2.59301-0.94483-4.10474 0-1.49771 0.31144-2.89395 0.93433-4.18872 0.62988-1.30174 1.53271-2.26756 2.70849-2.89746 1.17578-0.62987 2.53003-0.94481 4.06275-0.94482 1.11278 0.00001 2.11709 0.18198 3.01294 0.5459 0.90282 0.35694 1.60969 0.85735 2.1206 1.50122 0.51089 0.64389 0.89932 1.48373 1.16529 2.51953l-1.83716 0.5039c-0.23097-0.78384-0.51792-1.39972-0.86084-1.84765-0.34295-0.44791-0.83286-0.80484-1.46973-1.0708-0.63689-0.27294-1.34376-0.40941-2.1206-0.40943-0.93084 0.00002-1.73569 0.14349-2.41455 0.43042-0.67888 0.27996-1.22828 0.6509-1.6482 1.1128-0.41292 0.46192-0.73486 0.96933-0.96582 1.52221-0.39193 0.95184-0.58789 1.98414-0.58789 3.09693 0 1.37175 0.23445 2.51953 0.70337 3.44336 0.47591 0.92383 1.16528 1.6097 2.06812 2.05761 0.90282 0.44792 1.86164 0.67188 2.87646 0.67188 0.88183 0 1.74267-0.16797 2.58252-0.50391 0.83983-0.34293 1.47671-0.70686 1.91065-1.09179v-2.86597h-4.52466"/> <path d="m688.31732 851.46436 5.9104-15.39014h2.19409l6.29883 15.39014h-2.32007l-1.79516-4.66114h-6.43531l-1.69018 4.66114h-2.1626m4.44068-6.31983h5.21752l-1.6062-4.26221c-0.48991-1.29474-0.85384-2.35854-1.09179-3.1914-0.19597 0.98683-0.47242 1.96664-0.82935 2.93945l-1.69018 4.51416"/> <path d="m704.34784 851.46436v-15.39014h2.08911l8.0835 12.08325v-12.08325h1.95263v15.39014h-2.08911l-8.08349-12.09375v12.09375h-1.95264"/> <path d="m724.21014 851.72681 4.46167-15.91504h1.51172l-4.45117 15.91504h-1.52222"/> <path d="m741.33246 851.46436v-13.57398h-5.07056v-1.81616h12.19873v1.81616h-5.09155v13.57398h-2.03662"/> <path d="m747.27435 851.46436 5.9104-15.39014h2.1941l6.29882 15.39014h-2.32007l-1.79516-4.66114h-6.4353l-1.69019 4.66114h-2.1626m4.44068-6.31983h5.21753l-1.60621-4.26221c-0.48991-1.29474-0.85384-2.35854-1.09179-3.1914-0.19597 0.98683-0.47242 1.96664-0.82935 2.93945l-1.69018 4.51416"/> <path d="m770.52753 845.42798v-1.80567l6.51928-0.0105v5.71093c-1.00082 0.79786-2.03313 1.39974-3.09692 1.80567-1.06381 0.39892-2.15561 0.59839-3.27539 0.59839-1.51173 0-2.88697-0.32194-4.12573-0.96582-1.23178-0.65088-2.1626-1.58871-2.79248-2.81348-0.62989-1.22477-0.94483-2.59301-0.94483-4.10474 0-1.49771 0.31144-2.89395 0.93433-4.18872 0.62988-1.30174 1.53271-2.26756 2.70849-2.89746 1.17578-0.62987 2.53003-0.94481 4.06275-0.94482 1.11278 0.00001 2.11709 0.18198 3.01294 0.5459 0.90282 0.35694 1.60969 0.85735 2.1206 1.50122 0.51089 0.64389 0.89932 1.48373 1.16529 2.51953l-1.83716 0.5039c-0.23097-0.78384-0.51792-1.39972-0.86084-1.84765-0.34295-0.44791-0.83286-0.80484-1.46973-1.0708-0.63689-0.27294-1.34376-0.40941-2.1206-0.40943-0.93084 0.00002-1.73569 0.14349-2.41455 0.43042-0.67888 0.27996-1.22828 0.6509-1.6482 1.1128-0.41292 0.46192-0.73486 0.96933-0.96582 1.52221-0.39193 0.95184-0.58789 1.98414-0.58789 3.09693 0 1.37175 0.23445 2.51953 0.70337 3.44336 0.47591 0.92383 1.16528 1.6097 2.06812 2.05761 0.90282 0.44792 1.86164 0.67188 2.87646 0.67188 0.88183 0 1.74267-0.16797 2.58252-0.50391 0.83983-0.34293 1.47671-0.70686 1.91065-1.09179v-2.86597h-4.52466"/> <path d="m779.95477 851.46436v-15.39014h2.03662v13.57397h7.57959v1.81617h-9.61621"/> <path d="m792.35297 851.46436v-15.39014h2.03662v15.39014h-2.03662"/> <path d="m797.94843 851.46436v-15.39014h2.08911l8.08349 12.08325v-12.08325h1.95264v15.39014h-2.08911l-8.0835-12.09375v12.09375h-1.95263"/> <path d="m813.54852 851.46436v-15.39014h11.12793v1.81616h-9.09131v4.71362h8.51392v1.80567h-8.51392v5.23852h9.44825v1.81617h-11.48487"/> <path d="m833.89374 851.46436v-15.39014h2.03662v6.31982h7.99951v-6.31982h2.03662v15.39014h-2.03662v-7.25415h-7.99951v7.25415h-2.03662"/> <path d="m849.40985 851.46436v-15.39014h11.12793v1.81616h-9.09131v4.71362h8.51392v1.80567h-8.51392v5.23852h9.44824v1.81617h-11.48486"/> <path d="m863.76068 851.46436v-15.39014h6.82373c1.37174 0.00001 2.41454 0.13999 3.12842 0.41992 0.71385 0.27296 1.28425 0.75937 1.71118 1.45923 0.42691 0.69988 0.64037 1.47324 0.64038 2.32007-0.00001 1.0918-0.35345 2.01213-1.0603 2.76098-0.70688 0.74887-1.79868 1.22478-3.27539 1.42774 0.53889 0.25896 0.94831 0.51441 1.22827 0.76636 0.59488 0.5459 1.15827 1.22827 1.69019 2.04711l2.677 4.18873h-2.56153l-2.03662-3.20191c-0.5949-0.92382-1.0848-1.63069-1.46972-2.1206-0.38494-0.48991-0.73138-0.83284-1.03931-1.02881-0.30095-0.19596-0.60889-0.33243-0.92383-0.40943-0.23096-0.049-0.60889-0.0735-1.13379-0.0735h-2.36206v6.83423h-2.03662m2.03662-8.5979h4.37769c0.93082 0 1.65868-0.0945 2.18359-0.28345 0.52489-0.19596 0.92382-0.5039 1.19678-0.92383 0.27294-0.42691 0.40941-0.88882 0.40942-1.38574-0.00001-0.72786-0.26596-1.32624-0.79785-1.79517-0.52491-0.4689-1.35776-0.70335-2.49853-0.70337h-4.8711v5.09156"/> <path d="m879.30829 851.46436v-15.39014h11.12793v1.81616h-9.09131v4.71362h8.51392v1.80567h-8.51392v5.23852h9.44824v1.81617h-11.48486"/> </g> <image width="331" xlink:href="sample-logo.jpg" height="369" y="682.14789" x=".21428968"/> </g> </svg> ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/examples/sample-logo.jpg�������������������������������������������������0000664�0000000�0000000�00000024710�14163570564�0022327�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000�������������������������������������������������������������������������������������������������������������������������������������������������������������������������JFIF��`�`���C�    $.' ",#(7),01444'9=82<.342�C  2!!22222222222222222222222222222222222222222222222222�qK"������������ ����}�!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�������� ���w�!1AQaq"2B #3Rbr $4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz� ��?�( ( ( ( ( ( ( ( ( ( Jm#O;Z0h"֣�Gl|п? g.^khO2((((�(�(�(�(�(�(�(�(�(�(�(�(�(�(�(�(�(�JhtsQ՛�'W_:֥&?d!ݿ¶IԕO׳7r}J)dU'du9VS>E{KC{փM̽ŽG  HeYNA -'\Ѧk/Orv:E-`o i#{R=xYQo"y9=+Δ\]:Z(Š(((((((((((((((waOVbJu)j;�מԓM%4ZI fbz֣j%N68*M(Ԁ(� 98+|uqeR qA(ڸ+:QZHem[,u=>ׇڥr'naGzmƶz/1mtx?#ck̭=Ve-H@c`(�(�(�(�(�(�(�(�(�(�()j&[$W7Gż<8TC V"wY1Y|}o3m`=� rDXY1h89gIpF 3WԺ bOo�s[?blL;~\ezXJ\RQ]8QE�QE�QE�Qx�t/^;aͨi?2OG5-^δ?ExMkwqepLJO5[ UsEh><ॾz ov謌H#6ti#3RuQPPQE�QE�QE�QE�QE�QE�QE4VfiJspFq:/.wG`g˟?Zų_Zw;CU#wpOu5?Mycz\tKq!i^IVcQֱ[' :S-,j(^1QV+ռ#�ji $9OCtb6s%ܟCTM]~gnSkaؼ?pwo+cR`4o'oݢ玬{k=BmSPs;O GJd|UjJI9$E!EPEPEPEPEPEP^ {ȴ%f%``F=�H?Ҹ h-jA\k S>뱢E(UP�*4 &<t+:(((()y'ހu51tѣaH�u_jz x"<;mze_iP+$I�֮#U~Z;lZz +'z0HMZV9rřrM6*Q+lQE ( >WK �ꗿi3i#n�7e"hs[__O-^Hd'\zah#Qȸ?>F= 5(X9 (`(�X|Ceo2,|L䢛}FNA{pv/TxH;s�UW}4W7t:l LUe�vB*6OEz|>я7+�ms:?r>5KO oSͨ^Ekn啶Ow/ MNL�hvk%]T1_Ց(msuZ6k$ nk|IA AlUk͕*ݣb(kYXWqSR f�tS}Q~tOΤx�SHeJ`6"SЊ,ʺ:LZC (+m&.5产5-X48=s^@9zOV g)2dkâ+sB(aEPEPE`O�7mz>mR+H>?z:6+H Ԛ𞂺EejtvZ Pce,-r{^X'Kg;~5XzwxaǨ `(�)v\�kn#7`cX?˧#ԨO@(�J(חIinҿnPnR)kZ١clJ�=k'&id9f<JJ4"x8ά( ( 0=PӧCN8?FE+'Х&ds:}٤F5 /K節E'ж/E`\�3"{1"�:J(ū#NRaX,?ty6.guB=zW:vTt?Qj+~ƤAqOc~|5JwW>YVQL(�(�+Nne3?}~+AѤֵ$A+=ۤ1(X�t<<cܘt+B��\Ƹ,=keΏ5hoG?edrYN=zJU%Q]F!]Ôαw&:A͇W]dڋ,cϊv)/}EWwQ@ $($#ߛی)p޴C`$M\z\v}yXE�wQEvhQE�QE�QE�QE�QEoL]ڔ�ZцuX};/ݿP+1<Q_G$O#�q^FA0GQ^Fk|igjp.rٻVrlW,7EV҅Q@Q@=6CfYbf%y5܃xH$zkkuuŸ1>wNRuiߡU; JRMk2ȇUՉJ..j-Q@0֏P_D'ϯ^Y=c{ Of kBfu#-E:H9*#6 ?;9E�מW;MÑˌvkG;(J_-~xQjԲ,Q@U$z׷-!AA[P/#_CM#fiQ^<&QE(�(�(�(�(�:}5W3?Q]5y EV`=(jD�<>:~}?פM;; IJ;™Y{J<m}T\c7''.akԔQE΀(�(͕֝p'q؎mB{}c63Z{0K^OxI+=�lyQJx|iA##p\;:((84mEuW,uG:Ycմ޿)au%C($lUG`G8B莽SI(<߮?y]z߂glscF50: 3Efj z/y:g53;\< g_}ObI''ӂlWR|((gp[߰O*_q)ք7ޖM 2"fpO݆M"T牓hzT0Ք$MB"pq%,m 2]s t}{SUjVorqtEWyEPEP2NށG󮊰|6H�yuwE EV'PQIZ�ތ:W4r4n]I =u59>ǩ WU9t=?c.'EVӅQ@Q@Q@Koq54r)e8beZJ/$mP vʒx2A^Z?oi�̐B= g*}Q2u+ʇ{ yǏ"=N%MK:WYYP#.p2b>STgeB3{T3єo 3+|0_ }[yԉ#b {F>msllrVn囙CQ\e<Fe,=.U ewR\(ejaV妅o\~nxC͙RԩC*3�M( dol*��;SxERӆV68% G`)֕(bTW0-Ż! KE M]Y,дRO>oݨ�`}kե>x|"(QEQEpbC!B+3A]`?bjWU28ɦhp%D 'ֿZ<z<'t?QXTvgf*uգΓ:td'̠�J@n�މ¹+:Hý>"kپG4CzZ^[b12<+E\qUWR?pF+}+]M9:,Ƒ�v^@U#j_Iə!~ν Q#1X^-\gkڰ�|PIi3ݐsZg" 뉜1P?xͧ.{%b[xiZ}ajn#J!;AHQOU{CUxWJ+ѩU糁O#EWtw~PI-ؠ�t?hVyOO%Gx])ʲkмs$`3$}2;74FnƩ+By`X�sS*&%rԋnc\d@VNy.?*KicX�hqr$wQȤd+O?:oMN$ﶰQsgtCi\Ji[5qݺ9j? ?*/� s9?drS��1KXKS)?ƥ_X+{L5t�Ҥ]Z�cqZ,Uٷݹ�J.!o*joi %{KTUp"%Ukzs)}=ϭtarÍe9(# (u"J'5U4MVǟϣq^>{ v5MM|gkM_lT4QEx'Q@ttB B^a}c 9T0Aqi4̐�^Yr>9_Q^aEPEPR~iQ/ncv~&Wce'v_ח|&kANد?>$K&质<?E&o:y&WnA\uq՞$SZN�XnJo/ {SQnO$eB�.GHΦ"|:8lfއ<5?w4eoN8Qu'orrrr?*֛f9�gF"2̫[N$xtr62Za~K Hc 8Ev7kyiCcޖ L⺱e,D}<ӿg%X@~_;ZJ2QE&=JZ(kf+IN*As:٥G#TU[6^2�:j�TXi04[_oskGH?Ekv"-Z`ՎEIpu z\?WMɶcIN+xZO7%V�r?b]>hTG#ȷbҤ\S++!kξ(7rvBtԬbl߯�ZzRgpQEx܅QH%/;Ơvw&QSN/S޴F-WMAּζaHI3$9q^^ �-%&p:XZNjtrK8a�,ߍ\)ҝIr]ݫ'U)]‡Dk¼X^\?ܻ;I'9䴁ar9ެeӣ4]7 [ZYydnQ\+NϡթŠ*k[YnBT{i]ntNJ)kx_@}TExi״EpBFQ K>_H�n浻W|>ex_ Dԁ]g[nAke|J^GV^tM7'+t;Fduu8`r>ik{f`<g<=G.>,RCC2C<k^PZ<W<󃹵_.d*C5of9P:ƹC@ [$}vkL^T@cQA8#WkhER�(�(Q]NH o $u# \=lh nr�zlI袊׭> /BMzxɗƻR=|7|QEfQE�QE�Kmq%W0bp}zy\`O+^T5*;][UX �W 9[1\99Ԕ߼VQEfnQE�mFt/�U+ÇXW nrr8w>z�` t?䏙α��!QEzG͘'l[B�\t^)??2-~lzȺ6~Iz}kXS\xLCUjjY蝨zuིIA{r@5R q|Ţ+A[%~^X\Xٔ㳎d$RE /StEo+-9LgV+#e*êFiEW0Q@*V r=(kp;}:^Y$Ō7h7gX}�Jk0^}VQEw�xx^={Ik<HOjM�0J?ݣW2袊O ( ( ( ( ( sVvs7e^ Y%{|84M;͝G'�;-tIXՅ6: .;uk}I)kI%d|DŠ(#;f\[$;%=|i+} Z (?$�?ҺH 2)!?8oc_WbKǏQ嗴]KåQ_DyEP\߈thGPıi@=OqrHv95fjEQE�QE�(8 M.^$\Ujhwfܼ}c?*2Wf`uQڊҼV/dZ[llރ57Wcן~>͌+>(�(�(�(�(9˯jnXS 3/.m%j9ßijH|nvMV 5 @*j(Td|&3,MWRBEQHiWz*̫nէ9`~B=ǻfϣëR (Mt߳^Lw/C+*H A զAŞ(MཱG'_4F>rQqn,)�2ik,g{GXЦ3uKrX/ 4Q_V]@((({uQM;ji^ $rs"hd c}k˱>ފ}P <?1^csR9б#vAǽz!F5~# m{D�uԷ]ffE`T瘕ٞ ד9jM?ʽ*^>{ ~7TM q1_Bm1h~QњLj'�"AG^}}-T^MI}_݊}$h=a&+z$7\w\R3Z9YKsqyd`iօ$f7W1hMU#�zM|E|8>Y+cͩjE*jPxbu"P>ku?FŝaSx*ݎG{V�E<@Y%=RQ��EbTϟBf4O�)j-R9�TIO$#{G_ ^\%%՟AMZ QYQE�iwer?ֻs^wWaj.f1 9WxԢM<d,mN9A\s1f,$V/~;*�tUjqoSMQ^pQ@Q@T[r!v%'h"#B{[~' t��܂djڽ|6ORMrt�`u-l%<<y`(�(�(�(�(+]Ծ~N�~;+gA}+KCcx?Sp~;pxi.ilשQ@Q@Q@Q@Q@Q@zևK\e?0@~۝,}Ov;nq_AeG/ysTOS:'NnyAEV@QV4۫ q? ҝ)|WXlC0�k8ic¶*(P:�+dW`0;a?^�^b8$hi+ݣEZEWHQ@Q@Q@Q@Q@Q@ne$j^$*:WsYdsz_;3'Vz8Lbh泗dɴ#T(Kj%%x* ( ( ( ( Y;8]vH< w)bۢT_K;d 9>֬QڊAB*1m/\Uu.G+A U}+05RרM" O?G�~MhQz 2+[l36Aݺµ�WJ:JV�+` ( ( ( ( ( ( ( ( (!+re=kPK\ȟ"+mJ;ŞtA#=CH/ZN|JC crgu=UʴQEyXQE�QE�QEY{륉rVoAWJB:LtߴKWh~P{𮲣%5T` } -%SugŢ+(�(�(�(�(�(�(�(�(�(�(�(�(�(�*9#IPe=A))4|=e`:4nQԫ z%Rm.taWaR(cvz7$U j*Q$ՏZHW (,URFK] P̭˟Jȼ?κ:̛{6;#QE} Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@ e # 2Zv?[W6# KYJueM,顖CQb*ޓ>RYx&0E:8Dp^%<wwKNԙ"P�� uWѤ<Т)QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�P( ( ( ( ( ( ( ( ( ( (?��������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/examples/wolpertinger.jpg������������������������������������������������0000664�0000000�0000000�00000053054�14163570564�0022634�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000�������������������������������������������������������������������������������������������������������������������������������������������������������������������������JFIF������C�   %# , #&')*)-0-(0%()(�C   (((((((((((((((((((((((((((((((((((((((((((((((((((�������������������=����!1AQ"a2qB#3Rb$CrS���������������2�����!1AQ"aq2B#R3� ��?�$ Ipnƕ*C:AŰ�ZvܟO`/Lfee+]\}t[ڛK P(HOZ -0utb7>~g T ((bXk_Ԁ.ta( І@ۓɵ퇥`46~/;}07S [j@hv< &i 2Ik~B 9ga}vXYUyImŅ;a>rآq@�aũ'="v&ç\ (`V�c<P6D}d,Hۡ5ua<ieXq\h+*Vʧmh·rVS(%vi݇�#6MTHQv:cUɹV u^Fp) >csoFPI\8mCek�A\zlqP"}I&l o[Aua#Blc|%X$'7B\ @nv? m,PT}b5m'ߐ4 Z'?EL-h@,H6?_gH/wҬAV|+L>x* )hdnvg7�};QIw FklpzFkc#;<`r�[�MV$m;{`Z5 iPmnFg-:K!6F %*K2{[\ Qs{b)7'p_ ? %]$ bvjڜ�k{nj^8ѕn�0|II$"�+]jd[~VڞMuUhd 5 a< ۝7+7!fJShkn1Dk97b$F#kl#!^ ]Q}%O xɟ#Ikv ;k%QK`M-ۤ F;8Xx9Pf}|.wt@U)N5Ճt_P i~i'G @mc wS rHͨQ#r~U HqyM^kIҦ{�qE<5$>ͩkK"H#4]˵,YbNj[}; 5nZ + '2�HvQJ3m/'67or{ta P"ͽ)qR+KQ {-`U opnM:׶ E1-lJPԩz}6~0Ȳ EgV"~sӮ 6.D1P}7Nc{ �4{ JKܡ͏h;SbR]{,e �{7 �F5$I[) }j(UTt:\SupqVaXwa{p1Ic":"h+$GTViÝ`$0e&dF V[l7+hg\K0Am�j̰0Dk?d4+UlPb.=T0hQ#@ Гxvs7o5u4Xҁfm)p%.qJy�'Юuݑ+~PYsUiKf^!%t>sm$h>(JF6p{cxm_l~Aֆٲȫk_1Vd NttPKF nuaSQT6n{g-7 E<s2){/b^q fQZ+Il5& X (<X\{#4It A}qb'7;wĒ1}>b [|6,3 ̩o; F8 v?yǘQ)1 X:MWC&kԤR 7'\e:nzbOI&:mpB.TBi'[eJn$߸7tBs�)WAJ4p~*``,/r=DZƅ9Id $t UQfZGac{XrE8CebuIᣁJE߱ԝIiǗ. &KF[bk*Oru_P{}/:V* UѧPf"UAdRPץO"s�ce#L1/ʇ֏g]]RL-F~h ]9|T~U<�%t烿|<7�F d\lΛrm8�j4ޜrt5JqMN,F _8LU:tz|!,#˪YQEFI&k窕b+ef�/i1ؐ>^}Ͼ:_*J>ꍈ;فS R�XXHdeaeޣ$,@AP`*!7oǿ¤ٛѱ�~N!DO -"}?`[FQhFǴHJ~p &yd �xʦFZ'nM H/cē$ӁL,JJMi2in.$bFY7!MvIrg`%a}l A*H�29U3*GO"V]Z~F7$_Nwt aFu (4WO:Yf"R:CiqbHi(U}sIU%V">c NOS7:gVޝ=΀W O$RHǨ=F'�} '0RŇ`\ߐ8d=20 GOooVE~W͓ᧈǢ,= ,2)ʨM.v�Kw8clQE׃"k(+s6A :A%+,-2Ʊ+GY99m-h: -K @jؐhH)7R //nSUΔxNYK.bO%X t/%^ ho3SF6 ׷;j_A 5^rSo- l8VMxE` w~8-,X-RAo6SK/VcsmF\0DnvLORC(lZHRUFH"�WA oPgo#JHtH_SӇN݊ k'$2VV-3(g;|v,ހkk:T7�_ ȧGM,6};`5eNGlpgֺڅڴo$lcs,1ʠ͟SCUJ5Az4|Eh%@f� ګ) K:BMJw:qoQ8$zo>XGW~n]AnvzԤzR&HVo��|tUrJDRN7醍 |bX< j*�yl&^cPj3FeHClEv7pA~ݵ4*f2dپZZ@cBU*ޟuul/tg;LE�fЖ\8#R)n(QWWly;J+R5|ម>i,-HCHvǬUGdʍ.;)ӑ8`j%?j=) ;5mo5g",Sx`y| ,-6l�heJ cd H$l{ܪƋc=*8; Rl0JP�ŵun\"~eGo<KFK 3meRƞ9ƝVn4qxjd'JZ;ȉe}V.B<s09yp+#lll�:tq9EڏOIC<tu RBT([r6~r PfekSX) Q̼=�lq+s<Wt/[ᚸis<|sؒtw|*FB]*4ɭv7RrXu$Rw4^:*`3Y,ZJ@�]ѣZ{5D4i)j؎s() IQ$ډ"8\;oŸr*gtuT9ʥU+4qԬdGE)8׹߶ۑGiqb?k&_LV!- 4g9Ӎ/cA /cv>F;$,} p�7@SPSBEطXQmEHH:EqqT8ov# ΅a@?q(!CJI$Z|_-lXyao LP8:NR iZێ1T)) \oku4T) F$ũ@V7Y&<Uu1] s=vM #LwU Hy;XYɜa$>!X,ZB@7$n88+c$$|Y5-Mdx<zZ̥X5ГnXU#FU&yT?f̠-`C ~Ŷ;# =⟖Mȼa[PK5\p Vt�:n~-o)ռC'Fc;""2[k#uߐݮ~r.⒲L0I"�T7pn $PrX W5 CG);('?k[fnsWQ)-w)C CA z*c-⟚0'g4dTĎO^7 }Loa͆Mk3gg-=K U % ``٣";⵷Q>o?3<Pd2b7�X �:ROTzX$%NǦBTpGssn� Y�E`Mk{s]Y@a5 %X)ZlS8 kzj!K :X]V:ߦ kSri"nnmc* ]JmIbC^cFW L92:dɴ,5=5Tc*_HROտlOZN+tRo'nsMes CK9YD#dg^ۋg&>,g5)2Bjt/{ =X} oT #* Pr_{bZ*;}I84k'zO&&n־M_jHO'Ds`�o}$vpu~Ma^OO[P JZۋOsm�>RN|L+b9xHe}6eVH.Xg* < bZJMiYJ콍{\nSEזI1}4dI-lXIQv70<f7쒑EW,AUܟ{}۩'I3[4xv$9$-ͽ ؛\nQj+O)dK?/Q: 1W2 %lm-і!RfOY5#VtujG@6 } xuWJU|mΞ%s̑$)I=u,|U7^5хh22:hY#QpobJC&_W(u%iu*AecRH?! lgD~,PG}os*mo,?y,IM)Cڅb6�ӄSi ?9I8|XJi2|W""eݛXkxl~IittMMz~_&He*_oе@o6+ -׮X dzKv`77wW�*빵]FcSbw탛 erfh0 4uF=Vv8I- (ϔCvj+Q@c4.y BJF%<is(ٙ˲ 2<u37*X$Mj#~c!k6!I. **!+rcTyA,Y;^̤iy]Yhŕt44nWKO1;B~Vt{pE,%mFxk?W/dp-eS4uX]@O�;~v[d')֧)7Dc#f \�lEGWM':kPΪɨ) uK;k^{m8C+Kx( E5J.i]37|ʠ33h䞕\ Dlx":\_ZSLjr9|:VlfȪX˪0!I�r[?mqJs?:U$}^<}+%/Ӹоq*W42*%H7ۦ:4RLI2y`I'`-a}⻔Yx*3 v]܎nīX#TBRQ̥$]r9)gIe`~5|XjxΫ76&$[OM*ߋ/*Ihqtw{#=|iK/ةj�%J\筅1ء,2Z$ 2ŋ;~ؘ s"G&c v߿_�aMT%n�#aԣm,`z8WR|ۛ }0RbVB7kI5Cu0paI f"  0Ke- /Ċ <,H})ReE>c4]v:or1O^|/:X~ƴ5a)TJ&nڷTJ Z32/y",&i2M-OObaeXwqt �Ϩ�ѽ8`e|9_YQ6}Ջ1׸,C$n8au-J[gu%|k-nT# & CAp%WqjhgzDqR$[B_үn-~"ӷaMRWAt�pHFϤ q{k+= -d~!))yϟ:$1Unk}u+sċQiW_Ri!s29'KD\d}M@yvF$N R^jE+zzr,?hrr\ְ̫O0[PѝT+ܝ:;˓{'v*FT6!p6;5qY<)1őRo"�fb2[5abeIG5RβyH X @6w`th|S*³tK&PI}ga0zz+#*3B!;}'T'A+gIU\*`jD;5}9c�Oj;`#fzGQ+z}ߐw)靶bQ #pv/8.Ƞo`9 B*Y6`(%ê'uuuV'm#|fT$H\n1'ݡӥCy5=+ٜJq0IX[uj1w H>Y_o{a&JW5z"b[O:^6(qC>S?m== 7f̲̈[2C1)o01Uf�bC8?OYgH+<QO3(tc$=͈xbjE\Q]D%b;�͉TYAW@u+d(k/$R5|+/JMf.(AgLir´so2%kjEŹ Ote_TQR^efTJnefhf`}Hm:tᨓu1iC]&*wQ2@XC_ccEu7B2k2aI_5JиQh�A'Ԧc< 7Iig'Teyي:46HoF!=ŻiV{ث4\溦')<EIh(S6F+E?i5OO׹A-D;GrPHO'XF:eX\zO'j*P fm)K<96m&YBvOP #]H; ":b7$Ν*+cg, HU|,^x:w)2ᗉ筌fu9<F!4厲O`-|r']puH7P9OTlk_I 7`wsOR\q~do_EU&_T[R Y 6$8ӭ\ui<k𫣣\ʊ,iYRXT-PA P8YK*)ؑ5t�Y? XD<J6}G}:Y$><~eež,,ewmٷ$)PںܥlUV_ڨ@y4Œ 6,6w?ݏUXp!ЂwXa9uJzGknEs{߮FKvi]SPE`1 W#5NU+uA%a9(Ԣʍrd\l5SY_N{RY&e.zX#)|f4G,EKDo5T?g4aFz,fMO:hV"W1Q͉ 4|M"µϐPe:|HuI(($q(a FjsIW&dg-E"kL&]5t_SUBr<r|)j:XMd&Hn =q:҄z-^ A/ =82)Z\pѨO?6I3@ uʋ&_SBsO5$21�n oьr$gܕeYg2^ ,21dx-~-ؾ+x&'jmdΉ崑H7ۆzm NxX(a<U :oem<3fÉ=9tredyFh^M^T2ၰRԌ|ώ�ߥ'0њxki'1)mXZNnƗ&5>ןj\j$kJu)xd,v$v9'87Ls9*2:ԚKS0Vfy�^ bOܿ:UfmmvWVcZZSEptRp>!5[>|S!JqPyxΆ2HJmkzyzXNܿs|7O2˩"[4yM%:cgrͶ"U߿ϝP%}⎖J%Q±�Pt:*q[nK lCi:GBH=0hT$;�GocpVO3Zp80lb&r2cl�l>E]jz^l7Jb{�gٛS;p&g5ń%T`.^k5mJ?]b°sKl\3,* m+{2^NyG"1'=$^sQAE,yiA"jԷ�I^5hcJ%l2eU#1QbxxtpIUiFÃ'X|.sY;y .C +yC�AkܬVTjKl5lTjwVe1bH,\jһH! Fю99=WK<Y/e*r}:_ VSjr QURK\-d36* u;JXR}N]d5 VeUF OPbδoKFGmq'rqx)k8FX[KAm݈N&4ymU5$4ouQ2VI^l7I<?̲Zb*I)Y)y>XJ]F?( x m}QMA:C:Wh&6@nnqŭIKz aL=h!33m]iv(5)"8z)R_NRm?f(2q[LZaZn _:HKIMqS5ZIehZdPٚ{#{#[r9}߂}U|ҜQS ×dV054t^g2<K㧑cyΐ.7cv&-R$fttGhJLq{_(HeY@1J)bz[b> rG*$-ۿ `y).YEm#,�M7 kq}0Jͩd`1_/D}`řտrp0wUd$;q Q>c��>(|V9GNy %U! H`ᕵ-}''/ I[IR&# fVaumOЃqmu-[5'>/7ْ1OYIQO1x,)PWN|�^.|,1x�IUI%) ȹ-rJcPSffXj45s3D$O-ѾF$RQ;?8amحKA%E=$t1CQ̼jW:wwa*Gݗ0fs-DEvG To ,ROjn2)v4y-�.& +-^ 鎕$۶, AJ�f_NHd�uEv ok-M [#x55I$mM#$RqbYm}ihER9u4E୨J .,\0�07]D Ϊdz7Y5,,HqpK ܜ,5 &,QT}`+-}E<v8yeܖD^J]fMWY,f(BN 2 3PybIO&B7G25FO+t/q.�m-St%f[UD(pƴci5[�]}#+TB*hz!Gu8>ݰc2;h!2ASJcqܓ@Hoq)4 5X&rO8s KTp0S:Al5@u+by錢MvzXjBk~�2k&qib]�وH[M5!Gcm� /&NUCzA)Fl.wX(TK�o&W?ۼN$%.[ n][qɣ~ ZYcrp @1,%zh*I#A\UoP[~=[eJ3ś gQA,iGS*MD&V-+m&F41A:#q~SS}C$Fzr#U-!;̡EAt4`1+|%5F (CBkVmv�Z;nCː۲ixik4f�#0٬ \a]6I!πZ5G76,.GFۢ~}.u"L)cي{+PAm(wNя[C,bXb6X].y<DRHm9G ̨2ѭLR%#{iزߧb/mO+lv%Y&4+T#F`H s($X)Qr|xo*OI$fVmɷ፡%=6]83VeY ѓGQ=e Jw ci+f[nqH}C4'3:r.Ye){oHP0e8(EwJЌ˙ TG**9JS*>ɘyVq;Yok'=mrNk|q /O}*yalqKQjhTyjb hF*�]=f,uBU-GFFΣDw>Ὄ =k ;mq (xVL2`$.Բ [`NM6AuV#Fx3zH \ Rb"sn >Aaŗa_qˠĞ=Y gfyMu q|7= ~eJ3Ctbt܍͏t⒲Zw()$T6 +?u k ;M mI(Ϊ)T&�n{@ؑ�ۓQ^7GO˲J_554wň6;M%WLJ\HF4LԓeֱgR`4N5ަ9,[QSuY#nUHJZO1anHnl/ۥ͎-W IH}R""+iY ܅aOSbUu̧ȑ^4pv6[x:~TA>% X qp,۽'%&aVLDKUHW~Kuµ� U=ptzܲ1˪GS}tڕp9ܛn~{}_: ;*U;:t=-h*%,\xaZi_ePC-I vZ:s"jClGJ̪5O&fjpYig_UAtUx9Ċ%JeDf9ansxGEÜʴ+YSAhf[|I=tuc\?ᏥLUdSd[|[Gy ZMY3 2,Go3 ܘ47ZVR0!moʳ.BSQ|ZY�`Qw6N1ǖiHOkz~IV8㴆5HO�m~q+܆"BnaIdW�8+@+6銦/6PA^�j9Y.T{~x )kN^ nS iE{ H^p &"dY@@d :نǂQ})]QYr$y[6{X[- bSVR2=lI SA*KN)&a2YEaɹ#O'WS˩JFnm?ncF;7<YlJzQH ąerI�[%F\~&gNuSMi{8@zGm`m+58'25O)~$QT^w-cJQp/Ӗcrc[XA�ۚ5C2N<]b1F+]c`$b!A!O'nַ\5YK$I[o{$]GR-5okgѥ8D+ s橳[H׵O:t5"DuSX 湄5J)\F-{Ůo6bΎTs\&Uh؋5 [W'tm5Zipꦛ+E�n6xǦ"MuVٞcYWEU&]QYC#iDP�tMϨ;#~5*cR2D^LT_"GN)EԽ} 糗A틑NYK<:#̨tIoX GnrrYh`8Ir �-�O|gƍ ꚣQ:#mDpz>]B׾%+c*j> Xr bH.؜AI ]ktJr\편"~Ad,H7d؎=,Xf e?/ hgj 9oo3Pڦp겿mDbDi$pBӆ$�6 F'eZ hs�ixȕ,*N� bQyM[R,%~j�B]]D5ۍ7#2ۓepJ#UOTF+ =Ȳ38f1"0rXŎnq'p5 v} J5BSBQAߞq|IݰRњ8Pbኅb esEC%lc%0 %Kᄳ,@e%oacRtʤURֈZV&p[StWiKM%!t>_/a}EiSH+@ҒMDOfP: kz/̞ٙ5zhRF>zKXo׌bK??7QKdRTèFmiB6:ܿ\8a* .z5eD TI۞}Lnnzr W_ДɛNM4lTޡ7erdg&|rtΩ*MBeI$!O JFn6`ENM.Bn 3ٓ,pEB:*Sl X){ Y4ۣEK\Ln=@,:o T펍U6cacHL*\aKs؏* ;ٕJEKĥluOs vdS y"ݽ@rLOJ{:$!tw|j�i4hYTF%�wrnNU&9&_1�*/8Pl5� Ou:LL\\iڵl�ݷ]2 TVRfRIQ!D`Ee-,H�Rǩ8mzՔGUqm\* a!rw`@i&-uPbZی.qALg0QeRDXzA nzUH(*ic) PIk؝ Q ɸDRd d/ l{mUym1T>K dIu6=ʟ sњbu˱}9=6&?F71QNPw�Cro R\uTrMъGC&6abҧ1!zʙj*8 @.UOn8uSK$]gZiVx^Nn 77PwgMy']Hc )MD̠F$өقEȸmԎGhvISK'17$R ~FخducH낡吹db7G} ˳+ J ['~?:춢4Hu<6c/09*�_[,$L= a(_LIe$ۧ| RSSU[I$WC~pzܵDjI.K#r0c2�ࡘv7P@5 a6F@oqŰqolr.�A罰[ $Š|: -"TApTm,B=8 jF/(LMLIO̪" 7 ˒`1(y0%|K4c]om�3nycܡͲ*Vce6XOP-aQq Hx3oh3 U"]UX6~8o:q<"m|4*+B3rn>r}kɭ4M _>Q!U/eBߝ7?\$}1Km2 ZzXg@Uw#W&qQD:C;216 l{_c~m 6Uq$K5J;p4=֢jy2=AE  -}<A/I̧̧?iiUn\` 1wo[yEQdcJY$(<fD<Bw&WE50湥-~aU g*}3v;o;<4_bZ!H`Mr1ud Jpmd2-hm\ L|RH}6XoP5<)7 EMB}'IM&YE NǺǨ~g6y^5 mChqw=y$h*j@ q*Aw=^,$}Vc<~IuF]] OoFb&Ȍ#}x1w(ṣhIPiKv*x{r[ Q&Tx!C Z 7�1vnM;bs~X0p3RQ% wp( [`}D1�aZ?gDgK idO�} qϩ)"i$D 'xC`agT檬Y�ꠓΒ{n7hR֎Yb(:/k0P}7�b>e-MH;aQ{Q"*((hjJڒFH-W6|+Ը$hP7HCj%ob9GJPgYD5XL% rD[p߂Tzߟ�RԬiYʐ<�cn= y9%,P5A pLIb<&y 7bK{0RHOzD"2X)\Q Y>)QǠE-�, :\ȱm]cU%}$0ZMd؅22FV6N'F'G �[ mpP+.zqv!)�\u5ٸ$ 7Jv*LopV !c[ҧHzSз}&ֿ՘Sn{XY $̤26`9ƍ5kfR =c|>Qxh8kBk#{}B.o;WFzz:?SO%fIT�6Y�@$mkXcB[gq܋教t5QS="vSAn~붭7zT9@jO)¢TU#hw"��Q8I 'Y+ ([Ɋ&*H�J7C7RsD4F(yr skx02l*E4uO-ᖩ݄^[Iw}vvhf9xnXuXf6 Ԥsm2FczZ*3Mz|Nm2yUnx@%NM@P [ӪonG1ez'c4jdEFs4LVZNFYQԵ=q4#-7s'N$X;'ᬧBSvay_[[8nv=0+�XV@ō1yi&0ܒz}pS/e,ZrUJ %աVf`V褁muC]Wrn۱LVc57�72tՄ7+ploql03f*vǶ5 S=$m* orm/r2]G # Nz/;X3Y+N�/l ;t4]`ICEBU6ߟoQv#S6&ݶ�jjaJR-۵|ݪ|eφ^ ͩ*?GyK 4ā:NoM|<^*3Bg,<3(b5c5;KZA]IN*ؼeBG}Jp/k-OB4M<{E/Pe]^�"X\z2*/".<   mf!CLF�{�'o CP24?{H QƏFvJL%?k+)K1:/Ue.\4O2SHB8nOb:Sý73SX#O7Hrn.Tke;cUq#"f-Ii_%0"V\w`{Ptj]7:4%-K|%洫6zX_-[lR.f �mlQkME 6fĨ~gԭˑu2E 5XH *.aO=]6Mm $p$DQZ^׿^pWWePbAw ڡk$XuUk�LI64$l$R_S[o>�L PgFӠ05sU~7 1(6FЦGp.}ne 0@rxlnp#U� 7QH5Q$`px�|&(кX^1q2 �؃t+V#M#3vf3 dyWF#mJ* I k651$V2>s,gUO=?_A�)"n۩6]ڋ)H:9S̍Jg250ێ+ LY<mTsU-)_:`6؀m{~qh6&P$&uYU,/Ib4}7.+ [+qU?Y]@!+FUdmRm%U!/uq}J-KYxcïRO]̂_Zʼnߐlk[rߟw.Bc OfR=3N }dvsOgW1,Ht?;aĢE-i龟z\\6ii>DJI{uC%(P*nMƒc?Q � .0ZqePnGղv.-ۮ:#@,jxBݴ=,#]XԄ(l0�}R| 7ՊC:Ai>�5Y`WA] ׾$aF\@0tUb�m5*NX\-dkG ` ŹapQsTf~.Z剰<^^ax=w2of"!#h�'\f#/.Jx|ґv]U%~q$}q'ЦUM+jwqZ9֠Pqq#K7m"~Sj*Jj<pp�z0c)C8׉~Y&vW]Qǣa"̍`dFUSц!㥲CFw+UY|:ڮK&i%5 �`@9 WQt�arY|ieUٳ}L"eeh_m}luـtrz\T77ǑUTe9UYb.iLT"Q� Z=m~mp `hO] |+"v[ъ EӤr�PUvEH|2mk'$tB;1U|` �}0(;rs턦=ckRXn˫ka &fm:pρW" ۝+u=1R@&РqZo4bF-A Nz}p60S| V Pڔ;*[ T6nGc%HRae{C]ugCp{ #P[P Q~x1X2]QרMQ5 M}jtؑbEٍE2�c `|,G7qu&-ҷ"kyl>ތ(h*hਆHX߯;qQeYo2X(w0TUa0`bIms`;_59V6ߩ/(dz5�7'ª agh&k6t>J iͳ-v=%^CX/'VauV:ٕbxB]ܛq ݀$nN  [1�ۓDۨk@ajűu7<A4r!(7A}76`{&0Ul"J jӶjYm@XXc7?ZR18;jw %Zˋfx ."mm 킻3znTv0֘]rmsnY(j& ËF`U<GS:WW�©7m�= S?_\6́U^nX 1<1&`FzئY I.*yt2c!A`^B9O؎/ӬWm?L4FU:@0" AAvsnށz'�oakܜoc u$!6oQJPth�X ܳڛK6vuƻ�n,"/3]w'ߧ�Flw_9*<) tٿ{[iPڡ>f^K\0[,<JA7X�iy>^lvj|WMQ,oH? 1ԊT6aZH2)Fہl>LAU\ǵ^)+UX ktîtr? N`�rK2yh ]&Ì2XXM'Ya{}v[ uy(mDAH"0_qmpEf�[ampc4Ơq{a%t#U\`#0O�ŹW#rpqva`l |E`I#{} YJ؛ml* V(J c{)'g$-"P9�/̄ 6 ywT%o*y(1jl�^߈UTn؄:'r?/ Y+2iXR\ (0~p 'kcv;0jź Sj �l$2V<Lk6v Jѹ!�@nO˾0w;y`;v3,dpmqY5�`GA+=FfJ�(K#A mڐmhѬ-:?������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/���������������������������������������������������������������������0000775�0000000�0000000�00000000000�14163570564�0016332�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor-pdf.rb���������������������������������������������������0000664�0000000�0000000�00000000102�14163570564�0021722�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'asciidoctor/pdf' ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor-pdf/�����������������������������������������������������0000775�0000000�0000000�00000000000�14163570564�0021404�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor-pdf/converter.rb�����������������������������������������0000664�0000000�0000000�00000000117�14163570564�0023737�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative '../asciidoctor/pdf/converter' �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor-pdf/version.rb�������������������������������������������0000664�0000000�0000000�00000000115�14163570564�0023413�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative '../asciidoctor/pdf/version' ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/���������������������������������������������������������0000775�0000000�0000000�00000000000�14163570564�0020635�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf.rb���������������������������������������������������0000664�0000000�0000000�00000001011�14163570564�0021724�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'pdf/version' require 'asciidoctor' unless defined? Asciidoctor.load require 'prawn' Prawn.send :remove_const, :FLOAT_PRECISION Prawn::FLOAT_PRECISION = 1e-3 require 'prawn/templates' begin require 'prawn/gmagick' rescue LoadError end unless defined? GMagick::Image require_relative 'pdf/measurements' require_relative 'pdf/sanitizer' require_relative 'pdf/text_transformer' require_relative 'pdf/ext' require_relative 'pdf/theme_loader' require_relative 'pdf/converter' �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/�����������������������������������������������������0000775�0000000�0000000�00000000000�14163570564�0021406�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/converter.rb�����������������������������������������0000664�0000000�0000000�00000640655�14163570564�0023762�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'formatted_text' require_relative 'index_catalog' require_relative 'pdfmark' require_relative 'roman_numeral' autoload :StringIO, 'stringio' autoload :Tempfile, 'tempfile' module Asciidoctor module PDF class Converter < ::Prawn::Document include ::Asciidoctor::Converter include ::Asciidoctor::Logging include ::Asciidoctor::Writer include ::Asciidoctor::Prawn::Extensions register_for 'pdf' attr_reader :allow_uri_read attr_reader :cache_uri attr_reader :theme attr_reader :text_decoration_width # NOTE require_library doesn't support require_relative and we don't modify the load path for this gem CodeRayRequirePath = ::File.join __dir__, 'ext/prawn/coderay_encoder' RougeRequirePath = ::File.join __dir__, 'ext/rouge' PygmentsRequirePath = ::File.join __dir__, 'ext/pygments' OptimizerRequirePath = ::File.join __dir__, 'optimizer' AsciidoctorVersion = ::Gem::Version.new ::Asciidoctor::VERSION AdmonitionIcons = { caution: { name: 'fas-fire', stroke_color: 'BF3400', size: 24 }, important: { name: 'fas-exclamation-circle', stroke_color: 'BF0000', size: 24 }, note: { name: 'fas-info-circle', stroke_color: '19407C', size: 24 }, tip: { name: 'far-lightbulb', stroke_color: '111111', size: 24 }, warning: { name: 'fas-exclamation-triangle', stroke_color: 'BF6900', size: 24 }, } TextAlignmentNames = %w(justify left center right) TextAlignmentRoles = %w(text-justify text-left text-center text-right) TextDecorationStyleTable = { 'underline' => :underline, 'line-through' => :strikethrough } FontKerningTable = { 'normal' => true, 'none' => false } BlockAlignmentNames = %w(left center right) AlignmentTable = { '<' => :left, '=' => :center, '>' => :right } ColumnPositions = [:left, :center, :right] PageLayouts = [:portrait, :landscape] (PageModes = { 'fullscreen' => [:FullScreen, :UseOutlines], 'fullscreen none' => [:FullScreen, :UseNone], 'fullscreen outline' => [:FullScreen, :UseOutlines], 'fullscreen thumbs' => [:FullScreen, :UseThumbs], 'none' => :UseNone, 'outline' => :UseOutlines, 'thumbs' => :UseThumbs, }).default = :UseOutlines PageSides = [:recto, :verso] (PDFVersions = { '1.3' => 1.3, '1.4' => 1.4, '1.5' => 1.5, '1.6' => 1.6, '1.7' => 1.7 }).default = 1.4 AuthorAttributeNames = %w(author authorinitials firstname middlename lastname email) LF = ?\n DoubleLF = LF * 2 TAB = ?\t InnerIndent = LF + ' ' # a no-break space is used to replace a leading space to prevent Prawn from trimming indentation # a leading zero-width space can't be used as it gets dropped when calculating the line width GuardedIndent = ?\u00a0 GuardedInnerIndent = LF + GuardedIndent TabRx = /\t/ TabIndentRx = /^\t+/ NoBreakSpace = ?\u00a0 ZeroWidthSpace = ?\u200b DummyText = ?\u0000 DotLeaderTextDefault = '. ' EmDash = ?\u2014 RightPointer = ?\u25ba LowercaseGreekA = ?\u03b1 Bullets = { disc: ?\u2022, circle: ?\u25e6, square: ?\u25aa, none: '', } # NOTE Default theme font uses ballot boxes from FontAwesome BallotBox = { checked: ?\u2611, unchecked: ?\u2610, } ConumSets = { 'circled' => (?\u2460..?\u2473).to_a, 'filled' => (?\u2776..?\u277f).to_a + (?\u24eb..?\u24f4).to_a, } SimpleAttributeRefRx = /(?<!\\)\{\w+(?:-\w+)*\}/ MeasurementRxt = '\\d+(?:\\.\\d+)?(?:in|cm|mm|p[txc])?' MeasurementPartsRx = /^(\d+(?:\.\d+)?)(in|mm|cm|p[txc])?$/ PageSizeRx = /^(?:\[(#{MeasurementRxt}), ?(#{MeasurementRxt})\]|(#{MeasurementRxt})(?: x |x)(#{MeasurementRxt})|\S+)$/ CalloutExtractRx = /(?:(?:\/\/|#|--|;;) ?)?(\\)?<!?(|--)(\d+|\.)\2> ?(?=(?:\\?<!?\2(?:\d+|\.)\2>)*$)/ ImageAttributeValueRx = /^image:{1,2}(.*?)\[(.*?)\]$/ StopPunctRx = /[.!?;:]$/ UriBreakCharsRx = /(?:\/|\?|&|#)(?!$)/ UriBreakCharRepl = %(\\&#{ZeroWidthSpace}) UriSchemeBoundaryRx = /(?<=:\/\/)/ LineScanRx = /\n|.+/ BlankLineRx = /\n{2,}/ CjkLineBreakRx = /(?=[\u3000\u30a0-\u30ff\u3040-\u309f\p{Han}\uff00-\uffef])/ WhitespaceChars = ' ' + TAB + LF ValueSeparatorRx = /;|,/ HexColorRx = /^#[a-fA-F0-9]{6}$/ VimeoThumbnailRx = /<thumbnail_url>(.*?)<\/thumbnail_url>/ SourceHighlighters = %w(coderay pygments rouge).to_set ViewportWidth = ::Module.new (TitleStyles = { 'toc' => [:numbered_title], 'basic' => [:title], }).default = [:numbered_title, formal: true] def initialize backend, opts super basebackend 'html' filetype 'pdf' htmlsyntax 'html' outfilesuffix '.pdf' if (doc = opts[:document]) # NOTE enabling data-uri forces Asciidoctor Diagram to produce absolute image paths doc.attributes['data-uri'] = ((doc.instance_variable_get :@attribute_overrides) || {})['data-uri'] = '' end @initial_instance_variables = [:@initial_instance_variables] + instance_variables end def convert node, name = nil, _opts = {} method_name = %(convert_#{name ||= node.node_name}) if respond_to? method_name result = send method_name, node else # TODO: delegate to convert_method_missing logger.warn %(conversion missing in backend #{@backend} for #{name}) unless scratch? end # NOTE: inline nodes generate pseudo-HTML strings; the remainder write directly to PDF object ::Asciidoctor::Inline === node ? result : self end def traverse node, opts = {} # NOTE converter instance in scratch document gets duplicated; must be rewired to this one if self == (prev_converter = node.document.converter) prev_converter = nil else node.document.instance_variable_set :@converter, self end if node.blocks? node.content elsif node.content_model != :compound && (string = node.content) # TODO: this content could be cached on repeat invocations! layout_prose string, (opts.merge hyphenate: true) end node.document.instance_variable_set :@converter, prev_converter if prev_converter end def convert_document doc init_pdf doc # set default value for pagenums if not otherwise set doc.attributes['pagenums'] = '' unless (doc.attribute_locked? 'pagenums') || ((doc.instance_variable_get :@attributes_modified).include? 'pagenums') #assign_missing_section_ids doc # promote anonymous preface (defined using preamble block) to preface section # FIXME: this should be done in core if doc.doctype == 'book' && (blk0 = doc.blocks[0]) && blk0.context == :preamble && blk0.title? && !blk0.title.nil_or_empty? && blk0.blocks[0].style != 'abstract' && (blk1 = doc.blocks[1]) && blk1.context == :section preface = Section.new doc, blk1.level, false, attributes: { 1 => 'preface', 'style' => 'preface' } preface.special = true preface.sectname = 'preface' preface.title = blk0.instance_variable_get :@title # QUESTION should ID be generated from raw or converted title? core is not clear about this preface.id = preface.generate_id preface.blocks.replace blk0.blocks.map {|b| (b.parent = preface) && b } doc.blocks[0] = preface blk0 = blk1 = preface = nil # rubocop:disable Lint/UselessAssignment end on_page_create(&(method :init_page)) marked_page_number = page_number # NOTE: a new page will already be started (page_number = 2) if the front cover image is a PDF layout_cover_page doc, :front has_front_cover = page_number > marked_page_number if (use_title_page = doc.doctype == 'book' || (doc.attr? 'title-page')) layout_title_page doc has_title_page = page_number == (has_front_cover ? 2 : 1) end @page_margin_by_side[:cover] = @page_margin_by_side[:recto] if @media == 'prepress' && page_number == 0 # NOTE: font must be set before content is written to the main or scratch document start_new_page unless page.empty? font @theme.base_font_family, size: @root_font_size, style: (@theme.base_font_style || :normal).to_sym unless use_title_page body_start_page_number = page_number theme_font :heading, level: 1 do layout_heading doc.doctitle, align: (@theme.heading_h1_align || :center).to_sym, level: 1 end if doc.header? && !doc.notitle end num_front_matter_pages = toc_page_nums = toc_num_levels = nil indent_section do toc_num_levels = (doc.attr 'toclevels', 2).to_i if (insert_toc = (doc.attr? 'toc') && !(doc.attr? 'toc-placement', 'macro') && doc.sections?) start_new_page if @ppbook && verso_page? allocate_toc doc, toc_num_levels, @y, use_title_page else @toc_extent = nil end start_new_page if @ppbook && verso_page? if use_title_page zero_page_offset = has_front_cover ? 1 : 0 first_page_offset = has_title_page ? zero_page_offset.next : zero_page_offset body_offset = (body_start_page_number = page_number) - 1 if ::Integer === (running_content_start_at = @theme.running_content_start_at || 'body') running_content_body_offset = body_offset + [running_content_start_at.pred, 1].max running_content_start_at = 'body' else running_content_body_offset = body_offset running_content_start_at = 'toc' if running_content_start_at == 'title' && !has_title_page running_content_start_at = 'body' if running_content_start_at == 'toc' && !insert_toc end if ::Integer === (page_numbering_start_at = @theme.page_numbering_start_at || 'body') page_numbering_body_offset = body_offset + [page_numbering_start_at.pred, 1].max page_numbering_start_at = 'body' else page_numbering_body_offset = body_offset page_numbering_start_at = 'toc' if page_numbering_start_at == 'title' && !has_title_page page_numbering_start_at = 'body' if page_numbering_start_at == 'toc' && !insert_toc end front_matter_sig = [running_content_start_at, page_numbering_start_at] # table values are number of pages to skip before starting running content and page numbering, respectively num_front_matter_pages = { %w(title title) => [zero_page_offset, zero_page_offset], %w(title toc) => [zero_page_offset, first_page_offset], %w(title body) => [zero_page_offset, page_numbering_body_offset], %w(toc title) => [first_page_offset, zero_page_offset], %w(toc toc) => [first_page_offset, first_page_offset], %w(toc body) => [first_page_offset, page_numbering_body_offset], %w(body title) => [running_content_body_offset, zero_page_offset], %w(body toc) => [running_content_body_offset, first_page_offset], }[front_matter_sig] || [running_content_body_offset, page_numbering_body_offset] else num_front_matter_pages = [body_start_page_number - 1] * 2 end @index.start_page_number = num_front_matter_pages[1] + 1 doc.set_attr 'pdf-anchor', (doc_anchor = derive_anchor_from_id doc.id, 'top') add_dest_for_block doc, doc_anchor convert_section generate_manname_section doc if doc.doctype == 'manpage' && (doc.attr? 'manpurpose') traverse doc # NOTE: for a book, these are leftover footnotes; for an article this is everything outdent_section { layout_footnotes doc } # NOTE: delete orphaned page (a page was created but there was no additional content) # QUESTION should we delete page if document is empty? (leaving no pages?) if page_count > 1 go_to_page page_count unless last_page? delete_page if page.empty? end toc_page_nums = @toc_extent ? (layout_toc doc, toc_num_levels, @toc_extent[:page_nums].first, @toc_extent[:start_y], num_front_matter_pages[1]) : [] end unless page_count < body_start_page_number layout_running_content :header, doc, skip: num_front_matter_pages, body_start_page_number: body_start_page_number unless doc.noheader || @theme.header_height.to_f == 0 layout_running_content :footer, doc, skip: num_front_matter_pages, body_start_page_number: body_start_page_number unless doc.nofooter || @theme.footer_height.to_f == 0 end add_outline doc, (doc.attr 'outlinelevels', toc_num_levels), toc_page_nums, num_front_matter_pages[1], has_front_cover if !state.pages.empty? && (initial_zoom = @theme.page_initial_zoom) case initial_zoom.to_sym when :Fit catalog.data[:OpenAction] = dest_fit state.pages[0] when :FitV catalog.data[:OpenAction] = dest_fit_vertically 0, state.pages[0] when :FitH catalog.data[:OpenAction] = dest_fit_horizontally page_height, state.pages[0] end end catalog.data[:ViewerPreferences] = { DisplayDocTitle: true } stamp_foreground_image doc, has_front_cover layout_cover_page doc, :back remove_tmp_files nil end # NOTE: embedded only makes sense if perhaps we are building # on an existing Prawn::Document instance; for now, just treat # it the same as a full document. alias convert_embedded convert_document def init_pdf doc (instance_variables - @initial_instance_variables).each {|ivar| remove_instance_variable ivar } if state pdf_opts = build_pdf_options doc, (theme = load_theme doc) # QUESTION should page options be preserved? (otherwise, not readily available) #@page_opts = { size: pdf_opts[:page_size], layout: pdf_opts[:page_layout] } ((::Prawn::Document.instance_method :initialize).bind self).call pdf_opts renderer.min_version (@pdf_version = PDFVersions[doc.attr 'pdf-version']) @page_margin_by_side = { recto: page_margin, verso: page_margin, cover: page_margin } if (@media = doc.attr 'media', 'screen') == 'prepress' @ppbook = doc.doctype == 'book' page_margin_recto = @page_margin_by_side[:recto] if (page_margin_outer = theme.page_margin_outer) page_margin_recto[1] = @page_margin_by_side[:verso][3] = page_margin_outer end if (page_margin_inner = theme.page_margin_inner) page_margin_recto[3] = @page_margin_by_side[:verso][1] = page_margin_inner end # NOTE: prepare scratch document to use page margin from recto side (which has same width as verso side) set_page_margin page_margin_recto unless page_margin_recto == page_margin else @ppbook = nil end # QUESTION should ThemeLoader handle registering fonts instead? register_fonts theme.font_catalog, (doc.attr 'pdf-fontsdir', 'GEM_FONTS_DIR') default_kerning theme.base_font_kerning != 'none' @fallback_fonts = Array theme.font_fallbacks @allow_uri_read = doc.attr? 'allow-uri-read' @cache_uri = doc.attr? 'cache-uri' @tmp_files = {} if (bg_image = resolve_background_image doc, theme, 'page-background-image') && bg_image[0] @page_bg_image = { verso: bg_image, recto: bg_image } else @page_bg_image = { verso: nil, recto: nil } end if (bg_image = resolve_background_image doc, theme, 'page-background-image-verso') @page_bg_image[:verso] = bg_image[0] && bg_image end if (bg_image = resolve_background_image doc, theme, 'page-background-image-recto') @page_bg_image[:recto] = bg_image[0] && bg_image end @page_bg_color = resolve_theme_color :page_background_color, 'FFFFFF' @root_font_size = theme.base_font_size || 12 @font_color = theme.base_font_color || '000000' @text_decoration_width = theme.base_text_decoration_width @base_align = (align = doc.attr 'text-align') && (TextAlignmentNames.include? align) ? align : theme.base_align @cjk_line_breaks = doc.attr? 'scripts', 'cjk' if (hyphen_lang = doc.attr 'hyphens') && ((defined? ::Text::Hyphen::VERSION) || !(Helpers.require_library 'text/hyphen', 'text-hyphen', :warn).nil?) hyphen_lang = doc.attr 'lang' if hyphen_lang.empty? hyphen_lang = 'en_us' if hyphen_lang.nil_or_empty? || hyphen_lang == 'en' hyphen_lang = (hyphen_lang.tr '-', '_').downcase @hyphenator = ::Text::Hyphen.new language: hyphen_lang end @text_transform = nil @list_numerals = [] @list_bullets = [] @footnotes = [] @conum_glyphs = ConumSets[@theme.conum_glyphs || 'circled'] || (@theme.conum_glyphs.split ',').map {|r| from, to = r.rstrip.split '-', 2 to ? ((get_char from)..(get_char to)).to_a : [(get_char from)] }.flatten @section_indent = (val = @theme.section_indent) && (inflate_indent val) @toc_max_pagenum_digits = (doc.attr 'toc-max-pagenum-digits', 3).to_i @index = IndexCatalog.new # NOTE: we have to init Pdfmark class here while we have reference to the doc @pdfmark = (doc.attr? 'pdfmark') ? (Pdfmark.new doc) : nil # NOTE: defer instantiating optimizer until we know min pdf version if (@optimize = doc.attr 'optimize') @optimize = nil unless (defined? ::Asciidoctor::PDF::Optimizer) || !(Helpers.require_library OptimizerRequirePath, 'rghost', :warn).nil? end init_scratch_prototype self end def load_theme doc @theme ||= begin # rubocop:disable Naming/MemoizedInstanceVariableName if (theme = doc.options[:pdf_theme]) @themesdir = ::File.expand_path theme.__dir__ || (doc.attr 'pdf-themesdir') || (doc.attr 'pdf-stylesdir') || ::Dir.pwd elsif (theme_name = (doc.attr 'pdf-theme') || (doc.attr 'pdf-style')) theme = ThemeLoader.load_theme theme_name, (user_themesdir = (doc.attr 'pdf-themesdir') || (doc.attr 'pdf-stylesdir')) @themesdir = theme.__dir__ else @themesdir = (theme = ThemeLoader.load_theme).__dir__ end theme rescue if user_themesdir message = %(could not locate or load the pdf theme `#{theme_name}' in #{user_themesdir}) else message = %(could not locate or load the built-in pdf theme `#{theme_name}') end message += %( because of #{$!.class} #{$!.message}) unless ::SystemCallError === $! logger.error %(#{message}; reverting to default theme) @themesdir = (theme = ThemeLoader.load_theme).__dir__ theme end end def build_pdf_options doc, theme case (page_margin = (doc.attr 'pdf-page-margin') || theme.page_margin) when ::Array page_margin = page_margin.slice 0, 4 if page_margin.length > 4 page_margin = page_margin.map {|v| ::Numeric === v ? v : (str_to_pt v.to_s) } when ::Numeric page_margin = [page_margin] when ::String if page_margin.empty? page_margin = nil elsif (page_margin.start_with? '[') && (page_margin.end_with? ']') if (page_margin = (page_margin.slice 1, page_margin.length - 2).rstrip).empty? page_margin = [0] else if (page_margin = page_margin.split ',', -1).length > 4 page_margin = page_margin.slice 0, 4 end page_margin = page_margin.map {|v| str_to_pt v.rstrip } end else page_margin = [(str_to_pt page_margin)] end else page_margin = nil end if (doc.attr? 'pdf-page-size') && PageSizeRx =~ (doc.attr 'pdf-page-size') # e.g, [8.5in, 11in] if $1 page_size = [$1, $2] # e.g, 8.5in x 11in elsif $3 page_size = [$3, $4] # e.g, A4 else page_size = $& end else page_size = theme.page_size end case page_size when ::String # TODO: extract helper method to check for named page size page_size = page_size.upcase page_size = nil unless ::PDF::Core::PageGeometry::SIZES.key? page_size when ::Array page_size = (page_size.slice 0, 2).fill(0..1) {|i| page_size[i] || 0 } unless page_size.size == 2 page_size = page_size.map do |dim| if ::Numeric === dim # dimension cannot be less than 0 dim > 0 ? dim : break elsif ::String === dim && MeasurementPartsRx =~ dim # NOTE: truncate to max precision retained by PDF::Core (to_pt $1.to_f, $2).truncate 4 else break end end else page_size = nil end if (page_layout = (doc.attr 'pdf-page-layout') || theme.page_layout).nil_or_empty? || !PageLayouts.include?(page_layout = page_layout.to_sym) page_layout = nil end { margin: (page_margin || 36), page_size: (page_size || 'A4'), page_layout: (page_layout || :portrait), info: (build_pdf_info doc), compress: (doc.attr? 'compress'), skip_page_creation: true, text_formatter: (FormattedText::Formatter.new theme: theme), } end # FIXME: Pdfmark should use the PDF info result def build_pdf_info doc info = {} # FIXME: use sanitize: :plain_text once available if (doctitle = doc.header? ? doc.doctitle : (doc.attr 'untitled-label')) info[:Title] = (sanitize doctitle).as_pdf end info[:Author] = (doc.attr 'authors').as_pdf if doc.attr? 'authors' info[:Subject] = (doc.attr 'subject').as_pdf if doc.attr? 'subject' info[:Keywords] = (doc.attr 'keywords').as_pdf if doc.attr? 'keywords' info[:Producer] = (doc.attr 'publisher').as_pdf if doc.attr? 'publisher' if doc.attr? 'reproducible' info[:Creator] = 'Asciidoctor PDF, based on Prawn'.as_pdf info[:Producer] ||= (info[:Author] || info[:Creator]) else info[:Creator] = %(Asciidoctor PDF #{::Asciidoctor::PDF::VERSION}, based on Prawn #{::Prawn::VERSION}).as_pdf info[:Producer] ||= (info[:Author] || info[:Creator]) # NOTE: since we don't track the creation date of the input file, we map the ModDate header to the last modified # date of the input document and the CreationDate header to the date the PDF was produced by the converter. info[:ModDate] = (::Time.parse doc.attr 'docdatetime') rescue (now ||= ::Time.now) info[:CreationDate] = (::Time.parse doc.attr 'localdatetime') rescue (now || ::Time.now) end info end # NOTE: init_page is called within a float context # NOTE: init_page is not called for imported pages, front and back cover pages, and other image pages def init_page *_args # NOTE: we assume in prepress that physical page number reflects page side if @media == 'prepress' && (next_page_margin = @page_margin_by_side[page_number == 1 ? :cover : page_side]) != page_margin set_page_margin next_page_margin end if @page_bg_color && @page_bg_color != 'FFFFFF' tare = true fill_absolute_bounds @page_bg_color end if (bg_image = @page_bg_image[page_side]) tare = true # NOTE: float is necessary since prawn-svg may mess with cursor position float { canvas { image bg_image[0], ({ position: :center, vposition: :center }.merge bg_image[1]) } } end page.tare_content_stream if tare end def convert_section sect, _opts = {} if sect.sectname == 'abstract' # HACK: cheat a bit to hide this section from TOC; TOC should filter these sections sect.context = :open return convert_abstract sect end type = nil title = sect.numbered_title formal: true sep = (sect.attr 'separator', nil, false) || (sect.document.attr 'title-separator') || '' if !sep.empty? && title.include?(sep = %(#{sep} )) title, _, subtitle = title.rpartition sep title = %(#{title}\n<em class="subtitle">#{subtitle}</em>) end theme_font :heading, level: (hlevel = sect.level + 1) do align = (@theme[%(heading_h#{hlevel}_align)] || @theme.heading_align || @base_align).to_sym if sect.part_or_chapter? if sect.chapter? type = :chapter if @theme.heading_chapter_break_before == 'auto' start_new_chapter sect if @theme.heading_part_break_after == 'always' && sect == sect.parent.sections[0] else start_new_chapter sect end else type = :part start_new_part sect unless @theme.heading_part_break_before == 'auto' end end unless at_page_top? # FIXME: this height doesn't account for impact of text transform or inline formatting heading_height = (height_of_typeset_text title, line_height: (@theme[%(heading_h#{hlevel}_line_height)] || @theme.heading_line_height)) + (@theme[%(heading_h#{hlevel}_margin_top)] || @theme.heading_margin_top || 0) + (@theme[%(heading_h#{hlevel}_margin_bottom)] || @theme.heading_margin_bottom || 0) heading_height += (@theme.heading_min_height_after || 0) if sect.blocks? start_new_page unless cursor > heading_height end # QUESTION should we store pdf-page-start, pdf-anchor & pdf-destination in internal map? sect.set_attr 'pdf-page-start', (start_pgnum = page_number) # QUESTION should we just assign the section this generated id? # NOTE: section must have pdf-anchor in order to be listed in the TOC sect.set_attr 'pdf-anchor', (sect_anchor = derive_anchor_from_id sect.id, %(#{start_pgnum}-#{y.ceil})) add_dest_for_block sect, sect_anchor case type when :part layout_part_title sect, title, align: align, level: hlevel when :chapter layout_chapter_title sect, title, align: align, level: hlevel else layout_heading title, align: align, level: hlevel, outdent: true end end if sect.sectname == 'index' outdent_section { convert_index_section sect } else traverse sect end outdent_section { layout_footnotes sect } if type == :chapter sect.set_attr 'pdf-page-end', page_number end def indent_section if (values = @section_indent) indent(values[0], values[1]) { yield } else yield end end def outdent_section enabled = true if enabled && (values = @section_indent) indent(-values[0], -values[1]) { yield } else yield end end # QUESTION if a footnote ref appears in a separate chapter, should the footnote def be duplicated? def layout_footnotes node return if (fns = (doc = node.document).footnotes - @footnotes).empty? theme_margin :footnotes, :top with_dry_run do |box_height = nil| if box_height && (delta = cursor - box_height) > 0 move_down delta end theme_font :footnotes do (title = doc.attr 'footnotes-title') && (layout_caption title, category: :footnotes) item_spacing = @theme.footnotes_item_spacing fns.each do |fn| layout_prose %(<a id="_footnotedef_#{index = fn.index}">#{DummyText}</a>[<a anchor="_footnoteref_#{index}">#{index}</a>] #{fn.text}), margin_bottom: item_spacing, hyphenate: true end @footnotes += fns unless scratch? end end nil end def convert_floating_title node add_dest_for_block node if node.id hlevel = node.level.next unless (align = resolve_alignment_from_role node.roles) align = (@theme[%(heading_h#{hlevel}_align)] || @theme.heading_align || @base_align).to_sym end # QUESTION should we decouple styles from section titles? theme_font :heading, level: hlevel do layout_heading node.title, align: align, level: hlevel, outdent: (node.parent.context == :section) end end def convert_abstract node add_dest_for_block node if node.id outdent_section do pad_box @theme.abstract_padding do theme_font :abstract_title do layout_prose node.title, align: (@theme.abstract_title_align || @base_align).to_sym, margin_top: (@theme.heading_margin_top || 0), margin_bottom: (@theme.heading_margin_bottom || 0), line_height: @theme.heading_line_height end if node.title? theme_font :abstract do prose_opts = { line_height: @theme.abstract_line_height, align: (@theme.abstract_align || @base_align).to_sym, hyphenate: true } if (text_indent = @theme.prose_text_indent || 0) > 0 prose_opts[:indent_paragraphs] = text_indent end # FIXME: allow theme to control more first line options if (line1_font_style = @theme.abstract_first_line_font_style) && line1_font_style.to_sym != font_style first_line_options = { styles: [font_style, line1_font_style.to_sym] } end if (line1_font_color = @theme.abstract_first_line_font_color) (first_line_options ||= {})[:color] = line1_font_color end prose_opts[:first_line_options] = first_line_options if first_line_options # FIXME: make this cleaner!! if node.blocks? node.blocks.each do |child| # FIXME: is playback necessary here? child.document.playback_attributes child.attributes if child.context == :paragraph layout_prose child.content, ((align = resolve_alignment_from_role child.roles) ? (prose_opts.merge align: align) : prose_opts.dup) prose_opts.delete :first_line_options else # FIXME: this could do strange things if the wrong kind of content shows up traverse child end end elsif node.content_model != :compound && (string = node.content) if (align = resolve_alignment_from_role node.roles) prose_opts[:align] = align end layout_prose string, prose_opts end end end # QUESTION should we be adding margin below the abstract?? #theme_margin :block, :bottom end end def convert_preamble node # FIXME: core should not be promoting paragraph to preamble if there are no sections if node.blocks? && (first_block = node.blocks[0]).context == :paragraph && node.document.sections? first_block.add_role 'lead' unless first_block.role? end traverse node end def convert_paragraph node add_dest_for_block node if node.id prose_opts = { margin_bottom: 0, hyphenate: true } lead = (roles = node.roles).include? 'lead' if (align = resolve_alignment_from_role roles) prose_opts[:align] = align end if (text_indent = @theme.prose_text_indent || 0) > 0 prose_opts[:indent_paragraphs] = text_indent end # TODO: check if we're within one line of the bottom of the page # and advance to the next page if so (similar to logic for section titles) layout_caption node.title if node.title? if lead theme_font :lead do layout_prose node.content, prose_opts end else layout_prose node.content, prose_opts end if (margin_inner_val = @theme.prose_margin_inner) && (next_block = (siblings = node.parent.blocks)[(siblings.index node) + 1]) && next_block.context == :paragraph margin_bottom margin_inner_val else margin_bottom @theme.prose_margin_bottom end end def convert_admonition node add_dest_for_block node if node.id theme_margin :block, :top type = node.attr 'name' label_align = (@theme.admonition_label_align || :center).to_sym # TODO: allow vertical_align to be a number if (label_valign = (@theme.admonition_label_vertical_align || :middle).to_sym) == :middle label_valign = :center end if (label_min_width = @theme.admonition_label_min_width) label_min_width = label_min_width.to_f end icons = ((doc = node.document).attr? 'icons') ? (doc.attr 'icons') : nil if (data_uri_enabled = doc.attr? 'data-uri') doc.remove_attr 'data-uri' end if icons == 'font' && !(node.attr? 'icon', nil, false) label_text = type.to_sym icon_data = admonition_icon_data label_text label_width = label_min_width || ((icon_size = icon_data[:size] || 24) * 1.5) # NOTE: icon_uri will consider icon attribute on node first, then type # QUESTION should we use resolve_image_path here? elsif icons && (icon_path = node.icon_uri type) && (icon_path = node.normalize_system_path icon_path, nil, nil, target_name: 'admonition icon') && (::File.readable? icon_path) icons = true # TODO: introduce @theme.admonition_image_width? or use size key from admonition_icon_<name>? label_width = label_min_width || 36.0 else if icons icons = nil logger.warn %(admonition icon not found or not readable: #{icon_path}) unless scratch? end label_text = node.caption theme_font :admonition_label do theme_font %(admonition_label_#{type}) do label_text = transform_text label_text, @text_transform if @text_transform label_width = rendered_width_of_string label_text label_width = label_min_width if label_min_width && label_min_width > label_width end end end doc.set_attr 'data-uri', '' if data_uri_enabled unless ::Array === (cpad = @theme.admonition_padding) cpad = ::Array.new 4, cpad end unless ::Array === (lpad = @theme.admonition_label_padding || cpad) lpad = ::Array.new 4, lpad end # FIXME: this shift stuff is a real hack until we have proper margin collapsing shift_base = @theme.prose_margin_bottom shift_top = shift_base / 3.0 shift_bottom = (shift_base * 2) / 3.0 keep_together do |box_height = nil| push_scratch doc if scratch? theme_fill_and_stroke_block :admonition, box_height if box_height pad_box [0, cpad[1], 0, lpad[3]] do if box_height label_height = [box_height, cursor].min if (rule_color = @theme.admonition_column_rule_color) && (rule_width = @theme.admonition_column_rule_width || @theme.base_border_width) && rule_width > 0 float do rule_height = box_height while rule_height > 0 rule_segment_height = [rule_height, cursor].min bounding_box [0, cursor], width: label_width + lpad[1], height: rule_segment_height do stroke_vertical_rule rule_color, at: bounds.right, line_style: (@theme.admonition_column_rule_style || :solid).to_sym, line_width: rule_width end advance_page if (rule_height -= rule_segment_height) > 0 end end end float do bounding_box [0, cursor], width: label_width, height: label_height do if icons == 'font' # FIXME: we assume icon is square icon_size = fit_icon_to_bounds icon_size # NOTE: Prawn's vertical center is not reliable, so calculate it manually if label_valign == :center label_valign = :top if (vcenter_pos = (label_height - icon_size) * 0.5) > 0 move_down vcenter_pos end end icon icon_data[:name], valign: label_valign, align: label_align, color: icon_data[:stroke_color], size: icon_size elsif icons if (::Asciidoctor::Image.format icon_path) == 'svg' begin svg_obj = ::Prawn::SVG::Interface.new ::File.read(icon_path, mode: 'r:UTF-8'), self, position: label_align, vposition: label_valign, width: label_width, height: label_height, fallback_font_name: fallback_svg_font_name, enable_web_requests: allow_uri_read, enable_file_requests_with_root: (::File.dirname icon_path), cache_images: cache_uri if (icon_height = (svg_size = svg_obj.document.sizing).output_height) > label_height icon_width = (svg_obj.resize height: (icon_height = label_height)).output_width else icon_width = svg_size.output_width end svg_obj.draw svg_obj.document.warnings.each do |icon_warning| logger.warn %(problem encountered in image: #{icon_path}; #{icon_warning}) end unless scratch? rescue logger.warn %(could not embed admonition icon: #{icon_path}; #{$!.message}) unless scratch? end else begin image_obj, image_info = ::File.open(icon_path, 'rb') {|fd| build_image_object fd } icon_aspect_ratio = image_info.width.fdiv image_info.height # NOTE: don't scale image up if smaller than label_width icon_width = [(to_pt image_info.width, :px), label_width].min if (icon_height = icon_width * (1 / icon_aspect_ratio)) > label_height icon_width *= label_height / icon_height icon_height = label_height # rubocop:disable Lint/UselessAssignment end embed_image image_obj, image_info, width: icon_width, position: label_align, vposition: label_valign rescue # QUESTION should we show the label in this case? logger.warn %(could not embed admonition icon: #{icon_path}; #{$!.message}) unless scratch? end end else # IMPORTANT the label must fit in the alotted space or it shows up on another page! # QUESTION anyway to prevent text overflow in the case it doesn't fit? theme_font :admonition_label do theme_font %(admonition_label_#{type}) do # NOTE: Prawn's vertical center is not reliable, so calculate it manually if label_valign == :center label_valign = :top if (vcenter_pos = (label_height - (height_of_typeset_text label_text, line_height: 1)) * 0.5) > 0 move_down vcenter_pos end end @text_transform = nil # already applied to label layout_prose label_text, align: label_align, valign: label_valign, line_height: 1, margin: 0, inline_format: false end end end end end end pad_box [cpad[0], 0, cpad[2], label_width + lpad[1] + cpad[3]] do move_down shift_top layout_caption node.title, category: :admonition if node.title? theme_font :admonition do traverse node end # FIXME: HACK compensate for margin bottom of admonition content move_up shift_bottom unless at_page_top? end end pop_scratch doc if scratch? end theme_margin :block, :bottom end def convert_example node add_dest_for_block node if node.id theme_margin :block, :top caption_height = node.title? ? (layout_caption node, category: :example, dry_run: true) : 0 keep_together do |box_height = nil| push_scratch node.document if scratch? if box_height theme_fill_and_stroke_block :example, box_height, caption_node: node else move_down caption_height end pad_box @theme.example_padding do theme_font :example do traverse node end end pop_scratch node.document if scratch? end theme_margin :block, :bottom end def convert_open node if node.style == 'abstract' convert_abstract node else doc = node.document keep_together_if node.option? 'unbreakable' do push_scratch doc if scratch? add_dest_for_block node if node.id layout_caption node.title if node.title? traverse node pop_scratch doc if scratch? end end end def convert_quote_or_verse node add_dest_for_block node if node.id theme_margin :block, :top category = node.context == :quote ? :blockquote : :verse unless (b_left_width = @theme[%(#{category}_border_left_width)]) && b_left_width > 0 b_left_width = nil if (b_width = @theme[%(#{category}_border_width)]) b_width = nil unless b_width > 0 end end keep_together do |box_height = nil| push_scratch node.document if scratch? theme_fill_and_stroke_block category, box_height, border_width: b_width if box_height && (b_width || @theme[%(#{category}_background_color)]) start_page_number = page_number start_cursor = cursor caption_height = node.title? ? (layout_caption node, category: category) : 0 pad_box @theme[%(#{category}_padding)] do theme_font category do if category == :blockquote traverse node else # verse content = guard_indentation node.content layout_prose content, normalize: false, align: :left, hyphenate: true end end if node.attr? 'attribution', nil, false theme_font %(#{category}_cite) do layout_prose %(#{EmDash} #{[(node.attr 'attribution'), (node.attr 'citetitle', nil, false)].compact.join ', '}), align: :left, normalize: false end end end # FIXME: we want to draw graphics before content, but box_height is not reliable when spanning pages # FIXME: border extends to bottom of content area if block terminates at bottom of page if box_height && b_left_width b_color = @theme[%(#{category}_border_color)] page_spread = page_number - start_page_number + 1 end_cursor = cursor go_to_page start_page_number move_cursor_to start_cursor page_spread.times do |i| if i == 0 y_draw = cursor b_height = page_spread > 1 ? y_draw : (y_draw - end_cursor) else bounds.move_past_bottom y_draw = cursor b_height = page_spread - 1 == i ? (y_draw - end_cursor) : y_draw end # NOTE: skip past caption if present if caption_height > 0 if caption_height > cursor caption_height -= cursor next # keep skipping, caption is on next page end y_draw -= caption_height b_height -= caption_height caption_height = 0 end # NOTE: b_height is 0 when block terminates at bottom of page next if b_height == 0 bounding_box [0, y_draw], width: bounds.width, height: b_height do stroke_vertical_rule b_color, line_width: b_left_width, at: b_left_width * 0.5 end end end pop_scratch node.document if scratch? end theme_margin :block, :bottom end alias convert_quote convert_quote_or_verse alias convert_verse convert_quote_or_verse def convert_sidebar node add_dest_for_block node if node.id theme_margin :block, :top keep_together do |box_height = nil| push_scratch node.document if scratch? theme_fill_and_stroke_block :sidebar, box_height if box_height pad_box @theme.sidebar_padding do theme_font :sidebar_title do # QUESTION should we allow margins of sidebar title to be customized? layout_prose node.title, align: (@theme.sidebar_title_align || @base_align).to_sym, margin_top: 0, margin_bottom: (@theme.heading_margin_bottom || 0), line_height: @theme.heading_line_height end if node.title? theme_font :sidebar do traverse node end end pop_scratch node.document if scratch? end theme_margin :block, :bottom end def convert_colist node # HACK: undo the margin below previous listing or literal block # TODO: allow this to be set using colist_margin_top unless at_page_top? if (self_idx = node.parent.blocks.index node) && self_idx > 0 && [:listing, :literal].include?(node.parent.blocks[self_idx - 1].context) move_up @theme.block_margin_bottom - @theme.outline_list_item_spacing end end add_dest_for_block node if node.id @list_numerals << 1 #stroke_horizontal_rule @theme.caption_border_bottom_color line_metrics = theme_font(:conum) { calc_line_metrics @theme.base_line_height } node.items.each do |item| allocate_space_for_list_item line_metrics convert_colist_item item end @list_numerals.pop # correct bottom margin of last item list_margin_bottom = @theme.prose_margin_bottom margin_bottom list_margin_bottom - @theme.outline_list_item_spacing end def convert_colist_item node marker_width = nil @list_numerals << (index = @list_numerals.pop).next theme_font :conum do marker_width = rendered_width_of_string %(#{marker = conum_glyph index}x) float do bounding_box [0, cursor], width: marker_width do theme_font :conum do layout_prose marker, align: :center, line_height: @theme.conum_line_height, inline_format: false, margin: 0 end end end end indent marker_width do traverse_list_item node, :colist, margin_bottom: @theme.outline_list_item_spacing, normalize_line_height: true end end def convert_dlist node add_dest_for_block node if node.id case (style = node.style) when 'unordered', 'ordered' if style == 'unordered' list_style = :ulist (markers = @list_bullets) << :disc else list_style = :olist (markers = @list_numerals) << 1 end list = List.new node.parent, list_style stack_subject = node.has_role? 'stack' subject_stop = node.attr 'subject-stop', (stack_subject ? nil : ':'), false node.items.each do |subjects, dd| subject = (Array subjects).first.text list_item_text = %(+++<strong>#{subject}#{(StopPunctRx.match? sanitize subject) ? '' : subject_stop}</strong>#{dd.text? ? "#{stack_subject ? '<br>' : ' '}#{dd.text}" : ''}+++) list_item = ListItem.new list, list_item_text dd.blocks.each {|it| list_item << it } list << list_item end convert_outline_list list markers.pop when 'horizontal' table_data = [] term_padding = desc_padding = term_line_metrics = term_inline_format = term_kerning = nil max_term_width = 0 theme_font :description_list_term do if (term_font_styles = font_styles).empty? term_inline_format = true else term_inline_format = [inherited: { styles: term_font_styles }] end term_line_metrics = calc_line_metrics @theme.description_list_term_line_height || @theme.base_line_height term_padding = [term_line_metrics.padding_top, 10, (@theme.prose_margin_bottom || 0) * 0.5 + term_line_metrics.padding_bottom, 10] desc_padding = [0, 10, (@theme.prose_margin_bottom || 0) * 0.5, 10] term_kerning = default_kerning? end node.items.each do |terms, desc| term_text = terms.map(&:text).join ?\n if (term_width = width_of term_text, inline_format: term_inline_format, kerning: term_kerning) > max_term_width max_term_width = term_width end row_data = [{ text_color: @font_color, kerning: term_kerning, content: term_text, inline_format: term_inline_format, padding: term_padding, leading: term_line_metrics.leading, # FIXME: prawn-table doesn't have support for final_gap option #final_gap: term_line_metrics.final_gap, valign: :top, }] desc_container = Block.new desc, :open desc_container << (Block.new desc_container, :paragraph, source: (desc.instance_variable_get :@text), subs: :default) if desc.text? desc.blocks.each {|b| desc_container << b } if desc.block? row_data << { content: (::Prawn::Table::Cell::AsciiDoc.new self, content: desc_container, text_color: @font_color, padding: desc_padding, valign: :top), } table_data << row_data end max_term_width += (term_padding[1] + term_padding[3]) term_column_width = [max_term_width, bounds.width * 0.5].min table table_data, position: :left, cell_style: { border_width: 0 }, column_widths: [term_column_width] do @pdf.layout_table_caption node if node.title? end margin_bottom (@theme.prose_margin_bottom || 0) * 0.5 when 'qanda' @list_numerals << '1' convert_outline_list node @list_numerals.pop else # TODO: check if we're within one line of the bottom of the page # and advance to the next page if so (similar to logic for section titles) layout_caption node.title, category: :description_list if node.title? term_line_height = @theme.description_list_term_line_height || @theme.base_line_height line_metrics = theme_font(:description_list_term) { calc_line_metrics term_line_height } node.items.each do |terms, desc| # NOTE: don't orphan the terms (keep together terms and at least one line of content) allocate_space_for_list_item line_metrics, (terms.size + 1), ((@theme.description_list_term_spacing || 0) + 0.05) theme_font :description_list_term do if (term_font_styles = font_styles).empty? term_font_styles = nil end terms.each do |term| # QUESTION should we pass down styles in other calls to layout_prose layout_prose term.text, margin_top: 0, margin_bottom: @theme.description_list_term_spacing, align: :left, line_height: term_line_height, normalize_line_height: true, styles: term_font_styles end end indent(@theme.description_list_description_indent || 0) do traverse_list_item desc, :dlist_desc, normalize_line_height: true end if desc end end end def convert_olist node add_dest_for_block node if node.id # TODO: move list_numeral resolve to a method case node.style when 'arabic' list_numeral = 1 when 'decimal' list_numeral = '01' when 'loweralpha' list_numeral = 'a' when 'upperalpha' list_numeral = 'A' when 'lowerroman' list_numeral = RomanNumeral.new 'i' when 'upperroman' list_numeral = RomanNumeral.new 'I' when 'lowergreek' list_numeral = LowercaseGreekA when 'unstyled', 'unnumbered', 'no-bullet' list_numeral = nil when 'none' list_numeral = '' else list_numeral = 1 end if list_numeral && list_numeral != '' && (start = (node.attr 'start', nil, false) || ((node.option? 'reversed') ? node.items.size : nil)) if (start = start.to_i) > 1 (start - 1).times { list_numeral = list_numeral.next } elsif start < 1 && !(::String === list_numeral) (start - 1).abs.times { list_numeral = list_numeral.pred } end end @list_numerals << list_numeral convert_outline_list node @list_numerals.pop end def convert_ulist node add_dest_for_block node if node.id # TODO: move bullet_type to method on List (or helper method) if node.option? 'checklist' @list_bullets << :checkbox else if (style = node.style) case style when 'bibliography' bullet_type = :square when 'unstyled', 'no-bullet' bullet_type = nil else candidate = style.to_sym if Bullets.key? candidate bullet_type = candidate else logger.warn %(unknown unordered list style: #{candidate}) unless scratch? bullet_type = :disc end end else case node.outline_level when 1 bullet_type = :disc when 2 bullet_type = :circle else bullet_type = :square end end @list_bullets << bullet_type end convert_outline_list node @list_bullets.pop end def convert_outline_list node # TODO: check if we're within one line of the bottom of the page # and advance to the next page if so (similar to logic for section titles) layout_caption node.title, category: :outline_list if node.title? opts = {} if (align = resolve_alignment_from_role node.roles) opts[:align] = align elsif node.style == 'bibliography' opts[:align] = :left elsif (align = @theme.outline_list_text_align) # NOTE: theme setting only affects alignment of list text (not nested blocks) opts[:align] = align.to_sym end line_metrics = calc_line_metrics @theme.base_line_height complex = false # ...or if we want to give all items in the list the same treatment #complex = node.items.find(&:complex?) ? true : false if (node.context == :ulist && !@list_bullets[-1]) || (node.context == :olist && !@list_numerals[-1]) if node.style == 'unstyled' # unstyled takes away all indentation list_indent = 0 elsif (list_indent = @theme.outline_list_indent || 0) > 0 # no-bullet aligns text with left-hand side of bullet position (as though there's no bullet) list_indent = [list_indent - (rendered_width_of_string %(#{node.context == :ulist ? ?\u2022 : '1.'}x)), 0].max end else list_indent = @theme.outline_list_indent || 0 end indent list_indent do node.items.each do |item| allocate_space_for_list_item line_metrics convert_outline_list_item item, node, opts end end # NOTE: Children will provide the necessary bottom margin if last item is complex. # However, don't leave gap at the bottom if list is nested in an outline list unless complex || (node.nested? && node.parent.parent.outline?) # correct bottom margin of last item margin_bottom((@theme.prose_margin_bottom || 0) - (@theme.outline_list_item_spacing || 0)) end end def convert_outline_list_item node, list, opts = {} # TODO: move this to a draw_bullet (or draw_marker) method marker_style = {} marker_style[:font_color] = @theme.outline_list_marker_font_color || @font_color marker_style[:font_family] = font_family marker_style[:font_size] = font_size marker_style[:line_height] = @theme.base_line_height case (list_type = list.context) when :ulist complex = node.complex? if (marker_type = @list_bullets[-1]) if marker_type == :checkbox # QUESTION should we remove marker indent if not a checkbox? if node.attr? 'checkbox', nil, false marker_type = (node.attr? 'checked', nil, false) ? :checked : :unchecked marker = @theme[%(ulist_marker_#{marker_type}_content)] || BallotBox[marker_type] end else marker = @theme[%(ulist_marker_#{marker_type}_content)] || Bullets[marker_type] end [:font_color, :font_family, :font_size, :line_height].each do |prop| marker_style[prop] = @theme[%(ulist_marker_#{marker_type}_#{prop})] || @theme[%(ulist_marker_#{prop})] || marker_style[prop] end if marker end when :olist complex = node.complex? if (index = @list_numerals.pop) if index == '' marker = '' else marker = %(#{index}.) dir = (node.parent.option? 'reversed') ? :pred : :next @list_numerals << (index.public_send dir) end end when :dlist # NOTE: list.style is 'qanda' complex = node[1]&.complex? @list_numerals << (index = @list_numerals.pop).next marker = %(#{index}.) else complex = node.complex? logger.warn %(unknown list type #{list_type.inspect}) unless scratch? marker = @theme.ulist_marker_disc_content || Bullets[:disc] end if marker if marker_style[:font_family] == 'fa' logger.info 'deprecated fa icon set found in theme; use fas, far, or fab instead' unless scratch? marker_style[:font_family] = FontAwesomeIconSets.find {|candidate| (icon_font_data candidate).yaml[candidate].value? marker } || 'fas' end marker_gap = rendered_width_of_char 'x' font marker_style[:font_family], size: marker_style[:font_size] do marker_width = rendered_width_of_string marker # NOTE compensate if character_spacing is not applied to first character # see https://github.com/prawnpdf/prawn/commit/c61c5d48841910aa11b9e3d6f0e01b68ce435329 character_spacing_correction = 0 character_spacing(-0.5) do character_spacing_correction = 0.5 if (rendered_width_of_char 'x', character_spacing: -0.5) == marker_gap end marker_height = height_of_typeset_text marker, line_height: marker_style[:line_height], single_line: true start_position = -marker_width + -marker_gap + character_spacing_correction float do start_new_page if @media == 'prepress' && cursor < marker_height flow_bounding_box start_position, width: marker_width do layout_prose marker, align: :right, character_spacing: -0.5, color: marker_style[:font_color], inline_format: false, line_height: marker_style[:line_height], margin: 0, normalize: false, single_line: true end end end end if complex traverse_list_item node, list_type, (opts.merge normalize_line_height: true) else traverse_list_item node, list_type, (opts.merge margin_bottom: @theme.outline_list_item_spacing, normalize_line_height: true) end end def traverse_list_item node, list_type, opts = {} if list_type == :dlist # qanda terms, desc = node terms.each {|term| layout_prose %(<em>#{term.text}</em>), (opts.merge margin_top: 0, margin_bottom: @theme.description_list_term_spacing) } if desc layout_prose desc.text, (opts.merge hyphenate: true) if desc.text? traverse desc end else if (primary_text = node.text).nil_or_empty? layout_prose DummyText, opts unless node.blocks? else layout_prose primary_text, (opts.merge hyphenate: true) end traverse node end end def allocate_space_for_list_item line_metrics, number = 1, additional_gap = 0 advance_page if !at_page_top? && cursor < (line_metrics.height + line_metrics.leading + line_metrics.padding_top + additional_gap) * number end def convert_image node, opts = {} node.extend ::Asciidoctor::Image unless ::Asciidoctor::Image === node target, image_format = node.target_and_format if image_format == 'gif' && !(defined? ::GMagick::Image) logger.warn %(GIF image format not supported. Install the prawn-gmagick gem or convert #{target} to PNG.) unless scratch? image_path = nil elsif ::Base64 === target image_path = target elsif (image_path = resolve_image_path node, target, (opts.fetch :relative_to_imagesdir, true), image_format) if image_format == 'pdf' if ::File.readable? image_path if (id = node.id) add_dest_block = proc do node.set_attr 'pdf-destination', (node_dest = dest_top) add_dest id, node_dest end end # NOTE: import_page automatically advances to next page afterwards # QUESTION should we add destination to top of imported page? if (pgnums = node.attr 'pages', nil, false) (resolve_pagenums pgnums).each_with_index do |pgnum, idx| if idx == 0 import_page image_path, page: pgnum, replace: page.empty?, &add_dest_block else import_page image_path, page: pgnum, replace: true end end else import_page image_path, page: [(node.attr 'page', nil, 1).to_i, 1].max, replace: page.empty?, &add_dest_block end else # QUESTION should we use alt text in this case? logger.warn %(pdf to insert not found or not readable: #{image_path}) unless scratch? end return elsif !(::File.readable? image_path) logger.warn %(image to embed not found or not readable: #{image_path}) unless scratch? image_path = nil end elsif image_format == 'pdf' # QUESTION should we use alt text in this case? return end theme_margin :block, :top unless (pinned = opts[:pinned]) return on_image_error :missing, node, target, opts unless image_path alignment = ((node.attr 'align', nil, false) || @theme.image_align || :left).to_sym # TODO: support cover (aka canvas) image layout using "canvas" (or "cover") role width = resolve_explicit_width node.attributes, (available_w = bounds.width), support_vw: true, use_fallback: true, constrain_to_bounds: true # TODO: add `to_pt page_width` method to ViewportWidth type width = (width.to_f / 100) * page_width if ViewportWidth === width # NOTE: if width is not set explicitly and max-width is fit-content, caption height may not be accurate caption_h = node.title? ? (layout_caption node, category: :image, side: :bottom, block_align: alignment, block_width: width, max_width: @theme.image_caption_max_width, dry_run: true) : 0 align_to_page = node.option? 'align-to-page' begin rendered_w = nil span_page_width_if align_to_page do if image_format == 'svg' if ::Base64 === image_path svg_data = ::Base64.decode64 image_path file_request_root = false else svg_data = ::File.read image_path, mode: 'r:UTF-8' file_request_root = ::File.dirname image_path end svg_obj = ::Prawn::SVG::Interface.new svg_data, self, position: alignment, width: width, fallback_font_name: fallback_svg_font_name, enable_web_requests: allow_uri_read, enable_file_requests_with_root: file_request_root, cache_images: cache_uri rendered_w = (svg_size = svg_obj.document.sizing).output_width if !width && (svg_obj.document.root.attributes.key? 'width') # NOTE: scale native width & height from px to pt and restrict width to available width if (adjusted_w = [available_w, (to_pt rendered_w, :px)].min) != rendered_w svg_size = svg_obj.resize width: (rendered_w = adjusted_w) end end # NOTE: shrink image so it fits within available space; group image & caption if (rendered_h = svg_size.output_height) > (available_h = cursor - caption_h) unless pinned || at_page_top? advance_page available_h = cursor - caption_h end rendered_w = (svg_obj.resize height: (rendered_h = available_h)).output_width if rendered_h > available_h end image_y = y image_cursor = cursor add_dest_for_block node if node.id # NOTE: workaround to fix Prawn not adding fill and stroke commands on page that only has an image; # breakage occurs when running content (stamps) are added to page # seems to be resolved as of Prawn 2.2.2 update_colors if graphic_state.color_space.empty? # NOTE: prawn-svg 0.24.0, 0.25.0, & 0.25.1 didn't restore font after call to draw (see mogest/prawn-svg#80) # NOTE: cursor advances automatically svg_obj.draw svg_obj.document.warnings.each do |img_warning| logger.warn %(problem encountered in image: #{image_path}; #{img_warning}) end unless scratch? draw_image_border image_cursor, rendered_w, rendered_h, alignment unless node.role? && (node.has_role? 'noborder') if (link = node.attr 'link', nil, false) add_link_to_image link, { width: rendered_w, height: rendered_h }, position: alignment, y: image_y end else # FIXME: this code really needs to be better organized! # NOTE: use low-level API to access intrinsic dimensions; build_image_object caches image data previously loaded image_obj, image_info = ::Base64 === image_path ? ::StringIO.open((::Base64.decode64 image_path), 'rb') {|fd| build_image_object fd } : ::File.open(image_path, 'rb') {|fd| build_image_object fd } # NOTE: if width is not specified, scale native width & height from px to pt and restrict width to available width rendered_w, rendered_h = image_info.calc_image_dimensions width: (width || [available_w, (to_pt image_info.width, :px)].min) # NOTE: shrink image so it fits within available space; group image & caption if rendered_h > (available_h = cursor - caption_h) unless pinned || at_page_top? advance_page available_h = cursor - caption_h end rendered_w, rendered_h = image_info.calc_image_dimensions height: available_h if rendered_h > available_h end image_y = y image_cursor = cursor add_dest_for_block node if node.id # NOTE: workaround to fix Prawn not adding fill and stroke commands on page that only has an image; # breakage occurs when running content (stamps) are added to page # seems to be resolved as of Prawn 2.2.2 update_colors if graphic_state.color_space.empty? # NOTE: specify both width and height to avoid recalculation embed_image image_obj, image_info, width: rendered_w, height: rendered_h, position: alignment draw_image_border image_cursor, rendered_w, rendered_h, alignment unless node.role? && (node.has_role? 'noborder') if (link = node.attr 'link', nil, false) add_link_to_image link, { width: rendered_w, height: rendered_h }, position: alignment, y: image_y end # NOTE: Asciidoctor disables automatic advancement of cursor for raster images, so move cursor manually move_down rendered_h if y == image_y end end layout_caption node, category: :image, side: :bottom, block_align: alignment, block_width: rendered_w, max_width: @theme.image_caption_max_width if node.title? theme_margin :block, :bottom unless pinned rescue on_image_error :exception, node, target, (opts.merge message: %(could not embed image: #{image_path}; #{$!.message}#{::Prawn::Errors::UnsupportedImageType === $! && !(defined? ::GMagick::Image) ? '; install prawn-gmagick gem to add support' : ''})) end end def draw_image_border top, w, h, alignment if (@theme.image_border_width || 0) > 0 && @theme.image_border_color if (@theme.image_border_fit || 'content') == 'auto' bb_width = bounds.width elsif alignment == :center bb_x = (bounds.width - w) * 0.5 elsif alignment == :right bb_x = bounds.width - w end bounding_box [(bb_x || 0), top], width: (bb_width || w), height: h, position: alignment do theme_fill_and_stroke_bounds :image, background_color: nil end true end end def on_image_error _reason, node, target, opts = {} logger.warn opts[:message] if (opts.key? :message) && !scratch? alt_text_vars = { alt: (node.attr 'alt'), target: target } alt_text_template = @theme.image_alt_content || '%{link}[%{alt}]%{/link} | <em>%{target}</em>' if (link = node.attr 'link', nil, false) alt_text_vars[:link] = %(<a href="#{link}">) alt_text_vars[:'/link'] = '</a>' else alt_text_vars[:link] = '' alt_text_vars[:'/link'] = '' end alt_text = alt_text_template % alt_text_vars theme_font :image_alt do layout_prose alt_text, align: ((node.attr 'align', nil, false) || @theme.image_align).to_sym, margin: 0, normalize: false, single_line: true end layout_caption node, category: :image, side: :bottom if node.title? theme_margin :block, :bottom unless opts[:pinned] nil end def convert_audio node add_dest_for_block node if node.id theme_margin :block, :top audio_path = node.media_uri node.attr 'target' play_symbol = (node.document.attr? 'icons', 'font') ? %(<font name="fas">#{(icon_font_data 'fas').unicode 'play'}</font>) : RightPointer layout_prose %(#{play_symbol}#{NoBreakSpace}<a href="#{audio_path}">#{audio_path}</a> <em>(audio)</em>), normalize: false, margin: 0, single_line: true layout_caption node, side: :bottom if node.title? theme_margin :block, :bottom end def convert_video node case (poster = node.attr 'poster', nil, false) when 'youtube' video_path = %(https://www.youtube.com/watch?v=#{video_id = node.attr 'target'}) # see http://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api poster = allow_uri_read ? %(https://img.youtube.com/vi/#{video_id}/maxresdefault.jpg) : nil type = 'YouTube video' when 'vimeo' video_path = %(https://vimeo.com/#{video_id = node.attr 'target'}) if allow_uri_read poster = load_open_uri.open_uri(%(https://vimeo.com/api/oembed.xml?url=https%3A//vimeo.com/#{video_id}&width=1280), 'r') {|f| (VimeoThumbnailRx.match f.read)[1] } rescue nil else poster = nil end type = 'Vimeo video' else video_path = node.media_uri node.attr 'target' type = 'video' end if poster.nil_or_empty? add_dest_for_block node if node.id theme_margin :block, :top play_symbol = (node.document.attr? 'icons', 'font') ? %(<font name="fas">#{(icon_font_data 'fas').unicode 'play'}</font>) : RightPointer layout_prose %(#{play_symbol}#{NoBreakSpace}<a href="#{video_path}">#{video_path}</a> <em>(#{type})</em>), normalize: false, margin: 0, single_line: true layout_caption node, side: :bottom if node.title? theme_margin :block, :bottom else original_attributes = node.attributes.dup begin node.update_attributes 'target' => poster, 'link' => video_path #node.set_attr 'pdfwidth', '100%' unless (node.attr? 'width') || (node.attr? 'pdfwidth') convert_image node ensure node.attributes.replace original_attributes end end end # QUESTION can we avoid arranging fragments multiple times (conums & autofit) by eagerly preparing arranger? def convert_listing_or_literal node add_dest_for_block node if node.id # HACK: disable built-in syntax highlighter; must be done before calling node.content! if node.style == 'source' && (highlighter = (syntax_hl = node.document.syntax_highlighter)&.highlight? && syntax_hl.name) case highlighter when 'coderay' unless defined? ::Asciidoctor::Prawn::CodeRayEncoder highlighter = nil if (Helpers.require_library CodeRayRequirePath, 'coderay', :warn).nil? end when 'pygments' unless defined? ::Pygments::Ext::BlockStyles highlighter = nil if (Helpers.require_library PygmentsRequirePath, 'pygments.rb', :warn).nil? end when 'rouge' unless defined? ::Rouge::Formatters::Prawn highlighter = nil if (Helpers.require_library RougeRequirePath, 'rouge', :warn).nil? end end prev_subs = (subs = node.subs).dup # NOTE: the highlight sub is only set for coderay, rouge, and pygments atm highlight_idx = subs.index :highlight # NOTE: scratch? here only applies if listing block is nested inside another block if !highlighter || scratch? highlighter = nil if highlight_idx # switch the :highlight sub back to :specialcharacters subs[highlight_idx] = :specialcharacters else prev_subs = nil end source_string = guard_indentation node.content else # NOTE: the source highlighter logic below handles the callouts and highlight subs if highlight_idx subs.delete_all :highlight, :callouts else subs.delete_all :specialcharacters, :callouts end # NOTE: indentation guards will be added by the source highlighter logic source_string = expand_tabs node.content end else highlighter = nil source_string = guard_indentation node.content end case highlighter when 'coderay' source_string, conum_mapping = extract_conums source_string srclang = node.attr 'language', 'text', false begin ::CodeRay::Scanners[(srclang = (srclang.start_with? 'html+') ? (srclang.slice 5, srclang.length).to_sym : srclang.to_sym)] rescue ::ArgumentError srclang = :text end fragments = (::CodeRay.scan source_string, srclang).to_prawn source_chunks = conum_mapping ? (restore_conums fragments, conum_mapping) : fragments when 'pygments' style = (node.document.attr 'pygments-style') || 'pastie' # QUESTION allow border color to be set by theme for highlighted block? pg_block_styles = ::Pygments::Ext::BlockStyles.for style bg_color_override = pg_block_styles[:background_color] font_color_override = pg_block_styles[:font_color] if source_string.empty? source_chunks = [] else lexer = (::Pygments::Lexer.find_by_alias node.attr 'language', 'text', false) || (::Pygments::Lexer.find_by_mimetype 'text/plain') lexer_opts = { nowrap: true, noclasses: true, stripnl: false, style: style } lexer_opts[:startinline] = !(node.option? 'mixed') if lexer.name == 'PHP' source_string, conum_mapping = extract_conums source_string # NOTE: highlight can return nil if something goes wrong; fallback to encoded source string if this happens result = (lexer.highlight source_string, options: lexer_opts) || (node.apply_subs source_string, [:specialcharacters]) if node.attr? 'highlight', nil, false if (highlight_lines = (node.method :resolve_lines_to_highlight).arity.abs > 1 ? (node.resolve_lines_to_highlight source_string, (node.attr 'highlight')) : (node.resolve_lines_to_highlight node.attr 'highlight')).empty? highlight_lines = nil else pg_highlight_bg_color = pg_block_styles[:highlight_background_color] highlight_lines = highlight_lines.map {|linenum| [linenum, pg_highlight_bg_color] }.to_h end end if node.attr? 'linenums' linenums = (node.attr 'start', 1, false).to_i @theme.code_linenum_font_color ||= '999999' postprocess = true wrap_ext = FormattedText::SourceWrap elsif conum_mapping || highlight_lines postprocess = true end fragments = text_formatter.format result fragments = restore_conums fragments, conum_mapping, linenums, highlight_lines if postprocess source_chunks = guard_indentation_in_fragments fragments end when 'rouge' formatter = (@rouge_formatter ||= ::Rouge::Formatters::Prawn.new theme: (node.document.attr 'rouge-style'), line_gap: @theme.code_line_gap, highlight_background_color: @theme.code_highlight_background_color) # QUESTION allow border color to be set by theme for highlighted block? bg_color_override = formatter.background_color if source_string.empty? source_chunks = [] else if node.attr? 'linenums' formatter_opts = { line_numbers: true, start_line: (node.attr 'start', 1, false).to_i } wrap_ext = FormattedText::SourceWrap else formatter_opts = {} end if (srclang = node.attr 'language', nil, false) if srclang.include? '?' if (lexer = ::Rouge::Lexer.find_fancy srclang) unless lexer.tag != 'php' || (node.option? 'mixed') || ((lexer_opts = lexer.options).key? 'start_inline') lexer = lexer.class.new lexer_opts.merge 'start_inline' => true end end elsif (lexer = ::Rouge::Lexer.find srclang) lexer = lexer.new start_inline: true if lexer.tag == 'php' && !(node.option? 'mixed') end end lexer ||= ::Rouge::Lexers::PlainText source_string, conum_mapping = extract_conums source_string if node.attr? 'highlight', nil, false unless (hl_lines = (node.method :resolve_lines_to_highlight).arity.abs > 1 ? (node.resolve_lines_to_highlight source_string, (node.attr 'highlight')) : (node.resolve_lines_to_highlight node.attr 'highlight')).empty? formatter_opts[:highlight_lines] = hl_lines.map {|linenum| [linenum, true] }.to_h end end fragments = formatter.format (lexer.lex source_string), formatter_opts source_chunks = conum_mapping ? (restore_conums fragments, conum_mapping) : fragments end else # NOTE: only format if we detect a need (callouts or inline formatting) source_chunks = (XMLMarkupRx.match? source_string) ? (text_formatter.format source_string) : [text: source_string] end node.subs.replace prev_subs if prev_subs adjusted_font_size = ((node.option? 'autofit') || (node.document.attr? 'autofit-option')) ? (theme_font_size_autofit source_chunks, :code) : nil theme_margin :block, :top keep_together do |box_height = nil| caption_height = node.title? ? (layout_caption node, category: :code) : 0 theme_font :code do theme_fill_and_stroke_block :code, (box_height - caption_height), background_color: bg_color_override, split_from_top: false if box_height pad_box @theme.code_padding do ::Prawn::Text::Formatted::Box.extensions << wrap_ext if wrap_ext typeset_formatted_text source_chunks, (calc_line_metrics @theme.code_line_height || @theme.base_line_height), color: (font_color_override || @theme.code_font_color || @font_color), size: adjusted_font_size ::Prawn::Text::Formatted::Box.extensions.pop if wrap_ext end end end stroke_horizontal_rule @theme.caption_border_bottom_color if node.title? && @theme.caption_border_bottom_color theme_margin :block, :bottom end alias convert_listing convert_listing_or_literal alias convert_literal convert_listing_or_literal def convert_pass node node = node.dup (subs = node.subs.dup).unshift :specialcharacters node.instance_variable_set :@subs, subs.uniq convert_listing_or_literal node end alias convert_stem convert_listing_or_literal # Extract callout marks from string, indexed by 0-based line number # Return an Array with the processed string as the first argument # and the mapping of lines to conums as the second. def extract_conums string conum_mapping = {} auto_num = 0 string = string.split(LF).map.with_index {|line, line_num| # FIXME: we get extra spaces before numbers if more than one on a line if line.include? '<' line = line.gsub CalloutExtractRx do # honor the escape if $1 == ?\\ $&.sub $1, '' else (conum_mapping[line_num] ||= []) << ($3 == '.' ? (auto_num += 1) : $3.to_i) '' end end # NOTE use first position to store space that precedes conums if (conum_mapping.key? line_num) && (line.end_with? ' ') trimmed_line = line.rstrip conum_mapping[line_num].unshift line.slice trimmed_line.length, line.length line = trimmed_line end end line }.join LF conum_mapping = nil if conum_mapping.empty? [string, conum_mapping] end # Restore the conums into the Array of formatted text fragments #-- # QUESTION can this be done more efficiently? # QUESTION can we reuse arrange_fragments_by_line? def restore_conums fragments, conum_mapping, linenums = nil, highlight_lines = nil lines = [] line_num = 0 # reorganize the fragments into an array of lines fragments.each do |fragment| line = (lines[line_num] ||= []) if (text = fragment[:text]) == LF lines[line_num += 1] ||= [] elsif text.include? LF text.split(LF, -1).each_with_index do |line_in_fragment, idx| line = (lines[line_num += 1] ||= []) unless idx == 0 line << (fragment.merge text: line_in_fragment) unless line_in_fragment.empty? end else line << fragment end end conum_font_color = @theme.conum_font_color if (conum_font_name = @theme.conum_font_family) == font_name conum_font_name = nil end last_line_num = lines.size - 1 if linenums pad_size = (last_line_num + 1).to_s.length linenum_color = @theme.code_linenum_font_color end # append conums to appropriate lines, then flatten to an array of fragments lines.flat_map.with_index do |line, cur_line_num| last_line = cur_line_num == last_line_num visible_line_num = cur_line_num + (linenums || 1) if highlight_lines && (highlight_bg_color = highlight_lines[visible_line_num]) line.unshift text: DummyText, background_color: highlight_bg_color, highlight: true, inline_block: true, extend: true, width: 0, callback: [FormattedText::TextBackgroundAndBorderRenderer] end line.unshift text: %(#{visible_line_num.to_s.rjust pad_size} ), linenum: visible_line_num, color: linenum_color if linenums if conum_mapping && (conums = conum_mapping.delete cur_line_num) line << { text: conums.shift } if ::String === conums[0] conum_text = conums.map {|num| conum_glyph num }.join ' ' conum_fragment = { text: conum_text } conum_fragment[:color] = conum_font_color if conum_font_color conum_fragment[:font] = conum_font_name if conum_font_name line << conum_fragment end line << { text: LF } unless last_line line end end def conum_glyph number @conum_glyphs[number - 1] end def convert_table node add_dest_for_block node if node.id # TODO: we could skip a lot of the logic below when num_rows == 0 num_rows = node.attr 'rowcount' num_cols = node.columns.size table_header_size = false theme = @theme tbl_bg_color = resolve_theme_color :table_background_color # QUESTION should we fallback to page background color? (which is never transparent) #tbl_bg_color = resolve_theme_color :table_background_color, @page_bg_color # ...and if so, should we try to be helpful and use @page_bg_color for tables nested in blocks? #unless tbl_bg_color # tbl_bg_color = @page_bg_color unless [:section, :document].include? node.parent.context #end # NOTE: emulate table bg color by using it as a fallback value for each element head_bg_color = resolve_theme_color :table_head_background_color, tbl_bg_color foot_bg_color = resolve_theme_color :table_foot_background_color, tbl_bg_color body_bg_color = resolve_theme_color :table_body_background_color, tbl_bg_color body_stripe_bg_color = resolve_theme_color :table_body_stripe_background_color, tbl_bg_color base_header_cell_data = nil header_cell_line_metrics = nil table_data = [] theme_font :table do head_rows = node.rows[:head] body_rows = node.rows[:body] #if (hrows = node.attr 'hrows', false, nil) && (shift_rows = hrows.to_i - head_rows.size) > 0 # head_rows = head_rows.dup # body_rows = body_rows.dup # shift_rows.times { head_rows << body_rows.shift unless body_rows.empty? } #end theme_font :table_head do table_header_size = head_rows.size head_font_info = font_info head_line_metrics = calc_line_metrics theme.base_line_height head_cell_padding = theme.table_head_cell_padding || theme.table_cell_padding head_cell_padding = ::Array === head_cell_padding && head_cell_padding.size == 4 ? head_cell_padding.dup : (inflate_padding head_cell_padding) head_cell_padding[0] += head_line_metrics.padding_top head_cell_padding[2] += head_line_metrics.padding_bottom # QUESTION why doesn't text transform inherit from table? head_transform = resolve_text_transform :table_head_text_transform, nil base_cell_data = { inline_format: [normalize: true], background_color: head_bg_color, text_color: @font_color, size: head_font_info[:size], font: head_font_info[:family], font_style: head_font_info[:style], kerning: default_kerning?, padding: head_cell_padding, leading: head_line_metrics.leading, # TODO: patch prawn-table to pass through final_gap option #final_gap: head_line_metrics.final_gap, } head_rows.each do |row| table_data << (row.map do |cell| cell_text = head_transform ? (transform_text cell.text.strip, head_transform) : cell.text.strip cell_text = hyphenate_text cell_text, @hyphenator if defined? @hyphenator base_cell_data.merge \ content: cell_text, colspan: cell.colspan || 1, align: (cell.attr 'halign', nil, false).to_sym, valign: (val = cell.attr 'valign', nil, false) == 'middle' ? :center : val.to_sym end) end end unless head_rows.empty? base_cell_data = { font: (body_font_info = font_info)[:family], font_style: body_font_info[:style], size: body_font_info[:size], kerning: default_kerning?, text_color: @font_color, } body_cell_line_metrics = calc_line_metrics theme.base_line_height (body_rows + node.rows[:foot]).each do |row| table_data << (row.map do |cell| cell_data = base_cell_data.merge \ colspan: cell.colspan || 1, rowspan: cell.rowspan || 1, align: (cell.attr 'halign', nil, false).to_sym, valign: (val = cell.attr 'valign', nil, false) == 'middle' ? :center : val.to_sym cell_line_metrics = body_cell_line_metrics case cell.style when :emphasis cell_data[:font_style] = :italic when :strong cell_data[:font_style] = :bold when :header unless base_header_cell_data theme_font :table_head do theme_font :table_header_cell do header_cell_font_info = font_info base_header_cell_data = { text_color: @font_color, font: header_cell_font_info[:family], size: header_cell_font_info[:size], font_style: header_cell_font_info[:style], text_transform: @text_transform, } header_cell_line_metrics = calc_line_metrics theme.base_line_height end end if (val = resolve_theme_color :table_header_cell_background_color, head_bg_color) base_header_cell_data[:background_color] = val end end cell_data.update base_header_cell_data cell_transform = cell_data.delete :text_transform cell_line_metrics = header_cell_line_metrics when :monospaced cell_data.delete :font_style theme_font :literal do mono_cell_font_info = font_info cell_data[:font] = mono_cell_font_info[:family] cell_data[:size] = mono_cell_font_info[:size] cell_data[:text_color] = @font_color cell_line_metrics = calc_line_metrics theme.base_line_height end when :literal # NOTE: we want the raw AsciiDoc in this case cell_data[:content] = guard_indentation cell.instance_variable_get :@text # NOTE: the absence of the inline_format option implies it's disabled cell_data.delete :font_style # QUESTION should we use literal_font_*, code_font_*, or introduce another category? theme_font :code do literal_cell_font_info = font_info cell_data[:font] = literal_cell_font_info[:family] cell_data[:size] = literal_cell_font_info[:size] cell_data[:text_color] = @font_color cell_line_metrics = calc_line_metrics theme.base_line_height end when :verse cell_data[:content] = guard_indentation cell.text cell_data[:inline_format] = true cell_data.delete :font_style when :asciidoc cell_data.delete :kerning cell_data.delete :font_style cell_line_metrics = nil asciidoc_cell = ::Prawn::Table::Cell::AsciiDoc.new self, (cell_data.merge content: cell.inner_document, font_style: (val = theme.table_font_style) ? val.to_sym : nil, padding: theme.table_cell_padding) cell_data = { content: asciidoc_cell } end if cell_line_metrics cell_padding = ::Array === (cell_padding = theme.table_cell_padding) && cell_padding.size == 4 ? cell_padding.dup : (inflate_padding cell_padding) cell_padding[0] += cell_line_metrics.padding_top cell_padding[2] += cell_line_metrics.padding_bottom cell_data[:leading] = cell_line_metrics.leading # TODO: patch prawn-table to pass through final_gap option #cell_data[:final_gap] = cell_line_metrics.final_gap cell_data[:padding] = cell_padding end unless cell_data.key? :content cell_text = cell.text.strip cell_text = transform_text cell_text, cell_transform if cell_transform cell_text = hyphenate_text cell_text, @hyphenator if defined? @hyphenator cell_text = cell_text.gsub CjkLineBreakRx, ZeroWidthSpace if @cjk_line_breaks if cell_text.include? LF # NOTE: effectively the same as calling cell.content (should we use that instead?) # FIXME: hard breaks not quite the same result as separate paragraphs; need custom cell impl here cell_data[:content] = (cell_text.split BlankLineRx).map {|l| l.tr_s WhitespaceChars, ' ' }.join DoubleLF cell_data[:inline_format] = true else cell_data[:content] = cell_text cell_data[:inline_format] = [normalize: true] end end if node.document.attr? 'cellbgcolor' if (cell_bg_color = node.document.attr 'cellbgcolor') == 'transparent' cell_data[:background_color] = body_bg_color elsif (cell_bg_color.start_with? '#') && (HexColorRx.match? cell_bg_color) cell_data[:background_color] = cell_bg_color.slice 1, cell_bg_color.length end end cell_data end) end end # NOTE: Prawn aborts if table data is empty, so ensure there's at least one row if table_data.empty? logger.warn message_with_context 'no rows found in table', source_location: node.source_location table_data << ::Array.new([node.columns.size, 1].max) { { content: '' } } end border_width = {} table_border_color = theme.table_border_color || theme.table_grid_color || theme.base_border_color table_border_style = (theme.table_border_style || :solid).to_sym table_border_width = theme.table_border_width if table_header_size head_border_bottom_color = theme.table_head_border_bottom_color || table_border_color head_border_bottom_style = (theme.table_head_border_bottom_style || table_border_style).to_sym head_border_bottom_width = theme.table_head_border_bottom_width || table_border_width end [:top, :bottom, :left, :right].each {|edge| border_width[edge] = table_border_width } table_grid_color = theme.table_grid_color || table_border_color table_grid_style = (theme.table_grid_style || table_border_style).to_sym table_grid_width = theme.table_grid_width || theme.table_border_width [:cols, :rows].each {|edge| border_width[edge] = table_grid_width } case (grid = node.attr 'grid', 'all', 'table-grid') when 'all' # keep inner borders when 'cols' border_width[:rows] = 0 when 'rows' border_width[:cols] = 0 else # none border_width[:rows] = border_width[:cols] = 0 end case (frame = node.attr 'frame', 'all', 'table-frame') when 'all' # keep outer borders when 'topbot', 'ends' border_width[:left] = border_width[:right] = 0 when 'sides' border_width[:top] = border_width[:bottom] = 0 else # none border_width[:top] = border_width[:right] = border_width[:bottom] = border_width[:left] = 0 end if node.option? 'autowidth' table_width = (node.attr? 'width', nil, false) ? bounds.width * ((node.attr 'tablepcwidth') / 100.0) : (((node.has_role? 'stretch') || (node.has_role? 'spread')) ? bounds.width : nil) column_widths = [] else table_width = bounds.width * ((node.attr 'tablepcwidth') / 100.0) column_widths = node.columns.map {|col| ((col.attr 'colpcwidth') * table_width) / 100.0 } end if ((alignment = node.attr 'align', nil, false) && (BlockAlignmentNames.include? alignment)) || (alignment = (node.roles & BlockAlignmentNames)[-1]) alignment = alignment.to_sym else alignment = (theme.table_align || :left).to_sym end caption_side = (theme.table_caption_side || :top).to_sym caption_max_width = theme.table_caption_max_width || 'fit-content' table_settings = { header: table_header_size, # NOTE: position is handled by this method position: :left, cell_style: { # NOTE: the border color and style of the outer frame is set later border_color: table_grid_color, border_lines: [table_grid_style], # NOTE: the border width is set later border_width: 0, }, width: table_width, column_widths: column_widths, } # QUESTION should we support nth; should we support sequence of roles? case node.attr 'stripes', nil, 'table-stripes' when 'all' table_settings[:row_colors] = [body_stripe_bg_color] when 'even' table_settings[:row_colors] = [body_bg_color, body_stripe_bg_color] when 'odd' table_settings[:row_colors] = [body_stripe_bg_color, body_bg_color] else # none table_settings[:row_colors] = [body_bg_color] end theme_margin :block, :top left_padding = right_padding = nil table table_data, table_settings do # NOTE: call width to capture resolved table width table_width = width @pdf.layout_table_caption node, alignment, table_width, caption_max_width if node.title? && caption_side == :top # NOTE align using padding instead of bounding_box as prawn-table does # using a bounding_box across pages mangles the margin box of subsequent pages if alignment != :left && table_width != (this_bounds = @pdf.bounds).width if alignment == :center left_padding = right_padding = (this_bounds.width - width) * 0.5 this_bounds.add_left_padding left_padding this_bounds.add_right_padding right_padding else # :right left_padding = this_bounds.width - width this_bounds.add_left_padding left_padding end end if grid == 'none' && frame == 'none' rows(table_header_size).tap do |r| r.border_bottom_color = head_border_bottom_color r.border_bottom_line = head_border_bottom_style r.border_bottom_width = head_border_bottom_width end if table_header_size else # apply the grid setting first across all cells cells.border_width = [border_width[:rows], border_width[:cols], border_width[:rows], border_width[:cols]] if table_header_size rows(table_header_size - 1).tap do |r| r.border_bottom_color = head_border_bottom_color r.border_bottom_line = head_border_bottom_style r.border_bottom_width = head_border_bottom_width end rows(table_header_size).tap do |r| r.border_top_color = head_border_bottom_color r.border_top_line = head_border_bottom_style r.border_top_width = head_border_bottom_width end if num_rows > table_header_size end # top edge of table rows(0).tap do |r| r.border_top_color, r.border_top_line, r.border_top_width = table_border_color, table_border_style, border_width[:top] end # right edge of table columns(num_cols - 1).tap do |r| r.border_right_color, r.border_right_line, r.border_right_width = table_border_color, table_border_style, border_width[:right] end # bottom edge of table rows(num_rows - 1).tap do |r| r.border_bottom_color, r.border_bottom_line, r.border_bottom_width = table_border_color, table_border_style, border_width[:bottom] end # left edge of table columns(0).tap do |r| r.border_left_color, r.border_left_line, r.border_left_width = table_border_color, table_border_style, border_width[:left] end end # QUESTION should cell padding be configurable for foot row cells? unless node.rows[:foot].empty? foot_row = row num_rows.pred foot_row.background_color = foot_bg_color # FIXME: find a way to do this when defining the cells foot_row.text_color = theme.table_foot_font_color if theme.table_foot_font_color foot_row.size = theme.table_foot_font_size if theme.table_foot_font_size foot_row.font = theme.table_foot_font_family if theme.table_foot_font_family foot_row.font_style = theme.table_foot_font_style.to_sym if theme.table_foot_font_style # HACK: we should do this transformation when creating the cell #if (foot_transform = resolve_text_transform :table_foot_text_transform, nil) # foot_row.each {|c| c.content = (transform_text c.content, foot_transform) if c.content } #end end end if left_padding bounds.subtract_left_padding left_padding bounds.subtract_right_padding right_padding if right_padding end layout_table_caption node, alignment, table_width, caption_max_width, caption_side if node.title? && caption_side == :bottom theme_margin :block, :bottom end def convert_thematic_break _node theme_margin :thematic_break, :top stroke_horizontal_rule @theme.thematic_break_border_color, line_width: @theme.thematic_break_border_width, line_style: @theme.thematic_break_border_style.to_sym theme_margin :thematic_break, :bottom end # deprecated alias convert_horizontal_rule convert_thematic_break def convert_toc node if ((doc = node.document).attr? 'toc-placement', 'macro') && doc.sections? if (is_book = doc.doctype == 'book') start_new_page unless at_page_top? start_new_page if @ppbook && verso_page? && !(node.option? 'nonfacing') end add_dest_for_block node, (derive_anchor_from_id node.id, 'toc') allocate_toc doc, (doc.attr 'toclevels', 2).to_i, @y, (is_book || (doc.attr? 'title-page')) end nil end # NOTE to insert sequential page breaks, you must put {nbsp} between page breaks def convert_page_break node if (page_layout = node.attr 'page-layout').nil_or_empty? unless node.role? && (page_layout = (node.roles.map(&:to_sym) & PageLayouts)[-1]) page_layout = nil end elsif !PageLayouts.include?(page_layout = page_layout.to_sym) page_layout = nil end if at_page_top? if page_layout && page_layout != page.layout && page.empty? delete_page advance_page layout: page_layout end elsif page_layout advance_page layout: page_layout else advance_page end end def convert_index_section _node unless @index.empty? space_needed_for_category = @theme.description_list_term_spacing + (2 * (height_of_typeset_text 'A')) column_box [0, cursor], columns: 2, width: bounds.width, reflow_margins: true do @index.categories.each do |category| # NOTE cursor method always returns 0 inside column_box; breaks reference_bounds.move_past_bottom bounds.move_past_bottom if space_needed_for_category > y - reference_bounds.absolute_bottom layout_prose category.name, align: :left, inline_format: false, margin_top: 0, margin_bottom: @theme.description_list_term_spacing, style: @theme.description_list_term_font_style.to_sym category.terms.each do |term| convert_index_list_item term end if @theme.prose_margin_bottom > y - reference_bounds.absolute_bottom bounds.move_past_bottom else move_down @theme.prose_margin_bottom end end end end nil end def convert_index_list_item term text = escape_xml term.name unless term.container? if @media == 'screen' pagenums = term.dests.map {|dest| %(<a anchor="#{dest[:anchor]}">#{dest[:page]}</a>) } else pagenums = consolidate_ranges term.dests.uniq {|dest| dest[:page] }.map {|dest| dest[:page].to_s } end text = %(#{text}, #{pagenums.join ', '}) end subterm_indent = @theme.description_list_description_indent layout_prose text, align: :left, margin: 0, normalize_line_height: true, hanging_indent: subterm_indent * 2 indent subterm_indent do term.subterms.each do |subterm| convert_index_list_item subterm end end unless term.leaf? end def convert_inline_anchor node doc = node.document target = node.target case node.type when :link attrs = [] #attrs << %( id="#{node.id}") if node.id if (role = node.role) attrs << %( class="#{role}") end #attrs << %( title="#{node.attr 'title'}") if node.attr? 'title' attrs << %( target="#{node.attr 'window'}") if node.attr? 'window', nil, false if (@media ||= doc.attr 'media', 'screen') != 'screen' && (target.start_with? 'mailto:') && (doc.attr? 'hide-uri-scheme') bare_target = target.slice 7, target.length node.add_role 'bare' if (text = node.text) == bare_target else bare_target = target text = node.text end if (role = node.attr 'role', nil, false) && (role == 'bare' || (role.split.include? 'bare')) # QUESTION should we insert breakable chars into URI when building fragment instead? %(<a href="#{target}"#{attrs.join}>#{breakable_uri text}</a>) # NOTE @media may not be initialized if method is called before convert phase elsif (doc.attr? 'show-link-uri') || !(@media == 'screen' || (doc.attribute_locked? 'show-link-uri') || ((doc.instance_variable_get :@attributes_modified).include? 'show-link-uri')) # QUESTION should we insert breakable chars into URI when building fragment instead? # TODO: allow style of printed link to be controlled by theme %(<a href="#{target}"#{attrs.join}>#{text}</a> [<font size="0.85em">#{breakable_uri bare_target}</font>]) else %(<a href="#{target}"#{attrs.join}>#{text}</a>) end when :xref # NOTE non-nil path indicates this is an inter-document xref that's not included in current document if (path = node.attributes['path']) # NOTE we don't use local as that doesn't work on the web # NOTE for the fragment to work in most viewers, it must be #page=<N> <= document this! %(<a href="#{target}">#{node.text || path}</a>) elsif (refid = node.attributes['refid']) unless (text = node.text) if ::Asciidoctor::AbstractNode === (ref = doc.catalog[:refs][refid]) text = ref.xreftext node.attr 'xrefstyle', nil, true end end %(<a anchor="#{derive_anchor_from_id refid}">#{text || "[#{refid}]"}</a>).gsub ']', ']' else %(<a anchor="#{doc.attr 'pdf-anchor'}">#{node.text || '[^top]'}</a>) end when :ref # NOTE destination is created inside callback registered by FormattedTextTransform#build_fragment # NOTE id is used instead of target starting in Asciidoctor 2.0.0 %(<a id="#{target || node.id}">#{DummyText}</a>) when :bibref # NOTE destination is created inside callback registered by FormattedTextTransform#build_fragment # NOTE technically node.text should be node.reftext, but subs have already been applied to text # NOTE reftext is no longer enclosed in [] starting in Asciidoctor 2.0.0 # NOTE id is used instead of target starting in Asciidoctor 2.0.0 if (reftext = node.reftext) reftext = %([#{reftext}]) unless reftext.start_with? '[' else reftext = %([#{target || node.id}]) end %(<a id="#{target || node.id}">#{DummyText}</a>#{reftext}) else logger.warn %(unknown anchor type: #{node.type.inspect}) unless scratch? end end def convert_inline_break node %(#{node.text}<br>) end def convert_inline_button node %(<button>#{((load_theme node.document).button_content || '%s').sub '%s', node.text}</button>) end def convert_inline_callout node if (conum_font_family = @theme.conum_font_family) == font_name result = conum_glyph node.text.to_i else result = %(<font name="#{conum_font_family}">#{conum_glyph node.text.to_i}</font>) end if (conum_font_color = @theme.conum_font_color) # NOTE CMYK value gets flattened here, but is restored by formatted text parser result = %(<color rgb="#{conum_font_color}">#{result}</font>) end result end def convert_inline_footnote node if (index = node.attr 'index') && (node.document.footnotes.find {|fn| fn.index == index }) anchor = node.type == :xref ? '' : %(<a id="_footnoteref_#{index}">#{DummyText}</a>) %(#{anchor}<sup>[<a anchor="_footnotedef_#{index}">#{index}</a>]</sup>) elsif node.type == :xref # NOTE footnote reference not found %( <color rgb="FF0000">[#{node.text}]</color>) end end def convert_inline_icon node if node.document.attr? 'icons', 'font' if (icon_name = node.target).include? '@' icon_name, icon_set = icon_name.split '@', 2 explicit_icon_set = true elsif (icon_set = node.attr 'set', nil, false) explicit_icon_set = true else icon_set = node.document.attr 'icon-set', 'fa' end if icon_set == 'fa' || !(IconSets.include? icon_set) icon_set = 'fa' # legacy name from Font Awesome < 5 if (remapped_icon_name = resolve_legacy_icon_name icon_name) requested_icon_name = icon_name icon_set, icon_name = remapped_icon_name.split '-', 2 glyph = (icon_font_data icon_set).unicode icon_name logger.info { %(#{requested_icon_name} icon found in deprecated fa icon set; using #{icon_name} from #{icon_set} icon set instead) } unless scratch? # new name in Font Awesome >= 5 (but document is configured to use fa icon set) else font_data = nil if (resolved_icon_set = FontAwesomeIconSets.find {|candidate| (font_data = icon_font_data candidate).unicode icon_name rescue nil }) icon_set = resolved_icon_set glyph = font_data.unicode icon_name logger.info { %(#{icon_name} icon not found in deprecated fa icon set; using match found in #{resolved_icon_set} icon set instead) } unless scratch? end end else glyph = (icon_font_data icon_set).unicode icon_name rescue nil end unless glyph || explicit_icon_set || !icon_name.start_with?(*IconSetPrefixes) icon_set, icon_name = icon_name.split '-', 2 glyph = (icon_font_data icon_set).unicode icon_name rescue nil end if glyph if node.attr? 'size', nil, false case (size = node.attr 'size') when 'lg' size_attr = ' size="1.333em"' when 'fw' size_attr = ' width="1em"' else size_attr = %( size="#{size.sub 'x', 'em'}") end else size_attr = '' end class_attr = node.role? ? %( class="#{node.role}") : '' # TODO: support rotate and flip attributes %(<font name="#{icon_set}"#{size_attr}#{class_attr}>#{glyph}</font>) else logger.warn %(#{icon_name} is not a valid icon name in the #{icon_set} icon set) unless scratch? %([#{node.attr 'alt'}]) end else %([#{node.attr 'alt'}]) end end def convert_inline_image node if node.type == 'icon' convert_inline_icon node else node.extend ::Asciidoctor::Image unless ::Asciidoctor::Image === node target, image_format = node.target_and_format if image_format == 'gif' && !(defined? ::GMagick::Image) logger.warn %(GIF image format not supported. Install the prawn-gmagick gem or convert #{target} to PNG.) unless scratch? img = %([#{node.attr 'alt'}]) # NOTE an image with a data URI is handled using a temporary file elsif (image_path = resolve_image_path node, target, true, image_format) if ::File.readable? image_path width_attr = (width = preresolve_explicit_width node.attributes) ? %( width="#{width}") : '' fit_attr = (fit = node.attr 'fit', nil, false) ? %( fit="#{fit}") : '' img = %(<img src="#{image_path}" format="#{image_format}" alt="#{encode_quotes node.attr 'alt'}"#{width_attr}#{fit_attr}>) else logger.warn %(image to embed not found or not readable: #{image_path}) unless scratch? img = %([#{node.attr 'alt'}]) end else img = %([#{node.attr 'alt'}]) end (node.attr? 'link', nil, false) ? %(<a href="#{node.attr 'link'}">#{img}</a>) : img end end def convert_inline_indexterm node # NOTE indexterms not supported if text gets substituted before PDF is initialized if !(defined? @index) '' elsif scratch? node.type == :visible ? node.text : '' else # NOTE page number (:page key) is added by InlineDestinationMarker dest = { anchor: (anchor_name = @index.next_anchor_name) } anchor = %(<a id="#{anchor_name}" type="indexterm">#{DummyText}</a>) if node.type == :visible visible_term = node.text @index.store_primary_term (sanitize visible_term), dest %(#{anchor}#{visible_term}) else @index.store_term((node.attr 'terms').map {|term| sanitize term }, dest) anchor end end end def convert_inline_kbd node if (keys = node.attr 'keys').size == 1 %(<key>#{keys[0]}</key>) else keys.map {|key| %(<key>#{key}</key>) }.join (load_theme node.document).key_separator || '+' end end def convert_inline_menu node menu = node.attr 'menu' caret = (load_theme node.document).menu_caret_content || %( \u203a ) if !(submenus = node.attr 'submenus').empty? %(<strong>#{[menu, *submenus, (node.attr 'menuitem')].join caret}</strong>) elsif (menuitem = node.attr 'menuitem') %(<strong>#{menu}#{caret}#{menuitem}</strong>) else %(<strong>#{menu}</strong>) end end def convert_inline_quoted node case node.type when :emphasis open, close, is_tag = ['<em>', '</em>', true] when :strong open, close, is_tag = ['<strong>', '</strong>', true] when :monospaced, :asciimath, :latexmath open, close, is_tag = ['<code>', '</code>', true] when :superscript open, close, is_tag = ['<sup>', '</sup>', true] when :subscript open, close, is_tag = ['<sub>', '</sub>', true] when :double open, close, is_tag = ['“', '”', false] when :single open, close, is_tag = ['‘', '’', false] when :mark open, close, is_tag = ['<mark>', '</mark>', true] else open, close, is_tag = [nil, nil, false] end inner_text = node.text if (role = node.role) if (text_transform = (load_theme node.document)[%(role_#{role}_text_transform)]) inner_text = transform_text inner_text, text_transform end quoted_text = is_tag ? %(#{open.chop} class="#{role}">#{inner_text}#{close}) : %(<span class="#{role}">#{open}#{inner_text}#{close}</span>) else quoted_text = %(#{open}#{inner_text}#{close}) end # NOTE destination is created inside callback registered by FormattedTextTransform#build_fragment node.id ? %(<a id="#{node.id}">#{DummyText}</a>#{quoted_text}) : quoted_text end def layout_title_page doc return unless doc.header? && !doc.notitle # NOTE a new page may have already been started at this point, so decide what to do with it if page.empty? page.reset_content if (recycle = @ppbook ? recto_page? : true) elsif @ppbook && page_number > 0 && recto_page? start_new_page end side = recycle ? page_side : (page_side page_number + 1) prev_bg_image = @page_bg_image[side] prev_bg_color = @page_bg_color if (bg_image = resolve_background_image doc, @theme, 'title-page-background-image') @page_bg_image[side] = bg_image[0] && bg_image end if (bg_color = resolve_theme_color :title_page_background_color) @page_bg_color = bg_color end recycle ? (init_page self) : start_new_page @page_bg_image[side] = prev_bg_image if bg_image @page_bg_color = prev_bg_color if bg_color # IMPORTANT this is the first page created, so we need to set the base font font @theme.base_font_family, size: @root_font_size # QUESTION allow alignment per element on title page? title_align = (@theme.title_page_align || @base_align).to_sym # FIXME: disallow .pdf as image type if @theme.title_page_logo_display != 'none' && (logo_image_path = (doc.attr 'title-logo-image') || (logo_image_from_theme = @theme.title_page_logo_image)) if (logo_image_path.include? ':') && logo_image_path =~ ImageAttributeValueRx logo_image_attrs = (AttributeList.new $2).parse %w(alt width height) if logo_image_from_theme relative_to_imagesdir = false logo_image_path = sub_attributes_discretely doc, $1 logo_image_path = ThemeLoader.resolve_theme_asset logo_image_path, @themesdir unless doc.is_uri? logo_image_path else relative_to_imagesdir = true logo_image_path = $1 end else logo_image_attrs = {} relative_to_imagesdir = false if logo_image_from_theme logo_image_path = sub_attributes_discretely doc, logo_image_path logo_image_path = ThemeLoader.resolve_theme_asset logo_image_path, @themesdir unless doc.is_uri? logo_image_path end end logo_image_attrs['target'] = logo_image_path if (logo_align = [(logo_image_attrs.delete 'align'), @theme.title_page_logo_align, title_align.to_s].find {|val| (BlockAlignmentNames.include? val) }) logo_image_attrs['align'] = logo_align end if (logo_image_top = logo_image_attrs['top'] || @theme.title_page_logo_top) initial_y, @y = @y, (resolve_top logo_image_top) end # FIXME: add API to Asciidoctor for creating blocks like this (extract from extensions module?) image_block = ::Asciidoctor::Block.new doc, :image, content_model: :empty, attributes: logo_image_attrs # NOTE pinned option keeps image on same page indent (@theme.title_page_logo_margin_left || 0), (@theme.title_page_logo_margin_right || 0) do convert_image image_block, relative_to_imagesdir: relative_to_imagesdir, pinned: true end @y = initial_y if initial_y end # TODO: prevent content from spilling to next page theme_font :title_page do if (title_top = @theme.title_page_title_top) @y = resolve_top title_top end unless @theme.title_page_title_display == 'none' doctitle = doc.doctitle partition: true move_down(@theme.title_page_title_margin_top || 0) indent (@theme.title_page_title_margin_left || 0), (@theme.title_page_title_margin_right || 0) do theme_font :title_page_title do layout_prose doctitle.main, align: title_align, margin: 0, line_height: @theme.title_page_title_line_height end end move_down(@theme.title_page_title_margin_bottom || 0) end if @theme.title_page_subtitle_display != 'none' && (subtitle = (doctitle || (doc.doctitle partition: true)).subtitle) move_down(@theme.title_page_subtitle_margin_top || 0) indent (@theme.title_page_subtitle_margin_left || 0), (@theme.title_page_subtitle_margin_right || 0) do theme_font :title_page_subtitle do layout_prose subtitle, align: title_align, margin: 0, line_height: @theme.title_page_subtitle_line_height end end move_down(@theme.title_page_subtitle_margin_bottom || 0) end if @theme.title_page_authors_display != 'none' && (doc.attr? 'authors') move_down(@theme.title_page_authors_margin_top || 0) indent (@theme.title_page_authors_margin_left || 0), (@theme.title_page_authors_margin_right || 0) do authors_content = @theme.title_page_authors_content authors_content = { name_only: @theme.title_page_authors_content_name_only || authors_content, with_email: @theme.title_page_authors_content_with_email || authors_content, with_url: @theme.title_page_authors_content_with_url || authors_content, } # TODO: provide an API in core to get authors as an array authors = (1..(doc.attr 'authorcount', 1).to_i).map {|idx| promote_author doc, idx do author_content_key = (url = doc.attr 'url') ? ((url.start_with? 'mailto:') ? :with_email : :with_url) : :name_only if (author_content = authors_content[author_content_key]) apply_subs_discretely doc, author_content else doc.attr 'author' end end }.join (@theme.title_page_authors_delimiter || ', ') theme_font :title_page_authors do layout_prose authors, align: title_align, margin: 0, normalize: false end end move_down(@theme.title_page_authors_margin_bottom || 0) end unless @theme.title_page_revision_display == 'none' || (revision_info = [(doc.attr? 'revnumber') ? %(#{doc.attr 'version-label'} #{doc.attr 'revnumber'}) : nil, (doc.attr 'revdate')].compact).empty? move_down(@theme.title_page_revision_margin_top || 0) revision_text = revision_info.join (@theme.title_page_revision_delimiter || ', ') if (revremark = doc.attr 'revremark') revision_text = %(#{revision_text}: #{revremark}) end indent (@theme.title_page_revision_margin_left || 0), (@theme.title_page_revision_margin_right || 0) do theme_font :title_page_revision do layout_prose revision_text, align: title_align, margin: 0, normalize: false end end move_down(@theme.title_page_revision_margin_bottom || 0) end end layout_prose DummyText, margin: 0, line_height: 1, normalize: false if page.empty? end def layout_cover_page doc, face # TODO: turn processing of attribute with inline image a utility function in Asciidoctor if (image_path = (doc.attr %(#{face}-cover-image))) if image_path.empty? go_to_page page_count if face == :back start_new_page_discretely # NOTE open graphics state to prevent page from being reused open_graphics_state if face == :front return elsif image_path == '~' image_path = nil @page_margin_by_side[:cover] = @page_margin_by_side[:recto] if @media == 'prepress' elsif (image_path.include? ':') && image_path =~ ImageAttributeValueRx image_attrs = (AttributeList.new $2).parse %w(alt width) image_path = resolve_image_path doc, $1, true, (image_format = image_attrs['format']) else image_path = resolve_image_path doc, image_path, false end return unless image_path unless ::File.readable? image_path logger.warn %(#{face} cover image not found or readable: #{image_path}) return end go_to_page page_count if face == :back if image_path.downcase.end_with? '.pdf' import_page image_path, page: [((image_attrs || {})['page']).to_i, 1].max, advance: face != :back else image_opts = resolve_image_options image_path, image_attrs, background: true, format: image_format image_page image_path, (image_opts.merge canvas: true) end end end def stamp_foreground_image doc, has_front_cover pages = state.pages if (first_page = (has_front_cover ? (pages.slice 1, pages.size) : pages).find {|it| !it.imported_page? }) && (first_page_num = (pages.index first_page) + 1) && (fg_image = resolve_background_image doc, @theme, 'page-foreground-image') && fg_image[0] go_to_page first_page_num create_stamp 'foreground-image' do canvas { image fg_image[0], ({ position: :center, vposition: :center }.merge fg_image[1]) } end stamp 'foreground-image' (first_page_num.next..page_count).each do |num| go_to_page num stamp 'foreground-image' unless page.imported_page? end end end def start_new_chapter chapter start_new_page unless at_page_top? # TODO: must call update_colors before advancing to next page if start_new_page is called in layout_chapter_title start_new_page if @ppbook && verso_page? && !(chapter.option? 'nonfacing') end alias start_new_part start_new_chapter def layout_chapter_title _node, title, opts = {} layout_heading title, (opts.merge outdent: true) end alias layout_part_title layout_chapter_title # NOTE layout_heading doesn't set the theme font because it's used for various types of headings # QUESTION why doesn't layout_heading accept a node? def layout_heading string, opts = {} hlevel = opts[:level] unless (top_margin = (margin = (opts.delete :margin)) || (opts.delete :margin_top)) if at_page_top? if hlevel && (top_margin = @theme[%(heading_h#{hlevel}_margin_page_top)] || @theme.heading_margin_page_top || 0) > 0 move_down top_margin end top_margin = 0 else top_margin = (hlevel ? @theme[%(heading_h#{hlevel}_margin_top)] : nil) || @theme.heading_margin_top end end bot_margin = margin || (opts.delete :margin_bottom) || (hlevel ? @theme[%(heading_h#{hlevel}_margin_bottom)] : nil) || @theme.heading_margin_bottom if (transform = resolve_text_transform opts) string = transform_text string, transform end outdent_section opts.delete :outdent do margin_top top_margin # QUESTION should we move inherited styles to typeset_text? if (inherited = apply_text_decoration ::Set.new, :heading, hlevel).empty? inline_format_opts = true else inline_format_opts = [{ inherited: inherited }] end typeset_text string, calc_line_metrics((opts.delete :line_height) || (hlevel ? @theme[%(heading_h#{hlevel}_line_height)] : nil) || @theme.heading_line_height || @theme.base_line_height), { color: @font_color, inline_format: inline_format_opts, align: @base_align.to_sym, }.merge(opts) margin_bottom bot_margin end end # NOTE inline_format is true by default def layout_prose string, opts = {} top_margin = (margin = (opts.delete :margin)) || (opts.delete :margin_top) || @theme.prose_margin_top bot_margin = margin || (opts.delete :margin_bottom) || @theme.prose_margin_bottom if (transform = resolve_text_transform opts) string = transform_text string, transform end string = hyphenate_text string, @hyphenator if (opts.delete :hyphenate) && (defined? @hyphenator) # NOTE used by extensions; ensures linked text gets formatted using the link styles if (anchor = opts.delete :anchor) string = %(<a anchor="#{anchor}">#{string}</a>) end margin_top top_margin string = ZeroWidthSpace + string if opts.delete :normalize_line_height # NOTE normalize makes endlines soft (replaces "\n" with ' ') inline_format_opts = { normalize: (opts.delete :normalize) != false } if (styles = opts.delete :styles) inline_format_opts[:inherited] = { styles: styles } end typeset_text string, calc_line_metrics((opts.delete :line_height) || @theme.base_line_height), { color: @font_color, inline_format: [inline_format_opts], align: @base_align.to_sym, }.merge(opts) margin_bottom bot_margin end def generate_manname_section node title = node.attr 'manname-title', 'Name' if (next_section = node.sections[0]) && (next_section_title = next_section.title) == next_section_title.upcase title = title.upcase end sect = Section.new node, 1 sect.sectname = 'section' sect.id = node.attr 'manname-id' sect.title = title sect << (Block.new sect, :paragraph, source: %(#{node.attr 'manname'} - #{node.attr 'manpurpose'}), subs: :normal) sect end # Render the caption and return the height of the rendered content # # The subject argument can either be a String or an AbstractNode. If # subject is an AbstractNode, only call this method if the node has a # title (i.e., subject.title? return true). #-- # TODO: allow margin to be zeroed def layout_caption subject, opts = {} if opts.delete :dry_run height = nil dry_run do move_down 0.001 # HACK: force top margin to be applied height = layout_caption subject, opts end return height end mark = { cursor: cursor, page_number: page_number } case subject when ::String string = subject when ::Asciidoctor::AbstractBlock string = subject.captioned_title else raise ArgumentError, 'invalid subject' end category_caption = (category = opts[:category]) ? %(#{category}_caption) : 'caption' container_width = bounds.width block_align = opts.delete :block_align if (align = @theme[%(#{category_caption}_align)] || @theme.caption_align) align = align == 'inherit' ? (block_align || @base_align) : align.to_sym else align = @base_align.to_sym end indent_by = [0, 0] block_width = opts.delete :block_width if (max_width = opts.delete :max_width) && max_width != 'none' if max_width == 'fit-content' max_width = block_width || container_width else max_width = [max_width.to_f / 100 * bounds.width, bounds.width].min if ::String === max_width && (max_width.end_with? '%') block_align = align end if (remainder = container_width - max_width) > 0 case block_align when :right indent_by = [remainder, 0] when :center indent_by = [(side_margin = remainder * 0.5), side_margin] else # :left, nil indent_by = [0, remainder] end end end theme_font :caption do theme_font category_caption do caption_margin_outside = @theme[%(#{category_caption}_margin_outside)] || @theme.caption_margin_outside caption_margin_inside = @theme[%(#{category_caption}_margin_inside)] || @theme.caption_margin_inside if (side = (opts.delete :side) || :top) == :top margin = { top: caption_margin_outside, bottom: caption_margin_inside } else margin = { top: caption_margin_inside, bottom: caption_margin_outside } end indent(*indent_by) do layout_prose string, { margin_top: margin[:top], margin_bottom: margin[:bottom], align: align, normalize: false, normalize_line_height: true, hyphenate: true, }.merge(opts) end if side == :top && (bb_color = @theme[%(#{category_caption}_border_bottom_color)] || @theme.caption_border_bottom_color) stroke_horizontal_rule bb_color # FIXME: HACK move down slightly so line isn't covered by filled area (half width of line) move_down 0.25 end end end # NOTE we assume we don't clear more than one page if page_number > mark[:page_number] mark[:cursor] + (bounds.top - cursor) else mark[:cursor] - cursor end end # Render the caption for a table and return the height of the rendered content def layout_table_caption node, table_alignment = :left, table_width = nil, max_width = nil, side = :top layout_caption node, category: :table, side: side, block_align: table_alignment, block_width: table_width, max_width: max_width end def allocate_toc doc, toc_num_levels, toc_start_y, use_title_page toc_page_nums = page_number toc_end = nil dry_run do toc_page_nums = layout_toc doc, toc_num_levels, toc_page_nums, toc_start_y move_down @theme.block_margin_bottom unless use_title_page toc_end = @y end # NOTE reserve pages for the toc; leaves cursor on page after last page in toc if use_title_page toc_page_nums.each { start_new_page } else (toc_page_nums.size - 1).times { start_new_page } @y = toc_end end @toc_extent = { page_nums: toc_page_nums, start_y: toc_start_y } end # NOTE num_front_matter_pages is not used during a dry run def layout_toc doc, num_levels = 2, toc_page_number = 2, start_y = nil, num_front_matter_pages = 0 go_to_page toc_page_number unless (page_number == toc_page_number) || scratch? start_page_number = page_number @y = start_y if start_y unless (toc_title = doc.attr 'toc-title').nil_or_empty? theme_font :heading, level: 2 do theme_font :toc_title do toc_title_align = (@theme.toc_title_align || @theme.heading_h2_align || @theme.heading_align || @base_align).to_sym layout_heading toc_title, align: toc_title_align, level: 2, outdent: true end end end # QUESTION should we skip this whole method if num_levels < 0? unless num_levels < 0 dot_leader = theme_font :toc do # TODO: we could simplify by using nested theme_font :toc_dot_leader if (dot_leader_font_style = (@theme.toc_dot_leader_font_style || :normal).to_sym) != font_style font_style dot_leader_font_style end { font_color: @theme.toc_dot_leader_font_color || @font_color, font_style: dot_leader_font_style, levels: ((dot_leader_l = @theme.toc_dot_leader_levels) == 'none' ? ::Set.new : (dot_leader_l && dot_leader_l != 'all' ? dot_leader_l.to_s.split.map(&:to_i).to_set : (0..num_levels).to_set)), text: (dot_leader_text = @theme.toc_dot_leader_content || DotLeaderTextDefault), width: dot_leader_text.empty? ? 0 : (rendered_width_of_string dot_leader_text), # TODO: spacer gives a little bit of room between dots and page number spacer: { text: NoBreakSpace, size: (spacer_font_size = @font_size * 0.25) }, spacer_width: (rendered_width_of_char NoBreakSpace, size: spacer_font_size), } end line_metrics = calc_line_metrics @theme.toc_line_height theme_margin :toc, :top layout_toc_level doc.sections, num_levels, line_metrics, dot_leader, num_front_matter_pages end # NOTE range must be calculated relative to toc_page_number; absolute page number in scratch document is arbitrary toc_page_numbers = (toc_page_number..(toc_page_number + (page_number - start_page_number))) go_to_page page_count - 1 unless scratch? toc_page_numbers end def layout_toc_level sections, num_levels, line_metrics, dot_leader, num_front_matter_pages = 0 # NOTE font options aren't always reliable, so store size separately toc_font_info = theme_font :toc do { font: font, size: @font_size } end hanging_indent = @theme.toc_hanging_indent || 0 sections.each do |sect| next if (num_levels_for_sect = (sect.attr 'toclevels', num_levels, false).to_i) < sect.level theme_font :toc, level: (sect.level + 1) do sect_title = ZeroWidthSpace + (@text_transform ? (transform_text sect.numbered_title, @text_transform) : sect.numbered_title) pgnum_label_placeholder_width = rendered_width_of_string '0' * @toc_max_pagenum_digits # NOTE only write section title (excluding dots and page number) if this is a dry run if scratch? indent 0, pgnum_label_placeholder_width do # FIXME: use layout_prose # NOTE must wrap title in empty anchor element in case links are styled with different font family / size typeset_text %(<a>#{sect_title}</a>), line_metrics, inline_format: true, hanging_indent: hanging_indent end else physical_pgnum = sect.attr 'pdf-page-start' virtual_pgnum = physical_pgnum - num_front_matter_pages pgnum_label = (virtual_pgnum < 1 ? (RomanNumeral.new physical_pgnum, :lower) : virtual_pgnum).to_s start_page_number = page_number start_cursor = cursor start_dots = nil sect_title_inherited = (apply_text_decoration ::Set.new, :toc, sect.level.next).merge anchor: (sect_anchor = sect.attr 'pdf-anchor'), color: @font_color # NOTE use text formatter to add anchor overlay to avoid using inline format with synthetic anchor tag sect_title_fragments = text_formatter.format sect_title, inherited: sect_title_inherited indent 0, pgnum_label_placeholder_width do sect_title_fragments[-1][:callback] = (last_fragment_pos = ::Asciidoctor::PDF::FormattedText::FragmentPositionRenderer.new) typeset_formatted_text sect_title_fragments, line_metrics, hanging_indent: hanging_indent start_dots = last_fragment_pos.right + hanging_indent last_fragment_cursor = last_fragment_pos.top + line_metrics.padding_top # NOTE this will be incorrect if wrapped line is all monospace if (last_fragment_page_number = last_fragment_pos.page_number) > start_page_number || (start_cursor - last_fragment_cursor) > line_metrics.height start_page_number = last_fragment_page_number start_cursor = last_fragment_cursor end end end_page_number = page_number end_cursor = cursor # TODO: it would be convenient to have a cursor mark / placement utility that took page number into account go_to_page start_page_number if start_page_number != end_page_number move_cursor_to start_cursor if dot_leader[:width] > 0 && (dot_leader[:levels].include? sect.level) pgnum_label_width = rendered_width_of_string pgnum_label pgnum_label_font_settings = { color: @font_color, font: font_family, size: @font_size, styles: font_styles } save_font do # NOTE the same font is used for dot leaders throughout toc set_font toc_font_info[:font], toc_font_info[:size] font_style dot_leader[:font_style] num_dots = ((bounds.width - start_dots - dot_leader[:spacer_width] - pgnum_label_width) / dot_leader[:width]).floor # FIXME: dots don't line up in columns if width of page numbers differ typeset_formatted_text [ { text: (dot_leader[:text] * (num_dots < 0 ? 0 : num_dots)), color: dot_leader[:font_color] }, dot_leader[:spacer], { text: pgnum_label, anchor: sect_anchor }.merge(pgnum_label_font_settings), ], line_metrics, align: :right end else typeset_formatted_text [{ text: pgnum_label, color: @font_color, anchor: sect_anchor }], line_metrics, align: :right end go_to_page end_page_number if page_number != end_page_number move_cursor_to end_cursor end end indent @theme.toc_indent do layout_toc_level sect.sections, num_levels_for_sect, line_metrics, dot_leader, num_front_matter_pages end if num_levels_for_sect > sect.level end end # Reduce icon height to fit inside bounds.height. Icons will not render # properly if they are larger than the current bounds.height. def fit_icon_to_bounds preferred_size = 24 (max_height = bounds.height) < preferred_size ? max_height : preferred_size end def admonition_icon_data key if (icon_data = @theme[%(admonition_icon_#{key})]) icon_data = (AdmonitionIcons[key] || {}).merge icon_data if (icon_name = icon_data[:name]) unless icon_name.start_with?(*IconSetPrefixes) logger.info { %(#{key} admonition in theme uses icon from deprecated fa icon set; use fas, far, or fab instead) } unless scratch? icon_data[:name] = %(fa-#{icon_name}) unless icon_name.start_with? 'fa-' end end icon_data else AdmonitionIcons[key] end end # TODO: delegate to layout_page_header and layout_page_footer per page def layout_running_content periphery, doc, opts = {} skip, skip_pagenums = opts[:skip] || [1, 1] body_start_page_number = opts[:body_start_page_number] || 1 # NOTE find and advance to first non-imported content page to use as model page return unless (content_start_page = state.pages[skip..-1].index {|it| !it.imported_page? }) content_start_page += (skip + 1) num_pages = page_count prev_page_number = page_number go_to_page content_start_page # FIXME: probably need to treat doctypes differently is_book = doc.doctype == 'book' header = doc.header? ? doc.header : nil sectlevels = (@theme[%(#{periphery}_sectlevels)] || 2).to_i sections = doc.find_by(context: :section) {|sect| sect.level <= sectlevels && sect != header } || [] if (toc_page_nums = @toc_extent && @toc_extent[:page_nums]) toc_title = (doc.attr 'toc-title') || '' end title_method = TitleStyles[@theme[%(#{periphery}_title_style)]] # FIXME: we need a proper model for all this page counting # FIXME: we make a big assumption that part & chapter start on new pages # index parts, chapters and sections by the physical page number on which they start part_start_pages = {} chapter_start_pages = {} section_start_pages = {} trailing_section_start_pages = {} sections.each do |sect| pgnum = (sect.attr 'pdf-page-start').to_i if is_book && ((sect_is_part = sect.part?) || sect.chapter?) if sect_is_part part_start_pages[pgnum] ||= sect.send(*title_method) else chapter_start_pages[pgnum] ||= sect.send(*title_method) if sect.sectname == 'appendix' && !part_start_pages.empty? # FIXME: need a better way to indicate that part has ended part_start_pages[pgnum] = '' end end else sect_title = trailing_section_start_pages[pgnum] = sect.send(*title_method) section_start_pages[pgnum] ||= sect_title end end # index parts, chapters, and sections by the physical page number on which they appear parts_by_page = {} chapters_by_page = {} sections_by_page = {} # QUESTION should the default part be the doctitle? last_part = nil # QUESTION should we enforce that the preamble is a preface? last_chap = is_book ? :pre : nil last_sect = nil sect_search_threshold = 1 (1..num_pages).each do |pgnum| if (part = part_start_pages[pgnum]) last_part = part last_chap = nil last_sect = nil end if (chap = chapter_start_pages[pgnum]) last_chap = chap last_sect = nil end if (sect = section_start_pages[pgnum]) last_sect = sect elsif part || chap sect_search_threshold = pgnum # NOTE we didn't find a section on this page; look back to find last section started elsif last_sect (sect_search_threshold..(pgnum - 1)).reverse_each do |prev| if (sect = trailing_section_start_pages[prev]) last_sect = sect break end end end parts_by_page[pgnum] = last_part if last_chap == :pre if pgnum >= body_start_page_number chapters_by_page[pgnum] = is_book ? (doc.attr 'preface-title', 'Preface') : nil elsif toc_page_nums && (toc_page_nums.cover? pgnum) chapters_by_page[pgnum] = toc_title else chapters_by_page[pgnum] = doc.doctitle end else chapters_by_page[pgnum] = last_chap end sections_by_page[pgnum] = last_sect end doctitle = doc.doctitle partition: true, use_fallback: true # NOTE set doctitle again so it's properly escaped doc.set_attr 'doctitle', doctitle.combined doc.set_attr 'document-title', doctitle.main doc.set_attr 'document-subtitle', doctitle.subtitle doc.set_attr 'page-count', (num_pages - skip_pagenums) pagenums_enabled = doc.attr? 'pagenums' case @media == 'prepress' ? 'physical' : (doc.attr 'pdf-folio-placement') when 'physical' folio_basis, invert_folio = :physical, false when 'physical-inverted' folio_basis, invert_folio = :physical, true when 'virtual-inverted' folio_basis, invert_folio = :virtual, true else folio_basis, invert_folio = :virtual, false end periphery_layout_cache = {} # NOTE: this block is invoked during PDF generation, after convert_document has returned repeat (content_start_page..num_pages), dynamic: true do # NOTE: don't write on pages which are imported / inserts (otherwise we can get a corrupt PDF) if page.imported_page? remove_tmp_files if page_number == num_pages next end virtual_pgnum = (pgnum = page_number) - skip_pagenums pgnum_label = (virtual_pgnum < 1 ? (RomanNumeral.new pgnum, :lower) : virtual_pgnum).to_s side = page_side((folio_basis == :physical ? pgnum : virtual_pgnum), invert_folio) # QUESTION should allocation be per side? trim_styles, colspec_dict, content_dict, stamp_names = allocate_running_content_layout doc, page, periphery, periphery_layout_cache # FIXME: we need to have a content setting for chapter pages content_by_position, colspec_by_position = content_dict[side], colspec_dict[side] # TODO: populate chapter-number # TODO: populate numbered and unnumbered chapter and section titles doc.set_attr 'page-number', pgnum_label if pagenums_enabled # QUESTION should the fallback value be nil instead of empty string? or should we remove attribute if no value? doc.set_attr 'part-title', (parts_by_page[pgnum] || '') if toc_page_nums && (toc_page_nums.cover? pgnum) if is_book doc.set_attr 'chapter-title', (sect_or_chap_title = toc_title) doc.set_attr 'section-title', '' else doc.set_attr 'chapter-title', '' doc.set_attr 'section-title', (sect_or_chap_title = section_start_pages[pgnum] ? sections_by_page[pgnum] : toc_title) end doc.set_attr 'section-or-chapter-title', sect_or_chap_title toc_page_nums = nil if toc_page_nums.end == pgnum else doc.set_attr 'chapter-title', (chapters_by_page[pgnum] || '') doc.set_attr 'section-title', (sections_by_page[pgnum] || '') doc.set_attr 'section-or-chapter-title', (sections_by_page[pgnum] || chapters_by_page[pgnum] || '') end stamp stamp_names[side] if stamp_names theme_font periphery do canvas do bounding_box [trim_styles[:content_left][side], trim_styles[:top]], width: trim_styles[:content_width][side], height: trim_styles[:height] do if (trim_column_rule_width = trim_styles[:column_rule_width]) > 0 trim_column_rule_spacing = trim_styles[:column_rule_spacing] else trim_column_rule_width = nil end prev_position = nil ColumnPositions.each do |position| next unless (content = content_by_position[position]) next unless (colspec = colspec_by_position[position])[:width] > 0 left, colwidth = colspec[:x], colspec[:width] if trim_column_rule_width && colwidth < bounds.width if (trim_column_rule = prev_position) left += (trim_column_rule_spacing * 0.5) colwidth -= trim_column_rule_spacing else colwidth -= (trim_column_rule_spacing * 0.5) end end # FIXME: we need to have a content setting for chapter pages case content when ::Array # NOTE float ensures cursor position is restored and returns us to current page if we overrun float do # NOTE bounding_box is redundant if both vertical padding and border width are 0 bounding_box [left, bounds.top - trim_styles[:padding][0] - trim_styles[:content_offset]], width: colwidth, height: trim_styles[:content_height] do # NOTE image vposition respects padding; use negative image_vertical_align value to revert image_opts = content[1].merge position: colspec[:align], vposition: trim_styles[:img_valign] begin image_info = image content[0], image_opts if (image_link = content[2]) image_info = { width: image_info.scaled_width, height: image_info.scaled_height } unless image_opts[:format] == 'svg' add_link_to_image image_link, image_info, image_opts end rescue logger.warn %(could not embed image in running content: #{content[0]}; #{$!.message}) end end end when ::String theme_font %(#{periphery}_#{side}_#{position}) do # NOTE minor optimization if content == '{page-number}' content = pagenums_enabled ? pgnum_label : nil else content = apply_subs_discretely doc, content, drop_lines_with_unresolved_attributes: true content = transform_text content, @text_transform if @text_transform end formatted_text_box parse_text(content, color: @font_color, inline_format: [normalize: true]), at: [left, bounds.top - trim_styles[:padding][0] - trim_styles[:content_offset] + ((Array trim_styles[:valign])[0] == :center ? font.descender * 0.5 : 0)], width: colwidth, height: trim_styles[:prose_content_height], align: colspec[:align], valign: trim_styles[:valign], leading: trim_styles[:line_metrics].leading, final_gap: false, overflow: :truncate end end bounding_box [colspec[:x], bounds.top - trim_styles[:padding][0] - trim_styles[:content_offset]], width: colspec[:width], height: trim_styles[:content_height] do stroke_vertical_rule trim_styles[:column_rule_color], at: bounds.left, line_style: trim_styles[:column_rule_style], line_width: trim_column_rule_width end if trim_column_rule prev_position = position end end end end remove_tmp_files if pgnum == num_pages end go_to_page prev_page_number nil end def allocate_running_content_layout doc, page, periphery, cache cache[layout = page.layout] ||= begin valign, valign_offset = @theme[%(#{periphery}_vertical_align)] if (valign = (valign || :middle).to_sym) == :middle valign = :center end trim_styles = { line_metrics: (trim_line_metrics = calc_line_metrics @theme[%(#{periphery}_line_height)] || @theme.base_line_height), # NOTE we've already verified this property is set height: (trim_height = @theme[%(#{periphery}_height)]), top: periphery == :header ? page_height : trim_height, padding: (trim_padding = inflate_padding @theme[%(#{periphery}_padding)] || 0), bg_color: (resolve_theme_color %(#{periphery}_background_color).to_sym), border_color: (trim_border_color = resolve_theme_color %(#{periphery}_border_color).to_sym), border_style: (@theme[%(#{periphery}_border_style)] || :solid).to_sym, border_width: (trim_border_width = trim_border_color ? @theme[%(#{periphery}_border_width)] || @theme.base_border_width || 0 : 0), column_rule_color: (trim_column_rule_color = resolve_theme_color %(#{periphery}_column_rule_color).to_sym), column_rule_style: (@theme[%(#{periphery}_column_rule_style)] || :solid).to_sym, column_rule_width: (trim_column_rule_color ? @theme[%(#{periphery}_column_rule_width)] || 0 : 0), column_rule_spacing: (@theme[%(#{periphery}_column_rule_spacing)] || 0), valign: valign_offset ? [valign, valign_offset] : valign, img_valign: @theme[%(#{periphery}_image_vertical_align)], left: { recto: (trim_left_recto = @page_margin_by_side[:recto][3]), verso: (trim_left_verso = @page_margin_by_side[:verso][3]), }, width: { recto: (trim_width_recto = page_width - trim_left_recto - @page_margin_by_side[:recto][1]), verso: (trim_width_verso = page_width - trim_left_verso - @page_margin_by_side[:verso][1]), }, content_left: { recto: trim_left_recto + trim_padding[3], verso: trim_left_verso + trim_padding[3], }, content_width: (trim_content_width = { recto: trim_width_recto - trim_padding[1] - trim_padding[3], verso: trim_width_verso - trim_padding[1] - trim_padding[3], }), content_height: (content_height = trim_height - trim_padding[0] - trim_padding[2] - (trim_border_width * 0.5)), prose_content_height: content_height - trim_line_metrics.padding_top - trim_line_metrics.padding_bottom, # NOTE content offset adjusts y position to account for border content_offset: (periphery == :footer ? trim_border_width * 0.5 : 0), } case trim_styles[:img_valign] when nil trim_styles[:img_valign] = valign when 'middle' trim_styles[:img_valign] = :center when 'top', 'center', 'bottom' trim_styles[:img_valign] = trim_styles[:img_valign].to_sym end if (trim_bg_image = resolve_background_image doc, @theme, %(#{periphery}_background_image).to_sym, container_size: [page_width, trim_height]) && trim_bg_image[0] trim_styles[:bg_image] = trim_bg_image else trim_bg_image = nil end colspec_dict = PageSides.each_with_object({}) do |side, acc| side_trim_content_width = trim_content_width[side] if (custom_colspecs = @theme[%(#{periphery}_#{side}_columns)] || @theme[%(#{periphery}_columns)]) case (colspecs = (custom_colspecs.to_s.tr ',', ' ').split).size when 0, 1 colspecs = { left: '0', center: colspecs[0] || '100', right: '0' } when 2 colspecs = { left: colspecs[0], center: '0', right: colspecs[1] } else # 3 colspecs = { left: colspecs[0], center: colspecs[1], right: colspecs[2] } end tot_width = 0 side_colspecs = colspecs.map {|col, spec| if (alignment_char = spec.chr).to_i.to_s == alignment_char alignment = :left rel_width = spec.to_f else alignment = AlignmentTable[alignment_char] || :left rel_width = (spec.slice 1, spec.length).to_f end tot_width += rel_width [col, { align: alignment, width: rel_width, x: 0 }] }.to_h # QUESTION should we allow the columns to overlap (capping width at 100%)? side_colspecs.each {|_, colspec| colspec[:width] = (colspec[:width] / tot_width) * side_trim_content_width } side_colspecs[:right][:x] = (side_colspecs[:center][:x] = side_colspecs[:left][:width]) + side_colspecs[:center][:width] acc[side] = side_colspecs else acc[side] = { left: { align: :left, width: side_trim_content_width, x: 0 }, center: { align: :center, width: side_trim_content_width, x: 0 }, right: { align: :right, width: side_trim_content_width, x: 0 }, } end end content_dict = PageSides.each_with_object({}) do |side, acc| side_content = {} ColumnPositions.each do |position| unless (val = @theme[%(#{periphery}_#{side}_#{position}_content)]).nil_or_empty? if (val.include? ':') && val =~ ImageAttributeValueRx attrlist = $2 image_attrs = (AttributeList.new attrlist).parse %w(alt width) image_path, image_format = ::Asciidoctor::Image.target_and_format $1, image_attrs if (image_path = resolve_image_path doc, image_path, @themesdir, image_format) && (::File.readable? image_path) image_opts = resolve_image_options image_path, image_attrs, container_size: [colspec_dict[side][position][:width], trim_styles[:content_height]], format: image_format side_content[position] = [image_path, image_opts, image_attrs['link']] else # NOTE allows inline image handler to report invalid reference and replace with alt text side_content[position] = %(image:#{image_path}[#{attrlist}]) end else side_content[position] = val end end end acc[side] = side_content end if (trim_bg_color = trim_styles[:bg_color]) || trim_bg_image || trim_border_width > 0 stamp_names = { recto: %(#{layout}_#{periphery}_recto), verso: %(#{layout}_#{periphery}_verso) } PageSides.each do |side| create_stamp stamp_names[side] do canvas do if trim_bg_color || trim_bg_image bounding_box [0, trim_styles[:top]], width: bounds.width, height: trim_styles[:height] do fill_bounds trim_bg_color if trim_bg_color if trim_border_width > 0 stroke_horizontal_rule trim_styles[:border_color], line_width: trim_border_width, line_style: trim_styles[:border_style], at: (periphery == :header ? bounds.height : 0) end # NOTE: must draw line first or SVG will cause border to disappear image trim_bg_image[0], ({ position: :center, vposition: :center }.merge trim_bg_image[1]) if trim_bg_image end elsif trim_border_width > 0 bounding_box [trim_styles[:left][side], trim_styles[:top]], width: trim_styles[:width][side], height: trim_styles[:height] do stroke_horizontal_rule trim_styles[:border_color], line_width: trim_styles[:border_width], line_style: trim_styles[:border_style], at: (periphery == :header ? bounds.height : 0) end end end end end end [trim_styles, colspec_dict, content_dict, stamp_names] end end def add_outline doc, num_levels = 2, toc_page_nums = [], num_front_matter_pages = 0, has_front_cover = false if ::String === num_levels if num_levels.include? ':' num_levels, expand_levels = num_levels.split ':', 2 num_levels = num_levels.empty? ? (doc.attr 'toclevels', 2).to_i : num_levels.to_i expand_levels = expand_levels.to_i else num_levels = expand_levels = num_levels.to_i end else expand_levels = num_levels end front_matter_counter = RomanNumeral.new 0, :lower pagenum_labels = {} num_front_matter_pages.times do |n| pagenum_labels[n] = { P: (::PDF::Core::LiteralString.new front_matter_counter.next!.to_s) } end # add labels for each content page, which is required for reader's page navigator to work correctly (num_front_matter_pages..(page_count - 1)).each_with_index do |n, i| pagenum_labels[n] = { P: (::PDF::Core::LiteralString.new (i + 1).to_s) } end unless toc_page_nums.none? || (toc_title = doc.attr 'toc-title').nil_or_empty? toc_section = insert_toc_section doc, toc_title, toc_page_nums end outline.define do initial_pagenum = has_front_cover ? 2 : 1 # FIXME: use sanitize: :plain_text once available if document.page_count >= initial_pagenum && (doctitle = doc.header? ? doc.doctitle : (doc.attr 'untitled-label')) page title: (document.sanitize doctitle), destination: (document.dest_top has_front_cover ? 2 : 1) end # QUESTION is there any way to get add_outline_level to invoke in the context of the outline? document.add_outline_level self, doc.sections, num_levels, expand_levels end toc_section.parent.blocks.delete toc_section if toc_section catalog.data[:PageLabels] = state.store.ref Nums: pagenum_labels.flatten primary_page_mode, secondary_page_mode = PageModes[(doc.attr 'pdf-page-mode') || @theme.page_mode] catalog.data[:PageMode] = primary_page_mode catalog.data[:NonFullScreenPageMode] = secondary_page_mode if secondary_page_mode nil end def add_outline_level outline, sections, num_levels, expand_levels sections.each do |sect| sect_title = sanitize sect.numbered_title formal: true sect_destination = sect.attr 'pdf-destination' if (level = sect.level) == num_levels || !sect.sections? outline.page title: sect_title, destination: sect_destination elsif level <= num_levels outline.section sect_title, destination: sect_destination, closed: expand_levels < 1 do add_outline_level outline, sect.sections, num_levels, (expand_levels - 1) end end end end def insert_toc_section doc, toc_title, toc_page_nums if (doc.attr? 'toc-placement', 'macro') && (toc_node = (doc.find_by context: :toc)[0]) if (parent_section = toc_node.parent).context == :section grandparent_section = parent_section.parent toc_level = parent_section.level insert_idx = (grandparent_section.blocks.index parent_section) + 1 else grandparent_section = doc toc_level = doc.sections[0].level insert_idx = 0 end toc_dest = toc_node.attr 'pdf-destination' else grandparent_section = doc toc_level = doc.sections[0].level insert_idx = 0 toc_dest = dest_top toc_page_nums.first end toc_section = Section.new grandparent_section, toc_level, false, attributes: { 'pdf-destination' => toc_dest } toc_section.title = toc_title grandparent_section.blocks.insert insert_idx, toc_section toc_section end def write pdf_doc, target if target.respond_to? :write target = ::QuantifiableStdout.new $stdout if target == $stdout pdf_doc.render target else pdf_doc.render_file target # QUESTION restore attributes first? @pdfmark&.generate_file target (Optimizer.new @optimize, pdf_doc.min_version).optimize_file target if @optimize end # write scratch document if debug is enabled (or perhaps DEBUG_STEPS env) #get_scratch_document.render_file 'scratch.pdf' nil end def register_fonts font_catalog, fonts_dir return unless font_catalog dirs = (fonts_dir.split ValueSeparatorRx, -1).map do |dir| dir == 'GEM_FONTS_DIR' || dir.empty? ? ThemeLoader::FontsDir : dir end font_catalog.each do |key, styles| styles = styles.each_with_object({}) do |(style, path), accum| found = dirs.find do |dir| resolved_font_path = font_path path, dir if ::File.readable? resolved_font_path accum[style.to_sym] = resolved_font_path true end end raise ::Errno::ENOENT, ((File.absolute_path? path) ? %(#{path} not found) : %(#{path} not found in #{fonts_dir.gsub ValueSeparatorRx, ' or '})) unless found end register_font key => styles end end def font_path font_file, fonts_dir # resolve relative to built-in font dir unless path is absolute ::File.absolute_path font_file, fonts_dir end def fallback_svg_font_name @theme.svg_fallback_font_family || @theme.svg_font_family || @theme.base_font_family end def apply_text_decoration styles, category, level = nil if (text_decoration_style = TextDecorationStyleTable[(level && @theme[%(#{category}_h#{level}_text_decoration)]) || @theme[%(#{category}_text_decoration)]]) { styles: (styles << text_decoration_style), text_decoration_color: (level && @theme[%(#{category}_h#{level}_text_decoration_color)]) || @theme[%(#{category}_text_decoration_color)], text_decoration_width: (level && @theme[%(#{category}_h#{level}_text_decoration_width)]) || @theme[%(#{category}_text_decoration_width)], }.compact else styles.empty? ? {} : { styles: styles } end end def resolve_text_transform key, use_fallback = true if (transform = ::Hash === key ? (key.delete :text_transform) : @theme[key.to_s]) transform == 'none' ? nil : transform elsif use_fallback @text_transform end end # QUESTION should we pass a category as an argument? # QUESTION should we make this a method on the theme ostruct? (e.g., @theme.resolve_color key, fallback) def resolve_theme_color key, fallback_color = nil if (color = @theme[key.to_s]) && color != 'transparent' color else fallback_color end end def resolve_font_kerning keyword, fallback = default_kerning? keyword && (FontKerningTable.key? keyword) ? FontKerningTable[keyword] : fallback end def theme_fill_and_stroke_bounds category, opts = {} bg_color = (opts.key? :background_color) ? opts[:background_color] : @theme[%(#{category}_background_color)] fill_and_stroke_bounds bg_color, @theme[%(#{category}_border_color)], line_width: (@theme[%(#{category}_border_width)] || 0), radius: @theme[%(#{category}_border_radius)] end def theme_fill_and_stroke_block category, block_height, opts = {} if (b_width = (opts.key? :border_width) ? opts[:border_width] : @theme[%(#{category}_border_width)]) b_width = nil unless b_width > 0 end if (bg_color = opts[:background_color] || @theme[%(#{category}_background_color)]) == 'transparent' bg_color = nil end unless b_width || bg_color (node = opts[:caption_node]) && node.title? && (layout_caption node, category: category) return end if (b_color = @theme[%(#{category}_border_color)]) == 'transparent' b_color = @page_bg_color end b_radius = (@theme[%(#{category}_border_radius)] || 0) + (b_width || 0) if b_width && b_color if b_color == @page_bg_color # let page background cut into block background b_gap_color, b_shift = @page_bg_color, b_width elsif (b_gap_color = bg_color) && b_gap_color != b_color b_shift = 0 else # let page background cut into border b_gap_color, b_shift = @page_bg_color, 0 end else # let page background cut into block background b_shift, b_gap_color = (b_width ||= 0.5) * 0.5, @page_bg_color end # FIXME: due to the calculation error logged in #789, we must advance page even when content is split across pages advance_page if (opts.fetch :split_from_top, true) && block_height > cursor && !at_page_top? caption_height = (node = opts[:caption_node]) && node.title? ? (layout_caption node, category: category) : 0 float do remaining_height = block_height - caption_height initial_page = true while remaining_height > 0 advance_page unless initial_page chunk_height = [(available_height = cursor), remaining_height].min bounding_box [0, available_height], width: bounds.width, height: chunk_height do theme_fill_and_stroke_bounds category, background_color: bg_color if b_width indent b_radius, b_radius do # dashed line indicates continuation from previous page; swell line slightly to cover background stroke_horizontal_rule b_gap_color, line_width: b_width * 1.2, line_style: :dashed, at: b_shift end unless initial_page if remaining_height > chunk_height move_down chunk_height - b_shift indent b_radius, b_radius do # dashed line indicates continuation from previous page; swell line slightly to cover background stroke_horizontal_rule b_gap_color, line_width: b_width * 1.2, line_style: :dashed end end end end initial_page = false remaining_height -= chunk_height end end end # Insert a top margin equal to amount if cursor is not at the top of the # page. Start a new page instead if amount is greater than the remaining # space on the page. def margin_top amount margin amount, :top end # Insert a bottom margin equal to amount unless cursor is at the top of the # page (not likely). Start a new page instead if amount is greater than the # remaining space on the page. def margin_bottom amount margin amount, :bottom end # Insert a margin at the specified side if the cursor is not at the top of # the page. Start a new page if amount is greater than the remaining space on # the page. def margin amount, _side unless (amount || 0) == 0 || at_page_top? # NOTE use low-level cursor calculation to workaround cursor bug in column_box context if y - reference_bounds.absolute_bottom > amount move_down amount else # set cursor at top of next page reference_bounds.move_past_bottom end end end # Lookup margin for theme element and side, then delegate to margin method. # If margin value is not found, assume: # - 0 when side == :top # - @theme.vertical_spacing when side == :bottom def theme_margin category, side margin((@theme[%(#{category}_margin_#{side})] || (side == :bottom ? @theme.vertical_spacing : 0)), side) end def theme_font category, opts = {} result = nil # TODO: inheriting from generic category should be an option if opts.key? :level hlevel_category = %(#{category}_h#{opts[:level]}) family = @theme[%(#{hlevel_category}_font_family)] || @theme[%(#{category}_font_family)] || @theme.base_font_family || font_family size = @theme[%(#{hlevel_category}_font_size)] || @theme[%(#{category}_font_size)] || @root_font_size style = @theme[%(#{hlevel_category}_font_style)] || @theme[%(#{category}_font_style)] color = @theme[%(#{hlevel_category}_font_color)] || @theme[%(#{category}_font_color)] kerning = resolve_font_kerning @theme[%(#{hlevel_category}_font_kerning)] || @theme[%(#{category}_font_kerning)], nil # NOTE global text_transform is not currently supported transform = @theme[%(#{hlevel_category}_text_transform)] || @theme[%(#{category}_text_transform)] else inherited_font = font_info family = @theme[%(#{category}_font_family)] || inherited_font[:family] size = @theme[%(#{category}_font_size)] || inherited_font[:size] style = @theme[%(#{category}_font_style)] || inherited_font[:style] color = @theme[%(#{category}_font_color)] kerning = resolve_font_kerning @theme[%(#{category}_font_kerning)], nil # NOTE global text_transform is not currently supported transform = @theme[%(#{category}_text_transform)] end prev_color, @font_color = @font_color, color if color prev_kerning, self.default_kerning = default_kerning?, kerning unless kerning.nil? prev_transform, @text_transform = @text_transform, (transform == 'none' ? nil : transform) if transform font family, size: size, style: (style && style.to_sym) do result = yield end @font_color = prev_color if color default_kerning prev_kerning unless kerning.nil? @text_transform = prev_transform if transform result end # Calculate the font size (down to the minimum font size) that would allow # all the specified fragments to fit in the available width without wrapping lines. # # Return the calculated font size if an adjustment is necessary or nil if no # font size adjustment is necessary. def theme_font_size_autofit fragments, category arranger = arrange_fragments_by_line fragments theme_font category do # NOTE finalizing the line here generates fragments & calculates their widths using the current font settings # CAUTION it also removes zero-width spaces arranger.finalize_line actual_width = width_of_fragments arranger.fragments unless ::Array === (padding = @theme[%(#{category}_padding)]) padding = ::Array.new 4, padding end available_width = bounds.width - (padding[3] || 0) - (padding[1] || 0) if actual_width > available_width adjusted_font_size = ((available_width * font_size).to_f / actual_width).truncate 4 if (min = @theme[%(#{category}_font_size_min)] || @theme.base_font_size_min) && adjusted_font_size < min min else adjusted_font_size end end end end # Arrange fragments by line in an arranger and return an unfinalized arranger. # # Finalizing the arranger is deferred since it must be done in the context of # the global font settings you want applied to each fragment. def arrange_fragments_by_line fragments, _opts = {} arranger = ::Prawn::Text::Formatted::Arranger.new self by_line = arranger.consumed = [] fragments.each do |fragment| if (text = fragment[:text]) == LF by_line << fragment elsif text.include? LF text.scan LineScanRx do |line| by_line << (line == LF ? { text: LF } : (fragment.merge text: line)) end else by_line << fragment end end arranger end # Calculate the width that is needed to print all the # fragments without wrapping any lines. # # This method assumes endlines are represented as discrete entries in the # fragments array. def width_of_fragments fragments line_widths = [0] fragments.each do |fragment| if fragment.text == LF line_widths << 0 else line_widths[-1] += fragment.width end end line_widths.max end # Compute the rendered width of a string, taking fallback fonts into account def rendered_width_of_string str, opts = {} opts = opts.merge kerning: default_kerning? if str.length == 1 rendered_width_of_char str, opts elsif (chars = str.each_char).all? {|char| font.glyph_present? char } width_of_string str, opts else char_widths = chars.map {|char| rendered_width_of_char char, opts } char_widths.sum + (char_widths.length * character_spacing) end end # Compute the rendered width of a char, taking fallback fonts into account def rendered_width_of_char char, opts = {} unless @fallback_fonts.empty? || (font.glyph_present? char) @fallback_fonts.each do |fallback_font| font fallback_font do return width_of_string char, opts if font.glyph_present? char end end end width_of_string char, opts end # TODO: document me, esp the first line formatting functionality def typeset_text string, line_metrics, opts = {} move_down line_metrics.padding_top opts = { leading: line_metrics.leading, final_gap: line_metrics.final_gap }.merge opts string = string.gsub CjkLineBreakRx, ZeroWidthSpace if @cjk_line_breaks if (hanging_indent = (opts.delete :hanging_indent) || 0) > 0 indent hanging_indent do text string, (opts.merge indent_paragraphs: -hanging_indent) end elsif (first_line_opts = opts.delete :first_line_options) # TODO: good candidate for Prawn enhancement! text_with_formatted_first_line string, first_line_opts, opts else text string, opts end move_down line_metrics.padding_bottom end # QUESTION combine with typeset_text? def typeset_formatted_text fragments, line_metrics, opts = {} move_down line_metrics.padding_top opts = { leading: line_metrics.leading, final_gap: line_metrics.final_gap }.merge opts if (hanging_indent = (opts.delete :hanging_indent) || 0) > 0 indent hanging_indent do formatted_text fragments, (opts.merge indent_paragraphs: -hanging_indent) end else formatted_text fragments, opts end move_down line_metrics.padding_bottom end def height_of_typeset_text string, opts = {} line_metrics = (calc_line_metrics opts[:line_height] || @theme.base_line_height) (height_of string, leading: line_metrics.leading, final_gap: line_metrics.final_gap) + line_metrics.padding_top + (opts[:single_line] ? 0 : line_metrics.padding_bottom) end # NOTE only used when tabsize attribute is not specified # tabs must always be replaced with spaces in order for the indentation guards to work def expand_tabs string if string.nil_or_empty? '' elsif string.include? TAB full_tab_space = ' ' * (tab_size = 4) (string.split LF, -1).map {|line| if line.empty? line elsif (tab_idx = line.index TAB) if tab_idx == 0 leading_tabs = 0 line.each_byte do |b| break unless b == 9 leading_tabs += 1 end line = %(#{full_tab_space * leading_tabs}#{rest = line.slice leading_tabs, line.length}) next line unless rest.include? TAB end # keeps track of how many spaces were added to adjust offset in match data spaces_added = 0 idx = 0 result = '' line.each_char do |c| if c == TAB # calculate how many spaces this tab represents, then replace tab with spaces if (offset = idx + spaces_added) % tab_size == 0 spaces_added += (tab_size - 1) result += full_tab_space else unless (spaces = tab_size - offset % tab_size) == 1 spaces_added += (spaces - 1) end result += (' ' * spaces) end else result += c end idx += 1 end result else line end }.join LF else string end end # Add an indentation guard at the start of indented lines. # Expand tabs to spaces if tabs are present def guard_indentation string unless (string = expand_tabs string).empty? string[0] = GuardedIndent if string.start_with? ' ' string.gsub! InnerIndent, GuardedInnerIndent if string.include? InnerIndent end string end def guard_indentation_in_fragments fragments start_of_line = true fragments.each do |fragment| next if (text = fragment[:text]).empty? if start_of_line && (text.start_with? ' ') fragment[:text] = GuardedIndent + (((text = text.slice 1, text.length).include? InnerIndent) ? (text.gsub InnerIndent, GuardedInnerIndent) : text) elsif text.include? InnerIndent fragment[:text] = text.gsub InnerIndent, GuardedInnerIndent end start_of_line = text.end_with? LF end fragments end # Derive a PDF-safe, ASCII-only anchor name from the given value. # Encodes value into hex if it contains characters outside the ASCII range. # If value is nil, derive an anchor name from the default_value, if given. def derive_anchor_from_id value, default_value = nil if value value.ascii_only? ? value : %(0x#{::PDF::Core.string_to_hex value}) elsif default_value %(__anchor-#{default_value}) end end # If an id is provided or the node passed as the first argument has an id, # add a named destination to the document equivalent to the node id at the # current y position. If the node does not have an id and an id is not # specified, do nothing. # # If the node is a section, and the current y position is the top of the # page, set the y position equal to the page height to improve the navigation # experience. If the current x position is at or inside the left margin, set # the x position equal to 0 (left edge of page) to improve the navigation # experience. def add_dest_for_block node, id = nil if !scratch? && (id ||= node.id) dest_x = bounds.absolute_left.truncate 4 # QUESTION when content is aligned to left margin, should we keep precise x value or just use 0? dest_x = 0 if dest_x <= page_margin_left dest_y = at_page_top? && (node.context == :section || node.context == :document) ? page_height : y # TODO: find a way to store only the ref of the destination; look it up when we need it node.set_attr 'pdf-destination', (node_dest = (dest_xyz dest_x, dest_y)) add_dest id, node_dest end nil end def resolve_alignment_from_role roles if (align_role = roles.reverse.find {|r| TextAlignmentRoles.include? r }) (align_role.slice 5, align_role.length).to_sym end end # QUESTION is this method still necessary? def resolve_imagesdir doc if (imagesdir = doc.attr 'imagesdir').nil_or_empty? || (imagesdir = imagesdir.chomp '/') == '.' nil else imagesdir end end # Resolve the system path of the specified image path. # # Resolve and normalize the absolute system path of the specified image, # taking into account the imagesdir attribute. If an image path is not # specified, the path is read from the target attribute of the specified # document node. # # If the target is a URI and the allow-uri-read attribute is set on the # document, read the file contents to a temporary file and return the path to # the temporary file. If the target is a URI and the allow-uri-read attribute # is not set, or the URI cannot be read, this method returns a nil value. # # When a temporary file is used, the file is stored in @tmp_files to be cleaned up after conversion. def resolve_image_path node, image_path = nil, relative_to = true, image_format = nil doc = node.document imagesdir = relative_to == true ? (resolve_imagesdir doc) : relative_to image_path ||= node.attr 'target' image_format ||= ::Asciidoctor::Image.format image_path, (::Asciidoctor::Image === node ? node.attributes : nil) # NOTE base64 logic currently used for inline images if ::Base64 === image_path return @tmp_files[image_path] if @tmp_files.key? image_path tmp_image = ::Tempfile.create ['image-', image_format && %(.#{image_format})] tmp_image.binmode unless image_format == 'svg' begin tmp_image.write ::Base64.decode64 image_path tmp_image.close @tmp_files[image_path] = tmp_image.path rescue @tmp_files[image_path] = nil tmp_image.close unlink_tmp_file tmp_image.path nil end # NOTE: this will catch a classloader resource path on JRuby (e.g., uri:classloader:/path/to/image) elsif ::File.absolute_path? image_path ::File.absolute_path image_path elsif !(is_uri = node.is_uri? image_path) && imagesdir && (::File.absolute_path? imagesdir) ::File.absolute_path image_path, imagesdir elsif is_uri || (imagesdir && (node.is_uri? imagesdir) && (image_path = node.normalize_web_path image_path, imagesdir, false)) if !allow_uri_read logger.warn %(allow-uri-read is not enabled; cannot embed remote image: #{image_path}) unless scratch? return elsif @tmp_files.key? image_path return @tmp_files[image_path] end tmp_image = ::Tempfile.create ['image-', image_format && %(.#{image_format})] tmp_image.binmode if (binary = image_format != 'svg') begin load_open_uri.open_uri(image_path, (binary ? 'rb' : 'r')) {|fd| tmp_image.write fd.read } tmp_image.close @tmp_files[image_path] = tmp_image.path rescue @tmp_files[image_path] = nil logger.warn %(could not retrieve remote image: #{image_path}; #{$!.message}) unless scratch? tmp_image.close unlink_tmp_file tmp_image.path nil end # handle case when image is a local file else node.normalize_system_path image_path, imagesdir, nil, target_name: 'image' end end # Resolve the path and sizing of the background image either from a document attribute or theme key. # # Returns the argument list for the image method if the document attribute or theme key is found. Otherwise, # nothing. The first argument in the argument list is the image path. If that value is nil, the background # image is disabled. The second argument is the options hash to specify the dimensions, such as width and fit. def resolve_background_image doc, theme, key, opts = {} if ::String === key image_path = (doc.attr key) || (from_theme = theme[(key.tr '-', '_').to_sym]) else image_path = from_theme = theme[key] end if image_path if image_path == 'none' return [] elsif (image_path.include? ':') && image_path =~ ImageAttributeValueRx image_attrs = (AttributeList.new $2).parse %w(alt width) if from_theme image_path = sub_attributes_discretely doc, $1 image_relative_to = @themesdir else image_path = $1 image_relative_to = true end elsif from_theme image_path = sub_attributes_discretely doc, image_path image_relative_to = @themesdir end image_path, image_format = ::Asciidoctor::Image.target_and_format image_path, image_attrs image_path = resolve_image_path doc, image_path, image_relative_to, image_format return unless image_path unless ::File.readable? image_path logger.warn %(#{key.to_s.tr '-_', ' '} not found or readable: #{image_path}) return end [image_path, (resolve_image_options image_path, image_attrs, (opts.merge background: true, format: image_format))] end end def resolve_image_options image_path, image_attrs, opts = {} if (image_format = opts[:format] || (::Asciidoctor::Image.format image_path)) == 'svg' image_opts = { enable_file_requests_with_root: (::File.dirname image_path), enable_web_requests: allow_uri_read, cache_images: cache_uri, fallback_font_name: fallback_svg_font_name, format: 'svg', } else image_opts = {} end background = opts[:background] container_size = opts[:container_size] || (background ? [page_width, page_height] : [bounds.width, bounds.height]) if image_attrs if background && (image_pos = image_attrs['position']) && (image_pos = resolve_background_position image_pos, nil) image_opts.update image_pos end if (image_fit = image_attrs['fit'] || (background ? 'contain' : nil)) image_fit = 'contain' if image_format == 'svg' && image_fit == 'fill' container_width, container_height = container_size case image_fit when 'none' if (image_width = resolve_explicit_width image_attrs, container_width) image_opts[:width] = image_width end when 'scale-down' # NOTE if width and height aren't set in SVG, real width and height are computed after stretching viewbox to fit page if (image_width = resolve_explicit_width image_attrs, container_width) && image_width > container_width image_opts[:fit] = container_size elsif (image_size = intrinsic_image_dimensions image_path, image_format) && (image_width ? image_width * (image_size[:height].to_f / image_size[:width]) > container_height : (to_pt image_size[:width], :px) > container_width || (to_pt image_size[:height], :px) > container_height) image_opts[:fit] = container_size elsif image_width image_opts[:width] = image_width end when 'cover' # QUESTION should we take explicit width into account? if (image_size = intrinsic_image_dimensions image_path, image_format) if container_width * (image_size[:height].to_f / image_size[:width]) < container_height image_opts[:height] = container_height else image_opts[:width] = container_width end end when 'fill' image_opts[:width] = container_width image_opts[:height] = container_height else # when 'contain' image_opts[:fit] = container_size end elsif (image_width = resolve_explicit_width image_attrs, container_size[0]) image_opts[:width] = image_width else # default to fit=contain if sizing is not specified image_opts[:fit] = container_size end else image_opts[:fit] = container_size end image_opts end # Resolves the explicit width as a PDF pt value if the value is specified in # absolute units, but defers resolving a percentage value until later. # # See resolve_explicit_width method for details about which attributes are considered. def preresolve_explicit_width attrs if attrs.key? 'pdfwidth' ((width = attrs['pdfwidth']).end_with? '%') ? width : (str_to_pt width) elsif attrs.key? 'scaledwidth' # NOTE the parser automatically appends % if value is unitless ((width = attrs['scaledwidth']).end_with? '%') ? width : (str_to_pt width) elsif attrs.key? 'width' # QUESTION should we honor percentage width value? to_pt attrs['width'].to_f, :px end end # Resolves the explicit width as a PDF pt value, if specified. # # Resolves the explicit width, first considering the pdfwidth attribute, then # the scaledwidth attribute and finally the width attribute. If the specified # value is in pixels, the value is scaled by 75% to perform approximate # CSS px to PDF pt conversion. If the resolved width is larger than the # max_width, the max_width value is returned. #-- # QUESTION should we enforce positive result? def resolve_explicit_width attrs, max_width = bounds.width, opts = {} # QUESTION should we restrict width to max_width for pdfwidth? if attrs.key? 'pdfwidth' if (width = attrs['pdfwidth']).end_with? '%' (width.to_f / 100) * max_width elsif opts[:support_vw] && (width.end_with? 'vw') (width.chomp 'vw').extend ViewportWidth else str_to_pt width end elsif attrs.key? 'scaledwidth' # NOTE the parser automatically appends % if value is unitless if (width = attrs['scaledwidth']).end_with? '%' (width.to_f / 100) * max_width else str_to_pt width end elsif opts[:use_fallback] && (width = @theme.image_width) if ::Numeric === width width elsif (width = width.to_s).end_with? '%' (width.to_f / 100) * max_width elsif opts[:support_vw] && (width.end_with? 'vw') (width.chomp 'vw').extend ViewportWidth else str_to_pt width end elsif attrs.key? 'width' if (width = attrs['width']).end_with? '%' width = (width.to_f / 100) * max_width else width = to_pt width.to_f, :px end opts[:constrain_to_bounds] ? [max_width, width].min : width end end def resolve_background_position value, default_value = {} if value.include? ' ' result = {} center = nil (value.split ' ', 2).each do |keyword| case keyword when 'left', 'right' result[:position] = keyword.to_sym when 'top', 'bottom' result[:vposition] = keyword.to_sym when 'center' center = true end end if center result[:position] ||= :center result[:vposition] ||= :center result elsif (result.key? :position) && (result.key? :vposition) result else default_value end elsif value == 'left' || value == 'right' || value == 'center' { position: value.to_sym, vposition: :center } elsif value == 'top' || value == 'bottom' { position: :center, vposition: value.to_sym } else default_value end end def resolve_top val if val.end_with? 'vh' page_height * (1 - (val.to_f / 100)) elsif val.end_with? '%' @y - effective_page_height * (val.to_f / 100) else @y - (str_to_pt val) end end def add_link_to_image uri, image_info, image_opts image_width = image_info[:width] image_height = image_info[:height] case image_opts[:position] when :center image_x = bounds.left_side + (bounds.width - image_width) * 0.5 when :right image_x = bounds.right_side - image_width else # :left or not set image_x = bounds.left_side end case image_opts[:vposition] when :top image_y = bounds.absolute_top when :center image_y = bounds.absolute_top - (bounds.height - image_height) * 0.5 when :bottom image_y = bounds.absolute_bottom + image_height else image_y = y end unless (image_y = image_opts[:y]) link_annotation [image_x, (image_y - image_height), (image_x + image_width), image_y], Border: [0, 0, 0], A: { Type: :Action, S: :URI, URI: uri.as_pdf } end def load_open_uri if @cache_uri && !(defined? ::OpenURI::Cache) # disable URI caching if library fails to load @cache_uri = false if (Helpers.require_library 'open-uri/cached', 'open-uri-cached', :warn).nil? end ::OpenURI end def remove_tmp_files @tmp_files.reject! {|_, path| path ? (unlink_tmp_file path) : true } end def unlink_tmp_file path ::File.unlink path if ::File.exist? path true rescue logger.warn %(could not delete temporary file: #{path}; #{$!.message}) unless scratch? false end def apply_subs_discretely doc, value, opts = {} imagesdir = doc.attr 'imagesdir' doc.set_attr 'imagesdir', @themesdir # FIXME: get sub_attributes to handle drop-line w/o a warning doc.set_attr 'attribute-missing', 'skip' unless (attribute_missing = doc.attr 'attribute-missing') == 'skip' value = value.gsub '\{', '\\\\\\{' if (escaped_attr_ref = value.include? '\{') value = doc.apply_subs value value = (value.split LF).delete_if {|line| SimpleAttributeRefRx.match? line }.join LF if opts[:drop_lines_with_unresolved_attributes] && (value.include? '{') value = value.gsub '\{', '{' if escaped_attr_ref doc.set_attr 'attribute-missing', attribute_missing unless attribute_missing == 'skip' if imagesdir doc.set_attr 'imagesdir', imagesdir else doc.remove_attr 'imagesdir' end value end def sub_attributes_discretely doc, value doc.set_attr 'attribute-missing', 'skip' unless (attribute_missing = doc.attr 'attribute-missing') == 'skip' value = doc.apply_subs value, [:attributes] doc.set_attr 'attribute-missing', attribute_missing unless attribute_missing == 'skip' value end def promote_author doc, idx = 1 doc.remove_attr 'url' if (original_url = doc.attr 'url') email = nil if idx > 1 original_attrs = AuthorAttributeNames.each_with_object({}) do |name, accum| accum[name] = doc.attr name if (val = doc.attr %(#{name}_#{idx})) doc.set_attr name, val # NOTE email holds url as well email = val if name == 'email' else doc.remove_attr name end end doc.set_attr 'url', ((email.include? '@') ? %(mailto:#{email}) : email) if email result = yield original_attrs.each {|name, val| val ? (doc.set_attr name, val) : (doc.remove_attr name) } else if (email = doc.attr 'email') doc.set_attr 'url', ((email.include? '@') ? %(mailto:#{email}) : email) end result = yield end if original_url doc.set_attr 'url', original_url elsif email doc.remove_attr 'url' end result end # NOTE assume URL is escaped (i.e., contains character references such as &) def breakable_uri uri scheme, address = uri.split UriSchemeBoundaryRx, 2 address, scheme = scheme, address unless address unless address.nil_or_empty? address = address.gsub UriBreakCharsRx, UriBreakCharRepl # NOTE require at least two characters after a break address.slice!(-2) if address[-2] == ZeroWidthSpace end %(#{scheme}#{address}) end def consolidate_ranges nums if nums.size > 1 prev = nil nums.each_with_object([]) {|num, accum| if prev && (prev.to_i + 1) == num.to_i accum[-1][1] = num else accum << [num] end prev = num }.map {|range| range.join '-' } else nums end end def resolve_pagenums val pgnums = [] ((val.include? ',') ? (val.split ',') : (val.split ';')).each do |entry| if entry.include? '..' from, _, to = entry.partition '..' pgnums += ([from.to_i, 1].max..[to.to_i, 1].max).to_a else pgnums << entry.to_i end end pgnums end def get_char code (code.start_with? '\u') ? ([((code.slice 2, code.length).to_i 16)].pack 'U1') : code end # QUESTION move to prawn/extensions.rb? def init_scratch_prototype @save_state = nil @scratch_depth = 0 # IMPORTANT don't set font before using Marshal, it causes serialization to fail @prototype = ::Marshal.load ::Marshal.dump self @prototype.state.store.info.data[:Scratch] = @prototype.text_formatter.scratch = true # NOTE we're now starting a new page each time, so no need to do it here #@prototype.start_new_page if @prototype.page_number == 0 end def push_scratch doc if (@scratch_depth += 1) == 1 @save_state = { catalog: {}.tap {|accum| doc.catalog.each {|k, v| accum[k] = v.dup } }, attributes: doc.attributes.dup, } end end def pop_scratch doc if (@scratch_depth -= 1) == 0 doc.catalog.replace @save_state[:catalog] doc.attributes.replace @save_state[:attributes] @save_state = nil end end end end Pdf = PDF unless const_defined? :Pdf, false end �����������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext.rb�����������������������������������������������0000664�0000000�0000000�00000000337�14163570564�0022536�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'ext/core' require_relative 'ext/asciidoctor' require_relative 'ext/pdf-core' require_relative 'ext/prawn' require_relative 'ext/prawn-svg' require_relative 'ext/prawn-table' �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/�������������������������������������������������0000775�0000000�0000000�00000000000�14163570564�0022206�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/asciidoctor.rb�����������������������������������0000664�0000000�0000000�00000000736�14163570564�0025044�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true # NOTE these are either candidates for inclusion in Asciidoctor core or backports require_relative 'asciidoctor/logging_shim' unless defined? Asciidoctor::Logging require_relative 'asciidoctor/abstract_node' require_relative 'asciidoctor/abstract_block' require_relative 'asciidoctor/document' require_relative 'asciidoctor/section' require_relative 'asciidoctor/list' require_relative 'asciidoctor/list_item' require_relative 'asciidoctor/image' ����������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/asciidoctor/�������������������������������������0000775�0000000�0000000�00000000000�14163570564�0024511�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/asciidoctor/abstract_block.rb��������������������0000664�0000000�0000000�00000000221�14163570564�0030006�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true class Asciidoctor::AbstractBlock def sections? !sections.empty? end unless method_defined? :sections? end �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/asciidoctor/abstract_node.rb���������������������0000664�0000000�0000000�00000000240�14163570564�0027642�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true class Asciidoctor::AbstractNode def remove_attr name @attributes.delete name end unless method_defined? :remove_attr end ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/asciidoctor/document.rb��������������������������0000664�0000000�0000000�00000000172�14163570564�0026654�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true class Asciidoctor::Document alias catalog references unless method_defined? :catalog end ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/asciidoctor/image.rb�����������������������������0000664�0000000�0000000�00000002475�14163570564�0026130�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true module Asciidoctor module Image DataUriRx = /^data:image\/(?<fmt>png|jpe?g|gif|pdf|bmp|tiff|svg\+xml);base64,(?<data>.*)$/ FormatAliases = { 'jpg' => 'jpeg', 'svg+xml' => 'svg' } class << self def format image_path, attributes = nil (attributes && attributes['format']) || ((ext = ::File.extname image_path).downcase.slice 1, ext.length) end def target_and_format image_path, attributes = nil if (image_path.start_with? 'data:') && (m = DataUriRx.match image_path) [(m[:data].extend ::Base64), (FormatAliases.fetch m[:fmt], m[:fmt])] else [image_path, (attributes && attributes['format']) || ((ext = ::File.extname image_path).downcase.slice 1, ext.length)] end end end def format (attr 'format', nil, false) || ((ext = ::File.extname(inline? ? target : (attr 'target'))).downcase.slice 1, ext.length) end def target_and_format image_path = inline? ? target : (attr 'target') if (image_path.start_with? 'data:') && (m = DataUriRx.match image_path) [(m[:data].extend ::Base64), (FormatAliases.fetch m[:fmt], m[:fmt])] else [image_path, (attr 'format', nil, false) || ((ext = ::File.extname image_path).downcase.slice 1, ext.length)] end end end end ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/asciidoctor/list.rb������������������������������0000664�0000000�0000000�00000002304�14163570564�0026010�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true # TODO: add these methods to Asciidoctor core class Asciidoctor::List # Check whether this list is an outline list (unordered or ordered). # # Return true if this list is an outline list. Otherwise, return false. def outline? @context == :ulist || @context == :olist end unless method_defined? :outline? # Check whether this list is nested inside the item of another list. # # Return true if the parent of this list is a list item. Otherwise, return false. def nested? Asciidoctor::ListItem === @parent end unless method_defined? :nested? # Get the level of this list within the broader outline list (unordered or ordered) structure. # # This method differs from the level property in that it considers all outline list ancestors. # It's important for selecting the marker for an unordered list. # # Return the 1-based level of this list within the outline list structure. def outline_level l = 1 ancestor = self # FIXME: does not cross out of AsciiDoc table cell while (ancestor = ancestor.parent) l += 1 if Asciidoctor::List === ancestor && ancestor.outline? end l end unless method_defined? :outline_level end ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/asciidoctor/list_item.rb�������������������������0000664�0000000�0000000�00000001411�14163570564�0027024�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true # TODO: add these methods to Asciidoctor core class Asciidoctor::ListItem # Check whether this list item has complex content (i.e., nested blocks other than an outline list). # # Return false if the list item contains no blocks or it contains a nested outline list. Otherwise, return true. def complex? !simple? end unless method_defined? :complex? # Check whether this list item has simple content (i.e., no nested blocks aside from an outline list). # # Return true if the list item contains no blocks or it contains a nested outline list. Otherwise, return false. def simple? @blocks.empty? || (@blocks.size == 1 && Asciidoctor::List === (blk = @blocks[0]) && blk.outline?) end unless method_defined? :simple? end �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/asciidoctor/logging_shim.rb����������������������0000664�0000000�0000000�00000001165�14163570564�0027507�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true module Asciidoctor class StubLogger class << self def info message = nil # ignore since this isn't a real logger end def info? false end def warn message = nil ::Kernel.warn %(asciidoctor: WARNING: #{message || (block_given? ? yield : '???')}) end def error message = nil ::Kernel.warn %(asciidoctor: ERROR: #{message || (block_given? ? yield : '???')}) end end end module Logging def logger StubLogger end def message_with_context text, _context = {} text end end end �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/asciidoctor/section.rb���������������������������0000664�0000000�0000000�00000003430�14163570564�0026502�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true class Asciidoctor::Section def numbered_title opts = {} @cached_numbered_title ||= nil unless @cached_numbered_title slevel = @level == 0 && @special ? 1 : @level if @numbered && !@caption && slevel <= (@document.attr 'sectnumlevels', 3).to_i @is_numbered = true if @document.doctype == 'book' case slevel when 0 @cached_numbered_title = %(#{sectnum nil, ':'} #{title}) @cached_formal_numbered_title = %(#{@document.attr 'part-signifier', 'Part'} #{@cached_numbered_title}).lstrip when 1 @cached_numbered_title = %(#{sectnum} #{title}) @cached_formal_numbered_title = %(#{@document.attr 'chapter-signifier', (@document.attr 'chapter-label', 'Chapter')} #{@cached_numbered_title}).lstrip else @cached_formal_numbered_title = @cached_numbered_title = %(#{sectnum} #{title}) end else @cached_formal_numbered_title = @cached_numbered_title = %(#{sectnum} #{title}) end elsif slevel == 0 @is_numbered = false @cached_numbered_title = @cached_formal_numbered_title = title else @is_numbered = false @cached_numbered_title = @cached_formal_numbered_title = captioned_title end end opts[:formal] ? @cached_formal_numbered_title : @cached_numbered_title end unless method_defined? :numbered_title def part? @document.doctype == 'book' && @level == 0 && !@special end unless method_defined? :part? def chapter? @document.doctype == 'book' && (@level == 1 || (@special && @level == 0)) end unless method_defined? :chapter? def part_or_chapter? @document.doctype == 'book' && @level < 2 end unless method_defined? :part_or_chapter? end ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/core.rb������������������������������������������0000664�0000000�0000000�00000000400�14163570564�0023455�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'core/object' require_relative 'core/array' require_relative 'core/file' require_relative 'core/hash' require_relative 'core/string' require_relative 'core/regexp' require_relative 'core/quantifiable_stdout' ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/core/��������������������������������������������0000775�0000000�0000000�00000000000�14163570564�0023136�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/core/array.rb������������������������������������0000664�0000000�0000000�00000000337�14163570564�0024604�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true class Array def delete_all *entries entries.map {|entry| delete entry }.compact end unless method_defined? :delete_all def sum reduce(&:+) end unless method_defined? :sum end �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/core/file.rb�������������������������������������0000664�0000000�0000000�00000000336�14163570564�0024404�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true class File # NOTE: remove once minimum required Ruby version is at least 2.7 def self.absolute_path? path (::Pathname.new path).absolute? end unless respond_to? :absolute_path? end ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/core/hash.rb�������������������������������������0000664�0000000�0000000�00000000175�14163570564�0024411�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true class Hash def compact select {|_, val| val } end unless method_defined? :compact end ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/core/object.rb�����������������������������������0000664�0000000�0000000�00000000235�14163570564�0024731�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true class Object # Convert the object to a serialized PDF object. def to_pdf_object ::PDF::Core.pdf_object self end end �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/core/quantifiable_stdout.rb����������������������0000664�0000000�0000000�00000001202�14163570564�0027524�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require 'delegate' # A delegator that allows the size method to be used on the STDOUT object. # # The size of the content written to STDOUT cannot be measured normally. This # class wraps the STDOUT object so the cumulative size of the content passed to # the write method (while wrapped in this decorator) can be measured. class QuantifiableStdout < SimpleDelegator attr_reader :size def initialize delegate @size = 0 super delegate.binmode end def << content @size += content.to_s.bytesize super end def write content @size += content.to_s.bytesize super end end ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/core/regexp.rb�����������������������������������0000664�0000000�0000000�00000000151�14163570564�0024752�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true class Regexp alias match? === unless Regexp.method_defined? :match? end �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/core/string.rb�����������������������������������0000664�0000000�0000000�00000001266�14163570564�0024776�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true class String def pred # integers ((Integer self) - 1).to_s rescue ::ArgumentError # chars (upper alpha, lower alpha, lower greek) ([65, 97, 945].include? ord) ? '0' : ([ord - 1].pack 'U1') end unless method_defined? :pred # If the string is ASCII only, convert it to a PDF LiteralString object. Otherwise, return self. def as_pdf ascii_only? ? (::PDF::Core::LiteralString.new encode ::Encoding::ASCII_8BIT) : self end # Convert the string to a serialized PDF object. If the string can be encoded as ASCII-8BIT, first convert it to a PDF # LiteralString object. def to_pdf_object ::PDF::Core.pdf_object as_pdf end end ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/pdf-core.rb��������������������������������������0000664�0000000�0000000�00000001160�14163570564�0024230�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true module PDF::Core class << self alias _initial_real real # NOTE Makes v1.6.x work with the modified precision settings (0.5f) in Prawn 2.4 while preserving existing behavior def real num, precision = 4 ("%.#{precision}f" % num).sub(/((?<!\.)0)+\z/, '') end alias _initial_real_params real_params def real_params array return array.map {|e| real e, 5 }.join(' ') if (caller_locations 1, 1)[0].base_label == 'transformation_matrix' _initial_real_params array end end end require_relative 'pdf-core/pdf_object' require_relative 'pdf-core/page' ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/pdf-core/����������������������������������������0000775�0000000�0000000�00000000000�14163570564�0023705�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/pdf-core/page.rb���������������������������������0000664�0000000�0000000�00000004045�14163570564�0025151�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true class PDF::Core::Page InitialPageContent = %(q\n) # Restore the new_content_stream method from PDF::Core::Page # # The prawn-templates gem relies on the new_content_stream method on # PDF::Core::Page, which was removed in pdf-core 0.3.1. prawn-templates is # used for importing a single-page PDF into the current document. # # see https://github.com/prawnpdf/pdf-core/commit/67f9a08a03bcfcc5a24cf76b135c218d3d3ab05d def new_content_stream return if in_stamp_stream? dictionary.data[:Contents] = [content] unless Array === dictionary.data[:Contents] @content = document.ref({}) dictionary.data[:Contents] << document.state.store[@content] document.open_graphics_state end unless method_defined? :new_content_stream # NOTE alias method to avoid warning if another gem replaces this method alias __new_content_stream new_content_stream # Restore the imported_page? method from PDF::Core::Page # # see https://github.com/prawnpdf/pdf-core/commit/0e326a838e142061be8e062168190fae6b3b1dcf def imported_page? @imported_page end unless method_defined? :imported_page? # Record the page's current state as the tare content stream (i.e., empty, meaning no content has been written). def tare_content_stream @tare_content_stream = content.stream.filtered_stream end # Returns whether the current page is empty based on tare content stream (i.e., no content has been written). # Returns false if a page has not yet been created. def empty? content.stream.filtered_stream == (@tare_content_stream ||= InitialPageContent) && document.page_number > 0 end # Reset the content of the page. # Note that this method may leave behind an orphaned background image. def reset_content unless content.stream.filtered_stream == InitialPageContent xobjects.clear ext_gstates.clear new_content = document.state.store[document.ref({})] new_content << 'q' << ?\n content.replace new_content @tare_content_stream = InitialPageContent end end end �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/pdf-core/pdf_object.rb���������������������������0000664�0000000�0000000�00000000256�14163570564�0026334�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true unless (defined? PDF::Core.pdf_object) == 'method' module PDF::Core alias pdf_object PdfObject module_function :pdf_object end end ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/prawn-svg.rb�������������������������������������0000664�0000000�0000000�00000000266�14163570564�0024463�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require 'prawn-svg' unless defined? Prawn::SVG::Interface # NOTE disable system fonts since they're non-portable Prawn::SVG::Interface.font_path.clear ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/prawn-table.rb�����������������������������������0000664�0000000�0000000�00000000370�14163570564�0024747�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require ENV['PRAWN_TABLE_REQUIRE_PATH'] || 'prawn/table' unless defined? Prawn::Table::VERSION require_relative 'prawn-table/cell' require_relative 'prawn-table/cell/asciidoc' require_relative 'prawn-table/cell/text' ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/prawn-table/�������������������������������������0000775�0000000�0000000�00000000000�14163570564�0024422�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/prawn-table/cell.rb������������������������������0000664�0000000�0000000�00000003710�14163570564�0025667�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true class Prawn::Table::Cell remove_method :draw_borders # Draws borders around the cell. Borders are centered on the bounds of # the cell outside of any padding, so the caller is responsible for # setting appropriate padding to ensure the border does not overlap with # cell content. # def draw_borders pt x, y = pt @pdf.mask :line_width, :stroke_color do @borders.each do |border| idx = { top: 0, right: 1, bottom: 2, left: 3 }[border] border_color = @border_colors[idx] border_width = @border_widths[idx] border_line = @border_lines[idx] next unless border_width > 0 # Left and right borders are drawn one-half border beyond the center # of the corner, so that the corners end up square. from, to = case border when :top [[x, y], [x + width, y]] when :bottom [[x, y - height], [x + width, y - height]] when :left [[x, y + (border_top_width / 2.0)], [x, y - height - (border_bottom_width / 2.0)]] when :right [[x + width, y + (border_top_width / 2.0)], [x + width, y - height - (border_bottom_width / 2.0)]] end case border_line when :dashed @pdf.dash border_width * 4 when :dotted @pdf.dash border_width, space: border_width * 2 when :solid # normal line style else raise ::ArgumentError, 'border_line must be :solid, :dotted or :dashed' end @pdf.line_width = border_width if border_color == 'transparent' @pdf.stroke_color = '000000' @pdf.transparent 0 do @pdf.stroke_line from, to end else @pdf.stroke_color = border_color @pdf.stroke_line from, to end @pdf.undash end end end end ��������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/prawn-table/cell/��������������������������������0000775�0000000�0000000�00000000000�14163570564�0025341�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/prawn-table/cell/asciidoc.rb���������������������0000664�0000000�0000000�00000004754�14163570564�0027456�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true module Prawn class Table class Cell class AsciiDoc < Cell attr_accessor :align attr_accessor :valign def initialize pdf, opts = {} @font_options = {} super pdf, [], opts end def font_style= val @font_options[:style] = val end def text_color= val @font_options[:color] = val end def size= val @font_options[:size] = val end def font= val @font_options[:family] = val end # NOTE: automatic image sizing only works if cell has fixed width def dry_run cell = self max_height = nil height, = @pdf.dry_run do max_height = bounds.height # NOTE: we should be able to use cell.max_width, but returns 0 in some conditions (like when colspan > 1) indent cell.padding_left, bounds.width - cell.width + cell.padding_right do # HACK: force margin_top to be applied move_down 0.0001 # TODO: truncate margin bottom of last block traverse cell.content end end # FIXME: prawn-table doesn't support cell taller than a single page [max_height, height - 0.0001].min end def natural_content_width # QUESTION can we get a better estimate of the natural width? @natural_content_width ||= (@pdf.bounds.width - padding_left - padding_right) end def natural_content_height # NOTE when natural_content_height is called, we already know max width @natural_content_height ||= dry_run end def draw_content pdf = @pdf # NOTE draw_bounded_content automatically adds FPTolerance to width and height pdf.bounds.instance_variable_set :@width, spanned_content_width # NOTE we've already reserved the space, so just let the box stretch to the bottom of the page to avoid overflow pdf.bounds.instance_variable_set :@height, pdf.y if @valign != :top && (excess_y = spanned_content_height - natural_content_height) > 0 pdf.move_down(@valign == :center ? (excess_y.fdiv 2) : excess_y) end # TODO: apply horizontal alignment (right now must use alignment on content block) # QUESTION inherit table cell font properties? pdf.traverse content nil end end end end end ��������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/prawn-table/cell/text.rb�������������������������0000664�0000000�0000000�00000000632�14163570564�0026653�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true class Prawn::Table::Cell::Text # Override draw_content method to drop cursor advancement remove_method :draw_content def draw_content with_font do with_text_color do (text_box \ width: spanned_content_width + FPTolerance, height: spanned_content_height + FPTolerance, at: [0, @pdf.cursor]).render end end end end ������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/prawn.rb�����������������������������������������0000664�0000000�0000000�00000000603�14163570564�0023661�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true # the following are organized under the Asciidoctor::Prawn namespace require_relative 'prawn/font_metric_cache' require_relative 'prawn/font/afm' require_relative 'prawn/images' require_relative 'prawn/formatted_text/arranger' require_relative 'prawn/formatted_text/box' require_relative 'prawn/formatted_text/fragment' require_relative 'prawn/extensions' �����������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/prawn/�������������������������������������������0000775�0000000�0000000�00000000000�14163570564�0023335�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/prawn/coderay_encoder.rb�������������������������0000664�0000000�0000000�00000006074�14163570564�0027016�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true ###################################################################### # # This file was copied from Prawn (manual/syntax_highlight.rb) and # modified for use with Asciidoctor PDF. # # Since the file originates from the Prawn project, it shares the Prawn # license. Thus, the file may be used under Matz's original licensing terms for # Ruby, the GPLv2 license, or the GPLv3 license. # # Copyright (C) Felipe Doria # Copyright (C) 2014-present OpenDevise Inc. and the Asciidoctor Project # ###################################################################### require 'coderay' # Registers a to_prawn method with CodeRay. The method returns an array of hashes to be # used with Prawn::Text.formatted_text(array). # # Usage: # # CodeRay.scan(string, :ruby).to_prawn # module Asciidoctor module Prawn class CodeRayEncoder < ::CodeRay::Encoders::Encoder register_for :to_prawn # Manni theme from Pygments COLORS = { default: '333333', annotation: '9999FF', attribute_name: '4F9FCF', attribute_value: 'D44950', class: '00AA88', class_variable: '003333', color: 'FF6600', comment: '999999', constant: '336600', directive: '006699', doctype: '009999', entity: '999999', float: 'FF6600', function: 'CC00FF', important: '9999FF', inline_delimiter: 'EF804F', instance_variable: '003333', integer: 'FF6600', key: '006699', keyword: '006699', method: 'CC00FF', namespace: '00CCFF', predefined_type: '007788', regexp: '33AAAA', string: 'CC3300', symbol: 'FFCC33', tag: '2F6F9F', type: '007788', value: '336600', } LF = ?\n NoBreakSpace = ?\u00a0 InnerIndent = LF + ' ' GuardedIndent = ?\u00a0 GuardedInnerIndent = LF + GuardedIndent def setup options super @out = [] @open = [] # NOTE tracks whether text token begins at the start of a line @start_of_line = true end def text_token text, kind if text == LF @out << { text: text } @start_of_line = true # NOTE text is nil and kind is :error when CodeRay ends parsing on an error elsif text # NOTE add guard character to prevent Prawn from trimming indentation text[0] = GuardedIndent if @start_of_line && (text.start_with? ' ') text.gsub! InnerIndent, GuardedInnerIndent if text.include? InnerIndent # NOTE this optimization assumes we don't support/use background colors if text.rstrip.empty? @out << { text: text } else # QUESTION should we default to no color? @out << { text: text, color: (COLORS[kind] || COLORS[@open[-1]] || COLORS[:default]) } end @start_of_line = text.end_with? LF end end def begin_group kind @open << kind end def end_group _kind @open.pop end end end end ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/prawn/extensions.rb������������������������������0000664�0000000�0000000�00000102375�14163570564�0026071�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true Prawn::Font::AFM.instance_variable_set :@hide_m17n_warning, true require 'prawn/icon' Prawn::Icon::Compatibility.send :prepend, (::Module.new { def warning *args; end }) module Asciidoctor module Prawn module Extensions include ::Asciidoctor::PDF::Measurements include ::Asciidoctor::PDF::Sanitizer include ::Asciidoctor::PDF::TextTransformer FontAwesomeIconSets = %w(fab far fas) IconSets = %w(fab far fas fi pf).to_set IconSetPrefixes = IconSets.map {|it| it + '-' } InitialPageContent = %(q\n) (FontStyleToSet = { bold: [:bold].to_set, italic: [:italic].to_set, bold_italic: [:bold, :italic].to_set, }).default = ::Set.new # NOTE must use a visible char for placeholder or else Prawn won't reserve space for the fragment PlaceholderChar = ?\u2063 # - :height is the height of a line # - :leading is spacing between adjacent lines # - :padding_top is half line spacing, plus any line_gap in the font # - :padding_bottom is half line spacing # - :final_gap determines whether a gap is added below the last line LineMetrics = ::Struct.new :height, :leading, :padding_top, :padding_bottom, :final_gap # Core # Retrieves the catalog reference data for the PDF. # def catalog state.store.root end # Retrieves the compatiblity version of the PDF. # def min_version state.version end # Measurements # Returns the width of the current page from edge-to-edge # def page_width page.dimensions[2] end # Returns the effective (writable) width of the page # # If inside a bounding box, returns width of box. # def effective_page_width reference_bounds.width end # Returns the height of the current page from edge-to-edge # def page_height page.dimensions[3] end # Returns the effective (writable) height of the page # # If inside a fixed-height bounding box, returns width of box. # def effective_page_height reference_bounds.height end # workaround for https://github.com/prawnpdf/prawn/issues/1121 def generate_margin_box page_w, page_h = (page = state.page).dimensions.slice 2, 2 page_m = page.margins prev_margin_box, @margin_box = @margin_box, (::Prawn::Document::BoundingBox.new self, nil, [page_m[:left], page_h - page_m[:top]], width: page_w - page_m[:left] - page_m[:right], height: page_h - page_m[:top] - page_m[:bottom]) # update bounding box if not flowing from the previous page unless @bounding_box&.parent prev_margin_box = @bounding_box @bounding_box = @margin_box end # maintains indentation settings across page breaks if prev_margin_box @margin_box.add_left_padding prev_margin_box.total_left_padding @margin_box.add_right_padding prev_margin_box.total_right_padding end nil end # Set the margins for the current page. # def set_page_margin margin # FIXME: is there a cleaner way to set margins? does it make sense to override create_new_page? apply_margin_options margin: margin generate_margin_box end # Returns the margins for the current page as a 4 element array (top, right, bottom, left) # def page_margin [page.margins[:top], page.margins[:right], page.margins[:bottom], page.margins[:left]] end # Returns the width of the left margin for the current page # def page_margin_left page.margins[:left] end # deprecated alias left_margin page_margin_left # Returns the width of the right margin for the current page # def page_margin_right page.margins[:right] end # deprecated alias right_margin page_margin_right # Returns the width of the top margin for the current page # def page_margin_top page.margins[:top] end # Returns the width of the bottom margin for the current page # def page_margin_bottom page.margins[:bottom] end # Returns the total left margin (to the page edge) for the current bounds. # def bounds_margin_left bounds.absolute_left end # Returns the total right margin (to the page edge) for the current bounds. # def bounds_margin_right page.dimensions[2] - bounds.absolute_right end # Returns the side the current page is facing, :recto or :verso. # def page_side pgnum = nil, invert = nil if invert (recto_page? pgnum) ? :verso : :recto else (recto_page? pgnum) ? :recto : :verso end end # Returns whether the page is a recto page. # def recto_page? pgnum = nil (pgnum || page_number).odd? end # Returns whether the page is a verso page. # def verso_page? pgnum = nil (pgnum || page_number).even? end # Returns whether the cursor is at the top of the page (i.e., margin box). # def at_page_top? @y == @margin_box.absolute_top end # Returns whether the current page is the last page in the document. # def last_page? page_number == page_count end # Destinations # Generates a destination object that resolves to the top of the page # specified by the page_num parameter or the current page if no page number # is provided. The destination preserves the user's zoom level unlike # the destinations generated by the outline builder. # def dest_top page_num = nil dest_xyz 0, page_height, nil, (page_num ? state.pages[page_num - 1] : page) end # Fonts # Registers a new custom font described in the data parameter # after converting the font name to a String. # # Example: # # register_font Roboto: { # normal: 'fonts/roboto-normal.ttf', # italic: 'fonts/roboto-italic.ttf', # bold: 'fonts/roboto-bold.ttf', # bold_italic: 'fonts/roboto-bold_italic.ttf' # } # def register_font data font_families.update data.transform_keys(&:to_s) end # Enhances the built-in font method to allow the font # size to be specified as the second option and to # lazily load font-based icons. # def font name = nil, options = {} if name options = { size: options } if ::Numeric === options if IconSets.include? name ::Prawn::Icon::FontData.load self, name options = options.reject {|k| k == :style } if options.key? :style end end super end # Retrieves the current font name (i.e., family). # def font_family font.options[:family] end alias font_name font_family # Retrieves the current font info (family, style, size) as a Hash # def font_info { family: font.options[:family], style: (font.options[:style] || :normal), size: @font_size } end # Sets the font style for the scope of the block to which this method # yields. If the style is nil and no block is given, return the current # font style. # def font_style style = nil if block_given? font font.options[:family], style: style do yield end elsif style font font.options[:family], style: style else font.options[:style] || :normal end end # Applies points as a scale factor of the current font if the value provided # is less than or equal to 1 or it's a string (e.g., 1.1em), then delegates to the super # implementation to carry out the built-in functionality. # #-- # QUESTION should we round the result? def font_size points = nil return @font_size unless points if points == 1 super @font_size elsif String === points if points.end_with? 'rem' super @root_font_size * points.to_f elsif points.end_with? 'em' super @font_size * points.to_f elsif points.end_with? '%' super @font_size * (points.to_f / 100) else super points.to_f end # FIXME: HACK assume em value elsif points < 1 super @font_size * points else super points end end def resolve_font_style styles if styles.include? :bold (styles.include? :italic) ? :bold_italic : :bold elsif styles.include? :italic :italic else :normal end end # Retreives the collection of font styles from the given font style key, # which defaults to the current font style. # def font_styles style = font_style FontStyleToSet[style].dup end # Apply the font settings (family, size, styles and character spacing) from # the fragment to the document, then yield to the block. # # The original font settings are restored before this method returns. # def fragment_font fragment f_info = font_info f_family = fragment[:font] || f_info[:family] f_size = fragment[:size] || f_info[:size] if (f_styles = fragment[:styles]) f_style = resolve_font_style f_styles else f_style = :normal end if (c_spacing = fragment[:character_spacing]) character_spacing c_spacing do font f_family, size: f_size, style: f_style do yield end end else font f_family, size: f_size, style: f_style do yield end end end # Override width of string to check for placeholder char, which uses character spacing to control width # def width_of_string string, options = {} string == PlaceholderChar ? @character_spacing : super end def icon_font_data family ::Prawn::Icon::FontData.load self, family end def resolve_legacy_icon_name name ::Prawn::Icon::Compatibility::SHIMS[%(fa-#{name})] end def calc_line_metrics line_height = 1, font = self.font, font_size = self.font_size line_height_length = line_height * font_size leading = line_height_length - font_size half_leading = leading / 2 padding_top = half_leading + font.line_gap padding_bottom = half_leading LineMetrics.new line_height_length, leading, padding_top, padding_bottom, false end =begin # these line metrics attempted to figure out a correction based on the reported height and the font_size # however, it only works for some fonts, and breaks down for fonts like Noto Serif def calc_line_metrics line_height = 1, font = self.font, font_size = self.font_size line_height_length = font_size * line_height line_gap = line_height_length - font_size correction = font.height - font_size leading = line_gap - correction shift = (font.line_gap + correction + line_gap) / 2 final_gap = font.line_gap != 0 LineMetrics.new line_height_length, leading, shift, shift, final_gap end =end # Parse the text into an array of fragments using the text formatter. def parse_text string, options = {} return [] if string.nil? options = options.dup if (format_option = options.delete :inline_format) format_option = [] unless ::Array === format_option fragments = text_formatter.format string, *format_option else fragments = [text: string] end if (color = options.delete :color) fragments.map do |fragment| fragment[:color] ? fragment : fragment.merge(color: color) end else fragments end end # NOTE override built-in fill_formatted_text_box to insert leading before second line when :first_line is true def fill_formatted_text_box text, opts merge_text_box_positioning_options opts box = ::Prawn::Text::Formatted::Box.new text, opts remaining_text = box.render @no_text_printed = box.nothing_printed? @all_text_printed = box.everything_printed? if @final_gap || (opts[:first_line] && !(@no_text_printed || @all_text_printed)) self.y -= box.height + box.line_gap + box.leading else self.y -= box.height end remaining_text end # NOTE override built-in draw_indented_formatted_line to set first_line flag def draw_indented_formatted_line string, opts super string, (opts.merge first_line: true) end # Performs the same work as Prawn::Text.text except that the first_line_opts are applied to the first line of text # renderered. It's necessary to use low-level APIs in this method so we only style the first line and not the # remaining lines (which is the default behavior in Prawn). def text_with_formatted_first_line string, first_line_opts, opts color = opts.delete :color fragments = parse_text string, opts # NOTE the low-level APIs we're using don't recognize the :styles option, so we must resolve if (styles = opts.delete :styles) opts[:style] = resolve_font_style styles end if (first_line_styles = first_line_opts.delete :styles) first_line_opts[:style] = resolve_font_style first_line_styles end first_line_color = (first_line_opts.delete :color) || color opts = opts.merge document: self # QUESTION should we merge more carefully here? (hand-select keys?) first_line_opts = opts.merge(first_line_opts).merge single_line: true, first_line: true box = ::Prawn::Text::Formatted::Box.new fragments, first_line_opts # NOTE get remaining_fragments before we add color to fragments on first line if (text_indent = opts.delete :indent_paragraphs) remaining_fragments = indent text_indent do box.render dry_run: true end else remaining_fragments = box.render dry_run: true end # NOTE color must be applied per-fragment fragments.each {|fragment| fragment[:color] ||= first_line_color } if first_line_color if text_indent indent text_indent do fill_formatted_text_box fragments, first_line_opts end else fill_formatted_text_box fragments, first_line_opts end unless remaining_fragments.empty? # NOTE color must be applied per-fragment remaining_fragments.each {|fragment| fragment[:color] ||= color } if color remaining_fragments = fill_formatted_text_box remaining_fragments, opts draw_remaining_formatted_text_on_new_pages remaining_fragments, opts end end # Apply the text transform to the specified text. # # Supported transform values are "uppercase", "lowercase", or "none" (passed # as either a String or a Symbol). When the uppercase transform is applied to # the text, it correctly uppercases visible text while leaving markup and # named character entities unchanged. The none transform returns the text # unmodified. # def transform_text text, transform case transform when :uppercase, 'uppercase' uppercase_pcdata text when :lowercase, 'lowercase' lowercase_pcdata text when :capitalize, 'capitalize' capitalize_words_pcdata text else text end end def hyphenate_text text, hyphenator hyphenate_words_pcdata text, hyphenator end # Cursor # Short-circuits the call to the built-in move_up operation # when n is 0. # def move_up n super unless n == 0 end # Override built-in move_text_position method to prevent Prawn from advancing # to next page if image doesn't fit before rendering image. #-- # NOTE could use :at option when calling image/embed_image instead def move_text_position h; end # Short-circuits the call to the built-in move_down operation # when n is 0. # def move_down n super unless n == 0 end # Bounds # Overrides the built-in pad operation to allow for asymmetric paddings. # # Example: # # pad 20, 10 do # text 'A paragraph with twice as much top padding as bottom padding.' # end # def pad top, bottom = nil move_down top yield move_down(bottom || top) end # Combines the built-in pad and indent operations into a single method. # # Padding may be specified as an array of four values, or as a single value. # The single value is used as the padding around all four sides of the box. # # If padding is nil, this method simply yields to the block and returns. # # Example: # # pad_box 20 do # text 'A paragraph inside a blox with even padding on all sides.' # end # # pad_box [10, 10, 10, 20] do # text 'An indented paragraph inside a box with equal padding on all sides.' # end # def pad_box padding if padding # TODO: implement shorthand combinations like in CSS p_top, p_right, p_bottom, p_left = ::Array === padding ? padding : (::Array.new 4, padding) begin # logic is intentionally inlined move_down p_top bounds.add_left_padding p_left bounds.add_right_padding p_right yield # NOTE support negative bottom padding for use with quote block if p_bottom < 0 # QUESTION should we return to previous page if top of page is reached? p_bottom < cursor - reference_bounds.top ? (move_cursor_to reference_bounds.top) : (move_down p_bottom) else p_bottom < cursor ? (move_down p_bottom) : reference_bounds.move_past_bottom end ensure bounds.subtract_left_padding p_left bounds.subtract_right_padding p_right end else yield end # alternate, delegated logic #pad padding[0], padding[2] do # indent padding[1], padding[3] do # yield # end #end end def inflate_indent value (::Array === value ? (value.slice 0, 2) : (::Array.new 2, value)).map(&:to_f) end # TODO: memoize the result def inflate_padding padding padding = (Array padding || 0).slice 0, 4 case padding.size when 1 [padding[0], padding[0], padding[0], padding[0]] when 2 [padding[0], padding[1], padding[0], padding[1]] when 3 [padding[0], padding[1], padding[2], padding[1]] else padding end end # Stretch the current bounds to the left and right edges of the current page # while yielding the specified block if the verdict argument is true. # Otherwise, simply yield the specified block. # def span_page_width_if verdict if verdict indent(-bounds_margin_left, -bounds_margin_right) do yield end else yield end end # A flowing version of the bounding_box. If the content runs to another page, the cursor starts # at the top of the page instead of the original cursor position. Similar to span, except # you can specify an absolute left position and pass additional options through to bounding_box. # def flow_bounding_box left = 0, opts = {} original_y = y # QUESTION should preserving original_x be an option? original_x = bounds.absolute_left - margin_box.absolute_left canvas do bounding_box [margin_box.absolute_left + original_x + left, margin_box.absolute_top], opts do self.y = original_y yield end end end # Graphics # Fills the current bounding box with the specified fill color. Before # returning from this method, the original fill color on the document is # restored. def fill_bounds f_color = fill_color if f_color && f_color != 'transparent' prev_fill_color = fill_color fill_color f_color fill_rectangle bounds.top_left, bounds.width, bounds.height fill_color prev_fill_color end end # Fills the absolute bounding box with the specified fill color. Before # returning from this method, the original fill color on the document is # restored. def fill_absolute_bounds f_color = fill_color canvas { fill_bounds f_color } end # Fills the current bounds using the specified fill color and strokes the # bounds using the specified stroke color. Sets the line with if specified # in the options. Before returning from this method, the original fill # color, stroke color and line width on the document are restored. # def fill_and_stroke_bounds f_color = fill_color, s_color = stroke_color, options = {} no_fill = !f_color || f_color == 'transparent' no_stroke = !s_color || s_color == 'transparent' || options[:line_width] == 0 return if no_fill && no_stroke save_graphics_state do radius = options[:radius] || 0 # fill unless no_fill fill_color f_color fill_rounded_rectangle bounds.top_left, bounds.width, bounds.height, radius end # stroke unless no_stroke stroke_color s_color line_width(options[:line_width] || 0.5) # FIXME: think about best way to indicate dashed borders #if options.has_key? :dash_width # dash options[:dash_width], space: options[:dash_space] || 1 #end stroke_rounded_rectangle bounds.top_left, bounds.width, bounds.height, radius #undash if options.has_key? :dash_width end end end # Fills and, optionally, strokes the current bounds using the fill and # stroke color specified, then yields to the block. The only_if option can # be used to conditionally disable this behavior. # def shade_box color, line_color = nil, options = {} if (!options.key? :only_if) || options[:only_if] # FIXME: could use save_graphics_state here previous_fill_color = current_fill_color fill_color color fill_rectangle [bounds.left, bounds.top], bounds.right, bounds.top - bounds.bottom fill_color previous_fill_color if line_color line_width 0.5 previous_stroke_color = current_stroke_color stroke_color line_color stroke_bounds stroke_color previous_stroke_color end end yield end # Strokes a horizontal line using the current bounds. The width of the line # can be specified using the line_width option. The offset from the cursor # can be set using the at option. # def stroke_horizontal_rule rule_color = stroke_color, options = {} rule_y = cursor - (options[:at] || 0) rule_style = options[:line_style] rule_width = options[:line_width] || 0.5 rule_x_start = bounds.left rule_x_end = bounds.right rule_inked = false save_graphics_state do line_width rule_width stroke_color rule_color case rule_style when :dashed dash rule_width * 4 when :dotted dash rule_width when :double stroke_horizontal_line rule_x_start, rule_x_end, at: (rule_y + rule_width) stroke_horizontal_line rule_x_start, rule_x_end, at: (rule_y - rule_width) rule_inked = true end if rule_style stroke_horizontal_line rule_x_start, rule_x_end, at: rule_y unless rule_inked end end # A compliment to the stroke_horizontal_rule method, strokes a # vertical line using the current bounds. The width of the line # can be specified using the line_width option. The horizontal (x) # position can be specified using the at option. # def stroke_vertical_rule rule_color = stroke_color, options = {} rule_x = options[:at] || 0 rule_y_from = bounds.top rule_y_to = bounds.bottom rule_style = options[:line_style] rule_width = options[:line_width] || 0.5 save_graphics_state do line_width rule_width stroke_color rule_color case rule_style when :dashed dash rule_width * 4 when :dotted dash rule_width when :double stroke_vertical_line rule_y_from, rule_y_to, at: (rule_x - rule_width) rule_x += rule_width end if rule_style stroke_vertical_line rule_y_from, rule_y_to, at: rule_x end end # Pages # Deletes the current page and move the cursor # to the previous page. def delete_page pg = page_number pdf_store = state.store pdf_objs = pdf_store.instance_variable_get :@objects pdf_ids = pdf_store.instance_variable_get :@identifiers page_id = pdf_store.object_id_for_page pg content_id = page.content.identifier [page_id, content_id].each do |key| pdf_objs.delete key pdf_ids.delete key end pdf_store.pages.data[:Kids].pop pdf_store.pages.data[:Count] -= 1 state.pages.pop if pg > 1 go_to_page pg - 1 else @page_number = 0 state.page = nil end end # Import the specified page into the current document. # # By default, advance to the next page afterwards, creating it if necessary. # This behavior can be disabled by passing the option `advance: false`. # However, due to how page creation works in Prawn, understand that advancing # to the next page is necessary to prevent the size & layout of the imported # page from affecting a newly created page. def import_page file, opts = {} prev_page_layout = page.layout prev_page_size = page.size state.compress = false if state.compress # can't use compression if using template prev_text_rendering_mode = (defined? @text_rendering_mode) ? @text_rendering_mode : nil delete_page if opts[:replace] # NOTE use functionality provided by prawn-templates start_new_page_discretely template: file, template_page: opts[:page] # prawn-templates sets text_rendering_mode to :unknown, which breaks running content; revert @text_rendering_mode = prev_text_rendering_mode yield if block_given? if opts.fetch :advance, true # NOTE set page size & layout explicitly in case imported page differs # I'm not sure it's right to start a new page here, but unfortunately there's no other # way atm to prevent the size & layout of the imported page from affecting subsequent pages advance_page size: prev_page_size, layout: prev_page_layout end nil end # Create a new page for the specified image. If the canvas option is true, # the image is positioned relative to the boundaries of the page. def image_page file, options = {} start_new_page_discretely image_page_number = page_number if options.delete :canvas canvas { image file, ({ position: :center, vposition: :center }.merge options) } else image file, (options.merge position: :center, vposition: :center, fit: [bounds.width, bounds.height]) end # NOTE advance to newly created page just in case the image function threw off the cursor go_to_page image_page_number nil end # Perform an operation (such as creating a new page) without triggering the on_page_create callback # def perform_discretely if (saved_callback = state.on_page_create_callback) # equivalent to calling `on_page_create` state.on_page_create_callback = nil yield # equivalent to calling `on_page_create &saved_callback` state.on_page_create_callback = saved_callback else yield end end # This method is a smarter version of start_new_page. It calls start_new_page # if the current page is the last page of the document. Otherwise, it simply # advances to the next existing page. def advance_page opts = {} last_page? ? (start_new_page opts) : (go_to_page page_number + 1) end # Start a new page without triggering the on_page_create callback # def start_new_page_discretely options = {} perform_discretely { start_new_page options } end # Grouping # Conditional group operation # def group_if verdict if verdict state.optimize_objects = false # optimize_objects breaks group group { yield } else yield end end def get_scratch_document # marshal if not using transaction feature #Marshal.load Marshal.dump @prototype # use cached instance, tests show it's faster #@prototype ||= ::Prawn::Document.new @scratch ||= if defined? @prototype # rubocop:disable Naming/MemoizedInstanceVariableName scratch = Marshal.load Marshal.dump @prototype scratch.instance_variable_set :@prototype, @prototype scratch.instance_variable_set :@tmp_files, @tmp_files # TODO: set scratch number on scratch document scratch else logger.warn 'no scratch prototype available; instantiating fresh scratch document' ::Prawn::Document.new end end def scratch? (@_label ||= (state.store.info.data[:Scratch] ? :scratch : :primary)) == :scratch rescue false # NOTE this method may get called before the state is initialized end alias is_scratch? scratch? def dry_run &block scratch = get_scratch_document # QUESTION should we use scratch.advance_page instead? scratch.start_new_page start_page_number = scratch.page_number start_y = scratch.y scratch_bounds = scratch.bounds original_x = scratch_bounds.absolute_left original_width = scratch_bounds.width scratch_bounds.instance_variable_set :@x, bounds.absolute_left scratch_bounds.instance_variable_set :@width, bounds.width scratch.font font_family, style: font_style, size: font_size do scratch.instance_exec(&block) end # NOTE don't count excess if cursor exceeds writable area (due to padding) full_page_height = scratch.effective_page_height partial_page_height = [full_page_height, start_y - scratch.y].min scratch_bounds.instance_variable_set :@x, original_x scratch_bounds.instance_variable_set :@width, original_width whole_pages = scratch.page_number - start_page_number [(whole_pages * full_page_height + partial_page_height), whole_pages, partial_page_height] end def with_dry_run &block total_height, = dry_run(&block) instance_exec total_height, &block end # Attempt to keep the objects generated in the block on the same page # # TODO: short-circuit nested usage def keep_together &block available_space = cursor total_height, = dry_run(&block) # NOTE technically, if we're at the page top, we don't even need to do the # dry run, except several uses of this method rely on the calculated height if total_height > available_space && !at_page_top? && total_height <= effective_page_height advance_page started_new_page = true else started_new_page = false end # HACK: yield doesn't work here on JRuby (at least not when called from AsciidoctorJ) #yield remainder, started_new_page instance_exec(total_height, started_new_page, &block) end # Attempt to keep the objects generated in the block on the same page # if the verdict parameter is true. # def keep_together_if verdict, &block if verdict keep_together(&block) else yield end end =begin def run_with_trial &block available_space = cursor total_height, whole_pages, remainder = dry_run(&block) if whole_pages > 0 || remainder > available_space started_new_page = true else started_new_page = false end # HACK yield doesn't work here on JRuby (at least not when called from AsciidoctorJ) #yield remainder, started_new_page instance_exec(remainder, started_new_page, &block) end =end end end end �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/prawn/font/��������������������������������������0000775�0000000�0000000�00000000000�14163570564�0024303�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/prawn/font/afm.rb��������������������������������0000664�0000000�0000000�00000002250�14163570564�0025372�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true class Prawn::Font::AFM include ::Asciidoctor::Logging FALLBACK_CHARS = { ?\u200b => '', ?\u202f => ?\u00a0, ?\u2009 => ' ', ?\u25e6 => '-', ?\u25aa => ?\u00b7, } remove_method :normalize_encoding # Patch normalize_encoding method to handle conversion more gracefully. # # Any valid utf-8 characters that cannot be encoded to windows-1252 are # replaced with the logic "not" symbol and a warning is issued identifying # the text that cannot be converted. def normalize_encoding text text.encode 'windows-1252', fallback: FALLBACK_CHARS rescue ::Encoding::UndefinedConversionError logger.warn %(The following text could not be fully converted to the Windows-1252 character set: #{text.gsub(/^/, '| ').rstrip}) if logger.info? && !@document.scratch? text.encode 'windows-1252', undef: :replace, replace: ?\u00ac rescue ::Encoding::InvalidByteSequenceError raise Prawn::Errors::IncompatibleStringEncoding, 'Your document includes text which is not compatible with the Windows-1252 character set. If you need full UTF-8 support, use TTF fonts instead of the built-in PDF (AFM) fonts.' end end ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/prawn/font_metric_cache.rb�����������������������0000664�0000000�0000000�00000000443�14163570564�0027317�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true class Prawn::FontMetricCache::CacheEntry # workaround for https://github.com/prawnpdf/prawn/issues/1140 def initialize font, options, size font = font.hash super end end if Prawn::FontMetricCache::CacheEntry.members == [:font, :options, :string] �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/prawn/formatted_text/����������������������������0000775�0000000�0000000�00000000000�14163570564�0026366�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/prawn/formatted_text/arranger.rb�����������������0000664�0000000�0000000�00000000417�14163570564�0030516�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true Prawn::Text::Formatted::Arranger.prepend (Module.new do def initialize *_args super @dummy_text = ?\u0000 end def next_string if (string = super) == @dummy_text def string.lstrip!; end end string end end) �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/prawn/formatted_text/box.rb����������������������0000664�0000000�0000000�00000006441�14163570564�0027510�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true Prawn::Text::Formatted::Box.prepend (Module.new do include ::Asciidoctor::Logging def draw_fragment_overlay_styles fragment if (underline = (styles = fragment.styles).include? :underline) || (styles.include? :strikethrough) (doc = fragment.document).save_graphics_state do if (text_decoration_width = (fs = fragment.format_state)[:text_decoration_width] || doc.text_decoration_width) doc.line_width = text_decoration_width end if (text_decoration_color = fs[:text_decoration_color]) doc.stroke_color = text_decoration_color end underline ? (doc.stroke_line fragment.underline_points) : (doc.stroke_line fragment.strikethrough_points) end end end def analyze_glyphs_for_fallback_font_support fragment_hash fragment_font = fragment_hash[:font] || (original_font = @document.font.family) if (fragment_font_styles = fragment_hash[:styles]) if fragment_font_styles.include? :bold fragment_font_opts = { style: (fragment_font_styles.include? :italic) ? :bold_italic : :bold } elsif fragment_font_styles.include? :italic fragment_font_opts = { style: :italic } end end fallback_fonts = @fallback_fonts.dup font_glyph_pairs = [] @document.save_font do fragment_hash[:text].each_char do |char| font_glyph_pairs << [(find_font_for_this_glyph char, fragment_font, fragment_font_opts || {}, fallback_fonts.dup), char] end end # NOTE: don't add a :font to fragment if it wasn't there originally font_glyph_pairs.each {|pair| pair[0] = nil if pair[0] == original_font } if original_font form_fragments_from_like_font_glyph_pairs font_glyph_pairs, fragment_hash end def find_font_for_this_glyph char, current_font, current_font_opts = {}, fallback_fonts_to_check = [], original_font = current_font (doc = @document).font current_font, current_font_opts if doc.font.glyph_present? char current_font elsif fallback_fonts_to_check.empty? if logger.info? && !doc.scratch? fonts_checked = @fallback_fonts.dup.unshift original_font missing_chars = (doc.instance_variable_defined? :@missing_chars) ? (doc.instance_variable_get :@missing_chars) : (doc.instance_variable_set :@missing_chars, {}) previous_fonts_checked = (missing_chars[char] ||= []) if previous_fonts_checked.empty? && !(previous_fonts_checked.include? fonts_checked) logger.warn %(Could not locate the character `#{char}' in the following fonts: #{fonts_checked.join ', '}) previous_fonts_checked << fonts_checked end end original_font else find_font_for_this_glyph char, fallback_fonts_to_check.shift, current_font_opts, fallback_fonts_to_check, original_font end end def process_vertical_alignment text return super if ::Symbol === (valign = @vertical_align) return if defined? @vertical_alignment_processed @vertical_alignment_processed = true valign, offset = valign if valign == :top @at[1] -= offset return end wrap text h = height case valign when :center @at[1] -= (@height - h + @descender) * 0.5 + offset when :bottom @at[1] -= (@height - h) + offset end @height = h end end) �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/prawn/formatted_text/fragment.rb�����������������0000664�0000000�0000000�00000002173�14163570564�0030521�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true Prawn::Text::Formatted::Fragment.prepend (Module.new do attr_reader :document # Prevent fragment from being written by discarding the text. def conceal @text = '' end # Don't strip soft hyphens when repacking unretrieved fragments def include_trailing_white_space! @format_state.delete :normalized_soft_hyphen super end # Modify the built-in ascender write method to allow an override value to be # specified using the format_state hash. def ascender= val @ascender = (format_state.key? :ascender) ? format_state[:ascender] : val end # Modify the built-in ascender write method to allow an override value to be # specified using the format_state hash. def descender= val @descender = (format_state.key? :descender) ? format_state[:descender] : val end def width if (val = format_state[:width]) val = (val.end_with? 'em') ? val.to_f * @document.font_size : (@document.str_to_pt val) if ::String === val else val = super end if (border_offset = format_state[:border_offset]) val += border_offset * 2 end val end end) �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/prawn/images.rb����������������������������������0000664�0000000�0000000�00000005016�14163570564�0025131�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true module Asciidoctor module Prawn module Images class << self def extended base base.class.__send__ :alias_method, :_initial_image, :image end end # Dispatch to suitable image method in Prawn based on file extension. def image file, opts = {} # FIXME: handle case when SVG is an IO object if ::String === file if ((opts = opts.dup).delete :format) == 'svg' || (file.downcase.end_with? '.svg') #opts[:enable_file_requests_with_root] = (::File.dirname file) unless opts.key? :enable_file_requests_with_root #opts[:enable_web_requests] = allow_uri_read if !(opts.key? :enable_web_requests) && (respond_to? :allow_uri_read) #opts[:cache_images] = cache_uri if !(opts.key? :cache_images) && (respond_to? :cache_uri) #opts[:fallback_font_name] = fallback_svg_font_name if !(opts.key? :fallback_font_name) && (respond_to? :fallback_svg_font_name) if (opts.key? :fit) && (fit = opts.delete :fit) && !opts[:width] && !opts[:height] svg (::File.read file, mode: 'r:UTF-8'), opts do |svg_doc| max_width, max_height = fit svg_doc.calculate_sizing requested_width: max_width if max_width && svg_doc.sizing.output_width != max_width svg_doc.calculate_sizing requested_height: max_height if max_height && svg_doc.sizing.output_height > max_height end else svg (::File.read file, mode: 'r:UTF-8'), opts end else ::File.open(file, 'rb') {|fd| _initial_image fd, opts } end else _initial_image file, opts end end # Retrieve the intrinsic image dimensions for the specified path. # # Returns a Hash containing :width and :height keys that map to the image's # intrinsic width and height values (in pixels) def intrinsic_image_dimensions path, format if format == 'svg' img_obj = ::Prawn::SVG::Interface.new (::File.read path, mode: 'r:UTF-8'), self, {} img_size = img_obj.document.sizing { width: img_size.output_width, height: img_size.output_height } else # NOTE build_image_object caches image data previously loaded _, img_size = ::File.open(path, 'rb') {|fd| build_image_object fd } { width: img_size.width, height: img_size.height } end rescue end end ::Prawn::Document.extensions << Images end end ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/pygments.rb��������������������������������������0000664�0000000�0000000�00000002110�14163570564�0024373�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true module Pygments module Ext module BlockStyles BlockSelectorRx = /^\.highlight *\{([^}]+?)\}/ HighlightBackgroundColorRx = /^\.highlight +\.hll +{ *background(?:-color)?: *#([a-fA-F0-9]{6})/ ColorPropertiesRx = /(?:^|;) *(background(?:-color)?|color): *#?([a-fA-F0-9]{6}) *(?=$|;)/ @cache = ::Hash.new do |cache, key| styles = {} if BlockSelectorRx =~ (css = ::Pygments.css '.highlight', style: key) $1.scan ColorPropertiesRx do |pname, pval| case pname when 'background', 'background-color' styles[:background_color] = pval when 'color' styles[:font_color] = pval end end end styles[:highlight_background_color] = $1 if HighlightBackgroundColorRx =~ css @cache = cache.merge key => styles styles end def self.available? style (@available ||= ::Pygments.styles.to_set).include? style end def self.for style @cache[style] end end end end ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/rouge.rb�����������������������������������������0000664�0000000�0000000�00000000221�14163570564�0023647�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require 'rouge' require_relative 'rouge/formatters/prawn' require_relative 'rouge/themes/asciidoctor_pdf_default' �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/rouge/�������������������������������������������0000775�0000000�0000000�00000000000�14163570564�0023327�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/rouge/formatters/��������������������������������0000775�0000000�0000000�00000000000�14163570564�0025515�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/rouge/formatters/prawn.rb������������������������0000664�0000000�0000000�00000020125�14163570564�0027171�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true module Rouge module Formatters # Transforms a token stream into an array of # formatted text fragments for use with Prawn. class Prawn < Formatter tag 'prawn' Tokens = ::Rouge::Token::Tokens LineOrientedTokens = [ ::Rouge::Token::Tokens::Generic::Inserted, ::Rouge::Token::Tokens::Generic::Deleted, ::Rouge::Token::Tokens::Generic::Heading, ::Rouge::Token::Tokens::Generic::Subheading, ] LF = ?\n DummyText = ?\u0000 NoBreakSpace = ?\u00a0 InnerIndent = %(#{LF} ) GuardedIndent = NoBreakSpace GuardedInnerIndent = %(#{LF}#{NoBreakSpace}) BoldStyle = [:bold].to_set ItalicStyle = [:italic].to_set BoldItalicStyle = [:bold, :italic].to_set UnderlineStyle = [:underline].to_set def initialize opts = {} unless ::Rouge::Theme === (theme = opts[:theme]) unless theme && (theme = ::Rouge::Theme.find theme) theme = ::Rouge::Themes::AsciidoctorPDFDefault end theme = theme.new end @theme = theme @normalized_colors = {} @background_colorizer = BackgroundColorizer.new line_gap: opts[:line_gap] @linenum_fragment_base = create_fragment Tokens::Generic::Lineno @highlight_line_fragment = create_highlight_line_fragment opts[:highlight_background_color] end def background_color @background_color ||= (normalize_color (@theme.style_for Tokens::Text).bg) end # Override format method so fragments don't get flatted to a string # and to add an options Hash. def format tokens, opts = {} stream tokens, opts end def stream tokens, opts = {} line_numbers = opts[:line_numbers] highlight_lines = opts[:highlight_lines] if line_numbers || highlight_lines linenum = (linenum = opts[:start_line] || 1) > 0 ? linenum : 1 fragments = [] line_numbers ? (fragments << (create_linenum_fragment linenum)) : (start_of_line = true) fragments << @highlight_line_fragment.dup if highlight_lines && highlight_lines[linenum] tokens.each do |tok, val| if val == LF fragments << { text: LF } linenum += 1 line_numbers ? (fragments << (create_linenum_fragment linenum)) : (start_of_line = true) fragments << @highlight_line_fragment.dup if highlight_lines && highlight_lines[linenum] elsif val.include? LF # NOTE we assume if the fragment ends in a line feed, the intention was to match a line-oriented form line_oriented = val.end_with? LF base_fragment = create_fragment tok, val val.each_line do |line| if start_of_line line[0] = GuardedIndent if line.start_with? ' ' start_of_line = nil end fragments << (line_oriented ? (base_fragment.merge text: line, inline_block: true) : (base_fragment.merge text: line)) next unless line.end_with? LF # NOTE eagerly append linenum fragment or line highlight if there's a next line linenum += 1 line_numbers ? (fragments << (create_linenum_fragment linenum)) : (start_of_line = true) fragments << @highlight_line_fragment.dup if highlight_lines && highlight_lines[linenum] end else if start_of_line val[0] = GuardedIndent if val.start_with? ' ' start_of_line = nil end fragments << (create_fragment tok, val) end end # NOTE pad numbers that have less digits than the largest line number # FIXME we could store these fragments so we don't have find them again if line_numbers && (linenum_w = linenum.to_s.length) > 1 # NOTE extra column is the trailing space after the line number linenum_w += 1 fragments.each do |fragment| fragment[:text] = (fragment[:text].rjust linenum_w, NoBreakSpace).to_s if fragment[:linenum] end end fragments else start_of_line = true tokens.map do |tok, val| # match one or more consecutive endlines if val == LF || (val == (LF * val.length)) start_of_line = true { text: val } else val[0] = GuardedIndent if start_of_line && (val.start_with? ' ') val.gsub! InnerIndent, GuardedInnerIndent if val.include? InnerIndent # QUESTION do we need the call to create_fragment if val contains only spaces? consider bg #fragment = create_fragment tok, val fragment = val.rstrip.empty? ? { text: val } : (create_fragment tok, val) # NOTE we assume if the fragment ends in a line feed, the intention was to match a line-oriented form fragment[:inline_block] = true if (start_of_line = val.end_with? LF) fragment end end end end # TODO: method could still be optimized (for instance, check if val is LF or empty) def create_fragment tok, val = nil fragment = val ? { text: val } : {} if (style_rules = @theme.style_for tok) if (bg = normalize_color style_rules.bg) && bg != background_color fragment[:background_color] = bg fragment[:callback] = @background_colorizer if LineOrientedTokens.include? tok fragment[:inline_block] = true unless style_rules[:inline_block] == false fragment[:extend] = true unless style_rules[:extend] == false else fragment[:inline_block] = true if style_rules[:inline_block] fragment[:extend] = true if style_rules[:extend] end end if (fg = normalize_color style_rules.fg) fragment[:color] = fg end if style_rules[:bold] fragment[:styles] = style_rules[:italic] ? BoldItalicStyle.dup : BoldStyle.dup elsif style_rules[:italic] fragment[:styles] = ItalicStyle.dup end if style_rules[:underline] if fragment.key? :styles fragment[:styles] << UnderlineStyle[0] else fragment[:styles] = UnderlineStyle.dup end end end fragment end def create_linenum_fragment linenum @linenum_fragment_base.merge text: %(#{linenum} ), linenum: linenum end def create_highlight_line_fragment bg_color { background_color: (bg_color || 'FFFFCC'), callback: @background_colorizer, extend: true, highlight: true, inline_block: true, text: DummyText, width: 0, } end def normalize_color raw return unless raw if (normalized = @normalized_colors[raw]) normalized else normalized = (raw.start_with? '#') ? (raw.slice 1, raw.length) : raw normalized = normalized.each_char.map {|c| c * 2 }.join if normalized.length == 3 @normalized_colors[raw] = normalized end end class BackgroundColorizer def initialize opts = {} @line_gap = opts[:line_gap] || 0 end def render_behind fragment pdf = fragment.document data = fragment.format_state prev_fill_color = pdf.fill_color pdf.fill_color data[:background_color] if data[:inline_block] fragment_width = data[:extend] ? pdf.bounds.width - fragment.left : fragment.width v_gap = @line_gap else fragment_width = fragment.width v_gap = 0 end pdf.fill_rectangle [fragment.left, fragment.top + v_gap * 0.5], fragment_width, (fragment.height + v_gap) pdf.fill_color prev_fill_color fragment.conceal if fragment.text == DummyText nil end end end end end �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/rouge/themes/������������������������������������0000775�0000000�0000000�00000000000�14163570564�0024614�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/rouge/themes/asciidoctor_pdf_default.rb����������0000664�0000000�0000000�00000006105�14163570564�0032003�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true module Rouge module Themes # A variation on the pastie style from Pygments, customized for Asciidoctor PDF # See https://bitbucket.org/birkenfeld/pygments-main/src/default/pygments/styles/pastie.py class AsciidoctorPDFDefault < CSSTheme name 'asciidoctor_pdf_default' # Deviate from pastie here since our italic is actually a thinner font style Comment, fg: '#888888' #, italic: true style Comment::Preproc, fg: '#cc0000', bold: true # Deviate from pastie here by not using a background color style Comment::Special, fg: '#cc0000', bold: true #, bg: '#fff0f0' style Error, fg: '#a61717', bg: '#e3d2d2' style Generic::Error, fg: '#aa0000' style Generic::Heading, fg: '#333333' style Generic::Subheading, fg: '#666666' style Generic::Deleted, fg: '#000000', bg: '#ffdddd' style Generic::Inserted, fg: '#000000', bg: '#ddffdd' style Generic::Emph, italic: true style Generic::Strong, bold: true style Generic::Lineno, fg: '#888888' style Generic::Output, fg: '#888888' style Generic::Prompt, fg: '#555555' style Generic::Traceback, fg: '#aa0000' style Keyword, fg: '#008800', bold: true style Keyword::Pseudo, fg: '#008800' style Keyword::Type, fg: '#888888', bold: true style Num, fg: '#0000dd', bold: true # Deviate from pastie here by not using background colors style Str, fg: '#dd2200' #, bg: '#fff0f0' style Str::Escape, fg: '#0044dd' #, bg: '#fff0f0' style Str::Interpol, fg: '#3333bb' #, bg: '#fff0f0' style Str::Other, fg: '#22bb22' #, bg: '#f0fff0' style Str::Regex, fg: '#008800' #, bg: '#fff0ff' style Str::Symbol, fg: '#aa6600' #, bg: '#fff0f0' style Name::Attribute, fg: '#336699' style Name::Builtin, fg: '#003388' style Name::Class, fg: '#bb0066', bold: true style Name::Constant, fg: '#003366', bold: true style Name::Decorator, fg: '#555555' style Name::Exception, fg: '#bb0066', bold: true style Name::Function, fg: '#0066bb', bold: true # Name::Label is used for built-in CSS properties in Rouge, so let's drop italics style Name::Label, fg: '#336699' #, italic: true style Name::Namespace, fg: '#bb0066', bold: true style Name::Property, fg: '#336699', bold: true style Name::Tag, fg: '#bb0066', bold: true style Name::Variable, fg: '#336699' style Name::Variable::Global, fg: '#dd7700' style Name::Variable::Instance, fg: '#3333bb' style Operator::Word, fg: '#008800' style Text, {} end end end �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/formatted_text.rb������������������������������������0000664�0000000�0000000�00000001147�14163570564�0024767�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require 'treetop' require 'set' unless defined? Set require_relative 'formatted_text/parser' require_relative 'formatted_text/transform' require_relative 'formatted_text/formatter' require_relative 'formatted_text/fragment_position_renderer' require_relative 'formatted_text/inline_destination_marker' require_relative 'formatted_text/inline_image_arranger' require_relative 'formatted_text/inline_image_renderer' require_relative 'formatted_text/inline_text_aligner' require_relative 'formatted_text/source_wrap' require_relative 'formatted_text/text_background_and_border_renderer' �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/formatted_text/��������������������������������������0000775�0000000�0000000�00000000000�14163570564�0024437�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/formatted_text/formatter.rb��������������������������0000664�0000000�0000000�00000002576�14163570564�0027001�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true module Asciidoctor module PDF module FormattedText class Formatter include ::Asciidoctor::Logging attr_accessor :scratch FormattingSnifferPattern = /[<&]/ WHITESPACE = %( \t\n) def initialize options = {} @parser = MarkupParser.new @transform = Transform.new merge_adjacent_text_nodes: true, theme: options[:theme] @scratch = false end def format string, *args options = args[0] || {} string = string.tr_s WHITESPACE, ' ' if options[:normalize] inherited = options[:inherited] if FormattingSnifferPattern.match? string if (parsed = @parser.parse string) return @transform.apply parsed.content, [], inherited elsif !@scratch logger.error %(failed to parse formatted text: #{string}) end end [inherited ? (inherited.merge text: string) : { text: string }] end # The original purpose of this method is to split paragraphs, but our formatter only works on paragraphs that have # been presplit. Therefore, we just need to wrap the fragments in a single-element array (representing a single # paragraph) and return them. def array_paragraphs fragments [fragments] end end end end end ����������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/formatted_text/fragment_position_renderer.rb���������0000664�0000000�0000000�00000000665�14163570564�0032410�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true module Asciidoctor::PDF::FormattedText class FragmentPositionRenderer attr_reader :top attr_reader :right attr_reader :bottom attr_reader :left attr_reader :page_number def render_behind fragment @top = fragment.top @right = (@left = fragment.left) + fragment.width @bottom = fragment.bottom @page_number = fragment.document.page_number end end end ���������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/formatted_text/inline_destination_marker.rb����������0000664�0000000�0000000�00000001342�14163570564�0032204�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true module Asciidoctor::PDF::FormattedText module InlineDestinationMarker module_function # render_behind is called before the text is printed def render_behind fragment unless (pdf = fragment.document).scratch? if (name = fragment.format_state[:name]) (pdf.instance_variable_get :@index).link_dest_to_page name, pdf.page_number if fragment.format_state[:type] == :indexterm # get precise position of the reference (x, y) dest_rect = fragment.absolute_bounding_box pdf.add_dest name, (pdf.dest_xyz dest_rect[0], dest_rect[-1]) # prevent any text from being written fragment.conceal end end end end end ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/formatted_text/inline_image_arranger.rb��������������0000664�0000000�0000000�00000015407�14163570564�0031274�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true module Asciidoctor::PDF::FormattedText module InlineImageArranger include ::Asciidoctor::PDF::Measurements include ::Asciidoctor::Logging PlaceholderChar = ::Asciidoctor::Prawn::Extensions::PlaceholderChar def wrap fragments arrange_images fragments super end # Iterates over the fragments that represent inline images and prepares the # image data to be embedded into the document. # # This method populates the image_width, image_height, image_obj and # image_info (PNG only) keys on the fragment. The text is replaced with # placeholder text that will be used to reserve enough room in the line to # fit the image. # # The image height is scaled down to 75% of the specified width (px to pt # conversion). If the image height is more than 1.5x the height of the # surrounding line of text, the font size and line metrics of the fragment # are modified to fit the image in the line. # # If this is the scratch document, the image renderer callback is removed so # that the image is not embedded. # # When this method is called, the cursor is positioned at start of where this # group of fragments will be written (offset by the leading padding). # # This method is called each time the set of fragments overflow to another # page, so it's necessary to short-circuit if that case is detected. def arrange_images fragments doc = @document return if (raw_image_fragments = fragments.select {|f| (f.key? :image_path) && !(f.key? :image_obj) }).empty? scratch = doc.scratch? available_w = doc.bounds.width available_h = doc.page.empty? ? doc.cursor : doc.bounds.height last_fragment = {} raw_image_fragments.each do |fragment| if fragment[:object_id] == last_fragment[:object_id] fragments.delete fragment next else drop = scratch end begin image_path = fragment[:image_path] # NOTE only attempt to convert an unresolved (i.e., String) value if ::String === (image_w = fragment[:image_width]) image_w = [available_w, (image_w.end_with? '%') ? (image_w.to_f / 100 * available_w) : image_w.to_f].min end max_image_h = fragment[:image_fit] == 'line' ? [available_h, doc.font.height].min : available_h # TODO: make helper method to calculate width and height of image if fragment[:image_format] == 'svg' svg_obj = ::Prawn::SVG::Interface.new ::File.read(image_path, mode: 'r:UTF-8'), doc, at: doc.bounds.top_left, width: image_w, fallback_font_name: doc.fallback_svg_font_name, enable_web_requests: doc.allow_uri_read, enable_file_requests_with_root: (::File.dirname image_path), cache_images: doc.cache_uri svg_size = image_w ? svg_obj.document.sizing : # NOTE convert intrinsic dimensions to points; constrain to content width (svg_obj.resize width: [(to_pt svg_obj.document.sizing.output_width, :px), available_w].min) # NOTE the best we can do is make the image fit within full height of bounds if (image_h = svg_size.output_height) > max_image_h image_w = (svg_obj.resize height: (image_h = max_image_h)).output_width else image_w = svg_size.output_width end fragment[:image_obj] = svg_obj else # TODO: cache image info based on path (Prawn caches based on SHA1 of content) # NOTE image_obj is constrained to image_width by renderer image_obj, image_info = ::File.open(image_path, 'rb') {|fd| doc.build_image_object fd } if image_w if image_w == image_info.width image_h = image_info.height.to_f else image_h = image_w * (image_info.height.fdiv image_info.width) end # NOTE convert intrinsic dimensions to points; constrain to content width elsif (image_w = to_pt image_info.width, :px) > available_w image_h = (image_w = available_w) * (image_info.height.fdiv image_info.width) else image_h = to_pt image_info.height, :px end # NOTE the best we can do is make the image fit within full height of bounds image_w = (image_h = max_image_h) * (image_info.width.fdiv image_info.height) if image_h > max_image_h fragment[:image_obj] = image_obj fragment[:image_info] = image_info end doc.fragment_font fragment do # NOTE if image height exceeds line height by more than 1.5x, increase the line height # FIXME: we could really use a nicer API from Prawn here; this is an ugly hack if (f_height = image_h) > (line_font = doc.font).height * 1.5 # align with descender (equivalent to vertical-align: bottom in CSS) fragment[:ascender] = f_height - (fragment[:descender] = line_font.descender) doc.font_size (fragment[:size] = f_height * (doc.font_size / line_font.height)) # align with baseline (roughly equivalent to vertical-align: baseline in CSS) #fragment[:ascender] = f_height #fragment[:descender] = 0 #doc.font_size(fragment[:size] = (f_height + line_font.descender) * (doc.font_size / line_font.height)) fragment[:line_height_increased] = true end end # NOTE we can't rely on the fragment width because the line wrap mechanism ignores it; # it only considers the text (string) and character spacing, rebuilding the string several times fragment[:text] = PlaceholderChar fragment[:actual_character_spacing] = doc.character_spacing fragment[:character_spacing] = image_w fragment[:image_width] = fragment[:width] = image_w fragment[:image_height] = image_h rescue logger.warn %(could not embed image: #{image_path}; #{$!.message}#{::Prawn::Errors::UnsupportedImageType === $! && !(defined? ::GMagick::Image) ? '; install prawn-gmagick gem to add support' : ''}) unless scratch drop = true # delegate to cleanup logic in ensure block ensure # NOTE skip rendering image in scratch document or if image can't be loaded if drop fragment.delete :callback fragment.delete :image_info # NOTE retain key to indicate we've visited fragment already fragment[:image_obj] = nil end last_fragment = fragment end end end end ::Prawn::Text::Formatted::Box.prepend InlineImageArranger end ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/formatted_text/inline_image_renderer.rb��������������0000664�0000000�0000000�00000004360�14163570564�0031275�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true module Asciidoctor::PDF::FormattedText module InlineImageRenderer module_function # Embeds the image object in this fragment into the document in place of the # text that was previously used to reserve space for the image in the line. # # If the image height is less than 1.5x the height of the surrounding text, # it is centered vertically in the line. If the image height is greater, then # the image is aligned to the bottom of the text. # # Note that render_behind is called before the text is printed. # # This handler is only used on the main document (not the scratch document). # def render_behind fragment pdf = fragment.document data = fragment.format_state if data.key? :line_height_increased # align image to bottom of line (differs from fragment.top by descender value) image_top = fragment.bottom + data[:image_height] else # center image in line image_top = fragment.top - ((fragment.height - data[:image_height]) / 2.0) end image_left = fragment.left + ((fragment.width - data[:image_width]) / 2.0) case data[:image_format] when 'svg' (image_obj = data[:image_obj]).options[:at] = [image_left, image_top] # NOTE prawn-svg messes with the cursor; use float to workaround # NOTE prawn-svg 0.24.0, 0.25.0, & 0.25.1 didn't restore font after call to draw (see mogest/prawn-svg#80) pdf.float do pdf.character_spacing(data[:actual_character_spacing]) { image_obj.draw } image_obj.document.warnings.each do |img_warning| # NOTE shim logger can't be imported into a module, so use the one from the PDF document instead pdf.logger.warn %(problem encountered in image: #{data[:image_path]}; #{img_warning}) end end else pdf.embed_image data[:image_obj], data[:image_info], at: [image_left, image_top], width: data[:image_width], height: data[:image_height] end # ...or use the public interface, loading the image again #pdf.image data[:image_path], at: [image_left, image_top], width: data[:image_width] # prevent any text from being written fragment.conceal end end end ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/formatted_text/inline_text_aligner.rb����������������0000664�0000000�0000000�00000001112�14163570564�0031002�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true module Asciidoctor::PDF::FormattedText module InlineTextAligner module_function def render_behind fragment document = fragment.document text = fragment.text x = fragment.left y = fragment.baseline align = fragment.format_state[:align] if align == :center || align == :right if (gap_width = fragment.width - (document.width_of text)) != 0 x += gap_width * (align == :center ? 0.5 : 1) end end document.draw_text! text, at: [x, y] fragment.conceal end end end ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/formatted_text/parser.rb�����������������������������0000664�0000000�0000000�00000071000�14163570564�0026256�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true # Autogenerated from a Treetop grammar. Edits may be lost. module Asciidoctor module PDF module FormattedText module Markup include Treetop::Runtime def root @root ||= :text end def _nt_text start_index = index if node_cache[:text].has_key?(index) cached = node_cache[:text][index] if cached node_cache[:text][index] = cached = SyntaxNode.new(input, index...(index + 1)) if cached == true @index = cached.interval.end end return cached end r0 = _nt_complex node_cache[:text][start_index] = r0 r0 end module Complex0 def content elements.map {|e| e.content } end end def _nt_complex start_index = index if node_cache[:complex].has_key?(index) cached = node_cache[:complex][index] if cached node_cache[:complex][index] = cached = SyntaxNode.new(input, index...(index + 1)) if cached == true @index = cached.interval.end end return cached end s0, i0 = [], index loop do i1 = index r2 = _nt_cdata if r2 r2 = SyntaxNode.new(input, (index-1)...index) if r2 == true r1 = r2 else r3 = _nt_element if r3 r3 = SyntaxNode.new(input, (index-1)...index) if r3 == true r1 = r3 else r4 = _nt_charref if r4 r4 = SyntaxNode.new(input, (index-1)...index) if r4 == true r1 = r4 else @index = i1 r1 = nil end end end if r1 s0 << r1 else break end end r0 = instantiate_node(SyntaxNode,input, i0...index, s0) r0.extend(Complex0) node_cache[:complex][start_index] = r0 r0 end module Element0 def start_tag elements[0] end def complex elements[1] end def end_tag elements[2] end end module Element1 # NOTE content only applies to non-void elements (second part of rule) def content { type: :element, name: (tag_element = elements[0]).name.to_sym, attributes: tag_element.attributes, pcdata: elements[1].content } end end def _nt_element start_index = index if node_cache[:element].has_key?(index) cached = node_cache[:element][index] if cached node_cache[:element][index] = cached = SyntaxNode.new(input, index...(index + 1)) if cached == true @index = cached.interval.end end return cached end i0 = index r1 = _nt_void_element if r1 r1 = SyntaxNode.new(input, (index-1)...index) if r1 == true r0 = r1 else i2, s2 = index, [] r3 = _nt_start_tag s2 << r3 if r3 r4 = _nt_complex s2 << r4 if r4 r5 = _nt_end_tag s2 << r5 end end if s2.last r2 = instantiate_node(SyntaxNode,input, i2...index, s2) r2.extend(Element0) r2.extend(Element1) else @index = i2 r2 = nil end if r2 r2 = SyntaxNode.new(input, (index-1)...index) if r2 == true r0 = r2 else @index = i0 r0 = nil end end node_cache[:element][start_index] = r0 r0 end module VoidElement0 end module VoidElement1 def void_tag_name elements[1] end def attributes elements[2] end end module VoidElement2 def content { type: :element, name: elements[1].text_value.to_sym, attributes: elements[2].content } end end def _nt_void_element start_index = index if node_cache[:void_element].has_key?(index) cached = node_cache[:void_element][index] if cached node_cache[:void_element][index] = cached = SyntaxNode.new(input, index...(index + 1)) if cached == true @index = cached.interval.end end return cached end i0, s0 = index, [] if (match_len = has_terminal?('<', false, index)) r1 = true @index += match_len else terminal_parse_failure('<') r1 = nil end s0 << r1 if r1 r2 = _nt_void_tag_name s0 << r2 if r2 r3 = _nt_attributes s0 << r3 if r3 i5, s5 = index, [] r7 = _nt_spaces if r7 r6 = r7 else r6 = instantiate_node(SyntaxNode,input, index...index) end s5 << r6 if r6 if (match_len = has_terminal?('/', false, index)) r8 = true @index += match_len else terminal_parse_failure('/') r8 = nil end s5 << r8 end if s5.last r5 = instantiate_node(SyntaxNode,input, i5...index, s5) r5.extend(VoidElement0) else @index = i5 r5 = nil end if r5 r4 = r5 else r4 = instantiate_node(SyntaxNode,input, index...index) end s0 << r4 if r4 if (match_len = has_terminal?('>', false, index)) r9 = true @index += match_len else terminal_parse_failure('>') r9 = nil end s0 << r9 end end end end if s0.last r0 = instantiate_node(SyntaxNode,input, i0...index, s0) r0.extend(VoidElement1) r0.extend(VoidElement2) else @index = i0 r0 = nil end node_cache[:void_element][start_index] = r0 r0 end module StartTag0 def tag_name elements[1] end def attributes elements[2] end end module StartTag1 def name elements[1].text_value end def attributes elements[2].content end end def _nt_start_tag start_index = index if node_cache[:start_tag].has_key?(index) cached = node_cache[:start_tag][index] if cached node_cache[:start_tag][index] = cached = SyntaxNode.new(input, index...(index + 1)) if cached == true @index = cached.interval.end end return cached end i0, s0 = index, [] if (match_len = has_terminal?('<', false, index)) r1 = true @index += match_len else terminal_parse_failure('<') r1 = nil end s0 << r1 if r1 r2 = _nt_tag_name s0 << r2 if r2 r3 = _nt_attributes s0 << r3 if r3 if (match_len = has_terminal?('>', false, index)) r4 = true @index += match_len else terminal_parse_failure('>') r4 = nil end s0 << r4 end end end if s0.last r0 = instantiate_node(SyntaxNode,input, i0...index, s0) r0.extend(StartTag0) r0.extend(StartTag1) else @index = i0 r0 = nil end node_cache[:start_tag][start_index] = r0 r0 end def _nt_tag_name start_index = index if node_cache[:tag_name].has_key?(index) cached = node_cache[:tag_name][index] if cached node_cache[:tag_name][index] = cached = SyntaxNode.new(input, index...(index + 1)) if cached == true @index = cached.interval.end end return cached end i0 = index if (match_len = has_terminal?('a', false, index)) r1 = true @index += match_len else terminal_parse_failure('a') r1 = nil end if r1 r1 = SyntaxNode.new(input, (index-1)...index) if r1 == true r0 = r1 else if (match_len = has_terminal?('strong', false, index)) r2 = instantiate_node(SyntaxNode,input, index...(index + match_len)) @index += match_len else terminal_parse_failure('strong') r2 = nil end if r2 r2 = SyntaxNode.new(input, (index-1)...index) if r2 == true r0 = r2 else if (match_len = has_terminal?('em', false, index)) r3 = instantiate_node(SyntaxNode,input, index...(index + match_len)) @index += match_len else terminal_parse_failure('em') r3 = nil end if r3 r3 = SyntaxNode.new(input, (index-1)...index) if r3 == true r0 = r3 else if (match_len = has_terminal?('code', false, index)) r4 = instantiate_node(SyntaxNode,input, index...(index + match_len)) @index += match_len else terminal_parse_failure('code') r4 = nil end if r4 r4 = SyntaxNode.new(input, (index-1)...index) if r4 == true r0 = r4 else if (match_len = has_terminal?('color', false, index)) r5 = instantiate_node(SyntaxNode,input, index...(index + match_len)) @index += match_len else terminal_parse_failure('color') r5 = nil end if r5 r5 = SyntaxNode.new(input, (index-1)...index) if r5 == true r0 = r5 else if (match_len = has_terminal?('font', false, index)) r6 = instantiate_node(SyntaxNode,input, index...(index + match_len)) @index += match_len else terminal_parse_failure('font') r6 = nil end if r6 r6 = SyntaxNode.new(input, (index-1)...index) if r6 == true r0 = r6 else if (match_len = has_terminal?('span', false, index)) r7 = instantiate_node(SyntaxNode,input, index...(index + match_len)) @index += match_len else terminal_parse_failure('span') r7 = nil end if r7 r7 = SyntaxNode.new(input, (index-1)...index) if r7 == true r0 = r7 else if (match_len = has_terminal?('button', false, index)) r8 = instantiate_node(SyntaxNode,input, index...(index + match_len)) @index += match_len else terminal_parse_failure('button') r8 = nil end if r8 r8 = SyntaxNode.new(input, (index-1)...index) if r8 == true r0 = r8 else if (match_len = has_terminal?('key', false, index)) r9 = instantiate_node(SyntaxNode,input, index...(index + match_len)) @index += match_len else terminal_parse_failure('key') r9 = nil end if r9 r9 = SyntaxNode.new(input, (index-1)...index) if r9 == true r0 = r9 else if (match_len = has_terminal?('sup', false, index)) r10 = instantiate_node(SyntaxNode,input, index...(index + match_len)) @index += match_len else terminal_parse_failure('sup') r10 = nil end if r10 r10 = SyntaxNode.new(input, (index-1)...index) if r10 == true r0 = r10 else if (match_len = has_terminal?('sub', false, index)) r11 = instantiate_node(SyntaxNode,input, index...(index + match_len)) @index += match_len else terminal_parse_failure('sub') r11 = nil end if r11 r11 = SyntaxNode.new(input, (index-1)...index) if r11 == true r0 = r11 else if (match_len = has_terminal?('mark', false, index)) r12 = instantiate_node(SyntaxNode,input, index...(index + match_len)) @index += match_len else terminal_parse_failure('mark') r12 = nil end if r12 r12 = SyntaxNode.new(input, (index-1)...index) if r12 == true r0 = r12 else if (match_len = has_terminal?('del', false, index)) r13 = instantiate_node(SyntaxNode,input, index...(index + match_len)) @index += match_len else terminal_parse_failure('del') r13 = nil end if r13 r13 = SyntaxNode.new(input, (index-1)...index) if r13 == true r0 = r13 else @index = i0 r0 = nil end end end end end end end end end end end end end node_cache[:tag_name][start_index] = r0 r0 end def _nt_void_tag_name start_index = index if node_cache[:void_tag_name].has_key?(index) cached = node_cache[:void_tag_name][index] if cached node_cache[:void_tag_name][index] = cached = SyntaxNode.new(input, index...(index + 1)) if cached == true @index = cached.interval.end end return cached end i0 = index if (match_len = has_terminal?('br', false, index)) r1 = instantiate_node(SyntaxNode,input, index...(index + match_len)) @index += match_len else terminal_parse_failure('br') r1 = nil end if r1 r1 = SyntaxNode.new(input, (index-1)...index) if r1 == true r0 = r1 else if (match_len = has_terminal?('img', false, index)) r2 = instantiate_node(SyntaxNode,input, index...(index + match_len)) @index += match_len else terminal_parse_failure('img') r2 = nil end if r2 r2 = SyntaxNode.new(input, (index-1)...index) if r2 == true r0 = r2 else @index = i0 r0 = nil end end node_cache[:void_tag_name][start_index] = r0 r0 end module Attributes0 def content attrs = {} elements.each {|e| attr_name, attr_val = e.content attrs[attr_name.to_sym] = attr_val } attrs end end def _nt_attributes start_index = index if node_cache[:attributes].has_key?(index) cached = node_cache[:attributes][index] if cached node_cache[:attributes][index] = cached = SyntaxNode.new(input, index...(index + 1)) if cached == true @index = cached.interval.end end return cached end s0, i0 = [], index loop do r1 = _nt_attribute if r1 s0 << r1 else break end end r0 = instantiate_node(SyntaxNode,input, i0...index, s0) r0.extend(Attributes0) node_cache[:attributes][start_index] = r0 r0 end module Attribute0 def spaces elements[0] end end module Attribute1 def content [elements[1].text_value, elements[4].text_value] end end def _nt_attribute start_index = index if node_cache[:attribute].has_key?(index) cached = node_cache[:attribute][index] if cached node_cache[:attribute][index] = cached = SyntaxNode.new(input, index...(index + 1)) if cached == true @index = cached.interval.end end return cached end i0, s0 = index, [] r1 = _nt_spaces s0 << r1 if r1 s2, i2 = [], index loop do if has_terminal?(@regexps[gr = '\A[a-z_]'] ||= Regexp.new(gr), :regexp, index) r3 = true @index += 1 else terminal_parse_failure('[a-z_]') r3 = nil end if r3 s2 << r3 else break end end if s2.empty? @index = i2 r2 = nil else r2 = instantiate_node(SyntaxNode,input, i2...index, s2) end s0 << r2 if r2 if (match_len = has_terminal?('=', false, index)) r4 = true @index += match_len else terminal_parse_failure('=') r4 = nil end s0 << r4 if r4 if (match_len = has_terminal?('"', false, index)) r5 = true @index += match_len else terminal_parse_failure('"') r5 = nil end s0 << r5 if r5 s6, i6 = [], index loop do if has_terminal?(@regexps[gr = '\A[^"]'] ||= Regexp.new(gr), :regexp, index) r7 = true @index += 1 else terminal_parse_failure('[^"]') r7 = nil end if r7 s6 << r7 else break end end r6 = instantiate_node(SyntaxNode,input, i6...index, s6) s0 << r6 if r6 if (match_len = has_terminal?('"', false, index)) r8 = true @index += match_len else terminal_parse_failure('"') r8 = nil end s0 << r8 end end end end end if s0.last r0 = instantiate_node(SyntaxNode,input, i0...index, s0) r0.extend(Attribute0) r0.extend(Attribute1) else @index = i0 r0 = nil end node_cache[:attribute][start_index] = r0 r0 end module EndTag0 def tag_name elements[1] end end module EndTag1 def name elements[1].text_value end end def _nt_end_tag start_index = index if node_cache[:end_tag].has_key?(index) cached = node_cache[:end_tag][index] if cached node_cache[:end_tag][index] = cached = SyntaxNode.new(input, index...(index + 1)) if cached == true @index = cached.interval.end end return cached end i0, s0 = index, [] if (match_len = has_terminal?('</', false, index)) r1 = instantiate_node(SyntaxNode,input, index...(index + match_len)) @index += match_len else terminal_parse_failure('</') r1 = nil end s0 << r1 if r1 r2 = _nt_tag_name s0 << r2 if r2 if (match_len = has_terminal?('>', false, index)) r3 = true @index += match_len else terminal_parse_failure('>') r3 = nil end s0 << r3 end end if s0.last r0 = instantiate_node(SyntaxNode,input, i0...index, s0) r0.extend(EndTag0) r0.extend(EndTag1) else @index = i0 r0 = nil end node_cache[:end_tag][start_index] = r0 r0 end module Cdata0 def content { type: :text, value: text_value } end end def _nt_cdata start_index = index if node_cache[:cdata].has_key?(index) cached = node_cache[:cdata][index] if cached node_cache[:cdata][index] = cached = SyntaxNode.new(input, index...(index + 1)) if cached == true @index = cached.interval.end end return cached end s0, i0 = [], index loop do if has_terminal?(@regexps[gr = '\A[^<&]'] ||= Regexp.new(gr), :regexp, index) r1 = true @index += 1 else terminal_parse_failure('[^<&]') r1 = nil end if r1 s0 << r1 else break end end if s0.empty? @index = i0 r0 = nil else r0 = instantiate_node(SyntaxNode,input, i0...index, s0) r0.extend(Cdata0) end node_cache[:cdata][start_index] = r0 r0 end module Charref0 def character_decimal elements[1] end end module Charref1 def character_hex elements[1] end end module Charref2 end module Charref3 def content if (ref_data = elements[1]).terminal? { type: :charref, reference_type: :name, value: ref_data.text_value.to_sym } elsif ref_data.elements[0].text_value == '#' { type: :charref, reference_type: :decimal, value: ref_data.elements[1].text_value.to_i } else { type: :charref, reference_type: :hex, value: ref_data.elements[1].text_value } end end end def _nt_charref start_index = index if node_cache[:charref].has_key?(index) cached = node_cache[:charref][index] if cached node_cache[:charref][index] = cached = SyntaxNode.new(input, index...(index + 1)) if cached == true @index = cached.interval.end end return cached end i0, s0 = index, [] if (match_len = has_terminal?('&', false, index)) r1 = true @index += match_len else terminal_parse_failure('&') r1 = nil end s0 << r1 if r1 i2 = index i3, s3 = index, [] if (match_len = has_terminal?('#', false, index)) r4 = true @index += match_len else terminal_parse_failure('#') r4 = nil end s3 << r4 if r4 r5 = _nt_character_decimal s3 << r5 end if s3.last r3 = instantiate_node(SyntaxNode,input, i3...index, s3) r3.extend(Charref0) else @index = i3 r3 = nil end if r3 r3 = SyntaxNode.new(input, (index-1)...index) if r3 == true r2 = r3 else i6, s6 = index, [] if (match_len = has_terminal?('#x', false, index)) r7 = instantiate_node(SyntaxNode,input, index...(index + match_len)) @index += match_len else terminal_parse_failure('#x') r7 = nil end s6 << r7 if r7 r8 = _nt_character_hex s6 << r8 end if s6.last r6 = instantiate_node(SyntaxNode,input, i6...index, s6) r6.extend(Charref1) else @index = i6 r6 = nil end if r6 r6 = SyntaxNode.new(input, (index-1)...index) if r6 == true r2 = r6 else r9 = _nt_character_name if r9 r9 = SyntaxNode.new(input, (index-1)...index) if r9 == true r2 = r9 else @index = i2 r2 = nil end end end s0 << r2 if r2 if (match_len = has_terminal?(';', false, index)) r10 = true @index += match_len else terminal_parse_failure(';') r10 = nil end s0 << r10 end end if s0.last r0 = instantiate_node(SyntaxNode,input, i0...index, s0) r0.extend(Charref2) r0.extend(Charref3) else @index = i0 r0 = nil end node_cache[:charref][start_index] = r0 r0 end def _nt_character_decimal start_index = index if node_cache[:character_decimal].has_key?(index) cached = node_cache[:character_decimal][index] if cached node_cache[:character_decimal][index] = cached = SyntaxNode.new(input, index...(index + 1)) if cached == true @index = cached.interval.end end return cached end s0, i0 = [], index loop do if has_terminal?(@regexps[gr = '\A[0-9]'] ||= Regexp.new(gr), :regexp, index) r1 = true @index += 1 else terminal_parse_failure('[0-9]') r1 = nil end if r1 s0 << r1 else break end if s0.size == 6 break end end if s0.size < 2 @index = i0 r0 = nil else r0 = instantiate_node(SyntaxNode,input, i0...index, s0) end node_cache[:character_decimal][start_index] = r0 r0 end def _nt_character_hex start_index = index if node_cache[:character_hex].has_key?(index) cached = node_cache[:character_hex][index] if cached node_cache[:character_hex][index] = cached = SyntaxNode.new(input, index...(index + 1)) if cached == true @index = cached.interval.end end return cached end s0, i0 = [], index loop do if has_terminal?(@regexps[gr = '\A[0-9a-f]'] ||= Regexp.new(gr), :regexp, index) r1 = true @index += 1 else terminal_parse_failure('[0-9a-f]') r1 = nil end if r1 s0 << r1 else break end if s0.size == 5 break end end if s0.size < 2 @index = i0 r0 = nil else r0 = instantiate_node(SyntaxNode,input, i0...index, s0) end node_cache[:character_hex][start_index] = r0 r0 end def _nt_character_name start_index = index if node_cache[:character_name].has_key?(index) cached = node_cache[:character_name][index] if cached node_cache[:character_name][index] = cached = SyntaxNode.new(input, index...(index + 1)) if cached == true @index = cached.interval.end end return cached end i0 = index if (match_len = has_terminal?('amp', false, index)) r1 = instantiate_node(SyntaxNode,input, index...(index + match_len)) @index += match_len else terminal_parse_failure('amp') r1 = nil end if r1 r1 = SyntaxNode.new(input, (index-1)...index) if r1 == true r0 = r1 else if (match_len = has_terminal?('apos', false, index)) r2 = instantiate_node(SyntaxNode,input, index...(index + match_len)) @index += match_len else terminal_parse_failure('apos') r2 = nil end if r2 r2 = SyntaxNode.new(input, (index-1)...index) if r2 == true r0 = r2 else if (match_len = has_terminal?('gt', false, index)) r3 = instantiate_node(SyntaxNode,input, index...(index + match_len)) @index += match_len else terminal_parse_failure('gt') r3 = nil end if r3 r3 = SyntaxNode.new(input, (index-1)...index) if r3 == true r0 = r3 else if (match_len = has_terminal?('lt', false, index)) r4 = instantiate_node(SyntaxNode,input, index...(index + match_len)) @index += match_len else terminal_parse_failure('lt') r4 = nil end if r4 r4 = SyntaxNode.new(input, (index-1)...index) if r4 == true r0 = r4 else if (match_len = has_terminal?('nbsp', false, index)) r5 = instantiate_node(SyntaxNode,input, index...(index + match_len)) @index += match_len else terminal_parse_failure('nbsp') r5 = nil end if r5 r5 = SyntaxNode.new(input, (index-1)...index) if r5 == true r0 = r5 else if (match_len = has_terminal?('quot', false, index)) r6 = instantiate_node(SyntaxNode,input, index...(index + match_len)) @index += match_len else terminal_parse_failure('quot') r6 = nil end if r6 r6 = SyntaxNode.new(input, (index-1)...index) if r6 == true r0 = r6 else @index = i0 r0 = nil end end end end end end node_cache[:character_name][start_index] = r0 r0 end def _nt_spaces start_index = index if node_cache[:spaces].has_key?(index) cached = node_cache[:spaces][index] if cached node_cache[:spaces][index] = cached = SyntaxNode.new(input, index...(index + 1)) if cached == true @index = cached.interval.end end return cached end s0, i0 = [], index loop do if (match_len = has_terminal?(' ', false, index)) r1 = true @index += match_len else terminal_parse_failure(' ') r1 = nil end if r1 s0 << r1 else break end end if s0.empty? @index = i0 r0 = nil else r0 = instantiate_node(SyntaxNode,input, i0...index, s0) end node_cache[:spaces][start_index] = r0 r0 end end class MarkupParser < Treetop::Runtime::CompiledParser include Markup end end end end ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/formatted_text/parser.treetop������������������������0000664�0000000�0000000�00000005443�14163570564�0027345�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true module Asciidoctor module PDF module FormattedText grammar Markup rule text complex end rule complex (cdata / element / charref)* { def content elements.map {|e| e.content } end } end rule element # strict tag matching (costs a minor toll) # void_element / start_tag complex end_tag &{|seq| seq[0].name == seq[2].name } { void_element / start_tag complex end_tag { # NOTE content only applies to non-void elements (second part of rule) def content { type: :element, name: (tag_element = elements[0]).name.to_sym, attributes: tag_element.attributes, pcdata: elements[1].content } end } end rule void_element '<' void_tag_name attributes (spaces? '/')? '>' { def content { type: :element, name: elements[1].text_value.to_sym, attributes: elements[2].content } end } end rule start_tag '<' tag_name attributes '>' { def name elements[1].text_value end def attributes elements[2].content end } end rule tag_name # QUESTION faster to do regex? # QUESTION what about supporting hr? 'a' / 'strong' / 'em' / 'code' / 'color' / 'font' / 'span' / 'button' / 'key' / 'sup' / 'sub' / 'mark' / 'del' end rule void_tag_name 'br' / 'img' end rule attributes attribute* { def content attrs = {} elements.each {|e| attr_name, attr_val = e.content attrs[attr_name.to_sym] = attr_val } attrs end } end rule attribute spaces [a-z_]+ '=' '"' [^"]* '"' { def content [elements[1].text_value, elements[4].text_value] end } end rule end_tag '</' tag_name '>' { def name elements[1].text_value end } end rule cdata [^<&]+ { def content { type: :text, value: text_value } end } end rule charref '&' ('#' character_decimal / '#x' character_hex / character_name) ';' { def content if (ref_data = elements[1]).terminal? { type: :charref, reference_type: :name, value: ref_data.text_value.to_sym } elsif ref_data.elements[0].text_value == '#' { type: :charref, reference_type: :decimal, value: ref_data.elements[1].text_value.to_i } else { type: :charref, reference_type: :hex, value: ref_data.elements[1].text_value } end end } end rule character_decimal # NOTE 6 decimals only supported in Asciidoctor 1.5.5 and up [0-9] 2..6 end rule character_hex # NOTE 5 hexadecimals only supported in Asciidoctor 1.5.5 and up [0-9a-f] 2..5 end rule character_name 'amp' / 'apos' / 'gt' / 'lt' / 'nbsp' / 'quot' end rule spaces ' '+ end end end end end �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/formatted_text/source_wrap.rb������������������������0000664�0000000�0000000�00000003020�14163570564�0027310�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true module Asciidoctor module PDF module FormattedText module SourceWrap NoBreakSpace = ?\u00a0 def wrap array initialize_wrap array stop = nil highlight_line = nil unconsumed = @arranger.unconsumed if (linenum_fragment = unconsumed[0] || {})[:linenum] linenum_spacer = { text: NoBreakSpace + (' ' * (linenum_fragment[:text].length - 1)) } end until stop if linenum_spacer && (first_fragment = unconsumed[0]) if first_fragment[:linenum] highlight_line = (second_fragment = unconsumed[1]) && (second_fragment[:highlight]) ? second_fragment.dup : nil else first_fragment[:text] = first_fragment[:text].lstrip @arranger.unconsumed.unshift highlight_line if highlight_line @arranger.unconsumed.unshift linenum_spacer.dup end end @line_wrap.wrap_line document: @document, kerning: @kerning, width: available_width, arranger: @arranger, disable_wrap_by_char: @disable_wrap_by_char if enough_height_for_this_line? move_baseline_down print_line else stop = true end stop ||= @single_line || @arranger.finished? end @text = @printed_lines.join ?\n @everything_printed = @arranger.finished? @arranger.unconsumed end end end end end ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/formatted_text/text_background_and_border_renderer.rb0000664�0000000�0000000�00000003516�14163570564�0034221�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true module Asciidoctor::PDF::FormattedText module TextBackgroundAndBorderRenderer module_function DummyText = ?\u0000 # render_behind is called before the text is printed def render_behind fragment return if (pdf = fragment.document).scratch? data = fragment.format_state if data[:inline_block] padding = (height = fragment.line_height) - fragment.height at = [fragment.left, fragment.top + padding * 0.5] width = data[:extend] ? (pdf.bounds.width - fragment.left) : fragment.width fragment.conceal if fragment.text == DummyText elsif (border_offset = data[:border_offset]) at = [fragment.left, fragment.top + border_offset] width = fragment.width height = fragment.height + border_offset * 2 else at = fragment.top_left width = fragment.width height = fragment.height end border_radius = data[:border_radius] if (background_color = data[:background_color]) prev_fill_color = pdf.fill_color pdf.fill_color background_color if border_radius pdf.fill_rounded_rectangle at, width, height, border_radius else pdf.fill_rectangle at, width, height end pdf.fill_color prev_fill_color end if (border_width = data[:border_width]) border_color = data[:border_color] prev_stroke_color = pdf.stroke_color prev_line_width = pdf.line_width pdf.stroke_color border_color pdf.line_width border_width if border_radius pdf.stroke_rounded_rectangle at, width, height, border_radius else pdf.stroke_rectangle at, width, height end pdf.stroke_color prev_stroke_color pdf.line_width prev_line_width end nil end end end ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/formatted_text/transform.rb��������������������������0000664�0000000�0000000�00000044657�14163570564�0027017�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true module Asciidoctor module PDF module FormattedText class Transform LF = ?\n ZeroWidthSpace = ?\u200b CharEntityTable = { amp: ?&, apos: ?', gt: ?>, lt: ?<, nbsp: ?\u00a0, quot: ?" } CharRefRx = /&(?:(#{CharEntityTable.keys.join ?|})|#(?:(\d\d\d{0,4})|x([a-f\d][a-f\d][a-f\d]{0,3})));/ HexColorRx = /^#[a-fA-F0-9]{6}$/ TextDecorationTable = { 'underline' => :underline, 'line-through' => :strikethrough } ThemeKeyToFragmentProperty = { 'background_color' => :background_color, 'border_color' => :border_color, 'border_offset' => :border_offset, 'border_radius' => :border_radius, 'border_width' => :border_width, 'font_color' => :color, 'font_family' => :font, 'font_size' => :size, 'text_decoration_color' => :text_decoration_color, 'text_decoration_width' => :text_decoration_width, } #DummyText = ?\u0000 def initialize options = {} @merge_adjacent_text_nodes = options[:merge_adjacent_text_nodes] # TODO: add support for character spacing if (theme = options[:theme]) @theme_settings = { button: { color: theme.button_font_color, font: theme.button_font_family, size: theme.button_font_size, styles: (to_styles theme.button_font_style), background_color: (button_bg_color = theme.button_background_color), border_width: (button_border_width = theme.button_border_width), border_color: button_border_width && (theme.button_border_color || theme.base_border_color), border_offset: (button_border_offset = (button_bg_or_border = button_bg_color || button_border_width) && theme.button_border_offset), border_radius: button_bg_or_border && theme.button_border_radius, align: button_border_offset && :center, callback: button_bg_or_border && [TextBackgroundAndBorderRenderer], }.compact, code: { color: theme.literal_font_color, font: theme.literal_font_family, size: theme.literal_font_size, styles: (to_styles theme.literal_font_style), background_color: (mono_bg_color = theme.literal_background_color), border_width: (mono_border_width = theme.literal_border_width), border_color: mono_border_width && (theme.literal_border_color || theme.base_border_color), border_offset: (mono_border_offset = (mono_bg_or_border = mono_bg_color || mono_border_width) && theme.literal_border_offset), border_radius: mono_bg_or_border && theme.literal_border_radius, align: mono_border_offset && :center, callback: mono_bg_or_border && [TextBackgroundAndBorderRenderer], }.compact, key: { color: theme.key_font_color, font: theme.key_font_family || theme.literal_font_family, size: theme.key_font_size, styles: (to_styles theme.key_font_style), background_color: (key_bg_color = theme.key_background_color), border_width: (key_border_width = theme.key_border_width), border_color: key_border_width && (theme.key_border_color || theme.base_border_color), border_offset: (key_border_offset = (key_bg_or_border = key_bg_color || key_border_width) && theme.key_border_offset), border_radius: key_bg_or_border && theme.key_border_radius, align: key_border_offset && :center, callback: key_bg_or_border && [TextBackgroundAndBorderRenderer], }.compact, link: { color: theme.link_font_color, font: theme.link_font_family, size: theme.link_font_size, styles: (to_styles theme.link_font_style, theme.link_text_decoration), text_decoration_color: theme.link_text_decoration_color, text_decoration_width: theme.link_text_decoration_width, }.compact, mark: { color: theme.mark_font_color, styles: (to_styles theme.mark_font_style), background_color: (mark_bg_color = theme.mark_background_color), border_offset: (mark_border_offset = mark_bg_color && theme.mark_border_offset), align: mark_border_offset && :center, callback: mark_bg_color && [TextBackgroundAndBorderRenderer], }.compact, } revise_roles = [].to_set theme.each_pair.each_with_object @theme_settings do |(key, val), accum| next unless (key = key.to_s).start_with? 'role_' role, key = (key.slice 5, key.length).split '_', 2 if (prop = ThemeKeyToFragmentProperty[key]) (accum[role] ||= {})[prop] = val #elsif key == 'font_kerning' # unless (resolved_val = val == 'none' ? false : (val == 'normal' ? true : nil)).nil? # (accum[role] ||= {})[:kerning] = resolved_val # end elsif key == 'font_style' || key == 'text_decoration' revise_roles << role end end revise_roles.each_with_object @theme_settings do |role, accum| (accum[role] ||= {})[:styles] = to_styles theme[%(role_#{role}_font_style)], theme[%(role_#{role}_text_decoration)] end @theme_settings['line-through'] = { styles: [:strikethrough].to_set } unless @theme_settings.key? 'line-through' @theme_settings['underline'] = { styles: [:underline].to_set } unless @theme_settings.key? 'underline' unless @theme_settings.key? 'big' if (base_font_size_large = theme.base_font_size_large) @theme_settings['big'] = { size: %(#{(base_font_size_large / theme.base_font_size.to_f).round 4}em) } else @theme_settings['big'] = { size: '1.1667em' } end end unless @theme_settings.key? 'small' if (base_font_size_small = theme.base_font_size_small) @theme_settings['small'] = { size: %(#{(base_font_size_small / theme.base_font_size.to_f).round 4}em) } else @theme_settings['small'] = { size: '0.8333em' } end end else @theme_settings = { button: { font: 'Courier', styles: [:bold].to_set }, code: { font: 'Courier' }, key: { font: 'Courier', styles: [:italic].to_set }, link: { color: '0000FF' }, mark: { background_color: 'FFFF00', callback: [TextBackgroundAndBorderRenderer] }, 'line-through' => { styles: [:strikethrough].to_set }, 'underline' => { styles: [:underline].to_set }, 'big' => { size: '1.667em' }, 'small' => { size: '0.8333em' }, } end end def apply parsed, fragments = [], inherited = nil previous_fragment_is_text = false # NOTE we use each since using inject is slower than a manual loop parsed.each do |node| case node[:type] when :element # case 1: non-void element if node.key? :pcdata # NOTE skip element if it has no children if (pcdata = node[:pcdata]).empty? ## NOTE handle an empty anchor element (i.e., <a ...></a>) #if (tag_name = node[:name]) == :a # seed = clone_fragment inherited, text: DummyText # fragments << build_fragment(seed, tag_name, node[:attributes]) # previous_fragment_is_text = false #end else tag_name = node[:name] attributes = node[:attributes] parent = clone_fragment inherited # NOTE decorate child fragments with inherited properties from this element apply pcdata, fragments, (build_fragment parent, tag_name, attributes) previous_fragment_is_text = false end # case 2: void element else case node[:name] when :br if @merge_adjacent_text_nodes && previous_fragment_is_text fragments << (clone_fragment inherited, text: %(#{fragments.pop[:text]}#{LF})) else fragments << { text: LF } end previous_fragment_is_text = true when :img attributes = node[:attributes] fragment = { image_path: attributes[:src], image_format: attributes[:format], # NOTE: add enclosing square brackets here to avoid errors in parsing text: %([#{attributes[:alt].delete ZeroWidthSpace}]), callback: [InlineImageRenderer], object_id: node.object_id, # used to deduplicate if fragment gets split up } if inherited && (link = inherited[:link]) fragment[:link] = link end if (img_w = attributes[:width]) fragment[:image_width] = img_w end if (img_fit = attributes[:fit]) fragment[:image_fit] = img_fit end fragments << fragment previous_fragment_is_text = false end end when :text if @merge_adjacent_text_nodes && previous_fragment_is_text fragments << (clone_fragment inherited, text: %(#{fragments.pop[:text]}#{node[:value]})) else fragments << (clone_fragment inherited, text: node[:value]) end previous_fragment_is_text = true when :charref if (ref_type = node[:reference_type]) == :name text = CharEntityTable[node[:value]] elsif ref_type == :decimal # FIXME: AFM fonts do not include a thin space glyph; set fallback_fonts to allow glyph to be resolved text = [node[:value]].pack 'U1' else # FIXME: AFM fonts do not include a thin space glyph; set fallback_fonts to allow glyph to be resolved text = [(node[:value].to_i 16)].pack 'U1' end if @merge_adjacent_text_nodes && previous_fragment_is_text fragments << (clone_fragment inherited, text: %(#{fragments.pop[:text]}#{text})) else fragments << (clone_fragment inherited, text: text) end previous_fragment_is_text = true end end fragments end def build_fragment fragment, tag_name, attrs = {} styles = (fragment[:styles] ||= ::Set.new) case tag_name when :strong styles << :bold when :em styles << :italic when :button, :code, :key, :mark update_fragment fragment, @theme_settings[tag_name] when :color if (rgb = attrs[:rgb]) case rgb.chr when '#' fragment[:color] = rgb.slice 1, rgb.length when '[' # treat value as CMYK array (e.g., "[50, 100, 0, 0]") fragment[:color] = rgb.slice(1, rgb.length).chomp(']').split(', ').map(&:to_i) # ...or we could honor an rgb array too #case (vals = rgb.slice(1, rgb.length).chomp(']').split(', ')).size #when 4 # fragment[:color] = vals.map(&:to_i) #when 3 # fragment[:color] = vals.map {|e| '%02X' % e.to_i }.join #end else fragment[:color] = rgb end # QUESTION should we even support r,g,b and c,m,y,k as individual values? elsif (r_val = attrs[:r]) && (g_val = attrs[:g]) && (b_val = attrs[:b]) fragment[:color] = [r_val, g_val, b_val].map {|e| '%02X' % e.to_i }.join elsif (c_val = attrs[:c]) && (m_val = attrs[:m]) && (y_val = attrs[:y]) && (k_val = attrs[:k]) fragment[:color] = [c_val.to_i, m_val.to_i, y_val.to_i, k_val.to_i] end when :font if (value = attrs[:name]) fragment[:font] = value end if (value = attrs[:size]) # FIXME: can we make this comparison more robust / accurate? if (f_value = value.to_f).to_s == value || value.to_i.to_s == value fragment[:size] = f_value elsif value != '1em' fragment[:size] = value end end # NOTE width is used for font-based icons if (value = attrs[:width]) fragment[:width] = value fragment[:align] = :center fragment[:callback] = (fragment[:callback] || []) | [InlineTextAligner] end #if (value = attrs[:character_spacing]) # fragment[:character_spacing] = value.to_f #end when :a visible = true # a element can have no attributes, so short-circuit if that's the case unless attrs.empty? # NOTE href, anchor, and name are mutually exclusive; nesting is not supported if (value = attrs[:anchor]) fragment[:anchor] = value elsif (value = attrs[:href]) fragment[:link] = (value.include? ';') ? (value.gsub CharRefRx do $1 ? CharEntityTable[$1.to_sym] : [$2 ? $2.to_i : ($3.to_i 16)].pack('U1') end) : value elsif (value = attrs[:id] || attrs[:name]) # NOTE text is null character, which is used as placeholder text so Prawn doesn't drop fragment fragment = { name: value, callback: [InlineDestinationMarker] } if (type = attrs[:type]) fragment[:type] = type.to_sym end visible = nil end end update_fragment fragment, @theme_settings[:link] if visible when :sub styles << :subscript when :sup styles << :superscript when :del styles << :strikethrough when :span # NOTE spaces in style value are superfluous for our purpose; split drops record after trailing ; attrs[:style].tr(' ', '').split(';').each do |style| pname, pvalue = style.split ':', 2 # TODO: text-transform case pname when 'color' # TODO: check whether the value is a valid hex color? case pvalue.length when 6 fragment[:color] = pvalue when 7 fragment[:color] = pvalue.slice 1, 6 if pvalue.start_with? '#' end # QUESTION should we support the 3 character form? #when 3 # fragment[:color] = pvalue.each_char.map {|c| c * 2 }.join #when 4 # fragment[:color] = pvalue.slice(1, 3).each_char.map {|c| c * 2 }.join if pvalue.start_with?('#') when 'font-weight' styles << :bold if pvalue == 'bold' when 'font-style' styles << :italic if pvalue == 'italic' when 'align', 'text-align' fragment[:align] = pvalue.to_sym fragment[:callback] = (fragment[:callback] || []) | [InlineTextAligner] when 'width' # NOTE implicitly activates inline-block behavior fragment[:width] = pvalue when 'background-color' # background-color needed to support syntax highlighters if (pvalue.start_with? '#') && (HexColorRx.match? pvalue) fragment[:background_color] = pvalue.slice 1, pvalue.length fragment[:callback] = [TextBackgroundAndBorderRenderer] | (fragment[:callback] || []) end end end if attrs.key? :style end # TODO: we could limit to select tags, but doesn't seem to really affect performance attrs[:class].split.each do |class_name| next unless @theme_settings.key? class_name update_fragment fragment, @theme_settings[class_name] if fragment[:background_color] || (fragment[:border_color] && fragment[:border_width]) fragment[:callback] = [TextBackgroundAndBorderRenderer] | (fragment[:callback] || []) fragment[:align] = :center if fragment[:border_offset] end end if attrs.key? :class fragment.delete :styles if styles.empty? fragment[:callback] = (fragment[:callback] || []) | [InlineTextAligner] if fragment.key? :align fragment end def clone_fragment fragment, append = nil if fragment fragment = fragment.dup fragment[:styles] = fragment[:styles].dup if fragment.key? :styles fragment[:callback] = fragment[:callback].dup if fragment.key? :callback else fragment = {} end fragment.update append if append fragment end def to_styles font_style, text_decoration = nil case font_style when 'bold' styles = [:bold].to_set when 'italic' styles = [:italic].to_set when 'bold_italic' styles = [:bold, :italic].to_set end if (style = TextDecorationTable[text_decoration]) styles ? (styles << style) : [style].to_set else styles end end def update_fragment fragment, props fragment.update props do |k, oval, nval| case k when :styles nval ? (oval.merge nval) : oval.clear when :callback oval | nval else nval end end end end end end end ���������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/index_catalog.rb�������������������������������������0000664�0000000�0000000�00000006117�14163570564�0024541�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true module Asciidoctor module PDF class IndexCatalog include ::Asciidoctor::PDF::TextTransformer LeadingAlphaRx = /^\p{Alpha}/ attr_accessor :start_page_number def initialize @categories = {} @start_page_number = 1 @dests = {} @sequence = 0 end def next_anchor_name %(__indexterm-#{@sequence += 1}) end def store_term names, dest = nil if (num_terms = names.size) > 2 store_tertiary_term names[0], names[1], names[2], dest elsif num_terms == 2 store_secondary_term names[0], names[1], dest elsif num_terms == 1 store_primary_term names[0], dest end end def store_primary_term name, dest = nil store_dest dest if dest (init_category name.chr.upcase).store_term name, dest end def store_secondary_term primary_name, secondary_name, dest = nil store_dest dest if dest (store_primary_term primary_name).store_term secondary_name, dest end def store_tertiary_term primary_name, secondary_name, tertiary_name, dest = nil store_dest dest if dest (store_secondary_term primary_name, secondary_name).store_term tertiary_name, dest end def init_category name name = '@' unless LeadingAlphaRx.match? name @categories[name] ||= IndexTermCategory.new name end def find_category name @categories[name] end def store_dest dest @dests[dest[:anchor]] = dest end def link_dest_to_page anchor, physical_page_number if (dest = @dests[anchor]) virtual_page_number = physical_page_number - (@start_page_number - 1) dest[:page] = (virtual_page_number < 1 ? (RomanNumeral.new physical_page_number, :lower) : virtual_page_number).to_s end end def empty? @categories.empty? end def categories @categories.empty? ? [] : @categories.values.sort end end class IndexTermGroup include Comparable attr_reader :name def initialize name @name = name @terms = {} end def store_term name, dest = nil term = (@terms[name] ||= (IndexTerm.new name)) term.add_dest dest if dest term end def find_term name @terms[name] end def terms @terms.empty? ? [] : @terms.values.sort end def <=> other (val = @name.casecmp other.name) == 0 ? @name <=> other.name : val end end class IndexTermCategory < IndexTermGroup; end class IndexTerm < IndexTermGroup def initialize name super @dests = ::Set.new end alias subterms terms def add_dest dest @dests << dest self end def dests @dests.select {|d| d.key? :page }.sort {|a, b| a[:page] <=> b[:page] } end def container? @dests.empty? || @dests.none? {|d| d.key? :page } end def leaf? @terms.empty? end end end end �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/measurements.rb��������������������������������������0000664�0000000�0000000�00000003362�14163570564�0024447�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true module Asciidoctor module PDF module Measurements MeasurementValueRx = /(\d+|\d*\.\d+)(in|mm|cm|p[txc])?$/ InsetMeasurementValueRx = /(?<=^| |\()(-?\d+(?:\.\d+)?)(in|mm|cm|p[txc])(?=$| |\))/ MeasurementValueHintRx = /\d(in|mm|cm|p[txc])/ # Convert the specified string value to a pt value from the # specified unit of measurement (e.g., in, cm, mm, etc). # If the unit of measurement is not recognized, assume pt. # # Examples: # # 0.5in => 36.0 # 100px => 75.0 # 72blah => 72.0 # def str_to_pt val MeasurementValueRx =~ val ? (to_pt $1.to_f, $2) : val.to_f end # Converts the specified float value to a pt value from the # specified unit of measurement (e.g., in, cm, mm, etc). # Raises an argument error if the unit of measurement is not recognized. def to_pt num, units units = units.to_s if ::Symbol === units if units.nil_or_empty? num else case units when 'pt' num when 'in' num * 72 when 'mm' num * (72 / 25.4) when 'cm' num * (720 / 25.4) when 'px' # assuming canvas of 96 dpi num * 0.75 when 'pc' num * 12 else raise ::ArgumentError, %(unknown unit of measurement: #{units}) end end end # Resolve measurement values in the string to PDF points. def resolve_measurement_values str if MeasurementValueHintRx.match? str str.gsub(InsetMeasurementValueRx) { to_pt $1.to_f, $2 } else str end end end end end ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/optimizer.rb�����������������������������������������0000664�0000000�0000000�00000003757�14163570564�0023771�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require 'pathname' require 'rghost' require 'rghost/gs_alone' require 'tmpdir' RGhost::GSAlone.prepend (Module.new do WindowsRx = /win|ming/ def initialize params, debug (@params = params.dup).push(*(@params.pop.split File::PATH_SEPARATOR)) @debug = debug end def run RGhost::Config.config_platform unless File.exist? RGhost::Config::GS[:path].to_s (cmd = @params.slice 1, @params.length).unshift RGhost::Config::GS[:path].to_s #puts cmd if @debug system(*cmd) end end) RGhost::Engine.prepend (Module.new do def shellescape str str end end) module Asciidoctor module PDF class Optimizer # see https://www.ghostscript.com/doc/current/VectorDevices.htm#PSPDF_IN for details (QUALITY_NAMES = { 'default' => :default, 'screen' => :screen, 'ebook' => :ebook, 'printer' => :printer, 'prepress' => :prepress, }).default = :default attr_reader :quality attr_reader :compatibility_level def initialize quality = 'default', compatibility_level = '1.4' @quality = QUALITY_NAMES[quality] @compatibility_level = compatibility_level if (gs_path = ::ENV['GS']) ::RGhost::Config::GS[:path] = gs_path end end def optimize_file target ::Dir::Tmpname.create ['asciidoctor-pdf-', '.pdf'] do |tmpfile| filename_o = ::Pathname.new target filename_tmp = ::Pathname.new tmpfile if (pdfmark = filename_o.sub_ext '.pdfmark').file? inputs = [target, pdfmark.to_s].join ::File::PATH_SEPARATOR else inputs = target end (::RGhost::Convert.new inputs).to :pdf, filename: filename_tmp.to_s, quality: @quality, d: { Printed: false, CannotEmbedFontPolicy: '/Warning', CompatibilityLevel: @compatibility_level } filename_o.binwrite filename_tmp.binread end nil end end end end �����������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/pdfmark.rb�������������������������������������������0000664�0000000�0000000�00000002467�14163570564�0023370�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true module Asciidoctor module PDF class Pdfmark include ::Asciidoctor::PDF::Sanitizer def initialize doc @doc = doc end def generate doc = @doc if doc.attr? 'reproducible' mod_date = creation_date = (::Time.at 0).utc else mod_date = (::Time.parse doc.attr 'docdatetime') rescue (now ||= ::Time.now) creation_date = (::Time.parse doc.attr 'localdatetime') rescue (now || ::Time.now) end # FIXME: use sanitize: :plain_text once available <<~EOS [ /Title #{(sanitize doc.doctitle use_fallback: true).to_pdf_object} /Author #{(doc.attr 'authors').to_pdf_object} /Subject #{(doc.attr 'subject').to_pdf_object} /Keywords #{(doc.attr 'keywords').to_pdf_object} /ModDate #{mod_date.to_pdf_object} /CreationDate #{creation_date.to_pdf_object} /Creator (Asciidoctor PDF #{::Asciidoctor::PDF::VERSION}, based on Prawn #{::Prawn::VERSION}) /Producer #{(doc.attr 'publisher').to_pdf_object} /DOCINFO pdfmark EOS end def generate_file pdf_file # QUESTION should we use the extension pdfmeta to be more clear? ::File.write %(#{pdf_file}mark), generate end end end end ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/roman_numeral.rb�������������������������������������0000664�0000000�0000000�00000006546�14163570564�0024605�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true ######################################################################## # # This file was copied from roman-numerals and modified for use with # Asciidoctor PDF. # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files (the # "Software"), to deal in the Software without restriction, including # without limitation the rights to use, copy, modify, merge, publish, # distribute, sublicense, and/or sell copies of the Software, and to # permit persons to whom the Software is furnished to do so, subject to # the following conditions: # # The above copyright notice and this permission notice shall be # included in all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # # Copyright (c) 2011 Andrew Vos # Copyright (c) 2014 OpenDevise, Inc. # ######################################################################## module Asciidoctor module PDF class RomanNumeral BaseDigits = { 1 => 'I', 4 => 'IV', 5 => 'V', 9 => 'IX', 10 => 'X', 40 => 'XL', 50 => 'L', 90 => 'XC', 100 => 'C', 400 => 'CD', 500 => 'D', 900 => 'CM', 1000 => 'M', } def initialize initial_value, letter_case = nil initial_value ||= 1 if ::Integer === initial_value @integer_value = initial_value else @integer_value = RomanNumeral.roman_to_int initial_value letter_case = :lower if letter_case.nil? && initial_value.upcase != initial_value end @letter_case = letter_case.nil? ? :upper : letter_case end def to_s to_r end def to_r if (int = @integer_value) < 1 return int.to_s end roman = RomanNumeral.int_to_roman int @letter_case == :lower ? roman.downcase : roman end def to_i @integer_value end def odd? to_i.odd? end def even? to_i.even? end def next RomanNumeral.new @integer_value + 1, @letter_case end def next! @integer_value += 1 self end def pred RomanNumeral.new @integer_value - 1, @letter_case end def empty? false end def self.int_to_roman value result = [] BaseDigits.keys.reverse_each do |ival| while value >= ival value -= ival result << BaseDigits[ival] end end result.join end def self.roman_to_int value value = value.upcase result = 0 BaseDigits.values.reverse_each do |rval| while value.start_with? rval offset = rval.length value = value[offset..offset] result += BaseDigits.key rval end end result end end end end ����������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/sanitizer.rb�����������������������������������������0000664�0000000�0000000�00000002725�14163570564�0023751�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true module Asciidoctor module PDF module Sanitizer XMLSpecialChars = { '<' => ?<, '>' => ?>, '&' => ?&, } XMLSpecialCharsRx = /(?:#{XMLSpecialChars.keys.join ?|})/ InverseXMLSpecialChars = XMLSpecialChars.invert InverseXMLSpecialCharsRx = /[#{InverseXMLSpecialChars.keys.join}]/ (BuiltInNamedEntities = { 'amp' => ?&, 'apos' => ?', 'gt' => ?>, 'lt' => ?<, 'nbsp' => ' ', 'quot' => ?", }).default = ?? SanitizeXMLRx = /<[^>]+>/ CharRefRx = /&(?:([a-z][a-z]+\d{0,2})|#(?:(\d\d\d{0,4})|x([a-f\d][a-f\d][a-f\d]{0,3})));/ # Strip leading, trailing and repeating whitespace, remove XML tags and # resolve all entities in the specified string. # # FIXME move to a module so we can mix it in elsewhere # FIXME add option to control escaping entities, or a filter mechanism in general def sanitize string string = string.gsub SanitizeXMLRx, '' if string.include? '<' string = string.gsub(CharRefRx) { $1 ? BuiltInNamedEntities[$1] : ([$2 ? $2.to_i : ($3.to_i 16)].pack 'U1') } if string.include? '&' string.strip.tr_s ' ', ' ' end def escape_xml string string.gsub InverseXMLSpecialCharsRx, InverseXMLSpecialChars end def encode_quotes string (string.include? ?") ? (string.gsub ?", '"') : string end end end end �������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/text_transformer.rb����������������������������������0000664�0000000�0000000�00000002636�14163570564�0025350�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true module Asciidoctor module PDF module TextTransformer XMLMarkupRx = /&#?[a-z\d]+;|</ PCDATAFilterRx = /(&#?[a-z\d]+;|<[^>]+>)|([^&<]+)/ TagFilterRx = /(<[^>]+>)|([^<]+)/ ContiguousCharsRx = /\p{Graph}+/ WordRx = /\p{Word}+/ Hyphen = '-' SoftHyphen = ?\u00ad def capitalize_words_pcdata string if XMLMarkupRx.match? string string.gsub(PCDATAFilterRx) { $2 ? (capitalize_words $2) : $1 } else capitalize_words string end end def capitalize_words string string.gsub(ContiguousCharsRx) { $&.capitalize } end def hyphenate_words_pcdata string, hyphenator if XMLMarkupRx.match? string string.gsub(PCDATAFilterRx) { $2 ? (hyphenate_words $2, hyphenator) : $1 } else hyphenate_words string, hyphenator end end def hyphenate_words string, hyphenator string.gsub(WordRx) { hyphenator.visualize $&, SoftHyphen } end def lowercase_pcdata string if string.include? '<' string.gsub(TagFilterRx) { $2 ? $2.downcase : $1 } else string.downcase end end def uppercase_pcdata string if XMLMarkupRx.match? string string.gsub(PCDATAFilterRx) { $2 ? $2.upcase : $1 } else string.upcase end end end end end ��������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/theme_loader.rb��������������������������������������0000664�0000000�0000000�00000026274�14163570564�0024376�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require 'safe_yaml/load' require 'ostruct' require_relative 'measurements' module Asciidoctor module PDF class ThemeLoader include ::Asciidoctor::PDF::Measurements include ::Asciidoctor::Logging DataDir = ::File.absolute_path %(#{__dir__}/../../../data) ThemesDir = ::File.join DataDir, 'themes' FontsDir = ::File.join DataDir, 'fonts' BaseThemePath = ::File.join ThemesDir, 'base-theme.yml' VariableRx = /\$([a-z0-9_-]+)/ LoneVariableRx = /^\$([a-z0-9_-]+)$/ HexColorEntryRx = /^(?<k> *\p{Graph}+): +(?!null$)(?<q>["']?)(?<h>#)?(?<v>[a-fA-F0-9]{3,6})\k<q> *(?:#.*)?$/ MultiplyDivideOpRx = /(-?\d+(?:\.\d+)?) +([*\/]) +(-?\d+(?:\.\d+)?)/ AddSubtractOpRx = /(-?\d+(?:\.\d+)?) +([+\-]) +(-?\d+(?:\.\d+)?)/ PrecisionFuncRx = /^(round|floor|ceil)\(/ # TODO: implement white? & black? methods module ColorValue; end class HexColorValue < String include ColorValue end # A marker module for a normalized CMYK array # Prevents normalizing CMYK value more than once module CMYKColorValue include ColorValue def to_s %([#{join ', '}]) end end def self.resolve_theme_file theme_name = nil, theme_dir = nil # NOTE if .yml extension is given, assume it's a path (don't append -theme.yml) if theme_name && (theme_name.end_with? '.yml') # FIXME: restrict to jail! if theme_dir theme_path = ::File.absolute_path theme_name, (theme_dir = ::File.expand_path theme_dir) else theme_path = ::File.expand_path theme_name theme_dir = ::File.dirname theme_path end else theme_dir = theme_dir ? (::File.expand_path theme_dir) : ThemesDir theme_path = ::File.absolute_path ::File.join theme_dir, %(#{theme_name || 'default'}-theme.yml) end [theme_path, theme_dir] end def self.resolve_theme_asset asset_path, theme_dir = nil ::File.absolute_path asset_path, (theme_dir || ThemesDir) end # NOTE base theme is loaded "as is" (no post-processing) def self.load_base_theme (::OpenStruct.new ::SafeYAML.load_file BaseThemePath).tap {|theme| theme.__dir__ = ThemesDir } end def self.load_theme theme_name = nil, theme_dir = nil theme_path, theme_dir = resolve_theme_file theme_name, theme_dir if theme_path == BaseThemePath load_base_theme else theme_data = load_file theme_path, nil, theme_dir unless (::File.dirname theme_path) == ThemesDir theme_data.base_align ||= 'left' theme_data.base_line_height ||= 1 theme_data.base_font_color ||= '000000' theme_data.code_font_family ||= (theme_data.literal_font_family || 'Courier') theme_data.conum_font_family ||= (theme_data.literal_font_family || 'Courier') if (heading_font_family = theme_data.heading_font_family) theme_data.abstract_title_font_family ||= heading_font_family theme_data.sidebar_title_font_family ||= heading_font_family end end theme_data.__dir__ = theme_dir theme_data end end def self.load_file filename, theme_data = nil, theme_dir = nil data = ::File.read filename, mode: 'r:UTF-8', newline: :universal data = data.each_line.map {|line| line.sub(HexColorEntryRx) { %(#{(m = $~)[:k]}: #{m[:h] || (m[:k].end_with? 'color') ? "'#{m[:v]}'" : m[:v]}) } }.join unless (::File.dirname filename) == ThemesDir yaml_data = ::SafeYAML.load data, filename if ::Hash === yaml_data && (yaml_data.key? 'extends') if (extends = yaml_data.delete 'extends') (Array extends).each do |extend_path| if extend_path == 'base' theme_data = theme_data ? (::OpenStruct.new theme_data.to_h.merge load_base_theme.to_h) : load_base_theme next elsif extend_path == 'default' || extend_path == 'default-with-fallback-font' extend_path, extend_theme_dir = resolve_theme_file extend_path, ThemesDir elsif extend_path.start_with? './' extend_path, extend_theme_dir = resolve_theme_file extend_path, (::File.dirname filename) else extend_path, extend_theme_dir = resolve_theme_file extend_path, theme_dir end theme_data = load_file extend_path, theme_data, extend_theme_dir end end else theme_data ||= ((::File.dirname filename) == ThemesDir ? nil : load_base_theme) end new.load yaml_data, theme_data end def load hash, theme_data = nil ::Hash === hash ? hash.reduce(theme_data || ::OpenStruct.new) {|data, (key, val)| process_entry key, val, data, true } : (theme_data || ::OpenStruct.new) end private def process_entry key, val, data, normalize_key = false key = key.tr '-', '_' if normalize_key && (key.include? '-') if key == 'font' val.each do |subkey, subval| process_entry %(#{key}_#{subkey}), subval, data if subkey == 'catalog' || subkey == 'fallbacks' end if ::Hash === val elsif key == 'font_catalog' data[key] = ::Hash === val ? (val.reduce (val.delete 'merge') ? data[key] || {} : {} do |accum, (name, styles)| # rubocop:disable Style/EachWithObject styles = %w(normal bold italic bold_italic).map {|style| [style, styles] }.to_h if ::String === styles accum[name] = styles.reduce({}) do |subaccum, (style, path)| # rubocop:disable Style/EachWithObject if (path.start_with? 'GEM_FONTS_DIR') && (sep = path[13]) path = %(#{FontsDir}#{sep}#{path.slice 14, path.length}) end subaccum[style == 'regular' ? 'normal' : style] = expand_vars path, data subaccum end if ::Hash === styles accum end) : {} elsif key == 'font_fallbacks' data[key] = ::Array === val ? val.map {|name| expand_vars name.to_s, data } : [] elsif key.start_with? 'admonition_icon_' data[key] = val ? val.map {|(key2, val2)| key2 = key2.tr '-', '_' if key2.include? '-' [key2.to_sym, (key2.end_with? '_color') ? (to_color evaluate val2, data) : (evaluate val2, data)] }.to_h : {} elsif ::Hash === val val.each do |subkey, subval| process_entry %(#{key}_#{key == 'role' || !(subkey.include? '-') ? subkey : (subkey.tr '-', '_')}), subval, data end elsif key.end_with? '_color' # QUESTION do we really need to evaluate_math in this case? data[key] = to_color evaluate val, data elsif key.end_with? '_content' data[key] = (expand_vars val.to_s, data).to_s else data[key] = evaluate val, data end data end def evaluate expr, vars case expr when ::String evaluate_math expand_vars expr, vars when ::Array expr.map {|e| evaluate e, vars } else expr end end # NOTE we assume expr is a String def expand_vars expr, vars if (idx = (expr.index '$')) if idx == 0 && expr =~ LoneVariableRx if (key = $1).include? '-' key = key.tr '-', '_' end if vars.respond_to? key vars[key] else logger.warn %(unknown variable reference in PDF theme: $#{$1}) expr end else expr.gsub VariableRx do if (key = $1).include? '-' key = key.tr '-', '_' end if vars.respond_to? key vars[key] else logger.warn %(unknown variable reference in PDF theme: $#{$1}) $& end end end else expr end end def evaluate_math expr return expr if !(::String === expr) || ColorValue === expr # resolve measurement values (e.g., 0.5in => 36) # QUESTION should we round the value? perhaps leave that to the precision functions # NOTE leave % as a string; handled by converter for now original, expr = expr, (resolve_measurement_values expr) loop do if (expr.count '*/') > 0 result = expr.gsub(MultiplyDivideOpRx) { $1.to_f.send $2.to_sym, $3.to_f } unchanged = (result == expr) expr = result break if unchanged else break end end loop do if (expr.count '+-') > 0 result = expr.gsub(AddSubtractOpRx) { $1.to_f.send $2.to_sym, $3.to_f } unchanged = (result == expr) expr = result break if unchanged else break end end if (expr.end_with? ')') && expr =~ PrecisionFuncRx op = $1 offset = op.length + 1 expr = expr[offset...-1].to_f.send op.to_sym end if expr == original original else (int_val = expr.to_i) == (flt_val = expr.to_f) ? int_val : flt_val end end def to_color value case value when ColorValue # already converted return value when ::Array case value.length # CMYK value when 4 value = value.map do |e| if ::Numeric === e e *= 100.0 unless e > 1 else e = e.to_s.chomp('%').to_f end e == (int_e = e.to_i) ? int_e : e end case value when [0, 0, 0, 0] return HexColorValue.new 'FFFFFF' when [100, 100, 100, 100] return HexColorValue.new '000000' else value.extend CMYKColorValue return value end # RGB value when 3 return HexColorValue.new value.map {|e| '%02X' % e }.join # Nonsense array value; flatten to string else value = value.join end when ::String if value == 'transparent' # FIXME: should we have a TransparentColorValue class? return HexColorValue.new value elsif value.length == 6 return HexColorValue.new value.upcase end when ::NilClass return nil else # Unknown type (usually Integer); coerce to String if (value = value.to_s).length == 6 return HexColorValue.new value.upcase end end case value.length when 6 resolved_value = value when 3 # expand hex shorthand (e.g., f00 -> ff0000) resolved_value = value.each_char.map {|c| c * 2 }.join else # truncate or pad with leading zeros (e.g., ff -> 0000ff) resolved_value = (value.slice 0, 6).rjust 6, '0' end HexColorValue.new resolved_value.upcase end end end end ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/version.rb�������������������������������������������0000664�0000000�0000000�00000000215�14163570564�0023416�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true module Asciidoctor module PDF VERSION = '1.6.2' end Pdf = PDF unless const_defined? :Pdf, false end �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/scripts/�����������������������������������������������������������������0000775�0000000�0000000�00000000000�14163570564�0017253�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/scripts/Dockerfile.fontforge���������������������������������������������0000664�0000000�0000000�00000000404�14163570564�0023233�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# podman build -t fontforge -f Dockerfile.fontforge FROM fedora:31 RUN groupadd -g 1000 fontforge && \ useradd -u 1000 -g 1000 -G fontforge fontforge && \ dnf install -y fontforge xz USER fontforge WORKDIR /home/fontforge ENTRYPOINT [ "fontforge" ] ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/scripts/decode-pdf-string������������������������������������������������0000775�0000000�0000000�00000001215�14163570564�0022476�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������#!/usr/bin/env ruby str = ARGV[0] def string_object_to_utf16 str [str.force_encoding(::Encoding::US_ASCII)].pack('H*').force_encoding ::Encoding::UTF_16BE end def string_object_to_utf8 str [str.force_encoding(::Encoding::US_ASCII)].pack('H*').force_encoding ::Encoding::UTF_8 end def utf16_to_utf8 str str.encode ::Encoding::UTF_8 end def decode_hexified_utf16_string_object str utf16_to_utf8 string_object_to_utf16 str end def decode_hexified_utf8_string_object str string_object_to_utf8 str end if ARGV[1] == 'utf8' puts decode_hexified_utf8_string_object ARGV[0].dup else puts decode_hexified_utf16_string_object ARGV[0].dup end �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/scripts/subset-fonts.pe��������������������������������������������������0000775�0000000�0000000�00000037026�14163570564�0022250�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������#!/usr/bin/env fontforge # Prerequisites: # # - fontforge: https://fontforge.github.io/en-US/ # # Run using: # # $ ./subset-fonts.pe <source directory> <output directory> # # Example: # # $ ./subset-fonts.pe source-fonts ../data/fonts # # NOTE: Ignore "GID out of range" warnings; fontforge has to kick the tires a bit to flush out these dead references. # # Use with Noto Serif fonts from https://code.google.com/p/noto/source/browse/#svn%2Ftrunk%2Ffonts%2Findividual%2Funhinted # Use with M+ fonts from http://mplus-fonts.sourceforge.jp/mplus-outline-fonts/download/index-en.html # # See Unicode Blocks: http://jrgraphix.net/research/unicode_blocks.php # # IMPORTANT: Must generate Apple format (0x10) or include old-fashioned 'kern' table for kerning to work in Prawn. # Prawn misses some of the kern pairs when using the Apply format, so the old-fashioned 'kern' table is best (0x90). # Keep in mind, though, that the old-fashioned 'kern' table only supported a limited number of pairs. # # generate flags (additive): # * 0x00 - OpenType # * 0x10 - Apple # * 0x80 - OpenType and Apple # * 0x90 - Neither OpenType or Apple (implicitly generates an old-style 'kern' table) # * 0x800 - Generate old-style 'kern' table # * 0x08 - exclude TrueType instructions # * 0x04 - exclude PS glyph names; short format only (PDF readers use these names to guess characters when copying text) # * 0x4000000 - drop glyphs with Unicode value of -1 # # NOTE best choice for Prawn only is 0x90 + 0x08 # NOTE best choice for web only is 0x00 + 0x08 # NOTE best choice for Prawn & web is 0x00 + 0x800 + 0x08 genflags = 0x90 + 0x08 copy_fonts = ["NotoSerif-Regular.ttf", "NotoSerif-Bold.ttf", "NotoSerif-Italic.ttf", "NotoSerif-BoldItalic.ttf", "mplus-1p-regular.ttf"] copy_scripts = ["subset"] emoji_fonts = ["NotoEmoji-Regular.ttf"] emoji_scripts = ["subset"] code_fonts = ["mplus-1mn-light.ttf", "mplus-1mn-regular.ttf", "mplus-1mn-medium.ttf", "mplus-1mn-bold.ttf"] code_scripts = ["ascii", "subset"] if ($argc >= 2) source_dir = $argv[1] else source_dir = "." endif if ($argc >= 3) output_dir = $argv[2] else output_dir = "generated" endif fa_src_filepath = StrJoin([source_dir, "fontawesome-webfont.ttf"], "/") mplus1p_src_filepath = StrJoin([source_dir, "mplus-1p-regular.ttf"], "/") fi = 0 num_copy_fonts = SizeOf(copy_fonts) while (fi < num_copy_fonts) copy_font = copy_fonts[fi] src_filepath = StrJoin([source_dir, copy_font], "/") new_basename = ToLower(copy_font:r) if (Strstr(new_basename, "bolditalic") >= 0) new_basename = StrJoin(StrSplit(new_basename, "bolditalic"), "bold_italic") endif is_mplus = Strstr(new_basename, "mplus") >= 0 is_noto = Strstr(new_basename, "noto") >= 0 # remove hyphen from mplus-1 file basename if (is_mplus) new_basename = "mplus1" + StrJoin(StrSplit(new_basename, "mplus-1"), "") endif si = 0 num_copy_scripts = SizeOf(copy_scripts) while (si < num_copy_scripts) script = copy_scripts[si] if (is_mplus && new_basename == "mplus1p-regular" && script == "subset") script = "fallback" endif new_filename = new_basename + "-" + script + ".ttf" new_filepath = output_dir + "/" + new_filename if (is_noto) Print("Stealing glyphs from other fonts...") if (new_basename == "notoserif-regular") Print("Stealing ballot boxes from FontAwesome...") # Grab ballot boxes from FontAwesome Open(fa_src_filepath) # relocate 0uf046 -> 0u2611 Select(0uf046); Copy(); Select(0u2611); Paste() # relocate 0uf096 -> 0u2610 Select(0uf096); Copy(); Select(0u2610); Paste() # select and copy ballot boxes Select(0u2610,0u2611) Copy() Close() Open(src_filepath) Select(0u2610,0u2611) Paste() SetWidth(1664) SelectNone() # NOTE it shouldn't be necessary to write the file here, but for some reason it doesn't work otherwise in this script Generate(new_filepath, "", genflags) src_filepath = new_filepath Close() endif Print("Stealing double arrows from M+ 1p...") Open(mplus1p_src_filepath) from_em = $em SelectSingletons(0u21d0,0u21d2) Copy() Close() Open(src_filepath) SelectSingletons(0u21d0,0u21d2) Paste() scale_factor = (1.0 * $em / from_em) * 100 Scale(scale_factor, scale_factor) SetWidth($em) CenterInWidth() # Move single and double arrows up to align with middle of X SelectMoreSingletons(0u2190,0u2192) Move(0, 380) SelectNone() Print("Done stealing glyphs from other fonts") else Open(src_filepath) endif SelectAll() # Remove TrueType instructions (i.e., hinting) ClearInstrs() SelectNone() # Basic Latin (e.g., English) SelectMore(0u0020,0u007e) # Latin-1 Supplement (covers core Western European languages) SelectMore(0u00a1,0u00fd) # Latin Extended-A (covers Czech, Dutch, Polish & Turkish, esp. names) SelectMore(0u0100,0u017f) # General Punctuation (most of it) (e.g., dashes, curved quotes, bullet, ellipsis) SelectMore(0u2000,0u203a) # More picky general punctuation ## Spaces #SelectMore(0u2000,0u200b) ## Dashes #SelectMore(0u2012,0u2015) ## Curved quotes #SelectMore(0u2018,0u2019) #SelectMore(0u201c,0u201d) #SelectMore(0u2039,0u203a) ## Daggars #SelectMore(0u2020,0u2021) ## Bullet #SelectMore(0u2022) ## Ellipsis #SelectMore(0u2026) # Additional Currency Symbols #SelectMore(0u20a0,0u20d0) # ...or just the Euro sign SelectMore(0u20ac) # Trademark sign (selected from Letterlike Symbols set) SelectMore(0u2122) # Mathematical Operators (e.g., infinity, sum, partial differential) SelectMore(0u2200,0u22ff) # Geometric Shapes (e.g., list bullets) SelectMore(0u25a0,0u25ff) # Greek (frequently used for math and bullets) SelectMore(0u0370,0u03ff) if (is_noto) # Single arrows (present in Noto Serif, but misaligned) and double arrows (imported from M+ 1p) SelectMoreSingletons(0u2190,0u2192,0u21d0,0u21d2) if (new_basename == "notoserif-regular") # Ballot boxes (imported from FontAwesome) SelectMore(0u2610,0u2611) endif # Check mark (missing from Noto Serif) #SelectMore(0u2713) endif if (is_mplus) # Single arrows SelectMore(0u2190,0u2195) # Double arrows SelectMore(0u21d0,0u21d5) # Ballot boxes SelectMore(0u2610,0u2611) # Check mark SelectMore(0u2713) endif if (script == "latin-ext" || script == "latin-ext-cyrillic" || script == "fallback") # Latin Extended-B SelectMore(0u0180,0u024f) # IPA Extensions (i.e., core phonetics) #SelectMore(0u0250,0u02af) # Upside-down e (from IPA Extensions) SelectMore(0u0259) # Spacing Modifier Letters (i.e., IPA tone marks, and modifiers for aspiration and palatalization) (missing from Noto Serif) SelectMore(0u02b0,0u02ff) # Latin Ligatures (e.g., fi) (Noto Serif doesn't auto-detect them, so leave them off) #SelectMore(0ufb00,0ufb06) endif if (script == "latin-cyrillic" || script == "latin-ext-cyrillic" || script == "subset" || script == "fallback") # Cyrillic SelectMore(0u0400,0u04ff) endif if (script == "subset" || script == "fallback") # Non-optimal selection for Vietnamese # Latin Extended-A, Latin Extended Additional #SelectMore(0u0100,0u017f) #SelectMore(0u1e00,0u1eff) # Optimal selection for Vietnamese (see http://blog.int3ractive.com/2010/06/optimal-unicode-range-for-vietnamese.html) # NOTE Latin Extended-A may already included at this point, so 0u0102-0u0169 may be redundant SelectMore(0u0102,0u0103) SelectMore(0u0110,0u0111) SelectMore(0u0128,0u0129) SelectMore(0u0168,0u0169) SelectMore(0u01a0,0u01b0) SelectMore(0u1ea0,0u1ef9) if (is_mplus) # CJK Symbols and Punctuation (not present in mainstream Noto Serif fonts) SelectMore(0u3000,0u303f) # Hiragana SelectMore(0u3040,0u309f) # Katakana SelectMore(0u30a0,0u30ff) # Full-width roman characters and half-width katakana SelectMore(0uff00,0uffef) # CJK Unified Ideographs (for Japanese, aka kanji) (not present in mainstream Noto Serif fonts) SelectMore(0u4e00,0u9faf) endif endif #if (script == "fallback") # # Cyrillic Supplement # #SelectMore(0u0500,0u052f) # # Greek Extended (i.e., Polytonic) # #SelectMore(0u1f00,0u1fff) # # Or just select all them symbols... # SelectAll() #endif # BOM (zero-width no-break space) and no-break space SelectMoreSingletons(0ufeff,0u00a0) # Keep .notdef, which will be used as the default glyph if the font is missing a glyph SelectMore('.notdef') # Drop all glyphs that weren't selected SelectInvert() Clear() SelectNone() if (is_mplus) # Generate BOM (zero-width no-break space), zero-width space, and word joiner from no-break space (for M+ fonts) Select(0u00a0) Copy() SelectNone() SelectSingletons(0ufeff,0u200b,0u2060) Paste() SetWidth(0) SelectNone() # Generate narrow no-break space from thin space (for M+ fonts) Select(0u2009) Copy() SelectNone() Select(0u202f) Paste() SetWidth(226) # Generate hair space from thin space (for M+ fonts) Select(0u2009) Copy() SelectNone() Select(0u200a) Paste() SetWidth(94) SelectNone() else # Generate word joiner from BOM (zero-width no-break space) Select(0ufeff) Copy() Select(0u2060) Paste() SelectNone() # Generate no-break hyphen from hyphen (for Noto Serif fonts) Select(0u002d) Copy() SelectNone() Select(0u2011) Paste() SelectNone() # Fix width of .null character #Select(0u0000) #SetWidth(0) #SelectNone() endif # Generate line feed from no-break space (works around error "cmap format 14 is not supported" in ttfunk) # FIXME another option here is to select all the characters referenced by the cmap format 14 table Select(0u00a0) Copy() SelectNone() Select(0u000a) Paste() SetWidth(0) SelectNone() Print("Generating " + new_filename + "...") Generate(new_filepath, "", genflags) Close() if (is_mplus) # Regenerate font to drop invalid cmap format 14 table (ignore warnings) Open(new_filepath) Generate(new_filepath, "", genflags) Close() endif si = si + 1 endloop fi = fi + 1 endloop fi = 0 num_emoji_fonts = SizeOf(emoji_fonts) while (fi < num_emoji_fonts) emoji_font = emoji_fonts[fi] src_filepath = StrJoin([source_dir, emoji_font], "/") new_basename = ToLower(emoji_font:r) si = 0 num_emoji_scripts = SizeOf(emoji_scripts) while (si < num_emoji_scripts) script = emoji_scripts[si] new_filename = new_basename + "-" + script + ".ttf" new_filepath = output_dir + "/" + new_filename Open(src_filepath) SelectAll() # Remove TrueType instructions (i.e., hinting) ClearInstrs() SelectNone() SelectAll() SelectFewer(0u00a0,0u21af) SelectFewer(0u24c2) SelectFewer(0u25a0,0u25ff) SelectFewer(0u2611) SelectFewer(0u26aa,0u26ab) SelectFewer(0u2705) SelectFewer(0u2714,0u2716) SelectFewer(0u274c,0u2757) SelectFewer(0u2790,0u1f25f) SelectMore(0u2b50) SelectInvert() Clear() SelectNone() Print("Generating " + new_filename + "...") Generate(new_filepath, "", genflags) Close() si = si + 1 endloop fi = fi + 1 endloop fi = 0 num_code_fonts = SizeOf(code_fonts) while (fi < num_code_fonts) code_font = code_fonts[fi] src_filepath = StrJoin([source_dir, code_font], "/") new_basename_base = code_font:r # remove hyphen from mplus-1 file basename new_basename_base = "mplus1" + StrJoin(StrSplit(new_basename_base, "mplus-1"), "") si = 0 num_code_scripts = SizeOf(code_scripts) while (si < num_code_scripts) new_basename = new_basename_base script = code_scripts[si] new_suffix = "-" + script + ".ttf" Open(src_filepath) SelectAll() # NOTE: M+ fonts don't have hinting, so technically this is redundant ClearInstrs() SelectNone() # Basic Latin (e.g., English) SelectMore(0u0020,0u007e) if (script == "subset") # Latin-1 Supplement (covers core Western European languages) SelectMore(0u00a1,0u00fd) # Latin Extended-A (covers Czech, Dutch, Polish & Turkish, esp. names) SelectMore(0u0100,0u017f) # General Punctuation (e.g., em dashes, arrows, ellipsis, trademark) SelectMoreSingletons(0u2014,0u2026,0u2122,0u2190,0u2192,0u21d0,0u21d2) # Greek Alphabet (frequently used for math) SelectMore(0u0391,0u03c9) # Euro sign SelectMore(0u20ac) # Cyrillic SelectMore(0u0400,0u04ff) endif # No-break space SelectMore(0u00a0) # Box drawing symbols (for unix `tree` output) SelectMore(0u2500,0u257f) if (new_basename == "mplus1mn-regular") # Enclosed numbers (1-20 circled and filled) SelectMore(0u2460,0u2473) SelectMore(0u2776,0u277f) SelectMore(0u24eb,0u24f4) if (script == "ascii") new_suffix = "-" + script + "-conums.ttf" endif endif # Keep .notdef, which will be used as the default glyph if the font is missing a glyph SelectMore('.notdef') SelectInvert() Clear() SelectNone() SetFontNames(new_basename, "M+ 1mn") # repurpose light as italic if (new_basename == "mplus1mn-light") SetFontNames("mplus1mn-italic", "M+ 1mn", "M+ 1mn Italic") SetOS2Value("Weight", 400) SetPanose(2, 5) SetTTFName(0x409, 2, "Italic") SetTTFName(0x409, 16, "") SetTTFName(0x409, 17, "") SetTTFName(0x411, 16, "") SetTTFName(0x411, 17, "") new_basename = "mplus1mn-italic" # repurpose medium as bold elseif (new_basename == "mplus1mn-medium") SetFontNames("mplus1mn-bold", "M+ 1mn", "M+ 1mn Bold") SetOS2Value("Weight", 700) SetPanose(2, 8) SetTTFName(0x409, 2, "Bold") SetTTFName(0x409, 16, "") SetTTFName(0x409, 17, "") SetTTFName(0x411, 16, "") SetTTFName(0x411, 17, "") new_basename = "mplus1mn-bold" # repurpose bold as bold italic elseif (new_basename == "mplus1mn-bold") SetFontNames("mplus1mn-bold_italic", "M+ 1mn", "M+ 1mn Bold Italic") SetOS2Value("Weight", 700) SetPanose(2, 8) SetTTFName(0x409, 2, "Bold Italic") SetTTFName(0x409, 16, "") SetTTFName(0x409, 17, "") SetTTFName(0x411, 16, "") SetTTFName(0x411, 17, "") new_basename = "mplus1mn-bold_italic" endif ## Adjust width of box drawing symbols (not working) #Select(0u2500,0u257f) #SetWidth(50, 2) #SelectNone() # Generate BOM (zero-width no-break space) from no-break space Select(0u00a0) Copy() SelectNone() Select(0ufeff) Paste() SetWidth(0) SelectNone() # Generate line feed from no-break space Select(0u00a0) Copy() SelectNone() Select(0u000a) Paste() SetWidth(0) SelectNone() new_filename = new_basename + new_suffix new_filepath = output_dir + "/" + new_filename Print("Generating " + new_filename + "...") Generate(new_filepath, "", genflags) Close() # Regenerate font to drop invalid cmap format 14 table (ignore warnings) Open(new_filepath) Generate(new_filepath, "", genflags) Close() si = si + 1 endloop fi = fi + 1 endloop ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/scripts/subset-fonts.sh��������������������������������������������������0000775�0000000�0000000�00000004247�14163570564�0022255�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������#!/usr/bin/bash # NOTE only update when fonts are being changed export SOURCE_DATE_EPOCH=$(date -d 2020-01-29T00:00:00 +%s) MPLUS_VERSION=TESTFLIGHT-063a NOTO_VERSION=86b2e553c3e3e4d6614dadd1fa0a7a6dafd74552 EMOJI_VERSION=16151a2312a1f8a7d79e91789d3cfe24559d61f7 FONT_AWESOME_VERSION=4.7.0 SOURCE_DIR=fonts BUILD_DIR=../data/fonts mkdir -p $SOURCE_DIR rm -f $SOURCE_DIR/*.ttf cd $SOURCE_DIR if [ ! -d mplus-$MPLUS_VERSION ]; then curl -LOs https://osdn.net/dl/mplus-fonts/mplus-$MPLUS_VERSION.tar.xz tar xf mplus-$MPLUS_VERSION.tar.xz fi if [ ! -d noto-$NOTO_VERSION ]; then mkdir noto-$NOTO_VERSION cd noto-$NOTO_VERSION curl -LOs https://github.com/googlefonts/noto-fonts/raw/$NOTO_VERSION/hinted/NotoSerif-Regular.ttf curl -LOs https://github.com/googlefonts/noto-fonts/raw/$NOTO_VERSION/hinted/NotoSerif-Bold.ttf curl -LOs https://github.com/googlefonts/noto-fonts/raw/$NOTO_VERSION/hinted/NotoSerif-Italic.ttf curl -LOs https://github.com/googlefonts/noto-fonts/raw/$NOTO_VERSION/hinted/NotoSerif-BoldItalic.ttf cd .. fi if [ ! -d emoji-$EMOJI_VERSION ]; then mkdir emoji-$EMOJI_VERSION cd emoji-$EMOJI_VERSION curl -Ls -o NotoEmoji.ttf https://github.com/googlefonts/noto-emoji/raw/$EMOJI_VERSION/fonts/NotoEmoji-Regular.ttf cd .. fi if [ ! -d font-awesome-$FONT_AWESOME_VERSION ]; then mkdir font-awesome-$FONT_AWESOME_VERSION cd font-awesome-$FONT_AWESOME_VERSION curl -LOs https://cdnjs.cloudflare.com/ajax/libs/font-awesome/$FONT_AWESOME_VERSION/fonts/fontawesome-webfont.ttf cd .. fi cp mplus-$MPLUS_VERSION/mplus-1mn*ttf . cp mplus-$MPLUS_VERSION/mplus-1p-regular.ttf . cp noto-$NOTO_VERSION/*.ttf . cp emoji-$EMOJI_VERSION/*.ttf . cp font-awesome-$FONT_AWESOME_VERSION/*.ttf . cd .. # NOTE build image using command found at top of Dockerfile.fontforge podman run --rm -t -u 0:0 --privileged \ -e "SOURCE_DATE_EPOCH=${SOURCE_DATE_EPOCH}" \ -v `pwd`:/home/fontforge/scripts \ -v `pwd`/$BUILD_DIR:/home/fontforge/scripts/build \ -w /home/fontforge/scripts \ localhost/fontforge:latest -script subset-fonts.pe $SOURCE_DIR build > /tmp/subset-fonts.log 2>&1 exitcode=$? rm -f $SOURCE_DIR/*.ttf if [ -d build ]; then rmdir build fi exit $exitcode ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/scripts/switch-to-asciidoctor-head.rb������������������������������������0000664�0000000�0000000�00000001463�14163570564�0024725�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������require 'fileutils' # NOTE it's necessary to hot patch the installed gem so that RubyGems can find it without Bundler asciidoctor_spec = Gem::Specification.find_by_name 'asciidoctor' FileUtils.rm_r asciidoctor_spec.gem_dir, secure: true if Dir.exist? asciidoctor_spec.gem_dir Process.wait Process.spawn %(git clone --depth=1 https://github.com/asciidoctor/asciidoctor #{File.basename asciidoctor_spec.gem_dir}), chdir: asciidoctor_spec.gems_dir Dir.chdir asciidoctor_spec.gem_dir do new_asciidoctor_spec_contents = File.readlines 'asciidoctor.gemspec', mode: 'r:UTF-8' new_asciidoctor_spec = eval new_asciidoctor_spec_contents.join, nil, (File.join Dir.pwd, 'asciidoctor.gemspec') new_asciidoctor_spec.version = asciidoctor_spec.version File.write asciidoctor_spec.spec_file, new_asciidoctor_spec.to_ruby end �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/scripts/switch-to-prawn-head.rb������������������������������������������0000664�0000000�0000000�00000002567�14163570564�0023557�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������require 'fileutils' # NOTE it's necessary to hot patch the installed gem so that RubyGems can find it without Bundler prawn_spec = Gem::Specification.find_by_name 'prawn' FileUtils.rm_r prawn_spec.gem_dir, secure: true if Dir.exist? prawn_spec.gem_dir Process.wait Process.spawn %(git clone --depth=1 https://github.com/prawnpdf/prawn #{File.basename prawn_spec.gem_dir}), chdir: prawn_spec.gems_dir # Option A: patch dependency versions new_prawn_spec_contents = File.read (File.join prawn_spec.gem_dir, 'prawn.gemspec'), mode: 'r:UTF-8' #ttfunk_version_spec = (%r/'ttfunk', *'(.+?)'/.match new_prawn_spec_contents)[1] pdf_core_version_spec = (%r/'pdf-core', *'(.+?)'/.match new_prawn_spec_contents)[1] prawn_spec_replacement = prawn_spec .to_ruby #.gsub(%r/(ttfunk.+?)"[^"]+"/, %(\\1"#{ttfunk_version_spec}")) .gsub(%r/(pdf-core.+?)"[^"]+"/, %(\\1"#{pdf_core_version_spec}")) # Option B: regenerate spec file #new_prawn_spec_contents = File.readlines (File.join prawn_spec.gem_dir, 'prawn.gemspec'), mode: 'r:UTF-8' #basedir_line_idx = new_prawn_spec_contents.index {|it| it.start_with? 'basedir =' } #new_prawn_spec_contents[basedir_line_idx] = %(basedir = '#{prawn_spec.gem_dir}'\n) #new_prawn_spec = eval new_prawn_spec_contents.join #new_prawn_spec.version = prawn_spec.version #prawn_spec_replacement = new_prawn_spec.to_ruby File.write prawn_spec.spec_file, prawn_spec_replacement �����������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/��������������������������������������������������������������������0000775�0000000�0000000�00000000000�14163570564�0016516�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/admonition_spec.rb��������������������������������������������������0000664�0000000�0000000�00000024177�14163570564�0022231�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'spec_helper' describe 'Asciidoctor::PDF::Converter - Admonition' do it 'should advance block to next page to avoid splitting it if it will fit on page' do pdf = to_pdf <<~EOS, analyze: true #{(['paragraph'] * 20).join %(\n\n)} [NOTE] ==== #{(['admonition'] * 20).join %(\n\n)} ==== EOS admon_page_numbers = (pdf.find_text 'admonition').map {|it| it[:page_number] }.uniq (expect admon_page_numbers).to eql [2] end it 'should vertically center label on first page if block is split across pages' do pdf = to_pdf <<~EOS, pdf_theme: { page_margin: '0.5in' }, analyze: true [NOTE] ==== #{(['admonition'] * 40).join %(\n\n)} ==== EOS (expect pdf.pages).to have_size 2 page_height = (get_page_size pdf)[1] label_text = (pdf.find_text 'NOTE')[0] label_text_midpoint = label_text[:y] + (label_text[:font_size] * 0.5) (expect label_text_midpoint).to be_within(2).of(page_height * 0.5) end it 'should draw vertical rule on all pages if block is split across pages' do pdf = to_pdf <<~EOS, pdf_theme: { page_margin: '0.5in' }, analyze: :line [NOTE] ==== #{(['admonition'] * 40).join %(\n\n)} ==== EOS lines = pdf.lines (expect lines).to have_size 2 (expect lines.map {|it| it[:page_number] }).to eql [1, 2] (expect lines[0][:to][:y]).to eql 36.0 (expect lines[1][:to][:y]).to be > 36.0 end it 'should draw border and background on all pages if block is split across pages', visual: true do pdf_theme = { admonition_background_color: 'F5A9A9', admonition_border_width: 0.5, admonition_border_color: '333333', admonition_rule_color: 'FFFFFF', } to_file = to_pdf_file <<~EOS, 'admonition-page-split.pdf', pdf_theme: pdf_theme before [NOTE] ==== #{(['admonition'] * 40).join %(\n\n)} ==== after EOS (expect to_file).to visually_match 'admonition-page-split.pdf' end it 'should allow theme to configure properties of caption' do pdf_theme = { admonition_caption_font_color: '00AA00', } pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, analyze: true .Admonition title [NOTE] ==== There's something you should know. ==== EOS title_text = (pdf.find_text 'Admonition title')[0] (expect title_text[:font_color]).to eql '00AA00' end context 'Text' do it 'should show bold admonition label by default' do pdf = to_pdf <<~'EOS', analyze: true TIP: Look for the warp zone under the bridge. EOS lines = pdf.lines (expect lines).to have_size 1 (expect lines[0]).to eql 'TIPLook for the warp zone under the bridge.' text = pdf.text (expect text).to have_size 2 label_text = text[0] (expect label_text[:string]).to eql 'TIP' (expect label_text[:font_name]).to eql 'NotoSerif-Bold' content_text = text[1] (expect content_text[:string]).to eql 'Look for the warp zone under the bridge.' end end context 'Icon' do it 'should show font-based icon in place of label when icons=font' do pdf = to_pdf <<~'EOS', analyze: true :icons: font TIP: Look for the warp zone under the bridge. EOS lines = pdf.lines (expect lines).to have_size 1 (expect lines[0]).to eql %(\uf0ebLook for the warp zone under the bridge.) text = pdf.text (expect text).to have_size 2 label_text = text[0] (expect label_text[:string]).to eql ?\uf0eb (expect label_text[:font_name]).to eql 'FontAwesome5Free-Regular' content_text = text[1] (expect content_text[:string]).to eql 'Look for the warp zone under the bridge.' end it 'should assume icon name with no icon set prefix is a legacy FontAwesome icon name' do pdf = to_pdf <<~'EOS', pdf_theme: { admonition_icon_tip: { name: 'smile-wink' } }, analyze: true :icons: font TIP: Time to upgrade your icon set. EOS icon_text = pdf.text[0] (expect icon_text[:font_name]).to eql 'FontAwesome5Free-Solid' (expect icon_text[:string]).to eql ?\uf4da end it 'should allow icon to come from Foundation icon set' do pdf = to_pdf <<~'EOS', pdf_theme: { admonition_icon_warning: { name: 'fi-alert' } }, analyze: true :icons: font WARNING: Just don't do it. EOS icon_text = pdf.text[0] (expect icon_text[:font_name]).to eql 'fontcustom' (expect icon_text[:string]).to eql ?\uf101 end it 'should set color of icon to value of stroke_color key specified in theme' do pdf = to_pdf <<~'EOS', pdf_theme: { admonition_icon_note: { stroke_color: '00ff00' } }, analyze: true :icons: font NOTE: This icon is green. EOS icon_text = (pdf.find_text ?\uf05a)[0] (expect icon_text[:font_color]).to eql '00FF00' end it 'should use icon glyph specified in theme' do pdf = to_pdf <<~'EOS', pdf_theme: { admonition_icon_tip: { name: 'far-money-bill-alt' } }, analyze: true :icons: font TIP: Look for the warp zone under the bridge. EOS lines = pdf.lines (expect lines).to have_size 1 (expect lines[0]).to eql %(\uf3d1Look for the warp zone under the bridge.) text = pdf.text (expect text).to have_size 2 label_text = text[0] (expect label_text[:string]).to eql ?\uf3d1 (expect label_text[:font_name]).to eql 'FontAwesome5Free-Regular' content_text = text[1] (expect content_text[:string]).to eql 'Look for the warp zone under the bridge.' end it 'should use SVG icon specified by icon attribute when icons attribute is set', visual: true do to_file = to_pdf_file <<~'EOS', 'admonition-custom-svg-icon.pdf', attribute_overrides: { 'docdir' => fixtures_dir } :icons: font :iconsdir: [TIP,icon=square.svg] ==== Use the icon attribute to customize the image for an admonition block. ==== EOS (expect to_file).to visually_match 'admonition-custom-svg-icon.pdf' end it 'should use raster icon specified by icon attribute when icons attribute is set', visual: true do to_file = to_pdf_file <<~'EOS', 'admonition-custom-raster-icon.pdf', attribute_overrides: { 'docdir' => fixtures_dir } :icons: font :iconsdir: [TIP,icon=tux.png] ==== Use the icon attribute to customize the image for an admonition block. ==== EOS (expect to_file).to visually_match 'admonition-custom-raster-icon.pdf' end it 'should resolve icon when icons attribute is set to image', visual: true do to_file = to_pdf_file <<~'EOS', 'admonition-image-icon.pdf', attribute_overrides: { 'docdir' => fixtures_dir } :icons: image :iconsdir: [TIP] ==== Use the icon attribute to customize the image for an admonition block. ==== EOS (expect to_file).to visually_match 'admonition-custom-raster-icon.pdf' end it 'should warn and fallback to admonition label if image icon cannot be resolved' do (expect do pdf = to_pdf <<~'EOS', attribute_overrides: { 'docdir' => fixtures_dir }, analyze: true :icons: image :iconsdir: [NOTE] ==== Use the icon attribute to customize the image for an admonition block. ==== EOS note_text = (pdf.find_text 'NOTE')[0] (expect note_text).not_to be_nil (expect note_text[:font_name]).to include 'Bold' end).to log_message severity: :WARN, message: '~admonition icon not found or not readable' end it 'should allow theme to specify icon for custom admonition type' do require 'asciidoctor/extensions' extensions = proc do block :QUESTION do on_context :example process do |parent, reader, attrs| attrs['name'] = 'question' attrs['caption'] = 'Question' create_block parent, :admonition, reader.lines, attrs, content_model: :compound end end end pdf_theme = { admonition_icon_question: { name: 'question-circle', size: 20 }, } pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, extensions: extensions, analyze: true :icons: font [QUESTION] ==== Are you following along? ==== EOS icon_text = (pdf.find_text ?\uf059)[0] (expect icon_text).not_to be_nil (expect icon_text[:font_name]).to eql 'FontAwesome5Free-Solid' (expect icon_text[:font_size]).to be 20 question_text = (pdf.find_text 'Are you following along?') (expect question_text).not_to be_nil end end context 'Background & Lines' do it 'should allow theme to customize color and width of column rule' do pdf_theme = { admonition_column_rule_color: '222222', admonition_column_rule_width: 2, } pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, analyze: :line TIP: You can use the theme to customize the color and width of the column rule. EOS lines = pdf.lines (expect lines).to have_size 1 column_rule = lines[0] (expect column_rule[:from][:x]).to eql column_rule[:to][:x] (expect column_rule[:color]).to eql '222222' (expect column_rule[:width]).to eql 2 end it 'should allow theme to add border', visual: true do pdf_theme = { admonition_border_width: 0.5, admonition_border_radius: 5, admonition_border_color: 'e0e0e0', admonition_column_rule_color: 'e0e0e0', } to_file = to_pdf_file <<~'EOS', 'admonition-border.pdf', pdf_theme: pdf_theme TIP: You can use the theme to add a border. EOS (expect to_file).to visually_match 'admonition-border.pdf' end it 'should allow theme to add background color', visual: true do pdf_theme = { admonition_background_color: 'eeeeee', admonition_border_radius: 3, admonition_column_rule_width: 0, } to_file = to_pdf_file <<~'EOS', 'admonition-background-color.pdf', pdf_theme: pdf_theme TIP: You can use the theme to add a background color. EOS (expect to_file).to visually_match 'admonition-background-color.pdf' end end end �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/api_spec.rb���������������������������������������������������������0000664�0000000�0000000�00000001444�14163570564�0020631�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'spec_helper' describe 'API' do context 'Asciidoctor.convert' do it 'should return an instance of Prawn::Document' do output = to_pdf 'hello', analyze: :document (expect output).to be_a Asciidoctor::PDF::Converter (expect output).to be_a Prawn::Document (expect output.render).to start_with '%PDF' end end context 'Asciidoctor.convert_file' do it 'should return a doc whose converter is a Prawn::Document' do input_file = Pathname.new fixture_file 'hello.adoc' output = to_pdf input_file, to_dir: output_dir, analyze: :document (expect output).to be_a Asciidoctor::PDF::Converter (expect output).to be_a Prawn::Document (expect output.render).to start_with '%PDF' end end end ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/audio_spec.rb�������������������������������������������������������0000664�0000000�0000000�00000002104�14163570564�0021153�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'spec_helper' describe 'Asciidoctor::PDF::Converter - Audio' do it 'should replace audio block with right pointer, absolute path to audio file, and audio label' do expected_lines = [ 'before', %(\u25ba\u00a0#{fixture_file 'podcast.mp3'} (audio)), 'after', ] pdf = to_pdf <<~'EOS', analyze: true before audio::podcast.mp3[] after EOS (expect pdf.lines).to eql expected_lines before_text = (pdf.find_text 'before')[0] audio_text = (pdf.find_text %r/\(audio\)/)[0] after_text = (pdf.find_text 'after')[0] (expect ((before_text[:y] - audio_text[:y]).round 2)).to eql ((audio_text[:y] - after_text[:y]).round 2) end it 'should use font-based icon for play symbol if font icons are enabled' do pdf = to_pdf <<~'EOS', attribute_overrides: { 'icons' => 'font' }, analyze: true audio::podcast.mp3[] EOS icon_text = (pdf.find_text %(\uf04b))[0] (expect icon_text).not_to be_nil (expect icon_text[:font_name]).to eql 'FontAwesome5Free-Solid' end end ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/break_spec.rb�������������������������������������������������������0000664�0000000�0000000�00000012051�14163570564�0021140�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'spec_helper' describe 'Asciidoctor::PDF::Converter - Break' do context 'Line Breaks' do it 'should place text on separate line after explicit line break' do pdf = to_pdf <<~'EOS', analyze: true foo + bar + baz EOS (expect pdf.lines).to eql %w(foo bar baz) end it 'should preserve newlines in paragraph with hardbreaks option' do pdf = to_pdf <<~'EOS', analyze: true [%hardbreaks] foo bar baz EOS (expect pdf.lines).to eql %w(foo bar baz) end end context 'Thematic Breaks' do it 'should draw line for thematic break' do input = <<~'EOS' before ''' after EOS pdf = to_pdf input, analyze: true before_text = (pdf.find_text 'before')[0] after_text = (pdf.find_text 'after')[0] pdf = to_pdf input, analyze: :line lines = pdf.lines (expect lines).to have_size 1 line = lines[0] (expect line[:color]).to eql 'EEEEEE' (expect line[:width]).to eql 0.5 (expect line[:from][:x]).to be < line[:to][:x] (expect line[:from][:y]).to eql line[:to][:y] (expect line[:from][:y]).to be < before_text[:y] (expect line[:from][:y]).to be > after_text[:y] end end context 'Page Breaks' do it 'should advance to next page after page break' do pdf = to_pdf <<~'EOS', analyze: :page foo <<< bar EOS (expect pdf.pages).to have_size 2 (expect pdf.pages[0][:strings]).to include 'foo' (expect pdf.pages[1][:strings]).to include 'bar' end it 'should not advance to next page if at start of document' do pdf = to_pdf <<~'EOS', analyze: :page <<< foo EOS (expect pdf.pages).to have_size 1 end it 'should not advance to next page if preceding content forced a new page to be started' do pdf = to_pdf <<~'EOS', analyze: true = Book Title :doctype: book = Part <<< == Chapter EOS part_text = (pdf.find_text 'Part')[0] (expect part_text[:page_number]).to be 2 chapter_text = (pdf.find_text 'Chapter')[0] (expect chapter_text[:page_number]).to be 3 end it 'should not advance to next page if preceding content advanced page' do pdf = to_pdf <<~EOS, analyze: true .... #{(['filler'] * 50).join ?\n} .... start of page EOS start_of_page_text = (pdf.find_text 'start of page')[0] (expect start_of_page_text[:page_number]).to be 2 end it 'should not leave blank page at the end of document' do input = <<~'EOS' foo <<< EOS [ {}, { page_background_color: 'eeeeee' }, { page_background_image: %(image:#{fixture_file 'square.svg'}[]) }, ].each do |theme_overrides| pdf = to_pdf input, pdf_theme: theme_overrides, analyze: :page (expect pdf.pages).to have_size 1 end end it 'should change layout if page break specifies page-layout attribute' do pdf = to_pdf <<~'EOS', analyze: true portrait [page-layout=landscape] <<< landscape EOS text = pdf.text (expect text).to have_size 2 (expect text[0].values_at :string, :page_number, :x, :y).to eql ['portrait', 1, 48.24, 793.926] (expect text[1].values_at :string, :page_number, :x, :y).to eql ['landscape', 2, 48.24, 547.316] end it 'should change layout if page break specifies layout role' do pdf = to_pdf <<~'EOS', analyze: true portrait [.landscape] <<< landscape EOS text = pdf.text (expect text).to have_size 2 (expect text[0].values_at :string, :page_number, :x, :y).to eql ['portrait', 1, 48.24, 793.926] (expect text[1].values_at :string, :page_number, :x, :y).to eql ['landscape', 2, 48.24, 547.316] end it 'should switch layout each time page break specifies layout role' do pdf = to_pdf <<~'EOS', analyze: true portrait [.landscape] <<< landscape [.portrait] <<< portrait [.landscape] <<< landscape EOS portrait_text = pdf.find_text 'portrait' (expect portrait_text).to have_size 2 portrait_text.each do |text| page = pdf.page text[:page_number] (expect page[:size]).to eql PDF::Core::PageGeometry::SIZES['A4'] end landscape_text = pdf.find_text 'landscape' (expect landscape_text).to have_size 2 landscape_text.each do |text| page = pdf.page text[:page_number] (expect page[:size]).to eql PDF::Core::PageGeometry::SIZES['A4'].reverse end end it 'should switch layout specified by page break even when it falls at a natural page break' do pdf = to_pdf <<~EOS, analyze: true portrait [.landscape] <<< #{%(landscape +\n) * 31}landscape [.portrait] <<< portrait EOS (expect (pdf.page 3)[:size]).to eql PDF::Core::PageGeometry::SIZES['A4'] end end end ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/cli_spec.rb���������������������������������������������������������0000664�0000000�0000000�00000010725�14163570564�0020631�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'spec_helper' describe 'asciidoctor-pdf' do context 'Packaging' do it 'should install bin script named asciidoctor-pdf' do bin_script = (Pathname.new Gem.bindir) / 'asciidoctor-pdf' bin_script = Pathname.new Gem.bin_path 'asciidoctor-pdf', 'asciidoctor-pdf' unless bin_script.exist? (expect bin_script).to exist end end context 'Options' do it 'should print the version of Asciidoctor PDF to stdout when invoked with the -V flag', cli: true do out, _, res = run_command asciidoctor_pdf_bin, '-V' (expect res.exitstatus).to be 0 (expect out).to include %(Asciidoctor PDF #{Asciidoctor::PDF::VERSION} using Asciidoctor #{Asciidoctor::VERSION}) end end context 'Require' do it 'should load converter if backend is pdf and require is asciidoctor-pdf', cli: true do out, err, res = run_command asciidoctor_bin, '-r', 'asciidoctor-pdf', '-b', 'pdf', '-D', output_dir, (fixture_file 'hello.adoc'), use_bundler: true (expect res.exitstatus).to be 0 (expect out).to be_empty (expect err).to be_empty (expect Pathname.new output_file 'hello.pdf').to exist end it 'should load converter if backend is pdf and require is asciidoctor/pdf', cli: true do out, err, res = run_command asciidoctor_bin, '-r', 'asciidoctor/pdf', '-b', 'pdf', '-D', output_dir, (fixture_file 'hello.adoc'), use_bundler: true (expect res.exitstatus).to be 0 (expect out).to be_empty (expect err).to be_empty (expect Pathname.new output_file 'hello.pdf').to exist end end if defined? Bundler context 'Examples' do it 'should convert the basic example', cli: true, visual: true do out, err, res = run_command asciidoctor_pdf_bin, '-D', output_dir, (example_file 'basic-example.adoc') (expect res.exitstatus).to be 0 (expect out).to be_empty (expect err).to be_empty reference_file = File.absolute_path example_file 'basic-example.pdf' (expect output_file 'basic-example.pdf').to visually_match reference_file end it 'should convert the chronicles example', cli: true, visual: true do out, err, res = run_command asciidoctor_pdf_bin, '-D', output_dir, (example_file 'chronicles-example.adoc') (expect res.exitstatus).to be 0 (expect out).to be_empty (expect err).to be_empty reference_file = File.absolute_path example_file 'chronicles-example.pdf' (expect output_file 'chronicles-example.pdf').to visually_match reference_file end unless ENV['ROUGE_VERSION'] && ENV['ROUGE_VERSION'].split[-1] < '2.1.0' end context 'redirection' do it 'should be able to write output to file via stdout' do run_command asciidoctor_pdf_bin, '-o', '-', (fixture_file 'book.adoc'), out: (to_file = output_file 'book.pdf') (expect Pathname.new to_file).to exist (expect { PDF::Reader.new to_file }).not_to raise_exception end unless windows? && RUBY_ENGINE == 'jruby' end context 'pdfmark' do it 'should generate pdfmark file if pdfmark attribute is set', cli: true do out, err, res = run_command asciidoctor_pdf_bin, '-D', output_dir, '-a', 'pdfmark', (fixture_file 'book.adoc') (expect res.exitstatus).to be 0 (expect out).to be_empty (expect err).to be_empty pdfmark_file = Pathname.new output_file 'book.pdfmark' (expect pdfmark_file).to exist pdfmark_contents = pdfmark_file.read (expect pdfmark_contents).to include '/Title (Book Title)' (expect pdfmark_contents).to include '/Author (Author Name)' (expect pdfmark_contents).to include '/DOCINFO pdfmark' end it 'should hex encode title if contains non-ASCII character', cli: true do out, err, res = run_command asciidoctor_pdf_bin, '-D', output_dir, (fixture_file 'pdfmark-non-ascii-title.adoc') (expect res.exitstatus).to be 0 (expect out).to be_empty (expect err).to be_empty pdfmark_file = Pathname.new output_file 'pdfmark-non-ascii-title.pdfmark' (expect pdfmark_file).to exist pdfmark_contents = pdfmark_file.read (expect pdfmark_contents).to include '/Title <feff004c006500730020004d0069007300e9007200610062006c00650073>' (expect pdfmark_contents).to include '/Author (Victor Hugo)' (expect pdfmark_contents).to include '/Subject (June Rebellion)' (expect pdfmark_contents).to include '/Keywords (france, poor, rebellion)' (expect pdfmark_contents).to include '/DOCINFO pdfmark' end end end �������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/converter_spec.rb���������������������������������������������������0000664�0000000�0000000�00000021557�14163570564�0022076�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'spec_helper' describe Asciidoctor::PDF::Converter do context 'legacy module name' do it 'should map Asciidoctor::Pdf module to Asciidoctor::PDF' do (expect Asciidoctor::Pdf).to be Asciidoctor::PDF (expect Asciidoctor::Pdf::VERSION).to be Asciidoctor::PDF::VERSION (expect Asciidoctor::Pdf::Converter).to be described_class (expect Asciidoctor::Pdf::ThemeLoader).to be Asciidoctor::PDF::ThemeLoader end end describe '.register_for' do it 'should self register to handle pdf backend' do registered = asciidoctor_2_or_better? ? (Asciidoctor::Converter.for 'pdf') : (Asciidoctor::Converter::Factory.resolve 'pdf') (expect registered).to be described_class end it 'should convert AsciiDoc string to PDF object when backend is pdf' do (expect Asciidoctor.convert 'hello', backend: 'pdf').to be_a Prawn::Document end it 'should convert AsciiDoc file to PDF file when backend is pdf' do pdf = to_pdf Pathname.new fixture_file 'hello.adoc' (expect Pathname.new output_file 'hello.pdf').to exist (expect pdf.page_count).to be > 0 end end describe '#convert' do it 'should not fail to convert empty string' do (expect to_pdf '').not_to be_nil end it 'should not fail to convert empty file' do pdf = to_pdf Pathname.new fixture_file 'empty.adoc' (expect Pathname.new output_file 'empty.pdf').to exist (expect pdf.page_count).to be > 0 end it 'should convert file in secure mode' do input_file = fixture_file 'secure.adoc' output_file = output_file 'secure.pdf' doc = Asciidoctor.convert_file input_file, backend: 'pdf', to_dir: output_dir, safe: 'secure' (expect doc.attr 'outfile').to be_nil pdf = PDF::Reader.new output_file (expect pdf.pages).to have_size 2 (expect pdf.pages[0].text).to include 'Book Title' (expect pdf.pages[1].text).to include 'Chapter' images = get_images pdf (expect images).to have_size 1 end it 'should be able to reuse instance of converter' do input_file = fixture_file 'book.adoc' doc = Asciidoctor.load_file input_file, backend: 'pdf', safe: :safe, attributes: { 'reproducible' => '' } converter = doc.converter pdf1 = doc.convert.render doc = Asciidoctor.load_file input_file, backend: 'pdf', safe: :safe, attributes: { 'reproducible' => '' }, converter: converter pdf2 = doc.convert.render (expect pdf1).to eql pdf2 end it 'should ensure data-uri attribute is set' do doc = Asciidoctor.load <<~'EOS', backend: 'pdf', base_dir: fixtures_dir, safe: :safe image::logo.png[] EOS (expect doc.attr? 'data-uri').to be true doc.convert (expect doc.attr? 'data-uri').to be true end if asciidoctor_2_or_better? it 'should ignore data-uri attribute entry in document' do doc = Asciidoctor.load <<~'EOS', backend: 'pdf', base_dir: fixtures_dir, safe: :safe :!data-uri: image::logo.png[] EOS (expect doc.attr? 'data-uri').to be true doc.convert (expect doc.attr? 'data-uri').to be true end if asciidoctor_2_or_better? context 'theme' do it 'should apply the theme at the path specified by pdf-theme' do %w(theme style).each do |term| pdf = to_pdf <<~EOS, analyze: true = Document Title :pdf-#{term}: #{fixture_file 'red-theme.yml', relative: true} red text EOS (expect pdf.find_text font_color: 'FF0000').to have_size pdf.text.size end end it 'should only load theme from pdf-themesdir if pdf-theme attribute specified' do %w(theme style).each do |term| [nil, 'default'].each do |theme| to_pdf_opts = { analyze: true } to_pdf_opts[:attribute_overrides] = { %(pdf-#{term}) => theme } if theme pdf = to_pdf <<~EOS, to_pdf_opts = Document Title :pdf-#{term}sdir: #{fixtures_dir} body text EOS expected_font_color = theme ? 'AA0000' : '333333' body_text = (pdf.find_text 'body text')[0] (expect body_text).not_to be_nil (expect body_text[:font_color]).to eql expected_font_color end end end it 'should apply the named theme specified by pdf-theme located in the specified pdf-themesdir' do %w(theme style).each do |term| pdf = to_pdf <<~EOS, analyze: true = Document Title :pdf-#{term}: red :pdf-#{term}sdir: #{fixtures_dir} red text EOS (expect pdf.find_text font_color: 'FF0000').to have_size pdf.text.size end end it 'should use theme passed in through :pdf_theme option' do theme = Asciidoctor::PDF::ThemeLoader.load_theme 'custom', fixtures_dir pdf = Asciidoctor.convert 'content', backend: 'pdf', pdf_theme: theme (expect pdf.instance_variable_get :@theme).to be theme end it 'should set themesdir theme with __dir__ is passed via :pdf_theme option' do theme = Asciidoctor::PDF::ThemeLoader.load_base_theme theme.delete_field :__dir__ pdf = Asciidoctor.convert 'content', backend: 'pdf', pdf_theme: theme (expect pdf.instance_variable_get :@themesdir).to eql Dir.pwd end it 'should log error if theme cannot be found or loaded' do (expect do Asciidoctor.convert 'foo', backend: 'pdf', attributes: { 'pdf-theme' => 'foo' } end).to log_message severity: :ERROR, message: '~could not locate or load the built-in pdf theme `foo\'; reverting to default theme' end it 'should log error with filename and reason if theme file cannot be parsed' do pdf_theme = fixture_file 'tab-indentation-theme.yml' (expect do pdf = to_pdf 'content', attribute_overrides: { 'pdf-theme' => pdf_theme }, analyze: true (expect pdf.pages).to have_size 1 end).to log_message severity: :ERROR, message: /because of Psych::SyntaxError \(#{Regexp.escape pdf_theme}\): found character .*that cannot start any token.*; reverting to default theme/ end it 'should log error with filename and reason if exception is thrown during theme compilation' do (expect do pdf = to_pdf 'content', attribute_overrides: { 'pdf-theme' => (fixture_file 'invalid-theme.yml') }, analyze: true (expect pdf.pages).to have_size 1 end).to log_message severity: :ERROR, message: /because of NoMethodError undefined method `start_with\?' for 10:(Fixnum|Integer); reverting to default theme/ end it 'should not crash if theme does not specify any keys' do pdf = to_pdf <<~'EOS', attribute_overrides: { 'pdf-theme' => (fixture_file 'extends-nil-empty-theme.yml') }, analyze: true = Document Title :doctype: book This is the stark theme. == Chapter Title === Section Title .dlist term:: desc .ulist * one * two * three EOS (expect pdf.pages).to have_size 3 (expect pdf.find_text font_name: 'Helvetica', font_size: 12).to have_size pdf.text.size (expect (pdf.find_text 'Document Title')[0]).not_to be_nil (expect (pdf.find_text 'Chapter Title')[0]).not_to be_nil (expect (pdf.find_text 'Section Title')[0]).not_to be_nil (expect (pdf.find_text 'ulist')[0]).not_to be_nil (expect (pdf.find_text 'one')[0]).not_to be_nil end it 'should convert background position to options' do converter = asciidoctor_2_or_better? ? (Asciidoctor::Converter.create 'pdf') : (Asciidoctor::Converter::Factory.create 'pdf') { 'center' => { position: :center, vposition: :center }, 'top' => { position: :center, vposition: :top }, 'bottom' => { position: :center, vposition: :bottom }, 'left' => { position: :left, vposition: :center }, 'right' => { position: :right, vposition: :center }, 'top left' => { position: :left, vposition: :top }, 'right top' => { position: :right, vposition: :top }, 'bottom left' => { position: :left, vposition: :bottom }, 'right bottom' => { position: :right, vposition: :bottom }, 'center right' => { position: :right, vposition: :center }, 'left center' => { position: :left, vposition: :center }, 'center center' => { position: :center, vposition: :center }, }.each do |value, expected| (expect converter.resolve_background_position value).to eql expected end end end it 'should expose theme as property on converter' do doc = Asciidoctor.load 'yo', backend: :pdf doc.convert (expect doc.converter.theme).not_to be_nil (expect doc.converter.theme.base_font_family).to eql 'Noto Serif' end end end �������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/cover_page_spec.rb��������������������������������������������������0000664�0000000�0000000�00000020025�14163570564�0022166�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'spec_helper' describe 'Asciidoctor::PDF::Converter - Cover Page' do it 'should add front cover page if front-cover-image is set' do pdf = to_pdf <<~EOS = Document Title :front-cover-image: #{fixture_file 'cover.jpg', relative: true} content page EOS (expect pdf.pages).to have_size 2 (expect pdf.pages[0].text).to be_empty images = get_images pdf, 1 (expect images).to have_size 1 (expect images[0].data).to eql File.binread fixture_file 'cover.jpg' end it 'should add back cover page if back-cover-image is set' do pdf = to_pdf <<~EOS = Document Title :front-cover-image: #{fixture_file 'cover.jpg', relative: true} :back-cover-image: #{fixture_file 'cover.jpg', relative: true} content page EOS (expect pdf.pages).to have_size 3 (expect pdf.pages[0].text).to be_empty (expect pdf.pages[2].text).to be_empty images = get_images pdf, 3 (expect images).to have_size 1 (expect images[0].data).to eql File.binread fixture_file 'cover.jpg' end it 'should create blank page if front or back cover image is empty' do pdf = to_pdf <<~'EOS' = Book Title :doctype: book :front-cover-image: :back-cover-image: == Chapter text EOS (expect pdf.pages).to have_size 4 (expect (pdf.page 1).text).to be_empty (expect (pdf.page 2).text).to include 'Book Title' (expect (pdf.page 4).text).to be_empty end it 'should create document with cover page only if front-cover-image is set and document has no content' do %w(article book).each do |doctype| pdf = to_pdf %(:front-cover-image: #{fixture_file 'cover.jpg', relative: true}), doctype: doctype (expect pdf.pages).to have_size 1 (expect pdf.pages[0].text).to be_empty images = get_images pdf, 1 (expect images).to have_size 1 (expect images[0].data).to eql File.binread fixture_file 'cover.jpg' (expect extract_outline pdf).to be_empty end end it 'should not crash if front cover image is a URI and the allow-uri-read attribute is not set' do pdf = nil (expect do pdf = to_pdf <<~'EOS', analyze: true = Document Title :front-cover-image: https://example.org/cover.svg content EOS end).to not_raise_exception & (log_message severity: :WARN, message: '~allow-uri-read is not enabled') (expect pdf.pages).to have_size 1 (expect pdf.find_text 'Document Title').to have_size 1 end it 'should recognize attribute value that uses image macro syntax and resolve relative to imagesdir', visual: true do %w(block inline).each do |type| to_file = to_pdf_file <<~EOS, %(cover-page-front-cover-#{type}-image-macro.pdf) = Document Title :doctype: book :front-cover-image: image:#{type == 'block' ? ':' : ''}cover.jpg[] content page EOS (expect to_file).to visually_match 'cover-page-front-cover-image-contain.pdf' end end it 'should resolve bare image path relative to docdir', visual: true do input_file = Pathname.new fixture_file 'hello.adoc' to_file = to_pdf_file input_file, 'cover-page-front-cover-image-path.pdf', attribute_overrides: { 'imagesdir' => 'does-not-exist', 'front-cover-image' => 'cover.jpg' } (expect to_file).to visually_match 'cover-page-front-cover-image-path.pdf' end it 'should scale front cover image to boundaries of page by default', visual: true do ['', 'fit=contain'].each do |image_opts| to_file = to_pdf_file <<~EOS, %(cover-page-front-cover-image-#{image_opts.empty? ? 'default' : 'contain'}.pdf) = Document Title :doctype: book :front-cover-image: image:cover.jpg[#{image_opts}] content page EOS (expect to_file).to visually_match 'cover-page-front-cover-image-contain.pdf' end end it 'should stretch front cover image to boundaries of page if fit=fill', visual: true do to_file = to_pdf_file <<~EOS, 'cover-page-front-cover-image-fill.pdf' = Document Title :doctype: book :front-cover-image: image:cover.jpg[fit=fill] :pdf-page-size: Letter content page EOS (expect to_file).to visually_match 'cover-page-front-cover-image-fill.pdf' end it 'should not scale front cover image to fit page if fit is none', visual: true do to_file = to_pdf_file <<~'EOS', 'cover-page-front-cover-image-unscaled.pdf' = Document Title :doctype: book :front-cover-image: image:cover.jpg[fit=none] content page EOS (expect to_file).to visually_match 'cover-page-front-cover-image-unscaled.pdf' end it 'should scale front cover down until it is contained within the boundaries of the page', visual: true do ['', 'fit=scale-down'].each do |image_opts| to_file = to_pdf_file <<~EOS, %(cover-page-front-cover-image-#{image_opts.empty? ? 'max' : 'scale-down'}.pdf) :front-cover-image: image:cover.jpg[#{image_opts}] :pdf-page-size: A7 content page EOS (expect to_file).to visually_match 'cover-page-front-cover-image-max.pdf' end end it 'should scale front cover image until it covers page if fit=cover', visual: true do to_file = to_pdf_file <<~'EOS', 'cover-page-front-cover-image-cover.pdf' = Document Title :front-cover-image: image:cover.jpg[fit=cover] content page EOS (expect to_file).to visually_match 'cover-page-front-cover-image-cover.pdf' end it 'should scale front cover image with aspect ratio taller than page until it covers page if fit=cover' do pdf_page_size = get_page_size (to_pdf 'content', attribute_overrides: { 'pdf-page-size' => 'Letter' }), 1 pdf = to_pdf <<~'EOS', analyze: :image = Document Title :pdf-page-size: Letter :front-cover-image: image:cover.jpg[fit=cover] content page EOS images = pdf.images (expect images).to have_size 1 cover_image = images[0] (expect cover_image[:x].to_f).to eql 0.0 (expect cover_image[:width]).to eql pdf_page_size[0].to_f (expect cover_image[:height]).to be > pdf_page_size[1] (expect cover_image[:y]).to be > pdf_page_size[1] end it 'should position front cover image as specified by position attribute', visual: true do to_file = to_pdf_file <<~'EOS', 'cover-page-front-cover-image-positioned.pdf' = Document Title :front-cover-image: image:square.svg[fit=none,pdfwidth=50%,position=top right] content page EOS (expect to_file).to visually_match 'cover-page-front-cover-image-positioned.pdf' end it 'should use specified image format', visual: true do source_file = (dest_file = fixture_file 'square') + '.svg' begin FileUtils.cp source_file, dest_file to_file = to_pdf_file <<~'EOS', 'cover-page-front-cover-image-format.pdf' = Document Title :front-cover-image: image:square[format=svg] content page EOS (expect to_file).to visually_match 'cover-page-front-cover-image-format.pdf' ensure File.unlink dest_file end end it 'should not allow page size of PDF cover page to affect page size of document' do input = <<~EOS = Document Title :front-cover-image: #{fixture_file 'blue-letter.pdf', relative: true} content EOS pdf = to_pdf input, analyze: :rect rects = pdf.rectangles (expect rects).to have_size 1 (expect rects[0]).to eql point: [0.0, 0.0], width: 612.0, height: 792.0 pdf = to_pdf input, analyze: true (expect pdf.pages).to have_size 2 (expect pdf.pages[0][:text]).to be_empty (expect pdf.pages[0][:size].map(&:to_f)).to eql PDF::Core::PageGeometry::SIZES['LETTER'] (expect pdf.pages[1][:size]).to eql PDF::Core::PageGeometry::SIZES['A4'] (expect pdf.pages[1][:text]).not_to be_empty end it 'should import specified page from PDF file' do pdf = to_pdf <<~'EOS' :front-cover-image: image:red-green-blue.pdf[page=3] content EOS (expect pdf.pages).to have_size 2 page_contents = pdf.objects[(pdf.page 1).page_object[:Contents][0]].data (expect (page_contents.split ?\n).slice 0, 3).to eql ['q', '/DeviceRGB cs', '0.0 0.0 1.0 scn'] end end �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/dest_spec.rb��������������������������������������������������������0000664�0000000�0000000�00000003202�14163570564�0021011�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'spec_helper' describe 'Asciidoctor::PDF::Converter - Dest' do it 'should define a dest named __anchor-top at top of the first body page' do pdf = to_pdf <<~'EOS', doctype: :book = Document Title first page of content EOS names = get_names pdf (expect names).to have_key '__anchor-top' top_dest = pdf.objects[names['__anchor-top']] top_page_num = get_page_number pdf, top_dest[0] top_y = top_dest[3] (expect top_page_num).to be 2 _, page_height = get_page_size pdf, top_page_num (expect top_y).to eql page_height end it 'should define a dest at the location of an inline anchor' do ['[[details]]details', '[#details]#details#'].each do |details| pdf = to_pdf <<~EOS Here's the intro. <<< Here are all the #{details}. EOS names = get_names pdf (expect names).to have_key 'details' details_dest = pdf.objects[names['details']] details_dest_pagenum = get_page_number pdf, details_dest[0] (expect details_dest_pagenum).to be 2 end end it 'should keep anchor with text if text is advanced to next page' do pdf = to_pdf <<~EOS jump to <<anchor>> #{(['paragraph'] * 25).join %(\n\n)} #{(['paragraph'] * 16).join ' '} [#anchor]#supercalifragilisticexpialidocious# EOS names = get_names pdf (expect names).to have_key 'anchor' anchor_dest = pdf.objects[names['anchor']] anchor_dest_pagenum = get_page_number pdf, anchor_dest[0] (expect anchor_dest_pagenum).to be 2 (expect (pdf.page 2).text).to eql 'supercalifragilisticexpialidocious' end end ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/document_title_spec.rb����������������������������������������������0000664�0000000�0000000�00000004776�14163570564�0023112�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'spec_helper' describe 'Asciidoctor::PDF::Converter - Document Title' do context 'book' do it 'should partition the main title and subtitle' do pdf = to_pdf <<~'EOS', analyze: true = Main Title: Subtitle :doctype: book body EOS title_page_texts = pdf.find_text page_number: 1 (expect title_page_texts).to have_size 2 main_title_text = title_page_texts[0] subtitle_text = title_page_texts[1] (expect main_title_text[:string]).to eql 'Main Title' (expect main_title_text[:font_color]).to eql '999999' (expect main_title_text[:font_name]).to eql 'NotoSerif' (expect subtitle_text[:string]).to eql 'Subtitle' (expect subtitle_text[:font_color]).to eql '333333' (expect subtitle_text[:font_name]).to eql 'NotoSerif-BoldItalic' (expect subtitle_text[:y]).to be < main_title_text[:y] end it 'should not include title page if notitle attribute is set' do pdf = to_pdf <<~'EOS', doctype: :book, analyze: :page = Document Title :notitle: body EOS (expect pdf.pages).to have_size 1 (expect pdf.pages[0][:strings]).not_to include 'Document Title' end end context 'article' do it 'should place document title at top of first page of content' do pdf = to_pdf <<~'EOS', analyze: true = Document Title body EOS doctitle_text = (pdf.find_text 'Document Title')[0] (expect doctitle_text).not_to be_nil (expect doctitle_text[:page_number]).to be 1 body_text = (pdf.find_text 'body')[0] (expect body_text).not_to be_nil (expect body_text[:page_number]).to be 1 (expect doctitle_text[:y]).to be > body_text[:y] end it 'should align document title according to value of heading_h1_align theme key' do pdf = to_pdf <<~'EOS', pdf_theme: { heading_h1_align: 'left' }, analyze: true = Document Title body EOS doctitle_text = (pdf.find_text 'Document Title')[0] (expect doctitle_text).not_to be_nil body_text = (pdf.find_text 'body')[0] (expect body_text).not_to be_nil (expect doctitle_text[:x]).to eql body_text[:x] end it 'should not include document title if notitle attribute is set' do pdf = to_pdf <<~'EOS', analyze: :page = Document Title :notitle: body EOS (expect pdf.pages).to have_size 1 (expect pdf.pages[0][:strings]).not_to include 'Document Title' end end end ��ruby-asciidoctor-pdf-1.6.2/spec/example_spec.rb�����������������������������������������������������0000664�0000000�0000000�00000005605�14163570564�0021516�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'spec_helper' describe 'Asciidoctor::PDF::Converter - Example' do it 'should keep block together if it can fit on one page' do pdf = to_pdf <<~EOS, analyze: true #{(['filler'] * 15).join %(\n\n)} ==== #{(['content'] * 15).join %(\n\n)} ==== EOS example_text = (pdf.find_text 'content')[0] (expect example_text[:page_number]).to be 2 end it 'should include title if specified' do pdf = to_pdf <<~'EOS', analyze: true .Title ==== Content ==== EOS title_texts = pdf.find_text 'Example 1. Title' (expect title_texts).to have_size 1 end it 'should include title if specified and background and border are not' do pdf = to_pdf <<~'EOS', pdf_theme: { example_background_color: 'transparent', example_border_width: 0 }, analyze: true .Title ==== Content ==== EOS title_texts = pdf.find_text 'Example 1. Title' (expect title_texts).to have_size 1 end it 'should keep title with content when block is advanced to next page' do pdf = to_pdf <<~EOS, analyze: true #{(['filler'] * 15).join %(\n\n)} .Title ==== #{(['content'] * 15).join %(\n\n)} ==== EOS example_title_text = (pdf.find_text 'Example 1. Title')[0] example_content_text = (pdf.find_text 'content')[0] (expect example_title_text[:page_number]).to be 2 (expect example_content_text[:page_number]).to be 2 end it 'should split block if it cannot fit on one page' do pdf = to_pdf <<~EOS, analyze: true .Title ==== #{(['content'] * 30).join %(\n\n)} ==== EOS example_title_text = (pdf.find_text 'Example 1. Title')[0] example_content_text = (pdf.find_text 'content') (expect example_title_text[:page_number]).to be 1 (expect example_content_text[0][:page_number]).to be 1 (expect example_content_text[-1][:page_number]).to be 2 end it 'should split border when block is split across pages', visual: true do to_file = to_pdf_file <<~EOS, 'example-page-split.pdf' .Title ==== #{(['content'] * 30).join %(\n\n)} ==== EOS (expect to_file).to visually_match 'example-page-split.pdf' end it 'should not add signifier and numeral to caption if example-caption attribute is unset' do pdf = to_pdf <<~'EOS', analyze: true :!example-caption: .Title ==== content ==== EOS (expect pdf.lines[0]).to eql 'Title' end it 'should allow theme to override caption for example blocks' do pdf_theme = { caption_font_color: '0000ff', example_caption_font_style: 'bold', } pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, analyze: true .Title ==== content ==== EOS title_text = (pdf.find_text 'Example 1. Title')[0] (expect title_text[:font_color]).to eql '0000FF' (expect title_text[:font_name]).to eql 'NotoSerif-Bold' end end ���������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/�����������������������������������������������������������0000775�0000000�0000000�00000000000�14163570564�0020367�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/TuxTheLinuxPenguin.png�������������������������������������0000664�0000000�0000000�00000053171�14163570564�0024673�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR���������L$���gAMA�� a��� cHRM��z&���������u0��`��:��pQ<���bKGD������tIME !:+J4E��U}IDATx}yUsL� $vEVA;u*^q*" Eٷ&&}'-߯~ky;I&dI&dI&dI&dI&dI&dI&dI&dI&dI&dI&d-S]e:'@S�D'P<�f/̎.E)8 '' f&n o�fA_|3�86|t%=;`&(C|nj%0@] 0@݉o% OaxCv=2LXҺ/P2%df0V]�ϮN$9!+�~xJKD CGe冘16)-�^?`B@J TrH)!h<30-mi)R?23 XbXB��0D}A Ch 08 eoMDxx~hY,˂rmJ)�@}j:�xJ�d0dpqr9E yyض ) � `Ddf[�}ٕ,ۍAJPȣP(@J0 QV#S �kBЛ] 0PE@ʥ#h�۶m $f1_3dm*%WHض1ڥb\eAf FCcb'B"g.Ev H&f5<ٲ,ض ˲`Y?*<1`|1&ڗbfhk+@$ H�b�.q3:f0}R\.\R<A�f]!gW93L\5A�u!Jhy<Jj.P?dW;heW"<&_T!A(^e�f !!p8.ysWގ U4vK]ZueqJlפr0 ͮz%;C)_qD0Dx,KE} ":LMG Ld6' `.ds9޲FiNï٥(<yq# kA [UE�2d"#&ɶd8�x1[)[6;CY{gTBf$j6#o̮~fW!TD؆hYȪ33 3t ,qqc}R cPȣX, 'ˣ]Ró5ddwt2[|q�p* ꨴ 3-ld+cJbx]Tn9vADM1|ض|V#aY 2 t</LSeòDT*<&LuT~ZZ 0'[``F=Q} FE9 rZ|R [_WIKDT<i0+jȼd[/B}Wӧu{::k3nX~=pe%ngg' Ę|RzrrRj#oj4̘̐31wego~}AٖkQҥS^ 86lۮ+;ːmF>W\/:�JI0#ӌ0R0kŐIl#�ڊB 8NR 03>H<Jlܸ.~vS�u8Nr4{|Xf xIhue#l5dqw㭰,6OA[[ZZJ p]\p:::,jR3x*ʠ8.)Srxz 2J6T0 ϲ,PʊP9sR`faӦMxя~ħEwZb=>`ܹ蘂|>:qWWUT*Tfp]_pDM- 0CU0F)rmm6̙:3fL߂Ѭqxې>qԩXl-;ӦMkd1�ZuqFjxS;1|<쳣%"Ӳ>% Jc{�c'Eċ?C̓N:˗`mݎxgs9s> DZQVq0s{2 3DѕF3X,Nҥ�* obŊ`=vyսā|xx"j\o˨T*Ɉ>_җp�ZZ8exGQT$uɐDJyu]ǞWev vaO:o:;/p{5;n,bqkk;Ϛ5,؍͛ϻ:oy<}!}`*̜QIҀKӟw}/(hmm88sOֽg%]wݍ~ki #ˡӦMGKK V\u .ĢE GI2 fV�xp7uJ.砥j|u{8)`b…Xt?brf]=86J\.?3v-d` �LRME(i_ V<T`9B`ڴhoo& v(f͚k#cfwyЇw͛SN Bgh[&s 0Cwr,M60c*_N@t 7&a Zk_?V\UV+ŢE CԍXz5z{{�TzqFtuu'ilK6daۋ ]<@i}Wf�0 qͷςGQj][_Afu d7GCW^yaX,&Xn^jr?ᏱvYXv֬Yo9�.diy 07hJ5>xGׇ~Q;@`E h+ a-</=֏5/?̘1=]9mݓA^ ZIfj0k֬{}[LGG'6nX__q>~ri`�t D$sO>{z ^~%mmm,MxQ`%d(RSOu=aw]5kVUFȭ<_p=9XnA zM>[Fi8吟>Jַm`<oԍB2�3Da?O<nT. ~$L,{#_t+:KTv}}6wm>N `nC+ߍ3^O|«-wuW|N2+*nֱj+ۖ 0Ce$uq]v~T./_ ��N;B/[(::l침?{-._$ i߄_Ř9mekŸ!ϣ\./5F_"ڮ"c@}e˖+3}V+}EP --$S*} B dd$s  �� �C3s뛊p'q0#;E]<F�Ap{fg2{pm#! L sf>4@=LHF'qK8x/6 0X>1;ܙ-8^,_~(tŞ!AH@HJ !'a@A">, G>p7EşТ ]}W_&^Z$Xxş`2 `` V<x';:"DH` H iChH b=s2f<3X?WxeC0f׌eU^ Z�>~&# DD 0hC_q'k"G1s 50!kyɆ,^:Gf| ߄@p(@X`c뜀F�U+·CY# 0CjZ;¢94 ~A$6 CCvM?pU]=8r113 Q2'r(TإJ""*FKA�E�8Q�pf_Obj+0 h-0ymO# l-djDS lEad[z :J#gRPe[5&+}^ 2 tY4]!iޘ9`�ʸ=(o0Z 8^u Ȧ*gt Xad� 0+u!zK?,fl'yGCEݽʗdk=0o�֤;%GGbnGDXŬX`heZGL)SZR`["CA@YEe }ir"":>[2d%sx4Sh+r! @,$@L `�8K6oҸ~x=!�XI �*U3k/TT\DP.Q.JxL8Z2�DC"Y(@Ю�Ӳ7�7jl>m 8?H $(j$5A� G ăƴvB{P,�EPAfci [5l�8K{{:;;ކB�T)BГxLkVSpAZl{l\n` "#o#_|?cΛ7{aj+@G�~,>F\O/�ƶmEcNL2%69HR<ϋ"-F2NXfHb9DF[ ~326obJ[TeC#lĽwl@+e怩BKpl%V'X_ðs_,+d% b B>5OBDfdDb6[+.,Byw= 칛)mtw*clX[E B>G;pC D^oWWċ| Ef:CPQGQwVUfF.CXĠ�i'f�lZ&Ф+�̌ٳg[`o=*c?C< !_�J-|q33|/DB #̘b4HNcV %eBIqLr؎ǽ3Qͽ m5PfFYO?w}V]% -X䌇45RApsL>e& V\SEKJ( %+OP$>hpuP]_^`d;(?3j܌:WJN~C7@R "r9C>CXDP!> L&b G;!Xp~)׌!HE`PB CYXɧ\: |m;m+Tg˲҂N8]w]R1 @ZEoo6m* /D{78$k 0eΏ|!˙߮_W>Z!vm�KJDY=tn9eZrfdԴ2L ?\\ 1i>vǁAHo2dRs%JytL])<eE5oF#Q} Z3�.CE`1 N(@22І\._7v<L"ҥK׼~{-㢧+Q.!D]]][9;|6Ox)L&NLi:;;R e!r9[r1*0|PhII:KFU1}Cu,A1g4J X8(H)rbMs%L R ޭK k!kU 5;Wt�~˫P.Nufx>;ɔV4%KR͠g|9!xlہ8Vݷ"_i)I'$uk gg μ;p1G%\Lb�C.wv&�/0=P5*a!g u||а1SGbX|4MJ]vXfwef]Nd5 ˖-fQO# �=xEGطu8�d!Kj eYɢeNIkDZSڥ|Jn?HwߘwLڠu0@9)BhٳgcŊ~D uq3A2LFTp2kU-ciwr#XA?ox}R`vF&FcDwG(9e_pu]cDV</) oCE]3cp M:lI &vĶ2T4͌lV"Ƀ/~;dX线jUh Q۶SvSFN!gWX:�}Uny@ȪB\}n ,ΘfJZ4>?"E-A`-Vm… q-4MjR+3,"�XRJLډg�\p^S Z0uLFǨ)Pb%W1`hk$`e֬1?8Y_T̆$z0.8(S -BɄQky<56g0Lh7S,FÍ1ȁ+`l~uLF@:J)?^#mYY҉i;%_ͨW~V4ߴ OZ*=Ogf3glqy|kB?Z'ncy^qKe9R:&6NӉ )˘?l޼y[ڗ^`ӎVvz #<miX|{q@Bl SH;,iR*FcEŲ,Yw6df1>3w{]5IuGx X˶SWx tȶ<џ:Ҏbvlo�/X&bڵ5?M kO<?G}QJ" gl [z…yhҩ4ILͶfINj֯߀o|t=(3?ҭ=磌~:k<>F=Sۚ��3|f_le,wП쒎B`ɒXmOhI9&9{2ӕCݱ pp10<QG5&� 0[Z"#mkO>}:?1_lA`I裏'DWN0BX?Povccg{%MktuGlSGCs!fbC�z?3d),vC+c 4oBiJ6uT,^h<MPLar\8uT,\{Fj)XG*2߿>=~kFқB%KnxL30 o�e[\ٰp _LlQoM4j}@B$e}34X K[ =H0/�}:v"=� ,X0p#[ iX󛁥hҟLLϠ-}QJckc3lz'3{ٳy~Wi^_[ZDi[Vi-xmlp %KP*0TceBM_eCE%2x1S[w4fBoɰ~je#jcgP1kooW4k)0J`;7+�5#y_2vu^-ƅl7m>xhPiYwcX`nޓ5)062&?`Gu$v}Fum2hc3-g:9~m{SԉfkATjK,A뮿=ߔ-( Q  A0?3v<#_D\ހ׿… Sêk7F#Ql59}3kGi˟Yȣ:wu7Tpmmmxji51Ghɗ%�[TҮȲ,lܸ j~kŸ+8ΒcnƜXĕc#oѐOjK}'wՌ;lڴ z^y啦_,`Uj9jhhl F%п"03&�;t<1vu1Uַs5Q Ԫ4il\[j橯ꌿ Rv]immŋp6|qH)0mTX}>% G~}&١�C> `=Xr(Jho0 /xE]O? |6k,3_f�jn t:ĠB`=O<zjEWW7f̘B?`\w=!mPiX[[+ۧP㡇Fu/;w6nfJQ.n-ybw1.6n܈Kڐ`SӋnR1=0pu&hF(fE|TjA{LҎ'|_eXdIB ,yukKV.nmmwsÆ , 3fLh4D!Sk܄q*(5RB!۰nztuuxaSO=u�X02=l4Բ$-=3g}PYZ /mhmmGKKKpι C'a"U[J@.ã>: !_s̮6Qxhi;er( [iS)`7oFKK Lija1މpv 3Ҵ P( mmmxiZ8 ,]d˖MEmZ o+L}:::1s,L'Dhm-|D8Ju^aGgXkk::@kbpUWbΝ,[6Sp/20yvӓg5F͛`|�b@ 03 3f qRZyQ*O6};v,Zǘ;ƙ ʹE]4|ů蘂9s`Μ92B_BXDKpk!Bz@fl$b86 >lذv䒏KLd&=]1x"}uTjA`֊ٳgch+WQZcC^ 0cCNFDv)(xg欳)Xwwk4m{Io6fΜRJJ-={6Z[K+s=9Gr,9fhMVXp"\ڵ.~(n4f NH\|ӧOJ}}}p]`۵_|BhRA5v) `F'%"\c  ~yyWjmƲq"9қ̴ip!@Rlys֭[W^YkaӦuA`ɘ۶y^iLe)�cm;s}a]t89"&7X"'t^A7D. H(\ook_ԩI0`xCcV]VZٳg'<.@ٞMKN<D�@\/ڵknzlܸ ֭ǺuQ.^q&0s9=vԑ7Ob cGĩ|H�xM_w}X>72u߭FOOOR21|Op[aŅ@B/b?!=w|<; k t03 oܝԧ]$VӁw,6/{0qˎi.]:הI< [alb�8*6lM_so3Ѳدq]#G(e 0C<wc/&XYK/5.J)tIFȲd5xĀaFk]�fX.瀈ysW~w 3Ȃuc~ SdLKb:[,=S3:#z(-΢ 0[.SL՝oذaЋr)DZf](/288ֵjI=˲~}s߾e]ɶswGMs:(ֵXk:?ݪR4}am,fmۊm\!̖2lZq z}FӰI֤Q'f퐩2)�#0-i�Xlv;KaZ8 \ߨZ�g 0GdTW*5̼y0w\d2�+e0@)�[@ɡn2A 0R P# Q_Z^fx/IFK㴲-Iٌ'b4LvItaniq.\v;Ss^[R2) j`j2 [R6GFA5I0m`Ae�L2!ѤKH $,Nz|QS&0XQS3i蝃Ųj8Fu׹2.]I2<χ 0�dRh^j`ⶰ`d|u!=oʔvoXD1)& Ìj93.s&oLWWӁ0 q a÷�̘Q0/;l޼y6@[[+|?yQӌQk("Jlz"뺨T*(+V+5~OGGG 0Cc�"Ѧ�;޿u"0S5F<J==va~ޘC'wfiu35q䣣x)0[1 }r=FWWuN9ɦM++VA9v@gS(AQD׆ڶEaÆ`=e_KKSNCoo/0--fZuZn<c+g7ly/Cn83f`ƌXv,a3x͛B! ||R y.*7�Gďg1 "$KƊg h=Ӌ\.w0(32yW|>jwu)@DQ@)[!6l؈W^y6mj 0�VO{ | O6oRxy[ pݽUXVoүկ>dHLƞYYfuQ4ߋ-d$T,?(x&Q(Zܹsnz<䓍'�;!2ćO>DGazqX,R8z«~ /r 8wRfN2u)ww=m4hJ)g"vGb�ӓmFKK 6nܘ[%9S|],-e&(I7$"̚ w@aUtTqMzru7;4U>XVp]%Eks] 13 !jLFWWwzJ>j( ((Ő �b hMdv]f0~2ƦM* zzzַw0{ld2L!HA҆UBǾ(9O?/$@) u ,ƌ6,B礒l{0/=_'_{ 90r9 j A=5}qS.vm>n,Zcjc/ ixŕ"@| "#ITJPȣSLAKK 0͛fMᯈ0 |J%B0�dHAPyA>vVZ9skqb']V㩛>�E8S`8y Ӱ,;(B̜ExK'6pcj8dZ=EZiGuoRL8!}K(B4.e!xR:KFJ x G[֭[׽xtMV Edέ4dBB ~BFSbfxr^r?dd_ {bi0륤$1bADb0C5##|] Lqg+~8nٸo�PX &$55!^Zzg 5\ClО^XWIb|#ryvZ d 4E r"((l#\v@!6 2ƞB �|HP(>W%6v>VEeRZu%"u_R\P|%1SJ@-9je$o:O Ѩʛd�LA5t5C@ :':T`_S4jQ j^twwcE\^496J�! ۱T u9[,2!�)$bN�ATo;s:_+"֭[7&e&Pq5U 0 hؗU*X{l7>*Ph4<𡯶[mpUtj*�LKC1Yh&(+! Ν\SL�&, JEW/x˗9׻pGk~;&INT=CXFlɀGKp\_&ڱ#mX @@ 4j!4\�3 0̠?S EZP $r" LlBLV5[DjmոX� U1.~=76><?H|{[1DK VIdr XÜTfcϹ?ZpQd8$ 4n3MƄܿ~%kG iqypB!m y,;\s4 E/ Rl-zd@�'G8D[K^VqSK"03i,krHZ<ѡq/[<-[JQ>$%LCH$ -̟4y(?),s|Q3 y g$!##m"X,ЌJcۇPe?ϕ[|fW83Tv;$M`UU09p[2QE;h®$Vy%|b]$VH}�ڝxefr':r9B.o@9#`mh ~!a ~⬪yq\FH@ R@.GX'lzlr<S% ,uɉ9 D̜kcH|<(WԢ9gpq50<bsEI8GIKm8&ѭD9CB,<,"BbĨ1Ƒ`N;mo‘G3Xj eA0&0GD$>uF5|Zp99.i~{H{D0SP_Ja\@3\;/H|ڲ'#`0J&mh2VB}:0c|  iwuq²,v)_,1.8 CT6>ppM,ndܑXM2B )p zylK2cr9y ;'lGSf}88-ʸX3uo?v %B),@JzoYV*?nz`j$f7!ƈslfaB2�er98x/_-p@g>9<?~oÃ&QӤ 'ׇj ԴK2BEeߐۏa<23Cf]@[A` }KjD6N!l$"#_ sITkA'O0^H Cݒ!�Q턧c&  X ` % X#w:@_ehwbgp5Ƽy{*@:k8NsSi[D20h(WUr ƴ) Wh1DH0!H(i Gض)a Z^)!tHJÃӏկM>/IllaT9<W?>+W>] Q/>$ܦK E@6^мcB&qٲaR^7C17Oh_*#S]jW$p&nHc}xॗ^qǝ~`,fY`:FҎ�i:n*@儉y[kgl6J@ a);P@5ZM�J (E/+m &,`\..5;eB4D"coX"|' 8眷ɫAX @se/ȭhVBRBkRRB)zX%K-ߘ9(PndnFIϗ"7!Ò_`>5aA'tO�R4%L(_�]ଣA|Nz-_O8^{IԊ:;R(?4%R\KKs@LnmOhFk3IgGiR3"n1rBp)xo!@HtSj#mklF+4MV|, )1(S#>ӀRUTe XndZC\„P 5*|LuZ1�rO "HD 1,ES 8mCqߘ5 /ebr fqfc_2괃()P αj3hb͔CSeVNb߈(fJ=u̝01q L,L0#?Mƭ)"Vل\#7<~,߽>b 9`\l94EƖ%$@Qи8_<+Ugkmtr )�\ RZ'`DiPR7s ?aժvIG{ӦXfIPY蓐d2#WPd.&-舞% "neyֳ<(R@F`lBhΜ_m� XCBPN#L_dY0R BXHÇ{z&--ky&rDNL:<Y5JV8fibC1 RJT:,j!E"Xʚ5]_FyF4, ,v%3[Hxߛچ"̙'͛pŪUϢओ/kG\K2qT0RP5S ĒAJQ8f6d�b-%ےu:g?𝎕]޶vLZc30L{&‰Jg`;ΩOu×T*Mj Cd&!ʕ��y'JZ j-Q.2IM"iqIՆACB"Ш~*Ԃ0ewH2GOܑ<d#GLr1 wOR g&9Xׯ;y.y_K/SY:ALg>O1ehZbF&I)W X6[?_z99 E5w?mj&DPTJlB|,eY>UWƛV_+[Kq:J˼M3FNfd0 )@%^_zqXt5#p�ŒNWӊR5---8o.<v}>/nzjELI?;xis/ZB*~҅CQwav0Dmצ/gNXDi21B"4cv?nޙsna޼]`Y&<8̳a )bڸEk5J)2 #3Ply)@Å�~0.A($Ǭ8wkKwz"]Kڸu5Ey8pٹQo;q>rÙ0ZgK-ABWLƉ@c0'0dT0@# 0ЦMf�Q2V  ^ٛ%EPI;xKGw?9缭,YEE>Պ-J!GY& ahJ@# P,} `:ʸF& sQ8~ҔS 㖌 3,#*騖7OZA|\|{:hz;%cPOy|@Щ ƻ%j6~5  =<F< g># �ϗxlzhMQ03nfs�=kR饗pVW*"j@jtfg"SkI5[2t H|4<7unUí24|].0.tS =K3Eĥ2*$Gu@z䊻z8Cq]wS1XS6v%v*< FD3a Պ@, ?}Qu5nJUjTF\O_"q靖$cn/8Xh#، \qۄ-?SN9'lP:jx# Rk{,9I)h 3f#h9hr(Uj% Q.ksTFcx.}|/%y/\@c&hr1Qаw�[iQ?ᦛnҥk_GldlHR &+5@1TKo]jyFp+atQ)k+!}FQTeT]7fJ|ZnVaR~ b2hml׳_mBd{9|Co{hK9b-#`B ܴ`G !k@KXl2y4@3x�fvՀr7?53lDw!dǑUΝ$&.7{`+p8z^zzzw^1w޻> ,�QInXTVYiEΓ8-.f|ܿ!|?_5ZM#*CˑF)3!C55+rV1~#Y0PfMCr9Jd�vRI K05oP X~C?}?9n_3 Cz8㠃W^9.6`JKGҫI= 0_(iۤ 2?Do9D__(W5+Ÿ*\V:s4lJv%ř@pbMCBAHPa<(-44Lzq[RQlFE�fw�k6`%8qqaePj솼evmpM7˘L) T>66 /V;P‘8Bi/ >2'Z 8aDB2<@ T+0&K}5y +NB3r/7&F]&@P2Эq3Dָ.pa#+#+pe_A{{;<H,Y*b,^7s!lwp]?$`ŊX1{ィT*wOof,E_J$u,#v##?ʇ!'n,^L1ɀ&0ƃFk!~Raŏ^?ʰ#L؅AO$CQ)|NGk#V9lhRsxAI:IRı`QdhYWWz\f̘b1RvEetwo͛Ճa{F+-fỌ9IXL'4Bhf C)0&YZƑݢM,N1 2�&~�xAJÄh| u/|lh؀!0j0ϰ$С.e<yl0R @KԴmK0'Bhs;ϭ ի'$m/Z6r#ϔd8S Pj`8q2$ <0F^h6(?`JW/۴B04`$  ߏB xb-p�qTcHjß!߈԰ OLm[I/-9CoL;#Ԕn 5B�i0\tqQ8 '5Jс6//0Ts[5<| ? x@ˌ[W!>) H/I?0$K22 B6єcB@P8KXRE-BEG=š: Ec$CHsku`G 00@ `HS348~:mp扵%KcTjchx~HW u问8h؀9? nKl-"UhH8 )q]!tBD !uŀ&ĥiQZjdyLPM63[C Axa왒}aZEZ:'.Mn&t:0fH.P4\w}U/{r{<_,_4kBC@204M \ky̔4T\ )D*t 85H)x]�p4j-=BpH 1Eqۃw"�l~ >5<_@JA`%qQ{DˣFc㠤ya6.32p݀X 篽9`.p??Q Q1a `$G� D<82RрZp!fÓ Djf{2<G85s1jm9J04 }B~8" q /04leKJsmsb'RYkU4�j&q& ?{*ξ}FU{wqSsG Os`K# FMXD3ET?O9jBT& 1354Ry$�#HpޢhDhSۯk|$?`q{BewF @~kjhZ�!B۴.q{ ("ĩdJYC6^ȸzб>n> bL܁�wTh(>,D $ZHAT5#B-f`H 8%1Ddl(x(Tkb>fLeŎ@Pb{\dG 4aCDIkT#.X&""8�"`rH�F9z� RT%"C_!E4!1=Qdz3E5_FDط002}jS�70V~m"m,< 0C©RR#V,QK%W2Z D$`88j|i,EQJMMܨ`A~T3]feWnz&�h0 hI[TOe44 �̏7@-;X(%[g䅙Q�%`+ UKЌWSéufrMQPˮ04&|LX;ĉB^D,c;$S^O)?K[Ŋ$QgCeEm̑\5gTs[F)涧z*𮿏OPs`.%eW1UD<u9@”"!5go s@aB.GpAIuK9s9K⨼\6@7|/FIFh>YX8"v#2G<fhpOtԚaG(TS dT Xz+(Xz*dwc(3fC5FG,,B6يN ,-SdxX4"C?Q1 q#Lu]-LXpB% _*9Ji}B%J^ T $SLGx+ H Q ΓDnO/4e_%*o[!]F%edk8&�:"쳋 9[ 6cme؉S9JЍ�cl?sHZozid 0~ڏKGIɇΘ Hp4-( e`1m3%$l =@\b _1K{p!gn'޲|‰X\ 3R伡 nNFGhSs] }"LÓ:^@/8J)^S@(^qY5Y>3CCbJ֟1~Pvݛ]k[ﯼHN߹ɒ|mMHc84XR8#LDDen(*D;K/{Di+y$>QڼvQ<V3-a1a#P `1`\F`8^L[[$RwVTmkK|F؆Ip5M#-$5d7![M2Uȇh"H\h+})$M21uL;]q+}obwNTyKDvaBy9q8#urN)I%5M겾: ' dcK\l+,H @9FGZ �׏UݪGxա 7J,m<2MmuC5%Y?$5vlyӿۊRKqdLTiX 4S�oI^iw8W+M6BăYk3iU>~ޑCv9X9 tLB”0u}\;`'pi\"$$A(yVP @�̗^s9Gc"t%W!=?z}0)橍m8(٧Hb A" ?r߱nG9-LF*K89ZYS WTt 3$L2$L2$L2$L2$L2$L2$L&A􈠜&���%tEXtdate:create�2018-12-25T19:33:58+00:00o6���%tEXtdate:modify�2018-12-25T19:33:58+00:00NJ����IENDB`�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/bg.png�����������������������������������������������������0000664�0000000�0000000�00000012360�14163570564�0021467�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR��V��J���H�K���bKGD������C��� pHYs�� �� ����tIME To���iTXtComment�����Created with GIMPd.e��TIDATxkOHK\3!7ijO MH|HZqRJ�J��@X�+��a��V�� �@X� ����@X�+��a� ��V�� �@X�+����V��+��a� ���� �@X�+��a��V�� ��a� ����@X�+��a��V�� �@X� ���ͨ]�FJ)SUU,KTXu<p8\>EQ7V �LVSk �$SUy$1�Lh=RV �5""68+KJʿ�|ۃV�V�r(�ʊ�&( +�-cOaZ%�7 V�a+V �xCØ�ސ3.n\�J)0 q<#*ʲ(&)2 ëw:+�;SJ}t]},u]G44ԇ!c^u]l6> V.�׬Vh&""n5�1c>9u]t]ߍmm۫]V�0bٌzCE.3TU~}I-h r,"$Qc)kmw}zzzVvU +�Xf<RJl36RJn1+$/uwP^?V~UU4MTUeY>dp8faFPO^v|\) �&1zovh6m<??z~?wX۶1abߏzO+V� \-vwwgXD.Emv={,˸0rZʌ�L(wNjX|U?O2 KvvgGUUUqV�o%�@X?ut@|p>Wjۍڪ;T5vZ竄�L,g+pX9Ҡ({~~}ʉk~76x4Nol$1|?&|m@a�:iѯɽpa}_YrVl7 9_V9*y>aLH("k%w9ʍĜ?pia�WV[ZVcNQ<_ǘ�ܐa,r:'|zժۚ<.�`"9빑bulG\ �& 1RJYpz s>aGl6m@a�@ȹ-w)wKs]>.�`"97&~rV. ua�ٞˍ"SJ]aׅ�L+s'gn1N=a�ȉU�yK+YsG`zYC1G8LV0.�UYY;\~NX>0Ʊau ۀ �.3UgLm-[V�p٤ɉm?sDb�w+bd>$KcKnep]XaFEuYۍ 1aRv;=^X9j(_7 CV,Q1RuJژ>*a�ʝv0 ^G|>?NWAPΊvYJX:+ދi4M,ϔ3Rz!6Ml69[9j!"HW�7<z,bj6lۥm4~:͑z[#X�<9X,bټ܃?4M,ˋO'_V8uEQxyNۓ]׍z[[�eaUu4M5eVIRUUO~ڶjunL9ϻ;Х)f0!u]dC2e)4a+�l",˸nug4ѶV>&mۘ/[y\[ax�a뺗ɇax\?eUUE]1&p8Dq8^}΢("sf7?~uBJ)ߛb�PY1_~ ~slg:0c�Wڢj:6r*�oa\) +[�@W36ܘ"~zk �vꮽr911~9%{|) {Ba�ܜΗӿ~?ryRXϺ:g)ߞjusG,+�{ 9W0zZnv :�|si|XRb۝=UE�[ߪRuu]4MrQ;)؛s*r-o +� "R?QwJ|JͷxV�ލӃ (ih <�ImqslMD]7Da�Lx< sxx:uUU+S �9 �@X�+��a��V�� �@X� ����@X�+��a� ��V�� �@X�+����V��+��a� ���� �@X�+��a��V�� ��a� ����@X�+��a��V�� �@X� ����V��+��a� ��V�� �@X�+����V�� ��a� ���� �@X�+��a��V�� �@X� ����@X�+��a� ��V�� �@X� ����V��+��a� ���� �@X�+����V�� ��a� ����@X�+��a��V�� �@X� ����V.��V�� ��a� ����@X�+��a��V�� �@X� ����V��+��a� ��V�� �@X�+����V�� ��a� ���� �@X�+��a��V�� ��a� ����@X�+��a� ��V�� �@X� ����V��+��a� ���� �@X�+����V�� ��a� ����@X�+��a��V�� �@X� ����@X�+��a� ��V�� �@X�+����V��+��a� ���� �@X�+��a��V�� ��a� ����@X�+��a� ��V�� �@X� ����V��+��a� ��V�� �@X�+����V�� ��a� ���� �@X�+��a��V�� �@X� ����@X�+��a� ��V�� �@X� ����V��+��a� ���� �@X�+����V�� ��a� ����@X�+��a��V�� �@X� ����V��+��a� ��V�� �@X�+����V��+��a� ���� �@X�+��a��V�� ��a� ����@X�+��a� ��V�� �@X� ����V��+��a� ���� �@X�+����V�� ��a� ���� �@X�+��a��V�� �@X� ����@X�+��a� ��V�� �@X�+����V��+��a� ���� �@X�+��a��+��a� ��V�� �@X�+����V��+��a� ���� �@X�+��a��V�� ��a� ����@X�+��a� ��V�� �@X� ����V��+��a� ��V�� �@X�+����V�� ��a� ���� �@X�+��a��V�� �@X� ����@X�+��a� ��V�� �@X�+����V��+��a� ���� �@X�+����V�� ��a� ����@X�+��a��V�� �@X� ����V��+��a� ��V�� �@X�+����V�� ��a� ���� �@X�+��a��V�� ��a� ����@X�+��a� ��V�� �@X� ����V��+��a� ���� �@X�+����V�� ��a� ���� �@X�+��a��V�� �@X� ����@X�+��a� ��V�� �@X�+����V��+��a� ���� �@X�+��a��V�� ��a� ����@X�+��a��V�� �@X� ����V��+��a� ��V�� �@X�+����V�� ��a� ���� �@X�+��a��V�� �@X� ����@X�+��a� ��V�� �@X� ����V��+��a� ���� �@X�+����V�� ��a� ����@X�+��a��V�� �@X� ����V.��V�� ��a� ����@X�+��a��V�� �@X� ����V��+��a� ��V�� �@X�+����V�� ��a� ���� �@X�+��a��V�� ��a� ����@X�+��a� ��V�� �@X� ����V��+��a� ���� �@X�+����V�� ��a� ����@X�+��a��V�� �@X� ����@X�+��a� ��V�� �@X�+����V��+��a� ���� �@X�+�o?U ~����IENDB`��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/blue-letter.pdf��������������������������������������������0000664�0000000�0000000�00000003671�14163570564�0023315�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.3 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.alpha.18.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.alpha.18.dev, based on Prawn 2.2.2) /ModDate (D:20190601013954-06'00') /CreationDate (D:20190601014053-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 11 0 R /PageLabels 13 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 793.0] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 612.0 792.0] /CropBox [0 0 612.0 792.0] /BleedBox [0 0 612.0 792.0] /TrimBox [0 0 612.0 792.0] /ArtBox [0 0 612.0 792.0] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 75 >> stream q /DeviceRGB cs 0.0 0.0 1.0 scn 0.0 0.0 612.0 792.0 re f 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 612.0 792.0] /CropBox [0 0 612.0 792.0] /BleedBox [0 0 612.0 792.0] /TrimBox [0 0 612.0 792.0] /ArtBox [0 0 612.0 792.0] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 792.0 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Outlines /Count 1 /First 12 0 R /Last 12 0 R >> endobj 12 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 11 0 R /Count 0 /Dest [7 0 R /XYZ 0 792.0 null] >> endobj 13 0 obj << /Nums [0 << /P (1) >>] >> endobj xref 0 14 0000000000 65535 f 0000000015 00000 n 0000000266 00000 n 0000000466 00000 n 0000000523 00000 n 0000000574 00000 n 0000000836 00000 n 0000000961 00000 n 0000001235 00000 n 0000001276 00000 n 0000001324 00000 n 0000001376 00000 n 0000001450 00000 n 0000001574 00000 n trailer << /Size 14 /Root 2 0 R /Info 1 0 R >> startxref 1619 %%EOF �����������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/book.adoc��������������������������������������������������0000664�0000000�0000000�00000000160�14163570564�0022146�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������= Book Title Author Name :doctype: book include::chapters/chapter-1.adoc[] include::chapters/chapter-2.adoc[] ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/box-drawing.adoc�������������������������������������������0000664�0000000�0000000�00000000615�14163570564�0023442�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Let's assume you've put your theme-related files inside a directory name `resources` that has the following layout: .... resources ├── fonts │   ├── roboto-bold_italic.ttf │   ├── roboto-bold.ttf │   ├── roboto-italic.ttf │   └── roboto-normal.ttf └── themes └── basic-theme.yml .... Let's make a box. .... ┌─┐ └─┘ .... �������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/broken.svg�������������������������������������������������0000664�0000000�0000000�00000000226�14163570564�0022370�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" width="200" height="200"><rect width="200" height="200" fill="red"></svg> ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/bundled-fonts-theme.yml������������������������������������0000664�0000000�0000000�00000000431�14163570564�0024754�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������extends: default font: catalog: Noto Serif: normal: GEM_FONTS_DIR/notoserif-regular-subset.ttf bold: GEM_FONTS_DIR/notoserif-bold-subset.ttf italic: GEM_FONTS_DIR/notoserif-italic-subset.ttf bold_italic: GEM_FONTS_DIR/notoserif-bold_italic-subset.ttf ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/chapters/��������������������������������������������������0000775�0000000�0000000�00000000000�14163570564�0022200�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/chapters/chapter-1.adoc������������������������������������0000664�0000000�0000000�00000000165�14163570564�0024616�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������== Chapter 1 We cover a little bit here. The rest you can find in <<chapters/chapter-2.adoc#_chapter_2,Chapter 2>>. �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/chapters/chapter-2.adoc������������������������������������0000664�0000000�0000000�00000000300�14163570564�0024606�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������== Chapter 2 Prepare to be educated. This chapter has it all! To begin, jump to <<chapters/chapter-2/first-steps.adoc#_first_steps,first steps>>. <<< include::chapter-2/first-steps.adoc[] ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/chapters/chapter-2/����������������������������������������0000775�0000000�0000000�00000000000�14163570564�0023765�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/chapters/chapter-2/first-steps.adoc������������������������0000664�0000000�0000000�00000000044�14163570564�0027076�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������=== First Steps Let's start small. ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/color-like-value-theme.yml���������������������������������0000664�0000000�0000000�00000000026�14163570564�0025362�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������footer: height: 100 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/cover.jpg��������������������������������������������������0000664�0000000�0000000�00000051747�14163570564�0022225�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000�������������������������������������������������������������������������������������������������������������������������������������������������������������������������JFIF�^^���C�    $.' ",#(7),01444'9=82<.342�C  2!!22222222222222222222222222222222222222222222222222�����������������A����!1AQ"a2q#BR$3br%CSdᢲ�������������4������!1"AQ2aq#B$R� ��?�V|B-!L, hIمL$ Vf jƑЕC .#Y`tu!gIrT'dX-746+cB} 0$!=�`4ېVƘ=7D 11P7 $&!PYSLD=eBlK-be&) N7@IcC2B'@x<�f & V!,qIȖ l+Yt"G41 ԀF�eD4Ɛ}C`T +C` *edJ)=`Fub:)^Af9h '*%J 48V V жD0ªE�#E(`'%7:2Y,R!kVASHI2@ K�vPP.xiƭ *@ &y#�] ZIS4G00{c6į(LH{]4ҴL2[JlI9H jhcT{V!j=X)o$@ĺP<X!XHah8@!)�P0NYej(((bʼn5�;,R蘀:D=/ <ExvyR%isӲricÓഊa%j�10)lK@{o2B[e!Z0!�U�&0}Vl#y& L&!�/j�]B�. } ?`9e ܠnCCAb@7zLpuդ; DvD5hXC1-@ꡀ��W:X PT&"hC%B<9K>efp@ x@B�!! -@ 1�7@1'`U8F7eH@[%Z@6C ҴH*LJ\ 6V3En(lR `z4@q B~RR rBk*`eCx(Q`xX %M )X&R�iϺ拡 i#h :8)V�V*0ZKcJ/P =RLMS<iL�$ۤ^8K$ qUJ}6WҌoa6An<1rϬxF<1ݙnsj%2&՞K\R磨%9knv"?U͞<>W4E+rбG91P 2`xȱ�.! .PCw)baCU Lt8$*2aFcU$3r JMPRI@ Yhpv"Har�vQAw; sq�G=^!}eQ`wx}v[gx>aK�&@nPw&g%ɳ,{U4�,2~\\͈\\F,8c( � r4CȡQ: M!PACQAFT*0:ʒ ܆@W9inʴ0]3eNʢEϫo7bCvWtui4P_U<aY7 6kYĎ~xQG/ܟC3cGTSoG\c�6ApRQèWTɵ(x<ZYC0Œ=7eʦ#뚗;sQ;E4uG${nI'$Y_ArT."~,]Y)m�j7O:8X8 !{BiMTkR�"xCBPt:2 *  Tctr 2R@3ź=-Ȑ/IoTBn xzezQAsS&�WN>1 dtbuě AsHe;z=&J:!cK6Tq˭{iqlLȻ�mU1l t'$ަ|+S \ ~\} rpN}X g5x-8qixډ[3};1]GҚS0Qj&Za?E{x1|G5:z_⇓'lhcMVOT x=.L)ױeFBĠ@EašۢG9&@˒tU$лP4c=x>ʒ�N1Dr49:�QH lE!*9I_fy@t_�3 &#i4U̐�C]{sGtLE| g63x^^$,x> ܜ][{#RIukGuܔI"(#c/%ZsvVyib9;.6Sj$ILkfyh~`i<Q #<WL%+MkJ< 1.@0 `nR; hCvSZEYLĹHH$Khq9:%N3]Lnz*-s0vuǴm] �Q?*;z-g^( 9d'Eqg)u*}2n`R#'Ro#m4H`JΖ#HwJ{]# \`6�V8~Z!g}y9vwǢ;G0|dbw]˺5|+{/ٲ ޷S,ؾ&_NN.CDsԲA9!X'=;zLPn( q*V<hv900)h730f;Fьb(pvP߄�QH." Ah] sVM]S'ٲ3vØ╄r7r{:jO ydwgXAvF,it.l8/oTٌZ{ (}@P4( ,+! b*e3ҹ}Bmg/$Dᘅl4K", )nEZ(#�KUcl<]CNR&0.u!T�Q5o@ܐB]O~m}?ds�ᘉb�*Lo_Þ,J[Lds L?�ۉE?Sg>f8| AKmܤE!NI#].D{fnJdklf{zVK&\T" c(=HZFCuh� Fp hBQC@iE\Hx!P0]H(XڴZϼ.u#mBŪI.?o_l>C$�ͦEOP,G*U# u#A"3|=dY&'T,04]#H<P%n2ݺ<\5< Bjuh#NNGQ<ͳVtϓ< *IcgJ4駕Fny "ImG|zz5swjMGs;25qgG2ӔAAZ$;H"N41#�.TsE,nI40wR0ƚ@\6'* qRH l@2r1˧ˋ" Ӵa7P9>џN%Y=lu8}~E'q�4 6S#8i9L oɞV $k PH #xykGRfK$Sb@*!uc!.'L- =e>Os\WQ4Bʏ,ЕzȢYPi]QQ c�85駨/ss%I퍾?:^R>Iǧ?U<Z4;B~W(52|B*Er��wTItPMT1l�t"<IF=JddS8na|" }^xjx̙Io#Uɵhfkdow,z6~\i8�!iIBA0xE9%Hb Xl[ic t+C?̳ᒎK`AUU4 {W&t9m'\!^f<tLNӤ%(l c~iuvFLN_o̙dP8B* LG7uDy߲ϯY^?g$M{%OCqL:}[N"dps\^[|l/$;yO x?̟7 N%ma>.&۶�tn}l^MKѴy G[Pn.Ǜ\�bNLsIt~Cdpz[quv=;WբO{|%'HV �֋ mS29JmfgĚ;_lf�:iT�v4Vrbw4V\'ھYTje$to [$,8qjsZ2J}#tpu(#1ӂ{�Fy W7Ӹ^/<(EV>( )-԰섀sE@<Y�&kaT.֧ 1G=e` [w^lz#FPic{7#qN\#G#y񐡛.UVtR :SX0w~+zJ*ޟ6U_4aB[c/ ޚ﷗f+WmLzdrO%|ބ8 ŋTrnoW,lLEOlU 8m[JשϚkuMk8{WhmM<,Y3b,8ŹE~eŴunV `| %OLQ�/KդG[ƨ]h 6'�Y8%{Yoݙ*�M&ZIB7 gX |/A뿈s�ǩߓf4CM]6!4;OvSokwaA=^O]$TWq_q5laߠV]. +8F\*I ಕ4܌ʫe&)<G8R.v֋ɤěn%*u_Spui^;ş>Gz.\揕}FH<R) $v0ѿ)!wl$#c\A3׺@@pւy C$:sQ~N+]gߤӂ8dι+H#:s]jFMHa}Ӓ>|�Pu;4'- An \EFa4e>D$rJ,!K|)I:ͷTOUL+]ڎ 2+s勮kc{2d/gK|-VSn.�酖rWܟ$5nQ;tX#q`A8>e7c旽fPűǤEOQNcLo2\~+/X-s犪dc(ם_Mٟ>my5^BQOO(:J")6I{1$|~,O|޸/t69In,t34 Bc%q平_'6a%+H%- *B i5sfFnH@c= ǫ)=w_s~w-m!%5% f~J4wڦu f`dCB%R iȟ+IX%7HCZI%H5N]jMioGv%:Vqk+O:mƵ�5rgNMH(qeiLa vU`R.eAr g!6(6HŒ C ko>> ͅ0iB5G-_c\<3 ‰:�w#0=D] R6@Rc%Lq�ҹй&&0d˒Gev6eMG*$ :Y ff> '+,$fs YH׹6k6n/_=S?^2ڌ t¢Z�MtoH&l 8~v^%SKkQq-XCLbhٸ^saaaӷ(_4sDmVM_g;@Zzn|d/5;4Y o?J ? {Drn#` ܹ_ʣTNY;mi=Lt> 2M.̒l.zf2l[gM}62SgjT4e,gFZܓԻ ;=AOY!=AI|�HTTp2$ml�+fi <U  #IGG4&�3ujrn]쪀u@ aʄUnr . Je ,ܐ7@CR�Д bYEm$->4ÖXr,ZimOŒ9qS(sH-A-[3x$S?-͊ C- (13<6�G{)<ۗ&O8Khdp|S/cbE ˟Gm<okji\Z6hq&|m^?3�>KIp? V 8diORK]1mkߕ%m?y4qQfqp;m$`;x~^1ߪ|GqPJ&Ӹ3F#wH]Mdps7 [se uY~.n!QqEىV3[6�3-|�U&ttA=*&c 7;NE|)ZvrkjIH]@Ksl8ۄy�{ŏzm}^!))j"|IQU)kq.9ؓ٣F*ߢKbL8q^(z ѱ`v ;=Ola.stѴXnl;zE9>;<BZm_%*-4"SNɌ\+N."',hV)SM6hp}TJ+IdH&S [?+\F?)=$z?#>8+i!}Z$i~ L[tӢhv$Mz~*؃mX̗$K3e'c;"#*'/pN9b|WO yeҊ\5xҴ<mfR@cגyyU˂]{Ϫu-L׵= 7Ϩv{w1c=6<۞]EO)d|(BՔQ\E,YN͉;+{*ahc[Wn=o׿t2f߅ E{l`|=8Ã/y:̎^X'GK M:NCORGJ@7i`kA>| _v6yYiMd-qo9r+äᒒ/z:^@i5!9=53Yx4]c[EEMSDy.wĮyM-^.W7Ǣ$<#l$T7&QےD׎ *@y -$ASV9 |'N˽V8 ;_Z劫DesHk!6Ϗ Wö؜ᔟ5}sm^۲AOOQ٥gҺTpL.>3{)܏OxeE_"�Gi7#~Bb<p9�Nj*9Vrn0�8oTe>qT9&Vվ&?W<󊏻 )Ov]|PrKC J�,6WY1m:^._:&NtDw0I8`/Mr%:᪂�CCROWת.S=c{yqw+ٗAXW KzidY QӨڦKQI=[ yr<7 *H]mBw;~rc]g^M+JΆ: &Z袞Q#^Z0c=ӭ\z}ܲdV@umKB1UU-jpǒ;n G+~WOS.Ѹ:*Y8|.q^sti%Ê/T#8W}~m:Cg{1&^|Oj{8?GY'^y|+W/4Z 6|bnA#-�@Bcx3 %d"k%LP1 `dIN'p7IkRJ\ AumaB&*Q;DVkN_L�?n 鲂%֟|(QEޣ[; hm-]T<%2:Vnlgs}NEMUwR>GQp'h眛#=8 D;,h$oZ&9űh`zᨪm$N6|iv)d[`n6pViM<x}L 9伉hu::Qc5Q4Jhik$y3;7yn(6t߷:cG4PjMS%TA<l?X vd{}n]!QO}Fi$˃$Wэo4 if*X} r*]6PMsKTvDjZn 7Z<ܧEM5UBIkn{d<l:|>68lqKFk|2uՍ}O_'FKvdTnA;n0Xʱd: pdѩ“Vh"s~*\2̓uYbh5zƲ9PG#e,)o7=?+�R9PQꁎ3-tk!Ęʢˬ%SJn.H40? 6ֽUu**K07Qn 53+qa, [DبuN]4d?"FwǛJ Vi۳I* 5ՓjOs�*>bǍRD767`L!=�B2͗ 6:>sO{>#R%k8^ݕVl6ʙҫveѺVio�uY#'6<Xm>Vjۧ>AN0zI˶9d˒^WHAq)b&{< k^$4t6꼔aUPum&efUPro.~_PX&ܺ_ff6cXrjvo2#{݋Y疅I8I?xanQ~C$p=Xls�B Gl?+ ,+g ?U*cL�~T>.=R&ؗ>T D_`ݟNJmbEq3e8O.e/4{<?՚[񪗷}Hc<tϙ\[dRq)%9!~ %LVwqn5H'+GC �ۑN[3c.khY _r^dŗkpY9k7KopvI*es2pۑ?pBS�*>m33*cC  414dLz]; TC#dWܕKRr6dGW麌5Mc$t.ּ(Śx*)uD|~3^~W,jY^]*QGM%Ζ 9~etO9I�2Ђld澺ZQ:S,H.nmc6G1 Ȅp(֬S%ҀER\��h 㝕&M˭3\0 v-{Xÿ0,E21S/eDm6�Z9ǵ!c|i<u/+Yex(dYr@Y9/DX9ke&PUHZ *Ѣ&YQ/dQJ6fu dq�yrvZ:5 -5Ze kK@]tdB˓U-6CVctZu cj>fP>`FY3E͂ ۾E U{ q81}HM9U4|B+Xh##$ÀSE`>}POzzᡩ]F_kn;cO9B.J~! v1ߒvv{͢׸AG=h s퐝K7; p.֑p*I 7=UR!ƿqqs 78UDmE5^$|0~mo쌒4+zwCBe|clT4H s|^'C&2YӛPô!Wj`yeÛtΤG|pZ鮊 Ya3fG7kہSF_ Gۋ*dCV:m9q9k#n|U~ �:=R=:N@$yh$ᣪ{`9Ԡɫ`]03ۺA9敔zt%/Vc${ԄXl,Qd(S L邠r#t'6�D uFA5ōh-,=-0EXF r*4\#O2`u;dB ƒ5fEG J4m[ ,R3<d(c.z\ $c*kb-c,%岗 d )c7$n)2evB&"{hOIp0-1x+xP)`iƟkTKߪ=Y=/|=0IhsGW`~c_%0&ĵLdsHi ӣ4؎cvj$]Axv)Cr#KK +!I9&' <[_Hi hB q0&a<FTI{%֕e9]U9c/ؠt 7 qa�䒶\p}Yk> ?49SO+Sl<^6nMFKee9嵺\%$+(9I�BBHU8oR=V$#7ꕰYmrhֶq$lFяFֵ?j i>k̍!+x{{x6 Y .l X)JD:&$LVыG<EX:QTyc>7"\9*49T2ס<]R`)q&`n.<bv#A$� ' ڊYRo{糯sdΗ< wEy4]wĖjy^ݳ¸W+iP�j_Ad / ^4J ,Fx�/2\Ώ mh >bmmըH3"#\B�Z}5j~3+l6O,sZ.%C�)zv>0sJDŽc^r Y|b:VGN'0GeF\kL!ǢPuAB+0>PD'4[GCAאAs[y*j*#>6QQrQlon\nTmeRFgCڋnѤ=>P{VeJZ>#9{9RgVų[_}s/p]^QN_Ye$qg1hIG^r%qd֤G,Q:F'yj5<ϸ"9UL{$\2{'+F}DeY#gK MIZ>KǟY 3H,)-Ƚ82TN1c{{0U0xnߢCQ;#VPfpVnv×}RweXhէMI!oi BG6OK}g` kc`.J 4e|pBepllisy�Z!j#[]l\E�#3`y:R,T<I~<Ln{�+.X'nV\8f Y,ΑttLKLDfn8ԅ^ d|#L0lӸIfuƞ1,>.U~]-HǑqZ%dN{Q8j:xZ1;'&�yy,h%γX/A%k!y+.hHtM¢>3i\IUs!EUQBڨ-+C˸]d:gɂ[<1qI~Ws2=/'esI0gtonq 0F}y+HhdmЄ5QrDb):{&hSwǪt*{ $+#pUK]�v2C.C!u<dvu٩],p90*2)uLVh�Z!Wo >?lo7~5\ja>θn=n(W>赛5cdle\^ݢԐ?N'܆:  ESEnEzC4fOi.yzX(=J'ɝ�!|sIoUc|镔t4Y]`;-TEtf{n=M3ɹ٤kaWdn&Yجq]kFF9Tk7Cd%ɎEN06)CAe7M3Z󈯅hQ8rI$Gb$X7LD(>x`lo MtμZD~YڨÛs/7 [R= ''n<Ȓy%.kq�{,?bmiTˋU@\%D4,~JLn i ; ;H,c; "˞s]6�4  H8Y!q'*DH`+Dj>+]+ְ]ג)> k оY*vmsZ#mǼ-&uQTjH%#}9MEu<"Bd,x>!6�snre Gq8~$ԓGFڀ*lvDfM&3X-fZhhl>s|B,7Gv<ԩ>rkKGNQA.13{ П3-7ZҨ+uWlNv.y� $V Kiϵ]0; 괊Fpo8|QR�TeZ  {Y%[ڍeRpKV; Gz.Je'E1m,}I<m˰pD8 H[ڧ;Ķ@T4]qgM o5( { umR5j<ݣo'?`o|XqNǕwjT:{[ X<i.Rx3ÑO\+S&HWC$}x<?^3>vV︊:<p6 M S8$)g 髖-Jaac?wC޾}OXߝ7\>@c†�l`۩`u"Cw&1nk)8i2[GwkL|4ҵJw#]K_le. lqCFvA\?s{e?K] ;_@t1# ݒĭ~#́תKK>03Ɂ#sȄoF&ױ&B<xob9p-!V!#+K uows,cvcl؂;uvixKBv<g!9R+,D@65h\c2K1^,UͨVP^t1Ldn5.<DT詋A>;)HmmhmMrcu6]6{m�  }PXjy䥐><uS9Ak#Í,ZO$8Xn l%Q|uZN!+F$spՏqˉ>K,\_m1.ӥv�x}^�ĺ:VD[�}`VY|N)mĿ2ǥ~M:I@�`śz>NMo`V͈Cb𡱁!H ڀ<\DIcVʁ463v+6#h�/ f l5tִߟ4 T|rL^ qS]W%IIw6�?ukq7�d쩒YU-|p �| ,Jٺָ{CfGN�2+W.9+82O|df8L qJSNKD]c)y@ı%O8o@VB$@�Cnٴ!|*y4.rQ$4jEٓ'à*?pOEh*4GT[M"܆Lߢbh?qmeZRMV$u0(!HsF۬L6�ݥbXx$�^7e$` lb@+FV�25Aa~n.-H18>+7}$`i Lr 䤨㖝w;�vj $4"9<Z6~ܑ? vt^ ֍^g:r/\>Khn/e X/j`UaA 'aD\ox=d+ i!qIYIMž [MI=tt}zp\1V%"NS/!&4]4aN<dE2 2ޕ v4UW.|Ѫ*/?m1QE2C!$\Bc�v^ !qTq]/hF[p+40TJxBxo Ck�mm%-@ g;Y٧PQ%tz4[8#Rl\+;)89+7UgUQ=[w1#K]g=̵vQ9�Fw]tFj]v:f67<3E=Q6ng-M=K`8Xȱǎ-GYXƆrP@զ*�,tykaC,(՝B{$C9Y(c ʚ2FN@[F;2cQVt)00ֳapMBIsLk)a�ҹ~>2l+uαTaa㭥^9^W _:XP ƥaDzCpNˉ*)C\2flDFEÇipy.@̽v/huPrA3I  ZC+@mia<B6]1|2+e6*fԂZ*ayaP%HK}b�Iƨ p HkQ6̲1i /Ak]&Q;`fOeю5|q{+ \6ttj l70\3sgGku(,&' |j@v*\F_ȼ7z +tPi\kHӪG\ƭl)tH"`1qY\i4ZiboKd"Ip~�ZD$۽7HX뢢jY}#f.2#5ϊ@Vt45-uԐ;p7U8,TRبnHїL qEl0&@)5'C5{."lVc|MOubjBfF^[.JDHdtzRd8?5<e,|o۠]v^,q`Ը-|g`$:14m?z:`-֟G,vF)}Nx h80/0FnyC A'iH/OAqɻʌJ4D8lW"tsӧ VѱF@WăZdS-)gB1pɎ=if+<}>:in}@ύB6PqN|=?X0rΈc[gO4xidXmV$a)2O Y6@-2o D {qcZ` KdHn['NΡ 78_FzN'ap84HMSD>QmipSU#McM\M+ba DdEYFuԪdbhV\JpCCS' hH:YU\h `�VQ%Bht@e|ռ9O!t4lY2f/.:* B֭c>uS v4va;@v=;=y%wQB"k@`q~&=ok,DIzY# +fɺ=Qu(lH욒ԨOk�{wh}ՠ9p^D.}U]6L@dqto j s5hkv\x,$jxua>,A)SqmhxQio!%.Rd7qa8SqELO#eN\/mRŠjyE�0dR,GZϼ7߸N8E7eVs1�Œ`הO__ ]mWrWFJ0%mqȄrlZda(Hhȱ9 c. \A597(bvh H)L(3ZFVʉz(bߍu͔*6w^8͖кDįiϞ[`ι5i3_Mp<6rH)ə-SQew+@΄Qx+F[�깲'7`Yi⮅ٲ-ʄ՜cM :-1tY k]$lഄ4NWA|-6טӣݼUǓRͻK;qsuȥ,ι#^5Tc)A\6+c,@J4L f\UlKEh.:V)"ke,Q*6c&]Zscq!$A(8c)tXv׌9:~`hd`8[E\H&�Set 0چWHtwQ UvWN@ZXQ 'IHh-JY킷ěe؉hϪ:-īO;뮨ѯu8& |M&y/<UũRF'FOb.T+uiSST ZwW7HdMl%$)`{KO"'>)cp},2F%ch1*KY3Os Cٕ8cDŋՅoǢ!eՕN3c}TE9# Զgop38W�`E/ Dݷ_Zl 4}$IF@5�)WLLJzp{3UкmYˆHX+ .IeM^ '2s\dp& G;9Z:LM4EֲHsEW$ӽ} ^'.ʪlq {%KlӨS $yT6QeCLv 6HV] G0j*mEjc\ɣ)Eٕ<Pu ~MЦG8{]#)M2>jxٿ͞\6u֮}ďN(pJWkQHHR :<¬Pe�(_Rx8R,[FХƞS܍dU#}hm.s4t",;,13h6XK IiUzϡ((#,Vآ"q}^cFMQ4'SL{,v`:H2KԚ[qVd7KQXbhO hSq걩De;4[FKWӢ-JS< r5tcP]qPEJ2U8}[ZgYUFkyt}gh(Gw46]?K,8lzhix$vwҿ00Ĵ^nF۲l� y"I \,jZ Zr)$Kg6ֵMSeov/(]MNTn"yTU#yK�ɲ)Y$M #|7@ɑ EX(dxrQIme&&] +iW mvP/KE$e$F6Fֈ2Z#G%ϒ>g)L ei *ML*T,Xi6I%*f*Kᖟ69λJ G(X A^$ 6[sOm )j류 )ȩGHI' f탈왎ngLz65 .V5RFS,Z ׯpE%ɿ$~XCP&x2LQ ⥰*5sd.oM{' iT1cl~Sˑ|jmj `cX`ɞ|ѓXsUb%+u}AIʒs hU@6M@HY91 <e)2ac+9Bc#dIpmtat$X`^ŠuX\.�R4FJ-ؖK?i+H1s*B-V샔n&ͱT+G9L%uIY81eOSW`74Mxc8qddMudhI.N)2BB1}]RD3p'JQ㏫ₘfG!z�@G"MVa4@#SfEuHhyᵚ"3�$rwk1SD5Ǎɜ͒R6#l#R-i�YNOEU&"ž9'p�a4ti> kp|NEv }SωRk)8W˖%&Wy>\2S"WeZtPjYf�$z.9LQ, "vfMLF^ѐ B1R-w0m3NJd@p\vӕ(hk3GV4dh4j3Mr\sW3i:,Tˍɲ쟨x0;$؛9sĵRt#] !KysUElໝiS4YDx!c;H:"1tiXln~+tD`M иpqfOx=248pwGF893O<ڕARH%o(2Gi#kXJNO%hJ,h6HQr!hi�eD wTZA@�P9ZXH(0HMq#pdZ+6XZ v w.ZSG 2D]k(! ε:Ji͍b3~ɒk}7ZLn앝O%,}BTTHGo.e˲IL{Q_Q.\Q6yL@E,mCJд8qdVt%W +ݹ6ZEMi\]තYmq 8 :u Ii;+uUNi7�\JcTsvyӓ M+,).B˪/(-(M@ dYC0cA*0fТ5'<aOrM#y.Ifi:rO%'LM(H!9}⪑2��J4g$B.|IFBV RV=sMaefk p68S4G8(]G>儮Gk�pT=]nf"T2m)4lj$kc)C##ZD9#wM&9¨22V hNJgfFڕ#�.Y&og:dp+j u\dk"s N_i%Q.7<O;pI# y|F?1U<R"Ǘ02ETεlzCOD_X$D.Z]1-)!m6_E$˪1D24aX3$ym: -{(ۜrQD@9@\,h 6ra.IE4qN%!7%'"9){]jVM|, ЊJ/cjыdk5evfZ<9)DF͐LР@;.IKH5GU!3R%#ETѴ h-`pN):/x�������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/custom-theme.yml�������������������������������������������0000664�0000000�0000000�00000000041�14163570564�0023517�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������base: font_family: Times-Roman �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/default-theme.yml������������������������������������������0000664�0000000�0000000�00000000153�14163570564�0023635�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# not really the default theme, but a custom theme named default extends: base base: font-color: #aa0000 ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/empty-theme.yml��������������������������������������������0000664�0000000�0000000�00000000000�14163570564�0023336�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/empty.adoc�������������������������������������������������0000664�0000000�0000000�00000000000�14163570564�0022343�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/equation.svg�����������������������������������������������0000664�0000000�0000000�00000031054�14163570564�0022740�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="118.634287pt" height="19.058716pt" viewBox="0 0 118.634287 19.058716" version="1.1"> <defs> <g> <symbol overflow="visible" id="glyph0-0"> <path style="stroke:none;" d="M 1.0625 0 L 1.0625 -6.25 L 5.34375 -6.25 L 5.34375 0 Z M 5.203125 -0.15625 L 5.203125 -6.09375 L 1.203125 -6.09375 L 1.203125 -0.15625 Z M 5.203125 -0.15625 "/> </symbol> <symbol overflow="visible" id="glyph0-1"> <path style="stroke:none;" d="M 1.734375 11.59375 L 1.734375 -0.40625 L 3.375 -0.40625 L 3.375 0 L 2.0625 0 L 2.0625 11.1875 L 3.375 11.1875 L 3.375 11.59375 Z M 1.734375 11.59375 "/> </symbol> <symbol overflow="visible" id="glyph1-0"> <path style="stroke:none;" d="M 0.59375 2.125 L 0.59375 -8.46875 L 6.59375 -8.46875 L 6.59375 2.125 Z M 1.265625 1.453125 L 5.9375 1.453125 L 5.9375 -7.78125 L 1.265625 -7.78125 Z M 1.265625 1.453125 "/> </symbol> <symbol overflow="visible" id="glyph1-1"> <path style="stroke:none;" d="M 6.5625 -5.015625 C 6.863281 -5.472656 7.195312 -5.816406 7.5625 -6.046875 C 7.925781 -6.285156 8.328125 -6.40625 8.765625 -6.40625 C 9.410156 -6.40625 9.859375 -6.203125 10.109375 -5.796875 C 10.242188 -5.546875 10.3125 -5.222656 10.3125 -4.828125 C 10.3125 -4.578125 10.28125 -4.289062 10.21875 -3.96875 L 9.578125 -0.625 L 10.546875 -0.625 L 10.4375 0 L 8.375 0 L 9.125 -3.84375 C 9.1875 -4.144531 9.21875 -4.40625 9.21875 -4.625 C 9.21875 -4.863281 9.179688 -5.054688 9.109375 -5.203125 C 8.972656 -5.472656 8.6875 -5.609375 8.25 -5.609375 C 7.769531 -5.609375 7.367188 -5.425781 7.046875 -5.0625 C 6.722656 -4.695312 6.492188 -4.164062 6.359375 -3.46875 L 5.6875 0 L 4.609375 0 L 5.375 -3.875 C 5.425781 -4.164062 5.453125 -4.421875 5.453125 -4.640625 C 5.453125 -4.878906 5.414062 -5.066406 5.34375 -5.203125 C 5.207031 -5.472656 4.921875 -5.609375 4.484375 -5.609375 C 4.003906 -5.609375 3.601562 -5.425781 3.28125 -5.0625 C 2.957031 -4.695312 2.726562 -4.164062 2.59375 -3.46875 L 1.921875 0 L 0.84375 0 L 1.9375 -5.609375 L 0.90625 -5.609375 L 1.015625 -6.234375 L 3.125 -6.234375 L 2.921875 -5.125 C 3.191406 -5.539062 3.503906 -5.859375 3.859375 -6.078125 C 4.210938 -6.296875 4.582031 -6.40625 4.96875 -6.40625 C 5.457031 -6.40625 5.835938 -6.28125 6.109375 -6.03125 C 6.390625 -5.789062 6.539062 -5.453125 6.5625 -5.015625 Z M 6.5625 -5.015625 "/> </symbol> <symbol overflow="visible" id="glyph1-2"> <path style="stroke:none;" d="M 1.609375 -5.609375 L 0.65625 -5.609375 L 0.78125 -6.234375 L 1.734375 -6.234375 L 2.109375 -8.15625 L 3.1875 -8.15625 L 2.8125 -6.234375 L 4.84375 -6.234375 L 4.71875 -5.609375 L 2.6875 -5.609375 L 1.921875 -1.640625 C 1.859375 -1.335938 1.828125 -1.097656 1.828125 -0.921875 C 1.828125 -0.796875 1.84375 -0.703125 1.875 -0.640625 C 1.945312 -0.484375 2.117188 -0.40625 2.390625 -0.40625 C 2.671875 -0.40625 2.894531 -0.488281 3.0625 -0.65625 C 3.226562 -0.820312 3.347656 -1.09375 3.421875 -1.46875 L 4.234375 -1.46875 C 4.097656 -0.894531 3.863281 -0.476562 3.53125 -0.21875 C 3.207031 0.0390625 2.757812 0.171875 2.1875 0.171875 C 1.570312 0.171875 1.160156 0.03125 0.953125 -0.25 C 0.828125 -0.414062 0.765625 -0.65625 0.765625 -0.96875 C 0.765625 -1.164062 0.789062 -1.390625 0.84375 -1.640625 Z M 1.609375 -5.609375 "/> </symbol> <symbol overflow="visible" id="glyph2-0"> <path style="stroke:none;" d="M 0.59375 2.125 L 0.59375 -8.46875 L 6.59375 -8.46875 L 6.59375 2.125 Z M 1.265625 1.453125 L 5.9375 1.453125 L 5.9375 -7.78125 L 1.265625 -7.78125 Z M 1.265625 1.453125 "/> </symbol> <symbol overflow="visible" id="glyph2-1"> <path style="stroke:none;" d="M 1.265625 -4.234375 L 8.78125 -4.234375 L 8.78125 -3.28125 L 1.265625 -3.28125 Z M 1.265625 -4.234375 "/> </symbol> <symbol overflow="visible" id="glyph2-2"> <path style="stroke:none;" d="M 0.4375 1.171875 C 0.800781 0.898438 1.066406 0.582031 1.234375 0.21875 C 1.410156 -0.144531 1.5 -0.585938 1.5 -1.109375 L 1.5 -1.328125 L 2.65625 -1.328125 C 2.625 -0.660156 2.46875 -0.0859375 2.1875 0.390625 C 1.90625 0.867188 1.476562 1.285156 0.90625 1.640625 Z M 0.4375 1.171875 "/> </symbol> <symbol overflow="visible" id="glyph2-3"> <path style="stroke:none;" d="M 5.5 -7.53125 L 5.5 -4.234375 L 8.78125 -4.234375 L 8.78125 -3.28125 L 5.5 -3.28125 L 5.5 0 L 4.5625 0 L 4.5625 -3.28125 L 1.265625 -3.28125 L 1.265625 -4.234375 L 4.5625 -4.234375 L 4.5625 -7.53125 Z M 5.5 -7.53125 "/> </symbol> <symbol overflow="visible" id="glyph3-0"> <path style="stroke:none;" d="M 0.421875 1.5 L 0.421875 -6 L 4.6875 -6 L 4.6875 1.5 Z M 0.90625 1.03125 L 4.203125 1.03125 L 4.203125 -5.53125 L 0.90625 -5.53125 Z M 0.90625 1.03125 "/> </symbol> <symbol overflow="visible" id="glyph3-1"> <path style="stroke:none;" d="M 3.453125 -1.09375 L 3.203125 -0.625 C 3.066406 -0.394531 2.851562 -0.203125 2.5625 -0.046875 C 2.375 0.0546875 2.132812 0.109375 1.84375 0.109375 C 1.832031 0.109375 1.828125 0.109375 1.828125 0.109375 C 1.273438 0.0976562 0.867188 -0.117188 0.609375 -0.546875 C 0.441406 -0.828125 0.359375 -1.164062 0.359375 -1.5625 C 0.359375 -1.769531 0.378906 -1.992188 0.421875 -2.234375 C 0.554688 -2.910156 0.835938 -3.46875 1.265625 -3.90625 C 1.671875 -4.320312 2.210938 -4.53125 2.890625 -4.53125 C 3.367188 -4.53125 3.707031 -4.441406 3.90625 -4.265625 C 4.09375 -4.097656 4.191406 -3.832031 4.203125 -3.46875 L 4.203125 -3.328125 L 4.453125 -3.78125 C 4.609375 -4.070312 4.84375 -4.289062 5.15625 -4.4375 L 5.578125 -4.4375 L 5.53125 -4.1875 C 5.25 -4.101562 5.035156 -3.929688 4.890625 -3.671875 L 4.234375 -2.5 L 4.28125 -1.21875 C 4.289062 -0.78125 4.34375 -0.539062 4.4375 -0.5 C 4.46875 -0.476562 4.507812 -0.46875 4.5625 -0.46875 C 4.71875 -0.46875 4.941406 -0.546875 5.234375 -0.703125 L 5.125 -0.203125 C 4.820312 -0.046875 4.550781 0.03125 4.3125 0.03125 C 4.070312 0.03125 3.867188 -0.0507812 3.703125 -0.21875 C 3.546875 -0.375 3.46875 -0.566406 3.46875 -0.796875 Z M 3.4375 -1.90625 L 3.40625 -3.125 C 3.394531 -3.769531 3.195312 -4.097656 2.8125 -4.109375 C 2.5 -4.109375 2.191406 -3.9375 1.890625 -3.59375 C 1.628906 -3.3125 1.4375 -2.851562 1.3125 -2.21875 C 1.257812 -1.9375 1.234375 -1.6875 1.234375 -1.46875 C 1.234375 -1.207031 1.269531 -0.992188 1.34375 -0.828125 C 1.488281 -0.515625 1.726562 -0.359375 2.0625 -0.359375 C 2.425781 -0.359375 2.796875 -0.707031 3.171875 -1.40625 Z M 3.4375 -1.90625 "/> </symbol> <symbol overflow="visible" id="glyph3-2"> <path style="stroke:none;" d="M 0.296875 -1.28125 L 0.734375 -1.28125 C 0.722656 -1.195312 0.71875 -1.117188 0.71875 -1.046875 C 0.71875 -0.546875 1.0625 -0.296875 1.75 -0.296875 C 2.4375 -0.296875 2.828125 -0.546875 2.921875 -1.046875 C 2.929688 -1.097656 2.9375 -1.164062 2.9375 -1.25 C 2.9375 -1.34375 2.890625 -1.441406 2.796875 -1.546875 C 2.703125 -1.648438 2.457031 -1.769531 2.0625 -1.90625 L 1.546875 -2.09375 C 1.191406 -2.207031 0.957031 -2.34375 0.84375 -2.5 C 0.726562 -2.65625 0.671875 -2.828125 0.671875 -3.015625 C 0.671875 -3.085938 0.675781 -3.164062 0.6875 -3.25 C 0.769531 -3.644531 0.976562 -3.957031 1.3125 -4.1875 C 1.65625 -4.425781 2.070312 -4.546875 2.5625 -4.546875 C 3.0625 -4.546875 3.566406 -4.425781 4.078125 -4.1875 L 3.890625 -3.21875 L 3.453125 -3.21875 C 3.460938 -3.28125 3.46875 -3.335938 3.46875 -3.390625 C 3.46875 -3.597656 3.394531 -3.769531 3.25 -3.90625 C 3.113281 -4.050781 2.882812 -4.125 2.5625 -4.125 C 1.90625 -4.125 1.535156 -3.898438 1.453125 -3.453125 C 1.441406 -3.398438 1.4375 -3.332031 1.4375 -3.25 C 1.4375 -3.164062 1.476562 -3.070312 1.5625 -2.96875 C 1.65625 -2.875 1.878906 -2.769531 2.234375 -2.65625 L 2.796875 -2.46875 C 3.191406 -2.34375 3.460938 -2.179688 3.609375 -1.984375 C 3.710938 -1.835938 3.765625 -1.695312 3.765625 -1.5625 C 3.765625 -0.976562 3.53125 -0.535156 3.0625 -0.234375 C 2.695312 0.00390625 2.234375 0.125 1.671875 0.125 C 1.117188 0.125 0.59375 0 0.09375 -0.25 Z M 0.296875 -1.28125 "/> </symbol> <symbol overflow="visible" id="glyph3-3"> <path style="stroke:none;" d="M 0.59375 0 L 1.375 -3.96875 L 0.640625 -3.96875 L 0.71875 -4.421875 L 2.21875 -4.421875 L 2.078125 -3.640625 C 2.273438 -3.929688 2.5 -4.15625 2.75 -4.3125 C 3.007812 -4.46875 3.285156 -4.546875 3.578125 -4.546875 C 4.066406 -4.546875 4.398438 -4.40625 4.578125 -4.125 C 4.679688 -3.945312 4.734375 -3.71875 4.734375 -3.4375 C 4.734375 -3.257812 4.710938 -3.050781 4.671875 -2.8125 L 4.203125 -0.4375 L 4.890625 -0.4375 L 4.8125 0 L 3.359375 0 L 3.859375 -2.5625 C 3.910156 -2.851562 3.9375 -3.09375 3.9375 -3.28125 C 3.9375 -3.445312 3.914062 -3.582031 3.875 -3.6875 C 3.78125 -3.882812 3.566406 -3.984375 3.234375 -3.984375 C 2.867188 -3.984375 2.566406 -3.851562 2.328125 -3.59375 C 2.097656 -3.332031 1.9375 -2.957031 1.84375 -2.46875 L 1.359375 0 Z M 0.59375 0 "/> </symbol> <symbol overflow="visible" id="glyph4-0"> <path style="stroke:none;" d="M 1.0625 0 L 1.0625 -5.046875 L 5.328125 -5.046875 L 5.328125 0 Z M 5.1875 -0.125 L 5.1875 -4.921875 L 1.203125 -4.921875 L 1.203125 -0.125 Z M 5.1875 -0.125 "/> </symbol> <symbol overflow="visible" id="glyph4-1"> <path style="stroke:none;" d="M 3.609375 9.375 L 1.6875 5.125 L 1.09375 5.5625 L 0.9375 5.421875 L 2.15625 4.53125 L 3.953125 8.484375 L 8.375 -0.25 C 8.394531 -0.300781 8.441406 -0.328125 8.515625 -0.328125 C 8.566406 -0.328125 8.609375 -0.3125 8.640625 -0.28125 C 8.671875 -0.25 8.6875 -0.207031 8.6875 -0.15625 C 8.6875 -0.132812 8.679688 -0.117188 8.671875 -0.109375 L 3.921875 9.296875 C 3.898438 9.347656 3.859375 9.375 3.796875 9.375 Z M 3.609375 9.375 "/> </symbol> <symbol overflow="visible" id="glyph5-0"> <path style="stroke:none;" d="M 1.078125 0 L 1.078125 -6.25 L 5.359375 -6.25 L 5.359375 0 Z M 5.21875 -0.15625 L 5.21875 -6.09375 L 1.203125 -6.09375 L 1.203125 -0.15625 Z M 5.21875 -0.15625 "/> </symbol> <symbol overflow="visible" id="glyph5-1"> <path style="stroke:none;" d="M 0.1875 11.59375 L 0.1875 11.1875 L 1.484375 11.1875 L 1.484375 0 L 0.1875 0 L 0.1875 -0.40625 L 1.828125 -0.40625 L 1.828125 11.59375 Z M 0.1875 11.59375 "/> </symbol> </g> </defs> <g id="surface1"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <use xlink:href="#glyph0-1" x="-1.058594" y="1.822412"/> </g> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <use xlink:href="#glyph1-1" x="2.796875" y="11.185547"/> </g> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <use xlink:href="#glyph2-1" x="16.070312" y="11.185547"/> </g> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <use xlink:href="#glyph1-2" x="28.199219" y="11.185547"/> </g> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <use xlink:href="#glyph3-1" x="33.820312" y="12.517578"/> </g> <path style="fill:none;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 41.210938 -3.762922 L 54.203125 -3.762922 " transform="matrix(1,0,0,1,0,11.184797)"/> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <use xlink:href="#glyph3-2" x="45.617188" y="4.541016"/> </g> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <use xlink:href="#glyph4-1" x="40.273438" y="9.678072"/> </g> <path style="fill:none;stroke-width:0.426;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48.75 -1.614484 L 53.992188 -1.614484 " transform="matrix(1,0,0,1,0,11.184797)"/> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <use xlink:href="#glyph3-3" x="48.839844" y="16.693359"/> </g> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <use xlink:href="#glyph2-2" x="55.769531" y="11.185547"/> </g> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <use xlink:href="#glyph1-1" x="62.914062" y="11.185547"/> </g> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <use xlink:href="#glyph2-3" x="76.1875" y="11.181641"/> </g> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <use xlink:href="#glyph1-2" x="88.316406" y="11.185547"/> </g> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <use xlink:href="#glyph3-1" x="93.9375" y="12.517578"/> </g> <path style="fill:none;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 101.328125 -3.762922 L 114.320312 -3.762922 " transform="matrix(1,0,0,1,0,11.184797)"/> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <use xlink:href="#glyph3-2" x="105.734375" y="4.541016"/> </g> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <use xlink:href="#glyph4-1" x="100.390625" y="9.678072"/> </g> <path style="fill:none;stroke-width:0.426;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 108.867188 -1.614484 L 114.109375 -1.614484 " transform="matrix(1,0,0,1,0,11.184797)"/> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <use xlink:href="#glyph3-3" x="108.957031" y="16.693359"/> </g> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <use xlink:href="#glyph5-1" x="116.132812" y="1.822412"/> </g> </g> </svg> ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/example-watermark.svg��������������������������������������0000664�0000000�0000000�00000004016�14163570564�0024537�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg version="1.0" viewBox="0 0 600 400" xmlns="http://www.w3.org/2000/svg" width="1200" height="800"> <path d="m85.526 129.12c-104.09 1.7178-20.103 16.61-25.02 35.387-32.401 6.1638-60.883-36.82-40.32-63.649 12.471-23.36 54.108-26.682 64.546 0.14523 4.0322 8.7338 4.6439 19.206 0.79466 28.117zm-10.999-7.2501c22.678-25.211-48.936-38.671-29.038-8.6423 8.6909 5.8385 20.436 2.5619 29.038 8.6423zm102.33-1.693c-26.715 7.2431-42.451 40.108-24.539 62.916-9.7468 11.657-20.573-7.3748-16.713-16.58-7.1612-16.618-47.691 16.738-34.985-4.7851 24.129-8.5534 19.261-33.11 17.1-51.417 12.812-3.0273 14.771 31.489 32.661 15.843 7.5603-4.9861 17.647-14.443 26.476-5.9772zm40.678 52.486c-26.868-25.427-32.946 47.158-2.3182 24.736 9.1853-3.9204 20.802-26.075 2.3182-24.736zm25.635 2.395c4.2422 27.723-30.384 47.248-53.37 33.574-24.926-8.5004-17.351-54.652 10.692-48.956 13.645 12.95 45.639-10.013 16.962-14.567-15.438-2.4032-15.922-23.337 2.435-15.115 17.977 5.2345 33.196 26.849 23.281 45.064zm132.39 36.285c-2.3771 12.236-7.7873 47.244-22.309 34.296 5.622-18.994 23.315-62.55-12.424-59.118-20.193 5.1485-13.043 52.456-34.652 43.046 1.1418-18.782 27.683-48.603-4.4586-56.395-31.553-4.9286-21.399 32.342-35.462 47.044-15.16-10.88 1.1763-40.849 8.5515-55.126 27.47-9.6451 108.68 9.3624 100.75 46.251zm25.883 46.058c7.6102 12.333-27.574 68.069-26.062 41.364 9.2128-23.886 21.611-78.762 32.236-98.875 23.252-6.8722 57.5 3.1626 58.836 31.311 2.9198 25.844-22.544 55.497-49.561 44.855-7.788-3.0946-14.548-10.045-15.449-18.654zm48.987-13.082c17.684-24-30.838-47.92-41.733-21.904-10.663 14.171-1.9506 34.518 13.684 40.548 14.889 7.5699 25.504-5.3073 28.049-18.642zm52.646-55.502c12.703 15.108-4.2449 97.999-26.038 90.497 4.7628-31.259 19.465-59.643 26.038-90.497zm81.109 93.113c-104.09 1.7179-20.103 16.61-25.02 35.387-32.401 6.1638-60.883-36.82-40.32-63.649 12.471-23.36 54.108-26.682 64.546 0.14529 4.0322 8.7338 4.6439 19.206 0.79465 28.117zm-10.999-7.2501c22.678-25.211-48.936-38.671-29.038-8.6423 8.6909 5.8385 20.436 2.5619 29.038 8.6423z" fill="#f00" fill-opacity=".25"/> </svg> ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/extended-base-theme.yml������������������������������������0000664�0000000�0000000�00000000104�14163570564�0024715�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������extends: base base: font_family: Times-Roman font_color: 333333 ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/extended-custom-theme.yml����������������������������������0000664�0000000�0000000�00000000103�14163570564�0025314�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������extends: - custom-theme.yml - red-theme.yml base: align: justify �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/extended-default-theme.yml���������������������������������0000664�0000000�0000000�00000000054�14163570564�0025433�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������extends: default base: font_color: 222222 ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/extended-extends-nil-theme.yml�����������������������������0000664�0000000�0000000�00000000111�14163570564�0026233�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������extends: extends-nil-theme.yml heading: font_family: $base_font_family �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/extended-red-theme.yml�������������������������������������0000664�0000000�0000000�00000000100�14163570564�0024551�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������extends: - default - ./red-theme.yml base: font_color: 0000ff ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/extends-nil-empty-theme.yml��������������������������������0000664�0000000�0000000�00000000013�14163570564�0025572�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������extends: ~ ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/extends-nil-theme.yml��������������������������������������0000664�0000000�0000000�00000000054�14163570564�0024443�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������extends: ~ base: font_family: Times-Roman ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/extra-fonts-theme.yml��������������������������������������0000664�0000000�0000000�00000000423�14163570564�0024463�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������extends: default font: catalog: merge: true M+ 1mn: normal: /path/to/mplus1mn-regular.ttf VLGothic: normal: &VLGothic /path/to/vlgothic-regular.ttf bold: *VLGothic italic: *VLGothic bold_italic: *VLGothic fallbacks: - VLGothic ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/faulty.svg�������������������������������������������������0000664�0000000�0000000�00000000246�14163570564�0022416�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" width="200" height="200"><rect width="200" height="200" fill="red"></rect><foobar/></svg> ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/footer-bg-letter.svg���������������������������������������0000664�0000000�0000000�00000000276�14163570564�0024276�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg version="1.1" viewBox="0 0 612 30" xmlns="http://www.w3.org/2000/svg"> <rect y="20" width="612" height="10" fill="#87cdde"/> <rect y="0" width="612" height="10" fill="#e580ff"/> </svg> ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/glyph-font-test.adoc���������������������������������������0000664�0000000�0000000�00000001602�14163570564�0024262�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������[%hardbreaks] // single arrows a → b `→` c c ← b `←` a // double arrows a ⇒ b `⇒` c c ⇐ b `⇐` a // em-dash a--b `c--d` // ellipsis so... `well...` // euro sign 99,99 € `-5,00 €` // trademark sign YOLO™ `ACME™` // math operators To ∞! // circled numbers `①` to `⑳` `❶` to `⓴` // greek Α to Ω // cyrillic Ж // vietnamese Ơ // no-break space and narrow no-break keep{nbsp}close keep close(r) // zero-width space ad{zwsp}joined // word joiner in⁠divisible // hair space almost touching // no-break hyphen fast‑approaching ifeval::["{pdf-theme}"=="default-with-fallback-font"] // check mark ✓ done // upside down e upsidə down // extended monospace punctuation `•` // CJK ぁ よ endif::[] ������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/gradient.svg�����������������������������������������������0000664�0000000�0000000�00000001053�14163570564�0022704�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 40 40" height="40" width="40"> <defs> <linearGradient id="linearGradient" gradientUnits="userSpaceOnUse" x1="0" y1="0" x2="40" y2="40"> <stop offset="0" stop-color="#ffffff"/> <stop offset="1" stop-color="#6451a0"/> </linearGradient> </defs> <g> <rect y="0" x="0" height="40" width="40" fill="url(#linearGradient)"/> </g> </svg> �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/green-bar-width-diff.svg�����������������������������������0000664�0000000�0000000�00000027676�14163570564�0025017�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg version="1.1" viewBox="0 0 100.26296 20.00001" width="100.26297" height="20.0" xmlns="http://www.w3.org/2000/svg"> <clipPath id="a"> <rect width="100" height="20" rx="3" fill="#fff"/> </clipPath> <g clip-path="url(#a)"> <path d="M0 0h37v20H0z" fill="#555"/> <path d="M37 0h63v20H37z" fill="#4c1"/> </g> <g fill="#fff"> <g transform="scale(.1)" fill="#010101" fill-opacity=".3"> <path d="m79.988 72.764v17.08h20.356v7.6807h-20.356v32.656q0 7.3584 1.9873 9.4531 2.041 2.0947 8.2178 2.0947h10.151v8.2715h-10.151q-11.44 0-15.791-4.2432-4.3506-4.2969-4.3506-15.576v-32.656h-7.251v-7.6807h7.251v-17.08z"/> <path d="m165.16 117.45v4.834h-45.439q0.64453 10.205 6.123 15.576 5.5322 5.3174 15.361 5.3174 5.6934 0 11.011-1.3965 5.3711-1.3965 10.635-4.1895v9.3457q-5.3174 2.2559-10.903 3.4375t-11.333 1.1816q-14.395 0-22.827-8.3789-8.3789-8.3789-8.3789-22.666 0-14.771 7.9492-23.418 8.0029-8.7012 21.538-8.7012 12.139 0 19.175 7.8418 7.0898 7.7881 7.0898 21.216zm-9.8828-2.9004q-0.10742-8.1104-4.5654-12.944-4.4043-4.834-11.709-4.834-8.2715 0-13.267 4.6728-4.9414 4.6728-5.6934 13.159z"/> <path d="m220.04 91.616v9.3457q-4.1894-2.1484-8.7012-3.2227t-9.3457-1.0742q-7.3584 0-11.064 2.2559-3.6523 2.2559-3.6523 6.7676 0 3.4375 2.6318 5.4248 2.6318 1.9336 10.581 3.7061l3.3838 0.75195q10.527 2.2559 14.932 6.3916 4.458 4.082 4.458 11.44 0 8.3789-6.6602 13.267-6.6064 4.8877-18.208 4.8877-4.834 0-10.098-0.9668-5.21-0.91309-11.011-2.793v-10.205q5.4785 2.8467 10.796 4.2969 5.3174 1.3965 10.527 1.3965 6.9824 0 10.742-2.3633 3.7598-2.417 3.7598-6.7676 0-4.0283-2.7393-6.1768-2.6855-2.1484-11.87-4.1358l-3.4375-0.80566q-9.1846-1.9336-13.267-5.9082-4.082-4.0283-4.082-11.011 0-8.4863 6.0156-13.105 6.0156-4.6191 17.08-4.6191 5.4785 0 10.312 0.80566 4.834 0.80566 8.916 2.417z"/> <path d="m249.13 72.764v17.08h20.356v7.6807h-20.356v32.656q0 7.3584 1.9873 9.4531 2.041 2.0947 8.2178 2.0947h10.151v8.2715h-10.151q-11.44 0-15.791-4.2432-4.3506-4.2969-4.3506-15.576v-32.656h-7.251v-7.6807h7.251v-17.08z"/> <path d="m321.2 91.616v9.3457q-4.1894-2.1484-8.7012-3.2227t-9.3457-1.0742q-7.3584 0-11.064 2.2559-3.6523 2.2559-3.6523 6.7676 0 3.4375 2.6318 5.4248 2.6318 1.9336 10.581 3.7061l3.3838 0.75195q10.527 2.2559 14.932 6.3916 4.458 4.082 4.458 11.44 0 8.3789-6.6602 13.267-6.6064 4.8877-18.208 4.8877-4.834 0-10.098-0.9668-5.21-0.91309-11.011-2.793v-10.205q5.4785 2.8467 10.796 4.2969 5.3174 1.3965 10.527 1.3965 6.9824 0 10.742-2.3633 3.7598-2.417 3.7598-6.7676 0-4.0283-2.7393-6.1768-2.6856-2.1484-11.87-4.1358l-3.4375-0.80566q-9.1846-1.9336-13.267-5.9082-4.082-4.0283-4.082-11.011 0-8.4863 6.0156-13.105 6.0156-4.6191 17.08-4.6191 5.4785 0 10.312 0.80566 4.834 0.80566 8.916 2.417z"/> </g> <g transform="scale(.1)"> <path d="m79.988 62.764v17.08h20.356v7.6807h-20.356v32.656q0 7.3584 1.9873 9.4531 2.041 2.0947 8.2178 2.0947h10.151v8.2715h-10.151q-11.44 0-15.791-4.2432-4.3506-4.2969-4.3506-15.576v-32.656h-7.251v-7.6807h7.251v-17.08z"/> <path d="m165.16 107.45v4.834h-45.439q0.64453 10.205 6.123 15.576 5.5322 5.3174 15.361 5.3174 5.6934 0 11.011-1.3965 5.3711-1.3965 10.635-4.1895v9.3457q-5.3174 2.2559-10.903 3.4375t-11.333 1.1816q-14.395 0-22.827-8.3789-8.3789-8.3789-8.3789-22.666 0-14.771 7.9492-23.418 8.0029-8.7012 21.538-8.7012 12.139 0 19.175 7.8418 7.0898 7.7881 7.0898 21.216zm-9.8828-2.9004q-0.10742-8.1104-4.5654-12.944-4.4043-4.834-11.709-4.834-8.2715 0-13.267 4.6729-4.9414 4.6729-5.6934 13.159z"/> <path d="m220.04 81.616v9.3457q-4.1894-2.1484-8.7012-3.2227t-9.3457-1.0742q-7.3584 0-11.064 2.2559-3.6523 2.2559-3.6523 6.7676 0 3.4375 2.6318 5.4248 2.6318 1.9336 10.581 3.7061l3.3838 0.75195q10.527 2.2559 14.932 6.3916 4.458 4.082 4.458 11.44 0 8.3789-6.6602 13.267-6.6064 4.8877-18.208 4.8877-4.834 0-10.098-0.9668-5.21-0.91309-11.011-2.793v-10.205q5.4785 2.8467 10.796 4.2969 5.3174 1.3965 10.527 1.3965 6.9824 0 10.742-2.3633 3.7598-2.417 3.7598-6.7676 0-4.0283-2.7393-6.1768-2.6855-2.1484-11.87-4.1358l-3.4375-0.80566q-9.1846-1.9336-13.267-5.9082-4.082-4.0283-4.082-11.011 0-8.4863 6.0156-13.105 6.0156-4.6191 17.08-4.6191 5.4785 0 10.312 0.80566 4.834 0.80566 8.916 2.417z"/> <path d="m249.13 62.764v17.08h20.356v7.6807h-20.356v32.656q0 7.3584 1.9873 9.4531 2.041 2.0947 8.2178 2.0947h10.151v8.2715h-10.151q-11.44 0-15.791-4.2432-4.3506-4.2969-4.3506-15.576v-32.656h-7.251v-7.6807h7.251v-17.08z"/> <path d="m321.2 81.616v9.3457q-4.1894-2.1484-8.7012-3.2227t-9.3457-1.0742q-7.3584 0-11.064 2.2559-3.6523 2.2559-3.6523 6.7676 0 3.4375 2.6318 5.4248 2.6318 1.9336 10.581 3.7061l3.3838 0.75195q10.527 2.2559 14.932 6.3916 4.458 4.082 4.458 11.44 0 8.3789-6.6602 13.267-6.6064 4.8877-18.208 4.8877-4.834 0-10.098-0.9668-5.21-0.91309-11.011-2.793v-10.205q5.4785 2.8467 10.796 4.2969 5.3174 1.3965 10.527 1.3965 6.9824 0 10.742-2.3633 3.7598-2.417 3.7598-6.7676 0-4.0283-2.7393-6.1768-2.6856-2.1484-11.87-4.1358l-3.4375-0.80566q-9.1846-1.9336-13.267-5.9082-4.082-4.0283-4.082-11.011 0-8.4863 6.0156-13.105 6.0156-4.6191 17.08-4.6191 5.4785 0 10.312 0.80566 4.834 0.80566 8.916 2.417z"/> </g> <g transform="scale(.1)" fill="#010101" fill-opacity=".3"> <path d="m460.3 119.22q0-10.742-4.458-16.65-4.4043-5.9082-12.407-5.9082-7.9492 0-12.407 5.9082-4.4043 5.9082-4.4043 16.65 0 10.688 4.4043 16.597 4.458 5.9082 12.407 5.9082 8.0029 0 12.407-5.9082 4.458-5.9082 4.458-16.597zm9.8828 23.311q0 15.361-6.8213 22.827-6.8213 7.5195-20.894 7.5195-5.21 0-9.8291-0.80566-4.6191-0.75196-8.9697-2.3633v-9.6142q4.3506 2.3633 8.5938 3.4912 4.2432 1.1279 8.6475 1.1279 9.7217 0 14.556-5.1025 4.834-5.0488 4.834-15.308v-4.8877q-3.0615 5.3174-7.8418 7.9492-4.7803 2.6318-11.44 2.6318-11.064 0-17.832-8.4326-6.7676-8.4326-6.7676-22.344 0-13.965 6.7676-22.397 6.7676-8.4326 17.832-8.4326 6.6602 0 11.44 2.6318 4.7803 2.6318 7.8418 7.9492v-9.1309h9.8828z"/> <path d="m524.7 99.082q-1.665-0.9668-3.6524-1.3965-1.9336-0.4834-4.2969-0.4834-8.3789 0-12.891 5.4785-4.458 5.4248-4.458 15.63v31.689h-9.9365v-60.156h9.9365v9.3457q3.1152-5.4785 8.1104-8.1104 4.9951-2.6855 12.139-2.6855 1.0205 0 2.2559 0.16113 1.2354 0.10742 2.7393 0.37598z"/> <path d="m583.56 117.45v4.834h-45.439q0.64453 10.205 6.123 15.576 5.5322 5.3174 15.361 5.3174 5.6934 0 11.011-1.3965 5.3711-1.3965 10.635-4.1895v9.3457q-5.3174 2.2559-10.903 3.4375t-11.333 1.1816q-14.395 0-22.827-8.3789-8.3789-8.3789-8.3789-22.666 0-14.771 7.9492-23.418 8.0029-8.7012 21.538-8.7012 12.139 0 19.175 7.8418 7.0898 7.7881 7.0898 21.216zm-9.8828-2.9004q-0.10742-8.1104-4.5654-12.944-4.4043-4.834-11.709-4.834-8.2715 0-13.267 4.6728-4.9414 4.6728-5.6934 13.159z"/> <path d="m650.54 117.45v4.834h-45.439q0.64453 10.205 6.123 15.576 5.5322 5.3174 15.361 5.3174 5.6934 0 11.011-1.3965 5.3711-1.3965 10.635-4.1895v9.3457q-5.3174 2.2559-10.903 3.4375t-11.333 1.1816q-14.395 0-22.827-8.3789-8.3789-8.3789-8.3789-22.666 0-14.771 7.9492-23.418 8.0029-8.7012 21.538-8.7012 12.139 0 19.175 7.8418 7.0898 7.7881 7.0898 21.216zm-9.8828-2.9004q-0.10742-8.1104-4.5654-12.944-4.4043-4.834-11.709-4.834-8.2715 0-13.267 4.6728-4.9414 4.6728-5.6934 13.159z"/> <path d="m716.06 113.69v36.309h-9.8828v-35.986q0-8.54-3.3301-12.783-3.3301-4.2432-9.9902-4.2432-8.0029 0-12.622 5.1025-4.6191 5.1025-4.6191 13.911v33.999h-9.9365v-60.156h9.9365v9.3457q3.5449-5.4248 8.3252-8.1104 4.834-2.6855 11.118-2.6855 10.366 0 15.684 6.4453 5.3174 6.3916 5.3174 18.853z"/> <path d="m812.68 119.98q0-10.903-4.5117-17.08-4.458-6.2305-12.3-6.2305-7.8418 0-12.354 6.2305-4.458 6.1768-4.458 17.08t4.458 17.134q4.5117 6.1768 12.354 6.1768 7.8418 0 12.3-6.1768 4.5117-6.2305 4.5117-17.134zm-33.623-21.001q3.1152-5.3711 7.8418-7.9492 4.7803-2.6318 11.387-2.6318 10.957 0 17.778 8.7012 6.875 8.7012 6.875 22.881 0 14.18-6.875 22.881-6.8213 8.7012-17.778 8.7012-6.6064 0-11.387-2.5781-4.7266-2.6318-7.8418-8.0029v9.0234h-9.9365v-83.574h9.9365z"/> <path d="m865.96 119.76q-11.978 0-16.597 2.7393-4.6192 2.7393-4.6192 9.3457 0 5.2637 3.4375 8.3789 3.4912 3.0615 9.4531 3.0615 8.2178 0 13.159-5.8008 4.9951-5.8545 4.9951-15.522v-2.2022zm19.712-4.082v34.321h-9.8828v-9.1309q-3.3838 5.4785-8.4326 8.1104-5.0488 2.5781-12.354 2.5781-9.2383 0-14.717-5.1562-5.4248-5.21-5.4248-13.911 0-10.151 6.7676-15.308 6.8213-5.1562 20.303-5.1562h13.857v-0.9668q0-6.8213-4.5117-10.527-4.458-3.7598-12.568-3.7598-5.1562 0-10.044 1.2354-4.8877 1.2354-9.3994 3.7061v-9.1309q5.4248-2.0947 10.527-3.1152 5.1025-1.0742 9.9365-1.0742 13.052 0 19.497 6.7676 6.4453 6.7676 6.4453 20.518z"/> <path d="m940.24 99.082q-1.665-0.9668-3.6523-1.3965-1.9336-0.4834-4.2969-0.4834-8.3789 0-12.891 5.4785-4.458 5.4248-4.458 15.63v31.689h-9.9365v-60.156h9.9365v9.3457q3.1152-5.4785 8.1104-8.1104 4.9951-2.6855 12.139-2.6855 1.0205 0 2.2559 0.16113 1.2354 0.10742 2.7393 0.37598z"/> </g> <g transform="scale(.1)"> <path d="m460.3 109.22q0-10.742-4.458-16.65-4.4043-5.9082-12.407-5.9082-7.9492 0-12.407 5.9082-4.4043 5.9082-4.4043 16.65 0 10.688 4.4043 16.597 4.458 5.9082 12.407 5.9082 8.0029 0 12.407-5.9082 4.458-5.9082 4.458-16.597zm9.8828 23.311q0 15.361-6.8213 22.827-6.8213 7.5195-20.894 7.5195-5.21 0-9.8291-0.80566-4.6191-0.75196-8.9697-2.3633v-9.6142q4.3506 2.3633 8.5938 3.4912 4.2432 1.1279 8.6475 1.1279 9.7217 0 14.556-5.1025 4.834-5.0488 4.834-15.308v-4.8877q-3.0615 5.3174-7.8418 7.9492-4.7803 2.6318-11.44 2.6318-11.064 0-17.832-8.4326-6.7676-8.4326-6.7676-22.344 0-13.965 6.7676-22.397 6.7676-8.4326 17.832-8.4326 6.6602 0 11.44 2.6318 4.7803 2.6318 7.8418 7.9492v-9.1309h9.8828z"/> <path d="m524.7 89.082q-1.665-0.9668-3.6524-1.3965-1.9336-0.4834-4.2969-0.4834-8.3789 0-12.891 5.4785-4.458 5.4248-4.458 15.63v31.689h-9.9365v-60.156h9.9365v9.3457q3.1152-5.4785 8.1104-8.1104 4.9951-2.6855 12.139-2.6855 1.0205 0 2.2559 0.16113 1.2354 0.10742 2.7393 0.37598z"/> <path d="m583.56 107.45v4.834h-45.439q0.64453 10.205 6.123 15.576 5.5322 5.3174 15.361 5.3174 5.6934 0 11.011-1.3965 5.3711-1.3965 10.635-4.1895v9.3457q-5.3174 2.2559-10.903 3.4375t-11.333 1.1816q-14.395 0-22.827-8.3789-8.3789-8.3789-8.3789-22.666 0-14.771 7.9492-23.418 8.0029-8.7012 21.538-8.7012 12.139 0 19.175 7.8418 7.0898 7.7881 7.0898 21.216zm-9.8828-2.9004q-0.10742-8.1104-4.5654-12.944-4.4043-4.834-11.709-4.834-8.2715 0-13.267 4.6729-4.9414 4.6729-5.6934 13.159z"/> <path d="m650.54 107.45v4.834h-45.439q0.64453 10.205 6.123 15.576 5.5322 5.3174 15.361 5.3174 5.6934 0 11.011-1.3965 5.3711-1.3965 10.635-4.1895v9.3457q-5.3174 2.2559-10.903 3.4375t-11.333 1.1816q-14.395 0-22.827-8.3789-8.3789-8.3789-8.3789-22.666 0-14.771 7.9492-23.418 8.0029-8.7012 21.538-8.7012 12.139 0 19.175 7.8418 7.0898 7.7881 7.0898 21.216zm-9.8828-2.9004q-0.10742-8.1104-4.5654-12.944-4.4043-4.834-11.709-4.834-8.2715 0-13.267 4.6729-4.9414 4.6729-5.6934 13.159z"/> <path d="m716.06 103.69v36.309h-9.8828v-35.986q0-8.54-3.3301-12.783t-9.9902-4.2432q-8.0029 0-12.622 5.1025t-4.6191 13.911v33.999h-9.9365v-60.156h9.9365v9.3457q3.5449-5.4248 8.3252-8.1104 4.834-2.6855 11.118-2.6855 10.366 0 15.684 6.4453 5.3174 6.3916 5.3174 18.853z"/> <path d="m812.68 109.98q0-10.903-4.5117-17.08-4.458-6.2305-12.3-6.2305-7.8418 0-12.354 6.2305-4.458 6.1768-4.458 17.08 0 10.903 4.458 17.134 4.5117 6.1768 12.354 6.1768 7.8418 0 12.3-6.1768 4.5117-6.2305 4.5117-17.134zm-33.623-21.001q3.1152-5.3711 7.8418-7.9492 4.7803-2.6318 11.387-2.6318 10.957 0 17.778 8.7012 6.875 8.7012 6.875 22.881 0 14.18-6.875 22.881-6.8213 8.7012-17.778 8.7012-6.6064 0-11.387-2.5781-4.7266-2.6318-7.8418-8.0029v9.0234h-9.9365v-83.574h9.9365z"/> <path d="m865.96 109.76q-11.978 0-16.597 2.7393-4.6192 2.7393-4.6192 9.3457 0 5.2637 3.4375 8.3789 3.4912 3.0615 9.4531 3.0615 8.2178 0 13.159-5.8008 4.9951-5.8545 4.9951-15.522v-2.2022zm19.712-4.082v34.321h-9.8828v-9.1309q-3.3838 5.4785-8.4326 8.1104-5.0488 2.5781-12.354 2.5781-9.2383 0-14.717-5.1562-5.4248-5.21-5.4248-13.911 0-10.151 6.7676-15.308 6.8213-5.1562 20.303-5.1562h13.857v-0.9668q0-6.8213-4.5117-10.527-4.458-3.7598-12.568-3.7598-5.1562 0-10.044 1.2354-4.8877 1.2354-9.3994 3.7061v-9.1309q5.4248-2.0947 10.527-3.1152 5.1025-1.0742 9.9365-1.0742 13.052 0 19.497 6.7676 6.4453 6.7676 6.4453 20.518z"/> <path d="m940.24 89.082q-1.665-0.9668-3.6523-1.3965-1.9336-0.4834-4.2969-0.4834-8.3789 0-12.891 5.4785-4.458 5.4248-4.458 15.63v31.689h-9.9365v-60.156h9.9365v9.3457q3.1152-5.4785 8.1104-8.1104 4.9951-2.6855 12.139-2.6855 1.0205 0 2.2559 0.16113 1.2354 0.10742 2.7393 0.37598z"/> </g> </g> </svg> ������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/green-bar-width.svg����������������������������������������0000664�0000000�0000000�00000027654�14163570564�0024105�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg version="1.1" viewBox="0 0 100 20" width="1000" height="200" xmlns="http://www.w3.org/2000/svg"> <clipPath id="a"> <rect width="100" height="20" rx="3" fill="#fff"/> </clipPath> <g clip-path="url(#a)"> <path d="M0 0h37v20H0z" fill="#555"/> <path d="M37 0h63v20H37z" fill="#4c1"/> </g> <g fill="#fff"> <g transform="scale(.1)" fill="#010101" fill-opacity=".3"> <path d="m79.988 72.764v17.08h20.356v7.6807h-20.356v32.656q0 7.3584 1.9873 9.4531 2.041 2.0947 8.2178 2.0947h10.151v8.2715h-10.151q-11.44 0-15.791-4.2432-4.3506-4.2969-4.3506-15.576v-32.656h-7.251v-7.6807h7.251v-17.08z"/> <path d="m165.16 117.45v4.834h-45.439q0.64453 10.205 6.123 15.576 5.5322 5.3174 15.361 5.3174 5.6934 0 11.011-1.3965 5.3711-1.3965 10.635-4.1895v9.3457q-5.3174 2.2559-10.903 3.4375t-11.333 1.1816q-14.395 0-22.827-8.3789-8.3789-8.3789-8.3789-22.666 0-14.771 7.9492-23.418 8.0029-8.7012 21.538-8.7012 12.139 0 19.175 7.8418 7.0898 7.7881 7.0898 21.216zm-9.8828-2.9004q-0.10742-8.1104-4.5654-12.944-4.4043-4.834-11.709-4.834-8.2715 0-13.267 4.6728-4.9414 4.6728-5.6934 13.159z"/> <path d="m220.04 91.616v9.3457q-4.1894-2.1484-8.7012-3.2227t-9.3457-1.0742q-7.3584 0-11.064 2.2559-3.6523 2.2559-3.6523 6.7676 0 3.4375 2.6318 5.4248 2.6318 1.9336 10.581 3.7061l3.3838 0.75195q10.527 2.2559 14.932 6.3916 4.458 4.082 4.458 11.44 0 8.3789-6.6602 13.267-6.6064 4.8877-18.208 4.8877-4.834 0-10.098-0.9668-5.21-0.91309-11.011-2.793v-10.205q5.4785 2.8467 10.796 4.2969 5.3174 1.3965 10.527 1.3965 6.9824 0 10.742-2.3633 3.7598-2.417 3.7598-6.7676 0-4.0283-2.7393-6.1768-2.6855-2.1484-11.87-4.1358l-3.4375-0.80566q-9.1846-1.9336-13.267-5.9082-4.082-4.0283-4.082-11.011 0-8.4863 6.0156-13.105 6.0156-4.6191 17.08-4.6191 5.4785 0 10.312 0.80566 4.834 0.80566 8.916 2.417z"/> <path d="m249.13 72.764v17.08h20.356v7.6807h-20.356v32.656q0 7.3584 1.9873 9.4531 2.041 2.0947 8.2178 2.0947h10.151v8.2715h-10.151q-11.44 0-15.791-4.2432-4.3506-4.2969-4.3506-15.576v-32.656h-7.251v-7.6807h7.251v-17.08z"/> <path d="m321.2 91.616v9.3457q-4.1894-2.1484-8.7012-3.2227t-9.3457-1.0742q-7.3584 0-11.064 2.2559-3.6523 2.2559-3.6523 6.7676 0 3.4375 2.6318 5.4248 2.6318 1.9336 10.581 3.7061l3.3838 0.75195q10.527 2.2559 14.932 6.3916 4.458 4.082 4.458 11.44 0 8.3789-6.6602 13.267-6.6064 4.8877-18.208 4.8877-4.834 0-10.098-0.9668-5.21-0.91309-11.011-2.793v-10.205q5.4785 2.8467 10.796 4.2969 5.3174 1.3965 10.527 1.3965 6.9824 0 10.742-2.3633 3.7598-2.417 3.7598-6.7676 0-4.0283-2.7393-6.1768-2.6856-2.1484-11.87-4.1358l-3.4375-0.80566q-9.1846-1.9336-13.267-5.9082-4.082-4.0283-4.082-11.011 0-8.4863 6.0156-13.105 6.0156-4.6191 17.08-4.6191 5.4785 0 10.312 0.80566 4.834 0.80566 8.916 2.417z"/> </g> <g transform="scale(.1)"> <path d="m79.988 62.764v17.08h20.356v7.6807h-20.356v32.656q0 7.3584 1.9873 9.4531 2.041 2.0947 8.2178 2.0947h10.151v8.2715h-10.151q-11.44 0-15.791-4.2432-4.3506-4.2969-4.3506-15.576v-32.656h-7.251v-7.6807h7.251v-17.08z"/> <path d="m165.16 107.45v4.834h-45.439q0.64453 10.205 6.123 15.576 5.5322 5.3174 15.361 5.3174 5.6934 0 11.011-1.3965 5.3711-1.3965 10.635-4.1895v9.3457q-5.3174 2.2559-10.903 3.4375t-11.333 1.1816q-14.395 0-22.827-8.3789-8.3789-8.3789-8.3789-22.666 0-14.771 7.9492-23.418 8.0029-8.7012 21.538-8.7012 12.139 0 19.175 7.8418 7.0898 7.7881 7.0898 21.216zm-9.8828-2.9004q-0.10742-8.1104-4.5654-12.944-4.4043-4.834-11.709-4.834-8.2715 0-13.267 4.6729-4.9414 4.6729-5.6934 13.159z"/> <path d="m220.04 81.616v9.3457q-4.1894-2.1484-8.7012-3.2227t-9.3457-1.0742q-7.3584 0-11.064 2.2559-3.6523 2.2559-3.6523 6.7676 0 3.4375 2.6318 5.4248 2.6318 1.9336 10.581 3.7061l3.3838 0.75195q10.527 2.2559 14.932 6.3916 4.458 4.082 4.458 11.44 0 8.3789-6.6602 13.267-6.6064 4.8877-18.208 4.8877-4.834 0-10.098-0.9668-5.21-0.91309-11.011-2.793v-10.205q5.4785 2.8467 10.796 4.2969 5.3174 1.3965 10.527 1.3965 6.9824 0 10.742-2.3633 3.7598-2.417 3.7598-6.7676 0-4.0283-2.7393-6.1768-2.6855-2.1484-11.87-4.1358l-3.4375-0.80566q-9.1846-1.9336-13.267-5.9082-4.082-4.0283-4.082-11.011 0-8.4863 6.0156-13.105 6.0156-4.6191 17.08-4.6191 5.4785 0 10.312 0.80566 4.834 0.80566 8.916 2.417z"/> <path d="m249.13 62.764v17.08h20.356v7.6807h-20.356v32.656q0 7.3584 1.9873 9.4531 2.041 2.0947 8.2178 2.0947h10.151v8.2715h-10.151q-11.44 0-15.791-4.2432-4.3506-4.2969-4.3506-15.576v-32.656h-7.251v-7.6807h7.251v-17.08z"/> <path d="m321.2 81.616v9.3457q-4.1894-2.1484-8.7012-3.2227t-9.3457-1.0742q-7.3584 0-11.064 2.2559-3.6523 2.2559-3.6523 6.7676 0 3.4375 2.6318 5.4248 2.6318 1.9336 10.581 3.7061l3.3838 0.75195q10.527 2.2559 14.932 6.3916 4.458 4.082 4.458 11.44 0 8.3789-6.6602 13.267-6.6064 4.8877-18.208 4.8877-4.834 0-10.098-0.9668-5.21-0.91309-11.011-2.793v-10.205q5.4785 2.8467 10.796 4.2969 5.3174 1.3965 10.527 1.3965 6.9824 0 10.742-2.3633 3.7598-2.417 3.7598-6.7676 0-4.0283-2.7393-6.1768-2.6856-2.1484-11.87-4.1358l-3.4375-0.80566q-9.1846-1.9336-13.267-5.9082-4.082-4.0283-4.082-11.011 0-8.4863 6.0156-13.105 6.0156-4.6191 17.08-4.6191 5.4785 0 10.312 0.80566 4.834 0.80566 8.916 2.417z"/> </g> <g transform="scale(.1)" fill="#010101" fill-opacity=".3"> <path d="m460.3 119.22q0-10.742-4.458-16.65-4.4043-5.9082-12.407-5.9082-7.9492 0-12.407 5.9082-4.4043 5.9082-4.4043 16.65 0 10.688 4.4043 16.597 4.458 5.9082 12.407 5.9082 8.0029 0 12.407-5.9082 4.458-5.9082 4.458-16.597zm9.8828 23.311q0 15.361-6.8213 22.827-6.8213 7.5195-20.894 7.5195-5.21 0-9.8291-0.80566-4.6191-0.75196-8.9697-2.3633v-9.6142q4.3506 2.3633 8.5938 3.4912 4.2432 1.1279 8.6475 1.1279 9.7217 0 14.556-5.1025 4.834-5.0488 4.834-15.308v-4.8877q-3.0615 5.3174-7.8418 7.9492-4.7803 2.6318-11.44 2.6318-11.064 0-17.832-8.4326-6.7676-8.4326-6.7676-22.344 0-13.965 6.7676-22.397 6.7676-8.4326 17.832-8.4326 6.6602 0 11.44 2.6318 4.7803 2.6318 7.8418 7.9492v-9.1309h9.8828z"/> <path d="m524.7 99.082q-1.665-0.9668-3.6524-1.3965-1.9336-0.4834-4.2969-0.4834-8.3789 0-12.891 5.4785-4.458 5.4248-4.458 15.63v31.689h-9.9365v-60.156h9.9365v9.3457q3.1152-5.4785 8.1104-8.1104 4.9951-2.6855 12.139-2.6855 1.0205 0 2.2559 0.16113 1.2354 0.10742 2.7393 0.37598z"/> <path d="m583.56 117.45v4.834h-45.439q0.64453 10.205 6.123 15.576 5.5322 5.3174 15.361 5.3174 5.6934 0 11.011-1.3965 5.3711-1.3965 10.635-4.1895v9.3457q-5.3174 2.2559-10.903 3.4375t-11.333 1.1816q-14.395 0-22.827-8.3789-8.3789-8.3789-8.3789-22.666 0-14.771 7.9492-23.418 8.0029-8.7012 21.538-8.7012 12.139 0 19.175 7.8418 7.0898 7.7881 7.0898 21.216zm-9.8828-2.9004q-0.10742-8.1104-4.5654-12.944-4.4043-4.834-11.709-4.834-8.2715 0-13.267 4.6728-4.9414 4.6728-5.6934 13.159z"/> <path d="m650.54 117.45v4.834h-45.439q0.64453 10.205 6.123 15.576 5.5322 5.3174 15.361 5.3174 5.6934 0 11.011-1.3965 5.3711-1.3965 10.635-4.1895v9.3457q-5.3174 2.2559-10.903 3.4375t-11.333 1.1816q-14.395 0-22.827-8.3789-8.3789-8.3789-8.3789-22.666 0-14.771 7.9492-23.418 8.0029-8.7012 21.538-8.7012 12.139 0 19.175 7.8418 7.0898 7.7881 7.0898 21.216zm-9.8828-2.9004q-0.10742-8.1104-4.5654-12.944-4.4043-4.834-11.709-4.834-8.2715 0-13.267 4.6728-4.9414 4.6728-5.6934 13.159z"/> <path d="m716.06 113.69v36.309h-9.8828v-35.986q0-8.54-3.3301-12.783-3.3301-4.2432-9.9902-4.2432-8.0029 0-12.622 5.1025-4.6191 5.1025-4.6191 13.911v33.999h-9.9365v-60.156h9.9365v9.3457q3.5449-5.4248 8.3252-8.1104 4.834-2.6855 11.118-2.6855 10.366 0 15.684 6.4453 5.3174 6.3916 5.3174 18.853z"/> <path d="m812.68 119.98q0-10.903-4.5117-17.08-4.458-6.2305-12.3-6.2305-7.8418 0-12.354 6.2305-4.458 6.1768-4.458 17.08t4.458 17.134q4.5117 6.1768 12.354 6.1768 7.8418 0 12.3-6.1768 4.5117-6.2305 4.5117-17.134zm-33.623-21.001q3.1152-5.3711 7.8418-7.9492 4.7803-2.6318 11.387-2.6318 10.957 0 17.778 8.7012 6.875 8.7012 6.875 22.881 0 14.18-6.875 22.881-6.8213 8.7012-17.778 8.7012-6.6064 0-11.387-2.5781-4.7266-2.6318-7.8418-8.0029v9.0234h-9.9365v-83.574h9.9365z"/> <path d="m865.96 119.76q-11.978 0-16.597 2.7393-4.6192 2.7393-4.6192 9.3457 0 5.2637 3.4375 8.3789 3.4912 3.0615 9.4531 3.0615 8.2178 0 13.159-5.8008 4.9951-5.8545 4.9951-15.522v-2.2022zm19.712-4.082v34.321h-9.8828v-9.1309q-3.3838 5.4785-8.4326 8.1104-5.0488 2.5781-12.354 2.5781-9.2383 0-14.717-5.1562-5.4248-5.21-5.4248-13.911 0-10.151 6.7676-15.308 6.8213-5.1562 20.303-5.1562h13.857v-0.9668q0-6.8213-4.5117-10.527-4.458-3.7598-12.568-3.7598-5.1562 0-10.044 1.2354-4.8877 1.2354-9.3994 3.7061v-9.1309q5.4248-2.0947 10.527-3.1152 5.1025-1.0742 9.9365-1.0742 13.052 0 19.497 6.7676 6.4453 6.7676 6.4453 20.518z"/> <path d="m940.24 99.082q-1.665-0.9668-3.6523-1.3965-1.9336-0.4834-4.2969-0.4834-8.3789 0-12.891 5.4785-4.458 5.4248-4.458 15.63v31.689h-9.9365v-60.156h9.9365v9.3457q3.1152-5.4785 8.1104-8.1104 4.9951-2.6855 12.139-2.6855 1.0205 0 2.2559 0.16113 1.2354 0.10742 2.7393 0.37598z"/> </g> <g transform="scale(.1)"> <path d="m460.3 109.22q0-10.742-4.458-16.65-4.4043-5.9082-12.407-5.9082-7.9492 0-12.407 5.9082-4.4043 5.9082-4.4043 16.65 0 10.688 4.4043 16.597 4.458 5.9082 12.407 5.9082 8.0029 0 12.407-5.9082 4.458-5.9082 4.458-16.597zm9.8828 23.311q0 15.361-6.8213 22.827-6.8213 7.5195-20.894 7.5195-5.21 0-9.8291-0.80566-4.6191-0.75196-8.9697-2.3633v-9.6142q4.3506 2.3633 8.5938 3.4912 4.2432 1.1279 8.6475 1.1279 9.7217 0 14.556-5.1025 4.834-5.0488 4.834-15.308v-4.8877q-3.0615 5.3174-7.8418 7.9492-4.7803 2.6318-11.44 2.6318-11.064 0-17.832-8.4326-6.7676-8.4326-6.7676-22.344 0-13.965 6.7676-22.397 6.7676-8.4326 17.832-8.4326 6.6602 0 11.44 2.6318 4.7803 2.6318 7.8418 7.9492v-9.1309h9.8828z"/> <path d="m524.7 89.082q-1.665-0.9668-3.6524-1.3965-1.9336-0.4834-4.2969-0.4834-8.3789 0-12.891 5.4785-4.458 5.4248-4.458 15.63v31.689h-9.9365v-60.156h9.9365v9.3457q3.1152-5.4785 8.1104-8.1104 4.9951-2.6855 12.139-2.6855 1.0205 0 2.2559 0.16113 1.2354 0.10742 2.7393 0.37598z"/> <path d="m583.56 107.45v4.834h-45.439q0.64453 10.205 6.123 15.576 5.5322 5.3174 15.361 5.3174 5.6934 0 11.011-1.3965 5.3711-1.3965 10.635-4.1895v9.3457q-5.3174 2.2559-10.903 3.4375t-11.333 1.1816q-14.395 0-22.827-8.3789-8.3789-8.3789-8.3789-22.666 0-14.771 7.9492-23.418 8.0029-8.7012 21.538-8.7012 12.139 0 19.175 7.8418 7.0898 7.7881 7.0898 21.216zm-9.8828-2.9004q-0.10742-8.1104-4.5654-12.944-4.4043-4.834-11.709-4.834-8.2715 0-13.267 4.6729-4.9414 4.6729-5.6934 13.159z"/> <path d="m650.54 107.45v4.834h-45.439q0.64453 10.205 6.123 15.576 5.5322 5.3174 15.361 5.3174 5.6934 0 11.011-1.3965 5.3711-1.3965 10.635-4.1895v9.3457q-5.3174 2.2559-10.903 3.4375t-11.333 1.1816q-14.395 0-22.827-8.3789-8.3789-8.3789-8.3789-22.666 0-14.771 7.9492-23.418 8.0029-8.7012 21.538-8.7012 12.139 0 19.175 7.8418 7.0898 7.7881 7.0898 21.216zm-9.8828-2.9004q-0.10742-8.1104-4.5654-12.944-4.4043-4.834-11.709-4.834-8.2715 0-13.267 4.6729-4.9414 4.6729-5.6934 13.159z"/> <path d="m716.06 103.69v36.309h-9.8828v-35.986q0-8.54-3.3301-12.783t-9.9902-4.2432q-8.0029 0-12.622 5.1025t-4.6191 13.911v33.999h-9.9365v-60.156h9.9365v9.3457q3.5449-5.4248 8.3252-8.1104 4.834-2.6855 11.118-2.6855 10.366 0 15.684 6.4453 5.3174 6.3916 5.3174 18.853z"/> <path d="m812.68 109.98q0-10.903-4.5117-17.08-4.458-6.2305-12.3-6.2305-7.8418 0-12.354 6.2305-4.458 6.1768-4.458 17.08 0 10.903 4.458 17.134 4.5117 6.1768 12.354 6.1768 7.8418 0 12.3-6.1768 4.5117-6.2305 4.5117-17.134zm-33.623-21.001q3.1152-5.3711 7.8418-7.9492 4.7803-2.6318 11.387-2.6318 10.957 0 17.778 8.7012 6.875 8.7012 6.875 22.881 0 14.18-6.875 22.881-6.8213 8.7012-17.778 8.7012-6.6064 0-11.387-2.5781-4.7266-2.6318-7.8418-8.0029v9.0234h-9.9365v-83.574h9.9365z"/> <path d="m865.96 109.76q-11.978 0-16.597 2.7393-4.6192 2.7393-4.6192 9.3457 0 5.2637 3.4375 8.3789 3.4912 3.0615 9.4531 3.0615 8.2178 0 13.159-5.8008 4.9951-5.8545 4.9951-15.522v-2.2022zm19.712-4.082v34.321h-9.8828v-9.1309q-3.3838 5.4785-8.4326 8.1104-5.0488 2.5781-12.354 2.5781-9.2383 0-14.717-5.1562-5.4248-5.21-5.4248-13.911 0-10.151 6.7676-15.308 6.8213-5.1562 20.303-5.1562h13.857v-0.9668q0-6.8213-4.5117-10.527-4.458-3.7598-12.568-3.7598-5.1562 0-10.044 1.2354-4.8877 1.2354-9.3994 3.7061v-9.1309q5.4248-2.0947 10.527-3.1152 5.1025-1.0742 9.9365-1.0742 13.052 0 19.497 6.7676 6.4453 6.7676 6.4453 20.518z"/> <path d="m940.24 89.082q-1.665-0.9668-3.6523-1.3965-1.9336-0.4834-4.2969-0.4834-8.3789 0-12.891 5.4785-4.458 5.4248-4.458 15.63v31.689h-9.9365v-60.156h9.9365v9.3457q3.1152-5.4785 8.1104-8.1104 4.9951-2.6855 12.139-2.6855 1.0205 0 2.2559 0.16113 1.2354 0.10742 2.7393 0.37598z"/> </g> </g> </svg> ������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/green-bar.svg����������������������������������������������0000664�0000000�0000000�00000027622�14163570564�0022763�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg version="1.1" viewBox="0 0 100 20" xmlns="http://www.w3.org/2000/svg"> <clipPath id="a"> <rect width="100" height="20" rx="3" fill="#fff"/> </clipPath> <g clip-path="url(#a)"> <path d="M0 0h37v20H0z" fill="#555"/> <path d="M37 0h63v20H37z" fill="#4c1"/> </g> <g fill="#fff"> <g transform="scale(.1)" fill="#010101" fill-opacity=".3"> <path d="m79.988 72.764v17.08h20.356v7.6807h-20.356v32.656q0 7.3584 1.9873 9.4531 2.041 2.0947 8.2178 2.0947h10.151v8.2715h-10.151q-11.44 0-15.791-4.2432-4.3506-4.2969-4.3506-15.576v-32.656h-7.251v-7.6807h7.251v-17.08z"/> <path d="m165.16 117.45v4.834h-45.439q0.64453 10.205 6.123 15.576 5.5322 5.3174 15.361 5.3174 5.6934 0 11.011-1.3965 5.3711-1.3965 10.635-4.1895v9.3457q-5.3174 2.2559-10.903 3.4375t-11.333 1.1816q-14.395 0-22.827-8.3789-8.3789-8.3789-8.3789-22.666 0-14.771 7.9492-23.418 8.0029-8.7012 21.538-8.7012 12.139 0 19.175 7.8418 7.0898 7.7881 7.0898 21.216zm-9.8828-2.9004q-0.10742-8.1104-4.5654-12.944-4.4043-4.834-11.709-4.834-8.2715 0-13.267 4.6728-4.9414 4.6728-5.6934 13.159z"/> <path d="m220.04 91.616v9.3457q-4.1894-2.1484-8.7012-3.2227t-9.3457-1.0742q-7.3584 0-11.064 2.2559-3.6523 2.2559-3.6523 6.7676 0 3.4375 2.6318 5.4248 2.6318 1.9336 10.581 3.7061l3.3838 0.75195q10.527 2.2559 14.932 6.3916 4.458 4.082 4.458 11.44 0 8.3789-6.6602 13.267-6.6064 4.8877-18.208 4.8877-4.834 0-10.098-0.9668-5.21-0.91309-11.011-2.793v-10.205q5.4785 2.8467 10.796 4.2969 5.3174 1.3965 10.527 1.3965 6.9824 0 10.742-2.3633 3.7598-2.417 3.7598-6.7676 0-4.0283-2.7393-6.1768-2.6855-2.1484-11.87-4.1358l-3.4375-0.80566q-9.1846-1.9336-13.267-5.9082-4.082-4.0283-4.082-11.011 0-8.4863 6.0156-13.105 6.0156-4.6191 17.08-4.6191 5.4785 0 10.312 0.80566 4.834 0.80566 8.916 2.417z"/> <path d="m249.13 72.764v17.08h20.356v7.6807h-20.356v32.656q0 7.3584 1.9873 9.4531 2.041 2.0947 8.2178 2.0947h10.151v8.2715h-10.151q-11.44 0-15.791-4.2432-4.3506-4.2969-4.3506-15.576v-32.656h-7.251v-7.6807h7.251v-17.08z"/> <path d="m321.2 91.616v9.3457q-4.1894-2.1484-8.7012-3.2227t-9.3457-1.0742q-7.3584 0-11.064 2.2559-3.6523 2.2559-3.6523 6.7676 0 3.4375 2.6318 5.4248 2.6318 1.9336 10.581 3.7061l3.3838 0.75195q10.527 2.2559 14.932 6.3916 4.458 4.082 4.458 11.44 0 8.3789-6.6602 13.267-6.6064 4.8877-18.208 4.8877-4.834 0-10.098-0.9668-5.21-0.91309-11.011-2.793v-10.205q5.4785 2.8467 10.796 4.2969 5.3174 1.3965 10.527 1.3965 6.9824 0 10.742-2.3633 3.7598-2.417 3.7598-6.7676 0-4.0283-2.7393-6.1768-2.6856-2.1484-11.87-4.1358l-3.4375-0.80566q-9.1846-1.9336-13.267-5.9082-4.082-4.0283-4.082-11.011 0-8.4863 6.0156-13.105 6.0156-4.6191 17.08-4.6191 5.4785 0 10.312 0.80566 4.834 0.80566 8.916 2.417z"/> </g> <g transform="scale(.1)"> <path d="m79.988 62.764v17.08h20.356v7.6807h-20.356v32.656q0 7.3584 1.9873 9.4531 2.041 2.0947 8.2178 2.0947h10.151v8.2715h-10.151q-11.44 0-15.791-4.2432-4.3506-4.2969-4.3506-15.576v-32.656h-7.251v-7.6807h7.251v-17.08z"/> <path d="m165.16 107.45v4.834h-45.439q0.64453 10.205 6.123 15.576 5.5322 5.3174 15.361 5.3174 5.6934 0 11.011-1.3965 5.3711-1.3965 10.635-4.1895v9.3457q-5.3174 2.2559-10.903 3.4375t-11.333 1.1816q-14.395 0-22.827-8.3789-8.3789-8.3789-8.3789-22.666 0-14.771 7.9492-23.418 8.0029-8.7012 21.538-8.7012 12.139 0 19.175 7.8418 7.0898 7.7881 7.0898 21.216zm-9.8828-2.9004q-0.10742-8.1104-4.5654-12.944-4.4043-4.834-11.709-4.834-8.2715 0-13.267 4.6729-4.9414 4.6729-5.6934 13.159z"/> <path d="m220.04 81.616v9.3457q-4.1894-2.1484-8.7012-3.2227t-9.3457-1.0742q-7.3584 0-11.064 2.2559-3.6523 2.2559-3.6523 6.7676 0 3.4375 2.6318 5.4248 2.6318 1.9336 10.581 3.7061l3.3838 0.75195q10.527 2.2559 14.932 6.3916 4.458 4.082 4.458 11.44 0 8.3789-6.6602 13.267-6.6064 4.8877-18.208 4.8877-4.834 0-10.098-0.9668-5.21-0.91309-11.011-2.793v-10.205q5.4785 2.8467 10.796 4.2969 5.3174 1.3965 10.527 1.3965 6.9824 0 10.742-2.3633 3.7598-2.417 3.7598-6.7676 0-4.0283-2.7393-6.1768-2.6855-2.1484-11.87-4.1358l-3.4375-0.80566q-9.1846-1.9336-13.267-5.9082-4.082-4.0283-4.082-11.011 0-8.4863 6.0156-13.105 6.0156-4.6191 17.08-4.6191 5.4785 0 10.312 0.80566 4.834 0.80566 8.916 2.417z"/> <path d="m249.13 62.764v17.08h20.356v7.6807h-20.356v32.656q0 7.3584 1.9873 9.4531 2.041 2.0947 8.2178 2.0947h10.151v8.2715h-10.151q-11.44 0-15.791-4.2432-4.3506-4.2969-4.3506-15.576v-32.656h-7.251v-7.6807h7.251v-17.08z"/> <path d="m321.2 81.616v9.3457q-4.1894-2.1484-8.7012-3.2227t-9.3457-1.0742q-7.3584 0-11.064 2.2559-3.6523 2.2559-3.6523 6.7676 0 3.4375 2.6318 5.4248 2.6318 1.9336 10.581 3.7061l3.3838 0.75195q10.527 2.2559 14.932 6.3916 4.458 4.082 4.458 11.44 0 8.3789-6.6602 13.267-6.6064 4.8877-18.208 4.8877-4.834 0-10.098-0.9668-5.21-0.91309-11.011-2.793v-10.205q5.4785 2.8467 10.796 4.2969 5.3174 1.3965 10.527 1.3965 6.9824 0 10.742-2.3633 3.7598-2.417 3.7598-6.7676 0-4.0283-2.7393-6.1768-2.6856-2.1484-11.87-4.1358l-3.4375-0.80566q-9.1846-1.9336-13.267-5.9082-4.082-4.0283-4.082-11.011 0-8.4863 6.0156-13.105 6.0156-4.6191 17.08-4.6191 5.4785 0 10.312 0.80566 4.834 0.80566 8.916 2.417z"/> </g> <g transform="scale(.1)" fill="#010101" fill-opacity=".3"> <path d="m460.3 119.22q0-10.742-4.458-16.65-4.4043-5.9082-12.407-5.9082-7.9492 0-12.407 5.9082-4.4043 5.9082-4.4043 16.65 0 10.688 4.4043 16.597 4.458 5.9082 12.407 5.9082 8.0029 0 12.407-5.9082 4.458-5.9082 4.458-16.597zm9.8828 23.311q0 15.361-6.8213 22.827-6.8213 7.5195-20.894 7.5195-5.21 0-9.8291-0.80566-4.6191-0.75196-8.9697-2.3633v-9.6142q4.3506 2.3633 8.5938 3.4912 4.2432 1.1279 8.6475 1.1279 9.7217 0 14.556-5.1025 4.834-5.0488 4.834-15.308v-4.8877q-3.0615 5.3174-7.8418 7.9492-4.7803 2.6318-11.44 2.6318-11.064 0-17.832-8.4326-6.7676-8.4326-6.7676-22.344 0-13.965 6.7676-22.397 6.7676-8.4326 17.832-8.4326 6.6602 0 11.44 2.6318 4.7803 2.6318 7.8418 7.9492v-9.1309h9.8828z"/> <path d="m524.7 99.082q-1.665-0.9668-3.6524-1.3965-1.9336-0.4834-4.2969-0.4834-8.3789 0-12.891 5.4785-4.458 5.4248-4.458 15.63v31.689h-9.9365v-60.156h9.9365v9.3457q3.1152-5.4785 8.1104-8.1104 4.9951-2.6855 12.139-2.6855 1.0205 0 2.2559 0.16113 1.2354 0.10742 2.7393 0.37598z"/> <path d="m583.56 117.45v4.834h-45.439q0.64453 10.205 6.123 15.576 5.5322 5.3174 15.361 5.3174 5.6934 0 11.011-1.3965 5.3711-1.3965 10.635-4.1895v9.3457q-5.3174 2.2559-10.903 3.4375t-11.333 1.1816q-14.395 0-22.827-8.3789-8.3789-8.3789-8.3789-22.666 0-14.771 7.9492-23.418 8.0029-8.7012 21.538-8.7012 12.139 0 19.175 7.8418 7.0898 7.7881 7.0898 21.216zm-9.8828-2.9004q-0.10742-8.1104-4.5654-12.944-4.4043-4.834-11.709-4.834-8.2715 0-13.267 4.6728-4.9414 4.6728-5.6934 13.159z"/> <path d="m650.54 117.45v4.834h-45.439q0.64453 10.205 6.123 15.576 5.5322 5.3174 15.361 5.3174 5.6934 0 11.011-1.3965 5.3711-1.3965 10.635-4.1895v9.3457q-5.3174 2.2559-10.903 3.4375t-11.333 1.1816q-14.395 0-22.827-8.3789-8.3789-8.3789-8.3789-22.666 0-14.771 7.9492-23.418 8.0029-8.7012 21.538-8.7012 12.139 0 19.175 7.8418 7.0898 7.7881 7.0898 21.216zm-9.8828-2.9004q-0.10742-8.1104-4.5654-12.944-4.4043-4.834-11.709-4.834-8.2715 0-13.267 4.6728-4.9414 4.6728-5.6934 13.159z"/> <path d="m716.06 113.69v36.309h-9.8828v-35.986q0-8.54-3.3301-12.783-3.3301-4.2432-9.9902-4.2432-8.0029 0-12.622 5.1025-4.6191 5.1025-4.6191 13.911v33.999h-9.9365v-60.156h9.9365v9.3457q3.5449-5.4248 8.3252-8.1104 4.834-2.6855 11.118-2.6855 10.366 0 15.684 6.4453 5.3174 6.3916 5.3174 18.853z"/> <path d="m812.68 119.98q0-10.903-4.5117-17.08-4.458-6.2305-12.3-6.2305-7.8418 0-12.354 6.2305-4.458 6.1768-4.458 17.08t4.458 17.134q4.5117 6.1768 12.354 6.1768 7.8418 0 12.3-6.1768 4.5117-6.2305 4.5117-17.134zm-33.623-21.001q3.1152-5.3711 7.8418-7.9492 4.7803-2.6318 11.387-2.6318 10.957 0 17.778 8.7012 6.875 8.7012 6.875 22.881 0 14.18-6.875 22.881-6.8213 8.7012-17.778 8.7012-6.6064 0-11.387-2.5781-4.7266-2.6318-7.8418-8.0029v9.0234h-9.9365v-83.574h9.9365z"/> <path d="m865.96 119.76q-11.978 0-16.597 2.7393-4.6192 2.7393-4.6192 9.3457 0 5.2637 3.4375 8.3789 3.4912 3.0615 9.4531 3.0615 8.2178 0 13.159-5.8008 4.9951-5.8545 4.9951-15.522v-2.2022zm19.712-4.082v34.321h-9.8828v-9.1309q-3.3838 5.4785-8.4326 8.1104-5.0488 2.5781-12.354 2.5781-9.2383 0-14.717-5.1562-5.4248-5.21-5.4248-13.911 0-10.151 6.7676-15.308 6.8213-5.1562 20.303-5.1562h13.857v-0.9668q0-6.8213-4.5117-10.527-4.458-3.7598-12.568-3.7598-5.1562 0-10.044 1.2354-4.8877 1.2354-9.3994 3.7061v-9.1309q5.4248-2.0947 10.527-3.1152 5.1025-1.0742 9.9365-1.0742 13.052 0 19.497 6.7676 6.4453 6.7676 6.4453 20.518z"/> <path d="m940.24 99.082q-1.665-0.9668-3.6523-1.3965-1.9336-0.4834-4.2969-0.4834-8.3789 0-12.891 5.4785-4.458 5.4248-4.458 15.63v31.689h-9.9365v-60.156h9.9365v9.3457q3.1152-5.4785 8.1104-8.1104 4.9951-2.6855 12.139-2.6855 1.0205 0 2.2559 0.16113 1.2354 0.10742 2.7393 0.37598z"/> </g> <g transform="scale(.1)"> <path d="m460.3 109.22q0-10.742-4.458-16.65-4.4043-5.9082-12.407-5.9082-7.9492 0-12.407 5.9082-4.4043 5.9082-4.4043 16.65 0 10.688 4.4043 16.597 4.458 5.9082 12.407 5.9082 8.0029 0 12.407-5.9082 4.458-5.9082 4.458-16.597zm9.8828 23.311q0 15.361-6.8213 22.827-6.8213 7.5195-20.894 7.5195-5.21 0-9.8291-0.80566-4.6191-0.75196-8.9697-2.3633v-9.6142q4.3506 2.3633 8.5938 3.4912 4.2432 1.1279 8.6475 1.1279 9.7217 0 14.556-5.1025 4.834-5.0488 4.834-15.308v-4.8877q-3.0615 5.3174-7.8418 7.9492-4.7803 2.6318-11.44 2.6318-11.064 0-17.832-8.4326-6.7676-8.4326-6.7676-22.344 0-13.965 6.7676-22.397 6.7676-8.4326 17.832-8.4326 6.6602 0 11.44 2.6318 4.7803 2.6318 7.8418 7.9492v-9.1309h9.8828z"/> <path d="m524.7 89.082q-1.665-0.9668-3.6524-1.3965-1.9336-0.4834-4.2969-0.4834-8.3789 0-12.891 5.4785-4.458 5.4248-4.458 15.63v31.689h-9.9365v-60.156h9.9365v9.3457q3.1152-5.4785 8.1104-8.1104 4.9951-2.6855 12.139-2.6855 1.0205 0 2.2559 0.16113 1.2354 0.10742 2.7393 0.37598z"/> <path d="m583.56 107.45v4.834h-45.439q0.64453 10.205 6.123 15.576 5.5322 5.3174 15.361 5.3174 5.6934 0 11.011-1.3965 5.3711-1.3965 10.635-4.1895v9.3457q-5.3174 2.2559-10.903 3.4375t-11.333 1.1816q-14.395 0-22.827-8.3789-8.3789-8.3789-8.3789-22.666 0-14.771 7.9492-23.418 8.0029-8.7012 21.538-8.7012 12.139 0 19.175 7.8418 7.0898 7.7881 7.0898 21.216zm-9.8828-2.9004q-0.10742-8.1104-4.5654-12.944-4.4043-4.834-11.709-4.834-8.2715 0-13.267 4.6729-4.9414 4.6729-5.6934 13.159z"/> <path d="m650.54 107.45v4.834h-45.439q0.64453 10.205 6.123 15.576 5.5322 5.3174 15.361 5.3174 5.6934 0 11.011-1.3965 5.3711-1.3965 10.635-4.1895v9.3457q-5.3174 2.2559-10.903 3.4375t-11.333 1.1816q-14.395 0-22.827-8.3789-8.3789-8.3789-8.3789-22.666 0-14.771 7.9492-23.418 8.0029-8.7012 21.538-8.7012 12.139 0 19.175 7.8418 7.0898 7.7881 7.0898 21.216zm-9.8828-2.9004q-0.10742-8.1104-4.5654-12.944-4.4043-4.834-11.709-4.834-8.2715 0-13.267 4.6729-4.9414 4.6729-5.6934 13.159z"/> <path d="m716.06 103.69v36.309h-9.8828v-35.986q0-8.54-3.3301-12.783t-9.9902-4.2432q-8.0029 0-12.622 5.1025t-4.6191 13.911v33.999h-9.9365v-60.156h9.9365v9.3457q3.5449-5.4248 8.3252-8.1104 4.834-2.6855 11.118-2.6855 10.366 0 15.684 6.4453 5.3174 6.3916 5.3174 18.853z"/> <path d="m812.68 109.98q0-10.903-4.5117-17.08-4.458-6.2305-12.3-6.2305-7.8418 0-12.354 6.2305-4.458 6.1768-4.458 17.08 0 10.903 4.458 17.134 4.5117 6.1768 12.354 6.1768 7.8418 0 12.3-6.1768 4.5117-6.2305 4.5117-17.134zm-33.623-21.001q3.1152-5.3711 7.8418-7.9492 4.7803-2.6318 11.387-2.6318 10.957 0 17.778 8.7012 6.875 8.7012 6.875 22.881 0 14.18-6.875 22.881-6.8213 8.7012-17.778 8.7012-6.6064 0-11.387-2.5781-4.7266-2.6318-7.8418-8.0029v9.0234h-9.9365v-83.574h9.9365z"/> <path d="m865.96 109.76q-11.978 0-16.597 2.7393-4.6192 2.7393-4.6192 9.3457 0 5.2637 3.4375 8.3789 3.4912 3.0615 9.4531 3.0615 8.2178 0 13.159-5.8008 4.9951-5.8545 4.9951-15.522v-2.2022zm19.712-4.082v34.321h-9.8828v-9.1309q-3.3838 5.4785-8.4326 8.1104-5.0488 2.5781-12.354 2.5781-9.2383 0-14.717-5.1562-5.4248-5.21-5.4248-13.911 0-10.151 6.7676-15.308 6.8213-5.1562 20.303-5.1562h13.857v-0.9668q0-6.8213-4.5117-10.527-4.458-3.7598-12.568-3.7598-5.1562 0-10.044 1.2354-4.8877 1.2354-9.3994 3.7061v-9.1309q5.4248-2.0947 10.527-3.1152 5.1025-1.0742 9.9365-1.0742 13.052 0 19.497 6.7676 6.4453 6.7676 6.4453 20.518z"/> <path d="m940.24 89.082q-1.665-0.9668-3.6523-1.3965-1.9336-0.4834-4.2969-0.4834-8.3789 0-12.891 5.4785-4.458 5.4248-4.458 15.63v31.689h-9.9365v-60.156h9.9365v9.3457q3.1152-5.4785 8.1104-8.1104 4.9951-2.6855 12.139-2.6855 1.0205 0 2.2559 0.16113 1.2354 0.10742 2.7393 0.37598z"/> </g> </g> </svg> ��������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/header-bg-letter.svg���������������������������������������0000664�0000000�0000000�00000000276�14163570564�0024230�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg version="1.1" viewBox="0 0 612 30" xmlns="http://www.w3.org/2000/svg"> <rect y="20" width="612" height="10" fill="#e580ff"/> <rect y="0" width="612" height="10" fill="#87cdde"/> </svg> ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/heading-font-family-theme.yml������������������������������0000664�0000000�0000000�00000000060�14163570564�0026030�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������extends: default heading: font-family: M+ 1mn ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/hello.adoc�������������������������������������������������0000664�0000000�0000000�00000000006�14163570564�0022316�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������hello ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/hex-color-shorthand-theme.yml������������������������������0000664�0000000�0000000�00000000443�14163570564�0026103�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# this is a line comment brand: primary: #428bca base: # this is a trailing line comment font_color: #222 border_color: #DDDDDD page: background: color: '#fefefe' link: font_color: $brand_primary literal: font_color: "#a00" footer: background_color: null font-color: 009 �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/i18n-font-test.adoc����������������������������������������0000664�0000000�0000000�00000007433�14163570564�0023726�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������= i18n Font Test :icons: font :credit: http://clagnut.com/blog/2380 [abstract] Grumpy wizards make toxic brew for the evil Queen and Jack. But they feared not, for they had the many tongues of Noto Serif on their side. == Diacritics À Á Â Ã Ä Å Ā Ă Ą Ǻ Ȁ Ȃ Æ Ǽ Ć Ç Ĉ Ċ Č Ď Đ Ð Ḍ DZ Dz DŽ Dž È É Ê Ë Ē Ĕ Ė Ę Ẽ Ě Ẹ Ȅ Ȇ Ə Ǵ Ĝ Ğ Ġ Ģ Ĥ Ħ Ḥ Ĭ Ì Í Î Ï İ Ĩ Ī Į Ị Ȉ Ȋ IJ Ĵ Ķ Ĺ Ļ Ľ Ŀ Ł LJ Lj Ñ Ń Ņ Ň Ṅ Ŋ NJ Nj Ò Ó Ô Õ Ö Ō Ŏ Ő Ø Ǿ Ǫ Ọ Ȍ Ȏ Œ Þ Ŕ Ŗ Ř Ṛ Ȑ Ȓ Ś Ŝ Š Ș Ş Ṣ Ŧ Ť Ț Ţ Ṭ Ù Ú Û Ü Ũ Ū Ŭ Ů Ű Ų Ụ Ȕ Ȗ Ẁ Ẃ Ẅ Ŵ Ý Ŷ Ÿ Ỳ Ỹ Ź Ż Ž Ẓ à á â ã ä å ā ă ą ǻ ȁ ȃ æ ǽ ć ç ĉ ċ č ď đ ð ḍ dz dž è é ê ë ē ĕ ė ę ě ẽ ẹ ȅ ȇ ə ǵ ĝ ğ ġ ģ ĥ ħ ḥ ì í î ï ĩ ī į ĭ ị ȉ ȋ ij ĵ ķ ĸ ĺ ļ ľ ŀ ł lj ń ʼn ņ ň ñ ṅ ŋ nj ò ó ô õ ö ø ō ŏ ő ǿ ǫ ọ ȍ ȏ œ þ ŕ ŗ ř ṛ ȑ ȓ ś ŝ š ș ş ṣ ß ŧ ť ț ţ ṭ ù ú û ü ũ ū ŭ ů ű ų ụ ȕ ȗ µ μ ẁ ẃ ẅ ŵ ý ÿ ŷ ỳ ỹ ź ż ž ẓ == List Markers .Greek numeration [lowergreek] . one . two . three .Checklist * [x] Checked * [ ] Unchecked == Characters By Language === Bulgarian Ах чудна българска земьо, полюшвай цъфтящи жита. === Catalan «Dóna amor que seràs feliç!». Això, il·lús company geniüt, ja és un lluït rètol blavís. === Croatian Gojazni đačić s biciklom drži hmelj i finu vatu u džepu nošnje. === Czech Příliš žluťoučký kůň úpěl ďábelské ódy. === Danish Quizdeltagerne spiste jordbær med fløde, mens cirkusklovnen Walther spillede på xylofon. === Dutch Lynx c.q. vos prikt bh: dag zwemjuf! === Finnish Albert osti fagotin ja töräytti puhkuvan melodian. === French Voyez le brick géant que j’examine près du wharf. === German Victor jagt zwölf Boxkämpfer quer über den großen Sylter Deich. === Greek Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός. === Hungarian Árvíztűrő tükörfúrógép. === Icelandic Kæmi ný öxi hér, ykist þjófum nú bæði víl og ádrepa. === Italian In quel campo si trovan funghi in abbondanza. === Japanese [%hardbreaks] いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす === Korean 키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다. === Norwegian Jeg begynte å fortære en sandwich mens jeg kjørte taxi på vei til quiz. === Polish Pójdźże, kiń tę chmurność w głąb flaszy! === Portuguese À noite, vovô Kowalsky vê o ímã cair no pé do pingüim queixoso e vovó põe açúcar no chá de tâmaras do jabuti feliz. === Romanian Bând whisky, jazologul șprițuit vomă fix în tequila. === Russian Съешь же ещё этих мягких французских булок, да выпей чаю. === Serbian Gojazni đačić s biciklom drži hmelj i finu vatu u džepu nošnje. === Slovak Kŕdeľ ďatľov učí koňa žrať kôru. === Slovenian Šerif bo za vajo spet kuhal domače žgance. === Spanish Benjamín pidió una bebida de kiwi y fresa. Jovencillo emponzoñado de whisky: ¡qué figurota exhibe! === Swedish Byxfjärmat föl gick på duvshowen. === Turkish Saf ve haydut kız çocuğu bin plaj görmüş. === Ukrainian Чуєш їх, доцю, га? == Monospace Text ---- <h1>Hej världen!</h1> <!--1--> <p>Прощай, мир!</p> <!--2--> <p>Compute the Δ from Α to Ω in €, not ₿.</p> <!--3--> ---- <1> `Hej världen!` is Swedish for `Hello, World!`. <2> `Прощай, мир!` is Russian for `Goodbye, World!`. <3> `Δ` is the Greek symbol for delta. �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/interlaced.png���������������������������������������������0000664�0000000�0000000�00000000367�14163570564�0023215�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR��� ��� ������gAMA�1_���IDATxeQ0D:(u AAAAA$TI~ò¶EuEĺCsGjw<# ^bs8Al.iGZ'(CYd:"k@i2Gpr:1(Kkce s {ig 826N'M����IENDB`�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/invalid-theme.yml������������������������������������������0000664�0000000�0000000�00000000055�14163570564�0023640�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������font: catalog: Sans: regular: 10 �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/logo.png���������������������������������������������������0000664�0000000�0000000�00000006643�14163570564�0022046�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR���@���@���iq���gAMA�� a��� cHRM��z&���������u0��`��:��pQ<���bKGD������C��� pHYs����+���tIME.}dq�� IDATxݛk\E3sg7&R�)yc(OXbAKUUZeX%EV)!(dHDüv}gf7lv&Su{Ͽ9}>zE�Ab2pp088% m&`@o-cb2��)PԾmp p9003;V <Y@`�<A Ӏ[ϴ<g?)ٖKmy@ k Ù_�,I#?Nt,/(>9d!`U~ kPp'i lÞOU 0#ֱ']GߨEDx_|;Iy^R 20K|Z[q:o82tJxo(PLKSA͑-oG)o_t*xS)ߝT 20Xsr7Jc)@Nԉ<1Xj䯻eemGeX]Pשۃ3ݙ@aD)w| 5Go;~Hڹ ؤtŒ_w1jJ/T S?J&ARs6 �pQ]�VW z%|:\x`(w p!m�R!ل3OrMa� !pP:6:<J Ib�vl9ӧcmǥ� %2I�(t  A.kawgH]c/}�O^Dacj,d%s=�`M'>~M}Trm{*ف;tW,U/$(9>Ck=_!33]@ $5L&S# WS]- 5-zӜt3� Cl9d P-sPj2ҽ�2HoLX@_얾~KD!_k3@|h|y�Ltک䮜€Qݳ9l]#lJe:L gL#h6J@UH=P=+Aj s$�~\.Rg&SƠ>K#sLt@ : @/zY'7ʲuԷ7B}y0q`3,@R?GK}o;g[-YEi ?1DLg8g&P$a9LބQ{z#^D}Q97)?Ƶ5ǒ1 nKК2F${0F\{Е]dZ%K׶bB`X%k3\œ QL>q"XsW_2l#Z` 939U7ƖT@wam&O>Fk/Φf=JM'�d`nX aD^rӦ6#ڶ~?_ET�wU9 [v{(i|Զ X jJ/9jݭ|(Ǽ[s@pTiua +֓2?6'dĨA�X�s's.n6 pLZ2=O2N*˞qg$ȑNծz:(_%d SM! <d$m4gp{#$SۇF�@`df1�jnf/3j*L6$vD^#YT?G` g?rq5Jeh,)oa>tm7PRRUmYDb$ʃnG`-!*,(%Ԥ.sQtK5ygAfE<=sN;ŹAo�sˢɖkTـH^ΌA }O}N!v7#` G3<5ze $څu햹/[KܬYӀ1H8;Q~`5fP3>~A܇յCFzu,H_�Q[`X PVo"[Pyt}-5erxlˠRX60[!&}f]A)\Y-F~É?vt�%^x1}~%P�c_<=Xʨh$;9tctuɒS{v3g�2N%$4.c8vD!*F$E^TymvIנwlC}HNQQMf0$K, /bǗ,izX`Uy0�c(ݳNo%k"ʿYysO^;pqX=dɡW"ཌྷ|ںQć68)|hN$wd)?�"Bf_7fG63(J'%X[&<i:Us][:e d'~Gyjk6R}/qdf9%F :PLnWޙnBaOg k)%h�F1\S`*]厸tjGZ@f~d>c@Iyݮ;v *-M *KsW7GRcpS^_ qgiF: �kwӻc/R t \UcG`vĊ *Pݣ"~߯D3e:Rk kR�u'yJZLd!ek߾oUJH^<V9;i،ݡ^di雷*L ^ ~9;w{Q6\aZYѥ d-p Ѓ N ĕϽΩ�iD϶�؄wciͭmV:�#BRZꐖh ~ok<opR̉lAW :A$0ROg<i.OgY5.~ W<t "fg ��^,*_+58ŕn5i斱VX{"O {YO\���%tEXtdate:create�2019-04-04T13:24:46-06:00Oh���%tEXtdate:modify�2019-04-04T13:24:46-06:00���%tEXtDescription�Asciidoctor project logo.V}���tEXtSoftware�www.inkscape.org<���tEXtTitle�AsciidoctorFw6����IENDB`���������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/lorem-ipsum.yml��������������������������������������������0000664�0000000�0000000�00000003603�14163570564�0023365�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������1-line: |- Lorem ipsum dolor sit amet, consectetur adipiscing elit conubia turpis. 1-sentence: |- Lorem ipsum dolor sit amet consectetur adipiscing elit conubia turpis, elementum porttitor sagittis pellentesque dictumst egestas ante praesent. 2-sentences-1-paragraph: |- Lorem ipsum dolor sit amet consectetur adipiscing elit conubia turpis, elementum porttitor sagittis pellentesque dictumst egestas ante praesent. Magna velit egestas quam sociis placerat facilisis felis mauris, primis ridiculus commodo scelerisque eleifend morbi non. 2-sentences-2-paragraphs: |- Lorem ipsum dolor sit amet consectetur adipiscing elit conubia turpis, elementum porttitor sagittis pellentesque dictumst egestas ante praesent. Magna velit egestas quam sociis placerat facilisis felis mauris, primis ridiculus commodo scelerisque eleifend morbi non. 4-sentences-2-paragraphs: |- Lorem ipsum dolor sit amet consectetur adipiscing elit conubia turpis, elementum porttitor sagittis pellentesque dictumst egestas ante praesent. Magna velit egestas quam sociis placerat facilisis felis mauris, primis ridiculus commodo scelerisque eleifend morbi non. Blandit nam porta arcu sociosqu eros libero cras morbi, enim tempus est elementum ut interdum accumsan, hendrerit ornare imperdiet proin vivamus inceptos fames mi, sociis leo odio donec mattis hac. Condimentum egestas velit accumsan lobortis montes quisque mattis curae placerat magna, primis justo tristique elementum facilisis penatibus pretium in scelerisque est, euismod tempor luctus tincidunt sed potenti enim ac ut. 2-paragraphs: |- Unix cat buffer. I'm sorry Dave, I'm afraid I can't do that. Race condition bang endif linux L0phtCrack fork gnu int long stdio.h unix memory leak fail try catch void. Hack the mainframe segfault for hexadecimal private deadlock echo linux float stack alloc brute force tcp false packet. All your base are belong to us. �����������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/page-background-image-theme.yml����������������������������0000664�0000000�0000000�00000000062�14163570564�0026321�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������extends: default page: background-image: bg.png ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/pdf-themes.jar���������������������������������������������0000664�0000000�0000000�00000063634�14163570564�0023135�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������PK��vQ������������ ��META-INF/���PK�����������PK��vQ���������������META-INF/MANIFEST.MFMLK-. K-*ϳR03r.JM,IMu X*h(x$(x%krr�PK`?���?���PK ���� vQ������������ ���pdf-themes/PK�� vQ������������;���pdf-themes/title-page-logo-image-from-fixturesdir-theme.ymlK(IK)RHIMK,)*,I-HLOO2 TuZfEIiQjqJfQ~Ii^A^zt,�PKwp1[B���F���PK��IvQ������������*���pdf-themes/title-page-logo-image-theme.ymlK(IK)RHIMK,)*,I-HLOO2 ,/)+K�PK8���?���PK ����vQ���������������pdf-themes/images/PK��vQ���������������pdf-themes/images/bg.pngX}4ihEŶI-_ȲLXL#I+ 4-kӌx ̬Zi a}=ݳ{{z;9g3zz~9Ae햵89yB<V!V}\V;;A?DpY A6ʾrP>Yc\WUX߹B^ۈm1Gtc88;bAj^Nvx?;.pTKtM[Y1f1Ц^{ؤ>p1,O؂$A^ tGphZ:SA6$$$o&I 9e~PwH~ʐ #8]ɳhG@.eZĹ 9'dvG*'[{<U.y%y+%P*hxDJ;hQ-*߷AJJkj'�zJ42} >iB^p[`k V]&{B-w^%b/Ts ib|Z+3T>3(%IVf$qVRK]c6&uq?j{oO -e=hڱ|=]:zz_8i`S׺؅#I煙Ԫ0͏hW ~f۪o`љs^Mߪ.J �/;I@ڑ1۫ƕ `{l z9<lp|1l44Ok^`tb}e0_8ʸj}Y}nj~ 4m w+nߖCI 4kBu KKgRO[%GiXn+L](>$Mh6[7D^- ̫aE<OJ@KAEH,E; MV&&U`섳%qoS05Tհ\4>uVrݞ rяs $6 Rz[P929Phh(g/F&t D>9R-|J}˫+6GrP$sa,ExMXu啵u'D#F.:ca3+w+՛9^Oa{AhuFp~zqdxa+ = hqixpގΓ6q|PQ{|8%iK%f<1 jB,Dn98�z%zj˄~Z!^,ͺqC>qUMKh2׉mS llF>e:A.+ ✣G{l5IBq2 EȌJG}|I_ vN<àp=tilჴs"2D/OҝF`t;,+sYol2seX9ww֥ݾ7̐M,~NhemD [~25j54y#Y-* 1=d]U*E0#6ŚkXH?h4SKB Iݽ yl\'2[(ۢ3 I&=ȧyPӽ^Xt,V;XmE^ Bx}E\K,D=H\R,Yp\Oy٦/<A#4R>mZPҒ5n!1/fS$auqJ6C񕸎p'KGӉ^f@IpJ!haɈt/BOY.='N d>iT%3D Ճ3sc:1#P'yOW(t'zZㄧ-wRoP9:91a<l6`נcj-,E"_XACMv^5vMw]D_$2|5:E\Gv/9'3ޯǤUi  KC}hQBD`i^|4X +*}޹.LXK[RG>[՗ =PyVv(À8{5>p`tƼ7A%h'SSSbGCQp7&"8*ySℛUO<L\%ս{jXtJPIF'Ν1PJm:ȠTX>v0ÖS:Ωlf|Ww ]7<a%DKZx r=1ۓFXp }o___*86>JR!>3ש=v[x :yGtΈ50HGPxPˊC& 8#=(90)`^G%I~.jnc|:x2HI~ίbFwyoݰ̞x_ϴDwaWo{AA3ɷKH}pBNhw&jw$~Wߝ'{;|�;{?CA ݤ1UUQ!TxtwPKc|[ ����PK��AvQ���������������pdf-themes/images/tux.pngZ[M();h"ݡXww(ŵnL{9ٍTA��e5Q ثfD3 R�W(4抚�/L��4�G����.Y?5D f* y%Ɉ3hɡmb )�d|(>^_>z@2zIFdFzt\=}ɵ =zi22!&X SIquɏ?K9 WתWg}E-߻::#Kk "P; A٣0oo_�V%\8N9QAt\f s&d'ug@ѥtQo싼 \^ }f}Y#5a*b)Ñ,09JŒB1!ɒY+=Ƿ94j!2b<pUĩ \hԱ<V-u#@D{TX$mXMy巊,5̋¢%v,;;QuI"OZRHM6fF+0brl ;f=!K,A/4� 9¥YbMYBIk#gz{T|d ZvqDSfH"ڽ:yx+7, [-.3knB/P1|^,4a`�eVO�o?KcHOc˱dRʉbuIHF})&�>_4m27&dY=KNvW} brS^c2w0݊̋VbIro| ZmS\hB^***B7bZJV4|y0Lv3\.z.`&ګxdE+XǎM#u&R[%r$5x&fZJ3OdKd QOH̊{CZalf$2U,d|Ͳ<Cê<2(ʨ$6cZW~Px9:A=TAz֮Z]9BW4jcK%ݸL/6, x|nXʣui$suW~T01a0_u_B0Ǫ$S2\d'!)*r~tAsH $/i[溓TG,e |f )N j]j޳Ţ EpChCpk== A݇&䔥I9�0]=Mpo H67@�1y _+KsV mǛ+vcDAIO+ΣUV8kձЅ0@C?xyx?cfw%r5{jBĈ3/@R&wtZWo=SEIEsg$Gy)(�71~6`r-;P"֚VSs`NoVm],2(+w)wufoL& 8fHQ(T-{d߈d0={$kQGXfIXɒ|Tl׋#/-&~.ҝ/U&zKҒ nlS JvR(-�ζh7na0%Gmڟ.J),\WnԺ/VBjy8qښy$(g,η$As _7lV iwͲ8],=t1h(<2榠kzZw|/Kj12U).(\&7,/;Z0pE Ah"plXݟpEX> },\Z·bĀƉ+^*;i/ ښZC`v{715wzVX9ޛJ6cw09ׁE!ss jRC\ ]75Bxǽ |GVV gw ~ۄ&LemRDQ Rul;jՕt;ݳ$}%arxW09Ӻ ^|-쪫[Akrßi!@zJ,.'#"Mj Q`g4=8[k8{9A`LɁ4C1{ n( OߣuKr;'LK;WᨾnN<;VדV\<n`9A/ABy40HuTSuqcJNuҠ`->S@ܿ6`&[ǾB�FYTI qVlz0N_ I<wy^][aKzH`q\4�4ʴ6y$ '*DFMz ZV<W0=L&[;:KrN trl}Ad>>q=ly^d"?}!vw,skٸVվ;1 Oy9QD2n;SI:9}Z*La!<qt <p?R89!njld<1ZOɯDQAE}7B°lj+bξryV{:�wNfKu[&eݼƨ ߝzm\n 4m,q8oʨ$|'ĂرrQCss!/dsQg �EN^2XBN3mkwooufE•6Yj(qvcz dm?N7zY ?$;9|Pݻ3;* ^*$2_o'׌K~z:{e%}qpBI0CFn [uE?bMu|!@IÃymv U 3s{uy9dv!zyvfEƏ\+ tk<J)^~>)hU020jx)H#} 61q=v`tӂ'`Tv#x܈<^xI9W18ӹShsmpYj6_lhCGm޷ }/KrQsj aHa\.ٰ-Ҙvp'oy [L2 K7"\Dwz'Wp0}4UI~"+b,EdUf'pccWq7[6ڎ. (3,6N(<rv# '2$Ƈ͍pbGG~ 0?IG,X4Ӡw3Zjb!^]F0~{CT.bqBzZT))1V͗wE LhӮflGԾQyҋXE!�<hdUv9'F(u}.C*1?(? |+֮Lx  x.qa c[S|=O:۷7NWsvl˩%Ոyœ׶?bT.0=�཈=BI:daahG(_98g0~ۮ?ߐ=ޞÄ-[6hs' v+_~kǘ|zn\&r$u[�Q#oBTȩGps2hKKca Fcp�b�!42ggQ{U#.= 8>9b#Q] WKk-9_]7"h1AV|p%BI)+](oTBp.Q'p&1!zwoE9+"qY7؍Y>tQ"K)J**c&{0JJщ'ipdH h+.hrwK_0:2u.o>?0vy®ʎdh2?08# "|ّ@%LXHjBC@c+!VEF8s/ Ozj mlPY=$Y}MiiR =F@$/ D)ʲ1>rbV v'nGAk3WXa1FIZ U2(I d0 �{e> j_F.74EfV(F#F%]N/g> qsb%# n͈BRr%*R�9 `ǥ3jfX̎ Re9ow,P`8p {q2EgsH]:+M '5 1>]R!҄Do TǷ4gbPkpo K^|o0J- ] Eޙ pI<ሱ8_Cʃ'1kk%HI<ЇX#\W@=\S�z-�鬛0tAEEjԁ #WuDB95 ◝BМ�s"O fN PT=sK}־HIKcb�MB!EXw$ƻlOXqeFEW$,2@X:Ƃ�vo>P׭t І g-d&",gTA6 " 8Ol{77�PH*"47x7qȊg6QZ dn9483'sTx�2>dLKq!wĠIN nJ(q1XJ" +� <^덓O鯉&9 VX9�q@_фED&WWäE?SIғɣި0 {V~u3Òa8f=45A63e+7\|2:Ԏ-QrhL Hϫf7 Pֆhr$C&<SBey@щqK{,cAϻts/8,qr(&O{,{O yfٰ- &V81ps{{k+kJ0ֲ}`O!$Xz8g"H2LzrkQ֪bJe[8:Miϩ�Lձe WTzraCK"iq!~B اHg]h_wrV2p HD8,ZD)Rf%ϙ&SKf2[�O@ՑlјzkS&bo%dD1i!yd\GaL81S|OjɈg)䪚u[hr,OW;&A|uGVctys_RVYH1KmoL8S Bº[F 37^viɩ$N.)4a0~2I)l\<ԩgW֛46X HUh~ߏ&RV$ ȋ4_Eӹ %ˈ"J6_0V:7{3y-K5v>TL(f> {Ƃm~.7KvqdOznrj* ޼Q&wd3\.xݑW_oz+/Zh99KK6] o5[; /Ч$STP*w}LD{Sup©YYn4D�U1Ɋ%^ _Sڦ/xS  I+uu9CtgT\jNFj)w,Fۃ F T,pșp_"'cI$ ڻ"I)F) 34~)# U5뙮SU2Qpl}/)a#KL-  5222!y"m1AH)A`nB{nTwo:qC_j_6i:% [IX%$M]".mͧW/GPEЭ0#u8ɑ mhk#h ~^̦R_+1i>ԦbtQ~ߍ#:}nGw+qGaxpN$_4n)X5%m uw24Fꔭ4n#X;k Gy4Mu x"Ϸ[. =f3�0,e+"ܳ 7i{P�1ś=F=$8 LiR0;{i\^u?[Lg5eIfdޢ8c$#ڪ-El _U gF;A9Ja#P`]LrDKDz8ڒr=`"T_e'G?^k0/ե<ht5[t8js= %QLyNWp)GJa8b Y{%@y[/7z=2pGwf<lWny,LL+:ZLy &F zL&k䩚rQ$ sE߈ [Ԑ Opa_nڕߖ"*F�>²|@iD`CeW0FeV>q~r;RS&e:=\G8UPd PiF5α66zʪK?�Ć.i!򃥬f&h6nL"-*o^N%G?j7g-+d +Ȳ0uWOKpHu =OhK"@uD5gm{0Jo,w@4lT&@bqޣΟQFIxeеfD'U⏱+"mEJu3cuj YYZ\a;||7 %3;l|*tm/$P 5ᘎL]xŚ6a k)t\,"QSG N_ҪͯŻ8ce X5Z@E춧io~˛#s{zԛVhrނ <|2)Khù^7h2_ Cf@oN:[A*CMsoj<wp7�\zSKLxfK:^?a?\/٫hUPn]Nq8'me'm?fjOIuJi0zz || _/[5²\m}RQDžEoZH*9�_{cK kmvf2()'m2TzO͆"P@hy)A+7W.Q.܃ H-(8BSQw501!t]jY~qϷƅcRS&J;{Y]XlTR͍z΃'QayS9+]/S><-w0mW,h[Eb+Ղ5=S+*ʙ|KVY@S軽P4>7h!m-_".KX ĭu-eW>OeJ?3:xեC0GO-D{5G.p  ӘXA]9]ߔ$4Ý/._ڭY>fHC NuXռ"d z]aAprvg]o m]dڠ <N"4 PL٘ 77/;'N}a ?Zֵdl/l 5LiˁPZ};Ĩ[R:jW{in<%R4eV=^QcnKZXSicF>7| e@u_g%<\S}{agObg^jm<8wU׿bz Q09I9V X9>4\~8]uqR_m ɯnMuۏ^kA(z5&TN-7䈄SV@L <&w _$o_OUC,cOoʯakr!KZ3Vg(TRv*R$a-U]bk)!,Dv/4kAXx;!x;Q(=9aYӇU|ucu?fzاMݔohsLG#Wțo0c;g NkmN0L cͱ]k~ԓ yj3ք{&5(Ҟcwӂ>k8_`?6['^: dU}K1wФfפ<~Y5#2ԀN\cvê egll:i򄅌ߣ{&!3L=XϢ-!MM>]v3}w&Q1o"pנخv KӨ|ѱ?jv^wu U⸤J' `H]2%#scl X(a`Z};M߭�vNX7!vG&ZnrXNW(,N:r4!^c|L#ym!7[=<p*yDIp긲JQ.*8<t"z!F3A}YYRQ#'H,/m)ՄRkrz::' xb% l|jI J^8Xvm;Sq̹XK: % `֦kRtz'G92ջJ$0WVh6T|E-ZOB\@ kJƧ/-/8|bN&4լt9\R U0tqdutZS\Goh ;>vqtTPQQt!oŒig7mM>P(WIrċ C1gƏ^u jر},Lvc!h1m*`E5|,X6|j ;nI>U% H%7[F?-J@# ~9z<v`+F,寧0{Csswa\Y\dG^yeǧbӁsk2={{rabIA�px]l"viX-X( W#IW:³r:z_yg,֤a&\Ӏ o\4bZQѸjih xoߘڝ'~ F$pu k~u=XxR[ìMBnN+G2hvFns,(JwX-ljQ$fM MssQaolA` l}`yP˧8L{IyHOVshtΝǻfV&//XmT8qeй9|r2L쫀Jb3[y{ͻ6=,~: ΰxe ON|VvC+bO"}SFs1"N-2YnAl'a)_qɺNj"HeX`rREv؝: 2Gl]hрM>s>F7ϛNynH/] p}>.?d[nOa"Cg~%F1g?|,:|+:3F x`Ri2q@nBFHu[ cHRZrJ.{Py/O j=Uݽh_j\OC?TqO;",I\xfe~<1WvW_4߸W^Nzu"x4U6ʫipf~S=>KV&MJ̦%hż|EEij>CxhHΝQIdϔ\0tLfx \SvGsu.\T]9<?U٦r ͧ<)uDi PafV7!ݯɚOyׁp,TS+X.aBdD^%\Lz*\ʬYPS׏,cg|{C#U.4]wzvg^XCA(aO-,@*f=[AW)1KG1p;&`Qv^1vź<X[W7&`)*J5 ڭ)ՋÏ:,ӌ[ݽ(w ޹ Gz3+?4#=Gz1 (2C-h4PmD>8e&;44WluP @Iǎ9lzM"*蛭kD�L�dfubhS H TpfYJ* K;eK`C4_ckL�?YZ Q6T8cbFT;<sJMl]9 [<NDc>$ib>-B3k 7)He+QP@L,;v�i H<(b1 bZ& ׮ #⅓H _oM|$M7R?E+xDŽ� -v4Ql>ؙl6֙t YyЊ9J ;E#95Mr2b5Rx፭#L}΋ @H+YG)* ( @~9 CrD`2IhLhؓdQYD,~ÒV/TSPPhJĂ|7ov.�@EV< Z$agߔI<L ;a;rrR :r[P: 1X/ƺvC;8%#}){yS;> KZÅ(<$'PZ,Ru77a]KMrDam@؁ߖWihO**xZ%ez P\$+}ƃNloA1E6 S.2'XR^+n?(,<Nn z# w8B3р֋ 7jnӀ}8߼~iP苷r:1@)~U+8klbĦ 9ßqSkXdE}[#* Z$)!Yf3 pX^LG޳k"tj WtߓcW;)Qj[OΚ>-W.+tof-s2Ur>~([ؾ%-b(ԮaXZgf`!\F bTPІF􅫉FTw(~Av7E屃r4_zʉZ1PG Wn46{.Y֞_2l(wu(e-X=ԖTx*�YY@<0w b?2bǥ@bbQ*~[� ?1Y;p4|a]ƗBٓR7[9# {WSbpKrF]XО^,ZPܲUZ>�YEp,LplbAgAaOAmZxYAy|?m\{:|vAQ}AmsVZj*CF`'˘8$+V]@LIĈ�4Ina5צVהD�1+P1MZ ]jL ~:G|(Ҩy|h�ytXq]2^Mei7:I+hHQ4*Շ uMXUJE 3{tZ~L}Q9JE'n]?QDb$D5ߗHx!R>'R(:OB/O8qifSF:s[e�ׂqaZ&>Xߦk"!XRG[U~Z#R=?9<k?,R8]n9k oiTXq 8-i5qU啷0 ^B/|w[H:O4@\xe_Ek%Bij\z+x֘OMxƇ_rm O]E ܅fR!f8bF\z;#J1}(6A'hzEb˹su!D@U .~'ReIVo8/p4 u}|62=.616т` H |-rntp-=zCgX0Շ՛ܗtalciܞ[cN/J>:K.g~\%šh{kJf A.ڝ 74Q7[KYBPH]3oϰvS{$~yWq VT%|~p<taf0$amc((uVgwjX^^;c{r.ƅp(ȴM(˵л WhQB%aE$M<D�V0Y3 u,�BBÜEjl_H2JK&+~%n2, y!mChޛu哯;=oިQ4W74';?}dMeN-�SUe_/&I6ZȖlÀYU@S^{, \.WHZF|f}UñTiv^!0IlS0[O~!w2=.N#u^:ՅcI$i|W`C:o2d43CBUR>~:  C@ tUin~٨;ǫٖ"dQ�6nN _ VSAc*I :Jp ѝ7L"$,m+Hx8|F2i=S^#ԢP0 n $O? 4^a+.6ǕͅBz#MZĐH!v %;E׏̟_p-$K� 7{**u\OZ7r/K7*DtؐN ^[*{. Eѡ .Ѧ)mƶx "!c4ޔ`  g&C@/B|s4Fy1|hҬ^2QK@A~P'cɗAy)PK҆7_j5pmOEwS&@]?.<r/"6=U :S>g1fFGc dy:A~S"|Lz_7dfa7!iNgɤs,Ele&GLZSL͊{>a z Vf/5n2Hث{<:#Dž.egF},3߅Z _[Sm\\)!fr!wJ "A% 0q/m *̴r[6^-#;,ZO-7mWMMH4 xq<tIT5ڥ[JC֗R [ ` <v/ TH(ӶkW JV:~ʣrqM$,:Eߥ: v"R9q%ɱ{NY6(*Gd -RW!弇|O;9wVc2vnʋ<^ALmP'w5Au!N3zHxX]V1^~)qPi >k2whJa^�в'X,񫥽UùXt^]R9ǁI7$K/dO0Xp/Kv2]X  zs slJ4X_IR;/3}И./|5?<nwCihIAVᑖ[G[K]7m-8J1 K42y Uiˑ]xOK@GowNe_J(\F@X [E}g%)6qRb΄wTEIn8HGD%Zql@O7k51wʵblI d_@2Q6=En4CC #sˆ@6bS  mPLg6cRPgJJ+ϩEG%w\KHJځB{8QDlєF` gB!qhaIxz\v,dںuẸ[C6jF) >w۰ҥ 57I OhxMcZFvE .LNCہ8~%Eiz\jhbޙo"Sg*`K*촌(ٍ7ٽ 1K ψ~v KVD7 gS/үxP`;jjfs|nb=9/b)G#RJgG{4yJp7~>\.Մ: Kҽ’k~fc7?(4U'T<T\ھ-T-t׬_RCa7 xUk0A'NJOitoiI&}w/`6b)j�MX(1zEAX�I׋u}/XuO_fS E4X ~oHU2iSkR.[5jri1݂Z< } oRz5Ԗ\j&S wT:ѥ_ݘVn2@- %*{fU6իwT:䡤4ܗP-Ri&6e+UN Aèzut7qa@@+:EkLnvm:-ڍ2-ljenL2s:Qc`6l,YF˒rfO'ZerxcZݥXh6튱ԧʞѝ xO=PJbxvOn#{&ߝ޹!n&2X|2$wx-O.je ARgE0ߘ^"IucN穭g3tIn-$ ƌm[6fIֽ~3?5KJ d_c XEƔ?%'X֫[dp2Q5uRrE0.9(,}&EYQv5%Mkmdz)^B�hz2yM(->A4ahTzu뗽_3qpطw\0t>˾yVȯ3rP"hE`KUfFF(1@ƍE-n7J+GALsWq< 8NFXȋb@_轖IDMfή];˿&&s٣(&jCz.572H)kZ XR�(_JQɊ8=%β56-{Tx{ _Gvz"IkjMDBB:<fz ߼Ò`zX9�aV>; 9oá1I]]]۔W%ٰI]<!7fⲮ_J.Q ^C< jEA- ݪH)(npn4 9XMܻQk&!=|Țgώ]WGRRɡՈ~@c_涜7k.lȿ.cBRa $. 6X+a<w(G_B.?eK"b؎IDW;EA:{8>b+Qd?Du2uْ U\wGfʿo>,$8ʂl#J2~2%&nO/853"]3#�=1{tW4ˊN988.A7s%ٞ9~M\N_"T"UuY\o o?O<4bMI=!\֭em))xN=%Wa{N+ F&Do{/FkM{CKfK-rʬ<4QxՓK}Y%{CNKIC`\RK_bUybrۻp+%F{#j5KhRjը"YĞU[QԦTj~wqιzs.9<97T?́Y>HF,ģWZ)î6ٰLHCl rd,ox \ )J^ݡy*9k[w37n略mqZ7r(u4fQT<L:Q 6HOh[2\u6:IE(4 D鼍˞!2C2Ȧg+ GRYB;{gnZ[SW)o\岯5b4 FT|`9uQj φ)RocU&UT�Ym\/ n{-#gcG>)j@Uĸx$-leoddT%S4PEGknC2H)'0&Q(ܠY-_y̷/ \(C瓝hZSHzN^T'jN]J0]8^RǸt\tsڡ9WB+CZ v "3*V1-2+=/`ޞfVju wRl.ޮPpz5~T ._EPs򄖦.~_Y{E_J, w݌']FM\Mtx* !q9 &h&e\ )^^Z)-x"yyθ* l.ŏ<-a3>*X9ϟȭSVܣc%͒I'u7FÕ+'{c_$oQrXL,h/6>1%FkbSΧX5CRdi\C([8ķªlI}|ώ$p|e;-ath{;!?hOACx 8n.ҧ74ധNF8\7YP1X7.E&JԒ<ٿ 40ƩYMWUXa7/sE@o=eI_{#gl .6nټ^[P7zD/1N0OƟܳp^J|9!}U)<F E, f $3SNNN=O$nj|u{heБE"-,DsC i!>w9�2``lGF sẉ;Gy%E a-zj0j{ rKF9&iUStKn$m0\ #i'?;y|;5GH [Wbfnj(h=ޥrޓ#<ut9m#;!xkf}Ѥ4DtȢleb즥 *\8\O/|1׼WߟF.;A'sM{\79U%%2{7":R#ЉEQYp7 {UyqQ)N#'OQ&GU8sBφmߓb!Ө�:;sH BdS.$lYQ߯ZEQ]F#,^ 4 iM42祹v}BsvPd:R?%v>y er–} ዃ0\7~|,J>bs*F64klr¾RBO8?$ b{,sHٰGhEa=QZ9\FBMSlFJ? cn 7rG h 17M5CfL'8oS*^ƛt=8-k.xR4@.Ť"zr kfƠߣDTMM]P$ӺaPA\"4BU xnٓ`C*NC\$<@g  (]CfG\`uK5#eGyyn@16لٍ {s-/-I;\-'oMT]q%Z*=.*o$ gą; NMF.\84DkJЋI~L|l_i֘+(sӫjK3ُs tyLw ߒK>"/.~Z\ Q (\VptԿ]߁!!;(*EWVHЗ& pt=3g]UA^q P*`a_Q_:\dJT 12s8l8ͪˌJ@Gn/*50FD?T<aF5"0&Ih\D;VZ7I^*^X]g׻xҵ)ٷˤMWUҘ(q:I PeOc,A"Ja{liM>E$=?TͬSkHG뱌qN|'T~e@'-A/^B)`Z91T..eqro T6%ϡ'@fe�eJa?Bqn''-5Β9a -^.cPQ<*ʔS|v^T\}*cth]tΕ;:~dY#qP^1䯊힔Odӗ1T!<Lр.2uZPE"֚(!:҇Oy%~w੘›+|[1?^sQ~ neWU*(C8·^hbb-’oIv;J#2S U[ϖLƋڏUH('vgVj3{Ԏ'=M a P7 ϳ,Xq3$أ{ċ (r.,EHw0+}"]0 , k;Rts̍ǐ&)x_tz?Xobѐz7lP_BU.Q(V$r?@k Zk杮{}3M֦O0*a~2K7?P~P3AMr mE�a�I胎gBQ1<E\mg+KnwW'HECm.QFW)2])X\ WP1,'Uᠷb1dST7xxJQx9^{B7v~H|{[$3D_N͒Vv86*BK3;uRT"D4Ţñ=Thߔ:Vw'F7zR,Z;DC\}ɸѠ14&�d &TQz�i!wI6+"nQ-РY($w!9PAnUerla&b AAdOޛO e?stSi8S]0' 2ƈ[r57qfK0AT|9iWXN"An7 Rb䝻K)W²3*QJ@>5t@1Ax]+K-e5t\R-R,Jɿ&EnfYj^"!bUa5&x,'Ō$rwV:>?6pu*79 6k*Z`MWovţ ]6R7yMmJvX 0Vğ%5GRi Ox[S{PcrFms M+mC|o)Pb-pwqh7+#qLnJ//#CPQ?w<T+7ZFۓ5n/y=,N[SMBMܸ< nla]J=ѥzgZYP<d{5"4E츊S?KvNXδJs~ß*,<PZ#<Pr>ˌZRDNԵ zA TҦ|]g!PZEAuc9~/F_[[ێͫ<"`ۓk H= ^!k CfB3^شL_?eji$ΕecD,GY"2#%Fǭ2k:}á�τI�? '#?bUtw,}W1oݵRIػyoS/:|bu^f̦{1ں+t<+s+9ֳ>EgQFb,oF̀N $/Џ5bfoמyn]e /<"#ʝdhMMǣeBLNNÛ,ޠY< 9ԏL^-PDɾDКFvmJ,hdqŠjBUDSjs:ɂiа'.Zmѹ3?-ȝ`W'Ҟ1Ha<$kq*ԧpk_LlFd�AXx9q~I+Z{,s Avrv J9u�s"M ~UU0S{g `-R4A'`HHE~vxTuU˰ݖ<5^2$vpjfߴ )9_Zon/Ih~%|zMo;E�;t�ҫ.D|q]"܀hMqoد0e׳xo[^c$)uEHeO=`*%|tk6% zRl*1_4>$"B2=lQ[Umsa4עs>bx%Xbtt9t8jwQ˄0cJ6WJp]Wp&wIg}wUCWot-P_xMD>h(,<7zrnr#&zF1>gk¤2}1w�צlNy/>"fNh@8G-10<}&VEΈ)+ey =uoZql-qH (}- ̳BDV2fܢ۴ind-hWNח?hY_qy_�c CHKñrHee8BS )�GN;7�ռQEPK0, V��yV��PK��tvQ������������;���pdf-themes/page-background-image-from-fixturesdir-theme.ymlK(IK)RHIMK,)*HLOMJLN//K X)@̊Ң̢ZtX.�PK9XmA���E���PK��QvQ������������*���pdf-themes/page-background-image-theme.ymlK(IK)RHIMK,)*HLOMJLN//K X)@(0YW�PK7���>���PK���vQ����������� ����������������META-INF/��PK���vQ`?���?����������������=���META-INF/MANIFEST.MFPK � ���� vQ������������ ����������������pdf-themes/PK��� vQwp1[B���F���;����������������pdf-themes/title-page-logo-image-from-fixturesdir-theme.ymlPK���IvQ8���?���*���������������pdf-themes/title-page-logo-image-theme.ymlPK � ����vQ�������������������������"��pdf-themes/images/PK���vQc|[ �����������������R��pdf-themes/images/bg.pngPK���AvQ0, V��yV��������������� ��pdf-themes/images/tux.pngPK���tvQ9XmA���E���;�������������Hc��pdf-themes/page-background-image-from-fixturesdir-theme.ymlPK���QvQ7���>���*�������������c��pdf-themes/page-background-image-theme.ymlPK���� � ���d��������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/pdfmark-non-ascii-title.adoc�������������������������������0000664�0000000�0000000�00000000224�14163570564�0025636�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������= Les Misérables Victor Hugo :doctype: book :subject: June Rebellion :keywords: france, poor, rebellion :pdfmark: == Beginning == Middle == End ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/pdfmark-sample.adoc����������������������������������������0000664�0000000�0000000�00000000224�14163570564�0024120�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������= Les Misérables Victor Hugo :doctype: book :subject: June Rebellion :keywords: france, poor, rebellion :pdfmark: == Beginning == Middle == End ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/recto-bg-landscape.png�������������������������������������0000664�0000000�0000000�00000013555�14163570564�0024540�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR��K��V���{���bKGD������ pHYs�� �� ����tIME W(?���iTXtComment�����Created with GIMPd.e��IDATxio8Qʋ%mc[ IĢ,/Ic2�Pc ���11���b ��@,��%����� �����X��K���b ��@,��%����� ���K���b ��@,��%����� �����X��K���b ��@,��%����� ���K���b ��@,��%����� �����X��K���b ��@,��%�����X��K���b ��@,��%����� �����X��K���b ��[��߿^lb0yb ��w,eYtjnmx��pXJ%��|{UU%RNb ��ԝ%Jb ��iB15��|s`gI,�? XK�� sX�BmxW�C] 0LBea2dߗub},|Gi4i];,ˮ~}[>{̟1�UU5HߛL&a>w.EQ.³, OOOv+ eYvGڱ0nOu]]uba2tifa6(_5>j]k3eYfkU)g�dۅ(.~<fy>~꽀mEQ 3r ⪋c("^4q欏jq^+\.v��l]>RevaァiHi#p8>'!\.ru)xw;?ce9a2 Eg$UYaߏzʲ EQbV՗iK��W>C4vEx_Rb,ִTexzze]UUvvsڈ̲\NHe( =^i}kw,;*%BK��Wу;BBP:K1ưp5yXVx ///SuOx~~(CxyyIlE睯뻻ֵ3ֵoCs:Ͻ6x |*˲~`�l^ d2 :͢6xz~2vʲpyPD1vZ,a^mtlwFRctCŸ?>? sr.c @6;K��wzkd2yXtvn;w1ԅt: lLދenCjൡ1z-k]!xݗcx~~>lYj; ~P ߊ�eY9Ǐa^n}ݮB>مvϴ{kC{N9TaH$\.{l x<G?PB,�|aCovWkJOCr\V'eY9)c]EII=<5qڢX�±4TʮH.VU #?3 >J^gY4.]sz 9q[N>dga"{�XJrɮH=!uqr@}SyN]{M\1ciȜ]59�RoͩCEQ$/R?:b{pX20dc݆~Qܭj[�ފ1$> gERCw{+b޲C>xk�73$&"eYZ,S_Ȳl| XUkn3K��74dύdY{_UUX,Άq_ːƺ-m 0K��$/c/Il{AI쭆҃Ƙ[JMkrȜ 9mC\,�ٗe9hqgm(f9;~qk=tΆ>{%�X.UzXױClz5K��_=4b. EQ$?3NfIzjȸb,5[Xb �@,}iAϕdYUU:u=֫j@rt:}[q=l讥%��(c/">BeYX,aX$__y^zΆY)b �_Rea></:_1v^s6tWǺ%�hj>4Nl6;뽿j,$<$��e(p.,N| #< sHu`^E�kwateׯ_w G8O!4M*y<B��`V, G {/ćz0u򽷻C~cX,%�k.;ʲ|f>2(co^ {(Z�{TMt?>N0kip8:cϘ8}Fij,r|o�=-x"bx ߯V^N)ʲ,4MsQh]2!!rX*2gdZ=X�xXBrzXli{a_K$(~kn~><igȵ((?®Rx��xXmgY<ϓci¶v^{ϐ�.(28wݻL*f%�0yk.&DGQEG뤝Ȼd*icR4aټ6M;ba'>???%�hַC(uݦX,m2$괡Ls',>YxtI[uh˲muEGsJb �F9;ЩWw0euJ:RCoUiKg sEW=Q.u1QeYx~~Nn co�@"u>|WU<Ca:biPu:EU1ưZz$b}&j;c<=w|>vMz'˲lN׿<l68!\.CoqYx<Uo><*�'}ׯ_7{�nx׾xkwLRqzֻ,;?[Msr8:wƸzX�G,LǏix=Ҳ,;=t݅(SAɇ9|$uGKv@N}(z/˰X,̉wb �N¦][TUՇfޮh1n+rk?hX~x lVhslk;DX�ÅyUUP8[Eq{.{}{ebܯ絪Ӝ6Ms1^k\ﺮO׺OdrsI,�p.ͫ-���9K���b ��@,��%����� �����X��K���b ��@,��%����� ���K���b ��@,��%����� �����X��K���b ��@,��%����� ���K���b ��@,��%����� �����X��K���b ��@,��%�����X��K���b ��@,��%����� �����X��K���b ��@,��%�����X��K���b ��@,��%����� �����X��K���b ��@,��%�����X��K���b ��@,��%����� �����X��K���b ��@,��%�����X��K���b ��@,��%����� �����X��K���b ��@,��%S��� �����X��K���b ��@,��%����� �����X��K���b ����� �����X��K���b ��@,��%����� �����X��K���b ����� �����X��K���b ��@,��%����� �����X��K���%����� �����X��K���b ��@,��%����� �����X��K���%����� �����X��K���b ��@,��%����� �����X��@,��%����� �����X��K���b ��@,��%����� �����X��@,��%����� �����X��K���b ��@,��%����� �����X��@,��%����� �����X��K���b ��@,��%����� ������b ��@,��%����� �����X��K���b ��@,��%����� ������b ��@,��%����� �����X��K���b ��@,��%����� ���K���b ��@,��%����� �����X��K���b ��@,��%����� ���K���b ��@,��%����� �����X��K���b ��@,��%�����X��K���b ��@,��%����� �����X��K���b ��@,��%�����X��K���b ��@,��%����� �����X��K���b ��@,��%�����X��K���b ��@,��%����� �����X��K���b ��@,��%�����X��K���b ��@,��%����� �����X��K���b ��@,��%�����X��K���b ��@,��%����� �����X��K���b ��@,�� �����X��K���b ��@,��%����� �����X��K���b ��@,�� �����X��K���b ��@,��%����� �����X��K���b ��@,����� �����X��K���b ��@,��%����� �����X��K���%����� �����X��K���b ��@,��%����� �����X��K���%����� �����X��K���b ��@,��%����� �����X��@,��%����� �����X��K���b ��@,��%����� �����X��@,��%����� �����X��K���b ��@,��%����� ������b ��@,��%����� �����X��K���b ��@,��%����� ������b ��@,��%����� �����X��K���b ��@,��%����� ������b ��@,��%����� �����X��K���b ��@,��%����� ���K���b ��@,��%����� �����X��K���b ��@,��%����� ���K���b ��@,��%����� �����X��K���b ��@,��%�����X��K���b ��@,���jRo$����IENDB`���������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/recto-bg.png�����������������������������������������������0000664�0000000�0000000�00000014215�14163570564�0022602�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR��V��J���H�K���bKGD������C��� pHYs�� �� ����tIME  ����iTXtComment�����Created with GIMPd.e��IDATxr8@QPe-YEpUCYDݒ!-!=mc ��\l��+��a� ��V�� �@X�+����V��+��a� ���� �@X�+��a��V�� ��a� ����@X�+��a� ��V�� �@X� ����V��+��a� ��V�� �@X�+����V�� ��a� ���� �g#��p~Jr V�װ*"3Љ!*V�@*u a�+U �hQu1&}f4ZX�I +a�J cV �#,\V� g/c у EA =p8o߯(Of[>s]ן9(2S|(O]5׻ϟ1ao9A~5 x<n˲ eYEQY~UU%ͺ4>h4yhqλ`00 0h4eY 9;uv]�kv+Z EF?kh1M�n^,/:$,Ov4~0yk,5t:c eYn)8Sp8 8L&oCׯ_.yf"\d2 nix@}Vy~:>=;MTsnv ,f^gbnO_(va0C˙g$~ͦ׏k߇,t: ifi<YgzI cK/mUUa^g5YqQfT[P2rd:,;x(_^^ba`N-RNijK\Xf a>5w]xt<!׋j݆s3t: s]gfMt\| s1g^&}M4+'Z: B`Ex{{4�qlߟ(_^^Zz|\4,ZW_אDg3*<*?~ts_'z]*5DG1V5 cX<ۃLU3{0N[믪*Vّ>uPa> fyva6%b`U%(,YfטI1׳qWEñlbVl E)OX,'&Fz<b8;(gԬIG{&I9exNP=:8:Ϙގv/V�E̶tö5 Ȼj禫vb<ɹ(ZiJFDe6MgRoHk<u*�ʕ26;UUu^dwrwQUUr Etm}hC9{жaulK@,NSRn{eo;Ue_ks svi◍kx .`n؜ـPevj[.as!,\9n6Gj;rWvaA3')91Ƭ-)_N@}]szJz۴9g9r6gk$'A->k0KlS7/qu&Iʙ1zk5~o[ \cKꋛ:WUwNg3/,\X9 U@ H\TuO)}ig�/2q}a}Sg9gGV�IXFK&RCb\=~Eѹ,Z瞳ܵRVX<{tr,>IǮV=JXkssMx +v/ YWUU(2y-p8 2iVq?cXu̷>gaumRp8 C8Yy;gp8|Lx",w6Ԍ�W>1x j{7yM3τ6Ynȥ<m*�mͭ7bl^\<L.z:o >f*su9˝V Ifp8 O__Y^O +a >]_cQۓͿ?sLkwԷk=m*�eйlK?F#,\-6RsNuJ>ߓa`Pu}#I{A;gAw_=FU^'3V�HX]kau9c/ǾlZb8/وyAX=kFR[lgg.5Tun9Sur65bg )�x-r>ڙ}>w:(B]E%ǜs=�pb˭j'󇟭V�PX]klf~<n<u%a1w>}?Xel6?~Fx<NMʹ92z٪,^cZ$9r7l>^[lXt:9 /9s̩rEwazRõۀ!V�O*g}5@)@i;"i-5/9n|t}U]׭yI[u縊1fV�O1zvhfn5 L٢&jSj۵ΰM&.R"mb9|kT0몄>FYj9}Zf2$ KzvU]a^ր9[fʲ-x>Yz`1VEx}}}Wל<ף�,˓Ny}}oUUM&0Lp8<C]p8ʲl c睟n`_VI%11 VU(r<^|n߾d2 NBfvFonEvη q�l6'˾ϛ-*V'ϝ;&hfMrPu9cX,{w]z|0&l>X, +�z1u6Mv]QTטhH}\HL&ꧤs ZөRl6 iV�OM JӧN> j4o]{mvvagfߧtn6E3(f>>b9oBP +�z BUUp81~- ?\n=؋8-yxN>~fw(>m.އxiݼ㵾 ?>ԁyu� �@X�+��a��V�� �@X� ����@X�+��a� ��V�� �@X�+����V��+��a� ���� �@X�+��a��V�� ��a� ����@X�+��a��V�� �@X� ����V��+��a� ��V�� �@X�+����V�� ��a� ���� �@X�+��a��V�� �@X� ����@X�+��a� ��V�� �@X� ����V��+��a� ���� �@X�+����V�� ��a� ����@X�+��a��V�� �@X� ����VN��V�� ��a� ����@X�+��a��V�� �@X� ����V��+��a� ��V�� �@X�+����V�� ��a� ���� �@X�+��a��V�� ��a� ����@X�+��a� ��V�� �@X� ����V��+��a� ���� �@X�+����V�� ��a� ����@X�+��a��V�� �@X� ����@X�+��a� ��V�� �@X�+����V��+��a� ���� �@X�+��a��V�� ��a� ����@X�+��a� ��V�� �@X� ����V��+��a� ��V�� �@X�+����V�� ��a� ���� �@X�+��a��V�� �@X� ����@X�+��a� ��V�� �@X� ����V��+��a� ���� �@X�+����V�� ��a� ����@X�+��a��V�� �@X� ����V��+��a� ��V�� �@X�+����V��+��a� ���� �@X�+��a��V�� ��a� ����@X�+��a� ��V�� �@X� ����V��+��a� ���� �@X�+����V�� ��a� ���� �@X�+��a��V�� �@X� ����@X�+��a� ��V�� �@X�+����V��+��a� ���� �@X�+��a��+��a� ��V�� �@X�+����V��+��a� ���� �@X�+��a��V�� ��a� ����@X�+��a� ��V�� �@X� ����V��+��a� ��V�� �@X�+����V�� ��a� ���� �@X�+��a��V�� �@X� ����@X�+��a� ��V�� �@X�+����V��+��a� ���� �@X�+����V�� ��a� ����@X�+��a��V�� �@X� ����V��+��a� ��V�� �@X�+����V�� ��a� ���� �@X�+��a��V�� ��a� ����@X�+��a� ��V�� �@X� ����V��+��a� ���� �@X�+����V�� ��a� ���� �@X�+��a��V�� �@X� ����@X�+��a� ��V�� �@X�+����V��+��a� ���� �@X�+��a��V�� ��a� ����@X�+��a��V�� �@X� ����V��+��a� ��V�� �@X�+����V�� ��a� ���� �@X�+��a��V�� �@X� ����@X�+��a� ��V�� �@X� ����V��+��a� ���� �@X�+����V�� ��a� ����@X�+��a��V�� �@X� ����VN��V�� ��a� ����@X�+��a��V�� �@X� ����V��+��a� ��V�� �@X�+����V�� ��a� ���� �@X�+��a��V�� ��a� ����@X�+��a� ��V�� �@X� ����V��+��a� ���� �@X�+����V�� ��a� ����@X�+��a��V�� �@X� ����@X�+��a� ��V�� �@X�+����V��+��a� ���� �@X�+��a��V�� ��a� ����@X�+��a� ��V�� �?B T A!����IENDB`�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/red-green-blue.pdf�����������������������������������������0000664�0000000�0000000�00000007531�14163570564�0023665�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.beta.3.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.3.dev, based on Prawn 2.2.2) /ModDate (D:20190809010041-06'00') /CreationDate (D:20190809010045-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 21 0 R /PageLabels 23 0 R /PageMode /UseOutlines /OpenAction [9 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 3 /Kids [9 0 R 13 0 R 17 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents [11 0 R 12 0 R] /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << >> >> >> endobj 10 0 obj << /Type /Pages /Count 1 /Kids [9 0 R] >> endobj 9 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents [11 0 R 12 0 R] /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << >> >> >> endobj 10 0 obj << /Type /Pages /Count 1 /Kids [9 0 R] >> endobj 11 0 obj << /Length 77 >> stream q /DeviceRGB cs 1.0 0.0 0.0 scn 0.0 0.0 595.28 841.89 re f 0.0 0.0 0.0 scn Q endstream endobj 12 0 obj << /Length 83 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d Q endstream endobj 13 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents [15 0 R 16 0 R] /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << >> >> >> endobj 14 0 obj << /Type /Pages /Count 1 /Kids [13 0 R] >> endobj 15 0 obj << /Length 77 >> stream q /DeviceRGB cs 0.0 1.0 0.0 scn 0.0 0.0 595.28 841.89 re f 0.0 0.0 0.0 scn Q endstream endobj 16 0 obj << /Length 83 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d Q endstream endobj 17 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents [19 0 R 20 0 R] /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << >> >> >> endobj 18 0 obj << /Type /Pages /Count 1 /Kids [17 0 R] >> endobj 19 0 obj << /Length 77 >> stream q /DeviceRGB cs 0.0 0.0 1.0 scn 0.0 0.0 595.28 841.89 re f 0.0 0.0 0.0 scn Q endstream endobj 20 0 obj << /Length 83 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d Q endstream endobj 21 0 obj << /Type /Outlines /Count 1 /First 22 0 R /Last 22 0 R >> endobj 22 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 21 0 R /Count 0 /Dest [9 0 R /XYZ 0 841.89 null] >> endobj 23 0 obj << /Nums [0 << /P (1) >> 1 << /P (2) >> 2 << /P (3) >>] >> endobj xref 0 24 0000000000 65535 f 0000000015 00000 n 0000000262 00000 n 0000000463 00000 n 0000000534 00000 n 0000000585 00000 n 0000000857 00000 n 0000001251 00000 n 0000001545 00000 n 0000001251 00000 n 0000001545 00000 n 0000001603 00000 n 0000001731 00000 n 0000001865 00000 n 0000002160 00000 n 0000002219 00000 n 0000002347 00000 n 0000002481 00000 n 0000002776 00000 n 0000002835 00000 n 0000002963 00000 n 0000003097 00000 n 0000003171 00000 n 0000003296 00000 n trailer << /Size 24 /Root 2 0 R /Info 1 0 R >> startxref 3371 %%EOF �����������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/red-theme.yml����������������������������������������������0000664�0000000�0000000�00000000033�14163570564�0022760�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������base: font_color: ff0000 �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/reference-to-self.adoc�������������������������������������0000664�0000000�0000000�00000000136�14163570564�0024524�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������= Document Title :doctype: book first page of content <<< <<reference-to-self#,go to top>> ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/running-footer-coerce-content-theme.yml��������������������0000664�0000000�0000000�00000000137�14163570564�0030075�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������extends: default footer: recto: left: content: 1000 right: content: true ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/running-header-outside-fixtures-theme.yml������������������0000664�0000000�0000000�00000000275�14163570564�0030445�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������extends: default header: height: 36 recto: columns: '>40% =20% <40%' left_content: text center_content: image:fixtures/green-bar.svg[pdfwidth=0.5in] right_content: text �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/running-header-run-in-image-theme.yml����������������������0000664�0000000�0000000�00000000211�14163570564�0027400�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������extends: default header: height: 36 recto: columns: '0% =100% 0%' center_content: image:logo.png[pdfwidth=0.25in] ACME, Inc. ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/running-header-theme.yml�����������������������������������0000664�0000000�0000000�00000000264�14163570564�0025122�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������extends: default header: height: 36 recto: columns: '>40% =20% <40%' left_content: text center_content: image:green-bar.svg[pdfwidth=0.5in] right_content: text ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/secure.adoc������������������������������������������������0000664�0000000�0000000�00000000072�14163570564�0022504�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������= Book Title :doctype: book == Chapter image::tux.png[] ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/square-viewbox-only.svg������������������������������������0000664�0000000�0000000�00000000172�14163570564�0025050�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><rect width="200" height="200" fill="#ff0000"></rect></svg> ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/square.jpg�������������������������������������������������0000664�0000000�0000000�00000000436�14163570564�0022374�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000�������������������������������������������������������������������������������������������������������������������������������������������������������������������������JFIF��%�%���C�       �C ����������������������������������������������������� ������������������ ��?�:M����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/square.png�������������������������������������������������0000664�0000000�0000000�00000000235�14163570564�0022375�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR��� ��� ���˰��� pHYs�� �� ����tIME/b\���iTXtComment�����Created with GIMPd.e���IDATc\@01*�<�~E����IENDB`�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/square.svg�������������������������������������������������0000664�0000000�0000000�00000000235�14163570564�0022410�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" width="200" height="200"><rect width="200" height="200" fill="red"></rect></svg> �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/svg-with-data-uri-image.svg��������������������������������0000664�0000000�0000000�00000011675�14163570564�0025456�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg width="1cm" height="1cm" version="1.1" viewBox="0 0 5 5" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <defs> <image id="img" width="5" height="5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAB3RJTUUH4wQEBxgufWRxCAAADB9JREFUeNrdm2uQXEUVx3+n770zc2c3JoTl6QRSgJAAKXkZY8CQsLKBiIgoT4lYlmL5QUv9oFWWVRRaomX5yVglRYFWKYKgAiEoZEgIwcQQRAOGoJGgERYTyMO8dp63u/3QfWdmN8jubHYmxFN1q+b23Hu7z7/POX3O6T7CCHqNRQiJAEGBYpK2DzJwBnAZMB84GzgByAPC4SULlIBtwCZgFbC8QPFvLWMPAR1i7PGsGPbysMEPMgCgAClQ1L5tHnALcDkw9TAzO1baDTwO3FmguNrzofx/pkDxYAA880EL49OAW4HPtDxnAePvhcM/+ynZlkuNGNfdwG0Fiq95vgJApyAIwGsMIMOZXwAsAc7yH0n8syM//k6kdJIsEPq2l4AvFig+ORIEGWQhYFWBovF/fhS4C+hr+VBwuLkaJ2maE7cL+GyB4sOeTxUSGAW2VQ0WtDCfGsAjlfnWsSfA0cBdnkffqEXhRN94nV/SwnzgkTvSSXleUhCWDDIwzUt8oFqWultxOm84MnS9HUrVwHgebwUoUEwEGkvdU/5BzZEt9m9HKW8WmF+g+HQq4rd45lPR7w4pAaX8/PjfnaVUFcTzjAwyMANYi3Nyujf7SoGpY6kCESn2EuRAm072nPK4G5irgIWe+dSJ6DyJgDFYauSvu5y+Zd9l8m2fR2XyWF2FoKPDUJ7XqcDCEOfbgzMQ3Zn9QGGTA0Snv4cpd3wJNaWX3BXvR2/bxf47folIrpO9t9q5BQoX2KR/dIesxZIQX3cxakovtlQFIH9TP0omQVJzNqGzIACcrXBRXfcACBRWVwl6jyV/w3zXFjrBy1x4Ftn552Aod9ogprwer3AhbfcAEMFSIffh2YQzT3JNYQCJBiC/uB8hcIZQOjak9MP57jo8SiBJEGLyn/oQALaeuHbPbO7KOYTTp2Ntx6UAutHDyO4MJTIXnEn20vMAkCh0IAQKtEEd/S7ia+ZhqXdnSF1j3i99APlPXoJEYWO9H/rxo+h/72osf/kbFhBkprolscNz1D0AlGBNhfC4AvEnPujaAoV+9U32feOnVIt/cm3aEJ17KtmB87CUO70adFcCLFXiqy8kKPQ5sQfKD6+jPrSV8kNrhz2eX/whhIwzjp0zhl0CQAkkNZRMJn9Tv8MjCrG1hPLPV6DIU12xgfqGLQ01yC16H9HM05wUdNAz7BIACkOZbP85ZOaeCcYCUC3+iepzm1BqMrq0i9K9qwC3MkhvTP66+VgSsPYIBkAEEo0QkF/slr7UGJZ+tgJLBclECCHlX/8es2ufM5BAfN3FBJOO7Wh80HkAAoWlTHTaqeSunOPawoD6pn9R+d2zCDlsXSMSk2zdSmXpOvdMoglnTCO3aDaWSsfsQOcBGOn3p8bvvlXooR1IkAWtPVCa0j0rG8BBagxzkCQdAaGzAKR+f/4Y4htcLlKiELNniPL9qxHCJlPGoIipPvUCtbWbGu3ZS88jc95MFx90QA06C0Dq9y96H9FZJzf8/cqyddS3vIIQN5MfxkKYwdh9lO55EvDGMBOSv3EBYNwzEywEnQNAUr8/R/7mS31vrjtn/LSLAlstvLUIWcoPrUW/vqtpDD8xj7DvRKypTLhnOL6viWcmUI6Jt7gkG2GpkDn/TLID5/vehNr6v1F7eiOKXkTEfaOhBhZROZI3Bik/uMa11TXByceSu/IDHTGG7QMgbkvQmjJG78ckezDJf0Zce9CVXRiGiK+Zh2Ra/P4lS6nXtmIYQtf3YPUQWOOcJWsbM1z+xZPuncjlCvKL+1FMgqQ+oe5x2PYbIlhzgPDk6cRXX4Sa0uMybCPJWgiDpviLYOsJmTkzOarwVaQ3xparVJ/YQPWPGxCTd5LljWFt/SaqTz7vokZryc5/L5mLzqayZj1KTQajJwQAGWRg7G6WCFgNYUTf8tvJXnLO2N7Tpqk2I//atpudF36F+j9fRVTWG8MAk+yhd/FVHPWzrznjGQYM3fFbdn/heyjpaYJ8iNS2ClgMakov0Tmnuvtq3a3j2hx8GesGGSjHvPWD1gZbc/5AcMJUgmnH0Nx1p2EMK8vWk7yyrZEyiz82l+jdJ/lkycSoQZsAWIQAvXMnpbsecy5uNoIgcEyOvFoyPeD584ZPMk77Ksueofbnl3Ha6GfUGCTIkezZTvmB1a7neoI67ijij1/kkiUTZAzbUwHwzk0FISA8/WQkn22KojRncNR7HyMkf38dU9uHqJ5GjABAGGCT/WRmncUx63+IxBkAas9uZsfcL4Oug4qGvzMOas8IKrcCqEwPNtEkf/8XlnYHkOLtRF4IHfMj9VkbhJjaxs1Ulz9H7qq5YAyZ2WeQ7T+XcnE1SmVou/uRLI3pKW/ArKlh9D50bTfG7MVQxlLFUhvjVcVtgVlEYiTKg4RuFkcCYC2EIZYqpZ+vGIadyxyHE5IsGZsEKIXVJdSkqS6jc/xR43RLBas1tfWbqa55DqlnQd5mDoxFiKk8/hz1F7cSnT0dgNwVc4hOO8W500Fvw8XuHADaHRmY/IPP0XPLovHD7cmWq+y85GtUn9mASM//Xs6MQYIMurST8n1PEX3n084YTukhvnYetds3I4e4FI6uAgJgkSBH5v0zPAM1h3rrZQwk2oW7de2WucQvj/4ZW0vcrMZZwhnTgDFIkTg7UX5gNWbvUDM+uH4BQdyH1bVDig9Gf9MCorB6yMXqde0s8kj/X8TFAFEIglvmwmBYvCCZEJRQf+Ef1FZvBIK39iJbyRvD+pZ/UHl0faMtmjWd3GUXHHLmeGzLoFJY4zYwo5mnoKb0toitW+vtviEmfftm4o9d6KRBKfZ/+xeUH1yLxFnn7+P2BpIt/0bvfsOJP3Z0EMIAk+wlXngxfY/f3vh++aG17Lr6mwiRsyXjUIex2QBjGpmb+l+30Dw9547eWMqo6GiiGdMagOnt/+HAkqUkO7a6uH/YOcZ06WN05gGMdcmSlc9Te3YzmdlnAJC77AIys06ntvElJJg0LmM4duXRBkQhKkaCHiToRYJeVLYXiOi5ecBtdqZJjwfXoHdsQ4V9SNjT8k4eUVHTTR7jBBBmMMkeyve2JEviLPH1C5wvYseXLGnPeljrBpP6+tZgq1UUeeIb/fG7MABjKN2zEptOb6IPjhHaJWsRIsq/WYN5c0/TGF47j3DKcVg9vmTJoaVX0s3OD84iu+C9jRmtrnye2roXUcSH7Ko2yDjnKRl8tbmLlGjC004kd8Uc52SNwykaPwAi3kKrZr5fN/P9hhKE0fhm+63IR5UW08gZNjPH/Sjy40qWpAeG2iclWFsmPGk68VVzXVsYkLz8OpVlzyBkJ35HxxgUeWprNlJ96i/NzHH/uWRmnzmekyVG4YoNGA8QljrxtfNQx0xuxPfl+1eT7N3emeNuxkIYYdhP2e8fpGcL4pv6ARlrnymvJYWrtGgPAAG0RjGJ+OqLXFMUYIcqlO5d5Y64dGpH11qEHOWlf0C/+mbTGH5kDsGkPrBj2kBJed2ugBfbBqDlO3a/FyARKo+so/7XLcPz/RNNxiAqS7JzG+X7VzdHUqq0Y3BTXl8McWeEr6JpD0afOguoAGsOsPfrd9O7Yy+2UuPA7fcBCXTytKcFlCAE7P/+r5BcBlXoY+hHj2CGdvvEih31C/73KvHFUH+g3aOyIn7fr0QznWUQ8YfOOril7VJrCmtS8xUAdSd5So0GwPCjsgWKm4HHWtAZ40y4tJYEvYhkEckhwcRla9++b8Aa51VKjEiEqF4XD4y+7KYPPFaguDkVhTtp1tiM3aH2GV6sHf67G2Rp6Zu3ziodTJqmuN4JXhcKFJ8GfuIfEg450/aOpJa8O3d7nlG+qBDgNlzhYVpZ0aWp7AqllWTK8/gtcAWVCtCDDAS+ru6LwE6aqvD/IAmGpujvxJXPvZaWzqkAaUTlBYqrgM+2gADt2IR3HqVjD2mWza3ybVahrTqB5QDGI0KB4lLgWprqkJaZaI4MtbB+rK2Vb5uAazxvvnBSzImsbBhB8Krg71fhCqXvork6pP5BqhrvJDBSHU9nPKBp7e8GLk9nvlk1uhz4/y6efgxXPP10C+PWImaaZ/4gAABe5xIs4f8qn1+IK7GZBRyPqzU43MWVBhfRbsfFNWn5/OaWsYeAVlh7Ik8Me/m/WRJP6d8U31wAAAAldEVYdGRhdGU6Y3JlYXRlADIwMTktMDQtMDRUMTM6MjQ6NDYtMDY6MDCMoU9oAAAAJXRFWHRkYXRlOm1vZGlmeQAyMDE5LTA0LTA0VDEzOjI0OjQ2LTA2OjAw/fz31AAAACV0RVh0RGVzY3JpcHRpb24AQXNjaWlkb2N0b3IgcHJvamVjdCBsb2dvLlbXCH0AAAAZdEVYdFNvZnR3YXJlAHd3dy5pbmtzY2FwZS5vcmeb7jwaAAAAEXRFWHRUaXRsZQBBc2NpaWRvY3RvcgRGdzYAAAAASUVORK5CYII="/> </defs> <use xlink:href="#img" x="0" y="0" width="5" height="5"/> <rect x="0.25" y="0.25" width="4.5" height="4.5" fill-opacity="0" stroke="#000" stroke-width="0.5"/> </svg> �������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/svg-with-generic-font.svg����������������������������������0000664�0000000�0000000�00000000363�14163570564�0025240�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg version="1.1" viewBox="0 0 200 20" xmlns="http://www.w3.org/2000/svg"> <text x="1.5214844" y="14.561523" fill="#aa0000" font-size="12"> <tspan x="1.5214844" dy="0" font-family="serif">This text uses the serif font.</tspan> </text> </svg> �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/svg-with-link.svg������������������������������������������0000664�0000000�0000000�00000000603�14163570564�0023612�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg version="1.1" viewBox="0 0 200 20" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <a href="https://example.org" target="_top" xlink:show="new" xlink:title="Text with link" xlink:type="simple"> <text x="1.5214844" y="14.561523" fill="#aa0000" font-size="12"> <tspan x="1.5214844" dy="0" font-family="M+ 1mn">Text with link</tspan> </text> </a> </svg> �����������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/svg-with-local-image.svg�����������������������������������0000664�0000000�0000000�00000000471�14163570564�0025032�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg width="1cm" height="1cm" version="1.1" viewBox="0 0 5 5" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <image x="0" y="0" width="5" height="5" xlink:href="logo.png"/> <rect x="0.25" y="0.25" width="4.5" height="4.5" fill-opacity="0" stroke="#000" stroke-width="0.5"/> </svg> �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/svg-with-remote-image.svg����������������������������������0000664�0000000�0000000�00000000613�14163570564�0025231�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg width="1cm" height="1cm" version="1.1" viewBox="0 0 5 5" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <image x="0" y="0" width="5" height="5" xlink:href="https://cdn.jsdelivr.net/gh/asciidoctor/asciidoctor-pdf@v1.5.0.rc.2/spec/fixtures/logo.png"/> <rect x="0.25" y="0.25" width="4.5" height="4.5" fill-opacity="0" stroke="#000" stroke-width="0.5"/> </svg> ���������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/svg-with-text.svg������������������������������������������0000664�0000000�0000000�00000000365�14163570564�0023646�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg version="1.1" viewBox="0 0 200 20" xmlns="http://www.w3.org/2000/svg"> <text x="1.5214844" y="14.561523" fill="#aa0000" font-size="12"> <tspan x="1.5214844" dy="0" font-family="M+ 1mn">This text uses a document font.</tspan> </text> </svg> ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/svg-with-unknown-font.svg����������������������������������0000664�0000000�0000000�00000000400�14163570564�0025313�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg version="1.1" viewBox="0 0 200 20" xmlns="http://www.w3.org/2000/svg"> <text x="1.5214844" y="14.561523" fill="#aa0000" font-size="12"> <tspan x="1.5214844" dy="0" font-family="unknown-font">This text uses the default SVG font.</tspan> </text> </svg> ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/symbol-m.svg�����������������������������������������������0000664�0000000�0000000�00000003764�14163570564�0022661�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="11.036457pt" height="6.398438pt" viewBox="0 0 11.036457 6.398438" version="1.1"> <defs> <g> <symbol overflow="visible" id="glyph0-0"> <path style="stroke:none;" d="M 0.59375 2.125 L 0.59375 -8.46875 L 6.59375 -8.46875 L 6.59375 2.125 Z M 1.265625 1.453125 L 5.9375 1.453125 L 5.9375 -7.78125 L 1.265625 -7.78125 Z M 1.265625 1.453125 "/> </symbol> <symbol overflow="visible" id="glyph0-1"> <path style="stroke:none;" d="M 6.5625 -5.015625 C 6.863281 -5.472656 7.195312 -5.816406 7.5625 -6.046875 C 7.925781 -6.285156 8.328125 -6.40625 8.765625 -6.40625 C 9.410156 -6.40625 9.859375 -6.203125 10.109375 -5.796875 C 10.242188 -5.546875 10.3125 -5.222656 10.3125 -4.828125 C 10.3125 -4.578125 10.28125 -4.289062 10.21875 -3.96875 L 9.578125 -0.625 L 10.546875 -0.625 L 10.4375 0 L 8.375 0 L 9.125 -3.84375 C 9.1875 -4.144531 9.21875 -4.40625 9.21875 -4.625 C 9.21875 -4.863281 9.179688 -5.054688 9.109375 -5.203125 C 8.972656 -5.472656 8.6875 -5.609375 8.25 -5.609375 C 7.769531 -5.609375 7.367188 -5.425781 7.046875 -5.0625 C 6.722656 -4.695312 6.492188 -4.164062 6.359375 -3.46875 L 5.6875 0 L 4.609375 0 L 5.375 -3.875 C 5.425781 -4.164062 5.453125 -4.421875 5.453125 -4.640625 C 5.453125 -4.878906 5.414062 -5.066406 5.34375 -5.203125 C 5.207031 -5.472656 4.921875 -5.609375 4.484375 -5.609375 C 4.003906 -5.609375 3.601562 -5.425781 3.28125 -5.0625 C 2.957031 -4.695312 2.726562 -4.164062 2.59375 -3.46875 L 1.921875 0 L 0.84375 0 L 1.9375 -5.609375 L 0.90625 -5.609375 L 1.015625 -6.234375 L 3.125 -6.234375 L 2.921875 -5.125 C 3.191406 -5.539062 3.503906 -5.859375 3.859375 -6.078125 C 4.210938 -6.296875 4.582031 -6.40625 4.96875 -6.40625 C 5.457031 -6.40625 5.835938 -6.28125 6.109375 -6.03125 C 6.390625 -5.789062 6.539062 -5.453125 6.5625 -5.015625 Z M 6.5625 -5.015625 "/> </symbol> </g> </defs> <g id="surface6"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <use xlink:href="#glyph0-1" x="-0.175781" y="6.396484"/> </g> </g> </svg> ������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/symbol-s.svg�����������������������������������������������0000664�0000000�0000000�00000004131�14163570564�0022654�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="6.946613pt" height="6.568359pt" viewBox="0 0 6.946613 6.568359" version="1.1"> <defs> <g> <symbol overflow="visible" id="glyph0-0"> <path style="stroke:none;" d="M 0.59375 2.125 L 0.59375 -8.46875 L 6.59375 -8.46875 L 6.59375 2.125 Z M 1.265625 1.453125 L 5.9375 1.453125 L 5.9375 -7.78125 L 1.265625 -7.78125 Z M 1.265625 1.453125 "/> </symbol> <symbol overflow="visible" id="glyph0-1"> <path style="stroke:none;" d="M 0.421875 -1.796875 L 1.03125 -1.796875 C 1.019531 -1.679688 1.015625 -1.578125 1.015625 -1.484375 C 1.015625 -0.765625 1.5 -0.40625 2.46875 -0.40625 C 3.4375 -0.40625 3.988281 -0.765625 4.125 -1.484375 C 4.132812 -1.546875 4.140625 -1.640625 4.140625 -1.765625 C 4.140625 -1.890625 4.070312 -2.023438 3.9375 -2.171875 C 3.8125 -2.316406 3.46875 -2.484375 2.90625 -2.671875 L 2.171875 -2.9375 C 1.671875 -3.113281 1.335938 -3.3125 1.171875 -3.53125 C 1.015625 -3.75 0.9375 -3.988281 0.9375 -4.25 C 0.9375 -4.34375 0.945312 -4.453125 0.96875 -4.578125 C 1.082031 -5.140625 1.378906 -5.582031 1.859375 -5.90625 C 2.335938 -6.238281 2.925781 -6.40625 3.625 -6.40625 C 4.3125 -6.40625 5.019531 -6.234375 5.75 -5.890625 L 5.484375 -4.53125 L 4.859375 -4.53125 C 4.878906 -4.625 4.890625 -4.707031 4.890625 -4.78125 C 4.890625 -5.070312 4.789062 -5.316406 4.59375 -5.515625 C 4.394531 -5.710938 4.066406 -5.8125 3.609375 -5.8125 C 2.691406 -5.8125 2.171875 -5.492188 2.046875 -4.859375 C 2.023438 -4.796875 2.015625 -4.703125 2.015625 -4.578125 C 2.015625 -4.460938 2.078125 -4.332031 2.203125 -4.1875 C 2.335938 -4.050781 2.648438 -3.90625 3.140625 -3.75 L 3.953125 -3.484375 C 4.503906 -3.296875 4.882812 -3.066406 5.09375 -2.796875 C 5.238281 -2.597656 5.3125 -2.398438 5.3125 -2.203125 C 5.3125 -1.390625 4.984375 -0.769531 4.328125 -0.34375 C 3.804688 0 3.148438 0.171875 2.359375 0.171875 C 1.578125 0.171875 0.835938 0 0.140625 -0.34375 Z M 0.421875 -1.796875 "/> </symbol> </g> </defs> <g id="surface11"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <use xlink:href="#glyph0-1" x="0.53125" y="6.396484"/> </g> </g> </svg> ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/tab-indentation-theme.yml����������������������������������0000664�0000000�0000000�00000000100�14163570564�0025261�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������base: font_family: Times-Roman page: background_color: fefefe ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/tall-diagram.png�������������������������������������������0000664�0000000�0000000�00000265233�14163570564�0023446�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR����[���YbA���sBIT|d�� �IDATxyXT 0").[.ej֛ʽ\K,Ls_QD@df}?afuq)s<9g{zsc BB!5>!RGP'BJBHAIB#(B!u%}B!O! !:>!RGP'BJBHAIJp8p8&RQ'\.;\]]QXXXj:UxH$_~WmcB,>u~W#33;wqcJeo2 =BLL &MƍeYCOjիWkf Fbxaa!?"<< ۷/-"!P'q m۷ɓ'qr۪T*XZD""##q!�9^x� -- "|>)))eχ3T*̯o۷oA, HpmSVD"1f;wM6Ejj*VZӮ'N tAJw �DwwwL0YZAA&O ///,'//cǎ3|||b �@FF^usΥ#n`"SLa�ؚ5k͛�iP(Xdd$PcLﴒӋ >`K.-3�6s 7k�믿f�ؠA ck.m|*عsm>}|||ʴ2d>?1i̒\ڴiS͛7\:JgR988lVPPܘ3d:m/^�0DVX=zIJYll,Զӗ$KO;tZhQmV�vu}W4ޅ �ruR�vIkpOMMe�Xnn.w61Bf̙ � f,77Ʋ bbbX^^cy,;;M4`ޱcG[GI?F}-::`7ni۬Y3]Vo$}F4hP&?`:t0طz�~A?�N:]cgK�M_5lؐ`{igo<YSNi_KJJQcb(Zm۶ �;r۷o3Sp=RSSiJg 2�lܹƏ� 6_x �kڴv1�lϞ=zØcɓ' �suu;Jb-b͛7g:ɅBH$b�XffNz?##LlƎYBkF%O#R[Q'˗=[ҥKՕSSSP(dLѰ&HD"a7;t�SN1�QFL]c_�֮];M>].VQ4yS_?NHmCWZmz)y^Æ �y.WF၁ömېaÆA"xg�,Y˖-�̜9,d��}vӦMӡRQ]pp0K*1uRUyyyɉq\PfzBBrI{aؒ%K�VZYNNez�0Z/*;<x }]ּysŕiWcP /8xW>CJ)كئMXxxvZZ\\\�{nVXXݻs}3f0�,$$;vcǎS_?NHmCrb֮]�޽{Wئ"u1Ɗn{ *~W+VQh4^zCT+m6Zʩ`̊~ٳg Ufޒ{ .vРA 0Ac%}Rѻؼ-[2�lΝٹs'Zl}MPEM2;;;"##١Cm?~̆\]]1*3؂ &7^۷o3ֳ Yߘ?ߟۗ}we;(t6j(ʤR);v,-wn߾^y\]]�apTfLJ=[a73gĢE,NZ 'OFnpKCHAbC233O?�Ǝkh3h ?~999HNNƺu0w\�СC-!u b#J^߷o_X0UtgA˖-qI !vvvݻ7֭[gP^zBìYpaJ0'B'BJBHAIB#(B!u%}B!O! !:>!RGP'BJBHAIB#(B!u%}B!O! !:>!RGP'BJBHAIB#(B!u%}B!V6l@=;vJtVcBȚ5k0o<mW~},X�Cl%}B!VIRw?h|o}888@,C""z! !Xcǚ9o&H$D:B)m͚5N�O?!88۷RԙFIBYYY7o^ٲe áVu^{ !X]vhz*6mP(P7=B!V6[_/T*d2<raK(B*W^5[_?˅JB~~>rss!ɠP(6-O!Ī~lx<0ƠR ˑOIB4 J% (B!l}IRp8p80ƠVRWWP'bUZjeիgjJBʠAW֭Wm@IBU5jYI&fO!ĪaUaر��cp8xP'bu &Tipz�r!`oo}*_]CIBUZr%Fm<<QQQ8p j58|>D"lҧgBJ|>9"""rJ$''kCx�QTP'88cƌAFޗh �GGG:91f !򤥥ɓ'HMMŁ'SX 4 @vЬY3�Wh4H$puuX' P'br9ӑtddd@&As5C@ht)NkŇb6ỸͭN&|Bb"D5g\.3ڄ/Hl(Br@ @c2rQt{^g:ǃ@ H$#(?CIBUDPX {QwvvM=χ= !H9(B I[(Bx�^^^ i'  ?_%}B!68:;(ѠpB!O! !0!:s;8m3B:,oߎQ&]7TRuA!. {S'A ! D8KB eBjPi/hg")ݞCj %}BaMg@n}%{v%~R(B45B5h4@.iIuO!'`1ZW%~Rͪ=  T~XBMj�(ʅ@hvuů|bmZ6Fڬux233 \nЬFȹ@oCwES=}}ט=B{_SvqB>ǯ.8Mt?Ne?ܼ>\WlH~DV[&MjaP!6n6Og hXZ]O`8q<^[3~/6 dl%6[i pv^Nڵi%>['%xYkݗv#-@o+WFbժy36rч }rZ'V`N ×_DL !v Ud4 bP  l2�-O@#W"H[ػU$%MFޡ4r۽>̞S믃=7eĉ-{wo"|}%;R|sJMm$_OéScp\ Nx~4DPH7ߜѣ 矑u]T̛wܨe&n999HKK_BåK�6Sk Ghj$Z AAnSmsOѰloTw[-|8;] ѵk v goe^#|yl~Mo_ʕv.| w2 !S*CVVW>σwd;hJ ۹K:n#5;8PP*ݮ]CpHѡ8pp26uS3<=W@ X7HN3j/K,3-99!!R )I hx*<zkT,ڍhnn.d2 òfK@(:w4# Vp_¯c;ǣGu?σ,BN+O(a7ZgYp�ܻ __vz+ CPQB>R BL|J�!K{N>>>#Y> .=\^t$S^|J89  cF?9OG#"0}!$&"11ӧˆ\8a‹xy3J;!Cto7)}K !_OhT*QPP@Ii#LGnޏ;w2а6o6)]3gȑG67Σ~+S9s:࣏bѮ&�c|;oAV\{1{ƣG9pܹTcRpZJRIw�E]`%J ]gcpmѭ$B.pv@AA8憀�4hРZOL"- ,u -B't8J%vC`e{Bj֓Cg@$KcG;nhۯ3{w˭-%}BRc/gk{ <;>zD hT @.ٺ/Sx"zV.@aJ Sq&wVCڼ] wbF !j\]1<;K`L.Tю0N v<ܥg6zѕգھ|z0'_z/<M&|[ų#xL{D^ߏ“#gduIIIɩև0ՊofM~mEb-|~Ee(JVqCp7אQ\X_ ҥ4_yV+]:jUuo|ߕ';[s""b- $;;N|dIsE_pWRLn,،i6!H{l4x<ᔕH}\,5k/aX"4$TBTHO/޽i0k@_t(po<OvOY2k/,Tax=[PʯHw}H"Lnn/gWW{T\V XB|B22 :祗aǎ:&$ 0[dg] ' /hp ֬3d|j^Q_aakz2˷qe|pQ}  fE4oNNKЬ%b+X G%i nz@SJWM_^}aak L9BfD125l7ni߼׮=ExZ+zOfjya—P D"H(2f;|_[>bY ;F֥{hUpnݫ<6xz?Yo`ǎ>w[wv�0q: �-:'qH=;W}�VT�\]0dH8֯sK1\\촯0~Q0yrK8;dSs'.C7+\/~I$$dŷ; {)GL=ŽC߆ 9y FlÐ2ǤIiۛRmdllƖ[~6cqv.<fD12EFرG�\LvEI=~<!:MY5'ɓ(.c)Է|IJ6t(D_ jXm͚7n ˴)>豉ÆEd<xmiXRx{jUQOW_aP4XL1H$Bݻx헓Ҷme^R1TcW%Kʞo[NcJ^RL |]o<dm{SJFflbK[U*QlLlڤO`g/K(1&`zym ,'gю?<R,S)$ևHw Z:bS7aɛAffY~f^z>}G%q >8깘<~Ænh],]n}{?951~j>;YAPnۤt+borrUb`L`ˡ̱)%m#cb3r$4TSPbcoeb{@>�}u_?x�pLu ;NeL/$¼yqXdgG߇"--oWoLƌS}IO~b*Y25K(ϞOB@^^rrr ɬ3Yg4lX|-mueUܽ;A{Po͛e;{Sʕ�+WCtt߿D"=Scܸ+9:q~VmMp(,�SV??#珏/Wx Y%`ɒ;+loUGl%u||e@S\v12$!BB嗛ozP4; B"‘zUer4j%KzGz2fcy]oy W@&(d2d2UX4kWݻpb;w@6>eLJHѲ7v,:/>f :g!%E~~%9<$!7/{~8࣏cɒ3;D"^3fǹx8ч*lk90򐔔3Wؗ}V)%mꈭ亞10k*Q\k^B0kaUOTTcLvzߎ`۶kςBƃ٘3';덫2GK]X,"r[c,cVƜ4m: g^P( Jhg\EfL:9MNFj5rY*Wezᄏ _"�`ƌhݻoG6?iSm:aƌqQ FnR@хRh/CUv>3'..KѣO%@g97k׭ @2K{z[X6onݶE ⣏-~v߿>^}u7||Vر/X5Vdd(<aذר*<oSs/nnѳOش-/lGs,)bt;Bt.bSh.5#G֭1/\\mb�fܟW1FRiOuK<x,Õ+O1d.ܹ3b1f~)o/!|2Ae"�� �IDATSs_xi vm!mJ#/MDVI1.xC̝ GZFf'pw[(\G};c`DBy0ڽGaɒ-;wr2_JF@@o9:cs-iX<xM`OФI}mlӧ/Ν!J=￿@;CxbqS:-)56b/A`~f/L7l>0_ ڽ4c!af< q%D.O_7B__+ۣϭ6 o\HѸ<s$ yw w^EÆ}Iѣx`?<1gJ�ϓ9|\vgnW_m4z ԫ珿>�8yzk N,N",,ο{a <9޽;b/x0ǎmĞ=ǘ3mŮ]KstC^~F$AAرcܚ)8oBF k<ڌ/u_|>VrSeP4pi][ tZo'Kvh_aѤO3t}۶سgZbƼyꃭ[cзo'5< :�l~yn̙o`ӶooiͥKg>x4ضKX JXa"'ɭ,CmFF})m?c]1}{]GŋZ(sQ@RS>?}Q~ ?N5ia"1gJ\x~~.]NogW8oq�;<e.))BB|�v^˗B>M:. k^[Mu~Isql\ bZDL> j@M u#?oǝ;@<XSz+MI㸻Kѱcs̚ ݺ=h[V9s)tiW/:7&$%-oKzKoϫ8Ձ~9,Q>h6uo(b!.¡1kxG]-YxtC~`qPO鋂ۼP $Xl1~:ݥq#Ӧ-Bb$&>i0rdo9>n݊ڭ[+>|V}cb1c "))fX3}h\xryQ s}2+knRҧuo(b!.o%aoxG/�Ų7Q {B(¼p!ˡT*V T}_)f^ 'Nt?߬}s羃n:Z~Ü9LgРnpvSu"\\0`@*^x ;-xypsu*=Y=!<|-Mkx(J0W?5c y[sl5.T N'B<apjj0pr! Ye`hܻH{'~ ^ѣ ;(Ο`Һ^5TJ\%nr5! `W!:j[r%[&c6Lr%["ט8K@6Tٔm]ZUKJӷlOeyɿ![PoZ5N}HKaa! ˡRt~CvRr#%%&cƌ%4Y}=Z=̚z _}m* Ԩ--\%n$_OéScp\ Nۏ1mM-k23e -Y̦lҪZؔƎg}L%߅!1jmW*${"vvvŐH$]VX~ R9AAhum;o΃tsv0K5]{QquR%ױl^wkcL[SLƌmj`CvK2D1q.5k)ۺ06<llSyIwaHtwrrT* oooAg'@ε$M?֬vg2B;@ᆕd֤%dbƔ-=oUKBޒU69lߒ%iMmkj9ܒ-1cZ&Pݒ-kLK*lʶ.%M)mx.1m^]RNo DPPBBB#axvk}W<]L�Zׯ1̚?ҢC2C1 �R%ĭD{:{m[:6Tn$cKg̦lҪZؔЕO߲}*V. a;;;M; }늜)ȺĒ| Pk^mc5aS0 �R%>sUXHȔwۢe2إ*[1%r+̆uZƦxc*k "χD"_Q}!qk?5:1QaJn.>N0[jxJ2vv|DF/۵uMe--\%np7k mBF=}Ҷ<'O&C+~[]CvK3Dne4TYz1NZؔЕO߲}Le-Uނ'  &h8m8~>s)ZR&_=pt.4*[ͬToM'̝Q{TӺk8;f�,j+r׋�ya.:q= kZ \=兠 �z o5tޚvHJNfF딘@,D~b& !5¿~&Edxv&� f~5ƂaC_=mBJrmev*=#ݷeV>NWf:7c * *Jb1bْ>֭&~'!oH7șIşǯ lQ: BoÕUN0#8C$|P}X,6:V6#kxf71Nuo+z/k%H߿3xAHZWfƵ/bկz\U^!A|ybuQ(HBW+y 쩓cDprr R)$ %bЯh[% H ,Ը(<g-^qs֤>>EEL*/>R `_ >([)Oy-[ڔj|/!֥L YEJXZ,̚IH` :Anpb">*}~AJ<  Uvww m?k4 k^ҥ=|YL֚.v#R:|x< {Jz" wp? GcY*bE{D{H:>P W?|u.!%EVaCum%3TT.W [ի/Y%[)jjiRsjҌ)jƖ^*fХU*ǘW_DXx{)SB(,D"xzz]{HY,jf/&{zzã>`= tRi};v B߾ʴ+n>ە, q�Vtd)Yi_n~f3µG-Y1`}ҥ=Pw sŚ5�_~y ٸxm�qe^\߆&cstӳI¡CQ�J._}Ç٘?$F,Bm#cc+.GeŤIQU ӧycѢFgʶ*.-;xp:ev{OƬ*VSD,P,8O?T"8rpi|I }IE(B(B,C&@[Z)s 77KS)O+P%@$UKD&M9}^i㣰Pq.z&xZ5-/XZknoߝu]\TDD?D!(Igi~3Li#L_x EDDѹkמyz/#Gf? �{ ޸7ni :}ݽ;Qou}  RY~Kڪ`Jx{�1cF �+ FĦ/Қ4Y~0W�'2twN4?C۪{矯c۶X4-;୷!*DE5F~ L]FC4}۪x?t!֭wׯa]fU P(RixF =swFa[B6&_Ba&b5~Ndiү/X yJQRgbذpM)Kz| fώťKOxgw+]PIw/_|;,[{?/8SmdLl#-.ZRk@UB1mA�.Xp o g$a>[ LVq%bKN VXnN5p)q.�G5}zNVB;vv|L[\ҺP הJHK(ުU-J;a5e[[f$s\lβcLؒ(>>FKBjY;4͛wp΄2-k pM)Kj$90򐔔3Wؗ}VJ;a51evK249֖1%bK3#*qb}~~P3yΡbƖֵR%5TtΜwBеVDF@ пiZV<*kتZƔ-ɘ!,[[^<Ɣ߿uۆ-6"4T>AuKRW<Ő!p@zuą|&54cGw&IYTeK1RRdx03gF !SՊgH5c <08oBF k<B!%g,}hsV<Ec uA !:>!RGP'BJBHa҅|G+B!T3pvFÇ#==`޾Z#BT={{{ARAPqBAQU;;;C ('!ƪtP�`5 !V 筽=²U 1EX,&zBE!X,#b1%}ReNotxB^OICD"P(X,BR BG$Y:$b*!B=BSf嚵]]EIBՋߴ97mv2bj& EIBN0'!صf1 !X=qrm7+zB> !؄P<Bl KH�<_yc4r%B`1,!bS]']lˁC7<yGKhhOBMy"O3<K_{oWhlBg`NbŀĽt>z8!b  )�.sД>!RP~AR]gJBlJOǁ-J_"7gpDBH EZYyġ~Ȼ 5éT;o7yؘt!!rOEҾHwyw[:R rj>!RpH�^=2.K p݋T29//͒0%g{B%d;cR'Z'kp}F805xvtFך Ux,n8K m̃]j1(BH-Tj1z&tA(۠{kI`l�""QlP'ZƂMhl¦vt8 .=‘^@c?ݲG!DRLn,؄i)x p8)+8ͅ\.T !w@_t(L½~P?x{VO'z!HqYi6.4EOG4yw!I ~Y:R |=P!"<)Bc*5_SKBs7 7J%~JbS̒mC!ȣG#pSP(d2>'W̬#!I(d ! ɠP( !Ʃ >"ُr[X:J؝]�<jrP'R1. [߿F.2jꊧ&dzUOI`A@TR'Fs2)ƮGf ѽx?<8cPPTP*FKIB(0{[71:4.֯ߍ>Zj_+9}˖4i*$a ^[8߀/Xұ L=ӧ/\|m߿|}{bϞ꫍pw AA}p/,Ghh?uoσLV3wD&O^�B3Vuϰu�Tx-�pF<6Tb*JBk=wI絘8}z3γ{a <9޽;b/˴ٷ8}~;SFU:/܀k٭;꫍:mRRpo0j$'?.fXm|v=zݻ{TGp\n=,3Vu>}:"6ݞ=G! oq�@l9ӱTTpBl\jyi"g0e Ym;II�/KNi\jv^֭덧"կ{@F�WbhܹGGZ:C.W޾Ri�4j4w/EÆ�'OѮuڱ]AUz?uk m2/PׯǞ=+0bćx́ݻCXjmv_ G"`oo777A=B!�I@o'|�ppCA˖m1&b]/P@RSk_?wuu�D2<a24)OXgn0yd8} m@~~!~ ׋}B!عot\҉T/hѦ*�?Qݻ T_>sgsPA>N߿XfF_"aժhݺ1RGl+FDD+W&2(BHRq^"j#,ق?~Ǭ{!6v=6n9qSӦ-Bb$&>i0rdJ5a«? ܸB={ MiTDG/Q}g`F�гg;,X{|BH�Dž+:w~EӦƝ6Y_JO>s.G֯� 9sUɓGbHHHAFe]< ٳߪR}tĴit,7"> CB>Bqi'.Pzp^t8X+S|śT\ >!8{T܇� P>(BvNkITw *AIBlNn/ iKB<-WJR 난)Ⱥҡjpoq@Cծ٠O!@~HŸKB̬0%7 N0[Z(BH- :אYd{hp]j1x<|>}Q'Z"lpwǩakʷt8 O<q΀@\.BQ'ZB uD_F~b&<ᙈպ/\p5c j� �� �IDAT`ooOIB*V]>q4r9}ǿc7@F`ARARiX,X,6)!IJJ]Zp8@_Aԗ'[3u 7ڼPdgH;�vvvpqq'<==ȸ= !AFFۡ<y<_G08[[U^!A|qU37L,<\Z�^.@NgA$A*puuၞO!\.Gnn.233Ը(<8g�ֶA} |FZJÁP(D";GGGJR+NYYYɁ"%,-P]V.$ATQ tt8D|URy%S3ǃP(v/2 ҺR+N|><yRj=߶ r p4UWދ/ HTZP'ZdRL&\.>EL(óet8frWK$J'|>!jA(B(B,C&�JR{EQ: nn슟goo5O"@$U: !+NŇ GTZ:JMC�OOOH,?iɾ%}B#̕8A\ ,͠'B!u%}B!VOkvu%}B!V/~~|MډHl%}B!Vo`:ğr^ ]k60CIB@$$A7+wϾ9Q'bFibYB �?+� GhBlS}g]�lˁ$BG<CzO!&p<xvyp/ B lp6 !،̋w1%:h/7=Bpy!P�p[&D !ؔzh_8.3%}B!6ќ7/3\[EX8"A !XT(Ҳʫ$wܬRc/TN( v޵neЅ|B,H4Gʁ=xRmc97A]JGkRmX3JBjSp\ywӻ1"w _xE }|q傕(LAL~[`*5uEOA<:jQ'Rdq򵏐q&;C}p*ONg+DUP>O!Ƥch1"q(qj& 7{ޅD"H$HT[GIBHH?}=߃O8םVQ7�6B<- '�t;<vN �r0ŧɂ gOBvL9j~O,Bʷ#-- ͅ\.thfGIBHʾzpngpHg:uqku⧤O!Z=�DZ: qQp:<JB)~>ލ!:X: %"w ENN233ke⧤O!#?1޽[:<;B<@&ժOWB6��{#1�ȅχL&L&BpdC{B*��>*ZU·Z\.GAAAJO!Īp-ʼT\I\W1FRIIBN5+pZJRX,F ! \׷wQNN&{2L& $8M\*E+XV钊NT[~j]EV]+R )fq̄${2IvAEf`3;;<֐ <ywn; >x<KƓO{c۶?a?axW|cQ1ƝH[j^xa>`ٲEXj]vNrNg74BUU A{;(oW#G2>t8~_v,}""s</QW%x̝;{;>G &܆ nÈd.?E>ݮ&7߅v�@+]~ѷmXl1-[O{c�AgDDGmu'X:cdlH7EDo N}Q.(>%FKt=BSTtJST4J芥ODDptăQcQ:հ30(b|wJŞ_T{eӁg߇ aLQt'""ݍyȵwr5м0pLg'f3, V{ Kt:^c'Cmy+ �CUϬ;& V6=ODDY1 ]1~2'1"E^$ J�f3DQ`u`1c} lѫljþ?"ǚ!, [ EQ(JN'NgAift""tǗDlu e ,C6{=|@ó >�vx<|>|>AEݳeK&NBI(2EL^#z(ip9," ng83[_= ­ILkQvzQ^^R\/0K&#``њ}6ӣ1ʊ+SF@ AUUR)(A` I^/^/< f;DDEz4£+O$Z@2A7 ork5󎩉TVRs>\fl6\, `Q}H- f3( R%4 ;@]6ߥqd2eE$vl,}""2 jjnCe̩h6q8=ldʬO%I*XDDdtl6l68NȲX,d2YMߑdI!�. ֲnipd.͓$ (l,}""2PdӧDL&;}_!�ni/(Oc[MP>x~ w#""%XDDHbQ;rj]hX9;Krdl|w߸~ 6yYS,ϰ(9+cäUg/X_ߛ(/\hWx#�aA'QuL>p򂦤_I0El$Z€It6O1m_atĜǙ>boX(6֧j<?py3}""~/wu�<w~ܑgP8*;�UE#Y]DDW2?꛸XDDWdKKP:~OQikB"B"T@q;;|-^Q{Eo[ ))| 7d@gOA&=K ))[{.GP,3F5DkI 9~ caqv|KÈշ(6~MQ=#5K$>e\{9Zvz >4R3%Ǒ7ckDqK0p XDDUMPq٫w?kLVOڰ厕h.'@$QA`Q4i?CQIҸEv;x~}!*τ$I(...}""ʊx0M7,BQ^24ϸnFH_>gXﲯj:}""ʊݏ`W9Oy0;E4n5 Z[[DǍ >8| =<%#Fɰ0l9ͻ YDDڕka[1ltΉل'  FYDDD|#`uIw`!alHWhkBFSUꚑH$F!r>W��$s=��%Y!2zgDD+%N mHRb,}"""L2\�mm hUUL&YDDD٠;;QW2~/tShT*EQL&u3XDD\.'.=y/aΜEz37P4˗ |fFI,}""i^z'7/Oz3NXu}Xų޷v5R9('L2?KR6n\FgCҥbțz /,B~#QNJ/[cw㡇۱cfʦd{N<u v'"pXFl۶'ܹ?_ ܁HԳ'B<>X,a.<'1\N8;vw>u^Tևx2ǖ/yE\ո` }E>ݮ&R눈pf �ƕ.GUwVkzn1 �JP_ pODDr|�Vt.V*Dg,}""UQ[S}atN6ԧcq^hzghxwѕFGKt78vagH `\Qt'""=|/ˆϾ˜J莥ODDY1 6c߯1:JF]h|rh3wfV=ODDY: ^crm3[a`z8TzA`2`Za NٳXDD5cñ+ -0>"E΄fJ��f(p􉈈-bƠ?< AWْYzcsox64o1E(w:p:Wi!hhh@F_5pVaofb&@7Mڰs�ς6"S�`xPVVQu˔m,}""ʪp8:u v z6V&G|<0g|%ڎ 8;/eE#V‰wv#3[_= ­ILkQvzQ^^R\.= '"D"hmmE0D0Df`(pʊ+SF@ AUUR)(A` I^/^/< j;DDez4£+O$Z@2A7 ork5ND P*A+)W*f3l6\.Wf_�,Tٌh4łTy 4MCg'І/8?:L̵(B$x<.|ODDzZVXVvȲx<9fG50LUY$I]�K .X YŐL&3)YF債[cws8K$I(]�K .D"y$i"A߿[wK?zC٧('t|#8 |`}GDDK(%C}]o'"wt:Ԟ5Mаvsv)><0N <gMn<'" kq6LZpN_X]۰(/T͟Ds�?ƎOΙ'}MI`0,HA4(�[iW1qODDyAPmPީO`j,c (o}/ wue%PS*f;GDDyd +G[}�/J'|E<ODDyenvK.>an`6�RJ78Q}""9muMHCHGZ;;|-^Q{En[ȸ ))| |[ ~c)wD]>`!4%ccjEwF#`-x"QOq,,ΎoǛ<C{cV4Eϡ)*`}='"kO9[=C~׍`o˛PEE,}""ʪ];5&'Cm'߼HQ!5(,}""ʚ=8g( 1i}pVnoo7ϣ?D$ ]\ODDYE( x0uB+\͈ ?:?|}PQV~C~+hmmE$A<7:.XDD{5t'.¨ǯ�6*gjWnŰӍr;'fbC(B(B4e}*f]dtsX$CZ'""]76 atN&VAkF"@4E8,W\ODDj;s\Gmp9�Ab,ːeDd=3}""ҕ@vdy\ոؿ^3WېJXDDD٠;;QW2~/t+[AUU$I>Q6\N\{8_Ü9^g2n!!�g%H?JhT*EQL&{1KrZ$"㥗<w͋ӟތ'֣v~,yWgTu'ļy3srgTgt9޿en?lLrRz.[cw㡇۱cfʦd{N<9p 4^)͈9ODD9`ضmO湹soA2J�x<sv1~QsKrZ,ðag\.'N;M=<[o'^bDܜ'"^yN[o}W^y,sl_G^U &O4slŊq=O| (j\{mYw-]zoGvXصș>l?N+'\{c� zKtYLVjpJ%c茥ODD* zKp/ҩCw,}""ҝT4 MQrMQ+;>n-FqFG9Gϐ*莥ODD (?{~6RC0(cQVyȵwQf7nAlbj5:bbQV{oتFǁ\یV@U=@L&XVlo?KfBb8xG3^h™LR�l6CE8>ѷ%Xa7[*>[:S'?fgCCQ()| Yp/hz4l+[]0jL P>�ς6"S�`xPVVQu˔m,}""ʪp8:u v}za+#P>eγmGPrX" wl|(N&3iDQEyy9JKKr/0 K*#``њ}6yQ 1bʡePUT @l6H ǃₚeYGEjJ$ 0(LAp<뛠Z uӱ4JgHG}l6frefZ�K BX,0͈F[,H@4tv2:a@ m}d\/"$I.XDDdjjn,ˈSl6hptk\ ɔYKTЅ@邵llp:eX d2%a�\.Xʺ5fz=Ñ4O$XЅ`MjO$G2=(B�|>5^z7}KrBwʷ>��7Xfx�� �IDAT|DDDKr^2V,}""yGWC@y_ܴ k7g'PbQϚ ڀs֔3,}""yʾaä[nOgOE5 KBYH4ϫ|�Pc$ipQ^Д1 f͂DKHH}sgDD}%54 v_)26\L݇ۀWXV5b承.|DD7JFBQr7�*twX]DDWmǿn`Q^6f3�@,utp'"VׄD0D(kA%ciN_gsKW^ѽ*.#""hJ '߫A;qȵ_6V*gOE&򑺍XDDu±UwrD5";c\#@Jt8O8gM1X}+kiS0Wd^bQVɵ'ɜ@ˎMGFALqZ(v\" \p >eMp.||�T\cHd 5^ɷ߼HQ!9w,}""ʊ=8g( 1i}pVnoo7ϣ?D$ [\ODDCt"<a!.#�ƽp3Gh|ϰe_-+uDDݏ`W9?g ?튕`vhjA" DZHWƑk0(7:9"zz([i.~>vZV [<(s"`6!>B!B!DQ>Qw1VwQ:eDx'B8FkkkA?Kt،&T|oQ.7 B]3(0dY.}""M[ݙ[:n\�--Ȳ YH$ NsXDD%nM&ӸsSoSWې*s!#􉈈^m hUUL& >x< E~з4,\,Dw 4 T La>'|{ƶmStxo'"c2;둶j:"}ejպ.>ξoh8@߃ @}}SvQׯGe}q.XDD7Νxuu_K<3;wFv,}""> ~1&L &܆#bɒ]>;}"")FnaٲXl:~>|f]M,jLtc��j\18Ʌ7�ZIODDq,kk58ɅK%c舥ODD) zKp/rA 0)1:XDD+h\S=PGWEW,}""Հ[!ۍҩ!%'qUFGKtP:~(mssA߁g߇ aLQt'""ݍyȵwr5м0pLg'f3, V{ Kt: ^c'CmF+ TYw L&V+l6){KbBb8xeN{cx, $ J�f3DQ`u`1c8vU|daS'?fgCCQ()| YP/hz4l+[]0jL P>�ς6"S�`xPVVQuϖ ,}""ʚp8:u v w2'~$ʧ AQW B\qB8n4c?\= ­ILkQvzQ^^R\/0K&#``њ}6yQ mlr(0e@TUE*(6 $񠸸`f�GDDYQZG#<Dj0 % $S#&(VC=hJnžpa6ar2B,|ODDY"X,0͈F[,H@4Dtv0Gɔ_EH]�_/T Y3;lҿf&)J?=˗$` `Aj`t:!2bdf5}G%a�\.Xʺ=vz=Ñ4O$X@MbO$G2}(B�|>=nz>ODDn6Gp@ @+0ܑ`QK"=ފODD9u=kvaS,}""yYaݝ6bG5% Kr/l%6LZpN_e/=&,}"" U?Ds�?ƎOΙ'}MI᭢06l$Z€ 5"XL۾93}"" Ō>ߝ�%54 ׍ '8'"w DjB](os1>~qX]DDW;'s[I.>啡 b�<.npDDsꚐE;<^<?jQ2f0656{EݿnB>""2p41o\eQ2 Sﺉ(|d|'""ChJ VޥDIX$}gkD?8^ ֒)r17oEsQ4m?{ Fj>ܗ I,}"":$>h91w()8{_ %ڎK_Z nm\'" nڅ^Yc:~2Ԇyo }b$I(Ŏ >eMsl3ܘ>8+[d7qpy􇨜?$(+6ݰEnX{<c#h|ϰe_-+uDD=xsᅟv;`vhjA" M,}""=qd {x:JFauaCr�Mw|Hw+lbFG9G՝ O! ! !􉈈�3F.2:9,)CZ'""]76 atN_YDhp,\s>骭 � N9�P["[,e,#HgqODDR1�t܎L2\�+bjtR8bK(Tu'Tu'UW]onceoK@4d2'""&ˉ{gc3gޫLƍ7>`09n2À߇|i!JAQ$['"x70~w2|b7ĉ]߇%K^<}k7jj^C*?َr4.$a_od~v8D,]z/F"W<™>w=v7ẕ;kl*Lqp'SglGy,}""i nĶm{2͝s~8xp hnވTJ=} d;jcQNXo6sc'q]10a`QNJ_N[o}W^y,sl_G^U &O ތ (j\{mYw-]~7)v5k3}""ҕn�q$ko �ܻ!POb�$JKtUAG_S 0)1:XDD;h\^Y)*utQt'"" e((hXRrWetݱHw};a/F=x}}TEw,}""ʊ1~Q2B C3Þ 0ͰX,ZFGQ,}"" q|Mz[8kQs �ág� fpʞ'"m?^ih7{E* gB3 HR�� Qp8XDDDߖ`1c8vU|duֿ?N~gCCQ()| Yp/hz4lı߬@(€L`o. aϓ�ς6"S�`xPVVQu˔m,}""ʪp8:u v wR'];S(<+vD! .y)+rjBˆ p(N&3iDQEyy9JKKr/0 K*#``њ}6yQ 1bʡePUT @l6H ǃₚeYGEjJ$ 0(LAp<뛠Z uӱ4JgHG}l6frefZ�K BX,0͈F[,H@4tv2:a@ m}d\/"$I.XDDdjjn,ˈSl6hptk\ ɔYKTЅ@邵llp:eX d2%a�\.Xʺ5fz=Ñ4O$XЅ`MjO$G2=(B�|>5^z7}KrBwʷ>��7X|DDDKr^2V,}""yGWC@y_ܴ k7g'PbQϚTim#6yYS,ϰ(9+r-ÿ+"uކODDya!o�ԯ;{j<;g0;DD4%&�KP]ӁiW1qODDyA&P<inT͟el<>xw\%<P f;GDDyQė�,"'"29jOr_7( }V3�qtp'"VׄD0D(A>P1Ѵqg%+`ޭw 4%ՠᝏи~ ڦdduQvODDДz{.GIX$}gkD?8^ ֒)rv17oEsQ4m?{ Fj>ܗ I,}"":$>h91w()8{_ %ڎK_Z nm\'" nڅ^Yc:~2Ԇy+q]͛O,$IEYB'"iك~gq>]&.ۀ>gB$ts>eE<¦( apg7#rO~ZNb#G<o7ӮXyN[`0VD"q邥ODD;0,_aOGHq2"zz([i/~>vZV [<(稺s"`6!>B!B!DQ>ѷq/bXEFG9EQ>e0Z[[ YDDf5{#ҩ+ 5#H "C+}'""]՝Vps�DX 2dYF"08YLtDc�v1e.W5f?W6R)qb1>Q6NNս ߖiPUdODDM.?{<0g"xW㙌o|`g ҏ!JAQ${'"x70~w2|b7ĉ]߇%K^U݉??1oL.#"$a_od~v8D,]z/Foٲw'8'"<x2v؇kY0힄'Oe74½>_ h3"~NbQNs8D,Xp#mۓynܟۯkL@sFR*� O`ܟ㷿] gT'"ű|0lřd9 ӁcN⮻~9v=O[ĉ7('W{S[W[WxrUɓ/[msj~B>""9ǯ^[}swKE>ݮ&v-rODD2,SI:�h%wC'""]9gӵյstR :c> t*>%FKt=BSTCST4J莥ODDp4ăQcQѰ30(c|wJÞ_T{n-;!4:XDDcrm3dԯم͇.f:s=A`6aX`ZأXDD0ޛ8jq 6@Uz8TzA`2`Za־,}""ʚ?㕆{cgB3 HR�� Qp8XDDDߖ`1c8vU|duֿ?LzgCCQ()| Yp/hz4lı߬@(€L`o. ' ς6"S�`xPVVQu˔m,}""ʪp8:u v wR'~$|S(<+vD! .y)+rm'Zqhp�ZBI${5M(pz(//Gii)\.aQVqD"" " "Z0< Db=>PV \92Z "JAQ�IzzxP\\\P|w#",H-գ]D"5)a}}[v:&ZRh>Tfl6\,P `YfhqhNF? hy _pt0LkEQ$Ix<p]�K bZZex<s #-;nk6a22ӳ|I >(]6 6 N,#!LfVS$�kYYLp82IQ >,]SD"H&'EԿKﴗ~OcQNN6Gp@ @+ ܑ`QK"=ފODD9u=kvaS,}""yYa҂Nky#Ϛ`yODD9YVx9ſW'={6,}"" Disݐ7�b/xUw48a w(/hJ oM";^QCĴ+ 8'" X̨~9DJ[{y׍ L?8'"89s#"I9';Qp }2;!,.}""+C%| ODDye}7C�6 (>唶&$!$BN_rN;1Ѵqg%+`w a4%ՠᝍh\_IJFV?{*]7em\'"Ӕz{.GIX$}gkD?8^ ֒)rv17oEsQ4m?{ Fj>ܗ Y,}""*$>h91w()8{J4K_Z n}\'" nڅ^Yc ɑ aWa.'@$QAcQV4i?CQIu.|m@G3!I ztE( x0uB+\FG�}fD6ux.j_!?'""~C9Sif߭F0Dkk+"zKtuzaY~.¨ǯ�6*gjWnŰӍҩ;'fbC(B(B4eu|#`uiA�� �IDATSID!Chmm-gnVׄ0:_YDhp,Ts>馭̶${��jKq,Ce$ >F�[~4TU6\b,}"""=e)[AUU$ɂ*}~ODDy#O`gѯ4; >x<]!4MC*(H&=gODDy'_޽m۟}{A<+]>۱(LzZ/@}l"Z{;~ODD9N*AP_gDD7+Ǒ#u:t~{;>卹sgA]ݗ< ΝKƣÇ_ nÄ aĈXd~vNrѷmXl1-["nW 9'""ݘ6�W Nraa�V7bn3Z NratR :bn> \Pxo_1t'""]gOE( 6(b2 `ntN5 )92:XDD>ߝðo#՞ ?>ny~ȵwr5aˡaOfX,XV#>7u;^c'CmF+>@pu d2jf(+>ñ+s" <8I@*�f'"".bƠ?< q lѫljþ?LzgCCQ()| YP/hz4lı߬@(€L` a8CYUd �v;<|>|> ٲODDY҂SNq._ZDo<0]`{%ڎ 8_Ȋ|ލPGAu4ɞ)|M "n7^/QZZ ՓbQqD"" " "Z0vʊ+SF@ AUUR)(A` I^/^/< f.{DDEz4£+H$Z@2A:= ork5󎩉T:F:Z,l6frefX�KEjX`6FX*/i8߉"/a.&)s-($ n` `^VVv,#gNwF٠f3L&Sf~z/IR>'""fftBeb1$j$Kp\u{N{#si$IE` `%>ŞH$2d2" Q�|>Hw{N{G}K m @ V`#Q/'" EzuKrѕ>P{7B XDD&cäaG5% Kr/.'1sb]O?{ ,RMXD?{T}}$ii($tX^NG1 9}T~=C:u?t}]T^uױn)CY]Iې4Mrr"-ޞ$}'r~w?'s>DF=3oC>�8j<g0q"" +EAȎ_窩!bQ^,fTL�5n|vUf,pODDy#Il=?O߇ì{w#"U2;0,^}""+#)\>v ODDye=!X��Džq N?xzrNgc+h]#3d=6{E}zPq!JSRh~cգe6 >FImsbQ6~`!4%k^GW!zI5p #`-~"q? Xoɛ<CWKShvBSTLAC|^NbQ x{ :opZ:CEfJ4cngcu/(7,o ubm/i^nQ-$IEYB'"i۶Ӿ60ٽ{8& zh$IBqqqA?WQVă!lq9nLݴ y|D:z(|W}PQVWC; / o)嗯" Hxh`;c֢ztau�ehݲODDkxa=v+WL7:ynM}�PPhODDybF ""(2yp[,}""UWK:UېH$F!r>W:Vpg�GX 2dYF"08YLtDc�rc2<\:\wb<x\ 3HRb,}""lPPhl|\s.73MӠ*$K(\.'w?yС7o9kLܹK 2MXO +{= 4 T Lb4>HD3ϼq.ɼ6 u||F44l<}֯m{;َr46\P_*={^<w8D<ݨ92\y3}""Iey+~Xcvu-FYTLcvOBss>_YY9ODD9x\ر/ڂ…7H&wzAvԜ'"űj՟P]}Q5Yrtĉfy L?XDD{S+o[!\4\:\{<+2.#"/x|:̜YwksS?i|vXصș>l�Ըbpu�ZImԟXDD+G�l08IblAt'""]|%8CFGQx_1t'""LEߜe} 3:XDDʛ!K;r#%'UFGKt7KQ:R]on1O YgtSk:{ l6bj_(+|Sbp8fq 7a-A@h d2jf(kpN`hwQ_ ,$ J�f3DQ`}^Ō^c;CX1@QL;N8΂+}A4DD4p455'~]k ٨xP'{t#>P쀰l6+2�v>>eeeEQL'" hooӧѲi::p쟰:Q1 _v!z$iD9,ΞKY㈞Ch R7O&3iDQEyy9JKKr/0 K*#``mm�wAvBY1Qh2T*EQ l6$IAqqqAGDDY]Z.CaH$PaQ  dmrsJoci(HG2f3l6\.Wf_�.Tٌh4łTy 4MCO' h_Bxd2eE$vt,}""2'jjnCe)h6p84ldʬO%I*XDDdtl6l68NȲX,d2YUiɒ0B�\.ee}3}=Ñ4O$XЅ`MjO$G23(B�|>C4^N{@(4>儾o(1B`w#"" XDDHobQ;?h{iS,}""yٓiĚ7eJgOn<'"66w12cc?X]?а(/gg߆|�p?_{ xU28a;DD4%WgO[HE{1#`Z0mj(/3PI('jl(o?<̇AH;1?^(oFUo� @ɥYDDWFwSyI.>啋6 F(>V$!$BnF Ù}GP2fZww[ m[ȸ ))4MѲq;~"\!ODل~ODDДNy]fX$gU3Wzǩ? +`qvoL ]-aNumqMQ3-zz9ODDY'74y+оu1jt R)8=J4+Yom\'" nދ߰c:~2ԉ{uF=$AEbg Km>O.nLpÌ[d/S0o`آY$ ]\ODDY( 1u+\=ކ]B-~^ODDY_! 0&f_`0D"q邥ODD;(ZeQR7:N]Kpuނ/~>0ۭ^1(空}"`6!B!B!DQ>qobF ""M <p8-~>骫 Q{u6$ DQaȲ\pDDƳu'�-Ȳ YH$ Nֿ8'""])�xLc3]+bjL'R8bK(Tu7Tu75\ M2L@4d2'""&ˉ{]f^;t[x<1wR!�%H?zKhT*EQL&1KrZ$"g^¸qd^?k>>h#6Uݍ[oeTÅ|DD>9C"ׯ{Ϟ2>z7jkvn}/g?lLrRz.[ҥ?۵�n1ʦd {Og75w?EsKr!bرc_ okLB[[=R)�'`_3*vNbQNXO(,r9t:pD3cΏp31qFi,}""I^T[x3Vz+W> ^{&O2sl<V:.#"/x|:̜YwksS>E>{]M,ZLte]H% �JroC'""]9gu6vgtR :c>!( csehjthA3(c*ox0/4:yֿ�VEw,}""ݠ/GjkHuւO T!pODD?<q/6xdQ2N݋Bh; � jt~'"Mw7ĚFǁІmug� '"9a4v_a,h&T �`6!"K,f2.ۿ<լf)Yt6CX1@QL;N8΂+}A4DD4p455 FpTf!X&C8_be]\)|�x<||(++(e6>eU8F{{;N>MׁcDŌT\; ELBH҈rX="ihljÙ}-�^ I${5M(pz(//Gii)\.aQVqD"ttt  " "�-1Ѯ~S(+8 R-PUUJ( Af$Izzx<(...Y>](˺+RKe_6 Dj0 = $S۟! PnZq,M�9hXlf >ӅjX`6FX*/idt ^h:L̵(B$x<.|ODDdZVXVvȲx<9fG50LUY$I]�K .X YŐL&3?-YF債Ocp82IQ >,]SD"H&~&E4thKi/e'"Зm=a�@�#F|DDDKr^2 T,}""y_؀ |Op^4ߒ@yODD9?{22Ě7eJgOn<'"66w1޺zy?g ,R߮hXDDFu$Cl�|}7PIT>Q^Д^qN`He�{L۹؀y3}"" Ō_"Po#jl(o?<̇AH;1?^(oFUo� @ɥYDDWFwSyI.>啋6 F(>V$!$B5 gAɘhln 2+nB>""2V4GZu"\!ODلZe,}"":MIĚ *D"<!p<%=/S8N]^xgbj #vmێCh ɨ}/ǯXDDUrC3ޞ[7Nǐ/`س[DF,}""ʚ p?{!9NlE4߭30Ő$ (B{>sXDDm~wQpc҆{f=K^ơ'7aЃE I zt( 1u+\FG�\kC㿇uPx_!?'""ݽWC;r&ID/_E0DGG"KtufQ[˦otXE}([?@떽],}""U a[QbQzTuDlBBBF,}""87Q1VwQzdDvA8FGGGA?Kt҆ӨrQ>*mH$FÐeJH7go N~�@m n@eȲD"ap'""(�\Vf2=5UyS@8ӉT xXODDleߙiPUdJQވ`Ȑi<x'> @4R)(d2߿aXDD7~gQ_ع{?Kr4Gښ5 B 0O=klQ;Ө d}ŕ8u:(o Rc3>r$~_t,}"" }='`^XDD7|}Ə&Ə&jj@(\}݆ZZ_"ݮ&n5rODD1m��5u�ZIn '""8gu6vK%c舥ODD) zKpo J+>?g*Z6FG鑦hz}1Ì+>i#8NiH `lQt'""] xƾᅥTWn.;ě@gDDD;crC<(9v/> 'f3, V Kt:#oĉ5ۍ!7a-A@hu d2jf(+pN �� �IDAT_a,h&T �`6!"K#~ ˇcjwg›u?Agc;sy( E,4MӌADDCSSZ[j_Ge).{l6*>Eyh2ԉw l͆vqEn󡬬 (-XDD5p8}4Z6Bo_\_ϸBH҈rX.dE#t {-�^ I${5M(pz(//Gii)\.WODDYDс`0`0ж|�; Dt[(+8 R-PUUJ( Af$Izzx<(...Y>](+PKe_6 Dj0 = $Sǟ# PnZhJs6bs ˕b,}""ʲOblF4EbAB'h_BjO a22⋢Ixv >jZaZa!2x{O4 Z8}l6d2eVg$l,}""2HXm6l6N'dYF,C2̬N$�kYYNipd.͓$ (l,}""2PdӧDL&{\)�i>^Qe'""t[OEp@ @+0#�'" E}Kr6 AܼMd'PbQϞL??b˼Ϟ`yODD99l0lbu{K~)H}f aQ^^ $Cl�~j<g0q"" +ɰ �\Y A0mjc(/3̜*60YLFh#6MU�j;YgDD78 [EMX'"R웙C'XDDW 16w1JǍ68Q;DDs:[E=d=6{E}zPq!JSRh~c+-Cn8c^k0(P??_‰5UiE1xF \5Cx z%XK_qϽg[&FTڶGk9Qp_>R_/'(f=own8F-!_ R3%DZg`Aq31|񍺍XDDU{o ubm/inQ-$IEYB'"i۶Ӿ60Y2= -IP\\\DD`o\S7-eh6cmh~ U/+uDD~ ?m[`DUAttt  M,}""ݙ}GqlZT/Zq2">|uނ/~>0ۭ^1(空}"`6!B!B!DQ>qobF ""M <p8-~>骫 Q{u6$ DQaȲ\pDDV�#68I~�@m n@eȲD"apř>J�vdy\u8x^3Wg:JXDDD٠*,\ogAUU$I>Q6\N{4ڡC'0orx㙌s" eLcj՟PYWz,AiREA2h,}""igy ]ym裍hh�߇xϭ_l"Rw9gq!$il$~U{ypxѻQ[s>1dHAgDDV<tO3v:[0힄|"ۑsKr!bرc_ okLB[[=R) 9ODD9-cժ?k͸0('zWs=9jCXi\u;0yrWd\GDD9GUw_̙u9^v5k3}""ҕn�q$=j �?HW�apJ%c茥ODD* zKpoң3 J;>?g*Z6,A3(c*ox0/4:yֿ�VEw,}""ݠ/GjkHuւP>QĽpuFG8v/: LgwfVODDY:#oĉ5ۍ nY T FCUϮ7& V6ؐODDYsshC%MӞB*AX2 I@*�f'""#~ ˇc;7&>ة+@CQ()| Yp/h&6ՈR\lT~}<~sd<'WalhWd �v;<|>|> nODDYގӧOe.tu?a8~ \W _v!z$iD9,ΞK9#t4#C pnMg _4 ׋rr_`>eU<G$AGG @L1b)5ePUT @l6H ǃₚe"]eÐH$ڣ@2A :D P*efl6\,P `>]fhqhNFоV>d\/"$I.XDDdOjjn,ˈSl6hpi\ ɔYKTЅ@邵llp:eX d2Ӓ%a�\.X4fN{#si$IE `e>՞H$2d2g"MQ�|>HCiҏPi,}"" })SP>b GDD4@(%C~}@'"w p7E- XDD'/2o%d7XaQs o]ޟa?g ,R߮hXDD~P|�pơ_OY'}p򂦤4j2@2,�<WVCL۹؀y3}"" Ō!3' %96E L?8'"=ڈ #ASU�@�`G> ix�a3xQy4~/(T/fyI.>啪;fd=u]q N?V$!$Bn/B(3}-^Q{E߶-d\GDDҔ؊uвq>FIEϙ!סlBm|'""ChJ '֬GEH ,3jG+Z=E߅8ߎ7y&0b:ж8Z?ϙڇzz9ODDY'74yѾ0u1jt R)8=J4+Yom\'" nދp?� W= dudo{Mkw zl1$I( >eM۶}]ܘ8nϒqM70l,H.~'"C|rܘi .C\oC㿇uPx_?'"xo/pw^i-H"Z~* :::DǍ >̾85T/Zq2">|uނ/~>0ۭ^1(空}"   ! !􉈈>x3j`u<ID#(gZx_1:JWWAhlC"@4E8,W\ODDll�8n�� dY,H$'_h �z]nwLU[1s5pT xXODD ok…X{w&iTUE2deĽ.G3:t-{ <ɘ;w)s%4MC*(H&ODD9-3/aܸK2͟w5} O 2*zB>""IKRWegKG_;[_3|6OpODD9)=[xocҟfu�]eeSa2= ͧ3ǛN~c͈9ODD9x\ر/ڂ…7H&w �X{/V;'(bqZ'TW_yMcpp:8qw̱|G晘8r#4>{w*^y-<ÙcV=+Uk'_9zkw\ QQ<>sffά;{W"ݮ&v-rODD2.SIz�h%!Pb:; NҳX:[dlHWEDo NQztf__1t'""LE(A3(c*ox0/4:yֿ�VEw,}""ݠ/GjkHuւP>QĽpuFG8v/: LgwfVODDY:#oĉ5ۍ [ug� '"9a4vƦiOAU5KfA3 HR�� Qp8XDDD`1cįvplxW}';ahb(EQ2t:t: M4CԄ4<׶QYʯ`o. u❇ ; , LnCYYDQ-S(0qilڅ߾','ʧ/UC,W] BQRpX׿?AK(By4ɞ)|M "n7^/QZZ ˥aXDDUxHn;�m0s Bʊ/@ AUUR)(A` I^/^/< jp=""ʲRw— C" ChAg'n3Vz{K-@tF:Z,yn6ar2B-|ODDtZ,fDQ-Kiz:c@Z3&)s-($ n `A>YVVv,#gNwG٠ѧqf3L&Sf~z/IRA>'"" fftBeb1$̪OKr`-+Ә;9̥y$Ał.|ODDKmT{"<d4E ڧwK?B٧('|[OEp@ @+ #�'" E}Kr6 AܼMd'PbQϞc͟eJgOn<'"6bi ޺zy?~ )H}faQ^H"Tw'-�O7=2Ԯ$nep w(/hJ HS&X%a�P:@0mjc(/3& %96E L?8'"=ڈ #ASU�@Jtv`G> ix�Rǻ9xQy4~/(Z^ \,}""+UzL[(7DQNllE"B"=%cF~wﳹ%+` 0B[д-w@n8X%s \_ XDDu‰5g=$bj@J8O8w{,ΞM%ةm;)*s&;|^bQV x{r: opZ:CEefJ4cngcu7W(k7@U1H:Ѵv|C$QAcQVmۇiEQIs,y܄A~͂$I(...}""]<(MK`p �p#zMC~XNt_" șO"h@$A<7:Zc;c^C(.B7@Z-g^X݊Ӎң'B{�BB(K/NMT̨]dtY$SF;  ODDjiCgiT|({EېH$F!rA>Wn:[�$�� dY,H$'?,}""ҍoi&^S՞7/ 3HXDDDzFZ^ hUUL& >x< x<!4MC*(H&kODDyG?zŎ; w?s>>б(LcyYO> S˱f͆^>圞oj:@_\SZ{}|LƐ!8v1#GN@'"` whl'{ 񁎥ODDyaobof8x`QtNrʅѷmxx(jbV#gDD�PI>[WK�@[,}""ҍ#pv]gcI>[,T26XDDv(̾&>1t'""]LE(=AsQt'""]U4 `'_it5)92:XDDA_qא} a0芥ODDĽpuFG9ϩ{ѱNf:Þ 0ͰX,ZFG7,}""ҝoX{>'l7:NІ WUPճAdjf36d?bQV\0;n{!'%MӞĵfJ��f(p􉈈J1`|8y}zޘb: [ EQ(JN'NgAift""܂GV#v؇b̏f!X&Ch_be]\)|�x<||(++(g>eM8F{{;N>Mׁc]K: %W] BQ…CxNmx͇%K!< diEn^(--U87aQqD"ttt  " "�-1.ʊ/@ AUUR)(A` I^/^/< fp=""ʢ Rw— C" ChA'n3Vz/8&ZR霍tX,l6frefX�KEjX`6FX*/iЉЪBL̵(B$x<-|ODDdZVXVvȲx<9f9G70LUY$I[�K .V YŐL&3黓, #rZVws8K$I([�K .)D"y$?i"A:ﴗ~z٧p}-SP>b~ GDD4@(%C~}@'"w p7E- XDD'㭫XG'lS,ϰ(9 ˿W3ϙk>Q˿ %,/Wd �Cϼ +g0q"" +T痎4d�� �IDATL۹؀y3}"" I�)|�y$T-mT™>Fl9�GV>3(oH>U1ċʛ{ODDyeof l>`Q^`:.F'prNgc+h]5!Jƌ@kncsKW^w 4%76i]=Z6p(k0:M/XDDdMIĚusiE1xF \5Cx z%XK_qϽg[&FTڶGk9PНp_>R_/'(f=o9wn8F-!_ R3%DZg`Aq31|񍺍XDDU{�p?{LVO:__ĩWw zl1$I( >eM۶}]ܘ8nϒqM70l,H.~'"C|2ܘi .C\oG㿇uPx_?'"xo//ax aDUAttt  M,}""ݙ}Gqlk^6%@XE}([?@떽_,}""] a[QbQSuDbo@(B(B4e}'&*f.2:y,)GQ'""]u4*\ctyBc(0dY.}""Ugc+�pg�GX 2dYF"08YLtDc�rc2<\:\wb<x\ 3HRb,}""lPPhl|\s.73MӠ*$K(\.'w?yС7o9kLܹK 2MXO +{= 4 T Lb4>HD3ϼq.ɼ6 u||F44l<}֯m{;َr46\P_*={^<w8D<ݨ92\y3}""Iey+~Xcvu-FYTLcvOBss>_YY9ODD9x\ر/ڂ…7H&wzAvԜ'"űj՟P]}Q5Yrtĉfy L?XDD{S+o[!\4\:\{<+2.#"/x|:̜YwksS?i|vXصș>l�Ըbpu�ZImԟXDD+G�l08IblAt'""]{d}{ d&"EAEb[iĺk=UUW[n]zm]ЫU +*0 Lf&dd$N*:L/ɓ|^䜙<<DDji۸(ڄmtDQ鋈H.:O4T%|Ћ`ΙhuS鋈HM,ּduٿv IVG)9\4,?w|g v$198%V#:�ׯ#Ӓ`&ibp88N\.O(hN.:6ʲ%-ͳk˼WkazB66 ݎv[DS鋈Hٌ9c*7wұL@hn`(?p8x<|!WC{!8BA/?4\%?'a[9Xyiba \L4!""GKK MdOr|z|ic_6RR{& B֠?dZ'~Š3͝xLx^0hh4J]]ڨED$9r]l>(vy0$lgL8M D"5#G Ox+򾈈!劥:{]O5p{q$G'6̇_v9pRtc wرq |0lLPP(D R#>*})tL&s9ȅ|ofq u~?-nÁ& GpȉBu:8Rl|>_\7ߟ6mŵ}#p8L(҅*}ȇrrzil|Lo|:ng.|P鋈 vvizzz'W$A\uqyCv|ťy}Xl.\tH�hi1ʾJ_DD*`.vXQ'6mxED]'uÕJ_DD*އ!iyR*}x ιz⏿VLg7XQ鋈HoL⏿ Ka8[7ܨED*O=%ג 7co2X;""RzcN2m8n Na#V<ED*bQSOӯ7 |,ʤ[:EDjLr�sҥK-JT]T""R5_ OD8/hqR鋈HUiFwFA/""Uw_]?~/N{Hɴim77:BO7};≄JhɞX.}k_l܅iOvx݄Mcܪ3CJ_DD,̎`9?)jp?AHg9m4\8;n>B>&qxLoråG3*}(ۿ�΀)7,f3D%;_C艹93c%;_%R鋈HYF-Wއbܪy̾w%`ٝlC 0ۨ5@ Pwo ~-ɐ|ξv&>ucjjjtkɞ;G~ˬjYssLigIWWlֲ\H4;~`w`uB2羋mMSLJ|ED,owh(EVI`f_$W鋈Hɵo~C/na_aucLa16RwH$H$R)ȟcp<LbQ>fŧa81O2sJ_DDJyK^:vwxDM^Rdt:Lk;mDϫ͟�-y,tt:MooN(Twa�|[_ Hw{zzT"""az�#?v#\ūy睽Xv4) r9H9 oP(Asss_re\}70M|>ar *}ho~sv5bōD"Ņ@<�JT""RѺ'k7oz+oW|344DBP(/~}.+VE8vBDD#ذk?|~k9؝6m~y>lH_DD*Rh=w-7pO֭;Yx5uu m--m\s?_ߍ"~ER鋈HE<^}!VK.]ev~\n+ �d\rhhZ"EDdyǙ:uBt`Џ W]o~.e,X0ۊM/""o}$_䗿xoL0sϽ:x졇o~N&H)˖-dٲ<w1G7=C5rxN+d ,Ӛh*}))_dN /ȀAJL/""%5"m. ckW N\8D#L]g ̝huS鋈HM,ּduٿv IVG)9\4,?w|g v$1c1M͆trxBED,zƦ?He֑iIE (gٰ\.J_DD?~4?v[xeݖٵeWk15p8x<|>J_DD5LZ7w5_fQu4^S`a!W64MC¾ [hmM0niL~1cK~Onד~ a8,`GWx^0hh4J]]E/""eL&Mt<'!81_Ep|06TԞ8ɣp.B֠?dZ'~Š3`΄4M<PH$¨Q9r$`Q鋈HYeY$ojظ׎%ٮ^vDOP(1 ͆&DD"ajjj(T""b" Lқх3/`}m_ׯ_B "|n`0XeODD,Bu:8R.Y|}Lƥ}̓"S>|`ۋk=@p8L(҅*}ȇrrzil|Lo|:ng.|P鋈 vvizzzrYM� Ao=W\x<CA/""+۾KG.=]-)@4%0vpKv{ 0=|@,cɥ 6hG>aB/""/:T""R> w?_Nӯ'PR鋈Hk,~wf.8J_DD*h|c"lXr ܚF/""U!8}" 6.V�~|W|ℕO{HUi>2_@;ɴun'8u<X4E N=OFx4�^(Znq18>I.(QuQ鋈H2?K |I/""Us?MT}ugot$#|:pGDD*JLk;ԀFG9Ah)ƀsbQ<P)V-K4o xb#0 ?&<oV}q/T""bԞfv�׿nDM[_vyF:ˁl98ߎ7w$Kwś$}D8n7Lң(ۿ�΀)7,f3D%?oVv{ΜɱREDlL#ϖ+bCO1n<f߻o}9>xB<zu&x<x<_9v*})}M?~,w[y{(`gºS7>F f쉈HYiz̺>@pj=<-dF[[tuufW*})D.޺L } V) ˜.&u7OF<ůk~ܡ̾"|̤gR3/LJtED7š0/ :N][S;I$$ RJ_DDd0}g+Xe@c/> lj}$CU""RR_b8$h MJH&iȴFʿ)N I>'͒NIZQ鋈Ht7�؎tgH~^kgz�>q~Ba;(};ڎtcP(T"""TzrI>0 r\ٳ.Hf{e̘%W>>ܩEDjua˖Gرc7w>>ܩEDsyyg>C,֬G}渏wN_DD*@鷴1qb'}|H_DDƘ1x{죡!zLJ;TK.Yw/47οp%KpqW2mN;8bƌIr8ÝIk^7kĚ57Y?>Ǿը5,N2I�ʼŎNn8ɧ82`mR鋈HɌEDji۸(ckWEDbǁ'g*>cpw`DJ_DDJj7Heٵ% h-S'YT""RRugҰ,޹n?1q0=9c,ibp88N\.Oܜ]شqudZV,P(�`ٰ\.n OhN.:6ʲ%5/_9|>T"""5LZ7w-o(x:[m) 0b~~*}i!DDdxhiia߆-aܪӘrbBǖ-Á'I׆m0Wa0 ^/ph4J4S|I&tttp&Yz&SYg cs|h#!'N`(O.B֠?dZ&D1W.9#|4x<B!"Fbȑ_`)M6N8fz׈ȼAIxa$ S( y fv D""p!3G?HL&MPޙl ۾8_E>.f̰xp8p((>.{""Rf-RӉ ryׇ41iԆ:?BZ|C   lJ_DD,Bu\\.^/tl6[>;>ߠp8Y}@ 0d T""bbuݸn~?tr\q6}rI@0UW7sK�g>EDB}%wr%EF~_N{}^}T""b]b&O.]!F;򉈈 *}xD }pgH'&vZ~<J_DD*^gsn7p VeT""RG3"ng篡a8_?ED*NHo{K%#odž"+bqʧED*dZyr^v$։trK>luĊTo}9kM eD,+[:EDj�u9ҥVE**}V-dc?I_&'T[AP鋈HUw`;3aF}tᎈTLk;vz~{udSS8~_Ţx"RF*Z'""Kif8F:wa^7yxˤ4ؿelNu']4_Co}WmtFÅsp%oH$I>qxLorå8R*J_DD,<=3e L<@Η|<=3'&prdD*})+ȳʻS[5[,[ɦP)Fݬ<OW 濾G~\[hI仭t=3a#PSS3_KDDlv4=[fU  8sf2MӍ?Nf*5Eqo &\~Ӿ=9]LnnZzx<>_/""exC>f{Q&>Y ~x<>_/""%׾-Whq1ؚHmI" HJT"""}k_0VG>d![*})/1z u]4&z{{IR$IJ_DDd02t7=roS7tfi4VG;T""RR͇*w{o}-�# �� �IDATQ鋈 ps`p!w*bqG@ۑnLӤP(T"""P(Aq9eVs֓4M<aJvN+ED~KxĊ7C8|^xxxn˃>θq_8ՊI/""+O~y[&z%?<CCC[n1{d_W#W[;!""z@`6<Xqmgx 3g}Ș1Jh/"";tzwp=c[d-nK(t&qED|V_%|.2w?I. cgEDdyǙ:uBt`Џ W] VTu"֯_o1B=J:K3&H)˖-dٲ<weozv-j/""%(d ,Ӛh*}))_, @wsIӗmd %ҶqQԱ +@'J_DDJ.vyx|.3^|N:JɩED&||T]k^:_Bv$J_DDJnL;w>SQ3;n}0g4Ml6Ӊ: V#:�ۮ[G%m ;l6v;. mqK/""e?M~rnKZ2+�8<>O/""s&w-;Κ/3(x:[m) 0b~~+}i!DDdhiia߆-aܪӘrbBǖN߯'^\q:Y0*za(h:<OsJ_DD*Lg?'{Ng̗f1_,1h#!'N`(K5n{iyj$ Q̕ `΄4M<PH$¨Q9r$`Q鋈HYeY$oj&6o~@v[SIxa$ S( y fv D""p!5XşH$H&{(ttaLc l~oW1¸'r90kG`+=Á& GCAw |PN'E!_dqi߇ԆO=߇?:Z|C   tJ_DD,bu\\.^/tl6[>ߠp8Y}@ 0 T""buݸn~?tr\qVGj$`0nPi<ϐ.|P鋈ʶR{ooo}OWKF RáED" |b75yri !ڑODDdP鋈H%N+T?C>5Wk TT""R.8ߝsu; .o*?O]mu;> ܚF/""Ua;ٸZZ8{lX-=L+'|{_DDB'ǜOYv'։trK>luĊTo}~c�3ExrUT߿MonsҥKTUT""R5ƭZz#~M;N*}*c/<խ |vggŒ7@UD7im'No"qo̡vj?{ 7kܡ�XO$TʨUEKDDr=[Hg.L#&<oV}q/T""bԞfv�׿n$kr7hpN须9I@ϾEq/ Sn]ZER鋈%GpLa1V'(ﶲcc93?.T""RVg˕wj]>X>M=D�SY x<< *})};M<\[hI仭t1a#PSS3_KDDlv4=,eZ9]Lthkk.٬eJM/""eh[w ~8fe}ۺ֧^#W鋈HY4x?^duIϤfV/LJ|ED7š0/ :1]6RwH$H$R)ȟcp<LbQ>fŧa81O2sJ_DDJyK^:vwxDM^Rdt:Lk;mDϫ͟�-y,tt:MooN(Twa�|[_ Hw{zzT"""az�#?v#\ūy睽Xv4) r9H9 oP(Asss_re\}70M|>ar *}ho~sv5bōD"Ņ@<�JT""RѺ'k7oz+oW|344DBP(/~}.+VE8vBDD#ذk?|~k9؝6m~y>lH_DD*Rh=w-7pO֭;Yx5uu m--m\s?_ߍ"~ER鋈HE<^}!VK.]ev~\n+ �d\rhhZ"EDdyǙ:uBt`Џ W]o~.e,X0ۊM/""o}$_䗿xoL0sϽ:x졇o~N&H)˖-dٲ<w1G7=C5rxN+d ,Ӛh*}))_dN /ȀAJL/""%5"m. ckW N\8D#L]g ̝huS鋈HM,ּduٿv IVG)9\4,?w|g v$Lail6NeuJ/""e1G669F*ku�]LKۊ Gwlv\.nW/""e?M~rnKZ2+�8<>O/""s&Z7w5_fQ`uhn30 0CmiVᣥ}p𦟒;tqNc [sxr;{mؖsf8FDQx<%U.*})d2IGGoW%fSYg cs |1HeH< R.d ;^ZA5mBs387MC("0j(FI0,eT""RVl.:;;ěɼ Tzm/̝9g<>B@>0 l6n@ @$!R|P鋈>ZDd2IoBG4ff}q\~ ) |"vfrs8n`q?T t=G tp8H\d}a0M}0O`Nm}n/x<0PhH>ED".V˅NfK1n̾ ^7CA/""+XۍN!gT6Iuξ|>_qi^  Xl.\tH�h-i1ʾJ_DD*`.vXQ'6DDD T\넾nR鋈H3$_u;-OV@UJ/""Ⴓ9WXWڊi2*}xDBmnѰlnT""R$dkIk }7~B&+bqʧED*<]JYv'։uS3y,K>luĊTw$Dh$߁�#bQ&^tA/""Uc?\@79줛8ҥVƪڑODDFg e348i/""Ue%ş& J_DDglGFÌ7@UDEDdZɴӛH _(zQS8_Ţx"RD:Z'""Jif8F:wa~Mx4ƭ<.^<l?ED=AD!>vyF:ˁl98ߎ7w#d$9$~0KqxݥU,(ۿ�΀)7,a3D%?oVv{l33'&5ÁJ_DD4l.>Vc+˞l! m͚L  |کEDl64=,3poY{ɛ6&>ucjjjlkɞ;Ge_SY쵘4M76:;;"Z$T""Rr]u/pLS=9]LnnZzx<>_/""%xC>f{Q>f3#!]*})oq-L˸B#ӯiן$ TJ/""2־3a 2>d!Y*})/1z u]4}JH&iȴFʿ)N A>'͒NIZQ鋈Ht7�؎tgH~^kgz�>q~Ba;(};ڎtcP(T"""TzrI>0 r\ٳ.Hf{e̘%W>>ܩEDjua˖Gرc7w>>ܩEDsyyg>C,֬G}渏wN_DD*@鷴1qb'}|H_DDƘ1x{죡!zLJ;TK.Yw/47οp%KpqW2mN;8bƌIr8ÝIk^7kĚ57Y?>Ǿը5,N2I�ʼŎNn8ɧ82`mR鋈HɌEDBmeuOձ +@?T""RR3{?18;0wQJJ/""%5cZQ Y۩RR*})3iX~LE~IÜ14l8N'.'J_DDJnΏllZsT8x;ȴ$X@P�faq\n8*})9ќ]tlmeKt[ ]k^f_ǜ@>px|*}s&Z7w-o(u4^S`a!U64MC¾ [h0niL~1c˖ikös+N0 ^p8L4%RWW)[RR鋈H$I:::8~m-7OZϘ/"8c X/D =qGr!͝ta/-O Ӛ6!r̙Pᛦ! D5j#G$ KEDl,]]]tvvlj756o%}_I0w" p |0ln�HH$B8fȌA/""eO$$Iz=:w1l6ۀö/ׯb|}!qO>ˁY;3?^Ap9n7`8˞Gtp8H\d}a0M>iL<)9vÄB![ |P].. K:&/t17;v{q~(? XXn7nO:\.WMߟ\m q };|Ҽ@ *}P_]b->r܀jI�(_׷^c}Xn{@X,ƨɓKlю|"""ÄJ_DD*^.uB_7\ED}~_+O*pY,ym4\pvyUT<x"~m6~hX~6'*} ugwqɵؾKE!c_8a""Rz .%r,Riv𺩙<%[:bH_DD;"4sr Bo(\nq1}ӛ�vmtR+cU '""U#ճqFKuk2zw42vՒFWZA/""Uw_ ?{aFΛfm*""Rq2dZM=E6j?{ 7kܡ�XO$TʨUEKDDr=[Hg.L#&<oV}q/T""bԞfv�׿nDN[U=#opoɛ;Cw2|m{qxLorå8R*J_DD,<=3a KL<@Η|,LI,| qp2<[=ŸU}Jl! m͚L `P鋈HYmizYfEK2$mE7mLX} ג=)w;M<ˬjYֳk1inmmmtvvE6,WED,x_03/X̹br[wk!_*})1ދR4i"F^$W鋈Hɵo~C/na_aucL<$ TJ/""طX`u{i=NmL&ůk^᭼^'ESplGoo/Td2I:V鋈 F6UqO<lt:M:h'J_DDJ0�XyﭯvX===*}0R=�}n .dռRE,h;ҍi rJ_DD 7(ޠ99/JvzrI>0 r\iT`Ϸ} o^]XF"s o Osy78Z"EDuuO2os+WWdgghhr-?>}O?l+*wUyk'DDD8:Z`Æ76-yacw3fTVED"}No;nxl֝,^Es c?n\}#W<T4oqe_f'޾|pl6[V<T,>8SN(>N }45䪫~`aԷN?Y/_Q<s?&\ȹ^YgiD>8x|ٲ,[箽vq=MЮEED^7�aqeZ�uM/""%En8z XT""RR#bQ<mwYe@[rotEDbˁ'g*>cpw`DJ_DDJn7Heٵ%|[(d lN:JɩEDϤaټs3~>c'az sXLfp8p:\.#P*})9?i1RY�w֒=bl6v˅8ብE&^Yv?Dyvy?O|i y�ϧs9~t-;Κ/3(u4^S`a!W64MC¾ [h0niL~1cK~Onד~ a8,`GWx^0hh4J]]E/""eL&M~dL۬�� �IDATz|ic_6RR{& YN:wCI ix<BHQF1rH`) ,ftuuI<'L o~J]-Ŝ3NӧP(fvD"D"0555Cj*}G?HL&MPޙl߶/ׯb|}!qOr`֎ W>\{M0,j'""h:N)C> @ҾI̩ ztŵ@ @8& Xrp\x^4lx ?ۍ7|Ap`ۋF@`H>EDB}vq~4===r&I�`W]ݠٷӞ+. x<!]mߥ# ;~};=CQ鋈HEL>n 1jB#0Kt W*}x{~|knJED5\p;?v^[q3 ]`UF/""?~4~m66,g npPwLN6.V�wqgzxW,NXT\"HOۅcDzdCVGx鋈HUpgB;Лc0\`q1}ӛ�vM8ҥVƪڑODDF×]H 'Sw42vՒϹ.MT5`di'/""'ND1Qz9~_Ţx"RF*Z'""Kif8F:wa^7yxˤ4ؿelNu']4_Co}WmtFÅspoH 2}So^wBB-ā"XQPAZV鋺j-Go9U9Z.gZާ]-.QJ#Q`0 dfd?Лdgg5?\Wu헶ߴ ˸{_VT""bl^| #|ZZ*&ds' eXwv-aLaՆJv[yX^jE00 YB/""%Ӹ%&<8q-ڌGYAد_KDDd.y/q#_Bcj"D;~Bkk+XvmM/""%ߴXF1;ʉC|w򻷉FU""Rxo^mw 'z:zh4_/""Ewh{xeO�emVklj$I?bʗq F0(0t8 7Ɲ$ bX-~]ӳ2|洙qmC&!LH$HR*}rV"qi}mr94TT*E&;Ih:|V�8Q(Nȉ0�sr Mg֬l۶X ;:w`Y|l6)|~V3sg{v8:XE.4MliP(k;TU]UW-&Gt?O<)S7Nny{ݫp=?g ~v_E[;!""GЃYM+ ?=t &;lᩧ~#4=ZOŋP8~VfZHM TVr-/#~YR鋈HY .w}܂wqWc d9th \t:ÂwwRW+vYR鋈HYLlsPx.$ ilϷ`M7=W2i&ED,u_yg_'([~GBӹ ǖ/ 7ݴDW@H7ә={Q-Ztq'fѿkQ#})*ȅtisu$�*붿'J_DD_bIzٝ:ho"S鋈HQ `+i}cQzնj@'J_DDh~~uxeLawS鋈H5\w9f2\G>m8kQN/""EW3uuW^ȶ%\{^qXbY˅R鋈HILmw3;�n]IziGvs88N<^oW/""%>s~9q[l_~GTur9�\.aU"""!Oᇋ?L^r<o{M=c0<L4B@+}eY!DDԱo>YǾ;~y0î9ѷϢrТl\+:vFq\ys1<ydU磪H$B$0TT""RRD6lOskɷwSː/IhU8\OF.F ;{)&M1n!} #0Lj(-0 *++ 4jBP1 lJӴňFDHx)vk�&ϓ0MÁ%  TUU1p~5pGDDJ"u 4A&Ig,p8z=Q<| + ~2 b�VU�6s`uv\.^/P0﯅*} vrHz<*,z0`SwяN0 UUUTVVxx<|>Rt0~ rt: Ww`.|P鋈 z R):;;f?.[ B!<55't~ai^00~]umT{&)<liߗ$D"COl_N{ݏS컩ED,HlngP__ϠQю|"""lTH|}/]@}J_DD^ݜ x}ͽͼ=n\X`}J_DD^``<@F\r uW^;xbkO5*}"3"K@|޸ueqmNXt$_,*5utk׃kO uX4>Sj~'A�3Y =ߜcsA/""}F�o $xӿz '""}F9`~n.;N鋈H2K ?gcEDO̿�H5SڜCt"O(뼕Ape19Z'""J~Ğ/6m2s'.)cv6)!@/""H~Ė`ﳯp@dՆT~qJ]5 wfw0_J|n\>/[ZR鋈H`]w`K|pM|=O # ~-*})̱%Z"îG <G꭬n9<^jE00 N/""%Ӹ%&<8qYڌGYAo_KDD$.y/q#_Bcj"D;~Bkk+XvB/""EߴXF1;rP&=6mh.~ݦ;[gWF.<Чxh.~աqu <ӣ1] [IJ<'L&U"""'bʗq F0(:lkNX_J_DDW|x\ssѸ6!ɐL&I$R)j9DGS+846rtT*E*"Q鋈Ht4__{j+�p(ggg*k>Lvss:'|;,;:w`U$ϓfU"""T8:XE.4MlɳEDH3vۿ3d% | ә>~S鋈H+ᄏuVey>~S鋈Hq:'_4Oc;/VSw2bD}O}jN#}3 ΝM?puu>~S鋈H`eztz뿱`e}T>߽c8q_cs7N鋈HY9}ҥwtc1SGط[鋈HѸ|^�i$_WK�<o{2EDhG.hٜX7HEDhG0•(WF-P鋈HQ_}o"US.l#RT*}).LپUju&FT""RT5S'Pwl[,ulW5~(ep8p\n<Oݤ8xgO1ieí+I;|>txz6'<yT""Rt9i[ț';�ۗƮ<kl\�˅a~ȉr4~;%Gep3lSπya&i ?U;,˲!""}g:c̃vٌ},C ٸWtbZyLGUUHH$BMM a,_1EDdmmmH"ŸȷwSː/IhU8\Ǟ6]$?5w؅Ot4h. i00·, 0$3h B'V*})t:M{{;Xh4Jgnr+Sk�&ϓ0MÁ%  TUU1p~3Nj?H$Ȥ:ɷ㌥ryGñ'oa~e:acªU |\.^P(TeODDJEvq\$=~\mXv Nc;~#,7 `0HUUA/""6hz<<>T*E:.Lzw\8Uݣ`0o T""bbzx^�TNljd+āP(ݽӞ/, o T""bbd2G6}āH$Bp/i˾J_DDlw{@}}=F*^~F;򉈈"T""RSJ_DDޮ"c&fviQ*}){us.7ZolwS7cT""R X^~5. qO|D/""}i>K5,"mɧ6',{_DD3ɯ+fR1m[8. 4 uX4>S5i4߉oP5�_f7؜oP鋈Ho֝�8=nR-ghG>3j?7o@2[?`X-]Y]w4>Ϩ>K>ӏ/p8� zXrCdб�5z|2>,f>EKDDvسeئXfmKՔ s ?$?lbOqLAdՆT|J]5 w[fw9ߴ˸{_VT""b`Aы/a1/A [{<'*&ds'ED,3Ǻk f 6T떓+QA 0z5/T""RRk~?+^bƒsے!A x^O0ddODDJf'i\g>%  4/-Jh'hoo'NۖT""RMye4\csq8I'~-{h4_/""%VvG)|BWFU""Rt־ǁW1+T;Qv1>HrV8xd2GY2?ڸD"A,ůkzU_6vwܜ6s4-{d2$ITJ/""r"ZJ1N9 Xmr94TT*E&;Ih:|V�8Q(Nȉ0�sr Mg֬l۶X ;:w`Y|l6)|~V3sg{v8:XE.4MliP(k;TU]UW-&;Y9 <.Yv.K*})k)xb%S+<7oޝ|<}ݻWQW{~t^|]ܟKl ֻXfYMV~ z&L8z!C?hSwxb_YRS3s2Q6ԑ˞J_DDʚopU{,k;^ ]ϡCkGp:jS鋈HYLlsPx.$ ilϷ u }|±eD(4. .CH7ә={Q-Ztqԑ=-עF""RT.|ڴ9IZ�XuߓM/""E寏�9I:U Rd*})p%ol;Jk!ɢ"Ds]&_GT""Rt ]L}vG+בO8iwS鋈HL@ݕmɪn?ea\=Xrvx<vG<T""R~xy?L[WiGvs88N<^'J_DDJ"0|0>0mysdپ5vXcr�\. EDDQC.F}g%`y6 n{3`yi~W˲,Cȩc߾}Y1 lF>ʉC~6qq9XsŴU>*"H (zRQ鋈HI% 8\E?o$4!_8!pz6]$?5wRΧM:biͿB@G`4P[aTVV4hՄBbF/""%Nioo'F66\gʜk�&ϓ0MÁ%  TUU1p~5I$dRqRX<;D-̯L'?,<.XUGkrz BQ~-|]DD/Tۍ"jm\a:=5Nga-aAׅ*}Gx|R)ta '׋7:t~]uHRtvvf W\"ABxjjN;Ҽ`0aA/""6.L&SxdӾ/ID"RBwS鋈HY8=AF7X?DDDN*}){xI}ݩJ/""eoW`1_}k3^|4(9̛{-76ܻsai1*}){V{,/˚KQw典'fT>Y%K@l6YFE?/""}3@6ҭqnފsɺvG,{鋈H47� 3slN7ED7pxN�7Nev3#r 0..;N鋈HrgT%t P鋈HG8�UQ=Ϯ�� �IDATe͉MHj9DW!2dG{ό =[_W3j%{""bMY2ϿAlv,3wjX]9͟uJP鋈m6'8Nj 2 uUjCx*z@LiFꮚ;x;hgKۈoڍeܽ`yO+K*}_~wŗ0r`Η={F2T}WT""RRcݍKصE]3W*[VoeuRs( a`=*})_}dH|k3%+fx=`ג=)Kqj|K>@hL-3^ZDp;~Bkk+XvmM/""%ߴXF1;ʉC|w򻷉FU""RXG;Jȅt=OJ4ů;=q_rq2涋aAklj$I?bʗq F0(0t8 7Ɲ$ bX-~]ӳ2|洙qoC&!LH$HR*}rV"qijn#ˑNIRR)2N*UGA�罯�BwvvEDDNu8 Ph:f-d۶]ŊXq˲dYH)7Դ3?˵[suљŲ,rifvN;EDB_ mܹwϤj1h8z!GEDx≕L2ܼywrػ%v^E]]{?3~/ 8j `͚e7mZY7x[0yg O=[?lz*<O,^±2kBjjftN|o-߷[nW~G0 ˒J_DDʚopU{,k;^ ]ϡCk�,]˒J_DDZgge˞c̘sT'P@Oc~ naL6юeM/""epx> O>@زes?"EU8|o%zODDN>gϞӏznѢk=1SGط]鋈HQ|G.˧M%UQ^=T""RT#u4lNһlA{J_DDj@}#\I;ҫC|otED꯾7*)\WvG):]uc&l_Q>au&FT""Rt5S'Pwl[ulyW5~(ep8p\n<O*Ĥ8?L8N#?txz*})ț'5g/O[G.ra~_/""r4~;%o,y̳gt384ML,~  wXeBDDNcϚu4ˏɵf5g3YTNZs7E(+{.4*|TUUDD"`FsJ_DDJ*HƁ*2/|{'1 ™__d"aAr>mOh20<߲, àp8̠A& 6*})t:M{{;Xh4J?ٲ{{2EXY?M>'a&K0$bj*}Nj?H$Ȥ:ɷ㌥ryGw[_N~Xy\X𷙃֞ Z쉈 >^nE!7Ve۸ÀuzkL=G?:8Z|0TUUQYYٯ T""bHR|O,o't^˅,\=A/""6.X׋%J$lE8 Ԝ9wy`0uJ_DDl]SLf=}_8D=~;u?Np"{@}}=F*n~D;򉈈"T""RSJ_DDޮ"c&fviQ*}){us.7ZolwS7cT""RcTz,/˚KQw典'fT>ҩ[cq"R{Z�ƛ_|:ˈhsEDO0"*`8 oU\n˞F""'~jwT eP?ߜcsA#}35n)q ŦDD81C�h 8iz_DD]^9s.;*}S&|o!8�J9Qߡ})+]-j9D&5ajl38fCVG0•ňB>U&| i;;pTM˰k>ǰN*}E&{}IDf _mOE癩4ͿHUpzop'MqiMq^U\>o1ieK/""%`];h0z%\x>F8X&>haVw0}~rn|]W1)L|tPs떓+QA 0z9T""R2k~+V39m͒f<JWGz ů%{""R[<I՜ȗl/|ИZfwVbiJ_DD.i;=cw.;NAġLzl>;hD~]*})Mw,[gWF.<ԫD~]*})Ck+wx*Gov$v+xx<N2T鋈=+_4q4jqn;I$b~Y*})g_eeqwwi3G޲L&C2$HJT"""ǣMD..TӀF.#NJHRd24*})�{_m�W_s-""NcqNO<~'{g@y٬J_DDJQ}Gg˲rI6-ybtnw /t:sOu*}3~wWn l#<yOu*});N~U<ןF}i,]zŪ>~w""RvzN߾VF/O q?i/""}Ɛ!ع.rOu*}3,[o7t[o7,츏T""g|72vlg5>k?{q?;})+ZyYN.:~,fQ#}) @>mڜjI�`UOEtM1})"̀F7v:j@7T""RTW_Du`J_DD1i/}(ڻr㬑vG)*U ]y!ۖ*s]&yceY8\.ncwēF/""E7釷NkO1ie?$0�8N'ks“G/""E>s^BFޜ8xݑ�ؾ5<kl\�˅a~ȉr4F<;X=�Xf?6 g0M4 eYvSþ}سfcrvٌ},C pq9XsŴ>*"H (YbR鋈H$ 8\E慵ۻe$4~*cOD.F ;pBΧM:biMB`G`4P[aTVV4hՄB_`+L:X,F4%Drqoޅ~Vk#'7r9Lpz a0UUU 8ߌA/""%$ 2Nm8c)\p[_N~X'*`Uo3>˅% FAwxn\.I W[űƤXct: k  RUUEeee-|P鋈 >Zǃ#JN Sア^].Np~(? ؤX^/^@ @*l6['يq  ᩩ9sw K aبd3Lf{}_$q zw~۝hlngP__ϠQю|"""lTH|}/]@}J_DD^ݜ x}My{͹z,/˚KQw典'fT>nƬ[Hi ~o~v,#n ˟>Lv늋04B.E:v 8K-;bH_DDwOchl5eP?ߜcsA/""}ƙKnoN}ghG>3Nl�!D. F""ҧ ϙCu P鋈H2{ �WR=e͉MHj9DW!2dN#BgFqp͆_ ⯏`+Oђ=]&|۴̝y2a|agT""bMl >: Df_W6 T_oI=ߒ7{8]1F\>/[ZYR鋈-l?p F/ v-l*<.F2T}WT""RRcݍk*]3W*[VoeuRs( a`=*})_}dH|3%g9>j 8p`.~-ٺIWGd[r?bϝ?X,F{{;tڶ\Ŧo{,KCġLzl>u;hD~_*})Mw,[gW`L=OJ4ů;=q_rq2֋aAklj$I?bʗq F0(0t8 7Ɲ$ bX-~]ӳ2|洙qoC&!LH$HR*}rV"qijn#ˑNIRR)2N*UGA�罯�BwvvEDDNu8 Ph:f-d۶]ŊXq˲dYH)7Դ3?˵[suљŲ,rifvN;EDB_ mܹwϤj1hp̲e1lqβ#vYR鋈HYkoO+2e\ywK޽dڧ\eNpd-5 oڴoC0a;= 2AED,uJpl̚8<[za\T""R~ w+<`]\{zZC.?}Q˞J_DDZgge˞c̘sT'P@Oc~mLwED,ug쳯-[v?w#B\tэ\p?ODDN>gϞӏznѢkgo5r�ӦIzՒ�(l*})*}Izٝ:ho"S鋈HQ `+i}cQzuh]#Ԗ N]Fr]7ş296<(EkrdK_;']|qHJ_DDfꮼmKVw.Mw?Ų,. ۍ;I�'5ɴq�X+ɴ1wNǃ9ɥ ̹O/m}#o~l<y5<kl\�˅a~?j"b#�J2lSπya&i ?];,˲!""}g:Z3욳},*'-_̆E(+{.4*|TUUDD"`FsJ_DDJ*HƁrb%e$4~*'dG 轔imEo9? &5Feaa Duu5PQ鋈HIiۉbDQM$Wצ] +Sߑuyrip8zA0p*دF|8DL|[;X +p~Ǟ(_䇅{?DžU1�*�9h\.^/P0﯅˞vq\$=~\mXK? X},7 `0HUUA/""6hz<<>T*E:.LzBu\8Uݣ`0د T""bzx^�TNlV$POM {=_X 1 _>EDfe=՞d l6{%H[׽^T(n*}) 'R3hԨG#)B/""e/o?;UED*>komfߋo&PW7^qSwy{͹xBo+n qOlF/""}Bݜ Hxc-�}{ o]ut7|O{HlBC#R]q.'Fudr#=EDOpTv<-�ryk964>ͼv |^/6N'""}ƠW0TI""ҧ4\ϙmEDO9t�`+2D}EDtxaIGgFqp͆_ ⯏`+Oх|""bMY2ϯ!i;iR5e,î:?ED6rn'5S _mOE虩4ͿHUpzop'MqciM|^ F/*.[+|^| #|Z:*&ds'ED,3ǺbU f 6T떓+QA 0z5/T""RRk~+V39mɐg>Jr0|} ' 2p~]Z'""%uɓ4X͙|ɶ/"8Ş;Bkk+XvmM/""%ߴXF1;ʉC|2v򻷉FU""RXG;JȅSz:WFU""Rt־ǁW3+T;QFz1֮$n%I&*}Ğ/aQ>aqn;I$b~[*})g_eeqowi3G޲L&C2$HJT"""'MD..TӀF.#NJHRd2T*})�w{_m�T鋈3 =q:'tfZȶm#pef*}R7oi53g~kh꾱3eYr9L$vP鋈HY | x۾s IU\ub8p,ACP鋈HYkoO+2e\ywK޽#f gq_+z)"""p=5 oڴoC0a;z?.~>B#})KݣTxXcoeCj�� �IDATLeZ8o_+`^;%5`«x -Xp^{;v@6C֐H3,Xp?~'uub%4˖=ǘ1 RNB�|[t|+6mq˚J_DDR }|±eD(4. .8plpMKt~t!|~1Ϟ=ٳܢE{{bo5r\HO6']WK�n{EDG.hٜw٪)2ՀF7vWw|otED꯾7*)\Ik`J_DD1i/}(w:iY#Rt*})B-YUVL6<?˲p8\.n7'J_DDJboܟb&v`??M0p8p:x<J_DDJ"0|0>9q[|Wi\|y*:r�. 0*}Ԑ˧1EDIG>�eY+ٲW8GUy s2I&c !h|Vq`[{OբVj{wknՖeoV*H)PB &3$3sf,7Ik^/rΜ\\׹pyi6˲b!""GKK Mֱm;Ds'/x{~ _ ;خ9k4L+iYUz BD""x<_""ү8d{ OJtS˰E`0|!lDQQ58r.erkwwon:L[! @ PQ苈HJRtttN4%solnJgO}~uGr9,ibpA8& P|P苈HXx<N:I`$V6f;(_Ƽ~p XCB~ѱp8p|/>-{""RppH<dkC`Y/Ncu0B"9:X].. K2$JOrקvv=?Koƀ|P苈HuvI&tvvdꏕ�>ٽӞ/3 3""Rda=ԞNL&sk:ZĀH$1oKw Зݿm@}}=5FD;򉈈  })yX)`ķ|DWE5SPR苈Hɫ3/|Y3ousfoaeF/""%8W8aU^+]3 ѷ5B_DDBݜyeH6]s&0򦫋\a""Rr]ig!"asDRW%+v%O=}) vVC�XՌ̜"WWѶ-^:^7vDDl8O8H*`:"3')OED>P苈HY9[nR5el+*zc^oJrg gb ~4G(h"Ub{3MK_`Sh߸ ̞6^7)ci) 7 })f6-!S=u F }rLޤn$_Ǜ9]{6u3腟uO+Y }w޺pF/3n9O(x-lrXG3?cY_vKB_DDefYw}xl 0k6#-g0 <O#N/""fɮ%39NJZK|K+/_ YFoQXaTTT ג=]KSˬJP6 JP苈H6n{3ˊ]N^pp&=tuh}f ht@B_DD n']qθ|*Ϯ+F:""RP־;3W )v9'4v'v3XX,F"P苈EpF4إju`8|x<N{{ ~T |<o:9875NI$qɤB_DDdtpsK8Usl6K*"LL&I.Q苈HnV`;t8*KwEDDʞxeO>X.NmcUUd2 }Bꏐ?V ~l,"b&Lk) HH~2l% z R>?)EDl|?w/aݺ%lڴxv })9vn zNO4~N~'}~3})9=oiicg=O`ajx۷7QW9B_DDƂsmBs>qm‚N/""e_cGp9s>g}vz/""%{n~.~1Gط<7qx�Rf+`]q�|褐Dwȕ|R@ })!< ml+v)(N-P苈HA"<&ٮv&,v)Wb&Rl}xeKȥLl9إB_DD zꮙŻ(g.qXcY6 ÁrSF/""7v{`&R.u>Ayr�l6v;. ] Oq(Ӟw? ;\�4t5TudY�ϧaWNgC}mM:rP,c^ʦ6Cpyi6˲b!""CKK Mֱm;Ds'<ot<sMôr^P(D$!P]] I/""&sA ZD1 YWxh3Eb{cT Nr.erkwȴu@cF{exajjj"R苈HIRtttN4%so`=l6ck=6\.G64Ml6n0ÄaB }g,#Nv;؁=az(_Ƽ~7r`U #GGv쉈H?;6HN'E![7a1u'ѷv=`P`08`""RGrzI&R{o,|}np`{a Iwnn7~d2Igg'L&?D2qb@ U]綻w|yaxlB_DD;dtdz%A D"ܯ{@n })=l5p 0ڑODDdP苈H:N+ e~'-Z韂ʔB_DDJ^ݜ|{ /gͼE͙տ<P\ 巯Qw,F& }) s/"+DM{7T7]] KJ̘>B6E* Z%+v%O=}) vsxW+!^�l߰jF~fN+鋈Hو}n9\;=? ڑODDFx5!ځ#OT$ HYqP~׾ })+u6T2 Hj=@Wұ xogb ';h૏  YjYD>)fVѾq=eu2pA}IlofӢ{*lN;SG`4�O3)כ͝Wfur9Fמv>&^7^I^w!0z%qxFڋoiew:*''W""ү,3˺eca&>x-@fxcd%ߠQ9@~dגp}cE!/|eq鷨n0 ***tkɞ]KhSˬJP6 JBS苈Hm7د^VrNΤ#nϬ!W苈Hxø>&>bw-Syp:h4:_/""w`{q=}b.ڱb1bDB/""hZ<Nț ^'֛iook^-^' FD:&HI& }j=(K8Usl6K*"LL&I.R苈HAntV`;t8 }0�"v'ٷ; Ub~G@ۡXE.#(EDDC.\nqQ_c`Yl4d2k""R?_y/c[b޼; /$ܹ Fcvd/~p|e$$<)S]{]| ײ{ܹ_{\|Xdow%Np0j7.p}_b„;=Н VSBˈz""R'q=cϭ_ٳowo[j䒧y喹c  7\ŶmOɬUdl.)EDuvXIƌ?Lv}ڵ~"VX>""Rlً<=sE~H 0.35Cdh"\n\qŌnuI_,3yd}3cQ=})( @.eu*K뵿B_DD Wps{+]gwmUFq )0ԐpW^E_ BSE/""WԛdJo?e<إB_DD n?\H.8#2}bRp })f޿gL6.z ceYl6NUO)I߿3*v9� ҭ͛N.wdG?͆nrv\ᩥ~oʴ']z-_IOWO[G6px| }հ+3[&ocݭOioM\{ibf>~?~Ͳ,EBӪu4/!&8qx[qҵ�kŚ7 aGVx^BHH$Buu5ux<.>k]T>`"=1PΥL7}=nhua҈|߲,<`p8LMM UUUBB_DDU*v(]${ۆoiJgO}~uGr9,ibpA8& P|P苈HXx<N:I`$V6f;(_Ƽ~p XCB~ѱp8p|/>-{""RppH<dkC`Y/Ncu0B"9:X].. K2$JOrקvv=?Koƀ|P苈HuvI&tvvdꏕ�>ٽӞ/3 3""Rda=ԞNL&sk:ZĀH$1oKw Зݿm@}}=5FD;򉈈  })yX)`ķ|DWE5SPR苈Hɫ3f}z[DݜY[XQ苈H70[~*\quim`0|b$ZwKeyEi}) 4ˌY*!#u6omj.YXK,y鋈HY{݄}T[;6__V)ruA=})ѵorM~6'A;HO&DW[;pd_ })+#w@@/""ee·nf?_ US})9]j=@:8yPQ_q |<`!K-+'""EL˴o܎efOvx݄a4\7{P(EDhۛٴ^ 6#\0_]om�W'{MN?x3:9kO;{LlcqGF/$ZIR苈HQ{୻0z%qxFڋoiew:*''W""ү,3˺eca&>x-@fxcd%ߠQ9@~dגp}cE!/|eq鷨n0 ***tkɞ/fג9끿+Z2;F{{;RUh }[y2ˊ]Ùum5D }|wpDK;<{8XI4;m}b.ڱb1bDB/""hZ<Nț ^'֛iook^-^' FD:&HI& }j=(K8Usl6K*"LL&I.R苈HAntV`;t8 }0�"v'ٷ; Ub~G@ۡXE.#(EDDC.\nqQ_c`Yl4d2k""R?_y/c[b޼; /$ܹ Fc@QёG2eʸk/|Zv~;WPWk_!?#~oqWSzk'DDDG0j7.p}_b„;&~?*|eB=})Iݽd5s,\73{-TW_>`|m˟oiiK_'~x($)ED|ne.v؂ws Wmd29p`lT*͂wE]]Xe$?ɘ1#ǒN?~]ޛ?믿'ܒ=>e^Gɟ[,ZC\t̜-}o&lkyT׉H9GRI_mxW\1+ح?kO5U9[.鋈HA<W?^Jz][QB L/""5>'\I+[]J`?eB_DD Y>+v)DZ{}܇]J)ED_J*ibrL`bRp }).>)y%uß<a!lg7S苈H8_n#�LK[DWs6,fp8p:\bxJ)ED_D.̨/z]c!�qlgŒrGl6v;. {`m~3 8o,Nj]q^1~F6px| }G䏟S{xI4v5X L4|~~ }eYV{[iI7V3ޫilE3üg˿>>lw:6�^P(D$!P]])XMM/""*sAh}i=GܺOؠCCg|3Eb{cT Nl&St6h{#[_t2, C0X�� IDAT$SSSCUU@E~J蠽h4J4%v3v`;Oy 8o4U_M.#b&6 ۍaa0PpGDDى9?H*&c;Lį5Eqj535{m8?:pv ^@ |P苈HNA" tIJ,zNcu0B"9:X].. K2$JOrקvv=?Koƀ|P苈HuvI&tvvdꏕ�>ٽӞ/3 3""Rda=ԞNL&sk:ZĀH$1|xi3¾B_DDJB_wԌU'""2H(EDeb{B_DDJގW߲}]-OAeJ/""%nL^^592oX=]3 ѷ5B_DD .%cE_$ _7C.aMWҧHY,]U ncZ5A.YXK,y鋈HY9Ԝ?T[;6_+g᫭bg26GWgW6;W7NOvQu8|t�L> })+GwD5""RV3GS]IՔE|(ED؜*?|&�C^jʋ&HYX~=O?4k׮|˯OO;3f0w\ƌS2KB_DDJڪUXhh3c j81yYl&L`ĉ.$)ED$ɢEXlw'??;Xpa?UZ>""RrLd޼ytuu_`0x޽+|ߏax<<O.} })9z+;w'2Ds= .o`0aTTT <""RR/_γ>˛oy\ݻ+WL&1n8NJUUU{a|r&Ō 2e L&~B_DDJi}<C?Xd . ۶m4Mjjj8y75k3g_Ώc1MG[1""R2V\a\y=?l۶'|x<?ضmp\ɓ-Z?̖-[3f N˅V苈Ӳe˘?~c+VСC7'n߾}<�92?tref -#իWs8 /K/ݶmF"`Æ =_~lݺt:M" L&IRRLcccc>ݻwӟhmmqlԨQfIR$I$tT]6""R2D |�n۷o?.٩)&KWWWc'V?v`Y\L&)zvyQFӦMDZm۶Q]]fò,,iX?X(EDdL:5k8v饗re׃?VUU@~='}0)EDd\s5<=]veB!^?pw0qDjkk{{g8s Vs9Q苈Hɸ+پ};Wqf|_䬳ovKWʹ_Gyȑ#o(ezᎈGy^{ |7n_$H�PQQACCӦMw;v,;v,8~?pt })9# o4MfΜI8ST~0 N;4N?t v+/m7r7H$1M g8<>'D })9axb:uq{SO1vX<~;v41M3~?(C_""RZZZؿ?K.Gg466zI$ܹg}%K΂ <y2el D"D" w""R8^}U6n֭[ikk#JÌ5S2av;\. f6 })ITۉFb18t:fXs8n�`p8L(bNn3c~vl(;NDT*E6Ų,vl6[aB!|P苈H ;:].. K2$Jp8I{ݽ|0uB_DDJ\wHnn7~d2Igg'L%}N˅7 3L_DDH*"JNcߖr7n[a yDDD $"""B_DDdP苈  }AB/""2H(EDD#z)~����IENDB`���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/tip.png����������������������������������������������������0000664�0000000�0000000�00000053171�14163570564�0021700�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR���������L$���gAMA�� a��� cHRM��z&���������u0��`��:��pQ<���bKGD������tIME !:+J4E��U}IDATx}yUsL� $vEVA;u*^q*" Eٷ&&}'-߯~ky;I&dI&dI&dI&dI&dI&dI&dI&dI&dI&dI&d-S]e:'@S�D'P<�f/̎.E)8 '' f&n o�fA_|3�86|t%=;`&(C|nj%0@] 0@݉o% OaxCv=2LXҺ/P2%df0V]�ϮN$9!+�~xJKD CGe冘16)-�^?`B@J TrH)!h<30-mi)R?23 XbXB��0D}A Ch 08 eoMDxx~hY,˂rmJ)�@}j:�xJ�d0dpqr9E yyض ) � `Ddf[�}ٕ,ۍAJPȣP(@J0 QV#S �kBЛ] 0PE@ʥ#h�۶m $f1_3dm*%WHض1ڥb\eAf FCcb'B"g.Ev H&f5<ٲ,ض ˲`Y?*<1`|1&ڗbfhk+@$ H�b�.q3:f0}R\.\R<A�f]!gW93L\5A�u!Jhy<Jj.P?dW;heW"<&_T!A(^e�f !!p8.ysWގ U4vK]ZueqJlפr0 ͮz%;C)_qD0Dx,KE} ":LMG Ld6' `.ds9޲FiNï٥(<yq# kA [UE�2d"#&ɶd8�x1[)[6;CY{gTBf$j6#o̮~fW!TD؆hYȪ33 3t ,qqc}R cPȣX, 'ˣ]Ró5ddwt2[|q�p* ꨴ 3-ld+cJbx]Tn9vADM1|ض|V#aY 2 t</LSeòDT*<&LuT~ZZ 0'[``F=Q} FE9 rZ|R [_WIKDT<i0+jȼd[/B}Wӧu{::k3nX~=pe%ngg' Ę|RzrrRj#oj4̘̐31wego~}AٖkQҥS^ 86lۮ+;ːmF>W\/:�JI0#ӌ0R0kŐIl#�ڊB 8NR 03>H<Jlܸ.~vS�u8Nr4{|Xf xIhue#l5dqw㭰,6OA[[ZZJ p]\p:::,jR3x*ʠ8.)Srxz 2J6T0 ϲ,PʊP9sR`faӦMxя~ħEwZb=>`ܹ蘂|>:qWWUT*Tfp]_pDM- 0CU0F)rmm6̙:3fL߂Ѭqxې>qԩXl-;ӦMkd1�ZuqFjxS;1|<쳣%"Ӳ>% Jc{�c'Eċ?C̓N:˗`mݎxgs9s> DZQVq0s{2 3DѕF3X,Nҥ�* obŊ`=vyսā|xx"j\o˨T*Ɉ>_җp�ZZ8exGQT$uɐDJyu]ǞWev vaO:o:;/p{5;n,bqkk;Ϛ5,؍͛ϻ:oy<}!}`*̜QIҀKӟw}/(hmm88sOֽg%]wݍ~ki #ˡӦMGKK V\u .ĢE GI2 fV�xp7uJ.砥j|u{8)`b…Xt?brf]=86J\.?3v-d` �LRME(i_ V<T`9B`ڴhoo& v(f͚k#cfwyЇw͛SN Bgh[&s 0Cwr,M60c*_N@t 7&a Zk_?V\UV+ŢE CԍXz5z{{�TzqFtuu'ilK6daۋ ]<@i}Wf�0 qͷςGQj][_Afu d7GCW^yaX,&Xn^jr?ᏱvYXv֬Yo9�.diy 07hJ5>xGׇ~Q;@`E h+ a-</=֏5/?̘1=]9mݓA^ ZIfj0k֬{}[LGG'6nX__q>~ri`�t D$sO>{z ^~%mmm,MxQ`%d(RSOu=aw]5kVUFȭ<_p=9XnA zM>[Fi8吟>Jַm`<oԍB2�3Da?O<nT. ~$L,{#_t+:KTv}}6wm>N `nC+ߍ3^O|«-wuW|N2+*nֱj+ۖ 0Ce$uq]v~T./_ ��N;B/[(::l침?{-._$ i߄_Ř9mekŸ!ϣ\./5F_"ڮ"c@}e˖+3}V+}EP --$S*} B dd$s  �� �C3s뛊p'q0#;E]<F�Ap{fg2{pm#! L sf>4@=LHF'qK8x/6 0X>1;ܙ-8^,_~(tŞ!AH@HJ !'a@A">, G>p7EşТ ]}W_&^Z$Xxş`2 `` V<x';:"DH` H iChH b=s2f<3X?WxeC0f׌eU^ Z�>~&# DD 0hC_q'k"G1s 50!kyɆ,^:Gf| ߄@p(@X`c뜀F�U+·CY# 0CjZ;¢94 ~A$6 CCvM?pU]=8r113 Q2'r(TإJ""*FKA�E�8Q�pf_Obj+0 h-0ymO# l-djDS lEad[z :J#gRPe[5&+}^ 2 tY4]!iޘ9`�ʸ=(o0Z 8^u Ȧ*gt Xad� 0+u!zK?,fl'yGCEݽʗdk=0o�֤;%GGbnGDXŬX`heZGL)SZR`["CA@YEe }ir"":>[2d%sx4Sh+r! @,$@L `�8K6oҸ~x=!�XI �*U3k/TT\DP.Q.JxL8Z2�DC"Y(@Ю�Ӳ7�7jl>m 8?H $(j$5A� G ăƴvB{P,�EPAfci [5l�8K{{:;;ކB�T)BГxLkVSpAZl{l\n` "#o#_|?cΛ7{aj+@G�~,>F\O/�ƶmEcNL2%69HR<ϋ"-F2NXfHb9DF[ ~326obJ[TeC#lĽwl@+e怩BKpl%V'X_ðs_,+d% b B>5OBDfdDb6[+.,Byw= 칛)mtw*clX[E B>G;pC D^oWWċ| Ef:CPQGQwVUfF.CXĠ�i'f�lZ&Ф+�̌ٳg[`o=*c?C< !_�J-|q33|/DB #̘b4HNcV %eBIqLr؎ǽ3Qͽ m5PfFYO?w}V]% -X䌇45RApsL>e& V\SEKJ( %+OP$>hpuP]_^`d;(?3j܌:WJN~C7@R "r9C>CXDP!> L&b G;!Xp~)׌!HE`PB CYXɧ\: |m;m+Tg˲҂N8]w]R1 @ZEoo6m* /D{78$k 0eΏ|!˙߮_W>Z!vm�KJDY=tn9eZrfdԴ2L ?\\ 1i>vǁAHo2dRs%JytL])<eE5oF#Q} Z3�.CE`1 N(@22І\._7v<L"ҥK׼~{-㢧+Q.!D]]][9;|6Ox)L&NLi:;;R e!r9[r1*0|PhII:KFU1}Cu,A1g4J X8(H)rbMs%L R ޭK k!kU 5;Wt�~˫P.Nufx>;ɔV4%KR͠g|9!xlہ8Vݷ"_i)I'$uk gg μ;p1G%\Lb�C.wv&�/0=P5*a!g u||а1SGbX|4MJ]vXfwef]Nd5 ˖-fQO# �=xEGطu8�d!Kj eYɢeNIkDZSڥ|Jn?HwߘwLڠu0@9)BhٳgcŊ~D uq3A2LFTp2kU-ciwr#XA?ox}R`vF&FcDwG(9e_pu]cDV</) oCE]3cp M:lI &vĶ2T4͌lV"Ƀ/~;dX线jUh Q۶SvSFN!gWX:�}Uny@ȪB\}n ,ΘfJZ4>?"E-A`-Vm… q-4MjR+3,"�XRJLډg�\p^S Z0uLFǨ)Pb%W1`hk$`e֬1?8Y_T̆$z0.8(S -BɄQky<56g0Lh7S,FÍ1ȁ+`l~uLF@:J)?^#mYY҉i;%_ͨW~V4ߴ OZ*=Ogf3glqy|kB?Z'ncy^qKe9R:&6NӉ )˘?l޼y[ڗ^`ӎVvz #<miX|{q@Bl SH;,iR*FcEŲ,Yw6df1>3w{]5IuGx X˶SWx tȶ<џ:Ҏbvlo�/X&bڵ5?M kO<?G}QJ" gl [z…yhҩ4ILͶfINj֯߀o|t=(3?ҭ=磌~:k<>F=Sۚ��3|f_le,wП쒎B`ɒXmOhI9&9{2ӕCݱ pp10<QG5&� 0[Z"#mkO>}:?1_lA`I裏'DWN0BX?Povccg{%MktuGlSGCs!fbC�z?3d),vC+c 4oBiJ6uT,^h<MPLar\8uT,\{Fj)XG*2߿>=~kFқB%KnxL30 o�e[\ٰp _LlQoM4j}@B$e}34X K[ =H0/�}:v"=� ,X0p#[ iX󛁥hҟLLϠ-}QJckc3lz'3{ٳy~Wi^_[ZDi[Vi-xmlp %KP*0TceBM_eCE%2x1S[w4fBoɰ~je#jcgP1kooW4k)0J`;7+�5#y_2vu^-ƅl7m>xhPiYwcX`nޓ5)062&?`Gu$v}Fum2hc3-g:9~m{SԉfkATjK,A뮿=ߔ-( Q  A0?3v<#_D\ހ׿… Sêk7F#Ql59}3kGi˟Yȣ:wu7Tpmmmxji51Ghɗ%�[TҮȲ,lܸ j~kŸ+8ΒcnƜXĕc#oѐOjK}'wՌ;lڴ z^y啦_,`Uj9jhhl F%п"03&�;t<1vu1Uַs5Q Ԫ4il\[j橯ꌿ Rv]immŋp6|qH)0mTX}>% G~}&١�C> `=Xr(Jho0 /xE]O? |6k,3_f�jn t:ĠB`=O<zjEWW7f̘B?`\w=!mPiX[[+ۧP㡇Fu/;w6nfJQ.n-ybw1.6n܈Kڐ`SӋnR1=0pu&hF(fE|TjA{LҎ'|_eXdIB ,yukKV.nmmwsÆ , 3fLh4D!Sk܄q*(5RB!۰nztuuxaSO=u�X02=l4Բ$-=3g}PYZ /mhmmGKKKpι C'a"U[J@.ã>: !_s̮6Qxhi;er( [iS)`7oFKK Lija1މpv 3Ҵ P( mmmxiZ8 ,]d˖MEmZ o+L}:::1s,L'Dhm-|D8Ju^aGgXkk::@kbpUWbΝ,[6Sp/20yvӓg5F͛`|�b@ 03 3f qRZyQ*O6};v,Zǘ;ƙ ʹE]4|ů蘂9s`Μ92B_BXDKpk!Bz@fl$b86 >lذv䒏KLd&=]1x"}uTjA`֊ٳgch+WQZcC^ 0cCNFDv)(xg欳)Xwwk4m{Io6fΜRJJ-={6Z[K+s=9Gr,9fhMVXp"\ڵ.~(n4f NH\|ӧOJ}}}p]`۵_|BhRA5v) `F'%"\c  ~yyWjmƲq"9қ̴ip!@Rlys֭[W^YkaӦuA`ɘ۶y^iLe)�cm;s}a]t89"&7X"'t^A7D. H(\ook_ԩI0`xCcV]VZٳg'<.@ٞMKN<D�@\/ڵknzlܸ ֭ǺuQ.^q&0s9=vԑ7Ob cGĩ|H�xM_w}X>72u߭FOOOR21|Op[aŅ@B/b?!=w|<; k t03 oܝԧ]$VӁw,6/{0qˎi.]:הI< [alb�8*6lM_so3Ѳدq]#G(e 0C<wc/&XYK/5.J)tIFȲd5xĀaFk]�fX.瀈ysW~w 3Ȃuc~ SdLKb:[,=S3:#z(-΢ 0[.SL՝oذaЋr)DZf](/288ֵjI=˲~}s߾e]ɶswGMs:(ֵXk:?ݪR4}am,fmۊm\!̖2lZq z}FӰI֤Q'f퐩2)�#0-i�Xlv;KaZ8 \ߨZ�g 0GdTW*5̼y0w\d2�+e0@)�[@ɡn2A 0R P# Q_Z^fx/IFK㴲-Iٌ'b4LvItaniq.\v;Ss^[R2) j`j2 [R6GFA5I0m`Ae�L2!ѤKH $,Nz|QS&0XQS3i蝃Ųj8Fu׹2.]I2<χ 0�dRh^j`ⶰ`d|u!=oʔvoXD1)& Ìj93.s&oLWWӁ0 q a÷�̘Q0/;l޼y6@[[+|?yQӌQk("Jlz"뺨T*(+V+5~OGGG 0Cc�"Ѧ�;޿u"0S5F<J==va~ޘC'wfiu35q䣣x)0[1 }r=FWWuN9ɦM++VA9v@gS(AQD׆ڶEaÆ`=e_KKSNCoo/0--fZuZn<c+g7ly/Cn83f`ƌXv,a3x͛B! ||R y.*7�Gďg1 "$KƊg h=Ӌ\.w0(32yW|>jwu)@DQ@)[!6l؈W^y6mj 0�VO{ | O6oRxy[ pݽUXVoүկ>dHLƞYYfuQ4ߋ-d$T,?(x&Q(Zܹsnz<䓍'�;!2ćO>DGazqX,R8z«~ /r 8wRfN2u)ww=m4hJ)g"vGb�ӓmFKK 6nܘ[%9S|],-e&(I7$"̚ w@aUtTqMzru7;4U>XVp]%Eks] 13 !jLFWWwzJ>j( ((Ő �b hMdv]f0~2ƦM* zzzַw0{ld2L!HA҆UBǾ(9O?/$@) u ,ƌ6,B礒l{0/=_'_{ 90r9 j A=5}qS.vm>n,Zcjc/ ixŕ"@| "#ITJPȣSLAKK 0͛fMᯈ0 |J%B0�dHAPyA>vVZ9skqb']V㩛>�E8S`8y Ӱ,;(B̜ExK'6pcj8dZ=EZiGuoRL8!}K(B4.e!xR:KFJ x G[֭[׽xtMV Edέ4dBB ~BFSbfxr^r?dd_ {bi0륤$1bADb0C5##|] Lqg+~8nٸo�PX &$55!^Zzg 5\ClО^XWIb|#ryvZ d 4E r"((l#\v@!6 2ƞB �|HP(>W%6v>VEeRZu%"u_R\P|%1SJ@-9je$o:O Ѩʛd�LA5t5C@ :':T`_S4jQ j^twwcE\^496J�! ۱T u9[,2!�)$bN�ATo;s:_+"֭[7&e&Pq5U 0 hؗU*X{l7>*Ph4<𡯶[mpUtj*�LKC1Yh&(+! Ν\SL�&, JEW/x˗9׻pGk~;&INT=CXFlɀGKp\_&ڱ#mX @@ 4j!4\�3 0̠?S EZP $r" LlBLV5[DjmոX� U1.~=76><?H|{[1DK VIdr XÜTfcϹ?ZpQd8$ 4n3MƄܿ~%kG iqypB!m y,;\s4 E/ Rl-zd@�'G8D[K^VqSK"03i,krHZ<ѡq/[<-[JQ>$%LCH$ -̟4y(?),s|Q3 y g$!##m"X,ЌJcۇPe?ϕ[|fW83Tv;$M`UU09p[2QE;h®$Vy%|b]$VH}�ڝxefr':r9B.o@9#`mh ~!a ~⬪yq\FH@ R@.GX'lzlr<S% ,uɉ9 D̜kcH|<(WԢ9gpq50<bsEI8GIKm8&ѭD9CB,<,"BbĨ1Ƒ`N;mo‘G3Xj eA0&0GD$>uF5|Zp99.i~{H{D0SP_Ja\@3\;/H|ڲ'#`0J&mh2VB}:0c|  iwuq²,v)_,1.8 CT6>ppM,ndܑXM2B )p zylK2cr9y ;'lGSf}88-ʸX3uo?v %B),@JzoYV*?nz`j$f7!ƈslfaB2�er98x/_-p@g>9<?~oÃ&QӤ 'ׇj ԴK2BEeߐۏa<23Cf]@[A` }KjD6N!l$"#_ sITkA'O0^H Cݒ!�Q턧c&  X ` % X#w:@_ehwbgp5Ƽy{*@:k8NsSi[D20h(WUr ƴ) Wh1DH0!H(i Gض)a Z^)!tHJÃӏկM>/IllaT9<W?>+W>] Q/>$ܦK E@6^мcB&qٲaR^7C17Oh_*#S]jW$p&nHc}xॗ^qǝ~`,fY`:FҎ�i:n*@儉y[kgl6J@ a);P@5ZM�J (E/+m &,`\..5;eB4D"coX"|' 8眷ɫAX @se/ȭhVBRBkRRB)zX%K-ߘ9(PndnFIϗ"7!Ò_`>5aA'tO�R4%L(_�]ଣA|Nz-_O8^{IԊ:;R(?4%R\KKs@LnmOhFk3IgGiR3"n1rBp)xo!@HtSj#mklF+4MV|, )1(S#>ӀRUTe XndZC\„P 5*|LuZ1�rO "HD 1,ES 8mCqߘ5 /ebr fqfc_2괃()P αj3hb͔CSeVNb߈(fJ=u̝01q L,L0#?Mƭ)"Vل\#7<~,߽>b 9`\l94EƖ%$@Qи8_<+Ugkmtr )�\ RZ'`DiPR7s ?aժvIG{ӦXfIPY蓐d2#WPd.&-舞% "neyֳ<(R@F`lBhΜ_m� XCBPN#L_dY0R BXHÇ{z&--ky&rDNL:<Y5JV8fibC1 RJT:,j!E"Xʚ5]_FyF4, ,v%3[Hxߛچ"̙'͛pŪUϢओ/kG\K2qT0RP5S ĒAJQ8f6d�b-%ےu:g?𝎕]޶vLZc30L{&‰Jg`;ΩOu×T*Mj Cd&!ʕ��y'JZ j-Q.2IM"iqIՆACB"Ш~*Ԃ0ewH2GOܑ<d#GLr1 wOR g&9Xׯ;y.y_K/SY:ALg>O1ehZbF&I)W X6[?_z99 E5w?mj&DPTJlB|,eY>UWƛV_+[Kq:J˼M3FNfd0 )@%^_zqXt5#p�ŒNWӊR5---8o.<v}>/nzjELI?;xis/ZB*~҅CQwav0Dmצ/gNXDi21B"4cv?nޙsna޼]`Y&<8̳a )bڸEk5J)2 #3Ply)@Å�~0.A($Ǭ8wkKwz"]Kڸu5Ey8pٹQo;q>rÙ0ZgK-ABWLƉ@c0'0dT0@# 0ЦMf�Q2V  ^ٛ%EPI;xKGw?9缭,YEE>Պ-J!GY& ahJ@# P,} `:ʸF& sQ8~ҔS 㖌 3,#*騖7OZA|\|{:hz;%cPOy|@Щ ƻ%j6~5  =<F< g># �ϗxlzhMQ03nfs�=kR饗pVW*"j@jtfg"SkI5[2t H|4<7unUí24|].0.tS =K3Eĥ2*$Gu@z䊻z8Cq]wS1XS6v%v*< FD3a Պ@, ?}Qu5nJUjTF\O_"q靖$cn/8Xh#، \qۄ-?SN9'lP:jx# Rk{,9I)h 3f#h9hr(Uj% Q.ksTFcx.}|/%y/\@c&hr1Qаw�[iQ?ᦛnҥk_GldlHR &+5@1TKo]jyFp+atQ)k+!}FQTeT]7fJ|ZnVaR~ b2hml׳_mBd{9|Co{hK9b-#`B ܴ`G !k@KXl2y4@3x�fvՀr7?53lDw!dǑUΝ$&.7{`+p8z^zzzw^1w޻> ,�QInXTVYiEΓ8-.f|ܿ!|?_5ZM#*CˑF)3!C55+rV1~#Y0PfMCr9Jd�vRI K05oP X~C?}?9n_3 Cz8㠃W^9.6`JKGҫI= 0_(iۤ 2?Do9D__(W5+Ÿ*\V:s4lJv%ř@pbMCBAHPa<(-44Lzq[RQlFE�fw�k6`%8qqaePj솼evmpM7˘L) T>66 /V;P‘8Bi/ >2'Z 8aDB2<@ T+0&K}5y +NB3r/7&F]&@P2Эq3Dָ.pa#+#+pe_A{{;<H,Y*b,^7s!lwp]?$`ŊX1{ィT*wOof,E_J$u,#v##?ʇ!'n,^L1ɀ&0ƃFk!~Raŏ^?ʰ#L؅AO$CQ)|NGk#V9lhRsxAI:IRı`QdhYWWz\f̘b1RvEetwo͛Ճa{F+-fỌ9IXL'4Bhf C)0&YZƑݢM,N1 2�&~�xAJÄh| u/|lh؀!0j0ϰ$С.e<yl0R @KԴmK0'Bhs;ϭ ի'$m/Z6r#ϔd8S Pj`8q2$ <0F^h6(?`JW/۴B04`$  ߏB xb-p�qTcHjß!߈԰ OLm[I/-9CoL;#Ԕn 5B�i0\tqQ8 '5Jс6//0Ts[5<| ? x@ˌ[W!>) H/I?0$K22 B6єcB@P8KXRE-BEG=š: Ec$CHsku`G 00@ `HS348~:mp扵%KcTjchx~HW u问8h؀9? nKl-"UhH8 )q]!tBD !uŀ&ĥiQZjdyLPM63[C Axa왒}aZEZ:'.Mn&t:0fH.P4\w}U/{r{<_,_4kBC@204M \ky̔4T\ )D*t 85H)x]�p4j-=BpH 1Eqۃw"�l~ >5<_@JA`%qQ{DˣFc㠤ya6.32p݀X 篽9`.p??Q Q1a `$G� D<82RрZp!fÓ Djf{2<G85s1jm9J04 }B~8" q /04leKJsmsb'RYkU4�j&q& ?{*ξ}FU{wqSsG Os`K# FMXD3ET?O9jBT& 1354Ry$�#HpޢhDhSۯk|$?`q{BewF @~kjhZ�!B۴.q{ ("ĩdJYC6^ȸzб>n> bL܁�wTh(>,D $ZHAT5#B-f`H 8%1Ddl(x(Tkb>fLeŎ@Pb{\dG 4aCDIkT#.X&""8�"`rH�F9z� RT%"C_!E4!1=Qdz3E5_FDط002}jS�70V~m"m,< 0C©RR#V,QK%W2Z D$`88j|i,EQJMMܨ`A~T3]feWnz&�h0 hI[TOe44 �̏7@-;X(%[g䅙Q�%`+ UKЌWSéufrMQPˮ04&|LX;ĉB^D,c;$S^O)?K[Ŋ$QgCeEm̑\5gTs[F)涧z*𮿏OPs`.%eW1UD<u9@”"!5go s@aB.GpAIuK9s9K⨼\6@7|/FIFh>YX8"v#2G<fhpOtԚaG(TS dT Xz+(Xz*dwc(3fC5FG,,B6يN ,-SdxX4"C?Q1 q#Lu]-LXpB% _*9Ji}B%J^ T $SLGx+ H Q ΓDnO/4e_%*o[!]F%edk8&�:"쳋 9[ 6cme؉S9JЍ�cl?sHZozid 0~ڏKGIɇΘ Hp4-( e`1m3%$l =@\b _1K{p!gn'޲|‰X\ 3R伡 nNFGhSs] }"LÓ:^@/8J)^S@(^qY5Y>3CCbJ֟1~Pvݛ]k[ﯼHN߹ɒ|mMHc84XR8#LDDen(*D;K/{Di+y$>QڼvQ<V3-a1a#P `1`\F`8^L[[$RwVTmkK|F؆Ip5M#-$5d7![M2Uȇh"H\h+})$M21uL;]q+}obwNTyKDvaBy9q8#urN)I%5M겾: ' dcK\l+,H @9FGZ �׏UݪGxա 7J,m<2MmuC5%Y?$5vlyӿۊRKqdLTiX 4S�oI^iw8W+M6BăYk3iU>~ޑCv9X9 tLB”0u}\;`'pi\"$$A(yVP @�̗^s9Gc"t%W!=?z}0)橍m8(٧Hb A" ?r߱nG9-LF*K89ZYS WTt 3$L2$L2$L2$L2$L2$L2$L&A􈠜&���%tEXtdate:create�2018-12-25T19:33:58+00:00o6���%tEXtdate:modify�2018-12-25T19:33:58+00:00NJ����IENDB`�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/tux--classic.png�������������������������������������������0000664�0000000�0000000�00000053171�14163570564�0023420�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR���������L$���gAMA�� a��� cHRM��z&���������u0��`��:��pQ<���bKGD������tIME !:+J4E��U}IDATx}yUsL� $vEVA;u*^q*" Eٷ&&}'-߯~ky;I&dI&dI&dI&dI&dI&dI&dI&dI&dI&dI&d-S]e:'@S�D'P<�f/̎.E)8 '' f&n o�fA_|3�86|t%=;`&(C|nj%0@] 0@݉o% OaxCv=2LXҺ/P2%df0V]�ϮN$9!+�~xJKD CGe冘16)-�^?`B@J TrH)!h<30-mi)R?23 XbXB��0D}A Ch 08 eoMDxx~hY,˂rmJ)�@}j:�xJ�d0dpqr9E yyض ) � `Ddf[�}ٕ,ۍAJPȣP(@J0 QV#S �kBЛ] 0PE@ʥ#h�۶m $f1_3dm*%WHض1ڥb\eAf FCcb'B"g.Ev H&f5<ٲ,ض ˲`Y?*<1`|1&ڗbfhk+@$ H�b�.q3:f0}R\.\R<A�f]!gW93L\5A�u!Jhy<Jj.P?dW;heW"<&_T!A(^e�f !!p8.ysWގ U4vK]ZueqJlפr0 ͮz%;C)_qD0Dx,KE} ":LMG Ld6' `.ds9޲FiNï٥(<yq# kA [UE�2d"#&ɶd8�x1[)[6;CY{gTBf$j6#o̮~fW!TD؆hYȪ33 3t ,qqc}R cPȣX, 'ˣ]Ró5ddwt2[|q�p* ꨴ 3-ld+cJbx]Tn9vADM1|ض|V#aY 2 t</LSeòDT*<&LuT~ZZ 0'[``F=Q} FE9 rZ|R [_WIKDT<i0+jȼd[/B}Wӧu{::k3nX~=pe%ngg' Ę|RzrrRj#oj4̘̐31wego~}AٖkQҥS^ 86lۮ+;ːmF>W\/:�JI0#ӌ0R0kŐIl#�ڊB 8NR 03>H<Jlܸ.~vS�u8Nr4{|Xf xIhue#l5dqw㭰,6OA[[ZZJ p]\p:::,jR3x*ʠ8.)Srxz 2J6T0 ϲ,PʊP9sR`faӦMxя~ħEwZb=>`ܹ蘂|>:qWWUT*Tfp]_pDM- 0CU0F)rmm6̙:3fL߂Ѭqxې>qԩXl-;ӦMkd1�ZuqFjxS;1|<쳣%"Ӳ>% Jc{�c'Eċ?C̓N:˗`mݎxgs9s> DZQVq0s{2 3DѕF3X,Nҥ�* obŊ`=vyսā|xx"j\o˨T*Ɉ>_җp�ZZ8exGQT$uɐDJyu]ǞWev vaO:o:;/p{5;n,bqkk;Ϛ5,؍͛ϻ:oy<}!}`*̜QIҀKӟw}/(hmm88sOֽg%]wݍ~ki #ˡӦMGKK V\u .ĢE GI2 fV�xp7uJ.砥j|u{8)`b…Xt?brf]=86J\.?3v-d` �LRME(i_ V<T`9B`ڴhoo& v(f͚k#cfwyЇw͛SN Bgh[&s 0Cwr,M60c*_N@t 7&a Zk_?V\UV+ŢE CԍXz5z{{�TzqFtuu'ilK6daۋ ]<@i}Wf�0 qͷςGQj][_Afu d7GCW^yaX,&Xn^jr?ᏱvYXv֬Yo9�.diy 07hJ5>xGׇ~Q;@`E h+ a-</=֏5/?̘1=]9mݓA^ ZIfj0k֬{}[LGG'6nX__q>~ri`�t D$sO>{z ^~%mmm,MxQ`%d(RSOu=aw]5kVUFȭ<_p=9XnA zM>[Fi8吟>Jַm`<oԍB2�3Da?O<nT. ~$L,{#_t+:KTv}}6wm>N `nC+ߍ3^O|«-wuW|N2+*nֱj+ۖ 0Ce$uq]v~T./_ ��N;B/[(::l침?{-._$ i߄_Ř9mekŸ!ϣ\./5F_"ڮ"c@}e˖+3}V+}EP --$S*} B dd$s  �� �C3s뛊p'q0#;E]<F�Ap{fg2{pm#! L sf>4@=LHF'qK8x/6 0X>1;ܙ-8^,_~(tŞ!AH@HJ !'a@A">, G>p7EşТ ]}W_&^Z$Xxş`2 `` V<x';:"DH` H iChH b=s2f<3X?WxeC0f׌eU^ Z�>~&# DD 0hC_q'k"G1s 50!kyɆ,^:Gf| ߄@p(@X`c뜀F�U+·CY# 0CjZ;¢94 ~A$6 CCvM?pU]=8r113 Q2'r(TإJ""*FKA�E�8Q�pf_Obj+0 h-0ymO# l-djDS lEad[z :J#gRPe[5&+}^ 2 tY4]!iޘ9`�ʸ=(o0Z 8^u Ȧ*gt Xad� 0+u!zK?,fl'yGCEݽʗdk=0o�֤;%GGbnGDXŬX`heZGL)SZR`["CA@YEe }ir"":>[2d%sx4Sh+r! @,$@L `�8K6oҸ~x=!�XI �*U3k/TT\DP.Q.JxL8Z2�DC"Y(@Ю�Ӳ7�7jl>m 8?H $(j$5A� G ăƴvB{P,�EPAfci [5l�8K{{:;;ކB�T)BГxLkVSpAZl{l\n` "#o#_|?cΛ7{aj+@G�~,>F\O/�ƶmEcNL2%69HR<ϋ"-F2NXfHb9DF[ ~326obJ[TeC#lĽwl@+e怩BKpl%V'X_ðs_,+d% b B>5OBDfdDb6[+.,Byw= 칛)mtw*clX[E B>G;pC D^oWWċ| Ef:CPQGQwVUfF.CXĠ�i'f�lZ&Ф+�̌ٳg[`o=*c?C< !_�J-|q33|/DB #̘b4HNcV %eBIqLr؎ǽ3Qͽ m5PfFYO?w}V]% -X䌇45RApsL>e& V\SEKJ( %+OP$>hpuP]_^`d;(?3j܌:WJN~C7@R "r9C>CXDP!> L&b G;!Xp~)׌!HE`PB CYXɧ\: |m;m+Tg˲҂N8]w]R1 @ZEoo6m* /D{78$k 0eΏ|!˙߮_W>Z!vm�KJDY=tn9eZrfdԴ2L ?\\ 1i>vǁAHo2dRs%JytL])<eE5oF#Q} Z3�.CE`1 N(@22І\._7v<L"ҥK׼~{-㢧+Q.!D]]][9;|6Ox)L&NLi:;;R e!r9[r1*0|PhII:KFU1}Cu,A1g4J X8(H)rbMs%L R ޭK k!kU 5;Wt�~˫P.Nufx>;ɔV4%KR͠g|9!xlہ8Vݷ"_i)I'$uk gg μ;p1G%\Lb�C.wv&�/0=P5*a!g u||а1SGbX|4MJ]vXfwef]Nd5 ˖-fQO# �=xEGطu8�d!Kj eYɢeNIkDZSڥ|Jn?HwߘwLڠu0@9)BhٳgcŊ~D uq3A2LFTp2kU-ciwr#XA?ox}R`vF&FcDwG(9e_pu]cDV</) oCE]3cp M:lI &vĶ2T4͌lV"Ƀ/~;dX线jUh Q۶SvSFN!gWX:�}Uny@ȪB\}n ,ΘfJZ4>?"E-A`-Vm… q-4MjR+3,"�XRJLډg�\p^S Z0uLFǨ)Pb%W1`hk$`e֬1?8Y_T̆$z0.8(S -BɄQky<56g0Lh7S,FÍ1ȁ+`l~uLF@:J)?^#mYY҉i;%_ͨW~V4ߴ OZ*=Ogf3glqy|kB?Z'ncy^qKe9R:&6NӉ )˘?l޼y[ڗ^`ӎVvz #<miX|{q@Bl SH;,iR*FcEŲ,Yw6df1>3w{]5IuGx X˶SWx tȶ<џ:Ҏbvlo�/X&bڵ5?M kO<?G}QJ" gl [z…yhҩ4ILͶfINj֯߀o|t=(3?ҭ=磌~:k<>F=Sۚ��3|f_le,wП쒎B`ɒXmOhI9&9{2ӕCݱ pp10<QG5&� 0[Z"#mkO>}:?1_lA`I裏'DWN0BX?Povccg{%MktuGlSGCs!fbC�z?3d),vC+c 4oBiJ6uT,^h<MPLar\8uT,\{Fj)XG*2߿>=~kFқB%KnxL30 o�e[\ٰp _LlQoM4j}@B$e}34X K[ =H0/�}:v"=� ,X0p#[ iX󛁥hҟLLϠ-}QJckc3lz'3{ٳy~Wi^_[ZDi[Vi-xmlp %KP*0TceBM_eCE%2x1S[w4fBoɰ~je#jcgP1kooW4k)0J`;7+�5#y_2vu^-ƅl7m>xhPiYwcX`nޓ5)062&?`Gu$v}Fum2hc3-g:9~m{SԉfkATjK,A뮿=ߔ-( Q  A0?3v<#_D\ހ׿… Sêk7F#Ql59}3kGi˟Yȣ:wu7Tpmmmxji51Ghɗ%�[TҮȲ,lܸ j~kŸ+8ΒcnƜXĕc#oѐOjK}'wՌ;lڴ z^y啦_,`Uj9jhhl F%п"03&�;t<1vu1Uַs5Q Ԫ4il\[j橯ꌿ Rv]immŋp6|qH)0mTX}>% G~}&١�C> `=Xr(Jho0 /xE]O? |6k,3_f�jn t:ĠB`=O<zjEWW7f̘B?`\w=!mPiX[[+ۧP㡇Fu/;w6nfJQ.n-ybw1.6n܈Kڐ`SӋnR1=0pu&hF(fE|TjA{LҎ'|_eXdIB ,yukKV.nmmwsÆ , 3fLh4D!Sk܄q*(5RB!۰nztuuxaSO=u�X02=l4Բ$-=3g}PYZ /mhmmGKKKpι C'a"U[J@.ã>: !_s̮6Qxhi;er( [iS)`7oFKK Lija1މpv 3Ҵ P( mmmxiZ8 ,]d˖MEmZ o+L}:::1s,L'Dhm-|D8Ju^aGgXkk::@kbpUWbΝ,[6Sp/20yvӓg5F͛`|�b@ 03 3f qRZyQ*O6};v,Zǘ;ƙ ʹE]4|ů蘂9s`Μ92B_BXDKpk!Bz@fl$b86 >lذv䒏KLd&=]1x"}uTjA`֊ٳgch+WQZcC^ 0cCNFDv)(xg欳)Xwwk4m{Io6fΜRJJ-={6Z[K+s=9Gr,9fhMVXp"\ڵ.~(n4f NH\|ӧOJ}}}p]`۵_|BhRA5v) `F'%"\c  ~yyWjmƲq"9қ̴ip!@Rlys֭[W^YkaӦuA`ɘ۶y^iLe)�cm;s}a]t89"&7X"'t^A7D. H(\ook_ԩI0`xCcV]VZٳg'<.@ٞMKN<D�@\/ڵknzlܸ ֭ǺuQ.^q&0s9=vԑ7Ob cGĩ|H�xM_w}X>72u߭FOOOR21|Op[aŅ@B/b?!=w|<; k t03 oܝԧ]$VӁw,6/{0qˎi.]:הI< [alb�8*6lM_so3Ѳدq]#G(e 0C<wc/&XYK/5.J)tIFȲd5xĀaFk]�fX.瀈ysW~w 3Ȃuc~ SdLKb:[,=S3:#z(-΢ 0[.SL՝oذaЋr)DZf](/288ֵjI=˲~}s߾e]ɶswGMs:(ֵXk:?ݪR4}am,fmۊm\!̖2lZq z}FӰI֤Q'f퐩2)�#0-i�Xlv;KaZ8 \ߨZ�g 0GdTW*5̼y0w\d2�+e0@)�[@ɡn2A 0R P# Q_Z^fx/IFK㴲-Iٌ'b4LvItaniq.\v;Ss^[R2) j`j2 [R6GFA5I0m`Ae�L2!ѤKH $,Nz|QS&0XQS3i蝃Ųj8Fu׹2.]I2<χ 0�dRh^j`ⶰ`d|u!=oʔvoXD1)& Ìj93.s&oLWWӁ0 q a÷�̘Q0/;l޼y6@[[+|?yQӌQk("Jlz"뺨T*(+V+5~OGGG 0Cc�"Ѧ�;޿u"0S5F<J==va~ޘC'wfiu35q䣣x)0[1 }r=FWWuN9ɦM++VA9v@gS(AQD׆ڶEaÆ`=e_KKSNCoo/0--fZuZn<c+g7ly/Cn83f`ƌXv,a3x͛B! ||R y.*7�Gďg1 "$KƊg h=Ӌ\.w0(32yW|>jwu)@DQ@)[!6l؈W^y6mj 0�VO{ | O6oRxy[ pݽUXVoүկ>dHLƞYYfuQ4ߋ-d$T,?(x&Q(Zܹsnz<䓍'�;!2ćO>DGazqX,R8z«~ /r 8wRfN2u)ww=m4hJ)g"vGb�ӓmFKK 6nܘ[%9S|],-e&(I7$"̚ w@aUtTqMzru7;4U>XVp]%Eks] 13 !jLFWWwzJ>j( ((Ő �b hMdv]f0~2ƦM* zzzַw0{ld2L!HA҆UBǾ(9O?/$@) u ,ƌ6,B礒l{0/=_'_{ 90r9 j A=5}qS.vm>n,Zcjc/ ixŕ"@| "#ITJPȣSLAKK 0͛fMᯈ0 |J%B0�dHAPyA>vVZ9skqb']V㩛>�E8S`8y Ӱ,;(B̜ExK'6pcj8dZ=EZiGuoRL8!}K(B4.e!xR:KFJ x G[֭[׽xtMV Edέ4dBB ~BFSbfxr^r?dd_ {bi0륤$1bADb0C5##|] Lqg+~8nٸo�PX &$55!^Zzg 5\ClО^XWIb|#ryvZ d 4E r"((l#\v@!6 2ƞB �|HP(>W%6v>VEeRZu%"u_R\P|%1SJ@-9je$o:O Ѩʛd�LA5t5C@ :':T`_S4jQ j^twwcE\^496J�! ۱T u9[,2!�)$bN�ATo;s:_+"֭[7&e&Pq5U 0 hؗU*X{l7>*Ph4<𡯶[mpUtj*�LKC1Yh&(+! Ν\SL�&, JEW/x˗9׻pGk~;&INT=CXFlɀGKp\_&ڱ#mX @@ 4j!4\�3 0̠?S EZP $r" LlBLV5[DjmոX� U1.~=76><?H|{[1DK VIdr XÜTfcϹ?ZpQd8$ 4n3MƄܿ~%kG iqypB!m y,;\s4 E/ Rl-zd@�'G8D[K^VqSK"03i,krHZ<ѡq/[<-[JQ>$%LCH$ -̟4y(?),s|Q3 y g$!##m"X,ЌJcۇPe?ϕ[|fW83Tv;$M`UU09p[2QE;h®$Vy%|b]$VH}�ڝxefr':r9B.o@9#`mh ~!a ~⬪yq\FH@ R@.GX'lzlr<S% ,uɉ9 D̜kcH|<(WԢ9gpq50<bsEI8GIKm8&ѭD9CB,<,"BbĨ1Ƒ`N;mo‘G3Xj eA0&0GD$>uF5|Zp99.i~{H{D0SP_Ja\@3\;/H|ڲ'#`0J&mh2VB}:0c|  iwuq²,v)_,1.8 CT6>ppM,ndܑXM2B )p zylK2cr9y ;'lGSf}88-ʸX3uo?v %B),@JzoYV*?nz`j$f7!ƈslfaB2�er98x/_-p@g>9<?~oÃ&QӤ 'ׇj ԴK2BEeߐۏa<23Cf]@[A` }KjD6N!l$"#_ sITkA'O0^H Cݒ!�Q턧c&  X ` % X#w:@_ehwbgp5Ƽy{*@:k8NsSi[D20h(WUr ƴ) Wh1DH0!H(i Gض)a Z^)!tHJÃӏկM>/IllaT9<W?>+W>] Q/>$ܦK E@6^мcB&qٲaR^7C17Oh_*#S]jW$p&nHc}xॗ^qǝ~`,fY`:FҎ�i:n*@儉y[kgl6J@ a);P@5ZM�J (E/+m &,`\..5;eB4D"coX"|' 8眷ɫAX @se/ȭhVBRBkRRB)zX%K-ߘ9(PndnFIϗ"7!Ò_`>5aA'tO�R4%L(_�]ଣA|Nz-_O8^{IԊ:;R(?4%R\KKs@LnmOhFk3IgGiR3"n1rBp)xo!@HtSj#mklF+4MV|, )1(S#>ӀRUTe XndZC\„P 5*|LuZ1�rO "HD 1,ES 8mCqߘ5 /ebr fqfc_2괃()P αj3hb͔CSeVNb߈(fJ=u̝01q L,L0#?Mƭ)"Vل\#7<~,߽>b 9`\l94EƖ%$@Qи8_<+Ugkmtr )�\ RZ'`DiPR7s ?aժvIG{ӦXfIPY蓐d2#WPd.&-舞% "neyֳ<(R@F`lBhΜ_m� XCBPN#L_dY0R BXHÇ{z&--ky&rDNL:<Y5JV8fibC1 RJT:,j!E"Xʚ5]_FyF4, ,v%3[Hxߛچ"̙'͛pŪUϢओ/kG\K2qT0RP5S ĒAJQ8f6d�b-%ےu:g?𝎕]޶vLZc30L{&‰Jg`;ΩOu×T*Mj Cd&!ʕ��y'JZ j-Q.2IM"iqIՆACB"Ш~*Ԃ0ewH2GOܑ<d#GLr1 wOR g&9Xׯ;y.y_K/SY:ALg>O1ehZbF&I)W X6[?_z99 E5w?mj&DPTJlB|,eY>UWƛV_+[Kq:J˼M3FNfd0 )@%^_zqXt5#p�ŒNWӊR5---8o.<v}>/nzjELI?;xis/ZB*~҅CQwav0Dmצ/gNXDi21B"4cv?nޙsna޼]`Y&<8̳a )bڸEk5J)2 #3Ply)@Å�~0.A($Ǭ8wkKwz"]Kڸu5Ey8pٹQo;q>rÙ0ZgK-ABWLƉ@c0'0dT0@# 0ЦMf�Q2V  ^ٛ%EPI;xKGw?9缭,YEE>Պ-J!GY& ahJ@# P,} `:ʸF& sQ8~ҔS 㖌 3,#*騖7OZA|\|{:hz;%cPOy|@Щ ƻ%j6~5  =<F< g># �ϗxlzhMQ03nfs�=kR饗pVW*"j@jtfg"SkI5[2t H|4<7unUí24|].0.tS =K3Eĥ2*$Gu@z䊻z8Cq]wS1XS6v%v*< FD3a Պ@, ?}Qu5nJUjTF\O_"q靖$cn/8Xh#، \qۄ-?SN9'lP:jx# Rk{,9I)h 3f#h9hr(Uj% Q.ksTFcx.}|/%y/\@c&hr1Qаw�[iQ?ᦛnҥk_GldlHR &+5@1TKo]jyFp+atQ)k+!}FQTeT]7fJ|ZnVaR~ b2hml׳_mBd{9|Co{hK9b-#`B ܴ`G !k@KXl2y4@3x�fvՀr7?53lDw!dǑUΝ$&.7{`+p8z^zzzw^1w޻> ,�QInXTVYiEΓ8-.f|ܿ!|?_5ZM#*CˑF)3!C55+rV1~#Y0PfMCr9Jd�vRI K05oP X~C?}?9n_3 Cz8㠃W^9.6`JKGҫI= 0_(iۤ 2?Do9D__(W5+Ÿ*\V:s4lJv%ř@pbMCBAHPa<(-44Lzq[RQlFE�fw�k6`%8qqaePj솼evmpM7˘L) T>66 /V;P‘8Bi/ >2'Z 8aDB2<@ T+0&K}5y +NB3r/7&F]&@P2Эq3Dָ.pa#+#+pe_A{{;<H,Y*b,^7s!lwp]?$`ŊX1{ィT*wOof,E_J$u,#v##?ʇ!'n,^L1ɀ&0ƃFk!~Raŏ^?ʰ#L؅AO$CQ)|NGk#V9lhRsxAI:IRı`QdhYWWz\f̘b1RvEetwo͛Ճa{F+-fỌ9IXL'4Bhf C)0&YZƑݢM,N1 2�&~�xAJÄh| u/|lh؀!0j0ϰ$С.e<yl0R @KԴmK0'Bhs;ϭ ի'$m/Z6r#ϔd8S Pj`8q2$ <0F^h6(?`JW/۴B04`$  ߏB xb-p�qTcHjß!߈԰ OLm[I/-9CoL;#Ԕn 5B�i0\tqQ8 '5Jс6//0Ts[5<| ? x@ˌ[W!>) H/I?0$K22 B6єcB@P8KXRE-BEG=š: Ec$CHsku`G 00@ `HS348~:mp扵%KcTjchx~HW u问8h؀9? nKl-"UhH8 )q]!tBD !uŀ&ĥiQZjdyLPM63[C Axa왒}aZEZ:'.Mn&t:0fH.P4\w}U/{r{<_,_4kBC@204M \ky̔4T\ )D*t 85H)x]�p4j-=BpH 1Eqۃw"�l~ >5<_@JA`%qQ{DˣFc㠤ya6.32p݀X 篽9`.p??Q Q1a `$G� D<82RрZp!fÓ Djf{2<G85s1jm9J04 }B~8" q /04leKJsmsb'RYkU4�j&q& ?{*ξ}FU{wqSsG Os`K# FMXD3ET?O9jBT& 1354Ry$�#HpޢhDhSۯk|$?`q{BewF @~kjhZ�!B۴.q{ ("ĩdJYC6^ȸzб>n> bL܁�wTh(>,D $ZHAT5#B-f`H 8%1Ddl(x(Tkb>fLeŎ@Pb{\dG 4aCDIkT#.X&""8�"`rH�F9z� RT%"C_!E4!1=Qdz3E5_FDط002}jS�70V~m"m,< 0C©RR#V,QK%W2Z D$`88j|i,EQJMMܨ`A~T3]feWnz&�h0 hI[TOe44 �̏7@-;X(%[g䅙Q�%`+ UKЌWSéufrMQPˮ04&|LX;ĉB^D,c;$S^O)?K[Ŋ$QgCeEm̑\5gTs[F)涧z*𮿏OPs`.%eW1UD<u9@”"!5go s@aB.GpAIuK9s9K⨼\6@7|/FIFh>YX8"v#2G<fhpOtԚaG(TS dT Xz+(Xz*dwc(3fC5FG,,B6يN ,-SdxX4"C?Q1 q#Lu]-LXpB% _*9Ji}B%J^ T $SLGx+ H Q ΓDnO/4e_%*o[!]F%edk8&�:"쳋 9[ 6cme؉S9JЍ�cl?sHZozid 0~ڏKGIɇΘ Hp4-( e`1m3%$l =@\b _1K{p!gn'޲|‰X\ 3R伡 nNFGhSs] }"LÓ:^@/8J)^S@(^qY5Y>3CCbJ֟1~Pvݛ]k[ﯼHN߹ɒ|mMHc84XR8#LDDen(*D;K/{Di+y$>QڼvQ<V3-a1a#P `1`\F`8^L[[$RwVTmkK|F؆Ip5M#-$5d7![M2Uȇh"H\h+})$M21uL;]q+}obwNTyKDvaBy9q8#urN)I%5M겾: ' dcK\l+,H @9FGZ �׏UݪGxա 7J,m<2MmuC5%Y?$5vlyӿۊRKqdLTiX 4S�oI^iw8W+M6BăYk3iU>~ޑCv9X9 tLB”0u}\;`'pi\"$$A(yVP @�̗^s9Gc"t%W!=?z}0)橍m8(٧Hb A" ?r߱nG9-LF*K89ZYS WTt 3$L2$L2$L2$L2$L2$L2$L&A􈠜&���%tEXtdate:create�2018-12-25T19:33:58+00:00o6���%tEXtdate:modify�2018-12-25T19:33:58+00:00NJ����IENDB`�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/tux.png����������������������������������������������������0000664�0000000�0000000�00000053171�14163570564�0021724�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR���������L$���gAMA�� a��� cHRM��z&���������u0��`��:��pQ<���bKGD������tIME !:+J4E��U}IDATx}yUsL� $vEVA;u*^q*" Eٷ&&}'-߯~ky;I&dI&dI&dI&dI&dI&dI&dI&dI&dI&dI&d-S]e:'@S�D'P<�f/̎.E)8 '' f&n o�fA_|3�86|t%=;`&(C|nj%0@] 0@݉o% OaxCv=2LXҺ/P2%df0V]�ϮN$9!+�~xJKD CGe冘16)-�^?`B@J TrH)!h<30-mi)R?23 XbXB��0D}A Ch 08 eoMDxx~hY,˂rmJ)�@}j:�xJ�d0dpqr9E yyض ) � `Ddf[�}ٕ,ۍAJPȣP(@J0 QV#S �kBЛ] 0PE@ʥ#h�۶m $f1_3dm*%WHض1ڥb\eAf FCcb'B"g.Ev H&f5<ٲ,ض ˲`Y?*<1`|1&ڗbfhk+@$ H�b�.q3:f0}R\.\R<A�f]!gW93L\5A�u!Jhy<Jj.P?dW;heW"<&_T!A(^e�f !!p8.ysWގ U4vK]ZueqJlפr0 ͮz%;C)_qD0Dx,KE} ":LMG Ld6' `.ds9޲FiNï٥(<yq# kA [UE�2d"#&ɶd8�x1[)[6;CY{gTBf$j6#o̮~fW!TD؆hYȪ33 3t ,qqc}R cPȣX, 'ˣ]Ró5ddwt2[|q�p* ꨴ 3-ld+cJbx]Tn9vADM1|ض|V#aY 2 t</LSeòDT*<&LuT~ZZ 0'[``F=Q} FE9 rZ|R [_WIKDT<i0+jȼd[/B}Wӧu{::k3nX~=pe%ngg' Ę|RzrrRj#oj4̘̐31wego~}AٖkQҥS^ 86lۮ+;ːmF>W\/:�JI0#ӌ0R0kŐIl#�ڊB 8NR 03>H<Jlܸ.~vS�u8Nr4{|Xf xIhue#l5dqw㭰,6OA[[ZZJ p]\p:::,jR3x*ʠ8.)Srxz 2J6T0 ϲ,PʊP9sR`faӦMxя~ħEwZb=>`ܹ蘂|>:qWWUT*Tfp]_pDM- 0CU0F)rmm6̙:3fL߂Ѭqxې>qԩXl-;ӦMkd1�ZuqFjxS;1|<쳣%"Ӳ>% Jc{�c'Eċ?C̓N:˗`mݎxgs9s> DZQVq0s{2 3DѕF3X,Nҥ�* obŊ`=vyսā|xx"j\o˨T*Ɉ>_җp�ZZ8exGQT$uɐDJyu]ǞWev vaO:o:;/p{5;n,bqkk;Ϛ5,؍͛ϻ:oy<}!}`*̜QIҀKӟw}/(hmm88sOֽg%]wݍ~ki #ˡӦMGKK V\u .ĢE GI2 fV�xp7uJ.砥j|u{8)`b…Xt?brf]=86J\.?3v-d` �LRME(i_ V<T`9B`ڴhoo& v(f͚k#cfwyЇw͛SN Bgh[&s 0Cwr,M60c*_N@t 7&a Zk_?V\UV+ŢE CԍXz5z{{�TzqFtuu'ilK6daۋ ]<@i}Wf�0 qͷςGQj][_Afu d7GCW^yaX,&Xn^jr?ᏱvYXv֬Yo9�.diy 07hJ5>xGׇ~Q;@`E h+ a-</=֏5/?̘1=]9mݓA^ ZIfj0k֬{}[LGG'6nX__q>~ri`�t D$sO>{z ^~%mmm,MxQ`%d(RSOu=aw]5kVUFȭ<_p=9XnA zM>[Fi8吟>Jַm`<oԍB2�3Da?O<nT. ~$L,{#_t+:KTv}}6wm>N `nC+ߍ3^O|«-wuW|N2+*nֱj+ۖ 0Ce$uq]v~T./_ ��N;B/[(::l침?{-._$ i߄_Ř9mekŸ!ϣ\./5F_"ڮ"c@}e˖+3}V+}EP --$S*} B dd$s  �� �C3s뛊p'q0#;E]<F�Ap{fg2{pm#! L sf>4@=LHF'qK8x/6 0X>1;ܙ-8^,_~(tŞ!AH@HJ !'a@A">, G>p7EşТ ]}W_&^Z$Xxş`2 `` V<x';:"DH` H iChH b=s2f<3X?WxeC0f׌eU^ Z�>~&# DD 0hC_q'k"G1s 50!kyɆ,^:Gf| ߄@p(@X`c뜀F�U+·CY# 0CjZ;¢94 ~A$6 CCvM?pU]=8r113 Q2'r(TإJ""*FKA�E�8Q�pf_Obj+0 h-0ymO# l-djDS lEad[z :J#gRPe[5&+}^ 2 tY4]!iޘ9`�ʸ=(o0Z 8^u Ȧ*gt Xad� 0+u!zK?,fl'yGCEݽʗdk=0o�֤;%GGbnGDXŬX`heZGL)SZR`["CA@YEe }ir"":>[2d%sx4Sh+r! @,$@L `�8K6oҸ~x=!�XI �*U3k/TT\DP.Q.JxL8Z2�DC"Y(@Ю�Ӳ7�7jl>m 8?H $(j$5A� G ăƴvB{P,�EPAfci [5l�8K{{:;;ކB�T)BГxLkVSpAZl{l\n` "#o#_|?cΛ7{aj+@G�~,>F\O/�ƶmEcNL2%69HR<ϋ"-F2NXfHb9DF[ ~326obJ[TeC#lĽwl@+e怩BKpl%V'X_ðs_,+d% b B>5OBDfdDb6[+.,Byw= 칛)mtw*clX[E B>G;pC D^oWWċ| Ef:CPQGQwVUfF.CXĠ�i'f�lZ&Ф+�̌ٳg[`o=*c?C< !_�J-|q33|/DB #̘b4HNcV %eBIqLr؎ǽ3Qͽ m5PfFYO?w}V]% -X䌇45RApsL>e& V\SEKJ( %+OP$>hpuP]_^`d;(?3j܌:WJN~C7@R "r9C>CXDP!> L&b G;!Xp~)׌!HE`PB CYXɧ\: |m;m+Tg˲҂N8]w]R1 @ZEoo6m* /D{78$k 0eΏ|!˙߮_W>Z!vm�KJDY=tn9eZrfdԴ2L ?\\ 1i>vǁAHo2dRs%JytL])<eE5oF#Q} Z3�.CE`1 N(@22І\._7v<L"ҥK׼~{-㢧+Q.!D]]][9;|6Ox)L&NLi:;;R e!r9[r1*0|PhII:KFU1}Cu,A1g4J X8(H)rbMs%L R ޭK k!kU 5;Wt�~˫P.Nufx>;ɔV4%KR͠g|9!xlہ8Vݷ"_i)I'$uk gg μ;p1G%\Lb�C.wv&�/0=P5*a!g u||а1SGbX|4MJ]vXfwef]Nd5 ˖-fQO# �=xEGطu8�d!Kj eYɢeNIkDZSڥ|Jn?HwߘwLڠu0@9)BhٳgcŊ~D uq3A2LFTp2kU-ciwr#XA?ox}R`vF&FcDwG(9e_pu]cDV</) oCE]3cp M:lI &vĶ2T4͌lV"Ƀ/~;dX线jUh Q۶SvSFN!gWX:�}Uny@ȪB\}n ,ΘfJZ4>?"E-A`-Vm… q-4MjR+3,"�XRJLډg�\p^S Z0uLFǨ)Pb%W1`hk$`e֬1?8Y_T̆$z0.8(S -BɄQky<56g0Lh7S,FÍ1ȁ+`l~uLF@:J)?^#mYY҉i;%_ͨW~V4ߴ OZ*=Ogf3glqy|kB?Z'ncy^qKe9R:&6NӉ )˘?l޼y[ڗ^`ӎVvz #<miX|{q@Bl SH;,iR*FcEŲ,Yw6df1>3w{]5IuGx X˶SWx tȶ<џ:Ҏbvlo�/X&bڵ5?M kO<?G}QJ" gl [z…yhҩ4ILͶfINj֯߀o|t=(3?ҭ=磌~:k<>F=Sۚ��3|f_le,wП쒎B`ɒXmOhI9&9{2ӕCݱ pp10<QG5&� 0[Z"#mkO>}:?1_lA`I裏'DWN0BX?Povccg{%MktuGlSGCs!fbC�z?3d),vC+c 4oBiJ6uT,^h<MPLar\8uT,\{Fj)XG*2߿>=~kFқB%KnxL30 o�e[\ٰp _LlQoM4j}@B$e}34X K[ =H0/�}:v"=� ,X0p#[ iX󛁥hҟLLϠ-}QJckc3lz'3{ٳy~Wi^_[ZDi[Vi-xmlp %KP*0TceBM_eCE%2x1S[w4fBoɰ~je#jcgP1kooW4k)0J`;7+�5#y_2vu^-ƅl7m>xhPiYwcX`nޓ5)062&?`Gu$v}Fum2hc3-g:9~m{SԉfkATjK,A뮿=ߔ-( Q  A0?3v<#_D\ހ׿… Sêk7F#Ql59}3kGi˟Yȣ:wu7Tpmmmxji51Ghɗ%�[TҮȲ,lܸ j~kŸ+8ΒcnƜXĕc#oѐOjK}'wՌ;lڴ z^y啦_,`Uj9jhhl F%п"03&�;t<1vu1Uַs5Q Ԫ4il\[j橯ꌿ Rv]immŋp6|qH)0mTX}>% G~}&١�C> `=Xr(Jho0 /xE]O? |6k,3_f�jn t:ĠB`=O<zjEWW7f̘B?`\w=!mPiX[[+ۧP㡇Fu/;w6nfJQ.n-ybw1.6n܈Kڐ`SӋnR1=0pu&hF(fE|TjA{LҎ'|_eXdIB ,yukKV.nmmwsÆ , 3fLh4D!Sk܄q*(5RB!۰nztuuxaSO=u�X02=l4Բ$-=3g}PYZ /mhmmGKKKpι C'a"U[J@.ã>: !_s̮6Qxhi;er( [iS)`7oFKK Lija1މpv 3Ҵ P( mmmxiZ8 ,]d˖MEmZ o+L}:::1s,L'Dhm-|D8Ju^aGgXkk::@kbpUWbΝ,[6Sp/20yvӓg5F͛`|�b@ 03 3f qRZyQ*O6};v,Zǘ;ƙ ʹE]4|ů蘂9s`Μ92B_BXDKpk!Bz@fl$b86 >lذv䒏KLd&=]1x"}uTjA`֊ٳgch+WQZcC^ 0cCNFDv)(xg欳)Xwwk4m{Io6fΜRJJ-={6Z[K+s=9Gr,9fhMVXp"\ڵ.~(n4f NH\|ӧOJ}}}p]`۵_|BhRA5v) `F'%"\c  ~yyWjmƲq"9қ̴ip!@Rlys֭[W^YkaӦuA`ɘ۶y^iLe)�cm;s}a]t89"&7X"'t^A7D. H(\ook_ԩI0`xCcV]VZٳg'<.@ٞMKN<D�@\/ڵknzlܸ ֭ǺuQ.^q&0s9=vԑ7Ob cGĩ|H�xM_w}X>72u߭FOOOR21|Op[aŅ@B/b?!=w|<; k t03 oܝԧ]$VӁw,6/{0qˎi.]:הI< [alb�8*6lM_so3Ѳدq]#G(e 0C<wc/&XYK/5.J)tIFȲd5xĀaFk]�fX.瀈ysW~w 3Ȃuc~ SdLKb:[,=S3:#z(-΢ 0[.SL՝oذaЋr)DZf](/288ֵjI=˲~}s߾e]ɶswGMs:(ֵXk:?ݪR4}am,fmۊm\!̖2lZq z}FӰI֤Q'f퐩2)�#0-i�Xlv;KaZ8 \ߨZ�g 0GdTW*5̼y0w\d2�+e0@)�[@ɡn2A 0R P# Q_Z^fx/IFK㴲-Iٌ'b4LvItaniq.\v;Ss^[R2) j`j2 [R6GFA5I0m`Ae�L2!ѤKH $,Nz|QS&0XQS3i蝃Ųj8Fu׹2.]I2<χ 0�dRh^j`ⶰ`d|u!=oʔvoXD1)& Ìj93.s&oLWWӁ0 q a÷�̘Q0/;l޼y6@[[+|?yQӌQk("Jlz"뺨T*(+V+5~OGGG 0Cc�"Ѧ�;޿u"0S5F<J==va~ޘC'wfiu35q䣣x)0[1 }r=FWWuN9ɦM++VA9v@gS(AQD׆ڶEaÆ`=e_KKSNCoo/0--fZuZn<c+g7ly/Cn83f`ƌXv,a3x͛B! ||R y.*7�Gďg1 "$KƊg h=Ӌ\.w0(32yW|>jwu)@DQ@)[!6l؈W^y6mj 0�VO{ | O6oRxy[ pݽUXVoүկ>dHLƞYYfuQ4ߋ-d$T,?(x&Q(Zܹsnz<䓍'�;!2ćO>DGazqX,R8z«~ /r 8wRfN2u)ww=m4hJ)g"vGb�ӓmFKK 6nܘ[%9S|],-e&(I7$"̚ w@aUtTqMzru7;4U>XVp]%Eks] 13 !jLFWWwzJ>j( ((Ő �b hMdv]f0~2ƦM* zzzַw0{ld2L!HA҆UBǾ(9O?/$@) u ,ƌ6,B礒l{0/=_'_{ 90r9 j A=5}qS.vm>n,Zcjc/ ixŕ"@| "#ITJPȣSLAKK 0͛fMᯈ0 |J%B0�dHAPyA>vVZ9skqb']V㩛>�E8S`8y Ӱ,;(B̜ExK'6pcj8dZ=EZiGuoRL8!}K(B4.e!xR:KFJ x G[֭[׽xtMV Edέ4dBB ~BFSbfxr^r?dd_ {bi0륤$1bADb0C5##|] Lqg+~8nٸo�PX &$55!^Zzg 5\ClО^XWIb|#ryvZ d 4E r"((l#\v@!6 2ƞB �|HP(>W%6v>VEeRZu%"u_R\P|%1SJ@-9je$o:O Ѩʛd�LA5t5C@ :':T`_S4jQ j^twwcE\^496J�! ۱T u9[,2!�)$bN�ATo;s:_+"֭[7&e&Pq5U 0 hؗU*X{l7>*Ph4<𡯶[mpUtj*�LKC1Yh&(+! Ν\SL�&, JEW/x˗9׻pGk~;&INT=CXFlɀGKp\_&ڱ#mX @@ 4j!4\�3 0̠?S EZP $r" LlBLV5[DjmոX� U1.~=76><?H|{[1DK VIdr XÜTfcϹ?ZpQd8$ 4n3MƄܿ~%kG iqypB!m y,;\s4 E/ Rl-zd@�'G8D[K^VqSK"03i,krHZ<ѡq/[<-[JQ>$%LCH$ -̟4y(?),s|Q3 y g$!##m"X,ЌJcۇPe?ϕ[|fW83Tv;$M`UU09p[2QE;h®$Vy%|b]$VH}�ڝxefr':r9B.o@9#`mh ~!a ~⬪yq\FH@ R@.GX'lzlr<S% ,uɉ9 D̜kcH|<(WԢ9gpq50<bsEI8GIKm8&ѭD9CB,<,"BbĨ1Ƒ`N;mo‘G3Xj eA0&0GD$>uF5|Zp99.i~{H{D0SP_Ja\@3\;/H|ڲ'#`0J&mh2VB}:0c|  iwuq²,v)_,1.8 CT6>ppM,ndܑXM2B )p zylK2cr9y ;'lGSf}88-ʸX3uo?v %B),@JzoYV*?nz`j$f7!ƈslfaB2�er98x/_-p@g>9<?~oÃ&QӤ 'ׇj ԴK2BEeߐۏa<23Cf]@[A` }KjD6N!l$"#_ sITkA'O0^H Cݒ!�Q턧c&  X ` % X#w:@_ehwbgp5Ƽy{*@:k8NsSi[D20h(WUr ƴ) Wh1DH0!H(i Gض)a Z^)!tHJÃӏկM>/IllaT9<W?>+W>] Q/>$ܦK E@6^мcB&qٲaR^7C17Oh_*#S]jW$p&nHc}xॗ^qǝ~`,fY`:FҎ�i:n*@儉y[kgl6J@ a);P@5ZM�J (E/+m &,`\..5;eB4D"coX"|' 8眷ɫAX @se/ȭhVBRBkRRB)zX%K-ߘ9(PndnFIϗ"7!Ò_`>5aA'tO�R4%L(_�]ଣA|Nz-_O8^{IԊ:;R(?4%R\KKs@LnmOhFk3IgGiR3"n1rBp)xo!@HtSj#mklF+4MV|, )1(S#>ӀRUTe XndZC\„P 5*|LuZ1�rO "HD 1,ES 8mCqߘ5 /ebr fqfc_2괃()P αj3hb͔CSeVNb߈(fJ=u̝01q L,L0#?Mƭ)"Vل\#7<~,߽>b 9`\l94EƖ%$@Qи8_<+Ugkmtr )�\ RZ'`DiPR7s ?aժvIG{ӦXfIPY蓐d2#WPd.&-舞% "neyֳ<(R@F`lBhΜ_m� XCBPN#L_dY0R BXHÇ{z&--ky&rDNL:<Y5JV8fibC1 RJT:,j!E"Xʚ5]_FyF4, ,v%3[Hxߛچ"̙'͛pŪUϢओ/kG\K2qT0RP5S ĒAJQ8f6d�b-%ےu:g?𝎕]޶vLZc30L{&‰Jg`;ΩOu×T*Mj Cd&!ʕ��y'JZ j-Q.2IM"iqIՆACB"Ш~*Ԃ0ewH2GOܑ<d#GLr1 wOR g&9Xׯ;y.y_K/SY:ALg>O1ehZbF&I)W X6[?_z99 E5w?mj&DPTJlB|,eY>UWƛV_+[Kq:J˼M3FNfd0 )@%^_zqXt5#p�ŒNWӊR5---8o.<v}>/nzjELI?;xis/ZB*~҅CQwav0Dmצ/gNXDi21B"4cv?nޙsna޼]`Y&<8̳a )bڸEk5J)2 #3Ply)@Å�~0.A($Ǭ8wkKwz"]Kڸu5Ey8pٹQo;q>rÙ0ZgK-ABWLƉ@c0'0dT0@# 0ЦMf�Q2V  ^ٛ%EPI;xKGw?9缭,YEE>Պ-J!GY& ahJ@# P,} `:ʸF& sQ8~ҔS 㖌 3,#*騖7OZA|\|{:hz;%cPOy|@Щ ƻ%j6~5  =<F< g># �ϗxlzhMQ03nfs�=kR饗pVW*"j@jtfg"SkI5[2t H|4<7unUí24|].0.tS =K3Eĥ2*$Gu@z䊻z8Cq]wS1XS6v%v*< FD3a Պ@, ?}Qu5nJUjTF\O_"q靖$cn/8Xh#، \qۄ-?SN9'lP:jx# Rk{,9I)h 3f#h9hr(Uj% Q.ksTFcx.}|/%y/\@c&hr1Qаw�[iQ?ᦛnҥk_GldlHR &+5@1TKo]jyFp+atQ)k+!}FQTeT]7fJ|ZnVaR~ b2hml׳_mBd{9|Co{hK9b-#`B ܴ`G !k@KXl2y4@3x�fvՀr7?53lDw!dǑUΝ$&.7{`+p8z^zzzw^1w޻> ,�QInXTVYiEΓ8-.f|ܿ!|?_5ZM#*CˑF)3!C55+rV1~#Y0PfMCr9Jd�vRI K05oP X~C?}?9n_3 Cz8㠃W^9.6`JKGҫI= 0_(iۤ 2?Do9D__(W5+Ÿ*\V:s4lJv%ř@pbMCBAHPa<(-44Lzq[RQlFE�fw�k6`%8qqaePj솼evmpM7˘L) T>66 /V;P‘8Bi/ >2'Z 8aDB2<@ T+0&K}5y +NB3r/7&F]&@P2Эq3Dָ.pa#+#+pe_A{{;<H,Y*b,^7s!lwp]?$`ŊX1{ィT*wOof,E_J$u,#v##?ʇ!'n,^L1ɀ&0ƃFk!~Raŏ^?ʰ#L؅AO$CQ)|NGk#V9lhRsxAI:IRı`QdhYWWz\f̘b1RvEetwo͛Ճa{F+-fỌ9IXL'4Bhf C)0&YZƑݢM,N1 2�&~�xAJÄh| u/|lh؀!0j0ϰ$С.e<yl0R @KԴmK0'Bhs;ϭ ի'$m/Z6r#ϔd8S Pj`8q2$ <0F^h6(?`JW/۴B04`$  ߏB xb-p�qTcHjß!߈԰ OLm[I/-9CoL;#Ԕn 5B�i0\tqQ8 '5Jс6//0Ts[5<| ? x@ˌ[W!>) H/I?0$K22 B6єcB@P8KXRE-BEG=š: Ec$CHsku`G 00@ `HS348~:mp扵%KcTjchx~HW u问8h؀9? nKl-"UhH8 )q]!tBD !uŀ&ĥiQZjdyLPM63[C Axa왒}aZEZ:'.Mn&t:0fH.P4\w}U/{r{<_,_4kBC@204M \ky̔4T\ )D*t 85H)x]�p4j-=BpH 1Eqۃw"�l~ >5<_@JA`%qQ{DˣFc㠤ya6.32p݀X 篽9`.p??Q Q1a `$G� D<82RрZp!fÓ Djf{2<G85s1jm9J04 }B~8" q /04leKJsmsb'RYkU4�j&q& ?{*ξ}FU{wqSsG Os`K# FMXD3ET?O9jBT& 1354Ry$�#HpޢhDhSۯk|$?`q{BewF @~kjhZ�!B۴.q{ ("ĩdJYC6^ȸzб>n> bL܁�wTh(>,D $ZHAT5#B-f`H 8%1Ddl(x(Tkb>fLeŎ@Pb{\dG 4aCDIkT#.X&""8�"`rH�F9z� RT%"C_!E4!1=Qdz3E5_FDط002}jS�70V~m"m,< 0C©RR#V,QK%W2Z D$`88j|i,EQJMMܨ`A~T3]feWnz&�h0 hI[TOe44 �̏7@-;X(%[g䅙Q�%`+ UKЌWSéufrMQPˮ04&|LX;ĉB^D,c;$S^O)?K[Ŋ$QgCeEm̑\5gTs[F)涧z*𮿏OPs`.%eW1UD<u9@”"!5go s@aB.GpAIuK9s9K⨼\6@7|/FIFh>YX8"v#2G<fhpOtԚaG(TS dT Xz+(Xz*dwc(3fC5FG,,B6يN ,-SdxX4"C?Q1 q#Lu]-LXpB% _*9Ji}B%J^ T $SLGx+ H Q ΓDnO/4e_%*o[!]F%edk8&�:"쳋 9[ 6cme؉S9JЍ�cl?sHZozid 0~ڏKGIɇΘ Hp4-( e`1m3%$l =@\b _1K{p!gn'޲|‰X\ 3R伡 nNFGhSs] }"LÓ:^@/8J)^S@(^qY5Y>3CCbJ֟1~Pvݛ]k[ﯼHN߹ɒ|mMHc84XR8#LDDen(*D;K/{Di+y$>QڼvQ<V3-a1a#P `1`\F`8^L[[$RwVTmkK|F؆Ip5M#-$5d7![M2Uȇh"H\h+})$M21uL;]q+}obwNTyKDvaBy9q8#urN)I%5M겾: ' dcK\l+,H @9FGZ �׏UݪGxա 7J,m<2MmuC5%Y?$5vlyӿۊRKqdLTiX 4S�oI^iw8W+M6BăYk3iU>~ޑCv9X9 tLB”0u}\;`'pi\"$$A(yVP @�̗^s9Gc"t%W!=?z}0)橍m8(٧Hb A" ?r߱nG9-LF*K89ZYS WTt 3$L2$L2$L2$L2$L2$L2$L&A􈠜&���%tEXtdate:create�2018-12-25T19:33:58+00:00o6���%tEXtdate:modify�2018-12-25T19:33:58+00:00NJ����IENDB`�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/verso-bg-landscape.png�������������������������������������0000664�0000000�0000000�00000014323�14163570564�0024554�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR��K��V���{���bKGD������ pHYs�� �� ����tIME  b+v���iTXtComment�����Created with GIMPd.e��7IDATxn۸QʒNyزdC7E46.�P���F.��X��K���b ��@,��%����� �����X��K���b ��@,��%�����X��K���b ��@,��%����� �����X��K���b ��@,��%�����X��K���b ��@,��%����� �����X��K���b ��@,�� �����X��K���b ��@,��%����� �����X��K���b ��@,�� �����X��K���b ��@,��%��/r ]ׅ(PEFa4(~>/S<\]?;x }>�@,"AP(u]_(BUU,˻ϳm4Mh6m|8TUuW<mrw]}mۛZEXV#>FPO}pS}ً^<�nCuy'`2pY.ٱu]:sn6t5xrdu.vsHt]w<bu}}6T˲ UUOm}ch5M$fAa � !{2Cs)u^u]nvaۅlfYҵ{؛ oooYeY^v͞uL&!u믻>insUEh&0N|>7�_{B3rg~ jS)}=4MXV1!zxooo}>'1 {xCu#!�Ec9mܭ?46vAxO^ux{:<Ώ{eYJ뺰lE]|4m:\4M:4MskqFuOm �14ݩilf:b  ts&IX.YlwbO7"FǙi.FjaSʱ|!b4v]xlφFA �m_~exY~CuK%6p˲ fLmס0ͲfRF?G-Ng۶aٜ:gRm۞}/uf)er󘋢<Au]n١ �8;1avn�=XRaX`g'eI7Hwg۷oaX\VUUE1t&,˻v@fw=nyJ)s1n_6*�K_g̎\n pSfC H}*l}Qe_W'ǟ-͟_܏g� ҹ]KA/ivF Qʚ>v:t.Sf2gp8$ojNs��F3tﺥӗFj,RfER_š?7/G9eG=?sq?�� *y{}'~Ox9ON,DfYɏ:z u]x|qҐ7JVw۶w,�X⊢eY&6ĝrѺågYkDR9:P[{^PaXEx{{ ~;.kuJ'Yܯ�78O]r8~~nVڣSMd LSΩ;Z_u)RR#c45s)r4Ms\c<7xLg{5K��H,[J sEq5ՐzNm&,MəzG Oi4ܟCuS,�!;}Ѫlvqu]h&y ;|oooI=˹^n}뺰sq}Sʚs_˙A�K#~?]YPz>1RZ.ك{#n�!:EiV޹<wܵGb �>@S[;hv]wqV@:w[u nC_ {.rb1[uw]x}}MΩ3t��b KlMv?3R%5i\e[v ȟKMz:{8�ou;Ł歙mn鱥bqQ֓ĈۛI}k4ϳ6tfr6UExhauY'e}r%�?(n) 8ع Ca=YoX*⩃(j O[njzhTg9�ҭvi60 d?SQǝr^zOT>jz2LӰn7VH7<z*}ֺ/��Eߖv?>vnϮSf1{f,uMeY%u3g- ///p8~ m>%m^UK��bpU% t8ξ( Ϣ(=sgR,0|>?ߪm4C_zrgү?��b]t.Z.%9_f4lOqGW]]e͠M&;��әk/zL&I/ ȿBsfl u]nb9wkr{N(}s{��txLJQ6uJ4I2ڮ~q'<TUu5v>6n�KqX|ѥ *yW]z,䙅pi4N&(jl{Iɱ�\ؐ3`l6aݞl{Xo\Wyq<:뭟ϊM+l��p,ݻn #[m^*;}<Ru{~),U�KXVُEq}<D@ܠb񰈼C= fg^;!!c껙v)<�@,Xw`}X.wWc>]ڠbXܽg]k6sI׺}nIN� ~q0c6% nKщ3J:}Pp8}߇.PbpE1K1|jN �@,=n^U;}8ζl64Mx}}=;#5LA:s;ߋuI۶a^eY&_êf]C(1 ��|˲|hVUXI&IL&,Zp!|>+R{V,:~}NGEQ]^'g/b^g4Ou4A8bx1��_?jOu]i̶mf^gVEݳ z|k^__K8;Sf%=r?bG�YFǙ·ov u]'‡DR\H gls1RCI4BUUIR#i6tj;�O,u?CX}amۆ4z,I`$,ˇ_aܽ.[T<>K|۞0NCUU" �@,} pF: !İ+O(ۊkg5x ?{}~8qY{Y<��oSs���o���b ��@,��%����� �����X��K���b ��@,��%����� ���K���b ��@,��%����� �����X��K���b ��@,��%����� ���K���b ��@,��%����� �����X��K���b ��@,��%�����X��K���b ��@,��%����� �����X��K���b ��@,��%�����X��K���b ��@,��%����� �����X��K���b ��@,��%�����X��K���b ��@,��%����� �����X��K���b ��@,��%�����X��K���b ��@,��%����� �����X��K���b ��@,��%���@,��%����� �����X��K���b ��@,��%����� ������b ��@,��%����� �����X��K���b ��@,��%����� ������b ��@,��%����� �����X��K���b ��@,��%����� ���K���b ��@,��%����� �����X��K���b ��@,��%����� ���K���b ��@,��%����� �����X��K���b ��@,��%�����X��K���b ��@,��%����� �����X��K���b ��@,��%�����X��K���b ��@,��%����� �����X��K���b ��@,��%�����X��K���b ��@,��%����� �����X��K���b ��@,��%�����X��K���b ��@,��%����� �����X��K���b ��@,��%�����X��K���b ��@,��%����� �����X��K���b ��@,�� �����X��K���b ��@,��%����� �����X��K���b ��@,�� �����X��K���b ��@,��%����� �����X��K���b ����� �����X��K���b ��@,��%����� �����X��K���b ����� �����X��K���b ��@,��%����� �����X��K���b ����� �����X��K���b ��@,��%����� �����X��K���%����� �����X��K���b ��@,��%����� �����X��K���%����� �����X��K���b ��@,��%����� �����X��@,��%����� �����X��K���b ��@,��%����� �����X��@,��%����� �����X��K���b ��@,��%����� �����Xr �����X��K���b ��@,��%����� �����X��K���b ��@,�� �����X��K���b ��@,��%����� �����X��K���b ��@,�� �����X��K���b ��@,��%����� �����X��K���b ����� �����X��K���b ��@,��%����� �����X��K���b ����� �����X��K���b ��@,��%����� �����X��K���%����� �����X��K���b ��@,��%����� �����X��K���%����� �����X��K���b ��@,��%����� �����X��K���%����� �����X��K���b ��@,��%����� �����X��@,��%����� �����X��K���b ��@,��%����� �����X��@,��%����� �����X��K���b ��@,��%����� ������b ��@,��%�����`dAWvY����IENDB`�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/verso-bg.png�����������������������������������������������0000664�0000000�0000000�00000014720�14163570564�0022625�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR��V��J���H�K���bKGD������C��� pHYs�� �� ����tIME +���iTXtComment�����Created with GIMPd.e��4IDATxksHw?9cA aNSn>OUjv [zj��`#��@X�+��a��V�� �@X� ����@X�+��a� ��V�� �@X�+����V��+��a� ���� �@X�+��a��V�� ��a� ����@X�+��a��V�� �@X� ����V��+��a� ��V�� �@X�+����V�� ��a� ����Tq<Cumu/"EFQF(o]ׅ}mg?#~gq{6jvk4x<_(PUU(r~6MCh&4M8TU5( q\;mۆ~}hEVU*8I9ϣ(e۟gkuc{ -�av m_xlۛg\fU۶1~F liօ6nP޶mvDj`i~:mbԖe:}ZM >1C.L&0zE(�aնm8ka:vn .f0͒ݣ~8[֨cYWênG3Sx u]kgn*"t: |Q:Bp<G\�S/`)u]3✤u8j굍q#]ux{{>[u=y'FZܖ8o|۶im޷Nmj[�Aaն/щiݪUua݆n:|>mp^q_syu,Qu)fڶ ͦW�cܳ92ocuiqvkn< StϾ2p&LӰX,ߞ.g[bmd2 2k7M펡X,z-J$ht!;WcZ2W+e[>>nb4v]x뺰lzF^Q s|YeYyV;b^ ˲ nxmǡ0ͲF/RoF_$LӋ?il.xkYQk4o3XNv]^^^nsQa>zkڶ 6;ZO G ]ٖQu]X,w/ƩŹ7)Sj#,Ǫsqͦ}Gʲ$l6t<R~fmN]R=71s)4Zrb2?H흜c@EQ^s8{񐨊߯߱%:.U/)OU$aui@5MdəT-婴ѩK2u>nKxLX>Yd?<rFγd21)і1s&0|>Pe<)KL<"|RC:5r�K6WU<}Ekmn~O)zONXiYɷb0K݆x<y~8ϪO$Rg-4UeY&b'rn]~"u]֜^N^Tr,'njjDEN?1gV꼪ܟBz}ϐW�Uy717KUnXE6 {MjFA#E/G|^<g}9zḺVWγJK􊢸BOݧK/ g:&GRΨ3 ="#k4^|ژ!ry뺫 +�ad`|G^l͕ܶćO\=h4ʺ=s.upmm۰O~q>VKs1?OKg</.pk*'O[N2ϸq4(0N?=sJ +m^(r<^@>r!"_h".'`yۅפzNc zavI#UuW%.2tA-2#;vr. [Ck^7{? 9�}EnR {# M\|ywx<0f4ϳ&հ ߑœIwoom5)<9�~1}UUuwI!l@GեW<:tVUxu]|vVC4;$rn vm0{]>SQ'r ].a:v=i<E|Z4;ZY�a O5.](y5٬mgUW|%u$3GC ///x<~Ch)UEhh xM8cXNjCE{8NygȜgGU<,0|>?4M8] g+VO@5Mom^\.{ʝ/uLs__F9f1TCo>z棵m527LL\VM|D֢q5H &gMMgYh6ubm9ۭss뺧f?4>n/EkW k/Im9!3CUUa^gX+H � {VԵ]ׅj<_>]YeWx"x<vnr<0'IREq3Lr={u]rXu] p9fs5!`STykW q;uR*gB~@X==hDmY`xWy"vk=}whfZe+.C!NdX<,8o~i٥ۑ/;O4jM]*.!b\~#�7 ri9O`ܵ)yƱ^o)7{x<N:mvM:///^_ ,y钜o.y(T]EtSDw.v]߳>m;PDE+k|j2 @X 7bRU'>^dSGq6M9Hd2ɺ#uD3&Wi^{߲,aUUIf }(5�_O^˲||hVUXIQ&IL&,ܥmx<R E įa߇tz _ uVukr!i4Rz~Cw<X,ݣIڶ Or�<4Ml6⿻}EQr9xb&Nχϱz}}ͺ5:5٬[v]mǔs/9U|MH<ܑ?v u]'_UOHg:.㇮4BUUIRj6t?/ێX<>[uT4AO�[e 46Lr|>S|9(TYv}x[KE0NCUU @X/187(H h4:P,ً<xΏ]<q2'Y#}<t?nw}=?@Xww�a� �V�� �@X� ����V��+��a� ��V�� �@X�+����V�� ��a� ���� �@X�+��a��V�� �@X� ����@X�+��a� ��V�� �@X� ����V��+��a� ���� �@X�+����V�� ��a� ����@X�+��a��V�� �@X� ����V��+��a� ��V�� �@X�+����V��+��a� ���� �@X�+��a��V�� ��a� ����@X�+��a� ��V�� �@X� ����V��+��a� ��C�� ����@X�+��a� ��V�� �@X� ����V��+��a� ���� �@X�+����V�� ��a� ����@X�+��a��V�� �@X� ����@X�+��a� ��V�� �@X�+����V��+��a� ���� �@X�+��a��V�� ��a� ����@X�+��a� ��V�� �@X� ����V��+��a� ��V�� �@X�+����V�� ��a� ���� �@X�+��a��V�� �@X� ����@X�+��a� ��V�� �@X�+����V��+��a� ���� �@X�+����V�� ��a� ����@X�+��a��V�� �@X� ����V��+��a� ��V�� �@X�+����V��+��a� ���� �@X�+��a��V�� ��a� ����@X�+��a� ��V�� �@X� ����V��+��a� ���� �@X�+����V�� ��a� ���� �@X�+��a��V�� �@X� ����@X�+��a� ��V�� �@X�+����V��+��a� ���� �@X�+��a��V�� ��a� ����@X�+��a��V�� �@X� ����V��+��a� ��V�� �@X�+����V�� ��a� ���� �@X�+��a��V�� �@X9�� �@X�+����V�� ��a� ���� �@X�+��a��V�� �@X� ����@X�+��a� ��V�� �@X�+����V��+��a� ���� �@X�+����V�� ��a� ����@X�+��a��V�� �@X� ����V��+��a� ��V�� �@X�+����V�� ��a� ���� �@X�+��a��V�� ��a� ����@X�+��a� ��V�� �@X� ����V��+��a� ���� �@X�+����V�� ��a� ����@X�+��a��V�� �@X� ����@X�+��a� ��V�� �@X�+����V��+��a� ���� �@X�+��a��V�� ��a� ����@X�+��a��V�� �@X� ����V��+��a� ��V�� �@X�+����V�� ��a� ���� �@X�+��a��V�� �@X� ����@X�+��a� ��V�� �@X� ����V��+��a� ���� �@X�+����V�� ��a� ����@X�+��a��V�� �@X� ����V��+��a� ��V�� �@X�+����V��+��a� ���� �@X�+��a��V�� ��a� ����@X�+��a� ��V�� �@X� ����V��+��a� ��C�� ����@X�+��a� ��V�� �@X� ����V��+��a� ���� �@X�+����V�� ��a� ����@X�+��a��V�� �@X� ����@X�+��a� ��V�� �@X�+����V��+��a� ���� �@X�+��a��V�� ��a� ����@X�+��a� ��V�� �@X� ����V��+��a� ��V�� �@X�+����V�� ��a� ���� �@X�+��a��V�� �@X� ����@X�+��a� ��V�� �@X�+����n )NE����IENDB`������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/waterfall.bmp����������������������������������������������0000664�0000000�0000000�00000341212�14163570564�0023053�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������BM��������|����������������� �� ����������������������BGRs(` @33ff&@ff < $\2���������������������������          #$"#! %#"(&%#! " %#"$"!!#")($10,0/+*)%/.*/.*#")&")&"+($.+'+($$! ! #!497:A>074',*#$"!#&#&#'"+&#,'$$!"#$!'$ &## # %"%"# $ # !% !1*')$! &##"    "62-V?7VA9N<5>2,0*%%"(&%#"(# 2.)!.#5,(KDA5.+&! -)(                         &$#)'&#! " %#"&$#" !$"!&%!&%!('#&%!! &%!'&"$!$!(%!-*&.+'+($*'#,)%(&%%#"" !#! $"!$"!#! !!" #!*+)-)(+&%# " $$! ! !  #"$#! "!"!"!% #"  # 3*!7.%2*#+% )% &#" "#! !" " '$ 0+(2.),(#$ (%!                            !!%#"+)((&%#! " &$#'%$#! !'&"#"#"#""!%$ %$ # &#,)%30,6433100.-.,+/-,0.-0.-0.-9541-,%&$ !"#!($#&! %#"#! #$ &"!!" #! $"!" !! $# ! '%$10,)&"!,)%               #$"'%$'%$*('-+*%#"!" '%$)'&&$##! #! )($'&"('#+*&*)%)($&%!$#2/+0-)2/+41-30,.+'-*&.+'30,1.*/,(-*&-*&/,(0-)1.*7//3.-5100.-#! ! #$"#! !%! '#"" #$"#! $"!#! " $"!(&%&$#! !" &#%! !! "  %#"'#"!"                !"  #! #! %#"'%$'$ $!$!)&",)%,)%,)%-*&.+'/,(0-)2/+0-)*'#&#'$ 0-),)%)&")&"&## $!(%!+($+($)&"(%!(%!*'#,)%.+'0'$+$!/*'2/++($'$ &#"!%! "" &"!$  $ $ !"! "#!!"  &$##$" ""                      !" !-*&*'#'$ (%!)&")&"*'#,)%-*&0-)/,(.+'.+'+($)&"-*&,)%'$ $!# # # (%!.+'-*&.+'.+'-*&,)%-*&0-)2/+92/5.+1,)1,),)%,)%-*&,)%$#%$ &#)$!-(%+&#'$ )&"*%"(# !#&!&!! ""#  ""                     /,(.+'-*&,)%(%!%"$!%")&".+'*'#'$ ,)%-*&-*&2/+0-)0-)2/+52.2/+*'#%"$!,)%-*&/,(.+'.+'.+'1.*41-3.+50-2-*/*'/,(1.*2/+52...(1.)0,'1-(60+4.).*%/+&-'".(#-'",&!0*%71,;50:4/ %#"'&"! $(" !                   !$"!%#"#! !+($.+'2/+2/+.+'(%!$!# (%!-*&'$ # *'#-*&+($-*&41-/,(+($*'#(%!'$ +($0-),(#/+&1-(2.)2.)3/*62-84/0-)41-1.*1.*;84>;774041-/,'/,'-)$.(#1+&/)$+% ,&!2,'60+82-71,71,71,4.)0*%*%",'$*%""%8-)D825/*,&!("+&#-*&(%!,)%<9544.""      !!            $!+($'$ "-*&)$!.)(.)(/+*$  %#"&%!$##"&%!('#('#*)%-,(1.*,)%+($.+'.+'+($)&"*'#/*'1,)4/,50-3.+0+(0+(2-*/,(0-),)%$!!'$ -*&0-)1.*.+'+($)&")&")&")&")&"&!)$!+($'$ "$#*)%*)%3)"A62>51.'$&#!# %  %! .*)*('  '$ /,()($  ###!                '$ 0-).+'$!"'$ )$!&!"*&%($#*&%%#"+)()&")&"-*&-*&-*&.+'-*&1.*2/+.+'.+'2/+41-1.*0-)1.*.+'.+'.+'/,(/,(0-)2/+52.:73;84:7363/30,2/+2/+2/+1.*0-).+',)%*'#)&")&")&"/*'+&#*%"%""%"*'#(%!7.*;2.4.)+$!)$!*%$$ &#.+'/,("#'&")$!)"%                      $!,)%-*&'$ &#)&"/*'-(%*%"1,)*%")&"*'#41-+($+($52.2/+1.*52.0-)41-1,).)&/*'2-*4/,3.+2-*3.+.+',)%+($,)%.+'.+'1.*41-52.63/962;84;8485152.41-0-)/,(.+'-*&+($+($+($*'#0-))$!&!'"(# *%"+&#)$!+% /)$,(#,'$/,(-)(#    "!+($.)&/(%+$!"#"! #"                     "'$ '$ %"%")&"*%"0+(2-*72/.)&.*%,(#1-(/*'+,),'$.)&4/,,'$-(%2-*/*'.)&/*'0+(.)&-(%.)&-*&+($,)%-*&-*&*'#+($.+'*'#)&"+($2/+52.41-30,41-.+',)%)&"(%!*'#+($*'#)&"*'## $+*'2+(2+(1(%%!+'"-*&/,(/,(%#" !%#"+($51,62-+( !&! )$## "#"#"              !'$ (%!&#"!"(# 1,)3.+950=72IC>D<5<4->835/*3-(/)$4.);503-(1+&95062-2.)1-(1-(0,'/+&/+&,)%+($,)%.+',)%(%!)&".+'-*&*'#+($1.*41-2/+1.*2/+/,(*'#$!$!(%!*'#(%!%")&"$!'".)&2+(3,)3,)4+(1.*1.*/,(+($'$ !-+*%#"  &#0+(1-(&"!! #"             >;70-)!# '$ %""# %"'$ 1.*;6362-5/*91*PHAVLERI@ND=E;4>4-@6/F<5J@9J@9H>7=94:6162-51,40+40+40+40+/*','$,'$/*'/*','$.)&4/,4/,3.+50-830:5283050-4/,41-.+'(%!(%!+($,)%*'#&#.+'+&#,'$.)&+&#,'$.)&.)&0-).+')&"'$ (%!$!!$!# "            83050-1.**&%  $"!"  ! #"#"! $!'$ &#! %"*'#+($-*&73.2.).(!/' G>5SH@UJBWLDUJBI>6PE=RG?K@8TIASH@<61:4/82-71,82-82-82-71,70-2+(0)&5.+70-4-*3,)5.+3.+61.83094194183050-1,)30,0-)-*&-*&/,(/,(-*&*'#.)&-(%.)&*'#&#(%!*'#(%!&#'$ &#'$ *'#(%!%"'$ *%"% # $                !/,(,*) %#"#!  " "   ! #"('#,+'-,(*)%('#'$ *'#*'#%"$!'$ &#!",(#-)$60)?70TKBTIAND:l`VnbX`TJfZP_SIMA7ZNDZND93.82-71,71,82-93.82-60+=636/,4-*;41?8592/3,)0)&2-*50-61.4/,2-*2-*0+(,'$,)%-*&-*&.+'.+'.+',)%,)%(# )$!+($)&"&#'&"('##"'$ +&#*%"'"'"'"*%"0+(1*',%"(# &"!!"#'($$%!      $#-32  ()''(&2-*KE@5/*'!#"%"$*%$% ,'&(#"(!92/81.2)&$"!#'1.*=72OE>_TLXKCYLDqaTcSFvfYvitdWxh[rejZMB;8@9692/:3071,1-(73.;725103/.:52?63G>:H?;6.'6.'5/*:4/4.)2,':4-63+-*"-+#/+&2.)0,'.*%3-(3-(1+&2,'*%",'$1,)0+(+&#)$!)$!(!-(%(# &!)$!+&#'"&!(# &%!#""!"! "   "!&%!)*&+,('($ ! &)' #!            =II3ED  $ +#PF?LC:A8/?5.&!"(%!"!.-)# "5,(90,F=990,4*#B81I?8B81.)&$!%$ &!7.+2)&)$!%$ +($*&!/' NE<aUK]QEgXOhYPfUHnaZI<p_R{nvXG:?5.LB;D:390,=40B<7?94.*%*'#2-*4-*7.*;2.90,5/*71,51,<6171,3-(40+3/*0,'2.)-*&2/+61.941;6381.1*'1*'-*&+($-*&/,(-(%,'$,'$*%")&"(%!(# (# )$!)$!(# &!"!!   ! ! !             $&&  �  )")#1' D91i_UfZPWKAbVLSF>@5-1()"-' 0-%<8373.E:2LA9YNFTJ@]SIQG=QE;]QG=2.1($,&-%SGAL@:<4-85-?70E<3`VLqeYm`R_RDdWI{m{j]veXsbUgVIiXKqd{nren]TcTKVJ@RE=F=4C;4LD=GA:A;41+$4,%8/+<3/D>9?;684/73.=94=9484/40+51,62-61.2/+1.*.+'/*'1,)/*'/*'4/,1.*,)%/,(30,2/+-,(*)%'&"&#)&")&"&#'$ +($)&"#  #$ "$ +'&2.--+*!          �      #! #'#">52/&"1&"7-&J?7OD<OB:cVN~m`uh{k^tgYQE91'92)C;4I?5PF<LB8LB8vj`_SIL@6[OEk[TJ?7<1)A4,cSLo`W_UKMG<>4-RG?th^i[OVI;QD6M@2h[M~oxizgXfSDaN?xeV}nufzobxh\maWRH>I@7TKB@7-:1(ZQHRHA91*<6141,41-1-(73.:7274/2-*2-*5.+1*'1.*/,(-*&1.*52.3.+/*'3.+6210,+.,+1/..,++)(+)(*('*'#-*&-*&*'#)($+*&)($$#  " " $ !                     &"!($#($#$ $*%$70-0)&/(% 0%!:0)?5.hUHs`Qufzx}pWK?KA7?2*XKCVKC?4,WLDTIAPE=I>6jWO}nej[RcSGweZkWL<,A8*;/)F;3UI?rcZyk_dVJSG;G;1u`QwuwhxcT|muvbQ`M>}m`~pdaUKSI?TH<qeYxlbTIA8/&3-&51,85060)71,73.52-3/*4/,5.+2)&1,)0+(.)&2-*83050-1,)2-*50-/,(/,(/,(('#'&",+'0/+1.*0-)/,(/,(,+'*)%('#'&"&$#" " &$#%#"          !                 #&"!##/(%4-*;6550/' 4-*<3/;1*;,#TD8{h[~nsƱfUH]NE;,#B3*^OFaRIA4,I<4SF>P=5[K?wg[urfvjubSbSCN@:OB:cTKzj^xl{ozi`eTKhXtìǰutūo^p]NrbUk]QPB6m_Sn`TI:1B7/;2)>81/,$I>6C9282+41)62-82-90-90-60+71,4.)4.)51,51,40+62-0)&3,)92/8301,).+'1.*1.*50-2-*1,)/,(,)%('#'&"'&"'$ %"'$ +($*'#&#'$ ,)%41-,)%+($.-)*)%"#!  "#!     "!"('      &,+          %! %.&,&!4.).(#1)"7.%@7.3*&4& fTI}zjsczmtaTl_pcsaVhVKM;0eRJWG;WG;taTuiy{lwhve\weZyls^OlUFznt|ppվʱvghWJjYL\L?]MA{i^tdXl[RUF=?3)D;26/&`QHSG=A8/83*96.71,5,(;2.:2+E=6IA:D>7B<5?92:4-85-A62G<8LA=G>:>51;50<6173.<52<5272/1,)-*&.+'-,(+*&,(#2.)62-40+1-(1-(1-(1-(*$+'"1-(2/+)&"" "  !" !!"      ! #)(          &$�          !5+!LC9=6-@81E=6I@7G=3OC7:65.%!O>5u]QvududƬxh{krwh|m{raX|kbgWKgTGuin`}cUpawgzwhϲһ²«éyscqdq`Sp^SZH=|qiXOXI@e[Qi_Uyg\j[RQG=G@7HC:>8190,B95E;4OE>LD=A92:2+93,=70B<5aSM^RLXLFI?8?5.A92JB;HB;E<9G@=C<972/4/,85196232.82-E?:JD?A;693.71,2,')#2,'=7293.% &#1/.4213.-1,+4/.721.*)!  !                $".C@�?90/     &"!*%$,$$1*'.'$(!;0(G:2TE<^LAdQD|iZcQ@cQ@cPHXF;]I>kUI|{weɱyo{scsvq_z{~|кįİͻɺĵ̹йԽ˲ŭ«zkj[spc^QCND:NE<HA8=4+ND:SG=saVcSGfXL[OEH<2H81TB;hUPbREtgYi]QYMAUKAVLB^TJi\TXMEL@:I?8E=6NHCA;6941A<9GHDCB>:956510/+$!%"851?6281.-*&$"!%#"-*&62-<61>5,6/&-' ,)!+)!($+)(              '*  $%.BC -,(*    $ (!8/,8/+<1-:.(I>6J:3]LC^LAgUJgVIk[Nwl~sxwbSzk˱ϷɱìëëикȲwzųȴ̺òǷ̼ξлѽȱѺƯwYI=E7+F<290'B90\QIh\RbSJzm{j]tgug[i[OgVMsbYkXQl]{k_k[O~la{i^i[On_VeYOH=5E<3A92?6282-2,'71,3-(,&!1($7.*@73MD@K@8E;482+-)$)% -' 5.%=4+80)71,3/*1.),,&$#+($=:6&"!$ ""!$#      $#&%     &%!  4=@9>A$'%( "!"/0� %9:!56      $"!52.82-B73G;5J<6I>6XKCXHAiWPhWNkZQfWNiZQ|i\v`Tr]No`wgxfêéɸ̴|űű̶ʴͷİïмҿҿðıǴ̹̻Ƶƶͽ̿ϿĴ}~p^yzdSJN?6A4,`TJte\ucXm^n^NpcxkueYzoٿūuxcTl]}nspzk~m`iYM[MAE9/6+#/$B5-K>6OB:QD<\LEdTMgWPiYRn`TdXNRH>B90>7.F=3KA7J>282-B<7?<896265143/)($"2+(.'$)",'$<76D?>:65/+*               &'%78   56 56� �      HB=f\U]PHYIB\MD^OFjYPiVNjWO{k_o_Sxj^m^xcThSDm]m[gUɰ¦ȮҸɰǷǶͻ°dzɵҾоƶ̿ϿͿʼпǷïswűwvrc׾±ziʹ̼̿ɲ®Ǯv|retdXrfwxqevfZqeu}r~laq_TgWKfXL`TJZOG[RI[PHF<20$&4+'5/*'# %!+'"-)$$+&#+&#)$!.*).*)$"!        '%2DC)*�   *))><*)  � 0DEEYZ  ),   A92[OIfYQk[NiYLsbUp_Rp]PtcVdSFn^Qzk{lpudsbxyƲɸͼ̼ǵ͹ξӼƶyxhT~Ų;óȸɹɹ˹̶иԼ}pl\OdTGqaTwjrel[NiXKxgZug[iZQXKCLA9H>7I?8JA8JA8J?7=4+5,#4-$:3*?8/A8/=4+851@=9:73('#!!$&&#%%      � � *,#).     !))%--$..��    �  "%      ^SOSG;UG;ZJ>xh[xij®˷̺ɹĴɹǺ˻ȷİdzw{ɳŴ²Ͻ˺ɶ®ïϻyjn[Ll]Mzjuscp`xzn_fVJ]MAVG>TG?K?9F:4QH?e\SH=5RG?ZQHXQHYRIcZPaXNUKAGD??<7.-)#$ &'%&)' %$ !##&(('))!!                �             (#"2,%91*<3*SH@ymc}ͻп˺ĴĴɹȸɹʺͽĴϿǵ˾̾ƺʼŵϿƶ²xizk~oun_o`|mr|twjzh]m\SaRIWKASG=SJFPGCGA<=94D>7TNGRJC;3,?;684/2/+2/+0.-01/,..&(( !!!!                             !976TQMF@;JB;\ULPJ?KE:e\NlcUwn`ugudoξ˻ξȸͿǷȸ̼Ƿɹ²±Ʊ͸­«~n{fWm`~q~na]M@GAB/*+&"!*('.*)30,>96D?<OFBE<8?85<74510/-,,**###!  *(,75 -+   #!                   ����       "#!.,+2/+'$ 50-=63F@;^VObYP\SIdXNmaUwj\{l\tôųŹòxoo]jXyhunal\OVPIC=6<4-:2+G?8H@9KE>IC<OD@LC?G>:72/)&" "#!!"  (#$!##      !  !"+01,36         #"#('      %*)           -+*63/*'#61.<52C=8ZRK^ULWNDdZPocWuhZobTxiY~na}pbdWIUG;`RFbQHp_V{k_pctʽõǻƹʽ̼ͻȴȴ|kp_qaQm\OPF<\RH^TJe[QeZRLC:8/&A:1MC<I>:?622,')$!&#$"!!" )($#&$     !                               '%$52.'$ 2-*61.@:5XPI\SJVMC`UMkaWqeYm`RqdVtfZqeYXL@E=6RHAE;4I=7L@:]PHte\wƶǹʼ˾³̼ı±λԿ͹ppawhufVyiYxhXscVWG;MA7LB8RI@H>7G=6@814.)*&!&#&#%$ &%!&)'&)'!!''    )(,+"..  "0/ $$!!       "'&                      " 10,$!.+'4/,@:5XPIYRIULB`WNkaWndZocWsg[xl`qg]XMEHB;NHA71,<3/B81[NFsd[wǷƶǺ˽˾ƺ˷ŴҾǵ˸ƳylqaU[OEE;1C:1OF=UMFOIBA;640+.+'.+'+($ #$   -//+--).-/77 $..  ,,+,,>?(:;*+&'$%3411"!.-$436DC##  !"      %$!&%                          #!!43/$#/,(72/B<7WQJYRIRLAaXOmcYoe[ui]wk_vlbf]TG>5C>5LF?;5.E=6D;2WKArbV~ñɶǷɹ˻ʼ´Ƹµɼ÷ͽͺ±̹¯}{yxh\]QGTIAH?6G@7A922,%%!&"0-):73)($/0,.2-*0+&#(/,")& "*)#++!!** ,,1?>/01212,9;(*"$')!--&&  ',+ %$                                    """43/#".+'830C?:ZTM\ULVPEg]Soe[pdXvj^wk_yoeg^UI@7@90D?683*A<3C:1J>4`PDsf˸ɹͽƶʽ̾ǹ±Ĵöķǹ˾˾öŹŹŸɼö˾ʾŹŹȸʸyqzjxgZvh\k_UbYPSKDA;4B<5@:384/3/*0-).+'*)%!" "%#,1/BGE$!7=<287&.-$/-" %% '' %)**)+ ,%(@9<     ',+#" "" &+*"'&                   ��      43/! ,)%52.B>9ZTM]VMWQFk_UrfZnbVug[qeYvj`dYQI@7>81<6/+'"40+A;4E>5XLBrdXx²˽ǹɻ˼ȿźzyzzy||pvǻʼµƶȸórznbk_SUI?C80C;4F@;84/;8095040+.+&+($'&"#! " ! !'& ! $# '"#  & !   ""  '))                           �  �  762"!+($2/+?;6UOHVQHRLAbVJmaUobTxk]ug[vj^aWME<3D?<=:6)($)($851<83PG>f[SwgĴŷƸȺɿʽ{Ƹ˼Ŷ¹~xv~r|pznymuuivlyovj`\PFVJ>h_Rzqd~uh̿ŹżĸͿͽͽƶ{ozjsf~nbl]T`WMVMCF=4PF?JB;/)$+($&"#    %$! "! "$$$&&!)($#EKJ%+*  %#   !                        � �    � 606/  ����� ��� 63/+($('#.+';72SMFZSJRI?XQHd[QjaTvk]laStj`YPGF>7B<7;63)%$)''(&%*%"LFA\ULueXʺɸ˽Ĵrsõɼ˾õƻ{x{nylwjxk|r{qxndyoqg]lcZ[SLUMFXQHg^TaXNtka}q~µƷywkw~xqaTLXKCE:2G>5LD=E?8=70)''422.,,&&&/11355"'&*)%(*)0.9 -#4 & !(.;DH148#"$%  ��  $!0-'2/(/,! "# %&253<?=786&$                      � �      ",*     � 63/)&")($1.*950PJC[TKULB[TKg^TmaUwj\qdVth^\SJD<5?92:61'$ +)(-)(.)&LD=NE<fZNs˻̾ĴǸvvhzl~ȻʽĹyt}pyl}tg{reuk~tjsi_ukoe[i`WYQJQIBWPGd[QbYOul_}z{mat~~pwkmaWPC;RG?QE?H?6>5,G>5>3/90,:1-6/,?:7@=9'$ '&"%##A??999%%%'))+--#%% %$ #.4@'BP+IZ*I^<[tBc}MmEg8ZrSs~{^iwJVbRajYeoJS]=?I36:!   !$, %& !!"$#*-+&,+$&&&+* $$$           �       +(,)#1/#!   � 63/'$ *)%63/950LF?_XOZQG`YPmdZpdXxk]wj\rfZbYPC;4<4->83$(%!(%!2.)RKBG>4QF>ndZɺ˽ʽǸ|wiyl^~sezȽǺȻǾ·v|oyl{vixobvm`{qg|rhukayoelbXd[RWOHLD=WPG`WMcZPri\{wkxj^}~ywl^qh__UNG>:LC@;33800#(#"#%%     �  ")$%*')! $,.&->OWhIR`CN\BO]:GU7Oa:N_eubrYfvⶹx~'18'4<)<D.9!% #   #%% #"!   !!!  "*)'&        �    $;7+(����     740&#*)%;84;72MG@e^U`WMf]Sul_xm_|oa~qcpdXj_WH>7A:1HB;&"!">81d]TQH>5-&LC:bXNv´˾Ĵ³|pznbsg[{pbvƻǺȻƽuylwjx~uhwnaul_|rh{qgwmcsi_g]S_VMVNGLD=^UL^UKe[Qtk^z|pdzl`}~uiocWi`WYOHG>:>98.()0+-# &!#!!!"# � ! �� "!'/.*44)) #/42(/,&-*!*'#'-2 $� KGL;FJ"-1 +/+/%+4FMEZbF\gGPYAJSHPW>DI27:9=>!&%���� ! "'&"          ���     ����� -)"������         740(%!*)%=:6=94NHAjcZe\Rg^TzqdwivfvhqeYlbXJA8KD;RLE*&!%"KH@le\SJ@.(#@:3E<3aXKɺξq|pfsg[qeYznbsƻȻɼƽuxk{nxwjxobvm`|rhwmcsi_ndZaXN]TKUMFRJCf]T`VLf\Rwk_u{ma}ocuyl`VlbXkbUVMCG?8<83/+*&!"#)#$#! &%! "!#""!&261;B%+2 �� "%  088%%#++*14    $%  ! "' #'267-32 #"#" ""***===%%%"""       84"   ��� �     52.*'#('#962;72KE>jcZh_Ug^T}tguq~nzl`kaWJA8F@9KGB%"&%!KGBVQH@:/;72HB=G?8WNDv³ɻȺzlrf\l`VnbXxl`~rɼʽ˾ȿwzm~qv~uhvm`vm`~tjtj`oe[i`V]TJ[TKUMFZRKmd[e[QkaW|pd~r}ocwnyvdZPtj`h_QbZMNI@=;30/+#""!#$ $!%-,%$!!,*$"%#)!)!$$%% &)-!%!"&!"!!  &%!!$52&42%!!/+'$!""  �     %#" #1/+(!(%       &$$   ���� #104IG0IE,( #!&+*���    �   �     2/+-*&%$ 1.*3/*C=6g`WjaWi`Vxkxzlj`VH?6:7/>;6! $"!<9585-72)?;6=72D>7QH?{reʼƵ˽Ƹķ˾yk_nbVk`Xh\Rk_Uvj^~rɼʽ̿}y|orszqdsj]wnawmtj`oe[e\RZQG^WNTLE`XQpg^i_Usg]ymusg|s~znd]RJlaYb\Omi^MND;?9-3.#)$#'"(1.(1.'$&%#! "   ,*)'!%#$ '#-)%"# "$$&# %+%)"')#02 " 34%:;*+%' '$*EA+%"7.;51+620/!10(()'"/-&$#72'=80,&?;+FB51/HD#63&$   !!! """"'%%"            �����������1,62���� ��         /,(/,(#"*'#,(#=70c\SjaWmdWznvl`VG<441,:73$%####!" .-),(#C>5?;6.(!<6/F?6e\R˽Ĵʺ¹ķöĻŻǽȼzltfZmaUdXNj_WeZRj^Tui_sȻ˾·{z~qvtypcri\xobyosi_mcYcZPXOEaZQTLEc[Tqh_lbXxlbznsqevrf\cXPkbYdbXmlb@D>BID1:7"+(!*'$+&%#'%))((!--%$$"'%*(!/,!41'%$!1-,)85!75)((%' !)(*75%#$52"83-(*&$51&96/,&$"('+--,.+)?:)@;61/)*D> 72!723.-)0,%;6%?9">8!?:3.?a[>81,0,)&  "$$#%%&$*($"!!!!!       �  � � ;4,&  � ��    �   13-('#,'&-('"'&"WSNc[Tid[|six{qTMD63+63+41,'&"340=?9FHB>:9&"!=85FB=YQJvlzķƹlbXd[R^VOZRKbXNg]Sh\Rxj^~r~ǽ;Ⱥ´ø}|u{~qypcvm`thtjth^l`V_TLZQHhaXUODsmbpg]kaW|pfpug~p||l`VaWMlcYreWulb?=5451&)'&-*!/)0)$"*( 1.)&$!'%&%#",*-*)$ %,$)@;4/825195<6 G?<5-'&"&#  %+*(&!2/ 1.!/- " $#%$$"*'+(2.3/)GB51&96.+%<8/*/*.+.,-,"$%%',- #"      !" &"%!&"->:!41,*&%  /,(% !$"'%&#+( 30?8+&! ! �    +(2-��+&>7 '!�  �  �   ����  13-,+'1,).)("$#IE@JB;TNGibY|rh~rvpf\?92)% +(#2/*$#0/+22,A?7?:7)% 84/D>9TMDwmcs{h^T_VMXPIUMFcYOi_Uj^T{matɿ;ɻĶź}~w}s{rexobuisisg]i]SaVNZQHe^UVPEztixoendZ{oepwirvk_Uj`VjaWyl^of\97/-.*$"%,%(31%#+)$52-*$!&#-+,)#63615-%<450*EA$F@+''B>5/F>3UN5LG$!   1.3/)%0+(& %$(&,(=8;5830,)<9#63$;7.*62.+3.,)-;:!++  ����-;9#<8%@<$96&404.3-/+*'!#"$ (&&$#" $"$"+'.+"  && $"��.)+QK 95���,HB ?8 � � � � �    ���  24.0/+61.3.+'$ (("HD?A92HE=]VMh_Uoe[qg]QJA+'""$!41-! 2/*52*JG??70.&80)H@9ZQHxobzxg]SZQHRJCPHAe[QkaWnbXqew;ʼƸȽ{x|~r}qeznb~uh|rhndZe[Q\SJ]TKh_U\SIvl|rhofY}qeozlyznmaWqg]jaWymh_U86.12.&)'+.,%"*$#1/(&"0..<:&74-*,(+'&#.+0+/'0((#62/*1-!<8?9 /'812-)%!#$"# #2.3,.UM<3!E?1-)&'%)' )&&42 OG0+&#-):4 5.82"52,B= 1.&*+! #$"!   �+)%#':7 72+%>64,4..*)' $!#! " �       !&.. (&!&&73�"C< 61!*' $+GA("�$83  ��   �  �  56232.;63941+(#,,&NKCKC<MGB\VObYPe\RbYP>81! 732 40+71*OJAjcZ[RIWNE`WNg]S|pdvh^TWNENF?LD=e[QlbXpdZsgy±ο˽ǹʿxx{~r~rf|pdwj|rhoe[e[QXOFbYPpg]e\RwmypcrfZympqwkwkamcYmcY}qVMC20(&'#!$"!&$&##/)402.'$" %#*'2.611.1.!832*&$51,))%+'8483 +$0OH+&'$!&$ &" ! & &G@<4JA#85&$  $52 730,,(IB@::6=8E>LD#RJ+TM-(��  '',10$# &%&.-1/%76'%"!/@=-LE-%;4$E>+FB+(102$&' �&$'%&%#"%% !"  7081/)D<D;6.#��1,4.�  � -'+&�   �   673540?;6?;6-+#'(KH@PHAPJEc[Te^UlcZaZQ:4/5100+(*$71*KD;NG>cZQumu|uj`VULCLD=LD=dZPmcYrf\uizò̾ǹuw}uvjsgyl}sindZdZPSLCc\Sulbpf\|o~rfzoatuwwkwmaWMrh^znJD9;;5).,'-,"!!*' .*82&D?3/-*+86%312/#:61.,)2-/' ,(,)622.3/1,+LE?[U%  "%##3.!83 61,'(G@$IA .," &,+'/.,*)&/,$!!,)1-:6*HC-QK@9�+#0*  !)'  -+#!((#1//,)& 2FA#72(73#*'!,*+/0  &# $' %.2!%  $! % (!6.A9 C8"sdk\@53,  #60 " "��  � �&!�    23/660GC>IF>20(&'JG?RIEXPIibYne[qh^]VM3/*!.*)#!!,)% #.+#-' ;3,SGA]RJrfZuz}|voe[WNENF?PHAdZPndZth^wk|ƵȺõuwwwksgwjyoeh_U^UKPI@]VMqh^ukas|nykt}}wk|s]QGwmc{o?:1260%.+'20&$.* ?96TO#:6%"-+-+0- 30&74+($+#-& 30&=9%>:1-50!@9'A;'$+B=,B=-)  (B<+'  ������  ($)ID!72 1.   &$FSQCQO '%""'33"-+/>:,(" ?ML#%%  *'%//))"#%%'' !(",3!! 1.  !� .'"OFOC+xj+vh\OG>@9;5& !)$� (95% -&2+!  01-<<6SPHTQI:9/./&PMEVMIaXOri`vmcvmcXQH1+$%"'$ #%#",*)! !+*&&"2,'E:6RG?nbXr|{{xsi_XOFOG@RJCf\Rpf\wkazn~ʹȺƸxzyxlsg~uhvlbe\RZQGID;XQHpg]~rfwurwuixo`TJ|rhzDB8+3,$2."30"52.C@1, &96/,""!# ,*'$ %,% )&1-2.5150!9PK /+# (% �  ��)% � � � #     �  )64(53#54!--" &$$ %$ $#&+*466;@?/99  $"+(# !303FC ## ""+* #/5CQW#'�%$  "   H? F=SHF=A9LCLA90<54,���  $  /(A: .'-)&"!  340DD>\YQZXN?>445+URJVMIbWOvlbxkyl[UJ1+$'"+&#'%$-., !+,*" 1,)D95RF@qe[~pz|yvrh^TKBKC<OG@g]Srh^xlb{oͼɻȺz||{ovjwjxndf]S[RHHC:YRIwmc|pzyy|rfrig[Q~tjlbX97-/703D@ 52!84*C?2,%$&$#1/-*%"6251 (%3.-&"%!0,1-/+ >9825LG%40' #%%)10$!$"" $#%#'85/=;" IB"@;,)"%@<.NI$96  ��  &%'%!!%#.;95;:'%$943")&'0-&.-$)(FHH-21-,,)*'($84-)+(<JH   '%$ &� %''10 "#!  5,915-!LC+ZQ:0 :1A8.'B<3.1--)�'%*$�' *"$&"=71,   ,+';84OKF_YR@;2@;2YSLURJ]WPulb{rdxobe_X+($*'#%!(&% $"!!)'&/-,,+'&#.)&5/*ZPImaWrdt}|yma[QGKA:OE>g]Sth\~pd~q~˾Ƹ~~vhwkxnwmculb[RIE?:^VO}sv|~zm_znbod\mbZFJ?4=3J[R+=6&"!)%.'# /,"30+(%"-*#<8)D@&!.)4/(B<$;61, !"$! $!��  "!$"$!40&?;)& !&%'&! *(%"$ '#813./*#LD 7..)$2.';6%$   $!94F?@8 B9=74.612-";72/(&%#%"!'%  #!%"'<9):7516150,($!" " " $#   "        /(:3/))"E=JAC;=5>80+!,(!<8!?:� #62 @;:3,#' �;5'"���     .+'A=8_YRE@7>90YSLVSKYSLri_zoari\a[T.+'/,(*&!+)(" #! '%$0.-)($'$ 2-*93.\RKpdZrd|u|}qebXNPF?VLEh^Tui]qes·ɻµykwkzpfndZkbXULCJD=XPIxnugznbtiai^VSQI2607A;&##  " &$$" $"(%'$*&)%$ %!#" %"+(.+'$!*(%$"  #"+)*& ($0,)%*(30-)*$1,/*<3(IB"D= UK=wl"MD;4D<%=;KPQGDF ((')*!%&"!'  +&=6)XP)XPF>"LE'IC,("!(& +(,)  !)(!)(-+&#%!*&1+2-2.41,) %-,          �� "(!$E> -& )$ $ ($.*#C>&!3.*'2.2+3) *! (" '"5/-*� &$ ,+'@=8_YRHC:C>5_ZQ[UN\TMulbzoajaTWQJ,)%,)%%!'%$!#! #! &$#+)('&")&"50-;50[QJth^ugyx}uij`VTKB\RKkaWymauiwĹʼŸzykymukai_Ug^TXOFTLE]TKxn³{msgvkcbYPE<8(% "&!   ����������������  &#!" "!! '%*(-//&+*&% 1.624/402.#1/4/,& 5. 6- D9C7 0( (""C<KB<qg$OF<4>6"869>?CBD<HH156 %& .-! %"0NI.TN 1+3.%85'%*'/+94=7'GB940,)')64!)(498,10'&#.,� ������  � "!!              �($(#.(700) &"1.�  &" #  ! %7- 1'1*501,� ! +*&DA<TQI>90HC:`[R[VM^VO}sitfg^QNHA,)%*'#!%#"!#! %#"!" #! &%!*'#61.:4/VLEvj`ykz{~vjndZULC\RKoe[~rf{o}ƻɻƹsxj{orh^lbXi`V^ULZSJi`WtȹôƷ~p{ovkc\SJMB>72/'*(  �� ���  #$",-+#('$## 51>951'#(%+' -()%)@;<4bUraQG>5LBPEQEJ?#UK"OF$$ *66!"8=>10+*,01)&1--) )$40!/--D@#C>61+'! �       ��              !72/( +$�,(30 � $! .$ 5* .& ,'62 "0.  &$$"!HE@TQI>90PI@b[Rd_V]UNwmzlh_RKE>2/+.-))&!)'&&$##! ! #"*'#61.;50TJCymc|n{|~ķykpf\WNEYOHrh^vjuȽɻǺqzl~roe[ndZg^T\SJ_VMqg]{˼ĵôv~rtkbULCOID10,  *(*('%(&'#.*'620,!50-(.)/).(4/ "�   ,*)&##  -&=64- !!! #JB O@92'LD92@9$F?5.2- $52  "" ���� #    ,),))&  $"!!                1,=6-% .&*&  ��(-,$! 3*6,3+.*+(%"  -+ FC>^[SJE<QK@b\Qnh]`VOyo{mf]PHB;32.0/+,)$'%$)'&&$#$"!%#"!"!(%!61.?94SIB{oe}o{z|µƹrul__VMYPGsi_xlyʿʼǺ|n|nskaWrh^h_U\SJbXNri\ȹ~}stkbQJA]YT02,"%$$! " "!" % )$)$0*4-<5"D=F<.[R(QI?7E<%JB!72!!2.$>8&HA&KC3, ,'!5,%J@!LCLBB9+##JB*UL?8$833/"/-%20*&-)!/-   ��)'(;88OK"95*&!  # (%&#   �         !'")"?7C;1-�   � +)/,&#($6..%4-/+ �  ! **  ;84a^VOJALF;f`UkeZf\U{qzlcZMC=621-+*&%%" *(')'&'%$,*)'%$%$ )&"61.@:5QG@{oeq}y{ȻȻŸ{|sfjaW\SJsi_zn}õ˽Ȼzl}o~rg]SukamdZaXOg]Sznb˻}x{ne\TMDqnf24.$# !%#%#'$)&*')&&"($%!,'0+60<5"G?!VLI? RH$\QWLOE70 '$%!1,3-:2"G?!B;71.)-(,&5.B:1&�#+SH$>84,%JB2,,KD<e]*LE4EA;6,)%";6)KE':7  "   �� *&,&A:@9;5*;8)'#"! (&    "0.'%           "*' �+#@8!  !�! �& ! .-'&    !740b_WTOFRLAwqfnh]kaZ}sxjaXKB<532.+*&$$#! +)('%$#! *('(&%" *)%+($50-?94ND=ymcry|̿Ȼ˾wjri__VMtj`|pǹ˽Ǻ|nssdZPwmcof\e\SneXymŶοɹ~zlg^UYRIupg() #!")&" " ,)!2/*' ! -)1,4.0)6/7/'LD.WOJ@QF*^T(D>#*'! -(-& 3+"IA$E>2,%2--;7%B9'ODC8E:+%D<D;$F?"KCNCMC=6&;8<74/2.62;6)& � &$ �  � " (&  40%GA>9 &"      ��       ���� $,+22.* &* ! +-�� �� ""41-) # 762]WPULB[RHtkazqgnfYxxo_TL<6/44.)($'$ '%$.,++($*'#*'#,*)"""$&&'&",)%73.:4/VMDrfZs̾´Ȼznvj`l_Wvj`wƶǺ̾ͼǺ¶rwig[Owk_ocYpdZxob~póŵȼƷzjxLF;b]Tlhc('#%#!%" !*'("#A< %! )&(%71;4>4"MBA9$F?B97od%GA(#$&##40&<7"G=NA)gWQBQ@@45/&! $ %VN)XOVGYJ!OC#F<A6H="E;'LBH;=5#D=&@:4+ 1'$G=2*     (%*$' *%1.1/:5@:%IC5/502.$"       �          ��.!1-0,�Cxj3ub�!!!#$ �'5{j"VL�!)$"(#%76+* !!� %! "  762]WPWNEcYOvlwmqj[zypaVN@:374/10,*'#-+*6511.**'#'$ *('+*&/,(:61<61WNErfZt̿ŷ̿s~rhvj`|pf|˽ͿɼĸxvhoaU~rfymcwkauióĴ˻ƺǸp~HB7XSJFF@"#,)(&$"'#&# !3.A9H>F>60 !$ %!*$#,&)! =4,&3.91.bX5/"('(#9/@50VJ(J?5_T#D="3/-*&"6/G=.dW RF!QEL@A6H=.\P,TI-LC?860'>992C;>7*% ('"! !"  !" (&-86 (' &%"!)&)% /+&# # /+ $ #          �%50;8-)>3/l^#JB+NJMA� F{K%ZM$"  � '% %",)� '$ !  !  41-b\Ud[RmcYuvypb|{oeYOG@742*;83-(%)($96263.,)$-*%873,*)'''*)%0-)<83>83XOFrfZu˾˺Ŵy}qvjsg{³ǹ̿Ȼ~qcreWvjvj~rf|oȹĵõȺ;uyIC8^YP/6/'#,)&74%63-) *1."3/ ?8%NFB9A:F?82'!# "  2*81&!'&>3NCB9<5D<#OH0+%$"(' &%$2."940OH:1#@7 /%>6!*')&3/(>9 <2/$&H>F:OBI>A5RE@5+;4=54.,=:%31'<973'$ !,*'%$"$"#!&31&$#!"/- (/,���              ��   93:7 !A;5091){iP@R>;*+' !  %"$!'$! � /, !  %$ c]Xsjatj`z||nsl]TOF=41)B>93/*,)%;83;72-)$-)$<95+)(#$"&%!-*&;72?94XOFrfZuµɿν˺yr|nǸƸͿʽķözm_uhZxj{oxlxĵô;ķʺпxͽtG@7^XQ292$"-*   ���  83D=:0!C<!83$511, *%WJODI@;4"@;.*&$#%%)) +( #3.F>C:G>$F<!C<" # )# :4E=1'#H>!OCA5>3.\P0`T4,0+3/,).+*''$-*  ! " #!"*)&$!*((-+" ������������ "-)-).++("              #:54-62 &HG856-93 ;24)#&#!',)'$!(%$!/,%" !"-)*&� OKFrjc{qg}zxvfZYPF:5,GA:?920-(?;6A>61.&1.&@=8,)%$"!$#+($;72@:5YPGqeYsöŸµŸv|˽ó˾ƹʽµ|oa{k^zmtt̼˼ʻµͽIJóͽ{reF?6b\U?A;## $"*(!,*  (%  ���� %!SEcSubrb \M[M oan`'C=+')++&((#!&"72Cic(ULND+cX 2* *!B8#@7 .$D9$C:;3I:%PC/TJ)TI1\Q-RJ"C<6.*/-#-)82:4.,)*(+)!-+-+%#! !'&$,+(&$#"! ��     '#2.2.%"        #$ (")><68AD%9:3-'& " #"6; 6;% # /+ %!*& $ )%:683$%# 41-f`Yxn|pdg]SG@7F@9KC<40+>;3F@9;5.<6/IE@1.*/,('&"-*&<83A;6YPGocWqķǺŸʽõǹöǹƸɼĶƹscp`qxʽ˹ɷĶξ_UKG@7f`Y33-" &%.)*%)@;2/ �7-E9PEYMQFH@ 95 !#)(,**3.0 '%$ 4/ A:$IA G?F>.[R@8+F=3aU8,:-*`S4+B:[K@4;0D8J>"C<8WP/ZQ*LB92$>8,')75,*$$(53!)'"30'$  " $##)( ('#      3/ 52(%     #%%    #   ('%5HO,2# -) #' &"**<EI-0'&* +%4.-',&B<?9+%3/'$  \YQyo{nymaWQFF?6SIB=:2C=6JE<@;2?92EB:(% (%!+*&/,(<83@:5XOFmaU|nöȻȻ´ƺȻ˾ɻŷ̾̿xhwg{ɻ°ĴóȻƷʹɺͽóTJ@TLE[UP,,& %#'%(&*&($"-':2C=+')'9/0(�  �� 3-"52 .,,( #'(;:<2<<'-($6YO3*=55.4-=6(JC#E;<1�,OA0bV 5*0QJJ<0\O0\O&XL)^Q?6)"%C>$bR!VI-RH !&")'0- '# )'!.,"  &#(%-)&;8%31 !)(! '$ ""''"/-+'%!$"� � � �&$              ��*&' @rNG� @Za+. 1&$"-ZJ\L0WO('*(    #2+"82 & 92A:4.?:�   WUMyshĶȶz{og^TG@7YPGF@9GA:OJAJC:FA8KE>*&!,)$-,(/,(:61>83VMDl`T{mķʽķĸɽǻƵɹ˽ȺŷƶǺ~n~nǴIJȸȷ˾ϾòwjXNDog`\VQ')#  '$"&"-(# !3-5/83+(#@70%@4'RI*A< (&&,'(-*-B?088ISSBZX,A9 /%"XKYKL@ E;,KB1(">8:/0%QC$[L%MAB64.?1PB4m^-cVL?#[PC=&$ L?&[M1p`ZLKA ?8!/-"'&BMK$"!/-(;8*'1-$=9 +&"=940"-:8*(&$,*!&$+98+**'")!)' ,)*'41(%$!    �         <6/MMG0\V3`]"%-(2+@mdCoh -''' �/**").YNC8 "310*%E@ &"  EE?tkb´±о̶oq`gWGfYK_UKND:ZQGWNENF?\VO;72.*%/*)+*&44.DA9UKAp`Tzmô˼óȻȻǷñ÷ô̾νͿʼ˾oξȸɹǵμ°Ƶ|{tgYRI<wpgRLE #% B<2-%!#-)!7293/),&"83 B5 XHO?!M@)KA/'&"$)'%"'$&" $)(NHI)<9.)4^WWL&aSTGK>-QEPAUXIJ=?3 L?*hXdR"XK)dV [M&UL D>9XU/UUEFVG%ZL#QE9/+E?0?;(-,DSU$21! "30@7 ($.?< 82=58475(57-69(%,'")&-C> 0(B9#C>+($-*" 4.D<;3#D=63  $�       �  69pLC2WSOHG@745-'RIKBGnf3/&D?A; 6.,#�&0zhvc J<'"$!:7A;1,*& 660cZQv²ѿоyivfYyi\l^RZL@cWKWMC^UK_XONG>?92-('-*&44.EB:\RHp`T|o|³ʻĴƹɼŵĴɻŴƶĴxȸɼϿͼʹIJwjq|vi[eYMi`WLE<#$ !"!3/ '#&!3,<54.,''"C8!YL!OBD8@69/""'#$20#0.)10%$689768$$84B;!SI'\O(ZN,ZN+hZ#SGA7+!6*(iZ)p`9p;qd'UH*:0&QFC;KE(MK3VL<2(MCB:70)%1-3HF&%#>:60 C8 VH+UN)11)(%:8/=<7>A()-=<@+-.#+*!/+,:8$,+&#.)"D> :4($'$#!1,0*�  � 3E>Sne!>5"94 1-#�  ���  �5:yI@60*TMC<!E?2.@77-)i]3qeKB92,&) NB*m^AJ1%$ ($ (#?; /+:4 -(%"   11+aZQx{yi\scszj}zwj{mag[Oj^T_UKMD;>5,/*'1.*882EC9f\Rzj^~qxǸóĴķʽȸ²ʽȺɽʺ²ȸ̾˼yjs~oufYKsg[ri`F?6" '$'$)%"#+&1+6/' 0*,'0,902UK + =2D9.XM:4!%##0.#//'33<HH@;=*,-%%!2/+(2-/@<BQM3A?<BA*,,4A?#GA9riaVK5p/p`'\N&[M"[L%`R8lb,WNB:D<=4G@=a[Fa^/.,66?9G=XL]N(s6kb(22'(,47;"#'*+//.2'(,"**.BC(44$$!--+@=51 !+&94*&)&)'$ 0,%40 #:]S7\R$F</)$?6!72  �     �;0-%)@;B:H= ?5'NF1RK40/($F?,QI 1'E9\L%q_6yjRVG 0+ ,)0-62<7?950)&   ,,&kd[}tj\Ptk^vo`ZSDg^Q}qgsjte\vg^\PFSF>SH@YPGI@7>4-2,'3/*<:2E@7j`V|p|ovŶĴĴ˾̿˻·ôǹοƷ~~{qjaXB:3" !.(/*  !/,3-3- -(!=7 %'>90+$ %.%9/!G;?39/0," �� (44!%&!" +33)424<;065&,+$00$65-*(EB/NK*SN'c['sh&nbj\4o={m'UIEh^Bd]9`X1WQ(QJ0\U1]W=9:RP7CC+.2UI\P?u>{VI SK+EE3BD!*-"$!-/2?A,."!&% .-1=?*/2"40<52+?;$D?62&#!)%"%#+''?73)* .$,ND� 6-0H@$83%!�      $>8%A;+JC ,%>6JA90 /'(&0+ %.(1(�$<- P?)_R 4)�(0$(!((77+'&KG3-#-*�     882|spe]ZOGqh^vpcb\O_VLaWM_RJH<6YMGB819/(A84SJFHB=93.2)%.+#=;3D?6ndZuhr³;²ƶŵƶɹóķµ˾ƹȸôrt÷ytmd<6/&#.%@8#D=1+%50QG(QI"<6#� +&'"1(>4 F:4`S8,.%  ����� ����� :6<7(#%$/-+) ))##"!-*(JIFDGA@:($!.,    8595+NJ'FC*B@+=<TF(`S&^Q8na8j`%VN 61*FF1CD./GYZ?QP*:9.::##''5@D:AD %(##)<950F>A8@;A<@<!?:62# "($*(% 4. ?6'F=2).F>-(#,'%!  61E>E>84'<94--% 3+60�"5,�%.(�  >7<3/j\ C6( /,$"�9595� �"KGB@81SLC{p|si_WJ\SIbYO_VMUJFg\XXOK;2.I@<QKFLFA3-(5-&1+$A?5IE:|pfqdrɺƶ˻ͽǻʾʾŶ{}qaTg`W## 0& 1);4(G@&G@5YS%_T?62, +'1,'" " :0B6@3B5*UJ.%$!   ���  �� $"51+(.<:,C?2,F?,VO?935'68"0/3185>:$>>  ''#"-+&$+)�  )#!=7?4�)3+B:JD*("$ WYY><<# )-.%*+&.. 1. %!C;F=@<@<<a]Jif&"'$"30!41%%$!-( -& -)!/)� ($$510-!('  ���D?TLOFF?B:%ZQ-i_UL;4 B;(IB3JE#! !.) :21)&% 3,�$�&$$+(30 $     MGB}we$"CA7vuk_ScYOicX][PUJBf[SbYPE<3QH?_VMYPG@90F<5;6-DB8PJ?~rspcvô˾ŵ̼ξ˻ƶȸŸķ̿Ʊpcui]HE=/0, 0'A7?7 )#� �%NF91;4;4#B; <6*%+&>77+L?E9)I>,QGH=/TL!917/6.(#��    &"->:,(    81 6-)TKE=8485!:6.NIG@;4#B?#$  !  & 3*1)E<=6!� HDCYTS "! $!+%#�"&.-%# ����! �� (%� �  (* EA(aY\S(aXNF 3, )#!F>A8 5..)"! 61+'/*+% +$)$! '%/-&# !0,�   �  ]TPNB0-0'/-#vmc}yi]\PD_[P``T]QEocWk_SYMAWK?mdV^UGNE7ULCD?6DB8PJ?wzj^obxɼ²ʺʺͼʺ|Ƚ̼ƶgWJy %# (B8>3/((## $!#2-0)<4=45- :4-)80$\OM@)K@-$2(.dWQE?3>46^S!I>#E;&!-' /'"OFG= =3#NED<;2%J@=2<18/�0'#802' 0& �� �� ���  0&A8$ #! =A< # %%&87     � &%$# ���� %#      "",)*A=2+;3#RI#GA71>8:45/ +&+'%!.($ # .' 4,I@ 5,1.6072$"�� � {ng\T/,(=72lb[xlb_SGpdXlcV_UKsi_qe[j^RcUI~nbreaQDc[T?6,QH;cWM|uve\sfyɹ̽ĴŴŷɹuzndh[S|md{pynǺ̿{||muo%#" >3&KA70.)(#&!30)%%"1- @;932,61,')$/+71D< )$ &.-1QLSJ"PD:/+UJJ>(VJ"E;  1,&$""%'3150!F<)PA933-4-:38-<1H<A5B8<3;4!83$3/ *%$.)�  � %#.*!84(%&%398!&$"#!! )&2.5/,&# !  ���     ���  �  �  �$#� &":34-! &"-(&!.)#>:&=9%"" -&=5A8 :1 � $ �  $xl`')&"=94QIB~~tocWnbVpgZsg[}qe{mawi]xh[{nzzmf[SLC6cXJwk_~um\Sqd~̽ɸĶpvj`cVNqbYwlzmŸ˾̵tf^RL'##$ !1+F:>2 4,3-*.'<994$;74/@:*LF70 & ,%4-3--(E=PELC'516EA<3'LB* 7.$F<B7?50'  )%*%)$2)/& /'5.2+ %(#$ 3.#94.)503.!2.)% $! �� ��  "*)3;:%#,%$!"! ��   � �     �   � (1.ELI<C@ � !" !!)% #�-( � +% +$3+92 � � /+ 292nlb% C?::2+{qg~tg[OfZNwjtfzyqd~n^oywki\Ni\L~nasjeTKpc|ʻʽ̻ʼο}mvj^g[Ql]T~qqɼǺɼпƹ{omj\SUI## &!#$" ,%#WM?6>5G>;4 !2.@994!-OI@: -&2+ 5-E<J>'F==3+]Q(VJ1)-% :.,KB,A9%' -$*MC*OE=3$ !"&"' "($ 4/ 61!;5=681!@9-'+%2-4/,''"  �� +)      %$&1/+'$)(  "#3. -&�� $! '$$00        �7C=,82'0-  !!-*.*.*+'/+B96. )"� -)   ")%,(  8@900*  !$#KHC4,%j`Vv_SGaUI}p{l\w}p`~n^svrayloceTKxkƶȹ˾ʹʼɺueocWk_Uk]Qt{Ĵ̻õɻɼrji`WYTK<910-%-*%"& "!%! $!,(0OH 5*/) .&91&@:3/*]U!A< -(>^Y1,3,%JB(WN*dYSDJ<"H<@4 F:, >29. ,"/(  ' #B9B7A64/  !  $!/, )$82825/%           �     #" !#" ($*"� $ -)# .*:LE<NG%70.' !3,� $91!2/ " $&  ��  � "4-+$�  � (&  " ($:5@:<6OE,[RF>$2+ #  (%73,(,)  (2,;B=475#%%$%!EB=.(!XOEg[OYMAmaUp`rs~q~qmb`OFwjȸ|~ĵóʹʼǸqaj^RqeYsfX{³ȸʹƵɹͿŸùYTKNKCHE@BB<540253/63"('#(':?>167&00/76#0.+'*&!'#.'' (1.&73-(!/-+10-86%E@%XP/+2.73'#1,0)F=J?"SE 9,=0*_Q*cT2eW*LA.%�')$$+(2,=5F>2-       # �   "    ���    "!    2-9XO"E;  '##1-'#".(@NH+;4-B97-Trg"B79[P'=8.G= $*D6<UGM^U 1F>)"FVO>LH  3+$91.) 4/2FA� *%,(-)4/4/:4;5+%E= 2*�!81E=*"� 5.�  -'94%#  *1.*2+5;6+0/ %$$!"==71+$F=3wk_XL@^RFk^Pvh\thug[k]QeWK\NBTE<[I>xgZ~n^nao^U^MD~qʺrvƶν˿ɺzhncUznbtfȻͿɸʹȸǹȵyof\96.=>:',+ 5;:#---,.;=3<?7<? %& ((#"     !*'41=951%>:*&'$0+60<4ND`O-UI1UIH9+dU/QF$?5:-;f]<5*& 1-#?9=6(JC#"�  ���   �����������(96"    ! #!?53&!-'%-%0(" ��+!1OD1SH+QE.VJ*K< ?0+H9-G:H^R 3* ' ( -%'"   ��� %94"83#=75,*I@!@7+KF)ID @;;60*& 714.,QI92/( B;B:1),$ +$ &"�$ -'� !&-0#% ',/ BB<:7/=4*w_SGi]Q_UK`VLaWMQF>G<4YNFXMEPD>XF?scWyi\wg[xg^l[Rwnzi}mɺvvk]sg}mʻȺʼпƴµź˻~b\Q&$/0."'&#()>@@'54'' �   $,+%#'%   +(�� '&1-0, "� 8291*WNgV,\P!C9#MB*OE( @6b1ZR.','0+5/ /( 2*,NG+77  ��   ��������� ���� /@=,?<   $&&   0("F:/'.%7.90+#.'+#!+%%.'/' =4 .#7,9-(P>4$�,'($';65+FaW#40�� "*$ %#� )$3.� 4+8.5)713-2,7161/*!A<501(>5@84,<5& & &!.*&$ ! 2+;5 " 52#).$# ""=?985-2)]QEh\Pg^U_VMaXO]SLLB;WMFUJFWLH^NHvg^}ocxi`piraXwȷno^|l\Ÿzl}oxŵµοIJʽĹȹöTOF&'#! %# �    �� ,)/+� #" 620-  !)%/*3/0JD93B:JA%WKTGK>H<!D:4*$I?MA"G?*$!722,-%7bYDme91 ;8!      �������       ��"0.  �� 3DA0-5;:  ���� %>4.%.PF?46,9TK #4,,KB%40/+� )!+F=)G<"@5(F;O}gAeW8RL � 7.#E:.65 3GB'>6+C;#;3$=3H= /%0' 7.*OEMAWI-^PE9I@;51-0+#A< '! 84;5.'0(91:2 3+3, ("*$0*,& '.+)'& ',+',++--.-)KE>;1'{maj]OgZLl`Ve[Qf\RcZP_VLdZPg[O_QE]QEwi]s{l|k|iZ~Ƴȸ|o`|iZĶȹʻpu̿ȺȺ̽Ȼ{;72  #"# 95:5,A>1-2.(%  #"!^T.C@�A6eY$B= $:582�7`XG> >4I?MD%XT$PJ\z5ZR�*!HAE@*JI713/,C?73'E@1UO3-4. � ($%(&+# +#"4-     &$$,+ +& $" 5/ (!<5,"� 8GC )/SENmd2.'& CAA � �� <5A{i>tc#OB6*8/,'   !  'DA &")$� $,%)%  !   2\QF; ;/ PDD7F9%[NL?"NA@54,2-84 -)+%-) +& 3,A9QGA8�) 7-#�%�,#;4-),*)'(&!&)':=;!!" ),*=:5A:1e[Q~rupeWpbVseYsg[maUfZNobTvfYo_RiYLyi\qϿ²wyhȹ²w}²̾ĴǶz0,' !! $! $)*(=:(((,($MF*$  -' 4-3+�-#OD&^S:nd0]T IA&_W5h`Hrk'RII@1[T6ZT41(dZCvn/UO.*#   ��     *82' +B:.(4-#81&G@):7)&/+0,1.'% '$!F>4-)HA2+D;,[RI@=bZ2G?.B=3/ +!"M@Aj[%B9+) +& �� +)&1/ � �� #;3Ik`3SH      ���  0.��%5.IWQ,&%# ��  90 C9 8,(`SK= @3$TH J?+SH8070'##  " % &";54.93=6 )"*$600( 7.A8#?9!&$,$$% !+.,#!!&+*BA=TNGh_Uypcyn`wl^sbUn^QvfYqdscscyjrpauf|ŵǷyƴŷȹɸͼt$!""    � "  ��� *($#�.&%aW ?6=691&_VWKSGNC$YL 9-822,�*\R>zo5wk1pf ]S3. %!1-2.2-*&*'&$ -+$20(96#94!=7!C<7/#B9'J@2ZOI@)RJEjb5TM5NJ*C?622PK'@<)@<)>;62(FA,RL9b[+ZR$YP;tk/f]D=71,*2GE+JGEpgBse<0.&$,+*=:-*?^W0RK+&)/.((22+:6%"1.� *30.<6�  � &2,    ��(*1?>*(%"! (*+:<*)#!     '!$F?C;%G@">82,B:=60*1,.+% :4 ("0,#1+8281/((!"G?9f](JC(<7! '%$%#"&'%&)'8;9053" 594LLFe`Wg_Ruj\}sbx~qqdo_xinp{{ɺ˽ǹŶ²ɺŷ|vk!(4.#!  *$*&  $!  73%#E?B:HA0/73$NGAxo&dX1mb=sf6fZBwm7lb<ti'cX2pd+g\'_T)]S$JD@:&JD#ICC=&HB%<8 ���  :4=6 IA,[R5, /(E=91 1)1,'$@MK*&1-$=9  )&)%<6<\W;560<5<5 F@=8 !/-"::/KK<6B8 ,!#$00:32nc&bW1RK%$+77113JE 72� �)$!'5/� �"/-(73 !6.!80":2      1?>*(/:7+'&*"'� ,) *& �1.%#%#'$3/,( .( +% .' ,%>770&3,2->8@9D<7-8.YN^R60+)('(&%(&!  11+^\RNH;WN@r~qareUyi\sf|lsű̶мɷ̼ͻ±º˽ŷȺlh] '#%3-065  " "'#"%#   %#!"" 4,!LCC;?5#@77/B:;2/ZQB: .':3!@960:47YS#C>'E@6KH %63  !3.0+ %!1,40 73 *(" 4/-('#&"9360*$<7/+)@<)@<402-0-'CC5OO4KG#%+&31!2.:1�  �## #1JF0JD71.JD)D;+#+$&  � .C;2*    $#2BA  -)Ujb>VN,G=-*0+'3KA(@6azp* .I@4^W!C=1.$")&!?:$JD,(50& .&7/0);46/ME >6 QI/XQ4UN9SM82"%(&%# "!$#"#,-)")-(372JPKRRLPNFMKAa]RrofXrfZcWKsg[{o˹ƵɽĶõ{jx̾Ƹ±WRI  &$'#&$ 30  $ -(3QL!*''".*  " %$1-0*933, & '#  %" � *;7! '%0EB0A> � "1-!50  +)  )73%!!0,#.+ &!%<7G?@8&KC0) '! <6>7H?#H@2.;XUOda&6/2D=,(<;*?7-$D[S    1/.EA3ID2-/KE>ZT !$43*)**#" ���      �:OL� -**%&>63NE$83$;3,E;;TJ#>4%@790;jb/XQ1-*;8/,��  ,%1&�+ 4*6/)$ 80 LE'IC+>;>A?YOOZJK7'(/'''*( %&",-)340/0,./+%&"12.34001-*('>=955/*( ?<4=70E?:JA=VMD]TKk_Urf{˼ɿƻwwkznbdZP`WJmaUĻĺϾq|l´ɻõ¸>90!   !'#!+'��4* ?5 .&*%"30*'+'�%#2-�!5/%J@>4#E> (" !+)$%.*%$ *(*'"52':7+& #:5(".'6RL.D? "+(.=9,','(# ! 61$>890@64_T!LA E;9\R 1'H='J@*QIB;:31(2*(EB<^^2*7bWx&C:#2.(?;!� !" "60;4>9/MH6YU8542   ��   &  8/ 80� #1/ � *%"@<52*(� ('+98('*) *)@93^S1\Q:0"-@=':7!�            $%#,**7550+-82+C;4JA8ZNDrdX{n`tgYobRTG?9/%MD7ul^jZMn\Qn^MusyrbUnaSXPC^SE|lƸý˿оszƸĶò,'   $!#  -#XJp_qa&fZ9d['PIC;1,&#"*)'% ?3A53)(G@:6,(/-0..*)&$#+-%(;4)aV95 %#$52�!41$52  #! +<8&"#?9F]X %#*(#"$ 0+93!B;=6.('C=;5!-'.&E:J>B76,4SJ(G>-MB!K@LB4h^I>7-2QN=\]@3*eVlJ5wX9oh(*%$ -'#IC&IENDOFHB51 �     ��,$9H@Je[4KC&73*75))  $!.,#!%$$$  � � $715.4-?4L?K?F;(WN !'+ D>'#  �       ��       "# ""!!!#$"()'/.*/.*++%%#ieZqbYm[TtdX}p|kvcViUJXOEcQFxt~kƹŸȷͻƼͼȷȷʺھ (%  � *!N@TBs^m[&H>!u]~h[O6.C6F5>2:0*&� +&,(>7C8:/B7A9)RJ=5'MG=8+'85"!  74.OK K>>4+""834/3->5<1!500,0,$ ('*("# ,:8&!!<3%D;(B<$83 -#)%84#LE$;3%'.+'5,D<*NH51=6-]Q"cS#]KSDQG2^W B<#/IC/ICWI8o`FyJ8k5n-l2|j3(&NC4,�+):7,^Z0RHF<OD B9NDQzs   ,3. � !*"'I?;2#1+#,)#7271$,)   %#'$ !�7^V'YOUG:xjG;�:, gW-pa0'/,65&HH:4%!                "!%$ *( nh]yǼvjl^RudWylrobTI=1f]ShXL}ruĶǾƵ˺пŻµȹϿkeZ *'  NA' %G=PAXJ8- ?3</HA9a_'AA.A>7SM60(&!"61,'4/*>9'=89/'RG>30&'# .* ':7'$*)!"! '<: #!$F<*D>!50&96%?9:3%H>5+5+@9)RK,KD!C9J>H@8ZY=8$F@-SM5/Rqj&C:8\PA46b\7LMP[_//C;A693.,!@7<2(OG>8>8 G?-eX]N!\MH;%TK3,�>7.XM$ZMB4HsdNsD5,!Ei]3XN-)� !!1. %&��-(,LG2TN 5.v1:7 /'  $($0(#E;=6� &1.$! "*'0,&#$"" J@5,'PH'LD=\S *!%=55-G<*k\K=DUQ&319YX'GF$B="52#"     ��      !    mdZw˾{n^~k^ɷ}xg`QF@3wj\n^N{{q`Ϳ¶ɻȷ˻̻ǺϿŶGB9".>=  @70* "0,%" #&$%(^rw021NKD?&58%31*?<3-�<5 /%<1;00KB0'-GA0LF,&"!!%% !$%++-*#! 2GD3,D:'LB/RH(UL;jb!GA)TK0i`F|cCd]>ha.]Z GEDZX2-*QBJna5egMmsAD,`Y94&42 EA$NC+PH<5-'%F?6_WQG"]O1o_3i\,WN>]V0D? ,&>4(%#80#6-#E:$BUL*G>$B= � /-32#,/ ��%' +>;'LD5+(?7#@4 � �    -'0PK&#,*(% $"($&#%"&#$!+(" $F? +$@9!D: /%-";0<0:0ND�>0UG'HA72D> 96                 $#   ujb~zfyjѿv_RDVJ>xgq_ų{gUl^L±̼Ⱥ$"  0/ � � $-*# 500,5536:SU"!5112# #:6.LG'LDE= K@.YNL@+cV!QE<5/),&+%+&+& %#!!  )(+'.JD'D;)*LE;a[83?9:ngT)"@<%FI>U]%-1&`{CdgMqwHjp)RT/_Y *#!@93h_!]R/^U A:�<5F=!SIBtjH~q3i\>5?7)H?4+;2�-(%0- 0SI?ZQ8.4_T ,"<8 +' 63(MK/0:9!=>#/JN,-$!C;</!G;7&>3� && � ��  30#"'%!--+(-**(.++(+('%92(!/'+XOQDE7VF k[OEMC(OG>7H?5aZ!D@A?               "!        d\Uɵ|o˺|gXwaUbLA|f[q]}Ďxfo\ǵ±ú~LC9nh]{wlVRGzq   $#  &"(## 3RO662@? $# 30(57,)3/!?:B:KB%WK#UI'XJYN8.I>6,&H>2TJ:1 *! &?;+'.*,=:+)    0-,()84%=5>8/RNA\Y71HxrVb"KD1PQBYa`p5KW#@D!C<&J<2WU"(- (/5WV4cZ,bUMx'VM*LF&:5�� $!�/&SIUJ$\OAqe0VJKk`;YN&SJ=6#LD"MD4.8/=3� ,)"Bol!IG;TV-UTCC#ALBiq$?C(& ,%4XL-QEM<3)!   #!-JG)' $"31" JA$WOE>7/)".((#�70�!F>�       �                      +($ibYǵʼνo`|fZ}g\q~qwg|yujfdYgbYe^U961! JGB882')#(,&=D=IG?#(&$$! "30,(" ""'$/,*((&401762VP ,% F=1]W0,2ZO:/:6Vvu*B@*(-) .'MATG!XI-bT#JB<c[B8G<.VK!C9&>6,<5'700KB,QG0XMA7<WN.%*I@2-%"$$/;;&65! &JD0^X0]Z7ZV.TN-`X+^ZZM~v-TR?]bDcl,V]%UV'XPG<I>)%854`ZA`Y ;25.# H@;e^Bg_=^W/(4,F?E>Gxp<ul.o`P@4k\%TD<-$H<:VP>e]>]V8RL,QI9[Q6.4)!##)(6FE** 76/326Z{e '#�� .#���   )><30&%%<8510-0-  "#  $#� �  %$�*$1,'"0)�     �                      PJ?IJı¯ĭwgZh[M~rf}t(& CB8a\Srmd}AI> ,,&   "$$"!"!#0.%#-32'35!02->;/+$20&% 3.8d^-PL:]Y3[V)FC+NJ(qgRJ+tj"NG?^U/LC-*!;8$<:&;88TND9UHN?TE%ZP2]T =4*?73+#A6#G;&NB1F="D9,XK%QD=1-MB*NB@30MD2JB(#�742/2.&OJ+]YLI 0,:3A5?8>= B8 /)+RPBlk1]\*YV QI+`S)gW2aX(VP@:*&! '',=@ 50%NF&OGE=H@.cZ.of@|t?|rPB ?1(UE.YJ9fV'XH#3,)F=>TO#*" 0& -"F6$C:)&/+ ,->>9OT6<Nol+6&0+,D<)%��.:4  !))20*(,97$/-!6384>TO-B?*',)+'1-+'"!    � �� �/*                         ;6-sìǴκijʻd_PEE7=@1!%"6EAALI275<@;9C= &$$+ !$ " ! " "" 64.)62+@>HC1tk$`X3ld*WT<;(EB'/.40?=$*=9*B@.+3.A6.cV9te3n_!PG0[R+UJG<J?I<)TG(PD-!+OA7fV-\LA2:,'PA'[J)K@ )� (#NqmLupKto)QL0USEqp3[Z(@>3+avtd}sG<!LC&HA(G@.VK-_S-XI=^W(44., 93(MK!5:6<$ +%5VO"A::\U8kc9~t>{-lb/dW5[O5'>.)ZJ*hV*XK+MC=2:c[)#:13YM1K>"H<RD<5 )$$%+7;3Y],UX:cyEq6B (�-*'% �/* �&4.5H?4F?3A? '#! '".(1+&?; &"1-50&FA&FA40-*� %% �                        #&"!:95vqn{ŷ³ceYX`U"/'  (% #  ($504. %###&&�   !+)-, 0-0-0,5PM =:$C@1.#@=%$('0-HC@<<9";7'B>"D=$ODOA(YK/^U/ZQ0XM1\Q4fZ/aW;c^/NK-TRA68dS+XH7c\6]_Ghk0LL6UX/LQ18!9?!$xɽ  !904- 2HF/WU"NM23(*#69&:;� -EC#",58ULCvnQ)nc;s(ZNG8 P>#/*&=5@5%@6,$ , ?95haIB:6@B>D:Va;Ue)JZ>ht,RW,AC)(.(*" �-(    ,361/*B@*&(?;"830FA 5-4IA5/71'%#" � ##                    "#"#)./#++�'& �%%)03 +) $52.+):6)&  %&(&=;378/   "#:6 52$!%")&/,407350!:6.*.++*    $00(( ""$$!!$#100.%$�  1,60=82-73)(�0,.PJ$?; "94,*$!*$3)<2=6)PH+#@5JA>5>:,)')2/E]Q*C98QUQejPde)DH3KQ5;DZ`!$U]\z"   '"/)� &$62/->=.1() *(4LJ))�+.(79!@AFEIsr'VS!^T(dY1aU8m_"@5*"#� !,* )$,]U0ld.jd-aa04 GO'NW+QV7X[+EE*JE 90:j^>3(G>,B= "0-&#0-% $"<67.60)#+&    �                     !++#++!)) !%%''""(22!++ "%13#02,.�%$  �    &$-,()/+)% "*' 30)&($ '#724/62,)!$$$$  #" ! .,31"! !83 )#6.B:C;4/'85%0. *%%ICB< $ +(",('51'#/*/)0*2,;5:3@9,NG4YQ;5940HFDTZ&89,(,)(*BRXl3FI16;MT!3:4FM 144<;ɽ|"'%$"   3@>'GB8463.-*)6FERgh=VX)BF #(�5:8<#AF(IL@?><!97=~nUFB5:/:0*"/,%(-)A9$`UbUdY;tl86670a_53/,4/#JBD< :1 UK5RI!)&+=<$# $"   )% '#61(" 61!(%(30.+:6        �                 " *(1?>**%%""$'"),&)$&%' �   '(   -+2/-)*&,(0-41 "*&40<7 '#%<8    %% �   !  ! #"/--+/- #10.'&=6#E>92#&=8+&-%0WO0QJ!" $!)$!.%60/(6/5/ 0*1+,PJ6083'GB4TO,LG'GB2-:]`>``.NM68#8:1GL(AE.4"06#+4DKGVY#.,ȓ "+$'#%$%#$;79WR83  $# 0/6KL=YZ3PU:?*1 (189<Z8Y\QuuL{y=nf=tcV2dX2ZO'RI?7/+2*,TI4oa-rc]N3h[.UM4-SH!F<7.?4 0&';6�3*-%61 #3JE/E@(95[jb $  6KHMd`#97 /+$ � $ '84,'4- .' �                          � � �    **&(    )"92*&/+1-+(/,%"/+2.20/-&96   %%$$ #//%$"!&%'& $",*200-2/41(& 53601PI!;5/*0*!C<A95.:3 :4� ��!&!.%,# (! ,%92D=5/.+5/93+MG=8�/MH@:!E?FEGuvNwzi8NS9LQ#9?),!-3,7?2@F)8:(30ʽ '#' ! � 2NH 73 # Njk8UY7TY3RS!8:99"JHOzw7586KGGmrM}~:a_#1/ '"E6'N? 2+�'LB<j^&VJ,^R*aRTE%[J%K?(PDRE'VM&<7  7TK4SJ#C8;0+F<>YOA\R9RH0I?Ne]3JB&:5"30&74(' #61 '!4.+B=-(#       !         �    � � ",, ))  "$ +)''� " '1& ",)%"'$-*+((&31/.       �   &43)($#! &$20!97!84A=;8 " 30)'!411.62;5&PI9PL$!  $"'$.*+$' &!/)3,!<8)&1.%":7/-2.%IC.YP62(OQXf2DK&-*29IS]8IL"06 .4"((57096z{rŸº*(' +).)$� ���   <69UO4/% 3- ;7=YY>UW;OT2^X,`YD<;]W4TO:53\W#BA$1&$AE-UPND!VH *:1':32,� �#K?;cW7+�((`UM|Rv>74KF2*Kja1YM:+.RD+N@8*<.B6!C85,� $� �  1.8TN$@:)@;"3/$     �� '$        ��    � � %32#10"0/"0.1?=(96� "" ''!--$#�  -*-*  '$2/1.'$/,20-+(' #!  &&  ! *) '&&% ('/-)&=9$EA ;8!#()42 '$-*'B>"=951'$%"0-)&  (& !".*-( '!/*(&1. ,*)>?:LK42%G@/\S0(&'AhpgH`f'5;-:B9IU133FK<LR#)$13(%QRH&"!"!2-,$# -( �%"8TN"A:.MD90A7:32.+=<!!10Ytpj"94� -`Y.hcW>$MO#972RM91G?�(3+82 +&%# )%=34,=7LvoIA3*5-6.6,N}mM}k0]JHn\Fm].XG;/7+!C9%B9#>5-(%  �"*%822+9/    �  %"          � ��  ���  �  %$*',) ,(->:%<7'$)'   �#$*, ,)0-+(&#-*4174)' &#%#      """,,!!"!('$##"('!64&$!!$$ 0.-*7442.-#&+--- 20#HD1NK� !32.-! &%+*('+55� 0+/( .'5.0+ $$"!"67#24 -/+=<3TME<0E< -,IPDrz[UrvHej`)BD2FK':?,<B"/1# 0/%ù<76 &%#� 0(!IXTJOM� %>4)LBFkaA74. $()-*"21#41`{wFhb30 //1ee@`_-GG<[X;ga8[W,8: %8;(&� -/  5/>8 86$'� +%5^V%D;8/+A1Q?I64^L0ZH(UD(KA<^T4VL&E<$A87.60%<7&A=!63   4,3*  �    �  �   � �     �  � !*<=! *'%"-B?&<7/0$+.!&'�  "  ! 61 &"&$30>;(64"� &#   &$"  '$$!,)2/ 73 �   ,+3/ *75.*&"� +&+)�  *'+( .,   (%.+)&&" 1+-LE,KD6_X5e_-`\0^_3SXXq{Kco/JX6QU.DI#25&..'+&JNHZQH%+)*84:3 #>TO>7%A;!83-%.I@'B80&/D<2-/+'HD:NI� 3B>\sn1QL -("#"93-FB20()-BDB_c8^b?B=8# �)(  �,(0)�'!&IE,RL("A9G<?4.OH/+($ &73*KD.YNJ?2( '$0+0D?)$"#)% �  � �    � �  ���   � � ��   ��   .-)(�"!!413FC#85$67#% $#  ,+&%  �$'"4..*(% � +)�� � *'"     $"  � � � ����  �""�%"%94)$ )75 52.+,)&$" "   (&%!0,(#+&-(("� % 700c[,e]#YT>gi>^c4TZIhq784KM!34 %""*$yᐅ}%(% *$#.+  ,#"J?Hj`Joe#F<(E<3)1OD/'8IE.+1NK.MF1SL'LD(JC1LH(;8  %85���� /16SW/TP)WQ5kd$RL74))$21 �+(1+4-" ,&;6"30'# 3+!SGOB<30+'# ����"+;4 0)&"(96$51�  �   "+'+')%,(%"  ��    �� ��  �     �    ! #54 21!32*,-,%54 " &%##"# 0- 4/*% &" 73?VR/DA! "!**  *'!2/!"  %$"!&%(&.+/,)&      # "('+*  ))    1.62#63$!%"%" 733/ "# )& � ��� '"50&!.)4/(?:0+6/E=D<2c[W{Eed<XYB[]:TT12  &$,(#DI@ȿPPJ  #811* 72$?6,TI3NE"7.Eod\tlMbZǾ6QH%"$"1. )&   $# �     ����83(MI!JE*^W'bZNG  %".LG<4@7B9!NEB; +&;5*";2%RID<:5*&#*' � #41 )$ >962 736IF#!         !(&1/1.*'! �� ���   �� �� ��� ++� �  �  !#"&89 !&' '&,*(&/EC&22�#!%"� .)'$.* "53!32%$ %"-*&#  !+*.- ! $#*)*)402/)&"    23'<= .::#-- #//:HG)'.,64%:7(%30/HD*& !# )&.+  %!� 4/,B=%<7&!50 .($=6 ,%(!/IC!*'$! !&$%"$!"mpg༺)*( !6.(D>/IC-(8]SJ=@fZb{qtA7,3.Ka\.D?,431GE"'%@GD%" .+!  ���   ��! ?;A:JCJCMG�.($5/B:"^S#cWSGNB K?XLQF=4%&!/*.) #� &:5AYQ3NE) 2-� � 1,/*"=951)&    &$(& � ������  ��  ��  �"0/%$�  �   � '#0-# $#(:;-.  .,2/.,  � %#�� !*%3.!0-,(0-31 /00-2/%" "&#!'%*)! &%$#" #     %&!99/-$# � )((')(-?>&;9 $"74*'# "5241$?;72 # 52! %$&&  !'$  2-1,+%-&)! (2)7. %"%""!$#0'<=; ,'2*@:<6!E<:zn?ocE{n(@8 .+$20[qob]+JC'84   ! � ��53:783KDWO1+ 6/�,$JAMCOCL@ODVJ<1&OG3MG*&*&3.5071#@7';2(C:3D@&$*/. #+* �         � '&!   &$ ��  &$�� �    � )(&%      +:6  &65$&')*+ /-2031 �  �%"2/"83 ! %$1.2/%#!"./44 #!   %$  ! #""!)%+'!  &$$%01---+ �  # � +((''&421. # *'";7-)0,(%))('&% 21$650/  �� � !( $;30H@2) C9;1&#��� !32)#-E;s{t%(&%31*& !7/&YQB;>7C|sZEga8g_}d{sWfb(&Jkg!B>�>~r 7. #@OK�5FC6<;��� ��   ���� *'52(C@-))&41401-&LFHA91/(' -'#E? B<941+"94Be[>]T-%  �  '42*;8(%!�4EB &%&$   �"!     �.+-*!�    �'&)'  &" !/-*) .=?-/*:9/-&'&%.- � -(% *'9552$##%-. )),(+(*'    #"#"  ! #"$#.*2/&#  &# 73 ! 5623"21 �  !)$*')&)&&;86NL-+$"� /FB2.$!)(%#+).,"75"75#%!%! �  '#-%�  3+ #-( $+(!����%)/*;2*$ (65/-3.-(3WQB]Y.,MGMA{vWY~dm2MJ>:VNGx<7!@9)C=Xieftp    �  �����&87'&��&&/-75&$'( ",*2.:6&"83,(@:/QK.NI!# '@WO%70 �  "� � ,%%F?#D=-IC60�&$,* #! #" � �    � ,)1,)%���� ��  �  21/-"!&%'84 ! !/-�  $43#32+;: #0.'11"..%$&'#%#%,*#54,*  �*'=9952/!-/#&#%**"95 "   ! $#  " %$ (% (% ($/*)*#$    ! ,'1,3.(%# 2.42+)  *;8*?<)%41&# " %#!<9(C@1/ 1/!326/:44.-(+' .*$! ���� � # "+(  ��   # 81 /-*(93IA.)(65@?"WT?qoME{=A{Fni=mg/~s&mc&HB 4,$QHDqh3TM0><%*)$#�� � � ))-;:.--,)%;;"%   ! $"1,>36/*& "+>;%;60H@8ME/&6,4bV(VJ80&>< 0/&<7+B=.HB">8)#/*-) %%"")'   ""!!�)'$#�  � $52'%-*)&���� � ��� 1/1.#!)'%" ,*� %#+) -*)HG!:< 49"&C:1HD4FG+:=.1!#  "'98"" " !A<&C@+++,-.$%)(&#*(    # !$!"��      !  !  ! "! *D>.)#:6/+(?;+) 30  "&?;'A;+&(#&!&!3/$=9#97()4411">>44&'   ���  ��  ��  $ ,'"2. !2-"61,)/,3/0+@lf,`Y2}utúZ`ZSL$p]Q3'#NA 8/%OHSpm(22 � �!  .C@2ID"83 1.!(*'53&",("($'$"  #&*�� � �-$6[Q%UIF=6PJ#!##'& #"+*('$# ! &$   �� �  !31 �  &#'$"30�� �� � *( +),*!  /, !�  &$"=:&BB,CE',(!+&6353@@5TS+),*60:7)''&&$(C?5.0)-( $! "#)*()&'(')&&&"!! %$ "#!# )% &"      !!**"! ("(B<*% "1-!63%:7 #41)&'$2.61'" !'"'"*&0--,10!678887+GG%==#562BA)98('/.#78))A@(JI0/123RS==%=='<=*?=.+0-! &(� (& 2,;5*&50*(!:6;51,30;7:ng;x:mi9tpdm4{D?&~po^/zl$cY QI@a]40'$�#"$$ $#$&#"""611," !*-!#� $3/"1-%3/    %(�)(*A=>]V��/QG,NG' ,)�   ! /.�     #!75'% �  � "/,"  ��  � � "7520 #!*'+) #!!.,"<< 57 #0,#--#$ !A@1-!E?:ZU-+�&87*@> )$%F?-NG/+)' &'!34*)"!+(  ! $# $#'$$" 6262     " #!  2,%>:)%2.)& #")'*'(%*&61+&)%  '62%"1.+*%$3HF"::"DD10//01(),+"21'&37@CCDIJEH;>JM=@#BA=<!== (%+( ''--))!# #!�&%XPC; !%" -)=7A=*:9,+$FEN1toN1xu1ZE~{P+xp&{6=|Csm6OK#! � " � +=<&%  !$  %% +86<JH /++' &-0� )'=8-OH@9,HB3.           "# ::-*:7"86*( " �    0-0-.+� �      )("21  $" ., &$ %# 42  2.2QP.FF+-+,1.2,"KC (22)(/*4/31*()'&87-, $#   #$"#!")&+("52        � (%#:6 +@=.+$! $"" ,)+(2.50)$($  2/1./,$#42*'"@A5511./#%  #389=AD!GIBF)IN&DI;:7632-, ,+=<557702+034183(YQ=uj91)(1/ 86'98/6929<.CDKpn*wpEA1|ah/roYE@1}!h^$YP0UM$>8�+@=5MK!97)><*:9,+,+"!0-�((@LL+) #$!(30# -+++!/.%:8)B>;4&ME2-  ��� �  $" !*( ##=<%DA,) !+)*(� ��  '&0/,+�      � ##  &#$! #1/++'42!0, 861/')/01HJ,JK>=762/&96! 1;;$21%" ('+*'% ! %$"$ $%./'(   &$      '$-*$!'$%"+( #62/JF-+20#!&%(%&#!/=;&$0--*%<8.) # *',)0-$!-D@1LH$<<'<=4FG3CB*)  ((+-&'(())&(-0((//6633((11 &&++*- )(&(#>8$OF OB 21)76+33*44'(**,,77(PNTPN&{;0EZSTXO-d['VM4_V&QF&#-B?":80.,*('*''$3FC&!*%0- 1.,) ,*  &#(%/,#85/.%$�,+)&-%0,$'"$      -)/,(&/-"2/*' �%$�  � �  �     $&       "+' '#/-$#13 "+-+,  $#'76.-3.*B@�,*+( (#4-2,&89 (& �,*1/ 45#10"! )( 21+*   �      !)&/, 21$!'<9*?<+(0,%C>*)"21-,!/-)')''$%"";7/*% %!)&+(3DA@QN"-))(+**''$  .+*%$ -*'# ;7)@<0/(%,*!6401+,&%%$)&-+%$ (&,)Epg-maZPC=+(64/,-**+!$10)c^sk;P61JE86so:44MI 1./+2-0C@2/!('  "/,"0D?2/(%*'�      %")&+* '%"  ! %)   �� " (&!<9-* !   �� � �    &(*,�  � %"0-%#� '" %!)%%$)++, !$+:<!==+ML=831 "  %"/* & ,&-.$%(&/+4042-.+,*)"!'&&%!    $"  ""  -(#94+((&+'*&)$'>9#=7-'� ,:9&%! &# $" )% 955/+& %20"&" �'%*'%94 61&=8+E? :43,0* ,'3/&"$!($&#! #"#"#!&"# #" !D;#B;#eZ2i`5_X(JD*'&$*87;CC40SL$sj/|@BB?*4-RI'QJ$;7%#)&$!*(  ''   � �  &"*&   "*)  $!0-"  +.'7=!  � �� �  !"0.�  !!   ����   �$02    %#,) 1.    1+ '#)%$#"% "%& JffBa`�  0/%%3?? '#!"'(62'#� --   '$%"  �    ## "(#"83-C>&#"! %!2-+& .-$#  0-" %"%>:!<81+ #  � $!($.*% &!<3@69/B8D<(?:  # $"!" �  " )!=5�!(%%<8+B>9595 NH1,%<8xsHC\47{zEX@I|B<)'('� &&�  '$�  �   +)0><$20! -/#(   !++(( &%'%  �    !"!#"!  �  � �  !"./') #"&#'$ !  $%�,)1-52'% !-/0AD12'IIj "-/23775KI!  &")%%"$$'(44#       �    &#$"#1/"0.$"  *& !63+(    # )$-(0+)C=/**% #*"1(3*-?8!/-'%## $!#!&".)90(96,*  +(#.+'$&"'#(#.)    %/)' %9.=3 >7� J\U?^UH;3(,TI*!OUPm?7DRUK.+%#3/-( !!     2* 2+  �  $#-41#(&-) ".)(&!#"     #   �     � !!'&    �  *($$  +*&57./ $"#! ))!!    .-)'*(,(($'( 66 "$5QR23'AA65&FE41531FD0,1- !�           %",)     %" .+$!    +)'"-(.)1+2+2, +'$51&.&!6.+'$# #"-,*' -)'=8+"+'# "&"   +&$#.)(" !&=9!,52:-� 3+:1g}ҵhEwuLH.qj4pj&$))*($#$#&#      !*"  )& "  !,-�%%!&'$$!-- $&%' 2@<'$!&24+*+*&87#86 521.   #!  ! #! �(& � %$@:1. !*87,9;%'!*,�  !   #! +* #!503-1+ � $!53 56C__ 20 ::441.  #!$65 $"  $"+)#"$!"+'� �        (%�   '# 1.0-.+ !., +) " +)%#!/+50+%<5#B;50,(!., ):6 1-" $# ,>=2EB*'�  %)!*")=8($� �  � �  ! .*-)0-/=;.;9�%OH:6�� ""/.,DB'11 ,&%TK ?5+#-(2=;iuu~(@> LF5c],*&651/ " !#$##'&:6&"�  �  &(( *�'!  � *A=/+,$%;9   # !*-� �   &* ! (' -+*'1-40    �  � ��  � �%<44VO!@9�� �  (87&%4/,)-,&( *+.,*(&$>;60&JD% ! %"62=8-QK(NHB<%$ ('('  )* !"74,)*( %"0-     �     (% �   " &$$"#!%##! !(##72$:51+@9;5&!  %$%%  !  )% 1-+?:";1":2 5-'#        !# 'B>8d] #;FC$ '"&31(96(&;DGFTS=7F= A:50,&($,*G\YUys *&-+741XV4a^!10/.*?=-+ #)&-**' .-� *%(30D3�B3 � IB�9/PydPvd>3 >VL.L?" $/-$/-" 2/($#32*) -*&#0-62  �   &$    +( � � *%"947RI)#� �&#(%+@=2JH '$+B>2/'&! "$-,&$'(&%    *(!97 @; /)2,'$.*"30 .,2.3+=4I@�,+"43  $$%&,,"A>$!   �     !  +''%"  �!'% '%-(3-%A;0LF+A<���  �� � � '4,)!          '"D9-QEH{mM>J<'\OWLKC� %#' ?7?86/@:(IB.PI)B>2@>#10%#75H{($.+#"!/-%#&74-*&" /%9+5%�� 0#Mj[,XGI6 D3a<2/QJ1[T0_I�0pRwgAaP-K>� 3*$1/$# *;>!! &$ �      !  � � 0-+<91.+A<61� �  '<9<SO":8#  (&%! ,(0,$!��� &";7$!,( )#60:4#  '# WNdRx502/;8/,� &'++" *'1.,)           � '%!"  $$%%  )')'".+*'5/60 & ,%" "  �    #!   ! �   ($$*)+) "'#%:7'$# 6-� <,$_K:gW:h[REI@FA61% ">8D< 5-0+404.#,'(!" )RMHvp 4/961/&74!2/,)*'+'7*ct=eSEo]A.>-ZqPue G72^MWt9-0'Oc^Tx`m~=mU^yp6^L)O=Go]Nsc6&E^T�  ##''!  �     �      � � �  �� -(1-/+-D@)>;      *)(%71 6/:3B<D>95-* )&!�#!(&  )#4-<5*&*@># 50H@RH 3+ +%.NI *'(& '( $$82 /)!*(  !   �� !   ! $"'%   " #.,#! &## !+(*$6070#E>:3;4/* '#&$  $"$/-,**'*($" #  &#  %".( <670.'93$C<3,;493"2+G: M:.]MG:PCB90,�' <3;4 ,%B:-(""%" " )'84*RM#LG3\W9b[2- 95/,&#"83,E;IfW@bQƴR~m;+G6�/]yFtaJ9:eV -" (-ZQ+YMB3,=0:0�!!FB2(.PE=_T3SH!>5%" #!$1/ +)  )$          +).)500KG.IE %!�     �  %"*'  $""30.GC�"B:<5 '!*(42)DA<7;5 1+1*� 40 73)(   "# 1++%!#!   �              � � ! *'+'60">8!B;/TL-VN3ZR"C<�$;3 4/    -*-)$206IF30#!$"'%" %"%"!    '!;4/VNA~p NB;1)H?9. 9-B7$F<-0&$C:"TH >3 ,)'%,'H?'_TJA,)#"#!)42+ID " #%$%"64.QMJC G?XN4e]$D?.+ ##'#/F>)"6'6(<dXJsd#cP,j {a%oW-QC/$/6 35$RL7.7/ #+<BO %#)&�>4;]RSsh 8. %62.) !�� �   $" '#! �  � ,()JC82  �   � � � �� �  #!##63-+� #'01;8,'?:<;./74,*   &" .' ##" ���     �  &$    �    '$3.!50 #"=4!PG#PG.PI'"!2/ /,  &$*&*95)'(&#"    ($/&#H>/YN.XMEw"WJL>@wh8wg4sc7zk,tg^OD9YKTFB3 TDI= M>D=XP;%VN;54:9&7.H=I@ )#$ #+*1-$PI1f]91&OH4/&966A? � + ;)� :bVG78o`RuN:\FGB)&:0UB R<B6:EB$,+*&70:0:aRGkZz5^B#.!!2)$    "'�  � %#1/   3/ %!!!   �     %##!  !,)'62'%  �   *#,(�  # ,+//31 /, 9NO$@@ 1-2.:3 # � �        " $!        # +(     -HE6WP!C<6WP93 &#,(B<  � %#� #!'%   !     #72&PEFs@w9vk7ym@wFu>oG6yjB6,dW1vg tbdU6yj iYD88SJ?9"F@QH&OHG>82J@A85.% &# 4/!0-+'%#($ 6/+ZR?8 /)1OJ*EA?86/*&)&&# 1-*E<Xqg:-?/,! =1Lwh2iX.QM�6-�9(O;TARA5_T  /),XQ@xm ^N VEFs`7UBJp^?4/(2. ! !+)    $"$65   '#.*�(# #� +(/,! !/-"52-* #� $!(44� )'71 2*80  $#,+ ,(2IE*666HG)NL&%!84'#(C? +& $  ,*#86     �    %#*('$      &#&"(&'& !+)    #>8G@'NF<4%A;*& -+� !�  #! #"  ( #    50+NDEui;oe6ka2yoK~IFX2m^7+8-L;XG!eT"{gnZ ?1</%QD80 :1F:QGLAA;(LF73-$)%# -(1-)%&" (#"!843.93'IC3.;6-MHD<LD� 73�-A<PB aR;0 "&=8/TJ,b[KA 5)HaSy<]N*]O2oa`x:2�%OC@3�(+I</YHx7[O6,0).(60-$�  � �� /,$#400,        & *$$  "$B=   (%.(=681�-, >: /+63*''###  "�   )'%#��  �   �"-+" $!!!".+)'   ! !&#**##�('*('$92$QHB8)gY'[Q ,% !&% *;7 1-'#" %##0. � �#" 4./* #-% 7/# '$(PK<sj?u$ra�R?M9<*[Kp]UEZJM= C4�O<I9;.QC�VDcRNC81!;5&! 8-@57/ %!+' " ! "6262.*��#�1,%" #841.60�&,'.)1(�-)60 F@XN OF=_TKj[Iq_1[J1#(<0@k^2]PB6=aUImaA4 D5$cS$UE� I< K>Yu>dXw -� $!-*/, � �($�     '%   )$/+)%!���"' 6-*$�  ��$& 81!;5�� ! ! �73.+52 /+%"*(+).+63 " �      �  ���  )&$! "'$#! 42)',)$C<-XO%YO9ob;~o1f\60  &81#803. ($!/-4A? �   � �  "� $,KD93 $�7.2SL(IB72 ;5(\U;nf3e[-cV$_P?.E5VEq]YIWGK<B4]JUD4'O?q^fR M>J>�*! 90J=[LA6+'/,60 ("$96,A>%"� 2/!?:=7943FC"=9 +>;61,* &#.#2,F=ZN/&*'�.&RGEpc D4gP){eE{j+r^_K]JTB![IM;fR){e.uaW3wfC33rb?}kf={e $! &#-*'$ ��   �  �   "  $ ,(/,,')$*% )# (!)"80 1)5,HA4/-++* "&! '!B;!JB 6/�/'=slClg�  #)'1/*8674:7&C@/,"0.#"  � ('$#      ��� %"'$   1,0+5/1)7- >4%TKK?A:&;8)( ,('5) 2-!2. /+$3/$"�        2//(%H>;1@6#B9#G;!LA/^UG?;4QI4TO(A=92:0A5 ?1YE \I lZ Q@�L9YI .", @1&s^ [H�8'XE^MM<5'I< >0PB5+53'%?8.&*#2/2/0- (%.*.NI!MF:6<4)%$%"8[QD:<3%SGTG�/& ?7%*(7.PB#YH C2+iWQB'UH,lYfRfQcNP~6n[%UC?.YG)gW1o_={kN<!^J%cMQ;  #!� �  %#''   *&"1+@97/�#3*>5?h`<6/+"! � !'""!+'3*6[Q,ZNPF1f\5d\!ID**  ),$&-+ 73 +(41(&%#           ���          (&#% /%1$ 1)/(+%%JB)[Q4i_9h_82),'!.,&& !?:3) /$(%*%1,")% 0?;+:6!    -*3,;1C6@4$H<"F:9/?72-96904h^&RK3.=7#XN*`SD7cOjTaJL:,�2!H8)VF�WCcO&eU[F F4[G�2! ;+ K; :.A;:WT� *%@99/)&(=:$!$"+(/+A<=a[B:1($A8&C:6.3-+<8>3<0aym@gXG6-fW PARC?22]P�2$�&%+& !%D=/'I<&_P9(Grc-QA1PA4' 5(F9)UHSt,[K3cQ%VB� ��        !�     $!&#! ;3$SJ&XN/aW"QH /'! # �52;5 4,@5(RG&E<!��88(GF !� .(! "  � � # '& ! ,*  %$ � �  #! '& 1.  &H;SD K@B8;1I@ B8NE$NG.*3)1+"! .- ,$!1& 52# #85$"%5.     #:17-5+%+""9150'$! "#2.0,0)0i`6siWKZJ oZ)eS�F2H8'D4=-]GI:�<+K< S?=-YC�@* hOaN 3(+'=9 +''#�) ,( #!#!# +CA;a[,QG#NA<1&[ME:K?.I@%I; <*?/#G7C2N<#aQ>1-SG6dWPC&XN##%'??62>6<0!TF(dRCon#QD ;-�-:,C2ByfKo �   �  �'$!         '#$! +( %$ &'() !   5)0,/*2-,)  95""-+ -)#@=$'��  %"�  1-,(# !    �           %3-1,�(!C;4VO4-&;8 73*'  .GC"@;1-%?9+& 1-(!#803*A6:.1WKB8$F?72#85!! �     "!(&,*$*) *('$/*@9=11rb8se*XLQBl[!_QQD fOB2$F;-%!!C=<9 %#+#71�C:I?.&5-=4@4936666 "5/ )# %!(%,)%" "   (%.);6,) :4F=+MC;1'OD"D::QI)"2*;20'>3#bRcR#dT;rc2aQ(UE ?+>ye%cQ$_P6gYM@ @/M;?p[=k5q4n >0 /%�%   � � % 1.(%    '$ .+%",)5/$:8 4-�&.(%3/  %!� ! &'31%"� �� ""�  " +''# ! "(%-*��    !     ! ,'$*% !2,6/ %� -B? " 300-.*612, )#".)$!3,?ZQ;1)9.:03RK'@<*=:&&3;;087 �    $#1/)& $" 1-)IDL?#jZ9QdW$sexh3y'sa!^P 4) /(( JCA: 6/(!1* (!&A: 5-:2#A5=6!FD:9�,&4.($�+(# (%)&'$:4%".+30'%)&91/+.) +&84$!� %"1'=2C8@5 1'4(JviMtJvE8E<KB%ZP C8</-[OL> D80%*MC9[T,&?9I@    � �    �  " " !�   � �%(?;B<<5,%*&3-E<?8� *'J? NC%!('/.*),+ )><)"' $%%32-, ���� %#-) #'#'$ �      ���    +) %#!*($"�   *',).+ !.*.*,&$@:.(4/#"/(-% (1&"=4!;5$96/@=&&�     �**+*'&6HG'#&"2/&# !  &" C93^S%n^FNFR7{+ng+zANBH?81:3+#�% )" 1)& (!1*0+NA2*B<*OK1*0'61%" !)&$!-*.+!41/,'#(% �,* ,,(&-)#$**55'9:�  "82+E?+%4/!72 $>4/$>8OIMENG�41.WPLCHA $ )' ##=:    � �     0-$#     ,*� ("�!B7:3)&� 0)�6+D;)$ 6- G<,%  #"%$&43 ! � &%/, " 34,)  �)((65�  -+2- %!            +)!&31"30 &$(%0-'$   '# & 82"A:3MG 4/-) 8.!9/!80,' "   "('!)( �  ,<;/A@-,!41 73# #4141,(*#&B<1VN :1!KD/^[ ><$AESK5zp cWpb#i\ 8/+%/'�&( +%  � ("&!MA<5C> D>%/&60(% " *'&#$!-+ $!�$=91,(&1/31#$� $&(*2.($%<71HC#:5:6@<86=9($($A; .(:5<:75�� )&��  �   %$*)  ��  /+ >9"C<D:=2&.-  % +%-'�!SI80� �� � � &% � 51.*#" �:7A\Y��  !% '##85        � &&    $#  !!�#!# -* +(.+!�!'>9714. $($#  -#0& ! $""" #,)))(87  &%"21 #!/,($!:5+%!TL,dYKAH@^U'ZV7Z]2X\,-0XV_X\P^Q�=1=0>2�/% .&3, )""940+#* 3- A=>8�! ,!/( $!';64/ "(#'"$:5 "  ?<74 )& 0,&OH1)2+8RL4//, �%$-,##/,.GC,GC #*&3.83;6'E@;6� .) %!�1- <:�0,+) B<&HB        &35� �   �� $ 71# � �>5K@�*<23)����!  ! .-�@992 +$0,2.(%0+72"52>=54� # ##0,.*-@=  �    � � *, #"    #!,(,).+ $! #/) '! " %# $5+&81&" )) '#$51  &&4FE##+* $$'% "1,@:&PI(WO @9J9tXK.shA>Kjk`JHPNOK%YR.cZVMPD_RXM:25. 4,A9-'!;5 4,%' ;6"C<?4A61* *'1+3-,C>-(/*0+(#�&40-&'MG!E?*$3+0bX.YP�#"?62*?UP9PK4/ ! *)''$!0,;560!72;4K?EmbAXS #<8<7AD-0,.(*  >5G? �            ���� 3FC*'�� ��<2A6I; C6�3&  ,&4/ '%$!"";3K?'UI'QF#E>[-eZ� '42""$#5555 +-$%76+FB "��   $&%((+&&&;9,*0/ 0/$# &65 ,+'%   &$$!($+&/*/*$1/  #"+)!A6-#,$ �  $,$.F>3.'$� -,#"-,$43 $" &"1,'KE,RLA:F>HD;qjU1yl'eY+PL(OMV"]YIF E@&f`5zpaV <4)KD-_UE=E="KCB9/'# .'D::2(NH5-@4'I>92 $!' .'Ea[93,&�/*)$%708`U8g^?9 -'%RI,ZN3)4VL1( )%41 73�  '>: ,&=5Pum<g^)NF+LE+MF<e^*SN.PO*+1Q\!:D>C (- �JF$#���  � �   � !$"+.�� &# !    �LA M>,! �+)# �)%;4>3REJ< :-)^Q=3*$@:Gmg30()"" �! � ,,<;0,�  � �  ��    01(+   )'.-    0/  -, #! )%4/&! ',+&><8-;03+ #.,""2HC4LD&A8.KB=WQ%<8%$ /1*( +**)/. -* (#'IC"HB=6JCF>%ha7\X2e]i[dW%aWCy-daOK7ig-\YA<eZ2u%dZC;@8�.% 6-80@8MC-$ & B6�/&2^W@5>2 -"-'/->781?82+4..)&!3.#<2/#*_RV}u1* 6+,QG,D:4-  (&*('%!02$,+%3161%OHB9 ';6 /)@og @6*YQ51./?A03 +<2AZ$[b��?A#(     �   � �  -+ -+#! *'  � �   ��.(=5 1- ! � "%,, ""$! &" /)5-%  � 94;]WHie30&'!#��� !# " ),#&   �  �  �      -,#"    &%� � �    " &##!!0+"61 )#1* *#0+#4/-LE/)>7� ($*F@+& L?Ed]:PN#78"740A=!/-+*$'$' &%)(31%# #--/-<8MGMF+d\0mcCmf*bW&dX1PI# )JF#LG`V<}t+]Y#KI A: WKH;#QESH 81("60:3�,$ :291 -(;6RJ@8%YOSH6/91 K@>3D:!=7/*3+906, G?,hbZTN4lgUNLD$XNI8'TDBiZ"H<=0@5A7 &(!:. <4($&A=?9.+)%2/�%%&NL608180D=\W49JqyB%DC %#(:3>7  �! �   � !.,,75%#   �   92D:7.(%$ � *)!32(& !&%*(%"6."D=20 410,� &%    $&01#$�     %%       "!      !   '" # 1,60<5#LD@85.0*?83ZRD<&73#,)0G? ?67.&6XN%\M;3&C@8ZY3-&! -+� /.%"-*)&)+"0/0.2-6`Y(WOE=4vk9ym"dX0rfUJ71�",d_/qf:32QN<lf;wo)e[H>G=XL%LD92J?M@$C:;2@2 K?9/TI� <5>660>6D7F9C6?3A6*OE7,@5=9b=;+ML2RQ!/*.(#8ZOWu <0#UI:/' +"(@8�5(&C: 2*$ *#4. 73(B<7OO04 .1+*'TQ2^]#LNS~86:9-+>LJ'62����  ���   "3/0?;'$���  " ����  )$,%& !�-)/B?$=97/A96-"2+0)3+"RF&^Q KB621PM ?8    "#"$#24'(#$,-    ���  �   &%*(    -($! (#�<4@7A8+RJ"G?1)7f]K>&C: ,# &.KB+PF/MBHAIF7QQ$B=@7;4!-- +('$2/$!)& !63$B='KEG?+TL?{p2}o;~o0sd=v@9'FCCy.i[+VM(NHXO,of[;tk H=XMF; F8�=/ >0 1%<0M< fY ?5ND/(*$)!)E? 8/�1$K<B2VG >0�,6aTE:1.# $ � !41%!! �"OFTJBqh=51SI1SIDcZJwB:G>-GA%JB80 %�� /55< 8<QSFMHU5`W93@f`�  87%?E    ��  � ):7"3/%! �  $ $ �   $/,(<7!  &$ B< *%.'6/=2 6),PD&A7?4I<6(�)!.*)&�!  $'(,&6<%69 ! 45)'!�  � � �      "! $" �     &#$"  # *'2,604,B9%RIG?&NC:/NA^NK< D8%4,*;2<21' .*-LK5IJ(HC=uj<og,*/**%$*%!83 $/*73 "-)*LF4_V+ZQ&VJ6l_-j\Et1rc\P#LE&C@?nkLvO.sf5tj?w7x.sh(_V2nf WK]O%pbPC%SGOA/hYC:/TL#WM�) 7/6,=6A8F;J<=. D5Atf7+(:1.HB4.2,/)/)+%3+%-+/YR�)"$" "6/-(F=E=:2#+TLG>?7 " &,0X]%Y_ITScPM**::-& ()@E   � �    7JG � �    ""82�#  .)2A=*52! (%.*.*��)!91)ND!E9(PD"NA QAO? G8/& 5/"43 #  %%!') !/4.3 "+,-+#!�   �          &% &%/. " !�    )&*' "/+71/*3,>6:2�#;1 6+7)&bP,aS>`UDSK(;2"G=%OD4SJ7E? "$CB92.)0+823,1*5.$C<.'*$5//)1*62$=9#@=B;;nf.h]4rd:{l2dX@}oeU%aVE>%SM&QN-hYH*wi1pfXPFzLDD>BCX9qeKC!TL.t.cZ*TM.g^ ;35d[<qgB:'TK NBE8]MH5 B1<0 % 5-#B9* :0A77- .$1(0) 2174;7 %# .(" �80�NB:.)WK_o^ '#�59DHBI+ist2cm:@ ##��)76#FI� � ��  '85*=:� �!+' *#*%#!1+ )")$ %!#&"  !/) '#(":3?8:30*<1]N=i\<17+1&62�  ""� 6HI46+AF $&-/=UU23&87             �$#"21� �   !.*/)($# #"#"$! &" +$(#.';3>30%E8 QCPAM?� * �E=;oe,$!+,#>:(" .,/TL"G?"D=8ZS .'0+:5;6&G@&A=,DB(DD'PKc*j^@v@8peF}vc eV&bWG<0i`6se(bW:wm#bY9kg@_^�*XRjlR< qh+keZP'tkĺ$me�E=:3)UN\&ME9-QG OBRB=sN? 5*#%".&5,6-4)%B96- '!!;53/A=63.?<)'�  @9(>9D<�+ B4-`R*F9� # ,****XYEa eo@u� � #+) !"   � �!"!*;8%"��  $81 .&+%�81 -& '!�  !'%�.(600)� �1*!TM>8<8-*%"@:5aZ;1/'� 7.!@9#! ��!(+$%13-FH*,669NO     ""     $! 21$#       $" #! "-(2+#%#*(,(,' ,% & <4 ;1 A4(ZNPBTD#jVF83(/'.MF & )D@�  $1/9093,97!F>&KC!C<$D?�84$?;314./, $$/1 EC/b[D9Cs>>ubR"k[-k]YK NBHz3oe:ypC}:if22�JaSSPB}=;LW`, VNC:+pe TJYK'lb#k_"m]2xgI;0&% .&,G>"@56--$40!<8E?71 *%+'*'/,$"  #XO !-WL ;/4& :-:dS!G;=8)&/+ -( 742db�"(ehDK'!(& #!  !!�  ��  $-0** �   <2-""-(+$�$$'$$!  (& 1+ A8?4@5D; [PD< 1,<;<;75?=65� B: =1B76/(" C?2/  "%-/  6655--34/0           '%<9   &#1.,* %%($ +%;40+'# ! !)%0+0) .&2) F;N@RBM='o[gQTE?2:0)%.+  ")&( /DA/YN7i_-\T3,&HA!A<61�6431 .(-JG 88.0/NOGro]Z!d[By3e[*_R"hW*aR\|%fW9tl9}qg-mhGE A>KZD:iaKtmU,xlM^ORNe>: r`Q_O)ga^S2rf B5>4 !9/;19- E;)!4.1-!F>:30)>8 3-0*�%#*(&cY'"3(^=k^.?/ 7./JG5JK4.A:-WP<:;5IF9=*1-/$# +*��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/fixtures/watermark.svg����������������������������������������������0000664�0000000�0000000�00000002112�14163570564�0023101�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg version="1.1" viewBox="0 0 210 297" xmlns="http://www.w3.org/2000/svg"> <g transform="rotate(-45 1.9513 -4.7108)" fill-opacity=".25" stroke-width=".26458" aria-label="DRAFT"> <path d="m-108.4 197.31v-36.116h11.137q7.2926 0 11.881 4.7625 4.6137 4.7625 4.6137 12.502v1.6123q0 7.7391-4.6137 12.502-4.5889 4.7377-11.981 4.7377zm11.137-30.088h-3.6711v24.085h3.5719q4.44 0 6.7221-2.9022 2.3068-2.927 2.3068-8.3344v-1.6619q0-11.187-8.9297-11.187z"/> <path d="m-55.217 197.31-6.7469-13.246h-5.9283v13.246h-7.4662v-36.116h13.444q6.226 0 9.773 2.8029 3.5719 2.7781 3.5719 8.1111 0 3.9191-1.7363 6.3252t-4.7129 3.7455l7.8135 14.784v0.34727zm-12.675-30.088v10.84h5.9779q2.927 0 4.3904-1.4635 1.4883-1.4883 1.4883-3.9191 0-2.5053-1.4387-3.9688-1.4387-1.4883-4.44-1.4883z"/> <path d="m-45.94 197.31 13.444-36.116h6.8957l13.519 36.116h-7.9375l-2.4805-7.4414h-13.072l-2.4805 7.4414zm12.378-13.469h9.0537l-4.5145-13.568z"/> <path d="m-8.683 197.31v-36.116h23.54v6.0275h-16.073v9.3266h14.287v6.0027h-14.287v14.759z"/> <path d="m17.486 167.22v-6.0275h29.394v6.0275h-11.038v30.088h-7.4414v-30.088z"/> </g> </svg> ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/font_spec.rb��������������������������������������������������������0000664�0000000�0000000�00000034410�14163570564�0021025�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'spec_helper' describe 'Asciidoctor::PDF::Converter - Font' do context 'bundled with default themes' do it 'should not apply fallback font when using default theme', visual: true do input_file = Pathname.new fixture_file 'i18n-font-test.adoc' to_file = to_pdf_file input_file, 'font-i18n-default.pdf' (expect to_file).to visually_match 'font-i18n-default.pdf' end it 'should apply fallback font when using default theme with fallback font', visual: true do input_file = Pathname.new fixture_file 'i18n-font-test.adoc' (expect do to_file = to_pdf_file input_file, 'font-i18n-default-with-fallback.pdf', attribute_overrides: { 'pdf-theme' => 'default-with-fallback-font' } (expect to_file).to visually_match 'font-i18n-default-with-fallback.pdf' end).to log_message using_log_level: :INFO end it 'should include expected glyphs in bundled default font', visual: true do input_file = Pathname.new fixture_file 'glyph-font-test.adoc' to_file = to_pdf_file input_file, 'font-glyph-default.pdf' (expect to_file).to visually_match 'font-glyph-default.pdf' end it 'should include expected glyphs in bundled default font with fallback font', visual: true do input_file = Pathname.new fixture_file 'glyph-font-test.adoc' to_file = to_pdf_file input_file, 'font-glyph-default-with-fallback.pdf', attribute_overrides: { 'pdf-theme' => 'default-with-fallback-font' } (expect to_file).to visually_match 'font-glyph-default-with-fallback.pdf' end it 'should include expected glyphs in fallback font', visual: true do input_file = Pathname.new fixture_file 'glyph-font-test.adoc' to_file = to_pdf_file input_file, 'font-glyph-fallback-only.pdf', pdf_theme: { extends: 'default-with-fallback-font', base_font_family: 'M+ 1p Fallback' }, attribute_overrides: { 'pdf-theme' => 'default-with-fallback-font' } (expect to_file).to visually_match 'font-glyph-fallback-only.pdf' end it 'should use notdef from original font of glyph not found in any fallback font', visual: true do input = ?\u0278 * 10 to_file = to_pdf_file input, 'font-notdef-glyph.pdf', analyze: true, attribute_overrides: { 'pdf-theme' => 'default-with-fallback-font' } (expect to_file).to visually_match 'font-notdef-glyph.pdf' end it 'should include box drawing glyphs in bundled monospace font', visual: true do input_file = Pathname.new fixture_file 'box-drawing.adoc' to_file = to_pdf_file input_file, 'font-box-drawing.pdf' (expect to_file).to visually_match 'font-box-drawing.pdf' end it 'should render emoji when using default theme with fallback font', visual: true do to_file = to_pdf_file <<~'EOS', 'font-emoji.pdf', attribute_overrides: { 'pdf-theme' => 'default-with-fallback-font' } Don't 😢 over spilled 🍺. Asciidoctor is 👍. EOS (expect to_file).to visually_match 'font-emoji.pdf' end it 'should log warning once per character not found in any font when fallback font is used and verbose mode is enabled' do (expect do input_lines = [%(Bitcoin (\u20bf) is a cryptocurrency.), %(The currency is represented using the symbol \u20bf.)] input = input_lines.join %(\n\n) pdf = to_pdf input, attribute_overrides: { 'pdf-theme' => 'default-with-fallback-font' }, analyze: true (expect pdf.lines).to eql input_lines end).to log_message severity: :WARN, message: %(Could not locate the character `\u20bf' in the following fonts: Noto Serif, M+ 1p Fallback, Noto Emoji), using_log_level: :INFO end end context 'built-in (AFM)' do it 'should warn if document contains glyph not supported by AFM font' do [true, false].each do |in_block| (expect do input = 'α to ω' input = %(====\n#{input}\n====) if in_block pdf = to_pdf input, analyze: true, attribute_overrides: { 'pdf-theme' => 'base' } not_glyph = ?\u00ac text = pdf.text (expect text).to have_size 1 (expect text[0][:string]).to eql %(#{not_glyph} to #{not_glyph}) end).to log_message severity: :WARN, message: %(The following text could not be fully converted to the Windows-1252 character set:\n| α to ω), using_log_level: :INFO end end it 'should replace essential characters with suitable replacements to avoid warnings' do (expect do pdf = to_pdf <<~'EOS', pdf_theme: { base_font_family: 'Helvetica' }, analyze: true :experimental: * disc ** circle *** square no{zwsp}space button:[Save] EOS (expect pdf.find_text font_name: 'Helvetica').to have_size pdf.text.size (expect pdf.lines).to eql [%(\u2022disc), '-circle', %(\u00b7square), 'nospace', 'button:[Save]'] end).to not_log_message end end context 'custom' do it 'should resolve fonts in specified fonts dir' do pdf = to_pdf 'content', attribute_overrides: { 'pdf-fontsdir' => Asciidoctor::PDF::ThemeLoader::FontsDir } fonts = pdf.objects.values.select {|it| ::Hash === it && it[:Type] == :Font } (expect fonts).to have_size 1 (expect fonts[0][:BaseFont]).to end_with '+NotoSerif' end it 'should look for font file in all specified font dirs' do pdf = to_pdf 'content', attribute_overrides: { 'pdf-fontsdir' => ([fixtures_dir, Asciidoctor::PDF::ThemeLoader::FontsDir].join ';') } fonts = pdf.objects.values.select {|it| ::Hash === it && it[:Type] == :Font } (expect fonts).to have_size 1 (expect fonts[0][:BaseFont]).to end_with '+NotoSerif' end it 'should look for font file in gem fonts dir if path entry is empty' do pdf = to_pdf 'content', attribute_overrides: { 'pdf-fontsdir' => ([fixtures_dir, ''].join ';') } fonts = pdf.objects.values.select {|it| ::Hash === it && it[:Type] == :Font } (expect fonts).to have_size 1 (expect fonts[0][:BaseFont]).to end_with '+NotoSerif' end it 'should look for font file in gem fonts dir if path entry is GEM_FONTS_DIR' do pdf = to_pdf 'content', attribute_overrides: { 'pdf-fontsdir' => ([fixtures_dir, 'GEM_FONTS_DIR'].join ';') } fonts = pdf.objects.values.select {|it| ::Hash === it && it[:Type] == :Font } (expect fonts).to have_size 1 (expect fonts[0][:BaseFont]).to end_with '+NotoSerif' end it 'should expand GEM_FONTS_DIR in theme file' do pdf = to_pdf 'content', attribute_overrides: { 'pdf-theme' => (fixture_file 'bundled-fonts-theme.yml'), 'pdf-fontsdir' => fixtures_dir } fonts = pdf.objects.values.select {|it| ::Hash === it && it[:Type] == :Font } (expect fonts).to have_size 1 (expect fonts[0][:BaseFont]).to end_with '+NotoSerif' end it 'should throw error if font with relative path cannot be found in GEM_FONTS_DIR' do pdf_theme = { font_catalog: { 'NoSuchFont' => { 'normal' => 'no-such-font.ttf', }, }, } expect { to_pdf 'content', pdf_theme: pdf_theme }.to raise_exception Errno::ENOENT, /no-such-font\.ttf not found in GEM_FONTS_DIR$/ end it 'should throw error if font with relative path cannot be found in custom font dirs' do pdf_theme = { font_catalog: { 'NoSuchFont' => { 'normal' => 'no-such-font.ttf', }, }, } expect { to_pdf 'content', attribute_overrides: { 'pdf-fontsdir' => 'here,there' }, pdf_theme: pdf_theme }.to raise_exception Errno::ENOENT, /no-such-font\.ttf not found in here or there$/ end it 'should throw error if font with absolute path cannot be found in custom font dirs' do pdf_theme = { font_catalog: { 'NoSuchFont' => { 'normal' => (font_path = fixture_file 'no-such-font.ttf'), }, }, } expect { to_pdf 'content', pdf_theme: pdf_theme }.to raise_exception Errno::ENOENT, /#{Regexp.escape font_path} not found$/ end end context 'Kerning' do it 'should enable kerning when using default theme', visual: true do to_file = to_pdf_file <<~'EOS', 'font-kerning-default.pdf' [%hardbreaks] AVA Aya WAWA WeWork DYI EOS (expect to_file).to visually_match 'font-kerning-default.pdf' end it 'should enable kerning when using base theme', visual: true do to_file = to_pdf_file <<~'EOS', 'font-kerning-base.pdf', attribute_overrides: { 'pdf-theme' => 'base' } [%hardbreaks] AVA Aya WAWA WeWork DYI EOS (expect to_file).to visually_match 'font-kerning-base.pdf' end it 'should allow theme to disable kerning globally', visual: true do to_file = to_pdf_file <<~'EOS', 'font-kerning-disabled.pdf', pdf_theme: { base_font_kerning: 'none' } [%hardbreaks] AVA Aya WAWA WeWork DYI EOS (expect to_file).to visually_match 'font-kerning-disabled.pdf' end it 'should allow theme to disable kerning per category' do { 'example' => %([example]\nAV T. ij WA *guideline*), 'sidebar' => %([sidebar]\nAV T. ij WA *guideline*), 'heading' => '== AV T. ij WA *guideline*', 'table' => %(|===\n| AV T. ij WA *guideline*\n|===), 'table_head' => %([%header]\n|===\n| AV T. ij WA *guideline*\n|===), 'caption' => %(.AV T. ij WA *guideline*'\n--\ncontent\n--), }.each do |category, input| pdf = to_pdf input, analyze: true guideline_column_with_kerning = (pdf.find_text 'guideline')[0][:x] pdf = to_pdf input, pdf_theme: { %(#{category}_font_kerning) => 'none' }, analyze: true guideline_column_without_kerning = (pdf.find_text 'guideline')[0][:x] (expect guideline_column_without_kerning).to be > guideline_column_with_kerning end end end context 'Line breaks' do it 'should break line on any CJK character if value of scripts attribute is cjk' do pdf = to_pdf <<~'EOS', analyze: true :scripts: cjk :pdf-theme: default-with-fallback-font AsciiDoc 是一个人类可读的文件格式,语义上等同于 DocBook 的 XML,但使用纯文本标记了约定。可以使用任何文本编辑器创建文件把 AsciiDoc 和阅读“原样”,或呈现为HTML 或由 DocBook 的工具链支持的任何其他格式,如 PDF,TeX 的,Unix 的手册页,电子书,幻灯片演示等。 AsciiDoc は、意味的には DocBook XML のに相当するが、プレーン·テキスト·マークアップの規則を使用して、人間が読めるドキュメントフォーマット、である。 AsciiDoc は文書は、任意のテキストエディタを使用して作成され、「そのまま"または、HTML や DocBook のツールチェーンでサポートされている他のフォーマット、すなわち PDF、TeX の、Unix の man ページ、電子書籍、スライドプレゼンテーションなどにレンダリングすることができます。 EOS lines = pdf.lines (expect lines).to have_size 8 (expect lines[0]).to end_with '任何' (expect lines[1]).to start_with '文本' (expect lines[3]).to end_with '使用' (expect lines[4]).to start_with 'して' end it 'should not break line immediately before an ideographic full stop' do pdf = to_pdf <<~'EOS', analyze: true :scripts: cjk :pdf-theme: default-with-fallback-font Asciidoctor PDF 是一个 Asciidoctor 转换器,可将 AsciiDoc 文档转换为PDF文档。填料填料。转换器不会创建临时格式。 EOS lines = pdf.lines (expect lines).to have_size 2 (expect lines[1]).to start_with '式。' end it 'should not break line where no-break hyphen is adjacent to formatted text' do pdf = to_pdf <<~'EOS', analyze: true foo bar foo bar foo bar foo bar foo bar foo bar foo bar foo bar foo bar foo bar foo bar foo bar **foo**‑bar‑**foo** EOS lines = pdf.lines (expect lines).to have_size 2 (expect lines[1]).to eql %(foo\u2011bar\u2011foo) end # NOTE this test demonstrates a bug in Prawn it 'should break line if no-break hyphen is isolated into its own fragment' do pdf = to_pdf <<~'EOS', analyze: true foo bar foo bar foo bar foo bar foo bar foo bar foo bar foo bar foo bar foo bar foo bar foo bar **foo**‑**bar**‑**foo** EOS lines = pdf.lines (expect lines).to have_size 2 (expect lines[1]).to eql %(\u2011bar\u2011foo) end end context 'Separators' do it 'should not break line at location of no-break space' do input = (%w(a b c d).reduce([]) {|accum, it| accum << (it * 20) }.join ' ') + ?\u00a0 + ('e' * 20) pdf = to_pdf input, analyze: true text = pdf.text (expect text).to have_size 2 (expect text[0][:string]).to end_with 'c' (expect text[1][:string]).to start_with 'd' (expect text[1][:y]).to be < text[0][:y] end it 'should not break line at location of non-breaking hyphen' do input = (%w(a b c d).reduce([]) {|accum, it| accum << (it * 20) }.join ' ') + ?\u2011 + ('e' * 20) pdf = to_pdf input, analyze: true text = pdf.text (expect text).to have_size 2 (expect text[0][:string]).to end_with 'c' (expect text[1][:string]).to start_with 'd' (expect text[1][:y]).to be < text[0][:y] end it 'should use zero-width space a line break opportunity' do input = (%w(a b c d e f).reduce([]) {|accum, it| accum << (it * 5) + ?\u200b + (it * 10) }.join ' ') pdf = to_pdf input, analyze: true text = pdf.text (expect text).to have_size 2 (expect text[0][:string]).to eql 'aaaaaaaaaaaaaaa bbbbbbbbbbbbbbb ccccccccccccccc ddddddddddddddd eeeeeeeeeeeeeee fffff' (expect text[1][:string]).to eql 'ffffffffff' (expect text[1][:y]).to be < text[0][:y] end end context 'font sizes' do it 'should resolve font size of inline element specified in rem' do pdf_theme = { base_font_size: 12, link_font_size: '0.75rem', } pdf = to_pdf 'https://asciidoctor.org[Asciidoctor]', pdf_theme: pdf_theme, analyze: true linked_text = (pdf.find_text 'Asciidoctor')[0] (expect linked_text[:font_size].to_f).to eql 9.0 end end end ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/footnote_spec.rb����������������������������������������������������0000664�0000000�0000000�00000015055�14163570564�0021720�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'spec_helper' describe 'Asciidoctor::PDF::Converter - Footnote' do it 'should place footnotes at the end of each chapter when doctype is book' do pdf = to_pdf <<~'EOS', doctype: :book, attribute_overrides: { 'notitle' => '' }, analyze: true == Chapter A About this thing.footnote:[More about that thing.] And so on. == Chapter B Yada yada yada. EOS strings, text = pdf.strings, pdf.text (expect (strings.slice 2, 3).join).to eql '[1]' # superscript (expect text[2][:y]).to be > text[1][:y] (expect text[2][:font_size]).to be < text[1][:font_size] (expect text[3][:font_color]).to eql '428BCA' # superscript group (expect (text.slice 2, 3).map {|it| [it[:y], it[:font_size]] }.uniq).to have_size 1 # footnote item (expect (strings.slice 6, 3).join).to eql '[1] More about that thing.' (expect text[6][:y]).to be < text[5][:y] (expect text[6][:y]).to be < 60 (expect text[6][:page_number]).to be 1 (expect text[6][:font_size]).to be 8 (expect (text.slice 6, 3).map {|it| [it[:y], it[:font_size]] }.uniq).to have_size 1 # next chapter (expect text[9][:page_number]).to be 2 end it 'should place footnotes at the end of document when doctype is not book' do pdf = to_pdf <<~'EOS', attributes_overrides: { 'notitle' => '' }, analyze: true == Section A About this thing.footnote:[More about that thing.] And so on. <<< == Section B Yada yada yada. EOS strings, text = pdf.strings, pdf.text (expect (strings.slice 2, 3).join).to eql '[1]' # superscript (expect text[2][:y]).to be > text[1][:y] (expect text[2][:font_size]).to be < text[1][:font_size] (expect text[3][:font_color]).to eql '428BCA' # superscript group (expect (text.slice 2, 3).map {|it| [it[:y], it[:font_size]] }.uniq).to have_size 1 (expect text[2][:font_size]).to be < text[1][:font_size] # footnote item (expect (pdf.find_text 'Section B')[0][:order]).to be < (pdf.find_text '] More about that thing.')[0][:order] (expect strings.slice(-3, 3).join).to eql '[1] More about that thing.' (expect text[-1][:page_number]).to be 2 (expect text[-1][:font_size]).to be 8 (expect text[-1][:y]).to be < 60 end it 'should add title to footnotes block if footnotes-title is set' do pdf = to_pdf <<~'EOS', analyze: true :footnotes-title: Footnotes main content.footnote:[This is a footnote, just so you know.] EOS footnotes_title_text = (pdf.find_text 'Footnotes')[0] (expect footnotes_title_text).not_to be_nil (expect footnotes_title_text[:font_name]).to eql 'NotoSerif-Italic' (expect footnotes_title_text[:y]).to be < (pdf.find_text 'main content.')[0][:y] end it 'should create bidirectional links between footnote ref and def' do pdf = to_pdf <<~'EOS', doctype: :book, attribute_overrides: { 'notitle' => '' } = Document Title == Chapter A About this thing.footnote:[More about that thing.] And so on. EOS annotations = (get_annotations pdf, 1).sort_by {|it| it[:Rect][1] }.reverse (expect annotations).to have_size 2 footnote_label_y = annotations[0][:Rect][3] footnote_item_y = annotations[1][:Rect][3] names = get_names pdf (expect footnote_label_y - pdf.objects[names['_footnoteref_1']][3]).to be < 1 (expect pdf.objects[names['_footnotedef_1']][3]).to eql footnote_item_y end it 'should render footnotes in table cell that are directly adjacent to text' do pdf = to_pdf <<~'EOS', analyze: true |=== |``German``footnote:[Other non-English languages may be supported in the future depending on demand.] | 80footnote:[Width and Length is overridden by the actual terminal or window size, if available.] |=== EOS (expect pdf.lines.slice 0, 2).to eql ['German[1]', '80[2]'] end it 'should use number of target footnote in footnote reference' do if asciidoctor_1_5_7_or_better? pdf = to_pdf <<~'EOS', analyze: true You can download patches from the product page.footnote:sub[Only available if you have an active subscription.] If you have problems running the software, you can submit a support request.footnote:sub[] EOS else pdf = to_pdf <<~'EOS', analyze: true You can download patches from the product page.footnoteref:[sub,Only available if you have an active subscription.] If you have problems running the software, you can submit a support request.footnoteref:[sub] EOS end text = pdf.text p1 = (pdf.find_text %r/download/)[0] fn1 = (text.slice p1[:order], 3).reduce('') {|accum, it| accum + it[:string] } (expect fn1).to eql '[1]' p2 = (pdf.find_text %r/support request/)[0] fn2 = (text.slice p2[:order], 3).reduce('') {|accum, it| accum + it[:string] } (expect fn2).to eql '[1]' f1 = (pdf.find_text font_size: 8).reduce('') {|accum, it| accum + it[:string] } (expect f1).to eql '[1] Only available if you have an active subscription.' end it 'should not duplicate footnotes that are included in keep together content' do pdf = to_pdf <<~'EOS', analyze: true **** ____ Make it rain.footnote:[money] ____ **** Make it snow.footnote:[dollar bills] EOS combined_text = pdf.strings.join (expect combined_text).to include 'Make it rain.[1]' (expect combined_text).to include '[1] money' (expect combined_text).to include 'Make it snow.[2]' (expect combined_text).to include '[2] dollar bills' (expect combined_text.scan '[1]').to have_size 2 (expect combined_text.scan '[2]').to have_size 2 (expect combined_text.scan '[3]').to be_empty end it 'should allow a bibliography ref to be used inside the text of a footnote' do pdf = to_pdf <<~'EOS', analyze: true There are lots of things to know.footnote:[Be sure to read <<wells>> to learn about it.] [bibliography] == Bibliography * [[[wells]]] Ashley Wells. 'Stuff About Stuff'. Publishistas. 2010. EOS lines = pdf.lines (expect lines[0]).to eql 'There are lots of things to know.[1]' (expect lines[-1]).to eql '[1] Be sure to read [wells] to learn about it.' end it 'should allow a link to be used in footnote when media is print' do pdf = to_pdf <<~'EOS', attribute_overrides: { 'media' => 'print' }, analyze: true When in doubt, search.footnote:[Use a search engine like https://google.com[Google]] EOS lines = pdf.lines (expect lines[0]).to eql 'When in doubt, search.[1]' (expect lines[-1]).to eql '[1] Use a search engine like Google [https://google.com]' end end �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/formatted_text_formatter_spec.rb������������������������������������0000664�0000000�0000000�00000061312�14163570564�0025174�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'spec_helper' describe Asciidoctor::PDF::FormattedText::Formatter do context 'HTML markup' do it 'should format strong text' do output = subject.format '<strong>strong</strong>' (expect output).to have_size 1 (expect output[0][:text]).to eql 'strong' (expect output[0][:styles]).to eql [:bold].to_set end it 'should allow font color to be set on nested phrase' do input = '<span style="color: #FF0000">hot <span style="color: #0000FF">cold</span> hot</span>' output = subject.format input (expect output).to have_size 3 (expect output[1][:text]).to eql 'cold' (expect output[1][:color]).to eql '0000FF' end it 'should warn if text contains invalid markup' do (expect do input = 'before <foo>bar</foo> after' output = subject.format input (expect output).to have_size 1 (expect output[0][:text]).to eql input end).to log_message severity: :ERROR, message: /^failed to parse formatted text:/ end it 'should allow span tag to control width and text alignment' do output = subject.format '<span style="width: 1in; align: center">hi</span>' (expect output).to have_size 1 (expect output[0][:text]).to eql 'hi' (expect output[0][:width]).to eql '1in' (expect output[0][:align]).to eql :center end end context 'character references' do it 'should decode decimal character reference' do { ''' => ?', '©' => ?\u00a9, '😃' => ([0x1f603].pack 'U1'), }.each do |ref, chr| output = subject.format ref (expect output).to have_size 1 (expect output[0][:text]).to eql chr end end it 'should decode hexadecimal character reference' do { ''' => ?', '©' => ?\u00a9, '😃' => ([0x1f603].pack 'U1'), }.each do |ref, chr| output = subject.format ref (expect output).to have_size 1 (expect output[0][:text]).to eql chr end end it 'should decode recognized named entities' do output = subject.format '< > & '   "' (expect output).to have_size 1 (expect output[0][:text]).to eql %(< > & ' \u00a0 ") end it 'should ignore unknown named entities' do (expect do output = subject.format '†' (expect output).to have_size 1 (expect output[0][:text]).to eql '†' end).to log_message severity: :ERROR, message: '~failed to parse formatted text' end it 'should decode decimal character references in link href' do output = subject.format '<a href="https://cast.you?v=999999&list=abcde&index=1">My Playlist</a>' (expect output).to have_size 1 (expect output[0][:link]).to eql 'https://cast.you?v=999999&list=abcde&index=1' end it 'should decode hexidecimal character references in link href' do output = subject.format '<a href="https://cast.you?v=999999&list=abcde&index=1">My Playlist</a>' (expect output).to have_size 1 (expect output[0][:link]).to eql 'https://cast.you?v=999999&list=abcde&index=1' end end # QUESTION should these go in a separate file? context 'integration' do it 'should format constrained strong phrase' do pdf = to_pdf '*strong*', analyze: true (expect pdf.text[0].values_at :string, :font_name).to eql %w(strong NotoSerif-Bold) end it 'should format unconstrained strong phrase' do pdf = to_pdf '**super**nova', analyze: true (expect pdf.text[0].values_at :string, :font_name).to eql %w(super NotoSerif-Bold) (expect pdf.text[1].values_at :string, :font_name).to eql %w(nova NotoSerif) end it 'should format constrained emphasis phrase' do pdf = to_pdf '_emphasis_', analyze: true (expect pdf.text[0].values_at :string, :font_name).to eql %w(emphasis NotoSerif-Italic) end it 'should format unconstrained emphasis phrase' do pdf = to_pdf '__un__cool', analyze: true (expect pdf.text[0].values_at :string, :font_name).to eql %w(un NotoSerif-Italic) (expect pdf.text[1].values_at :string, :font_name).to eql %w(cool NotoSerif) end it 'should format constrained monospace phrase' do pdf = to_pdf '`monospace`', analyze: true (expect pdf.text[0].values_at :string, :font_name).to eql %w(monospace mplus1mn-regular) end it 'should format unconstrained monospace phrase' do pdf = to_pdf '``install``ed', analyze: true (expect pdf.text[0].values_at :string, :font_name).to eql %w(install mplus1mn-regular) (expect pdf.text[1].values_at :string, :font_name).to eql %w(ed NotoSerif) end it 'should format stem equation as monospace' do pdf = to_pdf 'Use stem:[x^2] to square the value.', analyze: true equation_text = (pdf.find_text 'x^2')[0] (expect equation_text[:font_name]).to eql 'mplus1mn-regular' end it 'should format superscript phrase' do pdf = to_pdf 'x^2^', analyze: true (expect pdf.strings).to eql %w(x 2) text = pdf.text (expect text[0][:font_size]).to be > text[1][:font_size] (expect text[0][:y]).to be < text[1][:y] end it 'should format subscript phrase' do pdf = to_pdf 'O~2~', analyze: true (expect pdf.strings).to eql %w(O 2) text = pdf.text (expect text[0][:font_size]).to be > text[1][:font_size] (expect text[0][:y]).to be > text[1][:y] end it 'should add background and border to code as defined in theme', visual: true do theme_overrides = { literal_background_color: 'f5f5f5', literal_border_color: 'dddddd', literal_border_width: 0.25, literal_border_offset: 2.5, literal_border_radius: 3, } to_file = to_pdf_file 'All your `code` belongs to us.', 'text-formatter-code.pdf', pdf_theme: theme_overrides (expect to_file).to visually_match 'text-formatter-code.pdf' end it 'should add background and border to button as defined in theme', visual: true do theme_overrides = { button_content: '%s', button_background_color: '007BFF', button_border_offset: 3, button_border_radius: 2, button_font_color: 'ffffff', } to_file = to_pdf_file 'Click btn:[Save] to save your work.', 'text-formatter-button.pdf', pdf_theme: theme_overrides, attribute_overrides: { 'experimental' => '' } (expect to_file).to visually_match 'text-formatter-button.pdf' end it 'should add background and border to key as defined in theme', visual: true do to_file = to_pdf_file 'Press kbd:[Ctrl,c] to kill the server.', 'text-formatter-key.pdf', attribute_overrides: { 'experimental' => '' } (expect to_file).to visually_match 'text-formatter-key.pdf' end it 'should add background to mark as defined in theme', visual: true do to_file = to_pdf_file 'normal #highlight# normal', 'text-formatter-mark.pdf' (expect to_file).to visually_match 'text-formatter-mark.pdf' end it 'should use glyph from fallback font if not present in primary font', visual: true do to_file = to_pdf_file '*を*', 'text-formatter-fallback-font.pdf', attribute_overrides: { 'pdf-theme' => 'default-with-fallback-font' } (expect to_file).to visually_match 'text-formatter-fallback-font.pdf' end it 'should look for glyph in font for the specified font style when fallback font is enabled' do pdf_theme = { extends: 'default', font_catalog: { 'Noto Serif' => { 'normal' => 'notoemoji-subset.ttf', 'bold' => 'notoserif-bold-subset.ttf', }, 'M+ 1p Fallback' => { 'normal' => 'mplus1p-regular-fallback.ttf', 'bold' => 'mplus1p-regular-fallback.ttf', }, }, font_fallbacks: ['M+ 1p Fallback'], } pdf = to_pdf %(**\u03a9**), analyze: true, pdf_theme: pdf_theme text = (pdf.find_text ?\u03a9)[0] (expect text).not_to be_nil (expect text[:font_name]).to eql 'NotoSerif-Bold' end it 'should be able to reference section title containing icon' do pdf = to_pdf <<~'EOS', analyze: true :icons: font [#reference] == icon:cogs[] Heading See <<reference>>. EOS lines = pdf.lines (expect lines).to have_size 2 (expect lines[0]).to eql %(\uf085 Heading) (expect lines[1]).to eql %(See \uf085 Heading.) end it 'should apply text transform to text without markup' do [ ['uppercase', 'here we go again', 'HERE WE GO AGAIN'], ['lowercase', 'Here We Go Again', 'here we go again'], ['capitalize', 'Here we go again', 'Here We Go Again'], ].each do |(transform, before, after)| pdf = to_pdf <<~EOS, pdf_theme: { heading_text_transform: transform }, analyze: true == #{before} EOS lines = pdf.lines (expect lines).to have_size 1 (expect lines[0]).to eql after formatted_word = (pdf.find_text %r/again/i)[0] (expect formatted_word[:font_name]).to eql 'NotoSerif-Bold' end end it 'should apply text transform to text with markup' do [ ['uppercase', 'here we go *again*', 'HERE WE GO AGAIN'], ['lowercase', 'Here We Go *Again*', 'here we go again'], ['capitalize', 'Here we go *again*', 'Here We Go Again'], ].each do |(transform, before, after)| pdf = to_pdf <<~EOS, pdf_theme: { heading_text_transform: transform }, analyze: true == #{before} EOS lines = pdf.lines (expect lines).to have_size 1 (expect lines[0]).to eql after formatted_word = (pdf.find_text %r/again/i)[0] (expect formatted_word[:font_name]).to eql 'NotoSerif-Bold' end end it 'should not lowercase tags when applying lowercase text transform' do pdf = to_pdf <<~'EOS', pdf_theme: { sidebar_text_transform: 'lowercase' } **** image:TuxTheLinuxPenguin.png[width=20] <= How this fella came to be the Linux mascot. **** EOS (expect get_images pdf).to have_size 1 end it 'should apply width and alignment specified by span tag', visual: true do to_file = to_pdf_file '|+++<span style="width: 1in; align: center; background-color: #ffff00">hi</span>+++|', 'text-formatter-width-text-alignment.pdf' (expect to_file).to visually_match 'text-formatter-width-text-alignment.pdf' end end context 'Roles' do it 'should support built-in underline role for text span' do input = '[.underline]#2001: A Space Odyssey#' pdf = to_pdf input, analyze: :line lines = pdf.lines (expect lines).to have_size 1 underline = lines[0] pdf = to_pdf input, analyze: true text = pdf.text (expect text).to have_size 1 underlined_text = text[0] (expect underline[:from][:x]).to eql underlined_text[:x] (expect underline[:from][:y]).to be < underlined_text[:y] (expect underlined_text[:y] - underline[:from][:y]).to eql 1.25 (expect underlined_text[:font_color]).to eql underline[:color] (expect underline[:to][:x] - underline[:from][:x]).to be > 100 end it 'should support built-in line-through role for text span' do input = '[.line-through]#delete me#' pdf = to_pdf input, analyze: :line lines = pdf.lines (expect lines).to have_size 1 underline = lines[0] pdf = to_pdf input, analyze: true text = pdf.text (expect text).to have_size 1 underlined_text = text[0] (expect underline[:from][:x]).to eql underlined_text[:x] (expect underline[:from][:y]).to be > underlined_text[:y] (expect underlined_text[:y] - underline[:from][:y]).to be < 0 (expect underlined_text[:font_color]).to eql underline[:color] (expect underline[:to][:x] - underline[:from][:x]).to be > 45 end it 'should allow theme to override formatting for text decoration roles' do pdf_theme = { 'role_line-through_text_decoration': 'none', 'role_line-through_font_color': 'AA0000', role_underline_text_decoration: 'none', role_underline_font_color: '0000AA', } input = '[.underline]#underline# and [.line-through]#line-through#' pdf = to_pdf input, pdf_theme: pdf_theme, analyze: :line (expect pdf.lines).to be_empty pdf = to_pdf input, pdf_theme: pdf_theme, analyze: true line_through_text = (pdf.find_text 'line-through')[0] (expect line_through_text[:font_color]).to eql 'AA0000' underline_text = (pdf.find_text 'underline')[0] (expect underline_text[:font_color]).to eql '0000AA' end it 'should allow theme to set text decoration color and width' do pdf_theme = { 'role_line-through_text_decoration_color': 'AA0000', 'role_line-through_text_decoration_width': 2, role_underline_text_decoration_color: '0000AA', role_underline_text_decoration_width: 0.5, } input = <<~'EOS' [.underline]#underline# [.line-through]#line-through# EOS pdf = to_pdf input, pdf_theme: pdf_theme, analyze: :line lines = pdf.lines (expect lines).to have_size 2 (expect lines[0][:color]).to eql '0000AA' (expect lines[0][:width]).to eql 0.5 (expect lines[1][:color]).to eql 'AA0000' (expect lines[1][:width]).to be 2 end it 'should allow theme to set base text decoration width' do pdf_theme = { base_text_decoration_width: 0.5, role_underline_text_decoration_color: '0000AA', } input = '[.underline]#underline#' pdf = to_pdf input, pdf_theme: pdf_theme, analyze: :line lines = pdf.lines (expect lines).to have_size 1 (expect lines[0][:color]).to eql '0000AA' (expect lines[0][:width]).to eql 0.5 end it 'should support size roles (big and small) in default theme' do pdf_theme = build_pdf_theme (expect pdf_theme.role_big_font_size).to be 13 (expect pdf_theme.role_small_font_size).to be 9 pdf = to_pdf '[.big]#big# and [.small]#small#', pdf_theme: (pdf_theme = build_pdf_theme), analyze: true text = pdf.text (expect text).to have_size 3 (expect text[0][:font_size].to_f.round 2).to eql pdf_theme.base_font_size_large.to_f (expect text[1][:font_size]).to eql pdf_theme.base_font_size (expect text[2][:font_size].to_f.round 2).to eql pdf_theme.base_font_size_small.to_f end it 'should allow theme to override formatting for font size roles' do pdf_theme = { role_big_font_size: 12, role_big_font_style: 'bold', role_small_font_size: 8, role_small_font_style: 'italic', } pdf = to_pdf '[.big]#big# and [.small]#small#', pdf_theme: pdf_theme, analyze: true text = pdf.text (expect text).to have_size 3 (expect text[0][:font_size]).to be 12 (expect text[0][:font_name]).to eql 'NotoSerif-Bold' (expect text[2][:font_size]).to be 8 (expect text[2][:font_name]).to eql 'NotoSerif-Italic' end it 'should support font size roles (big and small) using fallback values if not specified in theme' do pdf_theme = build_pdf_theme({ base_font_size: 12 }, (fixture_file 'extends-nil-theme.yml')) pdf = to_pdf '[.big]#big# and [.small]#small#', pdf_theme: pdf_theme, analyze: true text = pdf.text (expect text).to have_size 3 (expect text[0][:font_size].to_f.round 2).to eql 14.0 (expect text[1][:font_size]).to be 12 (expect text[2][:font_size].to_f.round 2).to eql 10.0 end it 'should allow theme to control formatting applied to phrase by role' do pdf_theme = { role_red_font_color: 'ff0000', role_red_font_style: 'bold', role_blue_font_color: '0000ff', role_blue_font_style: 'bold_italic', } pdf = to_pdf 'Roses are [.red]_red_, violets are [.blue]#blue#.', pdf_theme: pdf_theme, analyze: true red_text = (pdf.find_text 'red')[0] blue_text = (pdf.find_text 'blue')[0] (expect red_text[:font_color]).to eql 'FF0000' (expect red_text[:font_name]).to eql 'NotoSerif-BoldItalic' (expect blue_text[:font_color]).to eql '0000FF' (expect blue_text[:font_name]).to eql 'NotoSerif-BoldItalic' end it 'should allow custom role to specify underline text decoration' do pdf_theme = { role_movie_text_decoration: 'underline' } input = '[.movie]_2001: A Space Odyssey_' pdf = to_pdf input, pdf_theme: pdf_theme, analyze: :line lines = pdf.lines (expect lines).to have_size 1 underline = lines[0] pdf = to_pdf input, pdf_theme: pdf_theme, analyze: true text = pdf.text (expect text).to have_size 1 underlined_text = text[0] (expect underlined_text[:font_name]).to eql 'NotoSerif-Italic' (expect underline[:from][:x]).to eql underlined_text[:x] (expect underline[:from][:y]).to be < underlined_text[:y] (expect underlined_text[:y] - underline[:from][:y]).to eql 1.25 (expect underlined_text[:font_color]).to eql underline[:color] (expect underline[:to][:x] - underline[:from][:x]).to be > 100 end it 'should allow custom role to specify line-through text decoration' do pdf_theme = { role_delete_text_decoration: 'line-through' } input = '[.delete]*delete me*' pdf = to_pdf input, pdf_theme: pdf_theme, analyze: :line lines = pdf.lines (expect lines).to have_size 1 underline = lines[0] pdf = to_pdf input, pdf_theme: pdf_theme, analyze: true text = pdf.text (expect text).to have_size 1 underlined_text = text[0] (expect underlined_text[:font_name]).to eql 'NotoSerif-Bold' (expect underline[:from][:x]).to eql underlined_text[:x] (expect underline[:from][:y]).to be > underlined_text[:y] (expect underlined_text[:y] - underline[:from][:y]).to be < 0 (expect underlined_text[:font_color]).to eql underline[:color] (expect underline[:to][:x] - underline[:from][:x]).to be > 45 end it 'should allow theme to set text decoration color and width for custom role' do pdf_theme = { role_delete_text_decoration: 'line-through', role_delete_text_decoration_color: 'AA0000', role_delete_text_decoration_width: 2, role_important_text_decoration: 'underline', role_important_text_decoration_color: '0000AA', role_important_text_decoration_width: 0.5, } input = <<~'EOS' [.important]#important# [.delete]#delete# EOS pdf = to_pdf input, pdf_theme: pdf_theme, analyze: :line lines = pdf.lines (expect lines).to have_size 2 (expect lines[0][:color]).to eql '0000AA' (expect lines[0][:width]).to eql 0.5 (expect lines[1][:color]).to eql 'AA0000' (expect lines[1][:width]).to be 2 end it 'should allow custom role to apply text transform' do pdf_theme = { role_lower_text_transform: 'lowercase', role_upper_text_transform: 'uppercase', role_capital_text_transform: 'capitalize', } pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, analyze: true [.lower]#WHISPER# [.upper]#shout# [.capital]#here me roar# EOS lines = pdf.lines (expect lines).to have_size 1 (expect lines[0]).to eql 'whisper SHOUT Here Me Roar' end it 'should allow custom role to specify relative font size' do pdf_theme = { heading_h2_font_size: 24, literal_font_size: '0.75em', role_mono_font_size: '0.875em', } pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, analyze: true == `MIN` and [.mono]`MAX` EOS min_text = (pdf.find_text 'MIN')[0] normal_text = (pdf.find_text ' and ')[0] max_text = (pdf.find_text 'MAX')[0] (expect min_text[:font_size].to_f).to eql 18.0 (expect normal_text[:font_size]).to be 24 (expect max_text[:font_size].to_f).to eql 21.0 end it 'should allow custom role to override styles of link' do pdf_theme = { heading_font_color: '000000', link_font_color: '0000AA', role_hlink_font_color: '00AA00', } attribute_overrides = asciidoctor_1_5_7_or_better? ? {} : { 'linkattrs' => '' } pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, attribute_overrides: attribute_overrides, analyze: true == https://asciidoctor.org[Asciidoctor,role=hlink] EOS link_text = (pdf.find_text 'Asciidoctor')[0] (expect link_text[:font_color]).to eql '00AA00' end it 'should allow custom role to contain hyphens' do pdf_theme = { 'role_flaming-red_font_color' => 'ff0000', 'role_so-very-blue_font_color' => '0000ff', } pdf = to_pdf 'Roses are [.flaming-red]_red_, violets are [.so-very-blue]#blue#.', pdf_theme: pdf_theme, analyze: true red_text = (pdf.find_text 'red')[0] blue_text = (pdf.find_text 'blue')[0] (expect red_text[:font_color]).to eql 'FF0000' (expect blue_text[:font_color]).to eql '0000FF' end it 'should append font style configured for role to current style' do pdf_theme = { role_quick_font_style: 'italic', } pdf = to_pdf '*That was [.quick]#quick#.*', pdf_theme: pdf_theme, analyze: true glorious_text = (pdf.find_text 'quick')[0] (expect glorious_text[:font_name]).to eql 'NotoSerif-BoldItalic' end it 'should support theming multiple roles on a single phrase' do pdf_theme = { role_bold_font_style: 'bold', role_italic_font_style: 'italic', role_blue_font_color: '0000ff', role_mono_font_family: 'Courier', role_tiny_font_size: 8, } pdf = to_pdf '[.bold.italic.blue.mono.tiny]#text#', pdf_theme: pdf_theme, analyze: true formatted_text = (pdf.find_text 'text')[0] (expect formatted_text[:font_name]).to eql 'Courier-BoldOblique' (expect formatted_text[:font_color]).to eql '0000FF' (expect formatted_text[:font_size]).to be 8 end it 'should allow styles from role to override default styles for element' do pdf_theme = { role_blue_font_color: '0000ff', } pdf = to_pdf '[.blue]`text`', pdf_theme: pdf_theme, analyze: true formatted_text = (pdf.find_text 'text')[0] (expect formatted_text[:font_name]).to eql 'mplus1mn-regular' (expect formatted_text[:font_color]).to eql '0000FF' end it 'should allow role to set font style back to normal' do pdf_theme = { role_normal_font_style: 'normal', } pdf = to_pdf '[.normal]_text_', pdf_theme: pdf_theme, analyze: true formatted_text = (pdf.find_text 'text')[0] (expect formatted_text[:font_name]).to eql 'NotoSerif' end it 'should allow theme to override background and border for custom role', visual: true do pdf_theme = { role_variable_font_family: 'Courier', role_variable_font_size: '1.15em', role_variable_font_color: 'FFFFFF', role_variable_background_color: 'CF2974', role_variable_border_color: '222222', role_variable_border_offset: 2, role_variable_border_radius: 2, role_variable_border_width: 1, } to_file = to_pdf_file 'reads value from the [.variable]#counter# variable', 'text-formatter-inline-role-bg.pdf', pdf_theme: pdf_theme (expect to_file).to visually_match 'text-formatter-inline-role-bg.pdf' end it 'should support role that sets font color in section title and toc' do pdf_theme = { role_red_font_color: 'FF0000', role_blue_font_color: '0000FF', } pdf = to_pdf <<~'EOS', analyze: true, pdf_theme: pdf_theme = Document Title :doctype: book :notitle: :toc: == [.red]#Red Chapter# == [.blue]#Blue Chapter# == Default Chapter EOS red_section_text = pdf.find_text 'Red Chapter' blue_section_text = pdf.find_text 'Blue Chapter' default_section_text = pdf.find_text 'Default Chapter' (expect red_section_text).to have_size 2 (expect red_section_text[0][:page_number]).to be 1 (expect red_section_text[0][:font_color]).to eql 'FF0000' (expect red_section_text[1][:page_number]).to be 2 (expect red_section_text[1][:font_color]).to eql 'FF0000' (expect blue_section_text).to have_size 2 (expect blue_section_text[0][:page_number]).to be 1 (expect blue_section_text[0][:font_color]).to eql '0000FF' (expect blue_section_text[1][:page_number]).to be 3 (expect blue_section_text[1][:font_color]).to eql '0000FF' (expect default_section_text).to have_size 2 (expect default_section_text[0][:page_number]).to be 1 (expect default_section_text[0][:font_color]).to eql '333333' (expect default_section_text[1][:page_number]).to be 4 (expect default_section_text[1][:font_color]).to eql '333333' end end end ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/formatted_text_transform_spec.rb������������������������������������0000664�0000000�0000000�00000012057�14163570564�0025206�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'spec_helper' describe Asciidoctor::PDF::FormattedText::Transform do let(:parser) { Asciidoctor::PDF::FormattedText::MarkupParser.new } it 'should create fragment for strong text' do input = '<strong>write tests!</strong>' parsed = parser.parse input fragments = subject.apply parsed.content (expect fragments).to have_size 1 (expect fragments[0][:text]).to eql 'write tests!' (expect fragments[0][:styles]).to eql [:bold].to_set end it 'should create fragment for emphasized text' do input = '<em>fast</em>' parsed = parser.parse input fragments = subject.apply parsed.content (expect fragments).to have_size 1 (expect fragments[0][:text]).to eql 'fast' (expect fragments[0][:styles]).to eql [:italic].to_set end it 'should create fragment for sup text' do input = 'x<sup>2</sup>' parsed = parser.parse input fragments = subject.apply parsed.content (expect fragments).to have_size 2 (expect fragments[0][:text]).to eql 'x' (expect fragments[1][:text]).to eql '2' (expect fragments[1][:styles].to_a).to eql [:superscript] end it 'should create fragment for sub text' do input = 'H<sub>2</sub>O' parsed = parser.parse input fragments = subject.apply parsed.content (expect fragments).to have_size 3 (expect fragments[0][:text]).to eql 'H' (expect fragments[1][:text]).to eql '2' (expect fragments[1][:styles].to_a).to eql [:subscript] (expect fragments[2][:text]).to eql 'O' end it 'should create fragment for del text' do input = '<del>old</del>new' parsed = parser.parse input fragments = subject.apply parsed.content (expect fragments).to have_size 2 (expect fragments[0][:text]).to eql 'old' (expect fragments[0][:styles].to_a).to eql [:strikethrough] (expect fragments[1][:text]).to eql 'new' end it 'should create fragment with custom font name' do input = '<font name="Helvetica">Helvetica</font>' parsed = parser.parse input fragments = subject.apply parsed.content (expect fragments).to have_size 1 (expect fragments[0][:text]).to eql 'Helvetica' (expect fragments[0][:font]).to eql 'Helvetica' end it 'should create fragment with custom font size' do input = '<font size="20">big</font>' parsed = parser.parse input fragments = subject.apply parsed.content (expect fragments).to have_size 1 (expect fragments[0][:text]).to eql 'big' (expect fragments[0][:size]).to eql 20.0 end it 'should create fragment with custom hex color' do input = '<color rgb="#ff0000">red</color>' parsed = parser.parse input fragments = subject.apply parsed.content (expect fragments).to have_size 1 (expect fragments[0][:text]).to eql 'red' (expect fragments[0][:color]).to eql 'ff0000' end it 'should create fragment with custom cmyk color' do input = '<color rgb="[50, 100, 0, 0]">color</color>' parsed = parser.parse input fragments = subject.apply parsed.content (expect fragments).to have_size 1 (expect fragments[0][:text]).to eql 'color' (expect fragments[0][:color]).to eql [50, 100, 0, 0] end it 'should return nil if text contains invalid markup' do input = 'before <foo>bar</foo> after' (expect parser.parse input).to be_nil end it 'should convert named entity' do input = '"<&>"' parsed = parser.parse input fragments = subject.apply parsed.content (expect fragments).to have_size 5 (expect fragments[0][:text]).to eql ?" (expect fragments[1][:text]).to eql ?< (expect fragments[2][:text]).to eql ?& (expect fragments[3][:text]).to eql ?> (expect fragments[4][:text]).to eql ?" end it 'should not merge adjacent text nodes by default' do input = 'foo<br>bar' parsed = parser.parse input fragments = subject.apply parsed.content (expect fragments).to have_size 3 (expect fragments[0][:text]).to eql 'foo' (expect fragments[1][:text]).to eql ?\n (expect fragments[2][:text]).to eql 'bar' end it 'should merge adjacent text nodes if specified' do input = 'foo<br>bar' parsed = parser.parse input fragments = (subject.class.new merge_adjacent_text_nodes: true).apply parsed.content (expect fragments).to have_size 1 (expect fragments[0][:text]).to eql %(foo\nbar) end it 'should apply inherited styles' do input = '<a href="https://asciidoctor.org">Asciidoctor</a>' parsed = parser.parse input fragments = subject.apply parsed.content, [], styles: [:bold].to_set (expect fragments).to have_size 1 (expect fragments[0][:text]).to eql 'Asciidoctor' (expect fragments[0][:styles].to_a).to eql [:bold] end it 'should apply styles to inherited styles' do input = 'Go <strong>get</strong> them!' parsed = parser.parse input fragments = subject.apply parsed.content, [], styles: [:italic].to_set (expect fragments).to have_size 3 get_fragment = fragments.find {|it| it[:text] == 'get' } (expect get_fragment[:styles].to_a.sort).to eql [:bold, :italic] end end ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/hyphens_spec.rb�����������������������������������������������������0000664�0000000�0000000�00000012303�14163570564�0021532�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'spec_helper' describe 'Asciidoctor::PDF::Converter - Hyphens' do it 'should hyphenate text in paragraph if hyphens attribute is set' do pdf = to_pdf <<~'EOS', analyze: true :hyphens: This story chronicles the inexplicable hazards and vicious beasts a team must conquer and vanquish. EOS lines = pdf.lines (expect lines).to have_size 2 (expect lines[0]).to end_with ?\u00ad (expect lines[0].count ?\u00ad).to be 1 end it 'should hyphenate text split across multiple lines' do pdf = to_pdf <<~'EOS', analyze: true :hyphens: This story chronicles the inexplicable hazards and vicious beasts a team must conquer and vanquish. EOS lines = pdf.lines (expect lines).to have_size 2 (expect lines[0]).to end_with ?\u00ad (expect lines[0].count ?\u00ad).to be 1 end it 'should not hyphenate a hyphen' do input = (['domain-driven design'] * 6).join ' ' pdf = to_pdf input, attribute_overrides: { 'hyphens' => '' }, analyze: true (expect pdf.lines[0]).to end_with '-' end it 'should hyphenate text in table cell if hyphens attribute is set' do pdf = to_pdf <<~'EOS', analyze: true :hyphens: |=== |This story chronicles the inexplicable hazards and vicious beasts a team must conquer and vanquish. |=== EOS lines = pdf.lines (expect lines).to have_size 2 (expect lines[0]).to end_with ?\u00ad (expect lines[0].count ?\u00ad).to be 1 end it 'should hyphenate text in a list item if hyphens attribute is set' do pdf = to_pdf <<~'EOS', analyze: true :hyphens: * This story chronicles the inexplicable hazards and vicious beasts a team must conquer and vanquish. EOS lines = pdf.lines (expect lines).to have_size 2 (expect lines[0]).to end_with ?\u00ad (expect lines[0].count ?\u00ad).to be 1 end it 'should hyphenate formatted word' do pdf = to_pdf <<~'EOS', analyze: true :hyphens: This story chronicles the inexplicable hazards and vicious beasts a team must conquer and *vanquish* on the journey to discover the true power of Open Source. EOS lines = pdf.lines (expect lines).to have_size 2 (expect lines[0]).to end_with ?\u00ad (expect lines[0].count ?\u00ad).to be 1 bold_texts = pdf.find_text font_name: 'NotoSerif-Bold' (expect bold_texts).to have_size 2 (expect bold_texts[0][:string]).to eql %(van\u00ad) (expect bold_texts[1][:string]).to eql 'quish' (expect bold_texts[1][:y]).to be < bold_texts[0][:y] end it 'should not mangle formatting when hyphenating text' do (expect do pdf = to_pdf <<~'EOS', analyze: true :icons: font :hyphens: This story chronicles the inexplicable icon:biohazard@fas[] and vicious icon:paw@fas[] teams must conquer on the journey to discover the true power of Open Source. EOS lines = pdf.lines (expect lines).to have_size 2 (expect lines[0]).to end_with ?\u00ad (expect lines[0].count ?\u00ad).to be 1 (expect lines[0]).to include ?\uf780 (expect lines[0]).to include ?\uf1b0 end).to not_log_message end it 'should set hyphenation language based on value of hyphens attribute' do pdf = to_pdf <<~'EOS', analyze: true :hyphens: DE Mitwirkende sind immer willkommen. Neue Mitwirkende sind immer willkommen! Wenn Sie Fehler oder Auslassungen im Quellcode, in der Dokumentation oder im Inhalt der Website entdecken, zögern Sie bitte nicht, ein Problem zu melden oder eine Pull Request mit einem Fix zu öffnen. EOS lines = pdf.lines (expect lines).to have_size 3 (expect lines[0]).to end_with ?\u00ad (expect lines[0].count ?\u00ad).to be 1 end it 'should set hyphenation language based on value of lang attribute if value of hyphens attribute is empty' do pdf = to_pdf <<~'EOS', analyze: true :lang: DE :hyphens: Mitwirkende sind immer willkommen. Neue Mitwirkende sind immer willkommen! Wenn Sie Fehler oder Auslassungen im Quellcode, in der Dokumentation oder im Inhalt der Website entdecken, zögern Sie bitte nicht, ein Problem zu melden oder eine Pull Request mit einem Fix zu öffnen. EOS lines = pdf.lines (expect lines).to have_size 3 (expect lines[0]).to end_with ?\u00ad (expect lines[0].count ?\u00ad).to be 1 end it 'should apply hyphenation when line is advanced to next page' do pdf = to_pdf <<~'EOS', pdf_theme: { prose_margin_top: 700 }, analyze: true = Document Title :hyphens: foobarfoobarfoobarfoobarfoobarfoobarfoobarfoobarfoobarfoobarfoobarfoobarfoobarfoobar paragraph EOS lines = pdf.lines pdf.find_text page_number: 2 (expect lines).to have_size 2 (expect lines[0]).to end_with %( para\u00ad) (expect lines[1]).to eql 'graph' end it 'should show visible hyphen at locate where word is split across lines', visual: true do to_file = to_pdf_file <<~'EOS', 'hyphens-word-break.pdf' :hyphens: This story chronicles the inexplicable hazards and vicious beasts a team must conquer and vanquish. EOS (expect to_file).to visually_match 'hyphens-word-break.pdf' end end unless (Gem::Specification.stubs_for 'text-hyphen').empty? �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/icon_spec.rb��������������������������������������������������������0000664�0000000�0000000�00000012577�14163570564�0021021�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'spec_helper' describe 'Asciidoctor::PDF::Converter - Icon' do it 'should use icon name from specified icon set' do pdf = to_pdf <<~'EOS', analyze: true :icons: font :icon-set: fas A icon:wrench[] ought to fix it. EOS wink_text = pdf.find_text ?\uf0ad (expect wink_text).to have_size 1 (expect wink_text[0][:font_name]).to eql 'FontAwesome5Free-Solid' end it 'should support icon set as suffix on icon name' do pdf = to_pdf <<~'EOS', analyze: true :icons: font A icon:wrench@fas[] ought to fix it. EOS wink_text = pdf.find_text ?\uf0ad (expect wink_text).to have_size 1 (expect wink_text[0][:font_name]).to eql 'FontAwesome5Free-Solid' end it 'should support icon set as prefix on icon name' do pdf = to_pdf <<~'EOS', analyze: true :icons: font A icon:fas-wrench[] ought to fix it. EOS wink_text = pdf.find_text ?\uf0ad (expect wink_text).to have_size 1 (expect wink_text[0][:font_name]).to eql 'FontAwesome5Free-Solid' end it 'should support icon set as prefix on icon name even if icon set is configured globally' do pdf = to_pdf <<~'EOS', analyze: true :icons: font :icon-set: fab A icon:fas-wrench[] ought to fix it. EOS wink_text = pdf.find_text ?\uf0ad (expect wink_text).to have_size 1 (expect wink_text[0][:font_name]).to eql 'FontAwesome5Free-Solid' end it 'should not support icon set as prefix on icon name if explicit icon set is specified' do (expect do pdf = to_pdf <<~'EOS', analyze: true :icons: font A icon:fas-wrench[set=fab] ought to fix it. EOS wink_text = pdf.find_text ?\uf0ad (expect wink_text).to be_empty end).to log_message severity: :WARN, message: 'fas-wrench is not a valid icon name in the fab icon set' end it 'should reserve 1em of space for fw icon' do pdf = to_pdf <<~'EOS', analyze: true :icons: font :icon-set: fas *|* icon:arrows-alt-h[fw] *|* icon:arrows-alt-v[fw] *|* EOS guide_text = pdf.find_text string: '|', font_name: 'NotoSerif-Bold' first_icon_gap = (guide_text[1][:x] - guide_text[0][:x]).round 2 second_icon_gap = (guide_text[2][:x] - guide_text[1][:x]).round 2 (expect first_icon_gap).to eql second_icon_gap end it 'should align fw icon in center of 1em space', visual: true do to_file = to_pdf_file <<~'EOS', 'icon-fw.pdf' :icons: font :icon-set: fas *|* icon:arrows-alt-h[fw] *|* icon:arrows-alt-v[fw] *|* EOS (expect to_file).to visually_match 'icon-fw.pdf' end it 'should use icon name as alt text and warn if icon name not found in icon set' do [ ['icon:no-such-icon[set=fas]', 'no such icon'], ['icon:no-such-icon@fas[]', 'no such icon@fas'], ['icon:fas-no-such-icon[]', 'fas no such icon'], ].each do |macro, alt| (expect do pdf = to_pdf <<~EOS, analyze: true :icons: font #{macro} will surely fail. EOS text = pdf.text (expect text).to have_size 1 (expect text[0][:string]).to eql %([#{alt}] will surely fail.) end).to log_message severity: :WARN, message: 'no-such-icon is not a valid icon name in the fas icon set' end end it 'should remap legacy icon name if icon set is not specified and report remapping' do (expect do pdf = to_pdf <<~'EOS', analyze: true :icons: font Click the icon:hdd-o[] icon to see your files. EOS hdd_text = pdf.find_text ?\uf0a0 (expect hdd_text).to have_size 1 (expect hdd_text[0][:font_name]).to eql 'FontAwesome5Free-Regular' end).to log_message severity: :INFO, message: 'hdd-o icon found in deprecated fa icon set; using hdd from far icon set instead', using_log_level: :INFO end it 'should resolve non-legacy icon name if icon set is not specified and report icon set in which it was found' do (expect do pdf = to_pdf <<~'EOS', analyze: true :icons: font Time to upgrade your icon set icon:smile-wink[] EOS wink_text = pdf.find_text ?\uf4da (expect wink_text).to have_size 1 (expect wink_text[0][:font_name]).to eql 'FontAwesome5Free-Regular' end).to log_message severity: :INFO, message: 'smile-wink icon not found in deprecated fa icon set; using match found in far icon set instead', using_log_level: :INFO end it 'should apply styles from role to icon' do pdf = to_pdf <<~'EOS', pdf_theme: { role_red_font_color: 'FF0000' }, analyze: true :icons: font icon:heart[role=red] EOS heart_text = pdf.text[0] (expect heart_text[:string]).to eql ?\uf004 (expect heart_text[:font_name]).to eql 'FontAwesome5Free-Regular' (expect heart_text[:font_color]).to eql 'FF0000' end it 'should parse icon inside kbd macro' do pdf = to_pdf <<~'EOS', analyze: true :experimental: :icons: font :icon-set: fas Press kbd:[Alt,icon:arrow-up[\]] to move the line up. EOS keyseq_text = pdf.text.find_all {|candidate| ['Alt', %(\u202f+\u202f), ?\uf062].include? candidate[:string] } (expect keyseq_text.size).to be 3 (expect keyseq_text[0][:string]).to eql 'Alt' (expect keyseq_text[0][:font_name]).to eql 'mplus1mn-regular' (expect keyseq_text[1][:string]).to eql %(\u202f+\u202f) (expect keyseq_text[2][:string]).to eql ?\uf062 (expect keyseq_text[2][:font_name]).to eql 'FontAwesome5Free-Solid' end end ���������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/ignore-gem-warnings.rb����������������������������������������������0000664�0000000�0000000�00000000246�14163570564�0022724�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true module Warning module Processor def warn str super unless str.start_with?(*Gem.path) end end extend Processor end ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/image_spec.rb�������������������������������������������������������0000664�0000000�0000000�00000133512�14163570564�0021144�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'spec_helper' describe 'Asciidoctor::PDF::Converter - Image' do context 'imagesdir' do it 'should resolve target of block image relative to imagesdir', visual: true do to_file = to_pdf_file <<~'EOS', 'image-wolpertinger.pdf', attribute_overrides: { 'imagesdir' => examples_dir } image::wolpertinger.jpg[,144] EOS (expect to_file).to visually_match 'image-wolpertinger.pdf' end it 'should replace block image with alt text if image is missing' do (expect do pdf = to_pdf 'image::no-such-image.png[Missing Image]', analyze: true (expect pdf.lines).to eql ['[Missing Image] | no-such-image.png'] end).to log_message severity: :WARN, message: '~image to embed not found or not readable' end it 'should be able to customize formatting of alt text using theme' do pdf_theme = { image_alt_content: '%{alt} (%{target})' } (expect do pdf = to_pdf 'image::no-such-image.png[Missing Image]', pdf_theme: pdf_theme, analyze: true (expect pdf.lines).to eql ['Missing Image (no-such-image.png)'] end).to log_message severity: :WARN, message: '~image to embed not found or not readable' end it 'should warn instead of crash if block image is unreadable' do image_file = fixture_file 'logo.png' old_mode = (File.stat image_file).mode begin (expect do FileUtils.chmod 0o000, image_file pdf = to_pdf 'image::logo.png[Unreadable Image]', analyze: true (expect pdf.lines).to eql ['[Unreadable Image] | logo.png'] end).to log_message severity: :WARN, message: '~image to embed not found or not readable' ensure FileUtils.chmod old_mode, image_file end end unless windows? it 'should respect value of imagesdir if changed mid-document' do pdf = to_pdf <<~EOS, enable_footer: true, attributes: {} :imagesdir: #{fixtures_dir} image::tux.png[tux] :imagesdir: #{examples_dir} image::wolpertinger.jpg[wolpertinger] EOS (expect get_images pdf).to have_size 2 end end context 'Alignment' do it 'should not crash when converting block image if theme is blank' do image_data = File.binread example_file 'wolpertinger.jpg' pdf = to_pdf <<~'EOS', attribute_overrides: { 'pdf-theme' => (fixture_file 'extends-nil-empty-theme.yml'), 'imagesdir' => examples_dir } image::wolpertinger.jpg[] EOS images = get_images pdf, 1 (expect images).to have_size 1 (expect images[0].data).to eql image_data end it 'should align block image to value of align attribute on macro', visual: true do to_file = to_pdf_file <<~'EOS', 'image-align-right-attribute.pdf', attribute_overrides: { 'imagesdir' => examples_dir } image::wolpertinger.jpg[align=right] EOS (expect to_file).to visually_match 'image-align-right.pdf' end it 'should align block image to value of image_align key in theme if alignment not specified on image', visual: true do to_file = to_pdf_file <<~'EOS', 'image-align-right-theme.pdf', pdf_theme: { image_align: 'right' }, attribute_overrides: { 'imagesdir' => examples_dir } image::wolpertinger.jpg[] EOS (expect to_file).to visually_match 'image-align-right.pdf' end end context 'Width' do subject do asciidoctor_2_or_better? ? (Asciidoctor::Converter.create 'pdf') : (Asciidoctor::Converter::Factory.create 'pdf') end it 'should resolve pdfwidth in % to pt' do attrs = { 'pdfwidth' => '25%' } (expect subject.resolve_explicit_width attrs, 1000).to eql 250.0 end it 'should resolve pdfwidth in px to pt' do attrs = { 'pdfwidth' => '144px' } (expect subject.resolve_explicit_width attrs, 1000).to eql 108.0 end it 'should resolve pdfwidth in vw' do attrs = { 'pdfwidth' => '50vw' } result = subject.resolve_explicit_width attrs, 1000, support_vw: true (expect result.to_f).to eql 50.0 (expect result.singleton_class).to include Asciidoctor::PDF::Converter::ViewportWidth end it 'should resolve scaledwidth in % to pt' do attrs = { 'scaledwidth' => '25%' } (expect subject.resolve_explicit_width attrs, 1000).to eql 250.0 end it 'should resolve scaledwidth in px to pt' do attrs = { 'scaledwidth' => '144px' } (expect subject.resolve_explicit_width attrs, 1000).to eql 108.0 end it 'should resolve width in % to pt' do attrs = { 'width' => '25%' } (expect subject.resolve_explicit_width attrs, 1000).to eql 250.0 end it 'should resolve unitless width in px to pt' do attrs = { 'width' => '100' } (expect subject.resolve_explicit_width attrs, 1000).to eql 75.0 end it 'should size image using percentage width specified by pdfwidth', visual: true do to_file = to_pdf_file <<~'EOS', 'image-pdfwidth-percentage.pdf', attribute_overrides: { 'imagesdir' => examples_dir } image::wolpertinger.jpg[,144,pdfwidth=25%,scaledwidth=50%] EOS (expect to_file).to visually_match 'image-pdfwidth-percentage.pdf' end it 'should size image using percentage width specified by scaledwidth', visual: true do to_file = to_pdf_file <<~'EOS', 'image-scaledwidth-percentage.pdf', attribute_overrides: { 'imagesdir' => examples_dir } image::wolpertinger.jpg[,144,scaledwidth=25%] EOS (expect to_file).to visually_match 'image-pdfwidth-percentage.pdf' end it 'should size image using percentage width specified by width', visual: true do to_file = to_pdf_file <<~'EOS', 'image-width-percentage.pdf', attribute_overrides: { 'imagesdir' => examples_dir } image::wolpertinger.jpg[,144,width=25%] EOS (expect to_file).to visually_match 'image-pdfwidth-percentage.pdf' end it 'should scale image to width of page when pdfwidth=100vw and align-to-page option is set', visual: true do to_file = to_pdf_file <<~'EOS', 'image-full-width.pdf' image::square.png[pdfwidth=100vw,opts=align-to-page] EOS (expect to_file).to visually_match 'image-full-width.pdf' end it 'should scale down image if height exceeds available space', visual: true do to_file = to_pdf_file <<~'EOS', 'image-png-scale-to-fit.pdf' :pdf-page-layout: landscape image::tux.png[pdfwidth=100%] EOS (expect to_file).to visually_match 'image-png-scale-to-fit.pdf' end it 'should use the numeric width defined in the theme if an explicit width is not specified', visual: true do [72, '72'].each do |image_width| to_file = to_pdf_file <<~'EOS', 'image-numeric-fallback-width.pdf', pdf_theme: { image_width: image_width } image::tux.png[pdfwidth=204px] image::tux.png[,204] image::tux.png[] EOS (expect to_file).to visually_match 'image-numeric-fallback-width.pdf' end end it 'should use the percentage width defined in the theme if an explicit width is not specified', visual: true do to_file = to_pdf_file <<~'EOS', 'image-percentage-fallback-width.pdf', pdf_theme: { image_width: '50%' } image::tux.png[] EOS (expect to_file).to visually_match 'image-percentage-fallback-width.pdf' end end context 'SVG' do it 'should not leave gap around SVG that specifies viewBox but no width' do input = <<~'EOS' :pdf-page-size: 200x400 :pdf-page-margin: 0 image::square-viewbox-only.svg[] after EOS pdf = to_pdf input, analyze: :rect (expect pdf.rectangles).to have_size 1 (expect pdf.rectangles[0][:point]).to eql [0.0, 200.0] (expect pdf.rectangles[0][:width]).to eql 200.0 (expect pdf.rectangles[0][:height]).to eql 200.0 pdf = to_pdf input, analyze: true text = pdf.text (expect text).to have_size 1 (expect text[0][:string]).to eql 'after' (expect text[0][:y]).to eql 176.036 end it 'should not leave gap around constrained SVG that specifies viewBox but no width' do input = <<~'EOS' :pdf-page-size: 200x400 :pdf-page-margin: 0 image::square-viewbox-only.svg[pdfwidth=50%] after EOS pdf = to_pdf input, analyze: :rect (expect pdf.rectangles).to have_size 1 (expect pdf.rectangles[0][:point]).to eql [0.0, 200.0] (expect pdf.rectangles[0][:width]).to eql 200.0 (expect pdf.rectangles[0][:height]).to eql 200.0 pdf = to_pdf input, analyze: true text = pdf.text (expect text).to have_size 1 (expect text[0][:string]).to eql 'after' (expect text[0][:y]).to eql 276.036 end it 'should scale down SVG to fit bounds if width is set in SVG but not on image macro', visual: true do to_file = to_pdf_file 'image::green-bar-width.svg[]', 'image-svg-scale-to-fit-bounds.pdf' (expect to_file).to visually_match 'image-svg-scale-to-fit-bounds.pdf' end it 'should output fixed precision numbers even when set width differs to viewBox with small amount', visual: true do to_file = to_pdf_file 'image::green-bar-width-diff.svg[]', 'image-svg-fixed-precision.pdf' (expect to_file).to visually_match 'image-svg-fixed-precision.pdf' end it 'should display text inside link' do pdf = to_pdf <<~'EOS', analyze: true image::svg-with-link.svg[] EOS text = pdf.find_text 'Text with link' (expect text).to have_size 1 (expect text[0][:font_name]).to eql 'mplus1mn-regular' (expect text[0][:font_size].to_f).to eql 12.0 (expect text[0][:font_color]).to eql 'AA0000' end it 'should map font names in SVG to font names in document font catalog' do pdf = to_pdf <<~'EOS', analyze: true image::svg-with-text.svg[] EOS text = pdf.find_text 'This text uses a document font.' (expect text).to have_size 1 (expect text[0][:font_name]).to eql 'mplus1mn-regular' (expect text[0][:font_size].to_f).to eql 12.0 (expect text[0][:font_color]).to eql 'AA0000' end it 'should replace unrecognized font family with base font family' do pdf = to_pdf <<~'EOS', analyze: true image::svg-with-unknown-font.svg[] EOS text = pdf.find_text 'This text uses the default SVG font.' (expect text).to have_size 1 (expect text[0][:font_name]).to eql 'NotoSerif' (expect text[0][:font_size].to_f).to eql 12.0 (expect text[0][:font_color]).to eql 'AA0000' end it 'should map generic font family to AFM font by default' do pdf = to_pdf <<~'EOS', analyze: true image::svg-with-generic-font.svg[] EOS text = pdf.find_text 'This text uses the serif font.' (expect text).to have_size 1 (expect text[0][:font_name]).to eql 'Times-Roman' (expect text[0][:font_size].to_f).to eql 12.0 (expect text[0][:font_color]).to eql 'AA0000' end it 'should allow generic font family to be mapped in font catalog' do pdf_theme = build_pdf_theme pdf_theme[:font_catalog]['serif'] = { 'normal' => pdf_theme[:font_catalog]['Noto Serif']['normal'] } pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, analyze: true image::svg-with-generic-font.svg[] EOS text = pdf.find_text 'This text uses the serif font.' (expect text).to have_size 1 (expect text[0][:font_name]).to eql 'NotoSerif' (expect text[0][:font_size].to_f).to eql 12.0 (expect text[0][:font_color]).to eql 'AA0000' end it 'should replace unrecognized font family in SVG with SVG fallback font family if specified in theme' do [true, false].each do |block| pdf = to_pdf <<~EOS, pdf_theme: { svg_fallback_font_family: 'Times-Roman' }, analyze: true #{block ? '' : 'before'} image:#{block ? ':' : ''}svg-with-unknown-font.svg[pdfwidth=100%] #{block ? '' : 'after'} EOS text = pdf.find_text 'This text uses the default SVG font.' (expect text).to have_size 1 (expect text[0][:font_name]).to eql 'Times-Roman' (expect text[0][:font_size].to_f).to eql 12.0 (expect text[0][:font_color]).to eql 'AA0000' end end it 'should embed local image in inline image', visual: true do to_file = to_pdf_file <<~'EOS', 'image-svg-with-local-image.pdf' A sign of a good writer: image:svg-with-local-image.svg[] EOS (expect to_file).to visually_match 'image-svg-with-image.pdf' end it 'should embed local image in block image', visual: true do to_file = to_pdf_file <<~'EOS', 'image-block-svg-with-local-image.pdf' image::svg-with-local-image.svg[] EOS (expect to_file).to visually_match 'image-block-svg-with-image.pdf' end it 'should embed image from data-uri in inline image', visual: true do to_file = to_pdf_file <<~'EOS', 'image-svg-with-data-uri-image.pdf' A sign of a good writer: image:svg-with-data-uri-image.svg[] EOS (expect to_file).to visually_match 'image-svg-with-image.pdf' end it 'should embed image from data-uri in block image', visual: true do to_file = to_pdf_file <<~'EOS', 'image-block-svg-with-data-uri-image.pdf' image::svg-with-data-uri-image.svg[] EOS (expect to_file).to visually_match 'image-block-svg-with-image.pdf' end it 'should not embed remote image if allow allow-uri-read attribute is not set', visual: true do (expect do to_file = to_pdf_file <<~'EOS', 'image-svg-with-remote-image-disabled.pdf' A sign of a good writer: image:svg-with-remote-image.svg[] EOS (expect to_file).to visually_match 'image-svg-with-missing-image.pdf' end).to log_message severity: :WARN, message: %(~problem encountered in image: #{fixture_file 'svg-with-remote-image.svg'}; Error retrieving URL https://cdn.jsdelivr.net/gh/asciidoctor/asciidoctor-pdf@v1.5.0.rc.2/spec/fixtures/logo.png) end it 'should embed remote image if allow allow-uri-read attribute is set', visual: true, network: true do to_file = to_pdf_file <<~'EOS', 'image-svg-with-remote-image.pdf', attribute_overrides: { 'allow-uri-read' => '' } A sign of a good writer: image:svg-with-remote-image.svg[] EOS (expect to_file).to visually_match 'image-svg-with-image.pdf' end it 'should ignore inline option for SVG on image macro' do pdf = to_pdf <<~'EOS', analyze: :rect image::square.svg[pdfwidth=200pt,opts=inline] EOS (expect pdf.rectangles).to have_size 1 rect = pdf.rectangles[0] (expect rect[:point]).to eql [48.24, 605.89] (expect rect[:width]).to eql 200.0 (expect rect[:height]).to eql 200.0 end it 'should fail to embed broke SVG with warning' do { '::' => '[Broken SVG] | broken.svg', ':' => '[Broken SVG]' }.each do |macro_delim, alt_text| (expect do pdf = to_pdf %(image#{macro_delim}broken.svg[Broken SVG]), analyze: true (expect pdf.lines).to eql [alt_text] end).to log_message severity: :WARN, message: %(~could not embed image: #{fixture_file 'broken.svg'}; Missing end tag for 'rect') end end it 'should pass SVG warnings to logger' do { '::' => [48.24, 605.89], ':' => [48.24, 605.14] }.each do |macro_delim, point| (expect do pdf = to_pdf %(image#{macro_delim}faulty.svg[Faulty SVG]), analyze: :rect (expect pdf.rectangles).to have_size 1 rect = pdf.rectangles[0] (expect rect[:point]).to eql point (expect rect[:width]).to eql 200.0 (expect rect[:height]).to eql 200.0 end).to log_message severity: :WARN, message: %(~problem encountered in image: #{fixture_file 'faulty.svg'}; Unknown tag 'foobar') end end it 'should render linear gradient in SVG', visual: true do to_file = to_pdf_file 'image::gradient.svg[pdfwidth=100%]', 'image-svg-with-gradient.pdf' (expect to_file).to visually_match 'image-svg-with-gradient.pdf' end end context 'PNG' do it 'should embed PNG image', visual: true do to_file = to_pdf_file 'image::tux.png[]', 'image-png-implicit-width.pdf' (expect to_file).to visually_match 'image-png-implicit-width.pdf' end it 'should fail to embed interlaced PNG image with warning' do { '::' => '[Interlaced PNG] | interlaced.png', ':' => '[Interlaced PNG]' }.each do |macro_delim, alt_text| (expect do pdf = to_pdf %(image#{macro_delim}interlaced.png[Interlaced PNG]), analyze: true (expect pdf.lines).to eql [alt_text] end).to log_message severity: :WARN, message: %(could not embed image: #{fixture_file 'interlaced.png'}; PNG uses unsupported interlace method; install prawn-gmagick gem to add support) end end unless defined? GMagick::Image it 'should embed interlaced PNG image if prawn-gmagick is available' do ['::', ':'].each do |macro_delim| pdf = to_pdf %(image#{macro_delim}interlaced.png[Interlaced PNG]), analyze: :image (expect pdf.images).to have_size 1 end end if defined? GMagick::Image it 'should not suggest installing prawn-gmagick if gem has already been loaded' do ['::', ':'].each do |macro_delim| (expect do pdf = to_pdf %(image#{macro_delim}lorem-ipsum.yml[Unrecognized image format]), analyze: :image (expect pdf.images).to have_size 0 end).to log_message severity: :WARN, message: %(could not embed image: #{fixture_file 'lorem-ipsum.yml'}; image file is an unrecognised format) end end if defined? GMagick::Image end context 'BMP' do it 'should warn and replace block image with alt text if image format is unsupported' do (expect do pdf = to_pdf 'image::waterfall.bmp[Waterfall,240]', analyze: true (expect pdf.lines).to eql ['[Waterfall] | waterfall.bmp'] end).to log_message severity: :WARN, message: '~could not embed image' end unless defined? GMagick::Image it 'should embed BMP image if prawn-gmagick is available' do pdf = to_pdf 'image::waterfall.bmp[Waterfall,240]', analyze: :image (expect pdf.images).to have_size 1 image = pdf.images[0] (expect image[:implicit_width]).to eql 240 (expect image[:width]).to eql 180.0 end if defined? GMagick::Image end context 'PDF' do it 'should insert page at location of block macro if target is a PDF' do pdf = to_pdf <<~'EOS', enable_footer: true, analyze: true before image::blue-letter.pdf[] after EOS pages = pdf.pages (expect pages).to have_size 3 (expect pages[0][:size]).to eql PDF::Core::PageGeometry::SIZES['A4'] (expect pages[0][:text][-1][:string]).to eql '1' (expect pages[1][:size].map(&:to_f)).to eql PDF::Core::PageGeometry::SIZES['LETTER'] # NOTE no running content on imported pages (expect pages[1][:text]).to be_empty (expect pages[2][:text][-1][:string]).to eql '3' end it 'should replace empty page at location of block macro if target is a PDF' do pdf = to_pdf <<~'EOS', enable_footer: true, analyze: true :page-background-image: image:bg.png[] before <<< image::blue-letter.pdf[] <<< after EOS pages = pdf.pages (expect pages).to have_size 3 (expect pages[0][:size]).to eql PDF::Core::PageGeometry::SIZES['A4'] (expect pages[0][:text][-1][:string]).to eql '1' (expect pages[1][:size].map(&:to_f)).to eql PDF::Core::PageGeometry::SIZES['LETTER'] # NOTE no running content on imported pages (expect pages[1][:text]).to be_empty (expect pages[2][:text][-1][:string]).to eql '3' end it 'should only import first page of multi-page PDF file by default' do pdf = to_pdf 'image::red-green-blue.pdf[]' (expect pdf.pages).to have_size 1 page_contents = pdf.objects[(pdf.page 1).page_object[:Contents][0]].data (expect (page_contents.split ?\n).slice 0, 3).to eql ['q', '/DeviceRGB cs', '1.0 0.0 0.0 scn'] end it 'should import specified page from PDF file' do pdf = to_pdf 'image::red-green-blue.pdf[page=2]' (expect pdf.pages).to have_size 1 page_contents = pdf.objects[(pdf.page 1).page_object[:Contents][0]].data (expect (page_contents.split ?\n).slice 0, 3).to eql ['q', '/DeviceRGB cs', '0.0 1.0 0.0 scn'] end it 'should not insert blank page between consecutive PDF page imports' do pdf = to_pdf <<~'EOS' image::red-green-blue.pdf[page=1] image::red-green-blue.pdf[page=2] EOS (expect pdf.pages).to have_size 2 p1_contents = pdf.objects[(pdf.page 1).page_object[:Contents][0]].data (expect (p1_contents.split ?\n).slice 0, 3).to eql ['q', '/DeviceRGB cs', '1.0 0.0 0.0 scn'] p2_contents = pdf.objects[(pdf.page 2).page_object[:Contents][0]].data (expect (p2_contents.split ?\n).slice 0, 3).to eql ['q', '/DeviceRGB cs', '0.0 1.0 0.0 scn'] end it 'should insert all pages specified by pages attribute without leaving blank pages in between' do pdf = to_pdf <<~'EOS' image::red-green-blue.pdf[pages=3;1..2] EOS (expect pdf.pages).to have_size 3 p1_contents = pdf.objects[(pdf.page 1).page_object[:Contents][0]].data (expect (p1_contents.split ?\n).slice 0, 3).to eql ['q', '/DeviceRGB cs', '0.0 0.0 1.0 scn'] p2_contents = pdf.objects[(pdf.page 2).page_object[:Contents][0]].data (expect (p2_contents.split ?\n).slice 0, 3).to eql ['q', '/DeviceRGB cs', '1.0 0.0 0.0 scn'] p3_contents = pdf.objects[(pdf.page 3).page_object[:Contents][0]].data (expect (p3_contents.split ?\n).slice 0, 3).to eql ['q', '/DeviceRGB cs', '0.0 1.0 0.0 scn'] end it 'should add destination to top of imported page if ID is specified' do pdf = to_pdf <<~'EOS' go to <<red>> .Red Page [#red] image::red-green-blue.pdf[page=1] EOS (expect get_names pdf).to have_key 'red' annotations = get_annotations pdf, 1 (expect annotations).to have_size 1 (expect annotations[0][:Dest]).to eql 'red' (expect (pdf.page 1).text).to include 'Red Page' end it 'should add destination to top of first import page if ID is specified' do pdf = to_pdf <<~'EOS' go to <<red>> .Red Page [#red] image::red-green-blue.pdf[pages=1..3] EOS (expect get_names pdf).to have_key 'red' annotations = get_annotations pdf, 1 (expect annotations).to have_size 1 (expect annotations[0][:Dest]).to eql 'red' (expect (pdf.page 1).text).to include 'Red Page' end end context 'Data URI' do it 'should embed block image if target is a JPG data URI' do image_data = File.binread fixture_file 'square.jpg' encoded_image_data = Base64.strict_encode64 image_data pdf = to_pdf %(image::data:image/jpg;base64,#{encoded_image_data}[]) images = get_images pdf, 1 (expect images).to have_size 1 (expect images[0].hash[:Width]).to be 5 (expect images[0].hash[:Height]).to be 5 (expect images[0].data).to eql image_data end it 'should embed block image if target is an SVG data URI' do image_data = File.read (fixture_file 'square.svg'), mode: 'r:UTF-8' encoded_image_data = Base64.strict_encode64 image_data pdf = to_pdf %(image::data:image/svg+xml;base64,#{encoded_image_data}[]), analyze: :rect (expect pdf.rectangles).to have_size 1 end it 'should embed inline image if target is a JPG data URI' do image_data = File.binread fixture_file 'square.jpg' encoded_image_data = Base64.strict_encode64 image_data pdf = to_pdf %(image:data:image/jpg;base64,#{encoded_image_data}[] base64) images = get_images pdf, 1 (expect images).to have_size 1 (expect images[0].hash[:Width]).to be 5 (expect images[0].hash[:Height]).to be 5 (expect images[0].data).to eql image_data end it 'should embed inline image if target is an SVG data URI' do image_data = File.read (fixture_file 'square.svg'), mode: 'r:UTF-8' encoded_image_data = Base64.strict_encode64 image_data pdf = to_pdf %(image:data:image/svg+xml;base64,#{encoded_image_data}[]), analyze: :rect (expect pdf.rectangles).to have_size 1 end end context 'Remote' do it 'should warn if image is remote and allow-uri-read is not set' do (expect do image_url = nil pdf = with_local_webserver do |base_url| image_url = %(#{base_url}/logo.png) to_pdf %(image::#{image_url}[Remote Image]), analyze: true end (expect pdf.lines).to eql [%([Remote Image] | #{image_url})] end).to log_message severity: :WARN, message: '~allow-uri-read is not enabled; cannot embed remote image' end it 'should read remote image if allow-uri-read is set' do converter, pdf = with_local_webserver do |base_url| doc = to_pdf %(image::#{base_url}/logo.png[Remote Image]), analyze: :document, to_file: (pdf_io = StringIO.new), attribute_overrides: { 'allow-uri-read' => '' } [doc.converter, (PDF::Reader.new pdf_io)] end images = get_images pdf, 1 (expect images).to have_size 1 (expect (pdf.page 1).text).to be_empty # NOTE: we could assert no log messages instead, but that assumes the remove_tmp_files method is even called (expect converter.instance_variable_get :@tmp_files).to be_empty end it 'should only read remote image once if allow-uri-read is set' do pdf = with_local_webserver do |base_url, thr| image_macro = %(image::#{base_url}/logo.png[Remote Image]) result = to_pdf <<~EOS, attribute_overrides: { 'allow-uri-read' => '' } #{image_macro} ==== #{image_macro} ==== EOS requests = thr[:requests] (expect requests).to have_size 1 (expect requests[0]).to include '/logo.png' result end images = get_images pdf, 1 (expect images).to have_size 2 (expect (pdf.page 1).text).to be_empty end it 'should only read missing remote image once if allow-uri-read is set' do with_local_webserver do |base_url, thr| image_url = %(#{base_url}/no-such-image.png) (expect do image_macro = %(image::#{image_url}[Remote Image]) pdf = to_pdf <<~EOS, attribute_overrides: { 'allow-uri-read' => '' } #{image_macro} ==== #{image_macro} ==== EOS requests = thr[:requests] (expect requests).to have_size 1 (expect requests[0]).to include '/no-such-image.png' images = get_images pdf, 1 (expect images).to have_size 0 text = (pdf.page 1).text (expect (text.scan %([Remote Image] | #{image_url})).size).to eql 2 end).to log_message severity: :WARN, message: %(~could not retrieve remote image: #{image_url}; 404 Not Found) end end it 'should read same remote image for each unique query string if allow-uri-read is set' do with_local_webserver do |base_url, thr| pdf = to_pdf <<~EOS, attribute_overrides: { 'allow-uri-read' => '' } image::#{base_url}/logo.png?v=1[Remote Image,format=png] image::#{base_url}/logo.png?v=2[Remote Image,format=png] EOS requests = thr[:requests] (expect requests).to have_size 2 (expect requests[0]).to include '/logo.png?v=1' (expect requests[1]).to include '/logo.png?v=2' images = get_images pdf, 1 (expect images).to have_size 2 (expect (pdf.page 1).text).to be_empty end end it 'should read remote image over HTTPS if allow-uri-read is set', network: true do pdf = to_pdf 'image::https://cdn.jsdelivr.net/gh/asciidoctor/asciidoctor-pdf@v1.5.0.rc.2/spec/fixtures/logo.png[Remote Image]', attribute_overrides: { 'allow-uri-read' => '' } images = get_images pdf, 1 (expect images).to have_size 1 (expect (pdf.page 1).text).to be_empty end it 'should log warning if remote image cannot be fetched' do with_local_webserver do |base_url| image_url = %(#{base_url}/no-such-image.png) (expect do pdf = to_pdf %(image::#{image_url}[No Such Image]), attribute_overrides: { 'allow-uri-read' => '' }, analyze: true (expect pdf.lines).to eql [%([No Such Image] | #{image_url})] end).to log_message severity: :WARN, message: %(~could not retrieve remote image: #{image_url}; 404 Not Found) end end it 'should use image format specified by format attribute' do pdf = with_local_webserver do |base_url| to_pdf <<~EOS, attribute_overrides: { 'allow-uri-read' => '' }, analyze: :rect :pdf-page-size: 200x400 :pdf-page-margin: 0 image::#{base_url}/square.svg?v=1[format=svg,pdfwidth=100%] EOS end (expect pdf.rectangles).to have_size 1 rect = pdf.rectangles[0] (expect rect[:point]).to eql [0.0, 200.0] (expect rect[:width]).to eql 200.0 (expect rect[:height]).to eql 200.0 end context 'Cache' do before :context do (expect defined? OpenURI::Cache).to be_falsy with_local_webserver do |base_url| to_pdf %(image::#{base_url}/logo.png[]), attribute_overrides: { 'allow-uri-read' => '', 'cache-uri' => '' } end (expect defined? OpenURI::Cache).to be_truthy OpenURI::Cache.cache_path = output_file 'open-uri-cache' end after :context do OpenURI.singleton_class.send :remove_method, :open_uri OpenURI.singleton_class.send :alias_method, :open_uri, :original_open_uri end before do FileUtils.rm_r OpenURI::Cache.cache_path, force: true, secure: true end it 'should cache remote image if cache-uri document attribute is set' do with_local_webserver do |base_url, thr| image_url = %(#{base_url}/logo.png) (expect OpenURI::Cache.get image_url).to be_nil 2.times do pdf = to_pdf %(image::#{image_url}[Remote Image]), attribute_overrides: { 'allow-uri-read' => '', 'cache-uri' => '' } requests = thr[:requests] (expect requests).to have_size 1 (expect requests[0]).to include '/logo.png' (expect OpenURI::Cache.get image_url).not_to be_nil images = get_images pdf, 1 (expect images).to have_size 1 (expect (pdf.page 1).text).to be_empty end OpenURI::Cache.invalidate image_url end end end unless (Gem::Specification.stubs_for 'open-uri-cached').empty? end context 'Inline' do it 'should resolve target of inline image relative to imagesdir', visual: true do to_file = to_pdf_file <<~'EOS', 'image-inline.pdf', attribute_overrides: { 'imagesdir' => examples_dir } image:sample-logo.jpg[ACME,12] ACME products are the best! EOS (expect to_file).to visually_match 'image-inline.pdf' end it 'should replace inline image with alt text if image is missing' do (expect do pdf = to_pdf 'You cannot see that which is image:not-there.png[not there].', analyze: true (expect pdf.lines).to eql ['You cannot see that which is [not there].'] end).to log_message severity: :WARN, message: '~image to embed not found or not readable' end it 'should only render inline image once if alt text is chunked to apply a fallback font' do pdf = to_pdf <<~'EOS', attribute_overrides: { 'imagesdir' => examples_dir, 'pdf-theme' => 'default-with-fallback-font' }, analyze: :image How many wolpertingers do you see? + image:wolpertinger.jpg[チのデータレプリケーションです。] EOS (expect pdf.images).to have_size 1 end it 'should warn instead of crash if inline image is unreadable' do image_file = fixture_file 'logo.png' old_mode = (File.stat image_file).mode begin (expect do FileUtils.chmod 0o000, image_file pdf = to_pdf 'image:logo.png[Unreadable Image,16] Company Name', analyze: true (expect pdf.lines).to eql ['[Unreadable Image] Company Name'] end).to log_message severity: :WARN, message: '~image to embed not found or not readable' ensure FileUtils.chmod old_mode, image_file end end unless windows? # NOTE this test also verifies space is allocated for an inline image at the start of a line it 'should convert multiple images on the same line', visual: true do to_file = to_pdf_file <<~'EOS', 'image-multiple-inline.pdf' image:logo.png[Asciidoctor,12] is developed on image:tux.png[Linux,12]. EOS (expect to_file).to visually_match 'image-multiple-inline.pdf' end it 'should not mangle character spacing in line if inline image wraps', visual: true do to_file = to_pdf_file <<~'EOS', 'image-wrap-inline.pdf' [cols="30e,58,12",width=75%] |=== |Name |Description |Min # data points |Confidence interval of the mean |The confidence interval of the mean is image:equation.svg[width=118], where image:symbol-m.svg[width=11] is the mean, image:symbol-s.svg[width=6] is the estimated sample standard deviation, and so on. |2 |Confidence interval of the mean a|The confidence interval of the mean is image:equation.svg[width=118], where image:symbol-m.svg[width=11] is the mean, image:symbol-s.svg[width=6] is the estimated sample standard deviation, and so on. |2 |=== EOS (expect to_file).to visually_match %(image-wrap-inline#{asciidoctor_1_5_7_or_better? ? '' : '-legacy'}.pdf) end it 'should increase line height if height if image height is more than 1.5x line height', visual: true do to_file = to_pdf_file <<~'EOS', 'image-inline-extends-line-height.pdf' see tux run + see image:tux.png[tux] run + see tux run EOS (expect to_file).to visually_match 'image-inline-extends-line-height.pdf' end it 'should not increase line height if image height does not exceed 1.5x line height' do pdf = to_pdf <<~'EOS', analyze: true see tux run + see tux run + see image:tux.png[tux,24] run EOS text = pdf.text line1_spacing = (text[0][:y] - text[1][:y]).round 2 line2_spacing = (text[1][:y] - text[2][:y]).round 2 (expect line1_spacing).to eql line2_spacing end it 'should scale image down to fit available height', visual: true do to_file = to_pdf_file <<~'EOS', 'image-inline-scale-down.pdf' :pdf-page-size: A6 :pdf-page-layout: landscape image:cover.jpg[] EOS (expect to_file).to visually_match 'image-inline-scale-down.pdf' end it 'should scale image down to fit line if fit=line', visual: true do to_file = to_pdf_file <<~'EOS', 'image-inline-fit-line.pdf' See image:tux.png[fit=line] run. EOS (expect to_file).to visually_match 'image-inline-fit-line.pdf' end it 'should not alter character spacing of text in inline SVG image', visual: true do to_file = to_pdf_file <<~'EOS', 'image-inline-svg-with-text.pdf' before image:svg-with-text.svg[width=200] after EOS (expect to_file).to visually_match 'image-inline-svg-with-text.pdf' end end context 'Link' do it 'should add link around block raster image if link attribute is set' do pdf = to_pdf <<~'EOS' image::tux.png[pdfwidth=1in,link=https://www.linuxfoundation.org/projects/linux/] EOS annotations = get_annotations pdf, 1 (expect annotations).to have_size 1 link_annotation = annotations[0] (expect link_annotation[:Subtype]).to be :Link (expect link_annotation[:A][:URI]).to eql 'https://www.linuxfoundation.org/projects/linux/' link_rect = link_annotation[:Rect] (expect (link_rect[2] - link_rect[0]).round 1).to eql 72.0 (expect (link_rect[3] - link_rect[1]).round 1).to eql 84.7 (expect link_rect[0]).to eql 48.24 end it 'should add link around block SVG image if link attribute is set' do pdf = to_pdf <<~'EOS' image::square.svg[pdfwidth=1in,link=https://example.org] EOS annotations = get_annotations pdf, 1 (expect annotations).to have_size 1 link_annotation = annotations[0] (expect link_annotation[:Subtype]).to be :Link (expect link_annotation[:A][:URI]).to eql 'https://example.org' link_rect = link_annotation[:Rect] (expect (link_rect[2] - link_rect[0]).round 1).to eql 72.0 (expect (link_rect[3] - link_rect[1]).round 1).to eql 72.0 (expect link_rect[0]).to eql 48.24 end it 'should use link in alt text if image is missing' do (expect do pdf = to_pdf 'image::no-such-image.png[Missing Image,link=https://example.org]' text = (pdf.page 1).text (expect text).to eql '[Missing Image] | no-such-image.png' annotations = get_annotations pdf, 1 (expect annotations).to have_size 1 link_annotation = annotations[0] (expect link_annotation[:Subtype]).to be :Link (expect link_annotation[:A][:URI]).to eql 'https://example.org' end).to log_message severity: :WARN, message: '~image to embed not found or not readable' end it 'should add link around inline image if link attribute is set' do pdf = to_pdf <<~'EOS', attribute_overrides: { 'imagesdir' => examples_dir } image:sample-logo.jpg[ACME,pdfwidth=12pt,link=https://example.org] is a sign of quality! EOS annotations = get_annotations pdf, 1 (expect annotations).to have_size 1 link_annotation = annotations[0] (expect link_annotation[:Subtype]).to be :Link (expect link_annotation[:A][:URI]).to eql 'https://example.org' link_rect = link_annotation[:Rect] (expect (link_rect[2] - link_rect[0]).round 1).to eql 12.0 (expect (link_rect[3] - link_rect[1]).round 1).to eql 14.3 (expect link_rect[0]).to eql 48.24 end it 'should add link around inline image if image macro is enclosed in link macro' do pdf = to_pdf <<~'EOS', attribute_overrides: { 'imagesdir' => examples_dir } https://example.org[image:sample-logo.jpg[ACME,pdfwidth=1pc]] is a sign of quality! EOS annotations = get_annotations pdf, 1 (expect annotations).to have_size 1 link_annotation = annotations[0] (expect link_annotation[:Subtype]).to be :Link (expect link_annotation[:A][:URI]).to eql 'https://example.org' link_rect = link_annotation[:Rect] (expect (link_rect[2] - link_rect[0]).round 1).to eql 12.0 (expect (link_rect[3] - link_rect[1]).round 1).to eql 14.3 (expect link_rect[0]).to eql 48.24 end end context 'Caption' do it 'should render caption under an image with a title' do input = <<~'EOS' .Tux, the Linux mascot image::tux.png[tux] EOS pdf = to_pdf input, analyze: :image images = pdf.images (expect images).to have_size 1 image_bottom = images[0][:y] - images[0][:height] pdf = to_pdf input, analyze: true text = pdf.text (expect text).to have_size 1 caption_text = text[0] (expect caption_text[:string]).to eql 'Figure 1. Tux, the Linux mascot' (expect caption_text[:font_name]).to eql 'NotoSerif-Italic' (expect caption_text[:y]).to be < image_bottom end it 'should show caption for missing image' do (expect do pdf = to_pdf <<~'EOS', analyze: true .A missing image image::no-such-image.png[Missing Image] EOS (expect pdf.lines).to eql ['[Missing Image] | no-such-image.png', 'Figure 1. A missing image'] end).to log_message severity: :WARN, message: '~image to embed not found or not readable' end it 'should keep caption on same page as image when image exceeds height of page' do pdf = to_pdf <<~'EOS' = Document Title .Image caption image::tall-diagram.png[Tall diagram] EOS (expect get_images pdf, 2).to have_size 1 (expect pdf.pages[1].text).to eql 'Figure 1. Image caption' end it 'should scale down SVG at top of page to fit image and caption if dimensions exceed page size', visual: true do to_file = to_pdf_file <<~EOS, 'image-svg-with-caption-scale-to-fit-page.pdf' :pdf-page-size: Letter .#{(['title text'] * 15).join ' '} image::watermark.svg[pdfwidth=100%] EOS (expect to_file).to visually_match 'image-svg-with-caption-scale-to-fit-page.pdf' end it 'should set caption align to image align if theme sets caption align to inherit' do pdf_theme = { image_caption_align: 'inherit', } pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, attribute_overrides: { 'imagesdir' => examples_dir }, analyze: true .Behold, the great Wolpertinger! image::wolpertinger.jpg[,144,align=right] EOS midpoint = (get_page_size pdf)[0] * 0.5 (expect pdf.text[0][:x]).to be > midpoint end it 'should restrict caption width to specified percentage of available width if max-width is percentage value' do pdf_theme = { image_caption_align: 'center', image_caption_max_width: '25%', } pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, analyze: true .This is a picture of our beloved Tux. image::tux.png[] EOS midpoint = (get_page_size pdf, 1)[0] * 0.5 (expect pdf.lines).to eql ['Figure 1. This is a picture', 'of our beloved Tux.'] first_line_text, second_line_text = pdf.text (expect first_line_text[:x]).to be > 48.24 (expect first_line_text[:x] + first_line_text[:width]).to be > midpoint (expect second_line_text[:x]).to be > first_line_text[:x] end it 'should restrict caption width to width of image if max-width is fit-content' do pdf_theme = { image_caption_align: 'inherit', image_caption_max_width: 'fit-content', } input = <<~'EOS' .This is a picture of our beloved Tux. image::tux.png[align=right] EOS pdf = to_pdf input, pdf_theme: pdf_theme, analyze: :image images = pdf.images (expect images).to have_size 1 tux_image = images[0] pdf = to_pdf input, pdf_theme: pdf_theme, analyze: true caption_texts = pdf.text (expect caption_texts).to have_size 2 caption_text_l1, caption_text_l2 = caption_texts (expect caption_text_l1[:y]).to be > caption_text_l2[:y] (expect caption_text_l1[:string]).to start_with 'Figure 1.' (expect caption_text_l1[:width]).to be < tux_image[:width] (expect caption_text_l2[:width]).to be < tux_image[:width] (expect caption_text_l1[:x]).to be > tux_image[:x] (expect caption_text_l2[:x]).to be > caption_text_l1[:x] (expect caption_text_l1[:x] + caption_text_l1[:width]).to be_within(1).of caption_text_l2[:x] + caption_text_l2[:width] end it 'should align caption within width of image if alignment is fixed and max-width is fit-content' do pdf_theme = { image_caption_align: 'left', image_caption_max_width: 'fit-content', } input = <<~'EOS' .This is a picture of our beloved Tux. image::tux.png[align=right] EOS pdf = to_pdf input, pdf_theme: pdf_theme, analyze: :image images = pdf.images (expect images).to have_size 1 tux_image = images[0] pdf = to_pdf input, pdf_theme: pdf_theme, analyze: true caption_texts = pdf.text (expect caption_texts).to have_size 2 caption_text_l1, caption_text_l2 = caption_texts (expect caption_text_l1[:y]).to be > caption_text_l2[:y] (expect caption_text_l1[:string]).to start_with 'Figure 1.' (expect caption_text_l1[:width]).to be < tux_image[:width] (expect caption_text_l2[:width]).to be < tux_image[:width] (expect caption_text_l1[:x]).to eql tux_image[:x] (expect caption_text_l2[:x]).to eql caption_text_l1[:x] end end context 'Border' do it 'should draw border around PNG image if border width and border color are set in the theme', visual: true do pdf_theme = { image_border_width: 0.5, image_border_color: 'DDDDDD', image_border_radius: 2, } to_file = to_pdf_file <<~'EOS', 'image-border.pdf', pdf_theme: pdf_theme .Tux image::tux.png[align=center] EOS (expect to_file).to visually_match 'image-border.pdf' end it 'should stretch border around PNG image to bounds if border align key is justify', visual: true do pdf_theme = { image_border_width: 0.5, image_border_color: 'DDDDDD', image_border_radius: 2, image_border_fit: 'auto', } to_file = to_pdf_file <<~'EOS', 'image-border-fit-page.pdf', pdf_theme: pdf_theme .Tux image::tux.png[align=center] EOS (expect to_file).to visually_match 'image-border-fit-page.pdf' end it 'should draw border around SVG if border width and border color are set in the theme', visual: true do pdf_theme = { image_border_width: 1, image_border_color: '000000', } to_file = to_pdf_file <<~'EOS', 'image-svg-border.pdf', pdf_theme: pdf_theme .Square image::square.svg[align=center,pdfwidth=25%] EOS (expect to_file).to visually_match 'image-svg-border.pdf' end it 'should stretch border around SVG to bounds if border align key is justify', visual: true do pdf_theme = { image_border_width: 1, image_border_color: '000000', image_border_fit: 'auto', } to_file = to_pdf_file <<~'EOS', 'image-svg-border-fit-page.pdf', pdf_theme: pdf_theme .Square image::square.svg[align=center,pdfwidth=25%] EOS (expect to_file).to visually_match 'image-svg-border-fit-page.pdf' end it 'should not draw border around image if noborder role is present', visual: true do pdf_theme = { image_border_width: 1, image_border_color: '000000', } to_file = to_pdf_file <<~'EOS', 'image-noborder.pdf', pdf_theme: pdf_theme, attribute_overrides: { 'imagesdir' => examples_dir } image::wolpertinger.jpg[,144,role=specimen noborder] EOS (expect to_file).to visually_match 'image-wolpertinger.pdf' end end end ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/index_spec.rb�������������������������������������������������������0000664�0000000�0000000�00000020604�14163570564�0021166�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'spec_helper' describe 'Asciidoctor::PDF::Converter - Index' do it 'should not add index entries to the document if an index section is not present' do pdf = to_pdf <<~'EOS', analyze: true You can add a ((visible index entry)) to your document by surrounding it in double round brackets. EOS (expect pdf.find_text 'visible index entry').to be_empty end it 'should add the index entries to the section with the index style' do pdf = to_pdf <<~'EOS', doctype: :book, analyze: true = Document Title == Chapter About Cats We know that ((cats)) control the internet. But they sort of run nature too. (((cats,big cats,lion))) After all, the ((king of the jungle)) is the lion, which is a big cat. == Chapter About Dogs Cats may rule, well, everything. But ((dogs)) are a human's best friend. [index] == Index EOS index_text = pdf.find_text string: 'Index', page_number: 4, font_size: 22 (expect index_text).to have_size 1 category_c_text = pdf.find_text string: 'C', page_number: 4 (expect category_c_text).to have_size 1 (expect category_c_text[0][:font_name].downcase).to include 'bold' category_d_text = pdf.find_text string: 'D', page_number: 4 (expect category_d_text).to have_size 1 (expect category_d_text[0][:font_name].downcase).to include 'bold' category_k_text = pdf.find_text string: 'K', page_number: 4 (expect category_k_text).to have_size 1 (expect category_k_text[0][:font_name].downcase).to include 'bold' (expect (pdf.lines pdf.find_text page_number: 4).join ?\n).to eql <<~'EOS'.chomp Index C cats, 1 big cats lion, 1 D dogs, 2 K king of the jungle, 1 EOS end it 'should not add index entries in delimited block to index twice' do pdf = to_pdf <<~'EOS', doctype: :book, analyze: true = Document Title == Chapter about Cats We know that ((cats)) control the internet. But they sort of run nature too. (((cats,big cats,lion))) After all, the ((king of the jungle)) is the lion, which is a big cat. .Dogs **** Cats may rule, well, everything. But ((dogs)) are a human's best friend. **** [index] == Index EOS index_text = pdf.find_text string: 'Index', page_number: 3, font_size: 22 (expect index_text).to have_size 1 (expect pdf.lines).to include 'dogs, 1' end it 'should create link from entry in index to location of term' do input = <<~'EOS' = Document Title :doctype: book == Chapter About Dogs Cats may rule, well, everything. But ((dogs)) are a human's best friend. [index] == Index EOS pdf = to_pdf input, analyze: true dogs_text = (pdf.find_text 'dogs are a human’s best friend.')[0] pdf = to_pdf input annotations = get_annotations pdf, 3 (expect annotations).to have_size 1 dest = annotations[0][:Dest] names = get_names pdf (expect names).to have_key dest (expect pdf.objects[names[dest]][2]).to eql dogs_text[:x] term_pgnum = get_page_number pdf, pdf.objects[pdf.objects[names[dest]][0]] (expect term_pgnum).to be 2 end it 'should not assign number or chapter label to index section' do pdf = to_pdf <<~'EOS', doctype: :book, analyze: true = Cats & Dogs :sectnums: == Cats We know that ((cats)) control the internet. == Dogs Cats may rule, well, everything. But ((dogs)) are a human's best friend. [index] == Index EOS index_text = pdf.find_text string: 'Chapter 3. Index', page_number: 4 (expect index_text).to be_empty index_text = pdf.find_text string: 'Index', page_number: 4 (expect index_text).to have_size 1 end it 'should generate anchor names for indexterms which are reproducible between runs' do input = <<~'EOS' = Cats & Dogs :reproducible: == Cats We know that ((cats)) control the internet. == Dogs Cats may rule, well, everything. But ((dogs)) are a human's best friend. [index] == Index EOS to_file_a = to_pdf_file input, 'index-reproducible-a.pdf', doctype: :book to_file_b = to_pdf_file input, 'index-reproducible-b.pdf', doctype: :book (expect FileUtils.compare_file to_file_a, to_file_b).to be true end it 'should not automatically promote nested index terms' do pdf = to_pdf <<~'EOS', doctype: :book, analyze: true = Document Title == Big Cats (((cats,big cats))) (((cats,big cats,lion))) The king of the jungle is the lion, which is a big cat. [index] == Index EOS category_c_text = pdf.find_text string: 'C', page_number: 3 (expect category_c_text).to have_size 1 (expect category_c_text[0][:font_name].downcase).to include 'bold' category_b_text = pdf.find_text string: 'B', page_number: 3 (expect category_b_text).to be_empty category_l_text = pdf.find_text string: 'L', page_number: 3 (expect category_l_text).to be_empty (expect (pdf.lines pdf.find_text page_number: 3).join ?\n).to eql <<~'EOS'.chomp Index C cats big cats, 1 lion, 1 EOS end it 'should group index entries that start with symbol under symbol category' do pdf = to_pdf <<~'EOS', doctype: :book, analyze: true = Document Title == Symbols Use the ((@Transactional)) annotation to mark a bean as transactional. Use the ((©)) symbol to indicate the copyright. [index] == Index EOS (expect (pdf.lines pdf.find_text page_number: 3).join ?\n).to eql <<~'EOS'.chomp Index @ @Transactional, 1 ©, 1 EOS end it 'should not put letters outside of ASCII charset in symbol category' do pdf = to_pdf <<~'EOS', doctype: :book, analyze: true = Document Title == Unicode Party ((étudier)) means to study. Use a ((λ)) to define a lambda function. [index] == Index EOS (expect (pdf.lines pdf.find_text page_number: 3).join ?\n).to eql <<~'EOS'.chomp Index É étudier, 1 Λ λ, 1 EOS end it 'should sort terms in index, ignoring case' do pdf = to_pdf <<~'EOS', analyze: true = Document Title :doctype: book == Chapter A ((AsciiDoc)) is a lightweight markup language. It is used for content ((authoring)). == Chapter B ((Asciidoctor)) is an AsciiDoc processor. == Chapter C If an element has an ((anchor)), you can link to it. [index] == Index EOS index_pagenum = (pdf.find_text 'Index')[0][:page_number] index_page_lines = pdf.lines pdf.find_text page_number: index_pagenum terms = index_page_lines.select {|it| it.include? ',' }.map {|it| (it.split ',', 2)[0] } (expect terms).to eql %w(anchor AsciiDoc Asciidoctor authoring) end it 'should not combine range if same index entry occurs on sequential pages when media is screen' do pdf = to_pdf <<~'EOS', doctype: :book, analyze: true = Document Title == First Chapter ((coming soon)) == Second Chapter ((coming soon)) == Third Chapter ((coming soon)) [index] == Index EOS (expect (pdf.lines pdf.find_text page_number: 5).join ?\n).to include 'coming soon, 1, 2, 3' end it 'should combine range if same index entry occurs on sequential pages when media is not screen' do pdf = to_pdf <<~'EOS', doctype: :book, attribute_overrides: { 'media' => 'print' }, analyze: true = Document Title == First Chapter ((coming soon)) == Second Chapter ((coming soon)) == Third Chapter ((coming soon)) [index] == Index EOS (expect (pdf.lines pdf.find_text page_number: 5).join ?\n).to include 'coming soon, 1-3' end it 'should apply hanging indent to wrapped lines equal to twice level indent' do pdf = to_pdf <<~'EOS', analyze: true = Document Title :doctype: book text(((searching,for fun and profit)))(((searching,when you have absolutely no clue where to begin))) [index] == Index EOS searching_text = (pdf.find_text page_number: 3, string: 'searching')[0] fun_profit_text = (pdf.find_text page_number: 3, string: /^for fun/)[0] begin_text = (pdf.find_text page_number: 3, string: /^begin/)[0] left_margin = searching_text[:x] level_indent = fun_profit_text[:x] - left_margin hanging_indent = begin_text[:x] - fun_profit_text[:x] (expect hanging_indent.round).to eql (level_indent * 2).round end end ����������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/link_spec.rb��������������������������������������������������������0000664�0000000�0000000�00000025633�14163570564�0021023�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'spec_helper' describe 'Asciidoctor::PDF::Converter - Link' do context 'URL' do it 'should convert a raw URL to a link' do input = 'The home page for Asciidoctor is located at https://asciidoctor.org.' pdf = to_pdf input annotations = get_annotations pdf, 1 (expect annotations).to have_size 1 link_annotation = annotations[0] (expect link_annotation[:Subtype]).to be :Link (expect link_annotation[:A][:URI]).to eql 'https://asciidoctor.org' pdf = to_pdf input, analyze: true link_text = (pdf.find_text 'https://asciidoctor.org')[0] (expect link_text).not_to be_nil (expect link_text[:font_color]).to eql '428BCA' (expect link_text[:x]).to eql link_annotation[:Rect][0] end it 'should decode character references in the href' do input = 'https://github.com/asciidoctor/asciidoctor-pdf/milestones?direction=asc&sort=<>&state=open' pdf = to_pdf input text = (pdf.page 1).text (expect text).to eql input link = (get_annotations pdf, 1)[0] (expect link[:A][:URI]).to eql input end it 'should convert link surrounded in double smart quotes' do pdf = to_pdf '"`https://asciidoctor.org[Asciidoctor]`"' text = (pdf.page 1).text (expect text).to eql %(\u201cAsciidoctor\u201d) annotations = get_annotations pdf, 1 (expect annotations).to have_size 1 link = annotations[0] (expect link[:A][:URI]).to eql 'https://asciidoctor.org' end it 'should convert link surrounded in single smart quotes' do pdf = to_pdf %('`https://asciidoctor.org[Asciidoctor]`') text = (pdf.page 1).text (expect text).to eql %(\u2018Asciidoctor\u2019) annotations = get_annotations pdf, 1 (expect annotations).to have_size 1 link = annotations[0] (expect link[:A][:URI]).to eql 'https://asciidoctor.org' end it 'should split bare URL on breakable characters' do [ 'the URL on this line will get split on the ? char https://github.com/asciidoctor/asciidoctor/issues?|q=milestone%3Av2.0.x', 'the URL on this line will get split on the / char instead https://github.com/asciidoctor/asciidoctor/|issues?q=milestone%3Av2.0.x', 'the URL on this line will get split on the # char https://github.com/asciidoctor/asciidoctor/issues#|milestone%3Av2.0.x', ].each do |text| before, after = text.split '|', 2 pdf = to_pdf %(#{before}#{after}), analyze: true lines = pdf.lines (expect lines).to have_size 2 (expect lines[0]).to end_with before (expect lines[1]).to start_with after end end it 'should not split bare URL when using an AFM font' do pdf = to_pdf <<~'EOS', pdf_theme: { base_font_family: 'Helvetica' }, analyze: true this line contains a URL that falls at the end of the line and yet cannot be split https://goo.gl/search/asciidoctor EOS lines = pdf.lines (expect lines).to have_size 2 (expect lines[1]).to eql 'https://goo.gl/search/asciidoctor' end it 'should not split bare URL after scheme' do pdf = to_pdf <<~'EOS', analyze: true this line contains a URL that falls at the end of the line that is not split after the scheme https://goo.gl/search/asciidoctor EOS lines = pdf.lines (expect lines).to have_size 2 (expect lines[1]).to eql 'https://goo.gl/search/asciidoctor' end it 'should reveal URL of link by default when media=print or media=prepress' do %w(print prepress).each do |media| pdf = to_pdf <<~'EOS', attribute_overrides: { 'media' => media }, analyze: true https://asciidoctor.org[Asciidoctor] is a text processor. EOS (expect pdf.lines).to eql ['Asciidoctor [https://asciidoctor.org] is a text processor.'] end end it 'should reveal URL of link when show-link-uri is set' do pdf = to_pdf <<~'EOS', analyze: true :show-link-uri: https://asciidoctor.org[Asciidoctor] is a text processor. EOS (expect pdf.lines).to eql ['Asciidoctor [https://asciidoctor.org] is a text processor.'] end it 'should not reveal URL of link when show-link-uri is unset in document even media is print or prepress' do %w(print prepress).each do |media| pdf = to_pdf <<~'EOS', attribute_overrides: { 'media' => media }, analyze: true :!show-link-uri: https://asciidoctor.org[Asciidoctor] is a text processor. EOS (expect pdf.lines).to eql ['Asciidoctor is a text processor.'] end end it 'should not reveal URL of link when show-link-uri is unset from API even media is print or prepress' do %w(print prepress).each do |media| pdf = to_pdf <<~'EOS', attribute_overrides: { 'media' => media, 'show-link-uri' => nil }, analyze: true https://asciidoctor.org[Asciidoctor] is a text processor. EOS (expect pdf.lines).to eql ['Asciidoctor is a text processor.'] end end it 'should split revealed URL on breakable characters when media=print, media=prepress, or show-link-uri is set' do inputs = [ 'the URL on this line will get split on the ? char https://github.com/asciidoctor/asciidoctor/issues?|q=milestone%3Av2.0.x[link]', 'the URL on this line will get split on the / char instead https://github.com/asciidoctor/asciidoctor/|issues?q=milestone%3Av2.0.x[link]', 'the URL on this line will get split on the # char https://github.com/asciidoctor/asciidoctor/issues#|milestone%3Av2.0.x[link]', ] [{ 'media' => 'print' }, { 'media' => 'prepress' }, { 'show-link-uri' => '' }].each do |attribute_overrides| inputs.each do |text| before, after = text.split '|', 2 expected_before = before.sub 'https://', 'link [https://' expected_after = after.sub '[link]', ']' pdf = to_pdf %(#{before}#{after}), attribute_overrides: attribute_overrides, analyze: true lines = pdf.lines (expect lines).to have_size 2 (expect lines[0]).to end_with expected_before (expect lines[1]).to start_with expected_after end end end end context 'Email' do it 'should convert bare email address to link' do pdf = to_pdf 'Send a message to doc.writer@example.org.' annotations = get_annotations pdf, 1 (expect annotations).to have_size 1 link_annotation = annotations[0] (expect link_annotation[:Subtype]).to be :Link (expect link_annotation[:A][:URI]).to eql 'mailto:doc.writer@example.org' end it 'should create email address link' do pdf = to_pdf 'Send a message to mailto:doc.writer@example.org[Doc Writer].' annotations = get_annotations pdf, 1 (expect annotations).to have_size 1 link_annotation = annotations[0] (expect link_annotation[:Subtype]).to be :Link (expect link_annotation[:A][:URI]).to eql 'mailto:doc.writer@example.org' (expect (pdf.page 1).text).to include 'Doc Writer' end it 'should show mailto address of bare email when media=prepress' do input = 'Send message to doc.writer@example.org.' pdf = to_pdf input, attribute_overrides: { 'media' => 'prepress' } annotations = get_annotations pdf, 1 (expect annotations).to have_size 1 link_annotation = annotations[0] (expect link_annotation[:Subtype]).to be :Link (expect link_annotation[:A][:URI]).to eql 'mailto:doc.writer@example.org' pdf = to_pdf input, attribute_overrides: { 'media' => 'prepress' }, analyze: true (expect pdf.lines[0]).to eql 'Send message to doc.writer@example.org [mailto:doc.writer@example.org].' end it 'should show mailto address of email link when media=prepress' do input = 'Send message to mailto:doc.writer@example.org[Doc Writer].' pdf = to_pdf input, attribute_overrides: { 'media' => 'prepress' } annotations = get_annotations pdf, 1 (expect annotations).to have_size 1 link_annotation = annotations[0] (expect link_annotation[:Subtype]).to be :Link (expect link_annotation[:A][:URI]).to eql 'mailto:doc.writer@example.org' pdf = to_pdf input, attribute_overrides: { 'media' => 'prepress' }, analyze: true (expect pdf.lines[0]).to eql 'Send message to Doc Writer [mailto:doc.writer@example.org].' end it 'should not show mailto address of bare email when media=prepress and hide-uri-scheme is set' do input = 'Send message to doc.writer@example.org.' pdf = to_pdf input, attribute_overrides: { 'media' => 'prepress', 'hide-uri-scheme' => '' } annotations = get_annotations pdf, 1 (expect annotations).to have_size 1 link_annotation = annotations[0] (expect link_annotation[:Subtype]).to be :Link (expect link_annotation[:A][:URI]).to eql 'mailto:doc.writer@example.org' pdf = to_pdf input, attribute_overrides: { 'media' => 'prepress', 'hide-uri-scheme' => '' }, analyze: true (expect pdf.lines[0]).to eql 'Send message to doc.writer@example.org.' end it 'should not use mailto prefix on email address of email link when media=prepress and hide-uri-scheme is set' do input = 'Send message to mailto:doc.writer@example.org[Doc Writer].' pdf = to_pdf input, attribute_overrides: { 'media' => 'prepress', 'hide-uri-scheme' => '' } annotations = get_annotations pdf, 1 (expect annotations).to have_size 1 link_annotation = annotations[0] (expect link_annotation[:Subtype]).to be :Link (expect link_annotation[:A][:URI]).to eql 'mailto:doc.writer@example.org' pdf = to_pdf input, attribute_overrides: { 'media' => 'prepress', 'hide-uri-scheme' => '' }, analyze: true (expect pdf.lines[0]).to eql 'Send message to Doc Writer [doc.writer@example.org].' end end context 'Theming' do it 'should apply text decoration to link defined by theme' do pdf_theme = { link_text_decoration: 'underline', } input = 'The home page for Asciidoctor is located at https://asciidoctor.org.' pdf = to_pdf input, pdf_theme: pdf_theme, analyze: :line lines = pdf.lines (expect lines).to have_size 1 underline = lines[0] pdf = to_pdf input, pdf_theme: pdf_theme, analyze: true link_text = (pdf.find_text 'https://asciidoctor.org')[0] (expect link_text[:font_color]).to eql underline[:color] (expect underline[:width]).to be_nil end it 'should allow theme to set width and color of text decoration' do pdf_theme = { link_text_decoration: 'underline', link_text_decoration_color: '0000FF', link_text_decoration_width: 0.5, } pdf = to_pdf 'The home page for Asciidoctor is located at https://asciidoctor.org.', pdf_theme: pdf_theme, analyze: :line lines = pdf.lines (expect lines).to have_size 1 underline = lines[0] (expect underline[:color]).to eql '0000FF' (expect underline[:width]).to eql 0.5 end end end �����������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/list_spec.rb��������������������������������������������������������0000664�0000000�0000000�00000070442�14163570564�0021037�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'spec_helper' describe 'Asciidoctor::PDF::Converter - List' do context 'Unordered' do it 'should use different marker for first three list levels' do pdf = to_pdf <<~'EOS', analyze: true * level one ** level two *** level three **** level four * back to level one EOS expected_lines = [ '•level one', '◦level two', '▪level three', '▪level four', '•back to level one', ] (expect pdf.lines).to eql expected_lines end it 'should use marker specified by style' do pdf = to_pdf <<~'EOS', analyze: true [square] * one * two * three EOS (expect pdf.lines).to eql ['▪one', '▪two', '▪three'] end it 'should make bullets invisible if list has no-bullet style' do pdf = to_pdf <<~'EOS', analyze: true reference [no-bullet] * wood * hammer * nail EOS (expect pdf.lines[1..-1]).to eql %w(wood hammer nail) left_margin = pdf.text[0][:x] indents = pdf.text[1..-1].map {|it| it[:x] } (expect indents).to have_size 3 (expect indents.uniq).to have_size 1 (expect indents[0]).to be > left_margin end it 'should apply proper indentation for each list style that hides the marker' do pdf = to_pdf <<~'EOS', analyze: true reference [unstyled] * unstyled [no-bullet] * no-bullet [none] * none EOS (expect pdf.text).to have_size 4 left_margin = (pdf.find_text 'reference')[0][:x] unstyled_item = (pdf.find_text 'unstyled')[0] (expect unstyled_item[:x]).to eql left_margin no_bullet_item = (pdf.find_text 'no-bullet')[0] (expect no_bullet_item[:x]).to eql 56.3805 none_item = (pdf.find_text 'none')[0] (expect none_item[:x]).to eql 66.24 end it 'should allow theme to change marker characters' do pdf_theme = { ulist_marker_disc_content: %(\u25ca), ulist_marker_circle_content: %(\u25cc), ulist_marker_square_content: %(\u25a1), } pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, analyze: true * diamond ** dotted circle *** white square EOS (expect pdf.lines).to eql [%(\u25cadiamond), %(\u25ccdotted circle), %(\u25a1white square)] end it 'should allow FontAwesome icon to be used as list marker' do %w(fa far).each do |font_family| pdf_theme = { ulist_marker_disc_font_family: font_family, ulist_marker_disc_content: ?\uf192, } pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, analyze: true * bullseye! EOS (expect pdf.lines).to eql [%(\uf192bullseye!)] marker_text = (pdf.find_text ?\uf192)[0] (expect marker_text).not_to be_nil (expect marker_text[:font_name]).to eql 'FontAwesome5Free-Regular' end end it 'should use consistent line height even if list item is entirely monospace' do pdf = to_pdf <<~'EOS', analyze: true * foo * `mono` * bar EOS mark_texts = pdf.find_text '•' (expect mark_texts).to have_size 3 first_to_second_spacing = (mark_texts[0][:y] - mark_texts[1][:y]).round 2 second_to_third_spacing = (mark_texts[1][:y] - mark_texts[2][:y]).round 2 (expect first_to_second_spacing).to eql second_to_third_spacing end it 'should apply correct margin if primary text of list item is blank' do pdf = to_pdf <<~'EOS', analyze: true * foo * {blank} * bar EOS mark_texts = pdf.find_text '•' (expect mark_texts).to have_size 3 first_to_second_spacing = (mark_texts[0][:y] - mark_texts[1][:y]).round 2 second_to_third_spacing = (mark_texts[1][:y] - mark_texts[2][:y]).round 2 (expect first_to_second_spacing).to eql second_to_third_spacing end it 'should align first block of list item with marker if primary text is blank' do pdf = to_pdf <<~'EOS', analyze: true * {blank} + text EOS text = pdf.text (expect text).to have_size 2 (expect text[0][:y]).to eql text[1][:y] end it 'should keep list marker with primary text' do pdf = to_pdf <<~EOS, analyze: true :pdf-page-size: 52mm x 74mm :pdf-page-margin: 0 .... #{['filler'] * 11 * ?\n} .... * list item EOS marker_text = (pdf.find_text ?\u2022)[0] (expect marker_text[:page_number]).to be 2 item_text = (pdf.find_text 'list item')[0] (expect item_text[:page_number]).to be 2 end it 'should position marker correctly when media is prepress and list item is advanced to next page' do pdf = to_pdf <<~EOS, pdf_theme: { prose_margin_bottom: 705.5 }, analyze: true :media: prepress filler * first * middle * last EOS marker_texts = pdf.find_text string: '•', page_number: 2 (expect marker_texts).to have_size 2 (expect marker_texts[0][:x]).to eql marker_texts[1][:x] end it 'should position marker correctly when media is prepress and list item is split across page' do pdf = to_pdf <<~EOS, pdf_theme: { prose_margin_bottom: 705 }, analyze: true :media: prepress filler * first * middle + more middle * last EOS (expect (pdf.find_text 'middle')[0][:page_number]).to be 1 (expect (pdf.find_text '•')[1][:page_number]).to be 1 (expect (pdf.find_text '•')[2][:page_number]).to be 2 end end context 'Checklist' do it 'should replace markers with checkboxes in checklist' do pdf = to_pdf <<~'EOS', analyze: true * [ ] todo * [x] done EOS (expect pdf.lines).to eql [%(\u2610todo), %(\u2611done)] end it 'should allow theme to change checkbox characters' do pdf_theme = { ulist_marker_unchecked_content: ?\u25d8, ulist_marker_checked_content: ?\u25d9, } pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, analyze: true * [ ] todo * [x] done EOS (expect pdf.lines).to eql [%(\u25d8todo), %(\u25d9done)] end it 'should use glyph from fallback font if not present in main font', visual: true do pdf_theme = build_pdf_theme({ ulist_marker_checked_content: ?\u303c }, 'default-with-fallback-font') to_file = to_pdf_file <<~'EOS', 'list-checked-glyph-fallback.pdf', pdf_theme: pdf_theme * [x] done EOS (expect to_file).to visually_match 'list-checked-glyph-fallback.pdf' end it 'should allow theme to use FontAwesome icon for checkbox characters' do %w(fa fas).each do |font_family| pdf_theme = { ulist_marker_unchecked_font_family: font_family, ulist_marker_unchecked_content: %(\uf096), ulist_marker_checked_font_family: font_family, ulist_marker_checked_content: %(\uf046), } pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, analyze: true * [ ] todo * [x] done EOS (expect pdf.lines).to eql [%(\uf096todo), %(\uf046done)] unchecked_marker_text = (pdf.find_text ?\uf096)[0] (expect unchecked_marker_text).not_to be_nil (expect unchecked_marker_text[:font_name]).to eql 'FontAwesome5Free-Solid' checked_marker_text = (pdf.find_text ?\uf046)[0] (expect checked_marker_text).not_to be_nil (expect checked_marker_text[:font_name]).to eql 'FontAwesome5Free-Solid' end end end context 'Ordered' do it 'should number list items using arabic, loweralpha, lowerroman, upperalpha, upperroman numbering by default' do pdf = to_pdf <<~'EOS', analyze: true . 1 .. a ... i .... A ..... I . 2 . 3 EOS (expect pdf.strings).to eql %w(1. 1 a. a i. i A. A I. I 2. 2 3. 3) (expect pdf.lines).to eql %w(1.1 a.a i.i A.A I.I 2.2 3.3) end it 'should use marker specified by style' do pdf = to_pdf <<~'EOS', analyze: true [lowerroman] . one . two . three EOS (expect pdf.lines).to eql ['i.one', 'ii.two', 'iii.three'] end it 'should use consistent line height even if list item is entirely monospace' do pdf = to_pdf <<~'EOS', analyze: true . foo . `mono` . bar EOS mark_texts = pdf.text.select {|it| it[:string].end_with? '.' } (expect mark_texts).to have_size 3 first_to_second_spacing = (mark_texts[0][:y] - mark_texts[1][:y]).round 2 second_to_third_spacing = (mark_texts[1][:y] - mark_texts[2][:y]).round 2 (expect first_to_second_spacing).to eql second_to_third_spacing end it 'should align list numbers to right and extend towards left margin' do pdf = to_pdf <<~'EOS', analyze: true . one . two . three . four . five . six . seven . eight . nine . ten EOS nine_text = (pdf.find_text 'nine')[0] ten_text = (pdf.find_text 'ten')[0] (expect nine_text[:x]).to eql ten_text[:x] no9_text = (pdf.find_text '9.')[0] no10_text = (pdf.find_text '10.')[0] (expect no9_text[:x]).to be > no10_text[:x] end it 'should start numbering at value of start attribute if specified' do pdf = to_pdf <<~'EOS', analyze: true [start=9] . nine . ten EOS no1_text = (pdf.find_text '1.')[0] (expect no1_text).to be_nil no9_text = (pdf.find_text '9.')[0] (expect no9_text).not_to be_nil (expect no9_text[:order]).to be 1 (expect pdf.lines).to eql %w(9.nine 10.ten) end it 'should start numbering at value of specified start attribute using specified numeration style' do pdf = to_pdf <<~'EOS', analyze: true [upperroman,start=9] . nine . ten EOS no1_text = (pdf.find_text 'I.')[0] (expect no1_text).to be_nil no9_text = (pdf.find_text 'IX.')[0] (expect no9_text).not_to be_nil (expect no9_text[:order]).to be 1 (expect pdf.lines).to eql %w(IX.nine X.ten) end it 'should ignore start attribute if marker is disabled' do pdf = to_pdf <<~'EOS', analyze: true [unstyled,start=10] . a . b . c EOS (expect pdf.lines).to eql %w(a b c) end it 'should allow start value to be less than 1 for list with arabic numbering' do pdf = to_pdf <<~'EOS', analyze: true [start=-1] . negative one . zero . positive one EOS (expect pdf.lines).to eql ['-1.negative one', '0.zero', '1.positive one'] end it 'should allow start value to be less than 1 for list with roman numbering' do pdf = to_pdf <<~'EOS', analyze: true [lowerroman,start=-1] . negative one . zero . positive one EOS (expect pdf.lines).to eql ['-1.negative one', '0.zero', 'i.positive one'] end it 'should make numbers invisible if list has unnumbered style' do pdf = to_pdf <<~'EOS', analyze: true reference [unnumbered] . one . two . three EOS (expect pdf.lines[1..-1]).to eql %w(one two three) left_margin = pdf.text[0][:x] indents = pdf.text[1..-1].map {|it| it[:x] } (expect indents).to have_size 3 (expect indents.uniq).to have_size 1 (expect indents[0]).to be > left_margin end it 'should apply proper indentation for each list style that hides the marker' do pdf = to_pdf <<~'EOS', analyze: true reference [unstyled] . unstyled [no-bullet] . no-bullet [unnumbered] . unnumbered [none] . none EOS (expect pdf.text).to have_size 5 left_margin = (pdf.find_text 'reference')[0][:x] unstyled_item = (pdf.find_text 'unstyled')[0] (expect unstyled_item[:x]).to eql left_margin no_bullet_item = (pdf.find_text 'no-bullet')[0] (expect no_bullet_item[:x]).to eql 51.6765 unnumbered_item = (pdf.find_text 'unnumbered')[0] (expect unnumbered_item[:x]).to eql 51.6765 none_item = (pdf.find_text 'none')[0] (expect none_item[:x]).to eql 66.24 end it 'should keep list marker with primary text' do pdf = to_pdf <<~EOS, analyze: true :pdf-page-size: 52mm x 74mm :pdf-page-margin: 0 .... #{['filler'] * 11 * ?\n} .... . list item EOS marker_text = (pdf.find_text '1.')[0] (expect marker_text[:page_number]).to be 2 item_text = (pdf.find_text 'list item')[0] (expect item_text[:page_number]).to be 2 end end context 'Mixed' do it 'should use correct default markers for mixed nested lists' do pdf = to_pdf <<~'EOS', analyze: true * l1 . l2 ** l3 .. l4 *** l5 ... l6 * l1 EOS (expect pdf.lines).to eql ['•l1', '1.l2', '▪l3', 'a.l4', '▪l5', 'i.l6', '•l1'] end # NOTE expand this test as necessary to cover the various permutations it 'should not insert excess space between nested lists or list items with block content', visual: true do to_file = to_pdf_file <<~'EOS', 'list-complex-nested.pdf' * list item . first + attached paragraph . second + attached paragraph * list item + attached paragraph * list item EOS (expect to_file).to visually_match 'list-complex-nested.pdf' end end context 'Description' do it 'should keep term with primary text' do pdf = to_pdf <<~EOS, analyze: true :pdf-page-size: 52mm x 80mm :pdf-page-margin: 0 .... #{['filler'] * 11 * ?\n} .... term:: desc EOS term_text = (pdf.find_text 'term')[0] (expect term_text[:page_number]).to be 2 desc_text = (pdf.find_text 'desc')[0] (expect desc_text[:page_number]).to be 2 end it 'should keep all terms with primary text' do pdf = to_pdf <<~EOS, analyze: true :pdf-page-size: 52mm x 87.5mm :pdf-page-margin: 0 .... #{['filler'] * 11 * ?\n} .... term 1:: term 2:: desc EOS term1_text = (pdf.find_text 'term 1')[0] (expect term1_text[:page_number]).to be 2 term2_text = (pdf.find_text 'term 2')[0] (expect term2_text[:page_number]).to be 2 desc_text = (pdf.find_text 'desc')[0] (expect desc_text[:page_number]).to be 2 end it 'should style term with italic text using bold italic' do pdf = to_pdf '_term_:: desc', analyze: true term_text = (pdf.find_text 'term')[0] (expect term_text[:font_name]).to eql 'NotoSerif-BoldItalic' end it 'should allow theme to control font properties of term' do pdf_theme = { description_list_term_font_style: 'italic', description_list_term_font_size: 12, description_list_term_font_color: 'AA0000', description_list_term_text_transform: 'uppercase', } pdf = to_pdf '*term*:: desc', pdf_theme: pdf_theme, analyze: true term_text = (pdf.find_text 'TERM')[0] (expect term_text[:font_name]).to eql 'NotoSerif-BoldItalic' (expect term_text[:font_size]).to be 12 (expect term_text[:font_color]).to eql 'AA0000' end it 'should support complex content', visual: true do to_file = to_pdf_file <<~EOS, 'list-complex-dlist.pdf' term:: desc + more desc + literal yin:: yang EOS (expect to_file).to visually_match 'list-complex-dlist.pdf' end context 'Horizontal' do it 'should arrange horizontal list in two columns' do pdf = to_pdf <<~'EOS', analyze: true [horizontal] foo:: bar yin:: yang EOS foo_text = (pdf.find_text 'foo')[0] bar_text = (pdf.find_text 'bar')[0] (expect foo_text[:y]).to eql bar_text[:y] end it 'should support multiple terms in horizontal list' do pdf = to_pdf <<~'EOS', analyze: true [horizontal] foo:: bar:: baz:: desc EOS (expect pdf.find_text 'foo').not_to be_empty (expect pdf.find_text 'bar').not_to be_empty (expect pdf.find_text 'baz').not_to be_empty (expect pdf.find_text 'desc').not_to be_empty foo_text = (pdf.find_text 'foo')[0] desc_text = (pdf.find_text 'desc')[0] (expect foo_text[:y]).to eql desc_text[:y] end it 'should align term to top when description spans multiple lines' do pdf = to_pdf <<~'EOS', analyze: true [horizontal] foo:: desc + _more desc_ + even more desc EOS (expect pdf.find_text 'foo').not_to be_empty (expect pdf.find_text 'desc').not_to be_empty foo_text = (pdf.find_text 'foo')[0] desc_text = (pdf.find_text 'desc')[0] (expect foo_text[:y]).to eql desc_text[:y] more_desc_text = (pdf.find_text 'more desc')[0] (expect more_desc_text[:font_name]).to eql 'NotoSerif-Italic' end it 'should not break term that not extend past the midpoint of the page' do pdf = to_pdf <<~EOS, analyze: true [horizontal] handoverallthekeystoyourkingdom:: #{(['submit'] * 50).join ' '} EOS (expect pdf.lines[0]).to start_with 'handoverallthekeystoyourkingdomsubmit submit' end it 'should break term that extends past the midpoint of the page' do pdf = to_pdf <<~EOS, analyze: true [horizontal] handoverallthekeystoyourkingdomtomenow:: #{(['submit'] * 50).join ' '} EOS (expect pdf.lines[0]).not_to start_with 'handoverallthekeystoyourkingdomtomenow' end it 'should support complex content in horizontal list', visual: true do to_file = to_pdf_file <<~EOS, 'list-horizontal-dlist.pdf' [horizontal] term:: desc + more desc + literal yin:: yang EOS (expect to_file).to visually_match 'list-horizontal-dlist.pdf' end end context 'Unordered' do it 'should layout unordered description list like an unordered list with subject in bold' do pdf = to_pdf <<~'EOS', analyze: true [unordered] item a:: about item a + more about item a item b:: about item b EOS (expect pdf.lines).to eql ['•item a: about item a', 'more about item a', '•item b: about item b'] item_a_subject_text = (pdf.find_text 'item a:')[0] (expect item_a_subject_text).not_to be_nil (expect item_a_subject_text[:font_name]).to eql 'NotoSerif-Bold' end it 'should allow subject stop to be customized using subject-stop attribute' do pdf = to_pdf <<~'EOS', analyze: true [unordered,subject-stop=.] item a:: about item a + more about item a item b:: about item b EOS (expect pdf.lines).to eql ['•item a. about item a', 'more about item a', '•item b. about item b'] end it 'should not add subject stop if subject ends with stop punctuation' do pdf = to_pdf <<~'EOS', analyze: true [unordered,subject-stop=.] item a.:: about item a + more about item a _item b:_:: about item b well?:: yes EOS (expect pdf.lines).to eql ['•item a. about item a', 'more about item a', '•item b: about item b', '•well? yes'] end it 'should add subject stop if subject ends with character reference' do pdf = to_pdf <<~'EOS', analyze: true [unordered] &:: ampersand >:: greater than EOS (expect pdf.lines).to eql ['•&: ampersand', '•>: greater than'] end it 'should stack subject on top of text if stack role is present' do pdf = to_pdf <<~'EOS', analyze: true [unordered.stack] item a:: about item a + more about item a item b:: about item b EOS (expect pdf.lines).to eql ['•item a', 'about item a', 'more about item a', '•item b', 'about item b'] end end context 'Ordered' do it 'should layout ordered description list like an ordered list with subject in bold' do pdf = to_pdf <<~'EOS', analyze: true [ordered] item a:: about item a + more about item a item b:: about item b EOS (expect pdf.lines).to eql ['1.item a: about item a', 'more about item a', '2.item b: about item b'] item_a_subject_text = (pdf.find_text 'item a:')[0] (expect item_a_subject_text).not_to be_nil (expect item_a_subject_text[:font_name]).to eql 'NotoSerif-Bold' end it 'should allow subject stop to be customized using subject-stop attribute' do pdf = to_pdf <<~'EOS', analyze: true [ordered,subject-stop=.] item a:: about item a + more about item a item b:: about item b EOS (expect pdf.lines).to eql ['1.item a. about item a', 'more about item a', '2.item b. about item b'] end it 'should not add subject stop if subject ends with stop punctuation' do pdf = to_pdf <<~'EOS', analyze: true [ordered,subject-stop=.] item a.:: about item a + more about item a _item b:_:: about item b well?:: yes EOS (expect pdf.lines).to eql ['1.item a. about item a', 'more about item a', '2.item b: about item b', '3.well? yes'] end it 'should add subject stop if subject ends with character reference' do pdf = to_pdf <<~'EOS', analyze: true [ordered] &:: ampersand >:: greater than EOS (expect pdf.lines).to eql ['1.&: ampersand', '2.>: greater than'] end it 'should stack subject on top of text if stack role is present' do pdf = to_pdf <<~'EOS', analyze: true [ordered.stack] item a:: about item a + more about item a item b:: about item b EOS (expect pdf.lines).to eql ['1.item a', 'about item a', 'more about item a', '2.item b', 'about item b'] end end end context 'Q & A' do it 'should convert qanda to ordered list' do pdf = to_pdf <<~'EOS', analyze: true [qanda] What is Asciidoctor?:: An implementation of the AsciiDoc processor in Ruby. What is the answer to the Ultimate Question?:: 42 EOS (expect pdf.strings).to eql [ '1.', 'What is Asciidoctor?', 'An implementation of the AsciiDoc processor in Ruby.', '2.', 'What is the answer to the Ultimate Question?', '42', ] end it 'should layout Q & A list like a description list with questions in italic', visual: true do to_file = to_pdf_file <<~'EOS', 'list-qanda.pdf' [qanda] What's the answer to the ultimate question?:: 42 Do you have an opinion?:: Would you like to share it?:: Yes and no. EOS (expect to_file).to visually_match 'list-qanda.pdf' end end context 'Callout' do it 'should use callout numbers as list markers and in referenced block' do pdf = to_pdf <<~'EOS', analyze: true .... line one <1> line two line three <2> .... <1> First line <2> Last line EOS one_text = pdf.find_text ?\u2460 two_text = pdf.find_text ?\u2461 (expect one_text).to have_size 2 (expect two_text).to have_size 2 (one_text + two_text).each do |text| (expect text[:font_name]).to eql 'mplus1mn-regular' (expect text[:font_color]).to eql 'B12146' end (expect one_text[1][:y]).to be < two_text[0][:y] end it 'should use consistent line height even if list item is entirely monospace' do pdf = to_pdf <<~'EOS', analyze: true .... line one <1> line two <2> line three <3> .... <1> describe one <2> `describe two` <3> describe three EOS mark_texts = [(pdf.find_text ?\u2460)[-1], (pdf.find_text ?\u2461)[-1], (pdf.find_text ?\u2462)[-1]] (expect mark_texts).to have_size 3 first_to_second_spacing = (mark_texts[0][:y] - mark_texts[1][:y]).round 2 second_to_third_spacing = (mark_texts[1][:y] - mark_texts[2][:y]).round 2 (expect first_to_second_spacing).to eql second_to_third_spacing end it 'should only separate colist and listing or literal block by outline_list_item_spacing value' do %w(---- ....).each do |block_delim| input = <<~EOS #{block_delim} line one <1> line two line three <2> #{block_delim} <1> First line <2> Last line EOS pdf = to_pdf input, analyze: :line bottom_line_y = pdf.lines[2][:from][:y] pdf = to_pdf input, analyze: true colist_num_text = (pdf.find_text ?\u2460)[-1] colist_num_top_y = colist_num_text[:y] + colist_num_text[:font_size] gap = bottom_line_y - colist_num_top_y # NOTE default outline list spacing is 6 (expect gap).to be > 6 (expect gap).to be < 8 end end it 'should allow conum font color to be customized by theme' do pdf = to_pdf <<~'EOS', pdf_theme: { conum_font_color: '0000ff' }, analyze: true .... line one <1> line two line three <2> .... <1> First line <2> Last line EOS one_text = pdf.find_text ?\u2460 (expect one_text).to have_size 2 one_text.each do |text| (expect text[:font_name]).to eql 'mplus1mn-regular' (expect text[:font_color]).to eql '0000FF' end end it 'should support filled conum glyphs if specified in theme' do pdf = to_pdf <<~'EOS', pdf_theme: { conum_glyphs: 'filled' }, analyze: true .... line one <1> line two line three <2> .... <1> First line <2> Last line EOS one_text = pdf.find_text ?\u2776 two_text = pdf.find_text ?\u2777 (expect one_text).to have_size 2 (expect two_text).to have_size 2 (one_text + two_text).each do |text| (expect text[:font_name]).to eql 'mplus1mn-regular' (expect text[:font_color]).to eql 'B12146' end end it 'should allow conum glyphs to be specified explicitly' do pdf = to_pdf <<~'EOS', pdf_theme: { conum_glyphs: '\u0031-\u0039' }, analyze: true .... line one <1> line two line three <2> .... <1> First line <2> Last line EOS one_text = pdf.find_text '1' (expect one_text).to have_size 2 one_text.each do |text| (expect text[:font_name]).to eql 'mplus1mn-regular' (expect text[:font_color]).to eql 'B12146' end end it 'should keep list marker with primary text' do pdf = to_pdf <<~EOS, analyze: true :pdf-page-size: 52mm x 72.25mm :pdf-page-margin: 0 .... filler <1> #{['filler'] * 10 * ?\n} .... <1> description EOS marker_text = (pdf.find_text ?\u2460)[-1] (expect marker_text[:page_number]).to be 2 item_text = (pdf.find_text 'description')[0] (expect item_text[:page_number]).to be 2 end end context 'Bibliography' do it 'should reference bibliography entry using ID in square brackets by default' do pdf = to_pdf <<~EOS, analyze: true The recommended reading includes <<bar>>. [bibliography] == Bibliography #{asciidoctor_1_5_7_or_better? ? '' : '[bibliography]'} * [[[bar]]] Bar, Foo. All The Things. 2010. EOS lines = pdf.lines (expect lines).to include 'The recommended reading includes [bar].' (expect lines).to include '▪[bar] Bar, Foo. All The Things. 2010.' end it 'should reference bibliography entry using custom reftext square brackets' do pdf = to_pdf <<~'EOS', analyze: true The recommended reading includes <<bar>>. [bibliography] == Bibliography * [[[bar,1]]] Bar, Foo. All The Things. 2010. EOS lines = pdf.lines (expect lines).to include 'The recommended reading includes [1].' (expect lines).to include '▪[1] Bar, Foo. All The Things. 2010.' end if asciidoctor_1_5_7_or_better? end end ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/listing_spec.rb�����������������������������������������������������0000664�0000000�0000000�00000014150�14163570564�0021527�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'spec_helper' describe 'Asciidoctor::PDF::Converter - Listing' do it 'should move block to next page if it will fit to avoid splitting it' do pdf = to_pdf <<~EOS, analyze: true #{(['paragraph'] * 20).join (?\n * 2)} ---- #{(['listing'] * 20).join ?\n} ---- EOS listing_page_numbers = (pdf.find_text 'listing').map {|it| it[:page_number] }.uniq (expect listing_page_numbers).to eql [2] end it 'should split block if it cannot fit on a whole page' do pdf = to_pdf <<~EOS, analyze: true #{(['paragraph'] * 20).join (?\n * 2)} ---- #{(['listing'] * 60).join ?\n} ---- EOS (expect pdf.pages).to have_size 2 listing_texts = pdf.find_text 'listing' (expect listing_texts[0][:page_number]).to be 1 (expect listing_texts[-1][:page_number]).to be 2 end it 'should use dashed border to indicate where block is split across a page boundary', visual: true do to_file = to_pdf_file <<~EOS, 'listing-page-split.pdf' ---- #{(['listing'] * 60).join ?\n} ---- ---- #{(['more listing'] * 2).join ?\n} ---- EOS (expect to_file).to visually_match 'listing-page-split.pdf' end it 'should resize font size to prevent wrapping if autofit option is set' do pdf = to_pdf <<~'EOS', analyze: true [%autofit] ---- theme = ThemeLoader.load_theme theme_name, (theme_dir = (doc.attr 'pdf-themesdir') || (doc.attr 'pdf-stylesdir')) ---- EOS (expect pdf.text).to have_size 1 (expect pdf.text[0][:font_size]).to be < build_pdf_theme.code_font_size end it 'should not resize font size more than minimum font size' do pdf = to_pdf <<~'EOS', pdf_theme: { base_font_size_min: 8 }, analyze: true [%autofit] ---- play_symbol = (node.document.attr? 'icons', 'font') ? %(<font name="fas">#{(icon_font_data 'fas').unicode 'play'}</font>) : RightPointer ---- EOS (expect pdf.text).to have_size 2 (expect pdf.text[0][:font_size]).to be 8 end it 'should allow autofit to shrink text as much as it needs if the minimum font size is 0' do pdf = to_pdf <<~'EOS', pdf_theme: { base_font_size_min: 0 }, analyze: true [%autofit] ---- +--------------------------------------+----------------------------------------------------+-----------------------------------------------------+ | id | name | subnets | +--------------------------------------+----------------------------------------------------+-----------------------------------------------------+ ---- EOS expected_line = '+--------------------------------------+----------------------------------------------------+-----------------------------------------------------+' lines = pdf.lines (expect lines).to have_size 3 (expect lines[0]).to eql expected_line (expect lines[2]).to eql expected_line end it 'should guard indentation using no-break space character' do pdf = to_pdf <<~EOS, analyze: true ---- flush indented flush ---- EOS (expect pdf.lines).to eql ['flush', %(\u00a0 indented), 'flush'] end it 'should expand tabs if tabsize attribute is not specified' do pdf = to_pdf <<~EOS, analyze: true ---- flush lead space \tlead tab \tlead tab\tcolumn tab lead space\tcolumn tab flush\t\t\tcolumn tab ---- EOS expected_lines = [ 'flush', %(\u00a0 lead space), %(\u00a0 lead tab), %(\u00a0 lead tab column tab), %(\u00a0 lead space column tab), 'flush column tab', ] (expect pdf.lines).to eql expected_lines end it 'should expand tabs if tabsize is specified as block attribute' do pdf = to_pdf <<~EOS, analyze: true [tabsize=4] ---- flush lead space \tlead tab \tlead tab\tcolumn tab lead space\tcolumn tab flush\t\t\tcolumn tab ---- EOS expected_lines = [ 'flush', %(\u00a0 lead space), %(\u00a0 lead tab), %(\u00a0 lead tab column tab), %(\u00a0 lead space column tab), 'flush column tab', ] (expect pdf.lines).to eql expected_lines end it 'should expand tabs if tabsize is specified as document attribute' do pdf = to_pdf <<~EOS, analyze: true :tabsize: 4 ---- flush lead space \tlead tab \tlead tab\tcolumn tab lead space\tcolumn tab flush\t\t\tcolumn tab ---- EOS expected_lines = [ 'flush', %(\u00a0 lead space), %(\u00a0 lead tab), %(\u00a0 lead tab column tab), %(\u00a0 lead space column tab), 'flush column tab', ] (expect pdf.lines).to eql expected_lines end it 'should allow theme to override caption for code blocks' do pdf_theme = { caption_font_color: '0000ff', code_caption_font_style: 'bold', } pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, analyze: true .Title ---- content ---- EOS title_text = (pdf.find_text 'Title')[0] (expect title_text[:font_color]).to eql '0000FF' (expect title_text[:font_name]).to eql 'NotoSerif-Bold' end it 'should apply inline formatting if quotes subs is enabled' do pdf = to_pdf <<~'EOS', analyze: true [subs=+quotes] ---- _1_ skipped *99* passing ---- EOS italic_text = (pdf.find_text '1')[0] (expect italic_text[:font_name]).to eql 'mplus1mn-italic' bold_text = (pdf.find_text '99')[0] (expect bold_text[:font_name]).to eql 'mplus1mn-bold' end it 'should honor font family set on conum category in theme for conum in listing block' do pdf = to_pdf <<~EOS, pdf_theme: { code_font_family: 'Courier' }, analyze: true ---- fe <1> fi <2> fo <3> ---- EOS lines = pdf.lines (expect lines[0]).to end_with ' ①' (expect lines[1]).to end_with ' ②' (expect lines[2]).to end_with ' ③' conum_text = (pdf.find_text '①')[0] (expect conum_text[:font_name]).not_to eql 'Courier' end end ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/manpage_spec.rb�����������������������������������������������������0000664�0000000�0000000�00000003550�14163570564�0021470�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'spec_helper' describe 'Asciidoctor::PDF::Converter - Manpage' do it 'should generate name section automatically' do pdf = to_pdf <<~'EOS', doctype: :manpage, analyze: true = cmd(1) Author Name v1.0.0 :manmanual: CMD :mansource: CMD == Name cmd - does stuff == Synopsis *cmd* [_OPTION_]... _FILE_... == Options *-v*:: Prints the version. EOS expected_name_title = asciidoctor_1_5_7_or_better? ? 'Name' : '1. NAME' name_title_text = (pdf.find_text expected_name_title)[0] (expect name_title_text).not_to be_nil (expect name_title_text[:font_size]).to be 22 name_body_text = (pdf.find_text 'cmd - does stuff')[0] (expect name_body_text).not_to be_nil (expect name_body_text[:font_size]).to eql 10.5 (expect (pdf.find_text font_size: 22).map {|it| it[:string] }).to eql [expected_name_title, 'Synopsis', 'Options'] end it 'should apply normal substitutions to manname section' do pdf = to_pdf <<~'EOS', doctype: :manpage, analyze: true = cmd(1) == Name cmd - does *lots* of stuff == Synopsis *cmd* [_OPTION_]... _FILE_... EOS lots_text = (pdf.find_text 'lots')[0] (expect lots_text).not_to be_nil (expect lots_text[:font_name]).to eql 'NotoSerif-Bold' end it 'should uppercase title of name section if other sections are uppercase' do pdf = to_pdf <<~'EOS', doctype: :manpage, analyze: true = cmd(1) Author Name v1.0.0 :manmanual: CMD :mansource: CMD == NAME cmd - does stuff == SYNOPSIS *cmd* [_OPTION_]... _FILE_... == OPTIONS *-v*:: Prints the version. EOS name_title_text = (pdf.find_text 'NAME')[0] (expect name_title_text).not_to be_nil (expect name_title_text[:font_size]).to be 22 end if asciidoctor_1_5_7_or_better? end ��������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/media_spec.rb�������������������������������������������������������0000664�0000000�0000000�00000007677�14163570564�0021155�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'spec_helper' describe 'Asciidoctor::PDF::Converter - media' do context 'prepress' do it 'should leave blank page after image cover page' do pdf = to_pdf <<~EOS = Document Title :doctype: book :media: prepress :front-cover-image: #{fixture_file 'cover.jpg', relative: true} == Chapter Title EOS (expect pdf.pages).to have_size 5 (expect (pdf.page 3).text).to eql 'Document Title' (expect (pdf.page 5).text).to eql 'Chapter Title' images = get_images pdf, 1 (expect images).to have_size 1 (expect images[0].data).to eql File.binread fixture_file 'cover.jpg' end it 'should leave blank page after PDF cover page' do pdf = to_pdf <<~EOS = Document Title :doctype: book :media: prepress :front-cover-image: #{fixture_file 'blue-letter.pdf', relative: true} == Chapter Title EOS (expect pdf.pages).to have_size 5 (expect (pdf.page 1).text).to be_empty (expect (pdf.page 3).text).to eql 'Document Title' (expect (pdf.page 5).text).to eql 'Chapter Title' # TODO: add helper method to get content stream for page title_page_contents = pdf.objects[(pdf.page 1).page_object[:Contents][0]].data (expect (title_page_contents.split ?\n).slice 0, 3).to eql ['q', '/DeviceRGB cs', '0.0 0.0 1.0 scn'] end it 'should insert blank page after TOC' do pdf = to_pdf <<~EOS, analyze: true = Document Title :doctype: book :media: prepress :toc: :front-cover-image: #{fixture_file 'cover.jpg', relative: true} == Beginning == Middle == End EOS (expect pdf.pages).to have_size 11 (expect (pdf.find_text 'Document Title')[0][:page_number]).to be 3 (expect (pdf.find_text 'Table of Contents')[0][:page_number]).to be 5 (expect (pdf.find_text 'Beginning')[0][:page_number]).to be 5 (expect (pdf.find_text 'Beginning')[1][:page_number]).to be 7 (expect (pdf.find_text 'Middle')[0][:page_number]).to be 5 (expect (pdf.find_text 'Middle')[1][:page_number]).to be 9 (expect (pdf.find_text 'End')[0][:page_number]).to be 5 (expect (pdf.find_text 'End')[1][:page_number]).to be 11 end it 'should not insert blank page at start of document if document has no cover' do pdf = to_pdf <<~'EOS', analyze: true = Document Title :doctype: book :media: prepress Preface content. == Chapter Title Chapter content. EOS (expect pdf.pages).to have_size 5 doctitle_text = (pdf.find_text 'Document Title')[0] (expect doctitle_text[:page_number]).to be 1 preface_text = (pdf.find_text 'Preface content.')[0] (expect preface_text[:page_number]).to be 3 chapter_title_text = (pdf.find_text 'Chapter Title')[0] (expect chapter_title_text[:page_number]).to be 5 end it 'should not insert blank page at start of document with toc if title page is disabled' do pdf = to_pdf <<~'EOS', analyze: true = Document Title :doctype: book :media: prepress :notitle: :toc: == Chapter Title Chapter content. EOS (expect pdf.pages).to have_size 3 toc_text = (pdf.find_text 'Table of Contents')[0] (expect toc_text[:page_number]).to be 1 chapter_title_texts = pdf.find_text 'Chapter Title' (expect chapter_title_texts).to have_size 2 (expect chapter_title_texts[0][:page_number]).to be 1 (expect chapter_title_texts[1][:page_number]).to be 3 end it 'should not insert blank page before chapter if chapter has nonfacing option' do pdf = to_pdf <<~'EOS', analyze: true = Document Title :doctype: book :media: prepress preamble [%nonfacing] == Chapter EOS chapter_text = (pdf.find_text 'Chapter')[0] (expect chapter_text[:page_number]).to be 4 end end end �����������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/open_spec.rb��������������������������������������������������������0000664�0000000�0000000�00000004065�14163570564�0021023�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'spec_helper' describe 'Asciidoctor::PDF::Converter - Open' do it 'should keep block together when it has the unbreakable option', visual: true do to_file = to_pdf_file <<~EOS, 'open-unbreakable-option-fit.pdf' Make it rain.footnote:[money] #{(['filler'] * 21).join %(\n\n)} [%unbreakable] -- To install Antora, open a terminal and type: $ npm i -g @antora/cli@2.2 @antora/site-generator-default@2.2 The `@` at the beginning of the package name is important. It tells `npm` that the `cli` package is located in the `antora` group. If you omit this character, `npm` will assume the package name is the name of a git repository on GitHub. The second `@` offsets the requested version number.footnote:[Clarification about this statement.] Only the major and minor segments are specified to ensure you receive the latest patch update. -- Make it snow.footnote:[dollar bills] EOS (expect to_file).to visually_match 'open-unbreakable-option-fit.pdf' end it 'should break an unbreakable block if it does not fit on one page', visual: true do to_file = to_pdf_file <<~EOS, 'open-unbreakable-option-break.pdf' Make it rain.footnote:[money] #{(['filler'] * 21).join %(\n\n)} [%unbreakable] -- To install Antora, open a terminal and type: $ npm i -g @antora/cli@2.2 @antora/site-generator-default@2.2 The `@` at the beginning of the package name is important. It tells `npm` that the `cli` package is located in the `antora` group. If you omit this character, `npm` will assume the package name is the name of a git repository on GitHub. The second `@` offsets the requested version number.footnote:[Clarification about this statement.] Only the major and minor segments are specified to ensure you receive the latest patch update. #{(['filler inside open block'] * 25).join %(\n\n)} -- Make it snow.footnote:[dollar bills] EOS (expect to_file).to visually_match 'open-unbreakable-option-break.pdf' end end ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/optimizer_spec.rb���������������������������������������������������0000664�0000000�0000000�00000014033�14163570564�0022100�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'spec_helper' describe 'Asciidoctor::PDF::Optimizer' do it 'should optimize output file if optimize attribute is set' do input_file = Pathname.new example_file 'basic-example.adoc' to_file = to_pdf_file input_file, 'optimizer-not-optimized.pdf' to_optimized_file = to_pdf_file input_file, 'optimizer-default.pdf', attribute_overrides: { 'title-page' => '', 'optimize' => '', 'subject' => 'Example' } to_file_size = (File.stat to_file).size to_optimized_file_size = (File.stat to_optimized_file).size (expect to_optimized_file_size).to be < to_file_size pdf = PDF::Reader.new to_optimized_file (expect pdf.pdf_version).to eql 1.4 (expect pdf.pages).to have_size 3 pdf_info = pdf.info (expect pdf_info[:Producer]).to include 'Ghostscript' (expect pdf_info[:Title]).to eql 'Document Title' (expect pdf_info[:Author]).to eql 'Doc Writer' (expect pdf_info[:Subject]).to eql 'Example' (expect defined? Asciidoctor::PDF::Optimizer).to be_truthy # NOTE: assert constructor behavior once we know the class has been loaded optimizer = Asciidoctor::PDF::Optimizer.new (expect optimizer.quality).to eql :default (expect optimizer.compatibility_level).to eql '1.4' end it 'should generate optimized PDF when filename contains spaces' do input_file = Pathname.new example_file 'basic-example.adoc' to_file = to_pdf_file input_file, 'optimizer filename with spaces.pdf', attribute_overrides: { 'optimize' => '' } pdf = PDF::Reader.new to_file pdf_info = pdf.info (expect pdf_info[:Producer]).to include 'Ghostscript' end it 'should generate optimized PDF using PDF version specified by pdf-version attribute' do input_file = Pathname.new example_file 'basic-example.adoc' to_file = to_pdf_file input_file, 'optimizer-pdf-version.pdf', attribute_overrides: { 'optimize' => '', 'pdf-version' => '1.3' } pdf = PDF::Reader.new to_file (expect pdf.pdf_version).to eql 1.3 (expect pdf.catalog).not_to have_key :Metadata end it 'should use existing pdfmark file if present when optimizing' do input_file = Pathname.new example_file 'basic-example.adoc' pdfmark_file = Pathname.new output_file 'optimizer-pdfmark.pdfmark' pdfmark_file.write <<~EOS [ /Title (All Your PDF Are Belong To Us) /Author (CATS) /Subject (Zero Wing) /ModDate (D:19920101000000-00'00') /CreationDate (D:19920101000000-00'00') /Creator (Genesis) /DOCINFO pdfmark EOS to_file = to_pdf_file input_file, 'optimizer-pdfmark.pdf', attribute_overrides: { 'optimize' => '' } pdf = PDF::Reader.new to_file pdf_info = pdf.info (expect pdf_info[:Producer]).to include 'Ghostscript' (expect pdf_info[:Title]).to eql 'All Your PDF Are Belong To Us' (expect pdf_info[:Subject]).to eql 'Zero Wing' (expect pdf_info[:Creator]).to eql 'Genesis' pdfmark_file.unlink end it 'should optimize output file using quality specified by value of optimize attribute' do input_file = Pathname.new example_file 'basic-example.adoc' to_screen_file = to_pdf_file input_file, 'optimizer-screen.pdf', attribute_overrides: { 'title-page' => '', 'optimize' => 'screen' } to_prepress_file = to_pdf_file input_file, 'optimizer-prepress.pdf', attribute_overrides: { 'title-page' => '', 'optimize' => 'prepress' } to_screen_file_size = (File.stat to_screen_file).size to_prepress_file_size = (File.stat to_prepress_file).size (expect to_prepress_file_size).to be < to_screen_file_size pdf = PDF::Reader.new to_prepress_file (expect pdf.pdf_version).to eql 1.4 (expect pdf.pages).to have_size 3 pdf_info = pdf.info (expect pdf_info[:Producer]).to include 'Ghostscript' (expect pdf_info[:Title]).to eql 'Document Title' (expect pdf_info[:Author]).to eql 'Doc Writer' end it 'should use default quality if specified quality is not recognized' do input_file = Pathname.new example_file 'basic-example.adoc' (expect do to_pdf_file input_file, 'optimizer-fallback-quality.pdf', attribute_overrides: { 'optimize' => 'foobar' } end).to not_raise_exception end it 'should install bin script named asciidoctor-pdf-optimize' do bin_script = (Pathname.new Gem.bindir) / 'asciidoctor-pdf-optimize' bin_script = Pathname.new Gem.bin_path 'asciidoctor-pdf', 'asciidoctor-pdf-optimize' unless bin_script.exist? (expect bin_script).to exist end it 'should optimize PDF passed to asciidoctor-pdf-optimize CLI', cli: true do input_file = Pathname.new example_file 'basic-example.adoc' to_file = to_pdf_file input_file, 'optimizer-cli.pdf' out, err, res = run_command asciidoctor_pdf_optimize_bin, '--quality', 'prepress', to_file (expect res.exitstatus).to be 0 (expect out).to be_empty (expect err).to be_empty pdf_info = (PDF::Reader.new to_file).info (expect pdf_info[:Producer]).to include 'Ghostscript' end it 'should use ghostscript command specified by GS environment variable', cli: true do input_file = Pathname.new example_file 'basic-example.adoc' to_file = to_pdf_file input_file, 'optimizer-cli-with-custom-gs.pdf' env = windows? ? {} : { 'GS' => '/usr/bin/gs' } out, err, res = run_command asciidoctor_pdf_optimize_bin, '--quality', 'prepress', to_file, env: env (expect res.exitstatus).to be 0 (expect out).to be_empty (expect err).to be_empty pdf_info = (PDF::Reader.new to_file).info (expect pdf_info[:Producer]).to include 'Ghostscript' end it 'should not crash if quality passed to asciidoctor-pdf-optimize CLI is not recognized', cli: true do input_file = Pathname.new example_file 'basic-example.adoc' to_file = to_pdf_file input_file, 'optimizer-cli-fallback-quality.pdf' out, err, res = run_command asciidoctor_pdf_optimize_bin, '--quality', 'foobar', to_file (expect res.exitstatus).to be 0 (expect out).to be_empty (expect err).to be_empty pdf_info = (PDF::Reader.new to_file).info (expect pdf_info[:Producer]).to include 'Ghostscript' end end if ENV['RGHOST_VERSION'] �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/outline_spec.rb�����������������������������������������������������0000664�0000000�0000000�00000035761�14163570564�0021550�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'spec_helper' describe 'Asciidoctor::PDF::Converter - Outline' do context 'General' do it 'should set /PageMode /UseOutlines in PDF catalog to enable outline hierarchy' do pdf = to_pdf <<~'EOS' = Document Title == First == Last EOS (expect pdf.catalog[:PageMode]).to eql :UseOutlines end it 'should set /NonFullScreenPageMode /UseOutlines in PDF catalog if fullscreen mode is enabled' do pdf = to_pdf <<~'EOS' = Document Title :pdf-page-mode: fullscreen == First == Last EOS (expect pdf.catalog[:PageMode]).not_to eql :UseOutlines (expect pdf.catalog[:NonFullScreenPageMode]).to eql :UseOutlines end it 'should create an outline to navigate the document structure' do pdf = to_pdf <<~'EOS' = Document Title :doctype: book == First Chapter === Chapter Section == Middle Chapter == Last Chapter EOS outline = extract_outline pdf (expect outline).to have_size 4 (expect outline[0][:title]).to eql 'Document Title' (expect outline[0][:dest][:pagenum]).to be 1 (expect outline[0][:dest][:label]).to eql 'i' (expect outline[0][:dest][:top]).to be true (expect outline[0][:children]).to be_empty (expect outline[1][:title]).to eql 'First Chapter' (expect outline[1][:dest][:pagenum]).to be 2 (expect outline[1][:dest][:label]).to eql '1' (expect outline[1][:dest][:top]).to be true (expect outline[1][:closed]).to be false (expect outline[1][:children]).to have_size 1 (expect outline[1][:children][0][:title]).to eql 'Chapter Section' (expect outline[1][:children][0][:dest][:pagenum]).to be 2 (expect outline[1][:children][0][:dest][:label]).to eql '1' (expect outline[1][:children][0][:dest][:top]).to be false (expect outline[1][:children][0][:children]).to be_empty chapter_section_ref = (get_names pdf)['_chapter_section'] (expect chapter_section_ref).not_to be_nil chapter_section_obj = pdf.objects[chapter_section_ref] (expect outline[1][:children][0][:dest][:y]).to eql chapter_section_obj[3] (expect outline[1][:children][0][:dest][:pagenum]).to eql get_page_number pdf, chapter_section_obj[0] (expect outline[3][:title]).to eql 'Last Chapter' (expect outline[3][:dest][:pagenum]).to be 4 (expect outline[3][:dest][:label]).to eql '3' (expect outline[3][:dest][:top]).to be true (expect outline[3][:children]).to be_empty end it 'should generate outline for book that only consists of doctitle' do pdf = to_pdf <<~'EOS' = Document Title :doctype: book EOS outline = extract_outline pdf (expect outline).to have_size 1 (expect outline[0][:title]).to eql 'Document Title' (expect outline[0][:dest][:pagenum]).to be 1 (expect outline[0][:dest][:label]).to eql 'i' (expect outline[0][:children]).to be_empty end it 'should not generate outline for book that only consists of front cover' do pdf = to_pdf <<~'EOS' :front-cover-image: image:cover.jpg[] :doctype: book EOS (expect pdf.pages).to have_size 1 outline = extract_outline pdf (expect outline).to have_size 0 end it 'should generate outline for article that only consists of doctitle' do pdf = to_pdf <<~'EOS' = Document Title EOS outline = extract_outline pdf (expect outline).to have_size 1 (expect outline[0][:title]).to eql 'Document Title' (expect outline[0][:dest][:pagenum]).to be 1 (expect outline[0][:dest][:label]).to eql '1' (expect outline[0][:children]).to be_empty end it 'should not generate outline for article that only consists of front cover' do pdf = to_pdf <<~'EOS' :front-cover-image: image:cover.jpg[] EOS (expect pdf.pages).to have_size 1 outline = extract_outline pdf (expect outline).to have_size 0 end end context 'Depth' do it 'should limit outline depth according to value of toclevels attribute' do pdf = to_pdf <<~'EOS' = Document Title :doctype: book :toclevels: 1 == First Chapter === Chapter Section == Middle Chapter == Last Chapter EOS outline = extract_outline pdf (expect outline).to have_size 4 (expect outline[1][:title]).to eql 'First Chapter' (expect outline[1][:children]).to be_empty end it 'should allow outline depth to exceed toclevels of outlinelevels attribute is set' do pdf = to_pdf <<~'EOS' = Document Title :doctype: book :toclevels: 1 :outlinelevels: 2 == First Chapter === Chapter Section ==== Nested Section == Middle Chapter == Last Chapter EOS outline = extract_outline pdf (expect outline).to have_size 4 (expect outline[1][:title]).to eql 'First Chapter' (expect outline[1][:closed]).to be false (expect outline[1][:children]).not_to be_empty (expect outline[1][:children][0][:title]).to eql 'Chapter Section' (expect outline[1][:children][0][:children]).to be_empty end it 'should limit outline depth if value of outlinelevels attribute is less than value of toclevels attribute' do pdf = to_pdf <<~'EOS' = Document Title :doctype: book :toclevels: 2 :outlinelevels: 1 == First Chapter === Chapter Section ==== Nested Section == Middle Chapter == Last Chapter EOS outline = extract_outline pdf (expect outline).to have_size 4 (expect outline[1][:title]).to eql 'First Chapter' (expect outline[1][:children]).to be_empty end it 'should use second argument of outlinelevels attribute to control depth at which outline is expanded' do pdf = to_pdf <<~'EOS' = Document Title :doctype: book :outlinelevels: 3:1 == Chapter === Section ==== Subsection == Another Chapter === Another Section EOS outline = extract_outline pdf (expect outline).to have_size 3 (expect outline[0][:title]).to eql 'Document Title' (expect outline[0][:children]).to be_empty (expect outline[1][:title]).to eql 'Chapter' (expect outline[1][:closed]).to be false (expect outline[1][:children]).to have_size 1 (expect outline[1][:children][0][:title]).to eql 'Section' (expect outline[1][:children][0][:closed]).to be true (expect outline[1][:children][0][:children]).to have_size 1 (expect outline[1][:children][0][:children][0][:title]).to eql 'Subsection' (expect outline[1][:children][0][:children][0][:children]).to be_empty end it 'should expand outline based on depth not level' do pdf = to_pdf <<~'EOS' = Document Title :doctype: book :outlinelevels: 3:1 = Part == Chapter === Section EOS outline = extract_outline pdf (expect outline).to have_size 2 (expect outline[0][:title]).to eql 'Document Title' (expect outline[0][:children]).to be_empty (expect outline[1][:title]).to eql 'Part' (expect outline[1][:closed]).to be false (expect outline[1][:children]).to have_size 1 (expect outline[1][:children][0][:title]).to eql 'Chapter' (expect outline[1][:children][0][:closed]).to be true end end context 'Doctitle' do it 'should include doctitle in outline for book if notitle attribute is set' do pdf = to_pdf <<~'EOS' = Book Title :doctype: book :notitle: == Foo == Bar EOS (expect pdf.pages).to have_size 2 (expect pdf.pages[0].text).to eql 'Foo' outline = extract_outline pdf (expect outline).to have_size 3 (expect outline[0][:title]).to eql 'Book Title' (expect outline[1][:title]).to eql 'Foo' (expect outline[1][:dest][:pagenum]).to be 1 (expect outline[0][:dest][:pagenum]).to eql outline[1][:dest][:pagenum] (expect outline[0][:dest][:label]).to eql outline[1][:dest][:label] end it 'should include doctitle in outline for article if title-page attribute is set' do pdf = to_pdf <<~'EOS' = Article Title :title-page: == Foo == Bar EOS (expect pdf.pages).to have_size 2 (expect pdf.pages[0].text).to eql 'Article Title' (expect pdf.pages[1].text).to include 'Foo' outline = extract_outline pdf (expect outline).to have_size 3 (expect outline[0][:title]).to eql 'Article Title' (expect outline[0][:dest][:pagenum]).to be 1 (expect outline[0][:dest][:label]).to eql 'i' (expect outline[1][:title]).to eql 'Foo' (expect outline[1][:dest][:pagenum]).to be 2 (expect outline[1][:dest][:label]).to eql '1' end it 'should include doctitle in outline for article' do pdf = to_pdf <<~'EOS' = Article Title == Foo == Bar EOS (expect pdf.pages).to have_size 1 (expect pdf.pages[0].text).to include 'Article Title' (expect pdf.pages[0].text).to include 'Foo' outline = extract_outline pdf (expect outline).to have_size 3 (expect outline[0][:title]).to eql 'Article Title' (expect outline[0][:dest][:pagenum]).to be 1 (expect outline[0][:dest][:label]).to eql '1' (expect outline[1][:title]).to eql 'Foo' (expect outline[1][:dest][:pagenum]).to be 1 (expect outline[1][:dest][:label]).to eql '1' end it 'should include doctitle in outline for article if notitle attribute is set' do pdf = to_pdf <<~'EOS' = Article Title :notitle: == Foo == Bar EOS (expect pdf.pages).to have_size 1 (expect pdf.pages[0].text).not_to include 'Article Title' (expect pdf.pages[0].text).to include 'Foo' outline = extract_outline pdf (expect outline).to have_size 3 (expect outline[0][:title]).to eql 'Article Title' (expect outline[1][:title]).to eql 'Foo' (expect outline[1][:dest][:pagenum]).to be 1 (expect outline[1][:dest][:label]).to eql '1' (expect outline[0][:dest][:pagenum]).to eql outline[1][:dest][:pagenum] (expect outline[0][:dest][:label]).to eql outline[1][:dest][:label] end it 'should link doctitle dest to second page of article with front cover' do pdf = to_pdf <<~EOS = Document Title :front-cover-image: #{fixture_file 'cover.jpg', relative: true} content page EOS (expect pdf.pages).to have_size 2 outline = extract_outline pdf (expect outline).to have_size 1 doctitle_entry = outline[0] (expect doctitle_entry[:title]).to eql 'Document Title' (expect doctitle_entry[:dest][:pagenum]).to be 2 (expect doctitle_entry[:dest][:label]).to eql '1' end it 'should link doctitle dest to second page of book with front cover' do pdf = to_pdf <<~EOS = Document Title :doctype: book :front-cover-image: #{fixture_file 'cover.jpg', relative: true} content page EOS (expect pdf.pages).to have_size 3 outline = extract_outline pdf (expect outline).to have_size 1 doctitle_entry = outline[0] (expect doctitle_entry[:title]).to eql 'Document Title' (expect doctitle_entry[:dest][:pagenum]).to be 2 (expect doctitle_entry[:dest][:label]).to eql 'ii' end it 'should set doctitle in outline to value of untitled-label attribute if article has no doctitle or sections' do pdf = to_pdf 'body only' outline = extract_outline pdf (expect outline).to have_size 1 (expect outline[0][:title]).to eql 'Untitled' (expect outline[0][:dest][:label]).to eql '1' (expect outline[0][:children]).to be_empty end it 'should set doctitle in outline to value of untitled-label attribute if book has no doctitle or chapters' do pdf = to_pdf 'body only', doctype: :book outline = extract_outline pdf (expect outline).to have_size 1 (expect outline[0][:title]).to eql 'Untitled' (expect outline[0][:dest][:label]).to eql '1' (expect outline[0][:children]).to be_empty end it 'should set doctitle in outline to value of untitled-label attribute if document has no doctitle and has sections' do pdf = to_pdf <<~'EOS' == First Section == Last Section EOS outline = extract_outline pdf (expect outline).to have_size 3 (expect outline[0][:title]).to eql 'Untitled' (expect outline[0][:children]).to be_empty end it 'should set not set doctitle in outline if document has no doctitle, has sections, and untitled-label attribute is unset' do pdf = to_pdf <<~'EOS' :untitled-label!: == First Section == Last Section EOS outline = extract_outline pdf (expect outline).to have_size 2 (expect outline[0][:title]).to eql 'First Section' (expect outline[1][:title]).to eql 'Last Section' end it 'should not crash if doctitle is not set and untitled-label attribute is unset and document has no sections' do pdf = to_pdf <<~'EOS' :untitled-label!: body only EOS (expect extract_outline pdf).to be_empty end end context 'Labels' do it 'should label front matter pages using roman numerals' do pdf = to_pdf <<~'EOS' = Book Title :doctype: book :toc: == Chapter 1 == Chapter 2 EOS (expect get_page_labels pdf).to eql %w(i ii 1 2) end it 'should label title page using roman numeral ii if cover page is present' do pdf = to_pdf <<~'EOS' = Book Title :doctype: book :toc: :front-cover-image: image:cover.jpg[] == Chapter 1 == Chapter 2 EOS (expect get_page_labels pdf).to eql %w(i ii iii 1 2) outline = extract_outline pdf (expect outline[0][:title]).to eql 'Book Title' (expect outline[0][:dest][:pagenum]).to be 2 end it 'should label first page starting with 1 if no front matter is present' do pdf = to_pdf <<~'EOS', doctype: :book no front matter <<< more content EOS (expect get_page_labels pdf).to eql %w(1 2) end end context 'Sanitizer' do it 'should sanitize titles' do pdf = to_pdf <<~'EOS' = _Document_ *Title* :doctype: book == _First_ *Chapter* EOS outline = extract_outline pdf (expect outline).to have_size 2 (expect outline[0][:title]).to eql 'Document Title' (expect outline[1][:title]).to eql 'First Chapter' end it 'should decode character references in entries' do pdf = to_pdf <<~'EOS' = ACME(TM) Catalog <№ 1> :doctype: book == Paper Clips № 4 EOS outline = extract_outline pdf (expect outline).to have_size 2 (expect outline[0][:title]).to eql %(ACME\u2122 Catalog <\u2116 1>) (expect outline[1][:title]).to eql %(Paper Clips \u2116 4) end end end ���������������ruby-asciidoctor-pdf-1.6.2/spec/page_spec.rb��������������������������������������������������������0000664�0000000�0000000�00000072640�14163570564�0021002�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'spec_helper' describe 'Asciidoctor::PDF::Converter - Page' do context 'Size' do it 'should set page size specified by theme by default' do pdf = to_pdf <<~'EOS', analyze: :page content EOS (expect pdf.pages).to have_size 1 (expect pdf.pages[0][:size]).to eql PDF::Core::PageGeometry::SIZES['A4'] end it 'should set page size specified by pdf-page-size attribute using predefined name' do pdf = to_pdf <<~'EOS', analyze: :page :pdf-page-size: Letter content EOS (expect pdf.pages).to have_size 1 # NOTE pdf-core 0.8 coerces whole number floats to integers (expect pdf.pages[0][:size].map(&:to_f)).to eql PDF::Core::PageGeometry::SIZES['LETTER'] end it 'should set page size specified by pdf-page-size attribute using dimension array in points' do pdf = to_pdf <<~'EOS', analyze: :page :pdf-page-size: [600, 800] content EOS (expect pdf.pages).to have_size 1 (expect pdf.pages[0][:size].map(&:to_f)).to eql [600.0, 800.0] end it 'should set page size specified by pdf-page-size attribute using dimension array in inches' do pdf = to_pdf <<~'EOS', analyze: :page :pdf-page-size: [8.5in, 11in] content EOS (expect pdf.pages).to have_size 1 (expect pdf.pages[0][:size].map(&:to_f)).to eql PDF::Core::PageGeometry::SIZES['LETTER'] end it 'should set page size specified by pdf-page-size attribute using dimension string in inches' do pdf = to_pdf <<~'EOS', analyze: :page :pdf-page-size: 8.5in x 11in content EOS (expect pdf.pages).to have_size 1 (expect pdf.pages[0][:size].map(&:to_f)).to eql PDF::Core::PageGeometry::SIZES['LETTER'] end end context 'Layout' do it 'should use layout specified in theme by default' do pdf = to_pdf <<~'EOS' content EOS (expect pdf.pages).to have_size 1 (expect pdf.pages[0].orientation).to eql 'portrait' end it 'should use layout specified by pdf-page-layout attribute' do pdf = to_pdf <<~'EOS' :pdf-page-layout: landscape content EOS (expect pdf.pages).to have_size 1 (expect pdf.pages[0].orientation).to eql 'landscape' end end context 'Initial Zoom' do it 'should set initial zoom to FitH by default' do pdf = to_pdf 'content' open_action = pdf.catalog[:OpenAction] (expect open_action).not_to be_nil (expect open_action).to have_size 3 (expect pdf.objects[open_action[0]]).to eql (pdf.page 1).page_object (expect open_action[1]).to be :FitH (expect open_action[2]).to eql (get_page_size pdf, 1)[1] end it 'should set initial zoom as specified by theme' do pdf = to_pdf 'content', pdf_theme: { page_initial_zoom: 'Fit' } open_action = pdf.catalog[:OpenAction] (expect open_action).not_to be_nil (expect open_action).to have_size 2 (expect pdf.objects[open_action[0]]).to eql (pdf.page 1).page_object (expect open_action[1]).to be :Fit end end context 'Mode' do it 'should set page mode to /UseOutlines by default' do pdf = to_pdf 'content' (expect pdf.catalog[:PageMode]).to be :UseOutlines end it 'should set page mode to /UseOutlines if value of page_mode key in theme is outline' do pdf = to_pdf 'content', pdf_theme: { page_mode: 'outline' } (expect pdf.catalog[:PageMode]).to be :UseOutlines end it 'should set page mode to /UseOutlines if value of pdf-page-mode attribute is outline' do pdf = to_pdf 'content', attribute_overrides: { 'pdf-page-mode' => 'outline' } (expect pdf.catalog[:PageMode]).to be :UseOutlines end it 'should set page mode to /UseNone if value of page_mode key in theme is none' do pdf = to_pdf 'content', pdf_theme: { page_mode: 'none' } (expect pdf.catalog[:PageMode]).to be :UseNone end it 'should set page mode to /UseNone if value of pdf-page-mode attribute is none' do pdf = to_pdf 'content', attribute_overrides: { 'pdf-page-mode' => 'none' } (expect pdf.catalog[:PageMode]).to be :UseNone end it 'should set page mode to /UseThumbs if value of page_mode key in theme is thumbs' do pdf = to_pdf 'content', pdf_theme: { page_mode: 'thumbs' } (expect pdf.catalog[:PageMode]).to be :UseThumbs end it 'should set page mode to /UseThumbs if value of pdf-page-mode attribute is thumbs' do pdf = to_pdf 'content', attribute_overrides: { 'pdf-page-mode' => 'thumbs' } (expect pdf.catalog[:PageMode]).to be :UseThumbs end it 'should set page mode to /UseOutlines if value of page_mode key in theme is unrecognized' do pdf = to_pdf 'content', pdf_theme: { page_mode: 'invalid' } (expect pdf.catalog[:PageMode]).to be :UseOutlines end it 'should set page mode to /UseOutlines if value of pdf-page-mode attribute is unrecognized' do pdf = to_pdf 'content', attribute_overrides: { 'pdf-page-mode' => 'invalid' } (expect pdf.catalog[:PageMode]).to be :UseOutlines end it 'should set page mode to fullscreen if page_mode key in theme is fullscreen' do pdf = to_pdf 'content', pdf_theme: { page_mode: 'fullscreen' } (expect pdf.catalog[:PageMode]).to be :FullScreen (expect pdf.catalog[:NonFullScreenPageMode]).to be :UseOutlines end it 'should set page mode to fullscreen if pdf-page-mode attribute is fullscreen' do pdf = to_pdf 'content', attribute_overrides: { 'pdf-page-mode' => 'fullscreen' } (expect pdf.catalog[:PageMode]).to be :FullScreen (expect pdf.catalog[:NonFullScreenPageMode]).to be :UseOutlines end it 'should set secondary page mode to none if page_mode key in theme is fullscreen none' do pdf = to_pdf 'content', pdf_theme: { page_mode: 'fullscreen none' } (expect pdf.catalog[:PageMode]).to be :FullScreen (expect pdf.catalog[:NonFullScreenPageMode]).to be :UseNone end it 'should set secondary page mode to none if pdf-page-mode attribute is fullscreen none' do pdf = to_pdf 'content', attribute_overrides: { 'pdf-page-mode' => 'fullscreen none' } (expect pdf.catalog[:PageMode]).to be :FullScreen (expect pdf.catalog[:NonFullScreenPageMode]).to be :UseNone end it 'should allow pdf-page-mode attribute in document to disable fullscreen mode' do pdf = to_pdf 'content', pdf_theme: { page_mode: 'fullscreen' }, attribute_overrides: { 'pdf-page-mode' => '' } (expect pdf.catalog[:PageMode]).not_to be :FullScreen (expect pdf.catalog).not_to have_key :NonFullScreenPageMode end end context 'Margin' do it 'should use the margin specified in theme by default' do input = 'content' prawn = to_pdf input, analyze: :document pdf = to_pdf input, analyze: true (expect prawn.page_margin).to eql [36, 48.24, 48.24, 48.24] (expect pdf.text[0].values_at :string, :page_number, :x, :y).to eql ['content', 1, 48.24, 793.926] end it 'should use the margin specified by the pdf-page-margin attribute as array' do ['0.5in, 1in, 0.5in, 1in', '36pt, 72pt, 36pt, 72pt'].each do |val| pdf = to_pdf <<~EOS, analyze: true :pdf-page-margin: [#{val}] content EOS (expect pdf.text[0].values_at :string, :page_number, :x, :y).to eql ['content', 1, 72.0, 793.926] end end it 'should use the margin specified by the pdf-page-margin attribute as string' do %w(1in 72pt 25.4mm 2.54cm 96px).each do |val| pdf = to_pdf <<~EOS, analyze: true :pdf-page-margin: #{val} content EOS (expect pdf.text[0].values_at :string, :page_number, :x, :y).to eql ['content', 1, 72.0, 757.926] end end it 'should use recto/verso margins when media=prepress', visual: true do to_file = to_pdf_file <<~'EOS', 'page-prepress-margins.pdf', enable_footer: true = Book Title :media: prepress :doctype: book :front-cover-image: ~ == First Chapter <<< === A Section == Last Chapter <<< === B Section EOS (expect to_file).to visually_match 'page-prepress-margins.pdf' end it 'should derive recto/verso margins from inner/outer margins when media=prepress', visual: true do pdf_theme = { margin_inner: '1in', margin_outer: '0.75in', } to_file = to_pdf_file <<~'EOS', 'page-prepress-custom-margins.pdf', pdf_theme: pdf_theme, enable_footer: true = Book Title :media: prepress :doctype: book :front-cover-image: ~ == First Chapter <<< === A Section == Last Chapter <<< === B Section EOS (expect to_file).to visually_match 'page-prepress-custom-margins.pdf' end it 'should not apply recto margins to title page of prepress document by default if first page', visual: true do pdf_theme = { margin_inner: '1in', margin_outer: '0.75in', } to_file = to_pdf_file <<~'EOS', 'page-prepress-margins-no-cover.pdf', pdf_theme: pdf_theme, enable_footer: true = Book Title :media: prepress :doctype: book == First Chapter <<< === A Section == Last Chapter <<< === B Section EOS (expect to_file).to visually_match 'page-prepress-margins-no-cover.pdf' end it 'should apply recto margins to first page of prepress document if not title page or cover', visual: true do pdf_theme = { margin_inner: '1in', margin_outer: '0.75in', } to_file = to_pdf_file <<~'EOS', 'page-prepress-margins-body-only.pdf', pdf_theme: pdf_theme, enable_footer: true :media: prepress :doctype: book == First Chapter <<< === A Section == Last Chapter <<< === B Section EOS (expect to_file).to visually_match 'page-prepress-margins-body-only.pdf' end end context 'Background' do it 'should set page background color specified by page_background_color key in theme', visual: true do to_file = to_pdf_file <<~'EOS', 'page-background-color.pdf', pdf_theme: { page_background_color: 'ECFBF4' } = Document Title :doctype: book content EOS (expect to_file).to visually_match 'page-background-color.pdf' end it 'should set the background image using target of macro specified in page-background-image attribute', visual: true do to_file = to_pdf_file <<~'EOS', 'page-background-image-inline-macro.pdf' = Document Title :doctype: book :page-background-image: image:bg.png[] content EOS (expect to_file).to visually_match 'page-background-image.pdf' end it 'should use remote image specified by page-background-image attribute as page background', visual: true do with_local_webserver do |base_url| [%(#{base_url}/bg.png), %(image:#{base_url}/bg.png[])].each_with_index do |image_url, idx| to_file = output_file %(page-background-image-remote-#{idx}.pdf) doc = to_pdf <<~EOS, analyze: :document, to_file: to_file, attribute_overrides: { 'allow-uri-read' => '' } = Document Title :doctype: book :page-background-image: #{image_url} content EOS (expect to_file).to visually_match 'page-background-image.pdf' # NOTE: we could assert no log messages instead, but that assumes the remove_tmp_files method is even called (expect doc.converter.instance_variable_get :@tmp_files).to be_empty end end end it 'should use remote image specified in theme as page background', visual: true do with_local_webserver do |base_url| [%(#{base_url}/bg.png), %(image:#{base_url}/bg.png[])].each_with_index do |image_url, idx| to_file = to_pdf_file <<~EOS, %(page-background-image-remote-#{idx}.pdf), attribute_overrides: { 'allow-uri-read' => '' }, pdf_theme: { page_background_image: image_url } = Document Title :doctype: book content EOS (expect to_file).to visually_match 'page-background-image.pdf' end end end it 'should use data URI specified by page-background-image attribute as page background', visual: true do image_data = File.binread fixture_file 'square.png' encoded_image_data = Base64.strict_encode64 image_data to_file = to_pdf_file <<~EOS, %(page-background-image-attr-data-uri.pdf) = Document Title :page-background-image: image:data:image/png;base64,#{encoded_image_data}[fit=fill] This page has a background image that is rather loud. EOS (expect to_file).to visually_match 'page-background-image-fill.pdf' end it 'should use data URI specified in theme as page background', visual: true do image_data = File.binread fixture_file 'square.png' encoded_image_data = Base64.strict_encode64 image_data pdf_theme = { page_background_image: %(image:data:image/png;base64,#{encoded_image_data}[fit=fill]) } to_file = to_pdf_file <<~EOS, %(page-background-image-attr-data-uri.pdf), pdf_theme: pdf_theme = Document Title This page has a background image that is rather loud. EOS (expect to_file).to visually_match 'page-background-image-fill.pdf' end it 'should resolve background image in theme relative to theme dir', visual: true do [true, false].each do |macro| pdf_theme = { __dir__: fixtures_dir, page_background_image: (macro ? 'image:bg.png[]' : 'bg.png'), } to_file = to_pdf_file <<~'EOS', %(page-background-image-#{macro ? 'macro' : 'bare'}.pdf), pdf_theme: pdf_theme = Document Title :doctype: book content EOS (expect to_file).to visually_match 'page-background-image.pdf' end end it 'should resolve background image in theme relative to themesdir in classloader', if: RUBY_ENGINE == 'jruby' do require fixture_file 'pdf-themes.jar' pdf = to_pdf <<~'EOS', attribute_overrides: { 'pdf-theme' => 'uri:classloader:/pdf-themes/page-background-image-theme.yml' } = Document Title :doctype: book content EOS images = get_images pdf, 1 (expect images).to have_size 1 end it 'should resolve background image with absolute path for theme loaded from classloader', if: RUBY_ENGINE == 'jruby' do require fixture_file 'pdf-themes.jar' pdf = to_pdf <<~'EOS', attribute_overrides: { 'pdf-theme' => 'uri:classloader:/pdf-themes/page-background-image-from-fixturesdir-theme.yml', 'fixturesdir' => fixtures_dir } = Document Title :doctype: book content EOS images = get_images pdf, 1 (expect images).to have_size 1 end it 'should resolve background image in theme relative to themesdir', visual: true do attribute_overrides = { 'pdf-theme' => 'page-background-image', 'pdf-themesdir' => fixtures_dir, } to_file = to_pdf_file <<~'EOS', 'page-background-image-bare-in-theme-file.pdf', attribute_overrides: attribute_overrides = Document Title :doctype: book content EOS (expect to_file).to visually_match 'page-background-image.pdf' end it 'should allow both background color and image to be set concurrently', visual: true do pdf_theme = { page_background_color: 'F9F9F9', page_background_image: %(image:#{fixture_file 'tux.png'}[fit=none,pdfwidth=50%]), } to_file = to_pdf_file '{blank}', 'page-background-color-and-image.pdf', pdf_theme: pdf_theme (expect to_file).to visually_match 'page-background-color-and-image.pdf' end it 'should resolve attribute reference in image path in theme', visual: true do pdf_theme = { page_background_color: 'F9F9F9', page_background_image: 'image:{docdir}/tux.png[fit=none,pdfwidth=50%]', } to_file = to_pdf_file '{blank}', 'page-background-color-and-image-relative-to-docdir.pdf', pdf_theme: pdf_theme, attribute_overrides: { 'docdir' => fixtures_dir } (expect to_file).to visually_match 'page-background-color-and-image.pdf' end it 'should only substitute attributes in image path in theme', visual: true do pdf_theme = { page_background_color: 'F9F9F9', page_background_image: 'image:{docdir}/tux--classic.png[fit=none,pdfwidth=50%]', } to_file = to_pdf_file '{blank}', 'page-background-color-and-image-relative-to-docdir-no-replacements.pdf', pdf_theme: pdf_theme, attribute_overrides: { 'docdir' => fixtures_dir } (expect to_file).to visually_match 'page-background-color-and-image.pdf' end it 'should recognize attribute value that use block macro syntax', visual: true do to_file = to_pdf_file <<~'EOS', 'page-background-image-block-macro.pdf' = Document Title :doctype: book :page-background-image: image:bg.png[] content EOS (expect to_file).to visually_match 'page-background-image.pdf' end it 'should not crash if background image is a URI and the allow-uri-read attribute is not set' do (expect do to_pdf <<~'EOS' = Document Title :page-background-image: image:https://example.org/bg.svg[] content EOS end).to not_raise_exception & (log_message severity: :WARN, message: '~allow-uri-read is not enabled') end it 'should set the background image using path specified in page-background-image attribute', visual: true do to_file = to_pdf_file <<~EOS, 'page-background-image-path.pdf' = Document Title :doctype: book :page-background-image: #{fixture_file 'bg.png', relative: true} content EOS (expect to_file).to visually_match 'page-background-image.pdf' end it 'should scale background image until it reaches shortest side', visual: true do to_file = to_pdf_file <<~'EOS', 'page-background-image-max-height.pdf' = Document Title :pdf-page-layout: landscape :page-background-image: image:square.png[] This page has a background image that is rather loud. EOS (expect to_file).to visually_match 'page-background-image-max-height.pdf' end it 'should set width of background image according to width attribute when fit=none', visual: true do to_file = to_pdf_file <<~'EOS', 'page-background-image-width.pdf' = Document Title :page-background-image: image:square.png[bg,200,fit=none] This page has a background image that is rather loud. EOS (expect to_file).to visually_match 'page-background-image-width.pdf' end it 'should scale up background SVG to fit boundaries of page if value is path', visual: true do to_file = to_pdf_file <<~EOS, 'page-background-image-svg-scale-up-from-path.pdf' = Document Title :page-background-image: #{fixture_file 'square.svg', relative: true} This page has a background image that is rather loud. EOS (expect to_file).to visually_match 'page-background-image-svg-scale-up.pdf' end it 'should scale up background SVG to fit boundaries of page if value is macro', visual: true do to_file = to_pdf_file <<~'EOS', 'page-background-image-svg-scale-up-from-macro.pdf' = Document Title :page-background-image: image:square.svg[] This page has a background image that is rather loud. EOS (expect to_file).to visually_match 'page-background-image-svg-scale-up.pdf' end it 'should scale up background SVG to fit boundaries of page if fit is contain', visual: true do to_file = to_pdf_file <<~'EOS', 'page-background-image-svg-fit-contain.pdf' = Document Title :page-background-image: image:square.svg[fit=contain] This page has a background image that is rather loud. EOS (expect to_file).to visually_match 'page-background-image-svg-scale-up.pdf' end it 'should scale up background SVG to fit boundaries of page if pdfwidth is 100% and fit=none', visual: true do to_file = to_pdf_file <<~'EOS', 'page-background-image-svg-pdfwidth.pdf' = Document Title :pdf-page-layout: landscape :page-background-image: image:square.svg[fit=none,pdfwidth=100%] This page has a background image that is rather loud. EOS (expect to_file).to visually_match 'page-background-image-svg-contain.pdf' end it 'should scale down background SVG to fit boundaries of page if value is path', visual: true do to_file = to_pdf_file <<~EOS, 'page-background-image-svg-scale-down-from-path.pdf' = Document Title :page-background-image: #{fixture_file 'example-watermark.svg', relative: true} This page has a watermark. EOS (expect to_file).to visually_match 'page-background-image-svg-scale-down.pdf' end it 'should scale down background SVG to fit boundaries of page if value is macro', visual: true do to_file = to_pdf_file <<~'EOS', 'page-background-image-svg-scale-down-from-macro.pdf' = Document Title :page-background-image: image:example-watermark.svg[] This page has a watermark. EOS (expect to_file).to visually_match 'page-background-image-svg-scale-down.pdf' end it 'should scale down background SVG to fit boundaries of page if fit is scale-down', visual: true do to_file = to_pdf_file <<~'EOS', 'page-background-image-svg-fit-scale-down.pdf' = Document Title :page-background-image: image:example-watermark.svg[fit=scale-down] This page has a watermark. EOS (expect to_file).to visually_match 'page-background-image-svg-scale-down.pdf' end it 'should not scale background SVG with explicit width to fit boundaries of page if fit is scale-down and image fits', visual: true do to_file = to_pdf_file <<~'EOS', 'page-background-image-svg-prescaled.pdf' = Document Title :pdf-page-layout: landscape :page-background-image: image:green-bar.svg[pdfwidth=50%,fit=scale-down] This page has a watermark. EOS (expect to_file).to visually_match 'page-background-image-svg-prescaled.pdf' end it 'should not scale background SVG to fit boundaries of page if fit is none', visual: true do to_file = to_pdf_file <<~'EOS', 'page-background-image-svg-fit-none.pdf' = Document Title :page-background-image: image:example-watermark.svg[fit=none] This page has a watermark. EOS (expect to_file).to visually_match 'page-background-image-svg-unscaled.pdf' end it 'should scale up background SVG until it covers page if fit=cover', visual: true do to_file = to_pdf_file <<~'EOS', 'page-background-image-svg-cover.pdf' = Document Title :page-background-image: image:square.svg[fit=cover] This page has a background image that is rather loud. EOS (expect to_file).to visually_match 'page-background-image-svg-cover.pdf' end it 'should scale background PNG to fill page if fit=fill', visual: true do to_file = to_pdf_file <<~'EOS', 'page-background-image-fill.pdf' = Document Title :page-background-image: image:square.png[fit=fill] This page has a background image that is rather loud. EOS (expect to_file).to visually_match 'page-background-image-fill.pdf' end it 'should allow remote image in SVG to be read if allow-uri-read attribute is set', visual: true, network: true do to_file = to_pdf_file <<~'EOS', 'page-background-image-svg-with-remote-image.pdf', attribute_overrides: { 'allow-uri-read' => '' } :page-background-image: image:svg-with-remote-image.svg[fit=none,position=top] Asciidoctor EOS (expect to_file).to visually_match 'page-background-image-svg-with-image.pdf' end it 'should not allow remote image in SVG to be read if allow-uri-read attribute is not set', visual: true do to_file = to_pdf_file <<~'EOS', 'page-background-image-svg-with-remote-image-disabled.pdf' :page-background-image: image:svg-with-remote-image.svg[fit=none,position=top] Asciidoctor EOS (expect to_file).to visually_match 'page-background-image-svg-with-image-disabled.pdf' end it 'should read local image relative to SVG', visual: true do to_file = to_pdf_file <<~'EOS', 'page-background-image-svg-with-local-image.pdf' :page-background-image: image:svg-with-local-image.svg[fit=none,position=top] Asciidoctor EOS (expect to_file).to visually_match 'page-background-image-svg-with-image.pdf' end it 'should position background image according to value of position attribute on macro', visual: true do to_file = to_pdf_file <<~'EOS', 'page-background-image-position.pdf' = Document Title :page-background-image: image:example-watermark.svg[fit=none,pdfwidth=50%,position=bottom center] content EOS (expect to_file).to visually_match 'page-background-image-position.pdf' end it 'should alternate page background if both verso and recto background images are specified', visual: true do to_file = to_pdf_file <<~'EOS', 'page-background-image-alt.pdf' = Document Title :doctype: book :page-background-image-recto: image:recto-bg.png[] :page-background-image-verso: image:verso-bg.png[] content <<< more content <<< the end EOS (expect to_file).to visually_match 'page-background-image-alt.pdf' end it 'should alternate page background in landscape if both verso and recto background images are specified', visual: true do to_file = to_pdf_file <<~'EOS', 'page-background-image-alt-landscape.pdf' = Document Title :doctype: book :pdf-page-layout: landscape :page-background-image-recto: image:recto-bg-landscape.png[] :page-background-image-verso: image:verso-bg-landscape.png[] content <<< more content <<< the end EOS (expect to_file).to visually_match 'page-background-image-alt-landscape.pdf' end it 'should use background image as fallback if background image for side not specified', visual: true do to_file = to_pdf_file <<~'EOS', 'page-background-image-alt.pdf' = Document Title :doctype: book :page-background-image: image:recto-bg.png[] :page-background-image-verso: image:verso-bg.png[] content <<< more content <<< the end EOS (expect to_file).to visually_match 'page-background-image-alt.pdf' end it 'should allow recto background image to be disabled if side is set to none', visual: true do [ { 'page-background-image' => 'image:recto-bg.png[]', 'page-background-image-verso' => 'none' }, { 'page-background-image-recto' => 'image:recto-bg.png[]' }, ].each do |attribute_overrides| to_file = to_pdf_file <<~EOS, 'page-background-image-recto-only.pdf', attribute_overrides: attribute_overrides = Document Title :doctype: book content <<< more content <<< the end EOS (expect to_file).to visually_match 'page-background-image-recto-only.pdf' end end it 'should allow verso background image to be disabled if side is set to none', visual: true do [ { 'page-background-image' => 'image:verso-bg.png[]', 'page-background-image-recto' => 'none' }, { 'page-background-image-verso' => 'image:verso-bg.png[]' }, ].each do |attribute_overrides| to_file = to_pdf_file <<~EOS, 'page-background-image-verso-only.pdf', attribute_overrides: attribute_overrides = Document Title :doctype: book content <<< more content <<< the end EOS (expect to_file).to visually_match 'page-background-image-verso-only.pdf' end end it 'should use the specified image format', visual: true do source_file = (dest_file = fixture_file 'square') + '.svg' begin FileUtils.cp source_file, dest_file to_file = to_pdf_file <<~'EOS', 'page-background-image-format.pdf' = Document Title :page-background-image: image:square[format=svg] This page has a background image that is rather loud. EOS (expect to_file).to visually_match 'page-background-image-svg-scale-up.pdf' ensure File.unlink dest_file end end end context 'Watermark' do it 'should stamp watermark image on the top of all pages if page-foreground-image is specified', visual: true do to_file = to_pdf_file <<~EOS, 'page-watermark.pdf' = Document Title :doctype: book :page-foreground-image: image:watermark.svg[] [.text-left] #{['lots of rambling'] * 150 * ?\n} <<< [.text-left] #{['lots of rambling'] * 150 * ?\n} EOS (expect to_file).to visually_match 'page-watermark.pdf' end it 'should no apply watermark image to front cover, back cover, or imported page', visual: true do to_file = to_pdf_file <<~EOS, 'page-watermark-content-only.pdf' = Document Title :doctype: book :front-cover-image: image:cover.jpg[] :back-cover-image: image:cover.jpg[] :page-foreground-image: image:watermark.svg[] :notitle: [.text-left] #{['lots of rambling'] * 150 * ?\n} image::red-green-blue.pdf[page=1] [.text-left] #{['lots of rambling'] * 150 * ?\n} EOS (expect to_file).to visually_match 'page-watermark-content-only.pdf' end end end ������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/paragraph_spec.rb���������������������������������������������������0000664�0000000�0000000�00000015602�14163570564�0022026�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'spec_helper' describe 'Asciidoctor::PDF::Converter - Paragraph' do it 'should normalize newlines and whitespace' do pdf = to_pdf <<~EOS, analyze: true He's a real nowhere man, Sitting in his nowhere land, Making all his nowhere plans\tfor nobody. EOS (expect pdf.text).to have_size 1 text = pdf.text[0][:string] (expect text).not_to include ' ' (expect text).not_to include ?\t (expect text).not_to include ?\n (expect text).to include 'man, Sitting' end it 'should indent first line of paragraph if prose_text_indent key is set in theme' do pdf = to_pdf (lorem_ipsum '2-paragraphs'), pdf_theme: { prose_text_indent: 18 }, analyze: true (expect pdf.text).to have_size 4 (expect pdf.text[0][:x]).to be > pdf.text[1][:x] (expect pdf.text[2][:x]).to be > pdf.text[3][:x] end it 'should not alter line height of wrapped lines when prose_text_indent is set in theme that uses a TTF font' do input = lorem_ipsum '4-sentences-2-paragraphs' pdf = to_pdf input, analyze: true last_line_y = pdf.text[-1][:y] pdf = to_pdf input, pdf_theme: { prose_text_indent: 18 }, analyze: true (expect pdf.text[-1][:y]).to eql last_line_y end it 'should not alter line height of wrapped lines when prose_text_indent is set in theme that uses an AFM font' do input = lorem_ipsum '4-sentences-2-paragraphs' pdf = to_pdf input, pdf_theme: { extends: 'base' }, analyze: true last_line_y = pdf.text[-1][:y] pdf = to_pdf input, pdf_theme: { extends: 'base', prose_text_indent: 18 }, analyze: true (expect pdf.text[-1][:y]).to eql last_line_y end it 'should use prose_margin_inner between paragraphs when prose-text_indent key is set in theme' do pdf = to_pdf <<~EOS, pdf_theme: { prose_text_indent: 18, prose_margin_inner: 0 }, analyze: true #{lorem_ipsum '2-sentences-2-paragraphs'} * list item EOS line_spacing = 1.upto(3).map {|i| (pdf.text[i - 1][:y] - pdf.text[i][:y]).round 2 }.uniq (expect line_spacing).to have_size 1 (expect line_spacing[0]).to eql 15.78 (expect pdf.text[0][:x]).to be > pdf.text[1][:x] (expect pdf.text[2][:x]).to be > pdf.text[3][:x] list_item_text = (pdf.find_text 'list item')[0] (expect (pdf.text[3][:y] - list_item_text[:y]).round 2).to eql 27.78 end it 'should allow text alignment to be controlled using text-align document attribute' do pdf = to_pdf <<~'EOS', analyze: true = Document Title :text-align: right right-aligned EOS center_x = (pdf.page 1)[:size][1] / 2 paragraph_text = (pdf.find_text 'right-aligned')[0] (expect paragraph_text[:x]).to be > center_x end it 'should indent first line of abstract if prose_text_indent key is set in theme' do pdf = to_pdf <<~'EOS', pdf_theme: { prose_text_indent: 18 }, analyze: true = Document Title [abstract] This document is configured to have indented paragraphs. This option is controlled by the prose_text_indent key in the theme. And on it goes. EOS (expect pdf.text[1][:string]).to start_with 'This document' (expect pdf.text[1][:x]).to be > pdf.text[2][:x] (expect pdf.text[3][:string]).to eql 'And on it goes.' end it 'should decorate first line of abstract when abstract has multiple lines' do pdf = to_pdf <<~'EOS', analyze: true = Document Title [abstract] First line of abstract. + Second line of abstract. == Section content EOS abstract_text_line1 = pdf.find_text 'First line of abstract.' abstract_text_line2 = pdf.find_text 'Second line of abstract.' (expect abstract_text_line1).to have_size 1 (expect abstract_text_line1[0][:order]).to be 2 (expect abstract_text_line1[0][:font_name]).to include 'BoldItalic' (expect abstract_text_line2).to have_size 1 (expect abstract_text_line2[0][:order]).to be 3 (expect abstract_text_line2[0][:font_name]).not_to include 'BoldItalic' end it 'should use consistent spacing between lines in abstract when theme uses AFM font' do pdf = to_pdf <<~'EOS', pdf_theme: { extends: 'base', abstract_first_line_font_color: 'AA0000' }, analyze: true = Document Title [abstract] First line of abstract. + Second line of abstract. + Third line of abstract. == Section content EOS abstract_text_line1 = (pdf.find_text 'First line of abstract.')[0] abstract_text_line2 = (pdf.find_text 'Second line of abstract.')[0] abstract_text_line3 = (pdf.find_text 'Third line of abstract.')[0] line1_line2_gap = abstract_text_line1[:y] - abstract_text_line2[:y] line2_line3_gap = abstract_text_line2[:y] - abstract_text_line3[:y] (expect abstract_text_line1[:font_color]).to eql 'AA0000' (expect line1_line2_gap).to eql line2_line3_gap end it 'should decorate first line of abstract when abstract has single line' do pdf = to_pdf <<~'EOS', analyze: true = Document Title [abstract] First and only line of abstract. == Section content EOS abstract_text = pdf.find_text 'First and only line of abstract.' (expect abstract_text).to have_size 1 (expect abstract_text[0][:order]).to be 2 (expect abstract_text[0][:font_name]).to include 'BoldItalic' end it 'should honor text alignment role on abstract paragraph' do pdf = to_pdf <<~'EOS', analyze: true = Document Title [abstract.text-right] Enter stage right. == Section content EOS halfway_point = (pdf.page 1)[:size][0] * 0.5 abstract_text = pdf.find_text 'Enter stage right.' (expect abstract_text).to have_size 1 (expect abstract_text[0][:x]).to be > halfway_point end it 'should honor text alignment role on nested abstract paragraph' do pdf = to_pdf <<~'EOS', analyze: true = Document Title [abstract] -- [.text-right] Enter stage right. Mirror, stage left. -- == Section content EOS halfway_point = (pdf.page 1)[:size][0] * 0.5 abstract_text1 = pdf.find_text 'Enter stage right.' (expect abstract_text1).to have_size 1 (expect abstract_text1[0][:x]).to be > halfway_point abstract_text2 = pdf.find_text 'Mirror, stage left.' (expect abstract_text2).to have_size 1 (expect abstract_text2[0][:x]).to be < halfway_point end it 'should apply same line height to all paragraphs in abstract' do pdf = to_pdf <<~'EOS', analyze: true = Document Title [abstract] -- paragraph 1, line 1 + paragraph 1, line 2 paragraph 2, line 1 + paragraph 2, line 2 -- == Section content EOS p1_l1_text = (pdf.find_text 'paragraph 1, line 1')[0] p1_l2_text = (pdf.find_text 'paragraph 1, line 2')[0] p2_l1_text = (pdf.find_text 'paragraph 2, line 1')[0] p2_l2_text = (pdf.find_text 'paragraph 2, line 2')[0] (expect p2_l1_text[:y] - p2_l2_text[:y]).to eql p1_l1_text[:y] - p1_l2_text[:y] end end ������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/pass_spec.rb��������������������������������������������������������0000664�0000000�0000000�00000001370�14163570564�0021024�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'spec_helper' describe 'Asciidoctor::PDF::Converter - Pass' do it 'should render pass as literal block' do pdf = to_pdf <<~'EOS', analyze: true ++++ <p>This is a pass block.</p> ++++ EOS (expect pdf.text).to have_size 1 text = pdf.text[0] (expect text[:string]).to eql '<p>This is a pass block.</p>' (expect text[:font_name]).to eql 'mplus1mn-regular' end it 'should render stem as literal block if stem extension not present' do pdf = to_pdf <<~'EOS', analyze: true [stem] ++++ sig = enc(H(D), s) ++++ EOS equation_text = (pdf.find_text 'sig = enc(H(D), s)')[0] (expect equation_text[:font_name]).to eql 'mplus1mn-regular' end end ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/pdf_info_spec.rb����������������������������������������������������0000664�0000000�0000000�00000016664�14163570564�0021656�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'spec_helper' describe 'Asciidoctor::PDF::Converter - PDF Info' do context 'compliance' do it 'should generate a PDF 1.4-compatible document by default' do (expect (to_pdf 'hello').pdf_version).to eql 1.4 end it 'should set PDF version specified by pdf-version attribute if valid' do (expect (to_pdf 'hello', attributes: { 'pdf-version' => '1.6' }).pdf_version).to eql 1.6 end it 'should generate a PDF 1.4-compatible document if value of pdf-version attribute is not recognized' do (expect (to_pdf 'hello', attributes: { 'pdf-version' => '3.0' }).pdf_version).to eql 1.4 end end context 'attribution' do it 'should include Asciidoctor PDF and Prawn versions in Creator field' do creator = (to_pdf 'hello').info[:Creator] (expect creator).not_to be_nil (expect creator).to include %(Asciidoctor PDF #{Asciidoctor::PDF::VERSION}) (expect creator).to include %(Prawn #{Prawn::VERSION}) end it 'should set Producer field to value of Creator field by default' do pdf = to_pdf 'hello' (expect pdf.info[:Producer]).not_to be_nil (expect pdf.info[:Producer]).to eql pdf.info[:Creator] end it 'should set Author and Producer field to value of author attribute if set' do ['Author Name', ':author: Author Name'].each do |author_line| pdf = to_pdf <<~EOS = Document Title #{author_line} content EOS (expect pdf.info[:Producer]).to eql pdf.info[:Author] (expect pdf.info[:Author]).to eql 'Author Name' end end it 'should set Author and Producer field to value of author attribute if set to multiple authors' do ['Author Name; Assistant Name', ':authors: Author Name; Assistant Name'].each do |author_line| pdf = to_pdf <<~EOS = Document Title #{author_line} [%hardbreaks] First Author: {author_1} Second Author: {author_2} EOS lines = ((pdf.page 1).text.split ?\n).map(&:strip) (expect pdf.info[:Producer]).to eql pdf.info[:Author] (expect pdf.info[:Author]).to eql 'Author Name, Assistant Name' (expect lines).to include 'First Author: Author Name' (expect lines).to include 'Second Author: Assistant Name' end end it 'should set Producer field to value of publisher attribute if set' do pdf = to_pdf <<~'EOS' = Document Title Author Name :publisher: Big Cheese content EOS (expect pdf.info[:Author]).to eql 'Author Name' (expect pdf.info[:Producer]).to eql 'Big Cheese' end it 'should set Subject field to value of subject attribute if set' do pdf = to_pdf <<~'EOS' = Document Title :subject: Cooking content EOS (expect pdf.info[:Subject]).to eql 'Cooking' end it 'should set Keywords field to value of subject attribute if set' do pdf = to_pdf <<~'EOS' = Document Title :keywords: cooking, diet, plants content EOS (expect pdf.info[:Keywords]).to eql 'cooking, diet, plants' end it 'should parse date attributes as local date objects' do pdf = to_pdf 'content', attribute_overrides: { 'docdatetime' => '2019-01-15', 'localdatetime' => '2019-01-15' } (expect pdf.info[:ModDate]).not_to be_nil (expect pdf.info[:ModDate]).to start_with 'D:20190115000000' (expect pdf.info[:CreationDate]).not_to be_nil (expect pdf.info[:CreationDate]).to start_with 'D:20190115000000' end it 'should use current date as fallback when date attributes cannot be parsed' do pdf = to_pdf 'content', attribute_overrides: { 'docdatetime' => 'garbage', 'localdatetime' => 'garbage' } (expect pdf.info[:ModDate]).not_to be_nil (expect pdf.info[:ModDate]).to start_with 'D:' (expect pdf.info[:CreationDate]).not_to be_nil (expect pdf.info[:CreationDate]).to start_with 'D:' (expect pdf.info[:ModDate]).to eql pdf.info[:CreationDate] end it 'should not add dates to document if reproducible attribute is set' do pdf = to_pdf <<~'EOS', attribute_overrides: { 'reproducible' => '' } = Document Title Author Name content EOS (expect pdf.info[:ModDate]).to be_nil (expect pdf.info[:CreationDate]).to be_nil end it 'should not add software versions to document if reproducible attribute is set' do pdf = to_pdf <<~'EOS', attribute_overrides: { 'reproducible' => '' } = Document Title Author Name content EOS (expect pdf.info[:Creator]).to eql 'Asciidoctor PDF, based on Prawn' end it 'should set mod and creation dates to match SOURCE_DATE_EPOCH environment variable' do old_source_date_epoch = ENV.delete 'SOURCE_DATE_EPOCH' begin ENV['SOURCE_DATE_EPOCH'] = '1234123412' pdf = to_pdf 'content' (expect pdf.info[:ModDate]).to eql 'D:20090208200332+00\'00\'' (expect pdf.info[:CreationDate]).to eql 'D:20090208200332+00\'00\'' ensure if old_source_date_epoch ENV['SOURCE_DATE_EPOCH'] = old_source_date_epoch else ENV.delete 'SOURCE_DATE_EPOCH' end end end if asciidoctor_1_5_7_or_better? end context 'document title' do it 'should set Title field to value of untitled-label attribute if doctitle is not set' do pdf = to_pdf 'body' (expect pdf.info[:Title]).to eql 'Untitled' end it 'should not set Title field if untitled-label attribute is unset and doctitle is not set' do pdf = to_pdf 'body', attribute_overrides: { 'untitled-label' => nil } (expect pdf.info).not_to have_key :Title end it 'should set Title field to value of document title if set' do pdf = to_pdf '= Document Title' (expect pdf.info[:Title]).to eql 'Document Title' end it 'should remove text formatting from document title before assigning to Title field' do pdf = to_pdf '= *Document* _Title_' (expect pdf.info[:Title]).to eql 'Document Title' end it 'should decode character references in document title before assigning to Title field' do pdf = to_pdf '= ACME(TM) Catalog <№ 1>' (expect pdf.info[:Title]).to eql %(ACME\u2122 Catalog <\u2116 1>) end it 'should hex encode non-ASCII characters in Title field' do doctitle = 'Guide de démarrage rapide' pdf = to_pdf %(= #{doctitle}) (expect pdf.info[:Title]).to eql doctitle encoded_doctitle = pdf.objects[pdf.objects.trailer[:Info]][:Title].unpack 'H*' (expect encoded_doctitle).to eql (doctitle.encode Encoding::UTF_16).unpack 'H*' end end context 'compress' do it 'should not compress streams by default' do pdf = to_pdf 'foobar' objects = pdf.objects pages = pdf.objects.values.find {|it| Hash === it && it[:Type] == :Pages } stream = objects[objects[pages[:Kids][0]][:Contents]] (expect stream.hash[:Filter]).to be_nil (expect stream.data).to include '/DeviceRGB' end it 'should compress streams if compress attribute is set on document' do pdf = to_pdf 'foobar', attribute_overrides: { 'compress' => '' } objects = pdf.objects pages = pdf.objects.values.find {|it| Hash === it && it[:Type] == :Pages } stream = objects[objects[pages[:Kids][0]][:Contents]] (expect stream.hash[:Filter]).to eql [:FlateDecode] (expect stream.data).not_to include '/DeviceRGB' end end end ����������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/pdfmark_spec.rb�����������������������������������������������������0000664�0000000�0000000�00000005376�14163570564�0021514�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'spec_helper' describe Asciidoctor::PDF::Pdfmark do subject { described_class } it 'should generate pdfmark info from document' do doc = Asciidoctor.load <<~'EOS', safe: :safe = Materials Science and Engineering: An Introduction William D. Callister :doctype: book :docdatetime: 2018-01-17 :localdatetime: 2018-01-17 :subject: Materials Science :keywords: semiconductors, band gap EOS contents = (subject.new doc).generate (expect contents).to include '/Title (Materials Science and Engineering: An Introduction)' (expect contents).to include '/Author (William D. Callister)' (expect contents).to include '/Subject (Materials Science)' (expect contents).to include '/Keywords (semiconductors, band gap)' (expect contents).to include '/ModDate (D:20180117000000' (expect contents).to include '/CreationDate (D:20180117000000' (expect contents).to include '/Producer null' (expect contents).to end_with %(/DOCINFO pdfmark\n) end it 'should set date to Unix epoch in UTC if reproducible attribute is set' do doc = Asciidoctor.load <<~'EOS', safe: :safe = Document Title Author Name :reproducible: body EOS contents = (subject.new doc).generate (expect contents).to include '/Title (Document Title)' (expect contents).to include '/ModDate (D:19700101000000+00\'00\')' (expect contents).to include '/CreationDate (D:19700101000000+00\'00\')' (expect contents).to end_with %(/DOCINFO pdfmark\n) end it 'should fallback to current date if dates are not parsable' do doc = Asciidoctor.load <<~'EOS', safe: :safe = Document Title Author Name :docdatetime: garbage :localdatetime: garbage body EOS expected_date = Time.now.to_pdf_object.slice 0, 11 contents = (subject.new doc).generate (expect contents).to include '/Title (Document Title)' (expect contents).to include %(/ModDate #{expected_date}) (expect contents).to include %(/CreationDate #{expected_date}) (expect contents).to end_with %(/DOCINFO pdfmark\n) end it 'should set mod and creation dates to match SOURCE_DATE_EPOCH environment variable' do old_source_date_epoch = ENV.delete 'SOURCE_DATE_EPOCH' begin ENV['SOURCE_DATE_EPOCH'] = '1234123412' doc = Asciidoctor.load 'content', safe: :safe contents = (subject.new doc).generate (expect contents).to include '/ModDate (D:20090208200332+00\'00\')' (expect contents).to include '/CreationDate (D:20090208200332+00\'00\')' ensure if old_source_date_epoch ENV['SOURCE_DATE_EPOCH'] = old_source_date_epoch else ENV.delete 'SOURCE_DATE_EPOCH' end end end if asciidoctor_1_5_7_or_better? end ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/preamble_spec.rb����������������������������������������������������0000664�0000000�0000000�00000016507�14163570564�0021655�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'spec_helper' describe 'Asciidoctor::PDF::Converter - Preamble' do context 'article' do it 'should not style first paragraph of preamble as lead in untitled article with no sections' do pdf = to_pdf <<~'EOS', analyze: true first paragraph second paragraph EOS first_paragraph_text = pdf.find_text 'first paragraph' (expect first_paragraph_text).to have_size 1 (expect first_paragraph_text[0][:font_size]).to eql 10.5 second_paragraph_text = pdf.find_text 'first paragraph' (expect second_paragraph_text).to have_size 1 (expect second_paragraph_text[0][:font_size]).to eql 10.5 end it 'should not style first paragraph of preamble as lead in article with no sections' do pdf = to_pdf <<~'EOS', analyze: true = Document Title first paragraph second paragraph EOS first_paragraph_text = pdf.find_text 'first paragraph' (expect first_paragraph_text).to have_size 1 (expect first_paragraph_text[0][:font_size]).to eql 10.5 second_paragraph_text = pdf.find_text 'first paragraph' (expect second_paragraph_text).to have_size 1 (expect second_paragraph_text[0][:font_size]).to eql 10.5 end it 'should style first paragraph of preamble as lead' do pdf = to_pdf <<~'EOS', analyze: true = Document Title preamble content more preamble content == First Section section content EOS preamble_text = pdf.find_text 'preamble content' (expect preamble_text).to have_size 1 (expect preamble_text[0][:font_size]).to be 13 more_preamble_text = pdf.find_text 'more preamble content' (expect more_preamble_text).to have_size 1 (expect more_preamble_text[0][:font_size]).to eql 10.5 section_text = pdf.find_text 'section content' (expect section_text).to have_size 1 (expect section_text[0][:font_size]).to eql 10.5 end it 'should not style first paragraph of preamble as lead if it already has a role' do pdf = to_pdf <<~'EOS', analyze: true = Document Title [.nolead] preamble content more preamble content == First Section section content EOS preamble_text = pdf.find_text 'preamble content' (expect preamble_text).to have_size 1 (expect preamble_text[0][:font_size]).to eql 10.5 more_preamble_text = pdf.find_text 'more preamble content' (expect more_preamble_text).to have_size 1 (expect more_preamble_text[0][:font_size]).to eql 10.5 end end context 'book' do it 'should not style first paragraph of preamble in untitled book with no sections' do pdf = to_pdf <<~'EOS', analyze: true :doctype: book first paragraph second paragraph EOS first_paragraph_text = pdf.find_text 'first paragraph' (expect first_paragraph_text).to have_size 1 (expect first_paragraph_text[0][:font_size]).to eql 10.5 second_paragraph_text = pdf.find_text 'first paragraph' (expect second_paragraph_text).to have_size 1 (expect second_paragraph_text[0][:font_size]).to eql 10.5 end it 'should not style first paragraph of preamble as lead in book with no sections' do pdf = to_pdf <<~'EOS', analyze: true = Document Title :doctype: book first paragraph second paragraph EOS first_paragraph_text = pdf.find_text 'first paragraph' (expect first_paragraph_text).to have_size 1 (expect first_paragraph_text[0][:font_size]).to eql 10.5 second_paragraph_text = pdf.find_text 'first paragraph' (expect second_paragraph_text).to have_size 1 (expect second_paragraph_text[0][:font_size]).to eql 10.5 end it 'should style first paragraph of preamble as lead in book with at least one chapter' do pdf = to_pdf <<~'EOS', analyze: true = Document Title :doctype: book preamble content more preamble content == First Chapter chapter content EOS preamble_text = pdf.find_text 'preamble content' (expect preamble_text).to have_size 1 (expect preamble_text[0][:font_size]).to be 13 more_preamble_text = pdf.find_text 'more preamble content' (expect more_preamble_text).to have_size 1 (expect more_preamble_text[0][:font_size]).to eql 10.5 section_text = pdf.find_text 'chapter content' (expect section_text).to have_size 1 (expect section_text[0][:font_size]).to eql 10.5 end it 'should not style paragraph after abstract as lead in book with an abstract' do pdf = to_pdf <<~'EOS', analyze: true = Document Title :doctype: book [abstract] This is the abstract. This is the paragraph after the abstract. This is the paragraph after that. == First Chapter chapter content EOS after_abstract_text = pdf.find_text 'This is the paragraph after the abstract.' (expect after_abstract_text).to have_size 1 (expect after_abstract_text[0][:font_size]).to eql 10.5 after_that_text = pdf.find_text 'This is the paragraph after that.' (expect after_that_text).to have_size 1 (expect after_that_text[0][:font_size]).to eql 10.5 end it 'should promote preamble to preface if preface-title is set' do pdf = to_pdf <<~'EOS', analyze: true = Document Title :doctype: book :preface-title: Preface preamble content == First Chapter chapter content EOS (expect pdf.find_text string: 'Preface', page_number: 2, font_size: 22).to have_size 1 preamble_text = pdf.find_text 'preamble content' (expect preamble_text).to have_size 1 (expect preamble_text[0][:font_size]).to eql 10.5 section_text = pdf.find_text 'chapter content' (expect section_text).to have_size 1 (expect section_text[0][:font_size]).to eql 10.5 end end context 'theming' do it 'should allow theme to customize style of lead paragraph' do pdf_theme = { lead_font_size: 14, lead_font_color: '000000', } pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, analyze: true = Document Title preamble content more preamble content == First Section section content EOS preamble_text = pdf.find_text 'preamble content' (expect preamble_text).to have_size 1 (expect preamble_text[0][:font_size]).to be 14 (expect preamble_text[0][:font_color]).to eql '000000' more_preamble_text = pdf.find_text 'more preamble content' (expect more_preamble_text).to have_size 1 (expect more_preamble_text[0][:font_size]).to eql 10.5 (expect more_preamble_text[0][:font_color]).to eql '333333' end it 'should apply the lead style to a paragraph with the lead role' do pdf = to_pdf <<~'EOS', analyze: true = Document Title preamble content [.lead] more preamble content == First Section section content EOS preamble_text = pdf.find_text 'preamble content' (expect preamble_text).to have_size 1 (expect preamble_text[0][:font_size]).to be 13 more_preamble_text = pdf.find_text 'more preamble content' (expect more_preamble_text).to have_size 1 (expect more_preamble_text[0][:font_size]).to be 13 end end end �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/quote_spec.rb�������������������������������������������������������0000664�0000000�0000000�00000006707�14163570564�0021224�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'spec_helper' describe 'Asciidoctor::PDF::Converter - Quote' do it 'should show caption above block if title is specified' do pdf = to_pdf <<~'EOS', analyze: true .Words of wisdom ____ Let it be. ____ EOS (expect pdf.lines).to eql ['Words of wisdom', 'Let it be.'] title_text = (pdf.find_text 'Words of wisdom')[0] (expect title_text[:font_name]).to eql 'NotoSerif-Italic' (expect title_text[:x]).to eql 48.24 end it 'should show attribution line below text of quote' do pdf = to_pdf <<~'EOS', analyze: true [,Alice Walker,Speech] ____ The most common way people give up their power is by thinking they don't have any. ____ EOS last_quote_text = pdf.text[-2] attribution_text = (pdf.find_text %r/Alice Walker/)[0] (expect attribution_text[:string]).to eql %(\u2014 Alice Walker, Speech) (expect attribution_text[:font_size]).to eql 9 (expect attribution_text[:font_color]).to eql '999999' (expect attribution_text[:font_name]).to eql 'NotoSerif' (expect (last_quote_text[:y] - attribution_text[:y]).round).to eql 27 (expect attribution_text[:x]).to eql last_quote_text[:x] end it 'should not draw left border if border_left_width is 0' do pdf = to_pdf <<~'EOS', pdf_theme: { blockquote_border_left_width: 0 }, analyze: :line ____ Let it be. ____ EOS (expect pdf.lines).to be_empty end it 'should not draw left border on next page if block falls at bottom of page' do pdf_theme = { thematic_break_border_color: 'DDDDDD', thematic_break_margin_bottom: 669.75, } pdf = to_pdf <<~EOS, pdf_theme: pdf_theme, analyze: :line filler --- ____ Let it be. Let it be. ____ Words of wisdom were spoken. EOS quote_borders = pdf.lines.select {|it| it[:color] == 'EEEEEE' } (expect quote_borders).to have_size 1 (expect quote_borders[0][:page_number]).to be 1 end it 'should apply specified background color', visual: true do pdf_theme = { blockquote_background_color: 'dddddd', blockquote_border_color: 'aa0000', } to_file = to_pdf_file <<~'EOS', 'quote-background-color.pdf', pdf_theme: pdf_theme ____ Let it be. + Let it be. ____ EOS (expect to_file).to visually_match 'quote-background-color.pdf' end it 'should apply specified border and background color', visual: true do pdf_theme = build_pdf_theme \ blockquote_border_left_width: 0, blockquote_border_width: 0.5, blockquote_border_color: 'aa0000', blockquote_background_color: 'dddddd' pdf_theme.blockquote_padding = pdf_theme.sidebar_padding to_file = to_pdf_file <<~'EOS', 'quote-border-and-background-color.pdf', pdf_theme: pdf_theme [,Paul McCartney] ____ Let it be. + Let it be. ____ EOS (expect to_file).to visually_match 'quote-border-and-background-color.pdf' end it 'should split border when block is split across pages', visual: true do pdf_theme = { blockquote_border_left_width: 0, blockquote_border_width: 0.5, blockquote_border_color: 'CCCCCC', blockquote_background_color: 'EEEEEE', blockquote_padding: [6, 10, 0, 10], } to_file = to_pdf_file <<~EOS, 'quote-page-split.pdf', pdf_theme: pdf_theme ____ #{(['Let it be.'] * 30).join %(\n\n)} ____ EOS (expect to_file).to visually_match 'quote-page-split.pdf' end end ���������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/����������������������������������������������������������0000775�0000000�0000000�00000000000�14163570564�0020454�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/admonition-background-color.pdf���������������������������0000664�0000000�0000000�00000042720�14163570564�0026546�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20191227181820-07'00') /CreationDate (D:20191227181820-07'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 13 0 R /PageLabels 15 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 688 >> stream q q /DeviceRGB cs 0.9333 0.9333 0.9333 scn 51.24 805.89 m 544.04 805.89 l 545.6969 805.89 547.04 804.5469 547.04 802.89 c 547.04 785.11 l 547.04 783.4531 545.6969 782.11 544.04 782.11 c 51.24 782.11 l 49.5831 782.11 48.24 783.4531 48.24 785.11 c 48.24 802.89 l 48.24 804.5469 49.5831 805.89 51.24 805.89 c h f Q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 60.24 789.926 Td /F2.0 10.5 Tf <544950> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 101.985 789.926 Td /F1.0 10.5 Tf [<59> 69.8242 <6f752063616e2075736520746865207468656d6520746f206164642061206261636b> 20.0195 <67726f756e6420636f6c6f722e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 11 0 R /F1.0 12 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /4fb4e7+NotoSerif-Bold /Subtype /TrueType /FontDescriptor 17 0 R /FirstChar 32 /LastChar 255 /Widths 19 0 R /ToUnicode 18 0 R >> endobj 12 0 obj << /Type /Font /BaseFont /e42e72+NotoSerif /Subtype /TrueType /FontDescriptor 21 0 R /FirstChar 32 /LastChar 255 /Widths 23 0 R /ToUnicode 22 0 R >> endobj 13 0 obj << /Type /Outlines /Count 1 /First 14 0 R /Last 14 0 R >> endobj 14 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 13 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 15 0 obj << /Nums [0 << /P (1) >>] >> endobj 16 0 obj << /Length1 6816 /Length 3793 /Filter [/FlateDecode] >> stream xY}pSWv?'Y6|X`8 ےla$#H,etSK$Li2-nf;SS N3@I;m3?.N;LR3&xs vdq~=sd�]w4} "? '&X},S0]�1:D #olŔp4P~:~9-yU׾goQS\q~@څ7r�."7q|_:o[9F#j_{tF{F_�q?uXA"~�ѿhxFKe?ۢ0#1gL�u�9$n -dVnjk ϒ#L[79R׍$ʷ[Y۷'xKv te> 5UHYV/g@8esoضŚ[F?:\< g_p Jvliv şܽ|wk~vOy]Vi$FFyMl!as|m(U*m6n?dWix\\ʞmT#PN(-Gp[ tf,*K<[y$H`3ˤMpP>%  #{[׆R'.J~.Pi$$=R �bE!@\ `J(D_+~.m%+{;,D*J%@\pp~આ74\DOX%0.6bp#G4\dDPKZ oh:e$pdIˡFءC  hx%4pH\r+m4|tq _Oiz-龆W*h/{;c9g='P'9ft e鰒U2 !i abÐk =8B|<1a lWfe` i#`ORԫdQG ^hWj"]M@X*MDx<d5fL%{㈏܊1`_[e-<dT#|<GGە-Ӷ2ZJ<K4 GD8M>Gsυp0zM7Kq/yr'T$)cf;yHYٮ}(! 4O0JNH46##b[+%vQŕc숬#Wl\.}n?sm6JǕ Iyf ^.v8_6$yO:#TvԵk yBx ܉5?"Ǎ` bT2GhL8|),z2()9JJ|`Ss>,2<ƈf8I;m]^J{|~=9<t`v;=>@?Jn}~*q4'CW6KSO',d[i4UI6ţ1:N㸋Iijl#xV" <:d,'S #ܗjÜi]㧙$eM`;r_S,؏Ͳ*uxFb;\|t yv_,6Q*W ]/?^{vǞzj?L y~=sx 3<_sa ZUNK/g2Df˧ݩW+EV$iX[)inar9"Y- v#=gi>7rON"65JqWӹ-25Fb6nl8brJ]_tcgPink<=~Y5,'l"0Hj0'XX \Ś&b1#v,),g\2EO0XErHLE47.],.7s1#ff$TEɄ5!F?Ym%ؖ%qr\}}+'8^ XGLs$lE>&OlFc}c6PbrlYg<<|Ȼ :PlϿ0/>%h[m6ZZ.|poBlֵ;+$]XdHD;qT,68nnLݸtCq^MJLB.]uM{ 쾓zgVꭹr&7禅42=?]dni2po\rYyy0x|x///l |LOm,6I=Zss|n+FE)J+7"`Vnc7 ΍Yq^ Ԉ'3Boʧf׵oj3L#h�]p8g7)8AL#:2K.--}e>lySv PTx>0C߼x{55اF`)옶AW0ZCr/ %cS2%jo&.VZK Sa\%V�W0y;q]Çxgۻ{jݱiP_Sm2V(7uNdw!Uj{{[,?TVW4jMjFh:JMbj.9e:KN ))} QXpuǜT%!RݧcWȉ|3rRjJVbO!gȎCw3z*6up(r-`գVN>ݜRweƙpXo.̚`4Բ."G'ƹU(|GnQwNu+Z;WTt-oxeKUdi3!C򧟬Fo2}F n Bx85*S\Yva0fvެ/US(Fjucoz> Mn #ò:3a@G;Ч YN J2~6{KPBlHL-L>oJMBSO/P&sE.lAK*O$NU]3g=:3M)PyԌ 4Woda<.ާcH@[joK)><N8Z\38#ŝ<|]N5rJ<Y7hԚnBc,rrWF1b<�ڊfکOڠNF\׍9*"Q!dੌҀ٢:HJ%%zs=4­Sn_+ <]`tRk 0h0=UCDEԍkɀń(Kem4CI]Sc*RKe6=l ZJOUa-3 ,�Cb H!zU9(Ǩ 1h[%=,tXpxY`T-GpyE]3Y-0rY#E}7yk {"0sc_akm>j5#sC3r{"  <c(~pT`(@Q0p})>*qc8fX %̴ I%1`cc]4` :4JC  YR+.fgxf#W &Y}+j_w6A^w]њ fx ]q^)Kv_!|=_/<{a顴([z !SȗIY.v+٪=-5۸εfiAI&}!z}ެkU!Q̉Y0'p Hi~"}" ?n_*E7Mʏ endstream endobj 17 0 obj << /Type /FontDescriptor /FontName /4fb4e7+NotoSerif-Bold /FontFile2 16 0 R /FontBBox [-212 -250 1306 1058] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 18 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 19 0 obj [600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 400 600 600 600 600 600 600 638 600 600 600 652 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600] endobj 20 0 obj << /Length1 9368 /Length 5746 /Filter [/FlateDecode] >> stream xY}p[Օ?=IXeO~%lKg-YJB"ٖmR$96): MӰ@txfwi;]:[0Yfhef۝ah,WώBw={s9@� *A ACsU'r~ @vg!@R|`ʛ<A?Q!mEzxnU:א޵;ȅ)W'8ϐgFoѻn/$䡺iny Cߝ3!?<;�m@\ԑB�GuHƦ CQ_rP!!JNIMP?<̠)_F�j}~]3sk_UYߤ#G>hCmWS25XhNhD6,ff\Y[R' u%G(?Pp6�}]MuWNL|9g++;CGvFj6{HF5Lb7u\f OL:=Aߵ&BU\R}.ZXLk0SWKs9)MY߷̪owNgմ胕MN5E�B;ɢ&T>Z[XTlXL)u�G#6_wѩO{KS&0 UtgźN.'%}wv<Rʦ>saɵw:z2Nu.k@{4`jo3bh4]Sմv€qLG|Ӝ+[Z-&G9|ⳛ<-'l6hF[Z\~v+3Rgl%8}e5恺3o}ӁCO/|k5\ۈ-ɡQS]ߠ#48lk91cٿO]U|к9[~;k꺛*򋷇ۓKDn=Ϋx5|·1+kM'*E2'=LV|vs -Y<)X?9->ԁp͏tyZǰY53To W]QԿ9پR3~񳘽{S<EhOmU�&t<S0Vu\ԓkNtOn__ԝ{?|契<Rv;G1WSR*-n)(_ cr1(Tq Y I]JW9^9 ƌ>zu)y2h4;sGN٥Ugrg~{Mf+l杕G֪.ƥŇ u5?-i/kbV1>=Pd'd$/;PGOstE;uJNCSOkk)IHЕ[e;G<5I9)b}Vz~rCzsV6{Nӵy ͷ x,']F]7gpQ }W5aNy"fUGm-5W]Q4%:ߺz acC^M%]#hs.)t;IOYC{m|wx^EjЗ&VՐue;=4t&YIGj6o.ovrӜ}1{=h/C&[1o.9?{᤺}6qdysn4ϵbSY6s&X8*iH/qW4ˮmLgo!NZ|3^w ?ӪŶhF;7֩׹Ϭ,'}Q& Cns6}Ơ`/0sn-h[`&jZ4ܒ2E ?kC{ٙd+^wc;#ZZ^75X}(%"%3R2(M5e{LSOmeKQ #5n]FZn8_޽)`'1w*|,ܲ E|~gxj yaϽJmqGVaQ874P0DophOc_-^&ĶDw5yAm/mRtjlE Ղ1jlEfC9-+yGJk7v(:S><:HCMcGڄ`](x^UrRw=?C7ߌqkEN{| #._=wNcG̪6]5*xgzJLEk4"+'g+e=Y{ț[I4CѧJrP_: NþN(a}0-0և=Y0pA04*KQ$_+ހb1ϐsk$G aBm#|}vT6Őcb50C>KRr W[ߪ{h,]s @%口=q;D:(VaaFN̹.&O&7hf#14^Is22ï_<ë2dz]D-!zdR'C:d -㠐e832?2eeW2?4\OP'e~po$hd~2C2?gd~ u2?re~*= g"BueU)1?/Ү0 BG|&�(0ty5TⶬV7?>zac=9*(>ui0 "a`0P*RcL3٥yo %TОb r4&/xgQآejXd1p,[R+p%N_(, Uz U #% &ģW[k.B$-xCVgxn/bcv�enn¸ϻpV8Jq`Fœ1a"M GM1TjB^H8ǬB'$,ƎmvDbvi. 6wuik ,g}30&L!fL&&#HP,O� ˜pdi ~SyK9 {`1"f"wyC>/)b\ZȜOŘ@LBU&ʦH?>Pһ(v cBgXX0;3&:FG;{mcШ54hD.t Ak9!ww0 @H/4�|/U V3)a޻8U}.4F=8 -Ұ>X K PsK5aLɛΠK7NB7osc="KF4ޖ=Ͷ59&;{d�!mi@BeӬ3VEdb:,:vd4uqFw`r^<ؚFzw_/X%Apcݏ=TU1tB f6:K4&\('a6fd&)3a^uAfr#ai l-4# '"oٰ$KƑ«y)<#aS?o fC[FB}dY=5],S KV!)?|#Z|W O|/АL& @伈%iIJHKCZ''։zDk$m<FNELk.NC* KBҐJIF$&$K` p&(F!PVzXl i|rЎS!2}_g ^W<ىsPs6Y ǧ^yG]jusWӺG*JTWjuW x_hg婄dIs ?J<zQ.//H#~ag@._</W<|W_?~^Iin4Q8$DZ3c N^B3^%Z$ |fW9m4{pA|QáDh~{v!eurxqN,(&nWudd:IC] ҮqiӮ8/uPOf%Y%ƭKq$rZ22WRwk;RKilXh$6+YÑrpA! !V򑥥ar |� RX$QCL(Sr:]YƷ9`]ё=}=vԸl2VvM:-5%)1!>NTbM{#)Ğ#E/2[ }$x]҂3HZbMIZX!DAz* d 笢[>`=(bD z=l9sVA"&ُ-<VԷ%v$lI%bpJlM+ħi%`NK#.U׻Rhe]TJ.)t8#T|vU iqڻ%^ۖ˥R*U'UVTNnsJ") jQX3GvW ꏁ6]˞eIQP+A" .3Z~-=sI^?cdK va΋.wk /@Lz3DB:9xa־s[<ՍL9ѳ9#7\˒;-3^$ӝZJDw f7Ъi )u�F fD'-NPChQ cmߑT +q[a>Tq׃.[$4b?Y6 I. <S(lҙ2֓'ѓuϡ+P~uVs ԂJgua ٖ]3RG;rFpiō*ܢAh^E:w#{]ecT`E`xJxiy7 !ر!v`)UsugszC͐J*QzR% m*Jޭ= ybOг0k C5Eqϡ .'9A (<#2?_ǷQ[B@Sk+u3z칥w[XǖrQVhy4-ӵ,SЈ^ 1+ ²;,Z4f{\;w+0uȊzE w^م}W� rK(A5"䵯X�N^c0z l#0x <Ega<rc6aܲMcG$"!:b TR딒No_Eq$+-m9F3 d eȆ%׷Px`[fDoGſh~_mem'ۗk;?\ExOYD7%m}.[xSu9x~GM#(HE˸h+lY\?CoU|qo-{x1=V1>A:Ep//ӡ| s:߆U; ɭ72Z?E 3wJ~w½%'J4\JTDw/SY1 ^瞤L2W׸:6~x}RkM endstream endobj 21 0 obj << /Type /FontDescriptor /FontName /e42e72+NotoSerif /FontFile2 20 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 22 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 23 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 500 500 250 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 625 500 500 500 500 500 500 500 562 613 492 613 535 500 538 634 500 500 584 310 944 645 577 500 500 471 451 352 634 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 24 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000001578 00000 n 0000001888 00000 n 0000001930 00000 n 0000001978 00000 n 0000002030 00000 n 0000002200 00000 n 0000002365 00000 n 0000002439 00000 n 0000002564 00000 n 0000002609 00000 n 0000006492 00000 n 0000006711 00000 n 0000008073 00000 n 0000008987 00000 n 0000014823 00000 n 0000015037 00000 n 0000016399 00000 n trailer << /Size 24 /Root 2 0 R /Info 1 0 R >> startxref 17313 %%EOF ������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/admonition-border.pdf�������������������������������������0000664�0000000�0000000�00000042140�14163570564�0024564�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20191227181850-07'00') /CreationDate (D:20191227181850-07'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 13 0 R /PageLabels 15 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 746 >> stream q q /DeviceRGB CS 0.8784 0.8784 0.8784 SCN 0.5 w 53.24 805.89 m 542.04 805.89 l 544.8014 805.89 547.04 803.6514 547.04 800.89 c 547.04 787.11 l 547.04 784.3486 544.8014 782.11 542.04 782.11 c 53.24 782.11 l 50.4786 782.11 48.24 784.3486 48.24 787.11 c 48.24 800.89 l 48.24 803.6514 50.4786 805.89 53.24 805.89 c h S Q q 0.5 w /DeviceRGB CS 0.8784 0.8784 0.8784 SCN 89.985 805.89 m 89.985 782.11 l S Q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 60.24 789.926 Td /F2.0 10.5 Tf <544950> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 101.985 789.926 Td /F1.0 10.5 Tf [<59> 69.8242 <6f752063616e2075736520746865207468656d6520746f20616464206120626f726465722e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 11 0 R /F1.0 12 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /4fb4e7+NotoSerif-Bold /Subtype /TrueType /FontDescriptor 17 0 R /FirstChar 32 /LastChar 255 /Widths 19 0 R /ToUnicode 18 0 R >> endobj 12 0 obj << /Type /Font /BaseFont /0e4a42+NotoSerif /Subtype /TrueType /FontDescriptor 21 0 R /FirstChar 32 /LastChar 255 /Widths 23 0 R /ToUnicode 22 0 R >> endobj 13 0 obj << /Type /Outlines /Count 1 /First 14 0 R /Last 14 0 R >> endobj 14 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 13 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 15 0 obj << /Nums [0 << /P (1) >>] >> endobj 16 0 obj << /Length1 6816 /Length 3793 /Filter [/FlateDecode] >> stream xY}pSWv?'Y6|X`8 ےla$#H,etSK$Li2-nf;SS N3@I;m3?.N;LR3&xs vdq~=sd�]w4} "? '&X},S0]�1:D #olŔp4P~:~9-yU׾goQS\q~@څ7r�."7q|_:o[9F#j_{tF{F_�q?uXA"~�ѿhxFKe?ۢ0#1gL�u�9$n -dVnjk ϒ#L[79R׍$ʷ[Y۷'xKv te> 5UHYV/g@8esoضŚ[F?:\< g_p Jvliv şܽ|wk~vOy]Vi$FFyMl!as|m(U*m6n?dWix\\ʞmT#PN(-Gp[ tf,*K<[y$H`3ˤMpP>%  #{[׆R'.J~.Pi$$=R �bE!@\ `J(D_+~.m%+{;,D*J%@\pp~આ74\DOX%0.6bp#G4\dDPKZ oh:e$pdIˡFءC  hx%4pH\r+m4|tq _Oiz-龆W*h/{;c9g='P'9ft e鰒U2 !i abÐk =8B|<1a lWfe` i#`ORԫdQG ^hWj"]M@X*MDx<d5fL%{㈏܊1`_[e-<dT#|<GGە-Ӷ2ZJ<K4 GD8M>Gsυp0zM7Kq/yr'T$)cf;yHYٮ}(! 4O0JNH46##b[+%vQŕc숬#Wl\.}n?sm6JǕ Iyf ^.v8_6$yO:#TvԵk yBx ܉5?"Ǎ` bT2GhL8|),z2()9JJ|`Ss>,2<ƈf8I;m]^J{|~=9<t`v;=>@?Jn}~*q4'CW6KSO',d[i4UI6ţ1:N㸋Iijl#xV" <:d,'S #ܗjÜi]㧙$eM`;r_S,؏Ͳ*uxFb;\|t yv_,6Q*W ]/?^{vǞzj?L y~=sx 3<_sa ZUNK/g2Df˧ݩW+EV$iX[)inar9"Y- v#=gi>7rON"65JqWӹ-25Fb6nl8brJ]_tcgPink<=~Y5,'l"0Hj0'XX \Ś&b1#v,),g\2EO0XErHLE47.],.7s1#ff$TEɄ5!F?Ym%ؖ%qr\}}+'8^ XGLs$lE>&OlFc}c6PbrlYg<<|Ȼ :PlϿ0/>%h[m6ZZ.|poBlֵ;+$]XdHD;qT,68nnLݸtCq^MJLB.]uM{ 쾓zgVꭹr&7禅42=?]dni2po\rYyy0x|x///l |LOm,6I=Zss|n+FE)J+7"`Vnc7 ΍Yq^ Ԉ'3Boʧf׵oj3L#h�]p8g7)8AL#:2K.--}e>lySv PTx>0C߼x{55اF`)옶AW0ZCr/ %cS2%jo&.VZK Sa\%V�W0y;q]Çxgۻ{jݱiP_Sm2V(7uNdw!Uj{{[,?TVW4jMjFh:JMbj.9e:KN ))} QXpuǜT%!RݧcWȉ|3rRjJVbO!gȎCw3z*6up(r-`գVN>ݜRweƙpXo.̚`4Բ."G'ƹU(|GnQwNu+Z;WTt-oxeKUdi3!C򧟬Fo2}F n Bx85*S\Yva0fvެ/US(Fjucoz> Mn #ò:3a@G;Ч YN J2~6{KPBlHL-L>oJMBSO/P&sE.lAK*O$NU]3g=:3M)PyԌ 4Woda<.ާcH@[joK)><N8Z\38#ŝ<|]N5rJ<Y7hԚnBc,rrWF1b<�ڊfکOڠNF\׍9*"Q!dੌҀ٢:HJ%%zs=4­Sn_+ <]`tRk 0h0=UCDEԍkɀń(Kem4CI]Sc*RKe6=l ZJOUa-3 ,�Cb H!zU9(Ǩ 1h[%=,tXpxY`T-GpyE]3Y-0rY#E}7yk {"0sc_akm>j5#sC3r{"  <c(~pT`(@Q0p})>*qc8fX %̴ I%1`cc]4` :4JC  YR+.fgxf#W &Y}+j_w6A^w]њ fx ]q^)Kv_!|=_/<{a顴([z !SȗIY.v+٪=-5۸εfiAI&}!z}ެkU!Q̉Y0'p Hi~"}" ?n_*E7Mʏ endstream endobj 17 0 obj << /Type /FontDescriptor /FontName /4fb4e7+NotoSerif-Bold /FontFile2 16 0 R /FontBBox [-212 -250 1306 1058] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 18 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 19 0 obj [600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 400 600 600 600 600 600 600 638 600 600 600 652 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600] endobj 20 0 obj << /Length1 8760 /Length 5320 /Filter [/FlateDecode] >> stream xY{p[ՙνz[JG,Ǿ_-C%!/YdKؖ"!&Є2@Imh pe;NZZlYٖ00LK+?wsd �j@ L{CEC"? [g斦_~�;jn:;g'GF-~MAtjcD Q, ;Lu<i=`$Jq5;>;�h O6c{S(}€�c:43 ԵSǣBw Ƃ�Ī E6IxP);[24itq+^kЖia-}Y&"H lhn l]&'S:Ѥ7٢)_ou7 BcyY}6!*X_5j$l8mn+$|' -jr{H6ۍBCy~>W?X 3.Ӧ ;ޯӚ唕W^7L4W/ϘHۚeGkN7'krڻY%Ƶi-Jo(* :}]u3m$ w21l464uuv{K߷WɞLsLŪ{Vh;`,:koeIpU w6V8`)hrřRe_ÎѓxJ:]RȔ$TSUN@R'{<{l[Ոz=!K^)6Gc{F^+?=ד_]DZQkb0u"vF<4ظOqgC--1ׄyu,~y`%sK%Grj55oe{֓OMД49l~XȔ/=΃7 7LtTͽWod3@Y㸊_ߒ0En}i<"${ȠhcI0Ԕ -'9k'K]HhuͪXdԾ 玾ӄu)2EUj:S_5[;LU>NkpWS {&-[3WˣzSo<@Hqo/ }m6@U_VNjETMփ6IݞOi]k0*LLlʢ1y gĴ=6R\vX-O Gc㞵]MҥO+u۾M[7g(!~ly_S SN&ol̫v|#ֹh:x{}lp<t8]&kGOM:pq3n-ѷ,uF4lSTa)?Nv7\K+9wYȕŮ~i{G11hŶŗ#)|=T;Q^S 8B&Ež4ݮ|h[ mk83CBSY^{)}o=&q}v+w}02#ik+7їUoipv4L /6O??4Xy_ZFG.ͣM–CZkEisM v z{ls=3Ἢe-5CoYu 0pw͖7>؈Ri6`raˮڦPdX"9])TanXXtqm(0MP и|fwo%E3Hq֍~q:`v,W*p?|k_Eq�yhfd;5{苜]:49x=MNMso弇TQ+�9;RBc}01|S1Jԏ@ZO1uOA (6=._{zP'  KJ[;ߐG+/L<i!\S(\|^0CZ,!<<}-+E$yOs.-ӫp]YvQ'LBdr}n&փ(*8`48/ٿ$2V9<[]qvk2;W@ɕqAƕAe\ yKU!nbu`!ge<O]]O)PxOxt(ޔt~ he| ge| UOd<s2 {p`f6* ̜__2 ]ssmc?|3B!K�,D1u%KC ́~X)0b 9|0ɏO?:ChPpÁiB;Qp0�LgamѠ{ R]fjahaYZB>cG2NcaO&H k0Q)A% F䣩mf1B4Bpz#F 0~xGѶ3p .3t0ۻ[̂0ߡNx%/[Q0Xb>arIX7KQ#E:YE4Y�8p?|&�l4j5. 87&t$hbE.1[| 2G]<pLc#E_ 9osb8̞YL[p!*8ѻa?͗!L..a!:pȿPL(T (٘/#5 BqCw ]~Go9.:1gx??<Mr !K;a"G"B0,Cs�}DBt`J.,zgp!x>(gKŰp E?3U#䬼l([tD1 t!ח>P^`ͷEزY5tF9& UiSexc(t&ѫ_¦Ÿ: v`]n&Sk^78pr~|:؜ư~B6O;Pjۏ^% 32f+2| y#JNn"^()&gnLS`vK 1ɈDd|r\tnY߅}r EâSb3 QMKp #9c0<c ޶mDp.4!42Ig?4&NuYmAz {gz φI$;.ɆÌ0c)͑mlEe, <BK]s#q'D'5Z#kF>z(eaIHJ$tq$ T IYDC*Q(ɳ>eZWJ˧Y, e*<Ho�lGyh99mO ^N׉:iNT/\FkQ]_;Nj^EMOOʙNͰ=z .cӏKKK/)EEEHn^_ JEr• G.<}ꅛT$CۊxA>9o" Yf>7V7`x{[VVY)&ϛej&#|syyyө`zӊ*z*9N-rj곜Azt,3J,>e $ѕqGe}UK9#8hi/HBΟv<;vɇ3ƊfJt#H]$r8RyJ$He5`Q?x(BE2`AP &ZH?F}֡W"`eJ E*lu㎱ё᡽^ehoڲd*/+-)tZMVJ*hRGR}}Tx7� ϐm$xYӌӷiuMڠJ#(.nAz [P0`͛Vv|v걠ǟV]+iXMǚT.VHyaںA:ėX>ide wuU)ZX0GR3Bgזϭj`S}ރ.be޺*DTqy8sT%ZR%j[~kH")K4J4ڐe(ؖ=IQЈ+!+2 #.Yd;4Y*OֆmKJl¬ ;3ỳD ȩ@'~v (HG] `6U%C[^Kd;idzwѴ;\˒'Z^$ Q#e~7[Bt$e)҂6vL]5L8x_j -"v#CBuW8y V^9F֕z0D dCN^'upX3%LV Y.S#y#y9,F.^A�n 5Ӄ9Xj]v"އrZp ٍ&ܢIlV\C ;w}tktSXo3# 3RJI56mXJ5Ҵn\NjR`[d=*o2ӗ"܆U]a =Rh�M| qhA<ʪ[$΍""#u|, ؜(R\bmfa9E;qQ6y4ͻzSЌm^L1+f3²[6ͽX[NUu芙qwΌ.stWvbUP@ji  p*)<1,%Z&q)a("Ǹ[=e8 #G$"v ;b TRnwR3( 9eU(|lR|E?*@�o˘.v+%Y>�'ܾco!k_"<.gu~'c /k:Cl bX;h9\Пo78`7Xy}Cw%[N+Fkv8z@~;p/om2ҥ|ӯ@v&\o}r §z/ЇJ={g+q)**[[ܽ\PR[0 ^^䞢S&B\#W}[O*@BC endstream endobj 21 0 obj << /Type /FontDescriptor /FontName /0e4a42+NotoSerif /FontFile2 20 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 22 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 23 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 500 500 250 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 625 500 500 500 500 500 500 500 562 613 492 613 535 500 500 634 500 500 500 500 944 645 577 500 500 471 451 352 634 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 24 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000001636 00000 n 0000001946 00000 n 0000001988 00000 n 0000002036 00000 n 0000002088 00000 n 0000002258 00000 n 0000002423 00000 n 0000002497 00000 n 0000002622 00000 n 0000002667 00000 n 0000006550 00000 n 0000006769 00000 n 0000008131 00000 n 0000009045 00000 n 0000014455 00000 n 0000014669 00000 n 0000016031 00000 n trailer << /Size 24 /Root 2 0 R /Info 1 0 R >> startxref 16945 %%EOF ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/admonition-custom-raster-icon.pdf�������������������������0000664�0000000�0000000�00000101651�14163570564�0027050�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.beta.3.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.3.dev, based on Prawn 2.2.2) /ModDate (D:20190822005201-06'00') /CreationDate (D:20190822005201-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 14 0 R /PageLabels 16 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 416 >> stream q q 0.5 w /DeviceRGB CS 0.9333 0.9333 0.9333 SCN 108.24 805.89 m 108.24 782.11 l S Q q 20.213 0.0 0.0 23.78 68.1335 782.11 cm /I1 Do Q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 120.24 789.926 Td /F1.0 10.5 Tf <557365207468652069636f6e2061747472696275746520746f20637573746f6d697a652074686520696d61676520666f7220616e2061646d6f6e6974696f6e20626c6f636b2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 13 0 R >> /XObject << /I1 11 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /XObject /Subtype /Image /Height 240 /Width 204 /BitsPerComponent 8 /ColorSpace /DeviceRGB /SMask 12 0 R /Length 19044 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 3 /BitsPerComponent 8 /Columns 204 >>] >> stream x e7U]}LLfr$rp�ASdA%x*ʺDPs<!#r $${&sOU9jjzyh:5u~>2)2)2)2)2)2)2)2)2)2)2)2)2)2)2)2)2zc}/]R|RVJӦeiBd$Z&A6NX[ i"˕ƥL/HQ\mýD$P ð, U7)Urx mjd R ' Ӵ@/Gd_ᕪz˚p~>'06Fiw4 <SX5~nc>\&" J+3[�k䩂)Yl6Xmۄ3X?TF9|@ `P( 3Xf3T*�<G=Qp6%aer$dp8F#0H0ӧ/g)elLJlT™8E"PZ+ Ɛ@N>8 3@*'>3g`0�`2s>p�CE]zyO4@aԀ\DeUf@VzS Ip@ ,@BU\&Ȁ/*{8\Ee\04FXY-2%TFxl6$ d2�8Vyc!6 rW Ni8 (KBeCQN@탬 �R�pLa2iߏ7ΥAiՕ`z�C@cj&ڀLU+#lo) XEHQ~�d96U?j/<[ ,a1=[U8ֲXxC ӕր>48AV[TKRqSU_2*蠎}6`ĵXjjJJ-5d? 1~Iʱ F"h Rʼt_*v9dvIFyM4 LGөDJEQZ-kdw򇩀Ȁl!J)=Bq@Jcy pVZKfY͂lv)^Ё @)-T3-k{@uꢹ\Q$gdǯFY#1 2 :#A\Qz#?1`/b sG\W.\1 RCWp-OqJ{{}&T _dBte@#pH'+^L�M&ScJԂYL6&ys<�k3C7sb|YN{? I+'on7p{Vr0+kjO׾ǁr4CC]{olڻwW34-[z�f xZ;vʫc/Y.&5'˗~\PX<^0A\.F:&/)Sp|HF.&E9s ݭ[lҗ+::첏RKxs4>ASN |߹䒏oOE$d}}pΜ9~P_bSN]ri]2FҠmԩM ,x뭷+#5.K,wSO=e@ B7) fV}}Cºx?ᏯlΜXg�vE{ 5ahI'.pk߸b6;;g}~uJ2z߅r(w|ZW‹iYrRP(mxo=Iv.N^:644N>c}uם{}[1:;;+_`(o5k…Ο�v{w7{饍ӧb_%7VRҲyqW H$ >i֝˯z[Yz݂Cꯏx 5 ChiӦz9nڴrѢE/*jE[.Lc ^z &Pg`0}|r}}Jvٲ� AkX`X]CC}"%|k}-ӥV0\Z2%A=,>d7; l9iӦ6446�hV>j֬Yw7{N+�롇e ei ^i^?�"/FAH hmme3Huww$a;*VX -[ *d˖v}sxoN%L2]{mo<9xэF25bZ+( [T�¼O?yw �|zC먐V۾}3H޽[cNl#f>k.H4&?@<�N0~{{耍wqrB* t4d0(; :qM0o~3\l,ZW>Rώ?kFf̘>l}ݏAly W6d ,}�ه>AشeoWV n*.]:2}rzĪ3EXaC]!ƀ8ygl^{-�\vITJq{Ц}IqGhf[)HV"ٝ9iGZ~#~xwGdFxDY/V^yURt$ol\u7Œ 8;֞ntMmxn~Y'{c>׸4#L𚥶A_H$z�gVog!H1dqC,[kj wڥ3˖-?'qw#ZY#%ʕ7ky]O30�'Nu\8Xcdi&Ki vߒ8x{J<ʜ߯v�O>dؔio?ȥ~bDP MO'�2;54`nJsf>WW<_ҠiMl;b̊ܬ6q!:XGvεQS5҅yk|UsYh-&5]hZa }RW�^ =BTPk_kZg?dvm淮߶}ln2D"GN\`$/�"Lj.@&aAAcǠG]*O.Z&9ז.49e$@VҶb<"rzkV.p@MRJ9 b9leHuљS{.մ�BA}grń$_�8 < r䔕l.μk?!:7< 2.<>xNl A>=*XrDOsHݞHw2T󘃊>0kY]R"HR̛*_1L (%hJI)e F2Ɇǻ|kj\LAzYlXmey4�]󁢐]�0$pb`Y�/2f20zs[ƘPP{?^F$ 2o"fh,�,JؘY S,Rәhj񨈘 .dkڰ P_c_r� `ei]XPjfȰiaXutM;obSs L[ c "��pR:a&0KaZw7"{*)Q1N2&9t _Lm,0a~rX בvƸN.2ȼkô;S{ JS@i8sN!)ͶVz2ִELASNɔzcgapP( fxrLwfB}ڎ{XPlA6JG24jE{. ^`Y>ٽnSdCTF#0i &mѝw ?LPD #@ Mo8AE-C`Jk[C̙d]|IHAfs/ȽEN8aaa긃>㉮?Ȃ`4mhh:iʔ)Di!K?g(rjd`IrJġk?\LtFec\ꃁ ӗeYַ^xftJCPf02#IQZ91kuK3gd`+E"a1;By%ZhsCh[(b.xCǞ^~S[|1~|joOٲ;Ւ5;d8 i(a=u\*/!P{ !{"Rt:F#8_ kdyL0{lTF]U9Ri GD @xXD ,PÀ1+di4 J9L:_jx9sv*.Іq#3<G?w6�2�XOOwggg<4V@oܷ{ ͜P Ci2uԍl*b2zi0|*ω1q1[練W:@}C,+عq xLZ,VY( Ң@~9N L8Eu 7Ms Im%:]Viɠ 8LrHj㵒o63c@Gf( 0-qmXN[<C9ˮH8cNA!�-[{S.p 07{Z*] `^q:sӷ]-~hT1M OvEq�Md ÷`\. ɌY-C7^Z]66$&2adxq"AZDR9~21m^u̝,L[b{|%tgg;5{|'>e?Af: Otdf�M6YQ45u9@ EJtѸ< {Mh~h{Ù~_@&gL vttn4_aW� �8V~͘!U=Sd_`.0ZZ` e'ӏbϑ@e2  ɼAN9Gsm d5XjO<cQ$01u c't;PZL2T𞴢ؑYgkj?+?Zc2Vdқe޼97<W7�dd pi+WRD[.` Ne{ʴKzH~anZ0 /ühO}͚cz\8"ـS͞={�J*Y:?iBgNor`; QdA?|Q^xY L>)K뮹 hf 2`m ;i I]>~C؀_V>zYd�~?+x7cMzE pC]-k^‹\ 0:w(/w֫Dj d!]}[n. {!b̿'jxfl9eѢEw_^(Y :Pj d&kINm>?{zp ]ḵ¼ّP  DˬY3e4L|\ 39".Y駟䎇\n Bd Zt3 oɟg~ ?Viv7Dj?\TUgkh,O󽏼 cg~~S~,ǹ|v#*g&bNo}W\egh M ]3$e<X 6cyi(o^^fdlA& pr,ߛdR͞g2/VƟ5aҭCU <gXێ;TLfj`⩧8}J歜O9=C(ͯNl?rg c0|+0RF3=8zAlْW_w8c"X]<Yh+ͲrknnyQeQm3Wu9rͿ^n]Nfd6@|J1E)q ,X=tņ o[UEjp˗شdSTΪD̡G rbqa3%SArǖpU5>O<ܛ빬Pfo\T 4mi`_ב2 >Xʄ0OKG}tI OeVx!lYU^OJ5o'ƖԩS.]<9T3(XaӢEoVH)x?y|yk?olDd̃gd`Fz<a;EM}u&p{hSW_1xLń9*QV1|pόfʅ g2/E@Pr!OK _GX9Կ?oW?IbellLٳgg2N{7d*mR9+/_Ÿ-uR-4ŏÿ0diHZ Pa^1CdyG|)d "̆[nit?;)D@BrS=%7ycV,~eyh-e!;uX !(DI9PL"co]57R0 ,)!]֫TRFQج6 c{XdEp8L#G3A mU,Ƙ`hѿ{E%-oiyn#_Sl`6lݺ p4 7dԊzT~IU' nDwo+X]jٲ7|huGr $q5}[ OxkVy(AkkQGk׮GQ0 3# Ktf+Fz_W͏>c ]x$;w섩A6{yn=enQ_ԷKrmy_6mj ` ENR(zA揍i4C <);/3<;G0 R Уwp,> dɒ%Hvuuw̘1=U40FG7Ut%〰H$s@ϝ;`5vEI^$(vn 3:ݻb~ qJg'zGww7m+d̬J P9lbu)S^}DO?}*XE aXK?~(yNsZ {䑿 7@RKK \2Pu,Z*ߠJ峢;i5rէ~a##ayܮ[ONz O3gjdym۶͉hg'C_H%LUd윻śx�6owΜX@$"}⏭+k�Fp`x{}y_ße#�^@pznukL&|1 $z^ZbxD'~J xT@9sPVcc̙`cXVXxzh {C*VjVL OQ`˯7OoS/XSsΧ1o}ONA/+FclgbX2X,L)ͣ1T9“>v̯BaWkGϗ^zy3x搀-{zzyg[4;Ğ<LN5 %sTG$缥e ŗ_AK.^v-o V>>{cmڴ ne9#p`qB2{Lp@]£omnݺ a#*H_4/]qy6-s �p�2SФ`[l%_!,TȨdcc`|itz=m`/}J/1AIғN:@O$p<``ЩB{w#n6 =ܰF/U2x!]iFH׻(F\kZV}WN6#!={w O`kkW> އ=XeGW]G6o{Ն!SNٰIQss eV]]fw: kٯژ] 7ily[qꩧ`^qO؜1sd={;DvX`RUL KV07Xj۶y}cTZ:@y`gMgg'W:[xJzRELitj_ь{w򒸠I/%<hud \͒9 wvv$76{/Rwpx޷`RORbŊB6K$z.µFsVCKhfe/(> aRft2VeT DoXbmi U akl򂘌OU8zU2nJ0a-5k455^, /d3.&^]ƛP +tA` 8uJ7.2)bɈdA)ooii 68҄>vȧzdQV?577o^ϭe}F$EJSdkI:$&}3pyzꊟ]ʬY3UnTnW05L֧Wƅʚ5JfY66D/npeX9YYred|=Fa;T,3Y'/gϝ;;ACYl1`Ced:̧3Ȭbu0*4es)#q-Ovҹc.]66 lj-گ|'3 (x"Ƙl^^c7}ݿ'4~p6l#x@_a0iҳ1(ZOc0 軽V`nȰ khh eYcR߂sLo>s!/ éKvH$vj47,WÆ!K`2dQ2JzT&%Jx{ͩ#2ko/˔)Vro˲H P&7n3fJ^C6ޥmq)2&$ ( H&D2JΚq ϭ c@W *%?W^CN �t:O^1A1(ȦNEL&3kI)a]]`s�{86=Ѥ5؎x<v/ iO'e Ǝ= wR#Xq,^eHG1coe]]h 0xD8M(tj)M<W*LOO0:L38e{t~_vZݛߪmH8d!x548EȀɛF@]/Pz4N^,kRL;fDGxy{[32κB#+:ɮ]O�tS TL.Ha O9@li immyf^4»j ;>Acgr? û}N(^ṚxRX9(,=7�x<6w={_}աC%J7&+Gj|Ҙ(MS"`H#hECY>mg(wdΝrr9~;'f۔D6lx3/O6Ͷ-00♼t߳<Y{onuuu|=+S1~ 㻗 Lx #( Yq$׬C;PI*p-9<A.!~? pC?i0G̅[�,Ӕ/Xt挰) \nx)ݐX#ujye /$}nḿ &ڹ ?={vOx$ӲJ<ԃHA9G4?Nk@[mY'b*`2Ƥ\V:aupDDB2hPH uU b̒9Ke3"|YVobd}y睋 8I|& gzlL"hj8MJx-3=LoySv#LLB&uǎjj!&?IiKfPSKhK/=͛w{~RŦ_[YC&M6# FFseј5sΪp`LlD`%:I=M{6S<+-e,kI|I`/æ>uNgGOҏ=$~O oo{&40$Fu%aI#gcM$<+-@-Hߣ{"i帢ʁcnt F8W-i/c_ǵox0gƟl2=w]Y1˖`GNsYFPYv[ŶeK�`]Dyw-Ѹ.C=_xnȞ.*q2d2v4uR0 U?|e4Um4*dVNZ`f֬&t%gE6m/:Vg%*,czީ:\z@C5oW?ޮXnJ*@֘RZ>$%E+CG,?:TK-c7Oo)J$)9[»-K-Ce5r#*\a`~{uttuu%ͷ9>l[^ǘ9$&EKAз#MZ8*h`H i U&}같Fi/#g5ۛnOCmdGؘYT@碔6E�cKSYNf 4ː2%H(?V N3B,kz\�LTaAKbL_W g:[J5˳B @axޜ%bQK|']֬9[o==sN ]5Zļ")|s164ʥݣ Ef#Gڹivgg [¶Ѓh8ӆ SpZϐAñ49xνh^pW}m 8O~| C1<&~&{02r譜Z2WQVug᫗<y4J= h*aMW&(2SLe* 2eȔ &FSb2In/U< / X\pWFc]28m&Gi8[ָ^4Zt.Ϊ#1!I Eb\_3?+@PLpX*VˆpH >  ,`"lr_2z x ,ue]}8!A<!ArEISP]]0CML A c;+'J97ƚR!� A ,$MzB( !-#`NV?>4/Si'�X]pҠw{Yr+VuUX<1(~YdGDJnj`o|p]~sycM")"%Ak1J)zwJyaQ?&+v�&|'�+$XE#1ÉbQVNn�~C0,.<E;mocY[@9Nd˸b+ g Ż]x\^ճBf ։򓧆n<~5uz0X�~ǯ)Wȵ�/%@X� T\ *)wY7K`r9nKhj4'un@ zꉲz!,H+�I}j}mo2<WeJٶ&0f`yMdFm߫kw7Qw\W/ C[4q.Tsz7&`T[w*p:Yfx~ S '-GG"?  XCJ;bz_?~5b+"wS2ciHdL�,CΛ}SnnPQZkCf ӎ9{SNrs@6(p)k SNVהNng<刟 3F8>XF።{rmmƭ~ lo8"jisCҪycLwv}qeq 9L##ȯBRIhm>V,fCHq6 4ZTI!}9"̒^]3DOҚ3CΘ1U{?ڵoֈ>δrЯVKDC0T�B pP�\~B@hؠм6a-#QcK/d&tBsClZ /e4"Q0ۆGmv 'mݺuR fȳs*+uѱfn8"`;10J`�3#z.f|9$I@)x}+XYShHN= p9f,์.Ȱ9#໕LDJu`%@ GHQ7"@,n@рFu `WtRʵ^uyohjk>#f<te 8)6y"+8:3sC@]8"짭;xg+{P\6R・;ZÎY@X;x7 `N?Qt9~ᐗ3r!3~yh8d\W]HdRaD:)Et8 DŧipAmٲYLmeފ,l ?3ߐCa�S8 cGePzm/"M|5 rT[V / `iCf^z; 2Ψ#ӧϞQf=ςe̩(/7Y5Mb lΘX[dZ~ E5gSƬ'y#e'096͞tuTEg�*"ܯr{oϱ Ƀ3GlSnf2>#ơ a#/BN2k+B6uMFvE,D̕/<L[ U9Fv!˯WPb-w.y-y',HKH7D5Ga4+ LTB.'- 7dƽ ЮʂqRah`#g,>w84vUq{;L6XX;sMAt],PBS{k%QnEsrwH#n#J!~b~k2)AnD�Pؘ5#uS%POms-]p3up#4K i6sJ _?z'>y[K;uM.j_wS]c �sUy&ek"UBiM3?n|"BhER9AaJ7U$\G2C i(5kVb#-J.b/쓛6m?æRG9)&ّTRPu^<GjǙCPoխC|J3d,f46.WE(&UjN`FY0"pe׿ P1Yss>voca'ܔL  _J@`bzXDALJ7R:xTFCW[QQЙF�7[58@ ӟްv1<a~۷&^U([\[[ʬНvPF+vW#a8s(lFi�ShW2Ρ\WWwg>Sk_a{Mgq[o&UǤ?/s@/^]GȁˆH[jmLF9AiZRuҲ?9{Qܳ~y2Y<g>5PL4N^\S J(V;9g,BE4Kל p kL.`i#ymGJPar]w}% wnsRtK+;5hbWŠ\×mY8D^08HJz5C ,8I7RT::hQS{864:|땦ԽjZЄgiys(,b* �O QrYEk`U Bnڛ1.:qѰc($##<3t&K./'>5X (Twjd $LYT@N6P*?GY';dLF2v^Y"&lTX A!cEa>,8qf@CBvsú*im۶?4h{4iN X*WÍ ,P\E.q te[Y  &TtZSv:8Si]VdsvbŁNT"(̵�3RXP,ֺv1EGqcmb8]8ed-*ZR 'MchE؂iC TNdNBY�%%?Ł ;aDNsѻ)x# /#aqPlXXOOW利vF#_b\n6 Ɉ+^vʅơآRpF&"J^);w+T0`LZ% 9ǹa$ցhOWjEr+8Y*l Pr _\j.2W8k+ 8U R,qq xB,.XdrB oEvQe$n�YI�J pK! ل- ^Ru=Ԁjq!Blk<Pٖ-[¿2u+̴<R/Š:]c[h# q%69帓68+t=lN`crJx.2ٟSn;͍JƔϜRNSjd8ڕIgggYOcƗ.xpQ8|R缤�Z}%sz+B͈ڐ-҆hFbꆅ+a=QRs@/)ape4yh*$[s Diu ~,ӟ/Zڃ[I'Ï馛'< zѮ^( /ܡJEY0gu4\P3TWBu!n Kډb;P\-Gq8 ]mI #(ҰCey�9UHu"g3HSq"E-!f7]?kŊ'x 'jyH$xos{5퇐)1{bL߶[tǕt{WQ GYXH92ʬD"cF.yٍ#lO.֝$<@ĕbѳ$܀bE@WB{h)iw:6 /lUW]p1,_XtK,M/tXF|drxkX׸:Qz qhb(ƙmJ*vA8HA>̢#,CQ{4rYҟa l2lTڗn,P qR 2V43ߘ]it{8HrHƹ?#҉WƒOSڜꔅs;HO`3fDX,7DQ+ c :CNA;1R{O*V-fJIFcD]  <-\&% 9z^ZA À, fYzFsq<Ùag9Cl(8{|8iM qoAZqu(r-isPso>ڳ)R(uHH:@!O#ؑZpgqU&lq$~Ae%r#b*AK05$Hl Ԥ--K-rb) d<lBe�Oq_n@i;CrkmLrJJvGsĀ]S"j*kJO[GI]o2Kr4c:RoL0JdAL}4U$cU0|OaTLdS fB"Db)ڕ(�Lp�|ەc?jȜ5ݭХ@i( W|GǤו.R[T!1 1МP;kg9H10T(9E#xBpɌ3_hwn*~g"T(NEm-K:s4R Eπ47#襃Nk*/ !_C4Wpbԍ>JrJ,f8 NNKmyپ�mOJŀ"xٔ KKq>oՍP}gSbV36̵ plP{,5%73B ğ&:7*ҤBqK5y!!nE�^-ݴ?΂Ӝ|n9U" vA\Ûghppo,搽pbdPQjFW < 4iTߗQ JxKSA)lRA)2:P-j 8[V<\% JPlSo7cМ2N^EG뢺j@) 9NQeEP%`7 BEUc XHĴ&amͰӌuܰ>pRK,C$x))vgB0A]&myխeoU\?zhxmiH t:i<�ӛFVOu~jye;S m25R^#Xj¢b|rxjsI[|vR1;=fN �^fVK,`JLT“Sn�6X29pHdm60q XgM NU*aQЛF%$w"U60IKhzl ꈰzx,[Fzƽf.^m%1D_ Igú7SV8&xuxM�&<6Y2`˜vcZ9"3oX<M>~n^Ho9L[WiT%%_] (y숮yN :XdrqSI'L gi*F䑥W\vQk �aX-Hѣ:SbsjWw!Ud9$`2%oO~򯫴UѐXPU]X0ZS39tTsS%{+8+AE EQՕ|ל-F3h�eJdI]ktw�қ΀ T)&Bᶐ9j794X)iԉ=IՓ у=+);⎧�vyUn!䔨 S󘺐 )x*b.!͝s'؎siO!{HZ"eNu1B k?&2*D+Gҹ:Ob3p !tjF/WpCJ7fk{x9"Ma]IW!3)qMZ:JсwG/f5H@8t4j#zê8Ci'c4n E* ԼX &\ĕF4l kmmNk UPSL^q~ps5'9V9rnHd7+%Ð`e2'1Y_ hpm>x<p2FH�eez9Cɩ9~mE 2>S/ߙrs̊ p hWE] >.c kRAFFI9)HceFtW5 Hpn8d0 H3BP@)t␬2M =okL`_TCe9A "i`ԃDaq&՝.M1p9L$Ӫ-ڼEɇ#yઃ4#bxU|$<}dUN-d\y~$CLEV'[a><%tgF҈dQYu C48j8 Ҙ{ b̛[:}77STvt _p2cQ2N;*M><F4OW)6piPl�n5zu%su uT%W/X\+c e 8;+9³K!"xUe]a,=ڠ #A0{9,Hi eBp7Kvyr٩AM Vm'nHQ"#@hy3r Y &C*|\kL9q<kM5d܀DH$En;өZ&XITjBR—K{x |rJXեf<9g-<E'l׍3TQ ΂ |e(P=o5z|u |+M۰m(i9+&eR&eR&eR&eR&eR&eR&eR&eR&eR&eR&%hx endstream endobj 12 0 obj << /Type /XObject /Subtype /Image /Height 240 /Width 204 /BitsPerComponent 8 /ColorSpace /DeviceGray /Decode [0 1] /Length 2902 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 1 /BitsPerComponent 8 /Columns 204 >>] >> stream x{P<rD*!yd4`Fkb)ZGmR(֦&4Q`'iLڤƷBѩ޽wϞs~]o_yYō7nܸqƍ7l:8jd~];Z[O]bz ș7ᗛ'8zC 'fS~oʛ:]R/1KWO|]>bb6Lggh^EL�<¯ڇy]ZT'ڡ|EOdBfk")"/Ͷ xq/n#.ᮎEB\-�ͬcmF]橛$`G񨑱n,�n2*�dP%i/`�/ih]?P#5cH̑LiӦdHEͲZ,&#u3}ǀp(g9"3!*�߯Hwl V2Ѵc XFC&&h&&h?LL}H1j2c y2a bGfOc3P2یGm,@1W�b`Y յdQ("Xf|@ɸŸ%;Q%s:'iDsgƀFc!oF͛{pbnRPަC_-iί u a~$Aqj81#:8Wjی\5g4L'pbQKw;#}3pbک+816d,ipbXw6\�&8Dlj8Gˤ3NB[S3@6[l N d7&ܥb({z281Ţ\E'&|yi['0n>-m j.UYSXY?ȯord|1%HLh}5˟4Ĉ&mVp&ٛ<3e_pWv9C/=C);C�/J�Zd%cݎ_`쉳Vyv م xA܈\2u9!(v5�\'&^sX֞~ۉvY_&3}O+ 6[dg͙bU%WbO{o` WpHny1fI %ۙ ϝ#w^Y103xy0N=DR<Z�iO*�ۋRfJ(7y@L| ކz+5ekM]sJ<dJQ #_)1"Cc@)\ 95cM]d+mȄ>Iќ*ngQd-'W[@K6V&2^LQD(�\3xhYwD47\$�Bi]D+谹4E>/OPh KfH6*%%!K@y3; .&8[H)�@YA쁱?]c&VJg3U@VoL�JLrj$�1{,bJ/-&)z(�ŬGY7,{;H,A=SLd"�̕!R gc% >1eģp0 gFs05 [&�t1mPg:WJFOU2m]zCjg2|qӈa'jA4J[=Xؼ=+&ii1fΎƌQWnRNev g!p g>\b6![M;�gy!&|i:3dF*cȚbƿ? o3Sig|Z^)eb}Gi.X榇'9=΢0jD'9Eݯ1EH�0!;Y tC? Og|(:  kGjI,^P�<ܨcAj�3LW=B)F$#Yޑ�;/C0k5J1_0wY)*Xpv_z�gM.Kp~s_CBoF'1/CD#$~T}I +b-?ă}>mQr129[I�C#`k652v/'1fqw=*DaïWɦ5Yj+Ŕ o<+& ]sM?W8 K&~h Q>_\1Z7,"`h\q;aLtԯbxek\T8;̎5ca1۟1ymvvu#ALKI/p 3ݱPپмZۓZ pY]_=X#67=V1d~F{}yɭFˈ҂ģo~|%o5ӛңTRu{'>Q@` £ěp?'/3A?Fa%$C[jXB'"hs9JgeOL},-ΌwJxy|ܬTxVX[*Y/ɹY$c6<G314O}/홯 KqU~dz%oE$ukUq#M]ly^[7]:m!/}RTp!|p1䧏);#7/,0 ?{BO�%﫛%e˭|4Af$Fh9pOŷpZFݹwnX62 rߗZ77nܸq/?oh"S endstream endobj 13 0 obj << /Type /Font /BaseFont /b711c5+NotoSerif /Subtype /TrueType /FontDescriptor 18 0 R /FirstChar 32 /LastChar 255 /Widths 20 0 R /ToUnicode 19 0 R >> endobj 14 0 obj << /Type /Outlines /Count 1 /First 15 0 R /Last 15 0 R >> endobj 15 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 14 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 16 0 obj << /Nums [0 << /P (1) >>] >> endobj 17 0 obj << /Length1 9712 /Length 5964 /Filter [/FlateDecode] >> stream xY P[ו>=I#a$'G?6G$~Ϳ@-%IludLmlIٝLםmdi۬v?NINk`Ͻzpۙ}{Ϲ{w=>�?R3mS3 n)�RgfB~';?HElء<U g5?V!+wyr/:iwвG@Ec14t|ߜ6s[HIyn>ׄ#W/t[}?$T 8�]Mهl??>BJHLJNIt&`[VG;2]hcW cF18WXU1ɵ=$2j]NΉfVs-N'ZrQ{& ZP( kוO<6�%eTrb3ĂtNG_ds/.қ r!}AI_uDwi1^7UNzSm~pzDN{[6qߝ׮+J!Dm$t"By{X,tŶ&bCSh+wdގt.p- B}cmoZEJ}J:l~NF k]ӒU8ʇ ҇w}ݵwhJ &h/-ehU FNREBOJ۹Lz ,p$fuOY]o>8Ԑ犿񓳭֖Ni@mz=b<:LxϞ3ߞAY?8ʾ߈1OSkj )1Wλo?9i=)n{ȱo=V|MtG۫{mmuŠW{}M%yk*dx øUEf@dl"lVb8255q�RyS~Zwo5ưYt1T.#kHOD)P%ڪFMA<u:PUS9?rn0W/a;йg[r;)h ?]SR*5՗=Z^U)T"ZmU^mٶ夕4^}Z {wqX0~<'G*uEB^a9uy:C2͠U¦xF`ˑΦU%>1nd"_k<NV=PN7Ef|۪P–[Rr˴|ڝzMfES}VJUl7T%LOO̝*z*o*kd|"shbܭ0dHѥ{9h#'9E3#-k<W^_VclmkUyώUdiY;'Գ[(l9Pcieݼů?@s;B<n?&--c=^!yF9eu۞ȱ 7hȧ׳Bc^Cn,GyԱܿNZFZ3% hc-vql7 ffү6l{N!3PL6WkD[o>VwZSS;NK˷c$x"$|t6Ӹc C{d؂NotU#̲/"GX\YE~`wapJi4_ploFʬ6S̨UOTx^_m}\roA]y}?ڃa7#lXo# Ob]Y6 ҬO68k0{=_6]5>Rl=;gS8q' Q_ʡզMc-A֩׹OO,'cQ' m^K68Cuۿ/ŶeBԀgѰ�ӽrSʢ)L^Iw7w\Io=oߝ-;[X^YoC?I>y݇#/Ͽ@p`}_JnEV<cVLWȠpVT8Y[ְՙ۫E&Cf"۳yfo{ڄbm+^ކOFkQқƝ`z?OP$|H^wceUkg.|h#]}/UxsqǺvyQ)j+E]outW9vNEr*wﱚ Zz}Kܷ.0` ME'_"xDVy ʚpD@,$=${a _, ޜ_ ~ /yo񘢖ydue]C:l(ltbk/U 24Ј$Ybs V3hK6]k#Dxj"fu[i1d&$'|XTRmԥpZ>c<sѲD"<_5|#!:v~UQ\R|W~CUF0iwI`P_C!p@,J-rxAp(KaI8¿  ށb(q}ixny՞n\;a勠7{8NGx}K@y{@ w$s(9RqmVvH^]ېx@>NF¯c/pMo<+e`Vs\0�n\xA6iaƃH'Gd>_(9^zY.||$l�-1|%WBi*NeADБ2?/d~ht%\O*d12?o*WT{e~4d~:&tN5^c.k.- sfyfF]Qa  D& !D S0 1t.b ؅6 !Hu[șz`cTQ(` B` `TD&S36}Pl!&sSIؤejcM8l a)gp%ÁH4* Uʍ"% fģfrVN1=Lc0*X?G ̀o)C~&aps} _)0:愡6qԕtCHa\ D q1TjF~H8ͬC',Ǝ-vvy: Y,wuykZ1 :L!Qx @Y<q, c꣱`KtbțDž` McxBs1a04 x 梈D "Ħ`GŅQYinl"Ec#%sBA1X 4v V#C!ay`g9(=\BsWqT ‘@4*"Bp6<0|d(h80 3y"t!W&p?@dBh>"̣&B/,Ռ19-o">ƶ/81tHm68s,x4 n{hޢ9K ,/M:ƒZ� єv`k^<S݌s�; dk}}.{uP;Vщ0"a;2lu""i U QhOl8MLR`g;lR;YG2~gZhF&lF\@<a^)cWRt< ǢhpLYz]ݷ(<J3zk)>f':Q~/vH])$#UL*!1vfZ>ňc)ˑLlCKX8OK½eB9F4kdoݷB+ 9Bu28:P)5J7IE&$KbIpΓDP%e|yH"*U<ÿL\j.F*4ak}%L_)o]27U�OԜu=|5lFjڇ篪*JTW>pgk7pDy&g*)Dq.G𣓏}G49"x\\/_$ŵ"AJH]x¿\|AqS\qa킒\d'÷8Tj $ǽ=s͐X3Ќ%4!` p  UJ4[ r\ap0u_v_qp+>dCiQ%*;J jJW\Ix n*(2yxihk9amKJ; R -%i xy{߹sвK5|;]6q KYFrh!!ΉG!VQr0z RX%QC\C(Sr:]!<o9eEszC}=:;\NGkK~oݞݵ5Jl().*) 9 :=-%9)1ATbSt')vE?2> k$UҎH IT!8EAz! dW>d}(bDF#9A">)N/:}Է*MlI%bx4JuK$i%韐=Nh*:tTRS)pFXxvYc q?x?]䝋HRJ"W*DS*Z6|J") 5)fDQj>t!.Qp-kDA#...0ypkgWIXfi?r_hܭ7fxe15,a T'NY2-^ўK=:79޳1'7=cBt"gҩ1;+DQ\ܖ!xVuLIY0RE #>Eۄ="z';: S^wy6~G%G}袠OaI+l zym7.,NYp.K=y =yY4zK UkW?UA5xTqV+`s31)| ܕGo^T=/ JD*fdI\됧kP-[Ԉ}\ X(x8=EA 26Ėz,D|5ƥaR/x^F3RprޢTIC}]]o㏩nAG$Rw5ǡƢPT <tm ٯC[M`!L`u)Aݱ-,&]T(+Cz)hĈ.? %F aQX=L q:6"]C- L|-K"9ݿd'{^�</skxvbUθR&%JPMH$2yvSW;%/sqf!O>襜isSwz1Y#qpT)Y H)b 7Q~S EL5NL :Q0|E �kv?,Oz#j5k}e�}.[7(h;.ugdxށߐ6x[i2qpDsl, [U!p;5'Þ&i 1C Ưþ[~'0~˜f+72|e�#ށ|2kg^# 'PUZN# .Jp`ɽ=I舃8W9W}[^;6I endstream endobj 18 0 obj << /Type /FontDescriptor /FontName /b711c5+NotoSerif /FontFile2 17 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 19 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 20 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 500 500 250 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 716 500 500 500 500 500 500 500 500 500 500 500 562 613 492 613 535 369 538 634 319 500 584 310 944 645 577 500 500 471 451 352 634 500 500 500 500 511 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 21 0000000000 65535 f 0000000015 00000 n 0000000262 00000 n 0000000463 00000 n 0000000520 00000 n 0000000571 00000 n 0000000843 00000 n 0000001310 00000 n 0000001633 00000 n 0000001675 00000 n 0000001723 00000 n 0000001775 00000 n 0000021085 00000 n 0000024253 00000 n 0000024418 00000 n 0000024492 00000 n 0000024617 00000 n 0000024662 00000 n 0000030716 00000 n 0000030930 00000 n 0000032292 00000 n trailer << /Size 21 /Root 2 0 R /Info 1 0 R >> startxref 33206 %%EOF ���������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/admonition-custom-svg-icon.pdf����������������������������0000664�0000000�0000000�00000026145�14163570564�0026353�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.beta.3.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.3.dev, based on Prawn 2.2.2) /ModDate (D:20190822005004-06'00') /CreationDate (D:20190822005004-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 12 0 R /PageLabels 14 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 620 >> stream q q 0.5 w /DeviceRGB CS 0.9333 0.9333 0.9333 SCN 108.24 805.89 m 108.24 782.11 l S Q q 66.35 782.11 m 90.13 782.11 l 90.13 805.89 l 66.35 805.89 l h W n /DeviceRGB cs 0.0 0.0 0.0 scn 0.11890 0.00000 0.00000 0.11890 58.46098 710.06968 cm 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 cm q 1.0 0.0 0.0 scn 66.35 605.89 200.0 200.0 re f Q Q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 120.24 789.926 Td /F1.0 10.5 Tf <557365207468652069636f6e2061747472696275746520746f20637573746f6d697a652074686520696d61676520666f7220616e2061646d6f6e6974696f6e20626c6f636b2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /b711c5+NotoSerif /Subtype /TrueType /FontDescriptor 16 0 R /FirstChar 32 /LastChar 255 /Widths 18 0 R /ToUnicode 17 0 R >> endobj 12 0 obj << /Type /Outlines /Count 1 /First 13 0 R /Last 13 0 R >> endobj 13 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 12 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 14 0 obj << /Nums [0 << /P (1) >>] >> endobj 15 0 obj << /Length1 9712 /Length 5964 /Filter [/FlateDecode] >> stream xY P[ו>=I#a$'G?6G$~Ϳ@-%IludLmlIٝLםmdi۬v?NINk`Ͻzpۙ}{Ϲ{w=>�?R3mS3 n)�RgfB~';?HElء<U g5?V!+wyr/:iwвG@Ec14t|ߜ6s[HIyn>ׄ#W/t[}?$T 8�]Mهl??>BJHLJNIt&`[VG;2]hcW cF18WXU1ɵ=$2j]NΉfVs-N'ZrQ{& ZP( kוO<6�%eTrb3ĂtNG_ds/.қ r!}AI_uDwi1^7UNzSm~pzDN{[6qߝ׮+J!Dm$t"By{X,tŶ&bCSh+wdގt.p- B}cmoZEJ}J:l~NF k]ӒU8ʇ ҇w}ݵwhJ &h/-ehU FNREBOJ۹Lz ,p$fuOY]o>8Ԑ犿񓳭֖Ni@mz=b<:LxϞ3ߞAY?8ʾ߈1OSkj )1Wλo?9i=)n{ȱo=V|MtG۫{mmuŠW{}M%yk*dx øUEf@dl"lVb8255q�RyS~Zwo5ưYt1T.#kHOD)P%ڪFMA<u:PUS9?rn0W/a;йg[r;)h ?]SR*5՗=Z^U)T"ZmU^mٶ夕4^}Z {wqX0~<'G*uEB^a9uy:C2͠U¦xF`ˑΦU%>1nd"_k<NV=PN7Ef|۪P–[Rr˴|ڝzMfES}VJUl7T%LOO̝*z*o*kd|"shbܭ0dHѥ{9h#'9E3#-k<W^_VclmkUyώUdiY;'Գ[(l9Pcieݼů?@s;B<n?&--c=^!yF9eu۞ȱ 7hȧ׳Bc^Cn,GyԱܿNZFZ3% hc-vql7 ffү6l{N!3PL6WkD[o>VwZSS;NK˷c$x"$|t6Ӹc C{d؂NotU#̲/"GX\YE~`wapJi4_ploFʬ6S̨UOTx^_m}\roA]y}?ڃa7#lXo# Ob]Y6 ҬO68k0{=_6]5>Rl=;gS8q' Q_ʡզMc-A֩׹OO,'cQ' m^K68Cuۿ/ŶeBԀgѰ�ӽrSʢ)L^Iw7w\Io=oߝ-;[X^YoC?I>y݇#/Ͽ@p`}_JnEV<cVLWȠpVT8Y[ְՙ۫E&Cf"۳yfo{ڄbm+^ކOFkQқƝ`z?OP$|H^wceUkg.|h#]}/UxsqǺvyQ)j+E]outW9vNEr*wﱚ Zz}Kܷ.0` ME'_"xDVy ʚpD@,$=${a _, ޜ_ ~ /yo񘢖ydue]C:l(ltbk/U 24Ј$Ybs V3hK6]k#Dxj"fu[i1d&$'|XTRmԥpZ>c<sѲD"<_5|#!:v~UQ\R|W~CUF0iwI`P_C!p@,J-rxAp(KaI8¿  ށb(q}ixny՞n\;a勠7{8NGx}K@y{@ w$s(9RqmVvH^]ېx@>NF¯c/pMo<+e`Vs\0�n\xA6iaƃH'Gd>_(9^zY.||$l�-1|%WBi*NeADБ2?/d~ht%\O*d12?o*WT{e~4d~:&tN5^c.k.- sfyfF]Qa  D& !D S0 1t.b ؅6 !Hu[șz`cTQ(` B` `TD&S36}Pl!&sSIؤejcM8l a)gp%ÁH4* Uʍ"% fģfrVN1=Lc0*X?G ̀o)C~&aps} _)0:愡6qԕtCHa\ D q1TjF~H8ͬC',Ǝ-vvy: Y,wuykZ1 :L!Qx @Y<q, c꣱`KtbțDž` McxBs1a04 x 梈D "Ħ`GŅQYinl"Ec#%sBA1X 4v V#C!ay`g9(=\BsWqT ‘@4*"Bp6<0|d(h80 3y"t!W&p?@dBh>"̣&B/,Ռ19-o">ƶ/81tHm68s,x4 n{hޢ9K ,/M:ƒZ� єv`k^<S݌s�; dk}}.{uP;Vщ0"a;2lu""i U QhOl8MLR`g;lR;YG2~gZhF&lF\@<a^)cWRt< ǢhpLYz]ݷ(<J3zk)>f':Q~/vH])$#UL*!1vfZ>ňc)ˑLlCKX8OK½eB9F4kdoݷB+ 9Bu28:P)5J7IE&$KbIpΓDP%e|yH"*U<ÿL\j.F*4ak}%L_)o]27U�OԜu=|5lFjڇ篪*JTW>pgk7pDy&g*)Dq.G𣓏}G49"x\\/_$ŵ"AJH]x¿\|AqS\qa킒\d'÷8Tj $ǽ=s͐X3Ќ%4!` p  UJ4[ r\ap0u_v_qp+>dCiQ%*;J jJW\Ix n*(2yxihk9amKJ; R -%i xy{߹sвK5|;]6q KYFrh!!ΉG!VQr0z RX%QC\C(Sr:]!<o9eEszC}=:;\NGkK~oݞݵ5Jl().*) 9 :=-%9)1ATbSt')vE?2> k$UҎH IT!8EAz! dW>d}(bDF#9A">)N/:}Է*MlI%bx4JuK$i%韐=Nh*:tTRS)pFXxvYc q?x?]䝋HRJ"W*DS*Z6|J") 5)fDQj>t!.Qp-kDA#...0ypkgWIXfi?r_hܭ7fxe15,a T'NY2-^ўK=:79޳1'7=cBt"gҩ1;+DQ\ܖ!xVuLIY0RE #>Eۄ="z';: S^wy6~G%G}袠OaI+l zym7.,NYp.K=y =yY4zK UkW?UA5xTqV+`s31)| ܕGo^T=/ JD*fdI\됧kP-[Ԉ}\ X(x8=EA 26Ėz,D|5ƥaR/x^F3RprޢTIC}]]o㏩nAG$Rw5ǡƢPT <tm ٯC[M`!L`u)Aݱ-,&]T(+Cz)hĈ.? %F aQX=L q:6"]C- L|-K"9ݿd'{^�</skxvbUθR&%JPMH$2yvSW;%/sqf!O>襜isSwz1Y#qpT)Y H)b 7Q~S EL5NL :Q0|E �kv?,Oz#j5k}e�}.[7(h;.ugdxށߐ6x[i2qpDsl, [U!p;5'Þ&i 1C Ưþ[~'0~˜f+72|e�#ށ|2kg^# 'PUZN# .Jp`ɽ=I舃8W9W}[^;6I endstream endobj 16 0 obj << /Type /FontDescriptor /FontName /b711c5+NotoSerif /FontFile2 15 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 17 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 18 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 500 500 250 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 716 500 500 500 500 500 500 500 500 500 500 500 562 613 492 613 535 369 538 634 319 500 584 310 944 645 577 500 500 471 451 352 634 500 500 500 500 511 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 19 0000000000 65535 f 0000000015 00000 n 0000000262 00000 n 0000000463 00000 n 0000000520 00000 n 0000000571 00000 n 0000000843 00000 n 0000001514 00000 n 0000001811 00000 n 0000001853 00000 n 0000001901 00000 n 0000001953 00000 n 0000002118 00000 n 0000002192 00000 n 0000002317 00000 n 0000002362 00000 n 0000008416 00000 n 0000008630 00000 n 0000009992 00000 n trailer << /Size 19 /Root 2 0 R /Info 1 0 R >> startxref 10906 %%EOF ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/admonition-page-split.pdf���������������������������������0000664�0000000�0000000�00000057743�14163570564�0025373�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.3.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.3.dev, based on Prawn 2.2.2) /ModDate (D:20200119105628+00'00') /CreationDate (D:20200119105628+00'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 17 0 R /PageLabels 19 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 3 /Kids [7 0 R 13 0 R 15 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 153 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf <6265666f7265> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /9be14d+NotoSerif /Subtype /TrueType /FontDescriptor 21 0 R /FirstChar 32 /LastChar 255 /Widths 23 0 R /ToUnicode 22 0 R >> endobj 12 0 obj << /Length 4471 >> stream q q /DeviceRGB cs 0.9608 0.6627 0.6627 scn 48.24 805.89 m 547.04 805.89 l 547.04 805.89 547.04 805.89 547.04 805.89 c 547.04 48.24 l 547.04 48.24 547.04 48.24 547.04 48.24 c 48.24 48.24 l 48.24 48.24 48.24 48.24 48.24 48.24 c 48.24 805.89 l 48.24 805.89 48.24 805.89 48.24 805.89 c h f /DeviceRGB CS 0.2 0.2 0.2 SCN 0.5 w 48.24 805.89 m 547.04 805.89 l 547.04 805.89 547.04 805.89 547.04 805.89 c 547.04 48.24 l 547.04 48.24 547.04 48.24 547.04 48.24 c 48.24 48.24 l 48.24 48.24 48.24 48.24 48.24 48.24 c 48.24 805.89 l 48.24 805.89 48.24 805.89 48.24 805.89 c h S Q q 0.6 w /DeviceRGB CS 0.9608 0.6627 0.6627 SCN [2.4 2.4] 0.0 d 48.74 48.24 m 546.54 48.24 l S Q q 0.5 w /DeviceRGB CS 0.9333 0.9333 0.9333 SCN 102.2593 805.89 m 102.2593 48.24 l S Q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 60.24 422.991 Td /F2.0 10.5 Tf [<4e4f> 20.0195 <5445>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.2593 789.926 Td /F1.0 10.5 Tf <61646d6f6e6974696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.2593 762.146 Td /F1.0 10.5 Tf <61646d6f6e6974696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.2593 734.366 Td /F1.0 10.5 Tf <61646d6f6e6974696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.2593 706.586 Td /F1.0 10.5 Tf <61646d6f6e6974696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.2593 678.806 Td /F1.0 10.5 Tf <61646d6f6e6974696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.2593 651.026 Td /F1.0 10.5 Tf <61646d6f6e6974696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.2593 623.246 Td /F1.0 10.5 Tf <61646d6f6e6974696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.2593 595.466 Td /F1.0 10.5 Tf <61646d6f6e6974696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.2593 567.686 Td /F1.0 10.5 Tf <61646d6f6e6974696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.2593 539.906 Td /F1.0 10.5 Tf <61646d6f6e6974696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.2593 512.126 Td /F1.0 10.5 Tf <61646d6f6e6974696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.2593 484.346 Td /F1.0 10.5 Tf <61646d6f6e6974696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.2593 456.566 Td /F1.0 10.5 Tf <61646d6f6e6974696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.2593 428.786 Td /F1.0 10.5 Tf <61646d6f6e6974696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.2593 401.006 Td /F1.0 10.5 Tf <61646d6f6e6974696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.2593 373.226 Td /F1.0 10.5 Tf <61646d6f6e6974696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.2593 345.446 Td /F1.0 10.5 Tf <61646d6f6e6974696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.2593 317.666 Td /F1.0 10.5 Tf <61646d6f6e6974696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.2593 289.886 Td /F1.0 10.5 Tf <61646d6f6e6974696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.2593 262.106 Td /F1.0 10.5 Tf <61646d6f6e6974696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.2593 234.326 Td /F1.0 10.5 Tf <61646d6f6e6974696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.2593 206.546 Td /F1.0 10.5 Tf <61646d6f6e6974696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.2593 178.766 Td /F1.0 10.5 Tf <61646d6f6e6974696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.2593 150.986 Td /F1.0 10.5 Tf <61646d6f6e6974696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.2593 123.206 Td /F1.0 10.5 Tf <61646d6f6e6974696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.2593 95.426 Td /F1.0 10.5 Tf <61646d6f6e6974696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.2593 67.646 Td /F1.0 10.5 Tf <61646d6f6e6974696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 13 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 12 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 16 0 R /F1.0 11 0 R >> >> >> endobj 14 0 obj << /Length 2616 >> stream q q /DeviceRGB cs 0.9608 0.6627 0.6627 scn 48.24 805.89 m 547.04 805.89 l 547.04 805.89 547.04 805.89 547.04 805.89 c 547.04 453.5 l 547.04 453.5 547.04 453.5 547.04 453.5 c 48.24 453.5 l 48.24 453.5 48.24 453.5 48.24 453.5 c 48.24 805.89 l 48.24 805.89 48.24 805.89 48.24 805.89 c h f /DeviceRGB CS 0.2 0.2 0.2 SCN 0.5 w 48.24 805.89 m 547.04 805.89 l 547.04 805.89 547.04 805.89 547.04 805.89 c 547.04 453.5 l 547.04 453.5 547.04 453.5 547.04 453.5 c 48.24 453.5 l 48.24 453.5 48.24 453.5 48.24 453.5 c 48.24 805.89 l 48.24 805.89 48.24 805.89 48.24 805.89 c h S Q q 0.6 w /DeviceRGB CS 0.9608 0.6627 0.6627 SCN [2.4 2.4] 0.0 d 48.74 805.89 m 546.54 805.89 l S Q q 0.5 w /DeviceRGB CS 0.9333 0.9333 0.9333 SCN 102.2593 805.89 m 102.2593 453.5 l S Q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 114.2593 794.676 Td /F1.0 10.5 Tf <61646d6f6e6974696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.2593 766.896 Td /F1.0 10.5 Tf <61646d6f6e6974696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.2593 739.116 Td /F1.0 10.5 Tf <61646d6f6e6974696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.2593 711.336 Td /F1.0 10.5 Tf <61646d6f6e6974696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.2593 683.556 Td /F1.0 10.5 Tf <61646d6f6e6974696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.2593 655.776 Td /F1.0 10.5 Tf <61646d6f6e6974696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.2593 627.996 Td /F1.0 10.5 Tf <61646d6f6e6974696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.2593 600.216 Td /F1.0 10.5 Tf <61646d6f6e6974696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.2593 572.436 Td /F1.0 10.5 Tf <61646d6f6e6974696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.2593 544.656 Td /F1.0 10.5 Tf <61646d6f6e6974696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.2593 516.876 Td /F1.0 10.5 Tf <61646d6f6e6974696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.2593 489.096 Td /F1.0 10.5 Tf <61646d6f6e6974696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.2593 461.316 Td /F1.0 10.5 Tf <61646d6f6e6974696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 429.536 Td /F1.0 10.5 Tf <6166746572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 15 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 14 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R >> >> >> endobj 16 0 obj << /Type /Font /BaseFont /aa6569+NotoSerif-Bold /Subtype /TrueType /FontDescriptor 25 0 R /FirstChar 32 /LastChar 255 /Widths 27 0 R /ToUnicode 26 0 R >> endobj 17 0 obj << /Type /Outlines /Count 1 /First 18 0 R /Last 18 0 R >> endobj 18 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 17 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 19 0 obj << /Nums [0 << /P (1) >> 1 << /P (2) >> 2 << /P (3) >>] >> endobj 20 0 obj << /Length1 8148 /Length 4891 /Filter [/FlateDecode] >> stream xY p[Օ>='ĉ/Ȗ/vlG$ĉd9R&-VbK$ NB5),00,jh ˶NZNiYS0Ҟ{8!ttsνJ�?13 _s>�g#�FMS33QQ ok|3ۣQr@ e:8(oEE% ~c臯:ޛ\@= @c4~ca �@tMD'g}o�'4=�[�vbl~�X_"*5: Z]@&d? g\LS"hLye<ӄXl~=c^ꪪRur`7NnGF9b~iPXZP.( J]T!REhoM-r?clWoeo39%hm9hs̺k~Jߑm{v<QI ᚖ=֢ǖ?0,=[*Z͝M_!2;)j`|sƥBҚ<$d& Vkw¦*暎>۷h^j6,mz2'в|hSr1qlqm6P7tn{z4RST1|@:κaOaȱggg=݈#79osٗ|v i#$WTٌd^"݆]i鉴ed.Y9xiO}mO\} vT}~08}/~+^A%T5!qկgTSTB 1 B],Nq,xG_?޵<*T6Ӽ>gcՁ_0t{{-VYSݺ&{4P*\ P,oKg /o`wwod0l/XVX_Qkk.1%/KGGyDO:-,[r,Kcsei1fudbV U�M7X: k)Yx>iHfX~t|ьMߡ3Gx 6:m).يuJjq8_%Wk4o%in  Cѱ]<cϐޘ|bC. kDl~|5VTuױh(KWTOYH={ x`uf?T}GG5ϐIC' HZ|aHƯ %7pKj R +@f[aT՟\wv\,۷h疒N,*;a;K/b/[Z/2_800+ɭ\QrQ8EXX^\w®̂mљBKO}Mkyk1_ښN?,CmR7m(t}Ƥ"uU MfvTW]`,k6G{'ʼYd'?v{t i<4rh G(i!G! 9Wb8�0 8.| M9jAUOqMpoA{.?odgʉ͑lx =<1ii^1&R<-~L]xI)'LԂJeRkMw t 24YC<u| i{7 F aV>^[pO:Q(F)<Up}D< "l\xWUI6( IՐM\ ŤC5'^RRt \䢂`;yO3@Q &*x&6pH](Y.aW"*x6 |MO<6i<#ѹXhr*Awݑt-cz8ƃ(A B0 Sv-C$w^8Xց4>W{Źgm2�H"B]XhNo .?ƻM,Cl_$IE2t}h!-!46XR<[ǙcP$Lk-508l,?ǂ33p8Dchdb׌@~M1"_r7`<4#A-z;xX(لGPÌßөP8i]5HMQ E6)"N3Lo#pDXhzmY&{-d0aE"+Ͽh- \ASVkUueb|<1EMԯۏ#6芄HYLƃ8zr6hb*H]{@4N+M+TYYk6,ƈ?LK;\UJ;;\*wg=Bw w:]t`#(uю~/wT`hvHf!�`҉Hz&hp<4g fBq6\+�&'<9YZEfct-J|i)euq'e 'a )̦9roF,f˚euw ` [m <fLMg Y%~i~^+؅u \fk#^;pƲ^|W_/oat[>la:vY_q11(fh/+EEnIg[2פo?_g3\H\_@ ۑ ^'fN8'Due_BDM["I@ޛ8΅<_zlbIێ~Y:C~τnDsXG)ARaR[ Ge, c%.DH̓)"'SD"e2]&ɩeJ hc {ꡔ%!(倛dNq(+I&b\3N}s9C\EL !hPWvTyi~x ˧xC, D"Ȱx_["و|ݟAB\W~4]!/v]&jeRh.սU~_)x;~q TFvӏǍ >JFxģ"<$ȩGTYMyyy;OOl J<9¿,\\P[xjµԂ}d?ߘ"鎈H{c~ʨU$YJn;3-t@a#x;n[UH?W<)^E⮚Qਸ=V|8"=ݙnuuwQ];unߺT\awkbNp TSEDMC#.oIe\bm耬y@EB{,tnw<oO`*߲Xx<0ďGP6C|㐮/qr8~ ZX5B1f37샠9Aqs1؜^{5<48пooߞޞ.aֺygScCmR]lTj2sseefJD/V9.}\fGxnԑ5m9q-i[$z U)Q.CuH^*x]U΅u(L؃:T&>ꔻNL;}i*XjmRtlk'"ls, [dž2? y䭮s$o;7)k첖!FNŪ,agH!,蜟_3˕CbyPN̬ w}H"wDh�v{$5/NIT//fgGa`k rMe]C=PEnɴ` ~U3#SM PO y2 f5{eZ^_i)tS+-}F噗Ueɉ>>Oa>erΧ4>6[\"@rt Z3us!P6KhqJNwb *ǜyVl~%F+0D!lrԹOFryx\`7N:Yn<w ' y^zj:.c;= 3pUNP$ۼh+y^Hɂ}xv* ̜ycHue: .HX2z GYZwRW\IAY{Viv=הlCг$ᮁf8^̼J=RPJST zܘ{xDg(qAZ,tyE`Δ̆Ε*ܻLuRk{e`nۙg;ˏi93f~fc’KyiڸeHHgun|y`hFpx.D:[*qT`(@, Wm�x\3t+%!W01Uq])1N`wje9E#2;R"4r씳Nf4a3;NjYB�W?GA(s�2Y又[?om(g^_ws??a ,~^'xR_uyx ~K\prrОl#,HMM!-^^YFdÖ&JZ~x +o2}at_a(L] ,)0ܭނb&}5$?pS5NS)@pĵ7'7I!q T /K1/ endstream endobj 21 0 obj << /Type /FontDescriptor /FontName /9be14d+NotoSerif /FontFile2 20 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 22 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 23 0 obj [500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 562 613 500 613 535 369 500 500 319 500 500 500 944 645 577 500 500 471 500 352 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj 24 0 obj << /Length1 6964 /Length 3943 /Filter [/FlateDecode] >> stream xY}pSWv?=Im@2A_acֲL mɶ0$#A&H-m$l3xfC^3ɴtvI<NgNJ:P2Lm;lę&,ܫgNwIs~s=ܫ�ka;h{`Bh)�Y?:61MWg�q,>$'�5hyd5ȗrWwyhpFށ<uvN]"B>ҹyK,? P]H�|S")'=�ġht>#C�TCl+:zH"5_Gs2P�Pj.1v]t=&^^?|d E{([Pc޹_h!yw#RKvYz\*m UkUZ5b7XQhTaPsLHܒ!( [Ⱦ?Neצ±,|KG�3)){\xIrzP^Qd_p%k{?sB0X& ÌEvYX8@91Ob|>~ )tzK{-;5w`~x1{h7QK554Op16vlxMRsmޚs) j jk0}yAJyz"7V .<5v[K52ŚE`Дno/nZYVT}ͦNV7Ք񊨀>8Dp]zcHjן]@ѷ=E>Zh'`wUnmxh 3}MۈQ|F/xhAsܣ;{{;BQ6AVQ  *_KF`d՚GP;`'Aj3Zڃ DSqEpVY.H<o�z"T dkqbQq-!T\ dPuPNb*]�Tpe~zɪx! u*^uBUx<#C~qMحkYZ-@ Ƃ:Uxb" ;vx|tLذ6rJNCVh8$`QCSX(tl1sA T+"c8,JqNQF]DZ'S@Ici 1= 4Fi}rɧQ2ƵLyDGoU++Uƒr2&)`NP  6n[r L-I M'!9L>G# 4bd$<X;j~-b\o9QSʒvA.QG0H,Cth.) 啦QuQ#b{ 0*~p:g8q:kGmrچm2Өb^.68?VT0V FUِQ֦Quc\}*=ĿDwtǍ` yXX#e,2,RXHNtXnAڛcyy }X;tueH* c(JcM]jv-C=M{h{oq A[{P9$<R4hb, -_+wJÑ0 FǃFRl#xVb!49??.'c'I:mVɰz:x4Ƅ$/1k8!~YUA{yc4\j7^B|L;hJuy_׮`7j徺@zőx!`߃ |m/"/^D|~na2L^壓$?)c#(fwJ1Fe9I5f,A~-0c( γ 8_[''>>/o{)5$)k*2f'GmW\) yZc8ݏ<AiL9jhkwR(_|'k!Gʰ&+RzD.bO뉀À [IlaWJcd ѰpnA@Z l6@Qbu%kp,ƱBnMVHp� ^hp6{h>Þm &آ-ls41Wz7Xaރ\moiY OΟWߟ;|lڥM*c&MomS1We2ygWt'/_|hKbtҵK2Q _G^ _XӤi!0M.LME45M4::%L0%^5%MgL䌰3%I\U&WCo3*n􍈚"_C}kC^-n@;7'9Q4:$b xIvS[X-!H  w Ba $ρ+ah,9?qw# 9ԸYo?N)=|7C+ΞNO lw+!$쌘D¸yT*]$^�T p&=-=>l<˄RL.,G'=^v�vz{>}t[?侽Oiڽc`Z[E6WU  tZA8�UjVj`D PRX.�%(9BҞ/I#m uJT,9CCSN?iM-g"c6 ;Bԩtg).j #YR'%fH~ ιoUg0ouOA;WڕFpXea(P&$1k33yY)WIe ^;p*Lk&1J49ސ铏#A?Fv`x3vdlnrHF)3fM&CWI8W0٧nOj:h8~[$&sQ˦lg02 mzz"̵řr/\YZ0n_FԸBc|:La=}B2*0r"TbXpգ Rؒ3@mzWB5LSrp%* >zp#v0EObJԶO3%2]J92ufXmL~?Y}@c.jF~S\ю5XB#JUS9B}&b (1kf"{|n SqP#Ly5XFO}Iځ֌RPfpu[34lN١1~R-+Em:Ƣ.o? jWY5P X+YTO%3GͫgH0L`ES7=\Kl׊i4nw)T`s}}f8&Auf$W(#}&E z&ݞ ^|m39?c'܇})m6CwCi�=7cp~x�Y!11Ms=0z' ? YCnD!~ 5J$)R[ޒu / B>l`j+r^ 0>W\eyzal ˞{9* V M'Il${VgV3 sυ+Hǿꣽ,ܯ\6Dueyq[=Lt&{‹B`w'Y?_0O.͇VMzXnHo/|�x endstream endobj 25 0 obj << /Type /FontDescriptor /FontName /aa6569+NotoSerif-Bold /FontFile2 24 0 R /FontBBox [-212 -250 1306 1058] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 26 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 27 0 obj [600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 652 600 600 600 600 600 600 600 600 788 787 600 600 600 600 652 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600] endobj xref 0 28 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000530 00000 n 0000000581 00000 n 0000000853 00000 n 0000001057 00000 n 0000001354 00000 n 0000001396 00000 n 0000001444 00000 n 0000001496 00000 n 0000001661 00000 n 0000006185 00000 n 0000006497 00000 n 0000009166 00000 n 0000009465 00000 n 0000009635 00000 n 0000009709 00000 n 0000009834 00000 n 0000009909 00000 n 0000014890 00000 n 0000015104 00000 n 0000016466 00000 n 0000017380 00000 n 0000021413 00000 n 0000021632 00000 n 0000022994 00000 n trailer << /Size 28 /Root 2 0 R /Info 1 0 R >> startxref 23908 %%EOF �����������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/cover-page-front-cover-image-contain.pdf������������������0000664�0000000�0000000�00000073720�14163570564�0030163�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Document Title) /Creator (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /ModDate (D:20190706182915-06'00') /CreationDate (D:20190706182915-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 15 0 R /Outlines 17 0 R /PageLabels 19 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 842.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 3 /Kids [7 0 R 10 0 R 13 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 54 >> stream q q 595.1291 0.0 0.0 841.89 0.0754 0.0 cm /I1 Do Q Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /XObject << /I1 8 0 R >> >> >> endobj 8 0 obj << /Type /XObject /Subtype /Image /ColorSpace /DeviceRGB /BitsPerComponent 8 /Width 287 /Height 406 /Length 21479 /Filter [/DCTDecode] >> stream �JFIF�^^���C�    $.' ",#(7),01444'9=82<.342�C  2!!22222222222222222222222222222222222222222222222222�����������������A����!1AQ"a2q#BR$3br%CSdᢲ�������������4������!1"AQ2aq#B$R� ��?�V|B-!L, hIمL$ Vf jƑЕC .#Y`tu!gIrT'dX-746+cB} 0$!=�`4ېVƘ=7D 11P7 $&!PYSLD=eBlK-be&) N7@IcC2B'@x<�f & V!,qIȖ l+Yt"G41 ԀF�eD4Ɛ}C`T +C` *edJ)=`Fub:)^Af9h '*%J 48V V жD0ªE�#E(`'%7:2Y,R!kVASHI2@ K�vPP.xiƭ *@ &y#�] ZIS4G00{c6į(LH{]4ҴL2[JlI9H jhcT{V!j=X)o$@ĺP<X!XHah8@!)�P0NYej(((bʼn5�;,R蘀:D=/ <ExvyR%isӲricÓഊa%j�10)lK@{o2B[e!Z0!�U�&0}Vl#y& L&!�/j�]B�. } ?`9e ܠnCCAb@7zLpuդ; DvD5hXC1-@ꡀ��W:X PT&"hC%B<9K>efp@ x@B�!! -@ 1�7@1'`U8F7eH@[%Z@6C ҴH*LJ\ 6V3En(lR `z4@q B~RR rBk*`eCx(Q`xX %M )X&R�iϺ拡 i#h :8)V�V*0ZKcJ/P =RLMS<iL�$ۤ^8K$ qUJ}6WҌoa6An<1rϬxF<1ݙnsj%2&՞K\R磨%9knv"?U͞<>W4E+rбG91P 2`xȱ�.! .PCw)baCU Lt8$*2aFcU$3r JMPRI@ Yhpv"Har�vQAw; sq�G=^!}eQ`wx}v[gx>aK�&@nPw&g%ɳ,{U4�,2~\\͈\\F,8c( � r4CȡQ: M!PACQAFT*0:ʒ ܆@W9inʴ0]3eNʢEϫo7bCvWtui4P_U<aY7 6kYĎ~xQG/ܟC3cGTSoG\c�6ApRQèWTɵ(x<ZYC0Œ=7eʦ#뚗;sQ;E4uG${nI'$Y_ArT."~,]Y)m�j7O:8X8 !{BiMTkR�"xCBPt:2 *  Tctr 2R@3ź=-Ȑ/IoTBn xzezQAsS&�WN>1 dtbuě AsHe;z=&J:!cK6Tq˭{iqlLȻ�mU1l t'$ަ|+S \ ~\} rpN}X g5x-8qixډ[3};1]GҚS0Qj&Za?E{x1|G5:z_⇓'lhcMVOT x=.L)ױeFBĠ@EašۢG9&@˒tU$лP4c=x>ʒ�N1Dr49:�QH lE!*9I_fy@t_�3 &#i4U̐�C]{sGtLE| g63x^^$,x> ܜ][{#RIukGuܔI"(#c/%ZsvVyib9;.6Sj$ILkfyh~`i<Q #<WL%+MkJ< 1.@0 `nR; hCvSZEYLĹHH$Khq9:%N3]Lnz*-s0vuǴm] �Q?*;z-g^( 9d'Eqg)u*}2n`R#'Ro#m4H`JΖ#HwJ{]# \`6�V8~Z!g}y9vwǢ;G0|dbw]˺5|+{/ٲ ޷S,ؾ&_NN.CDsԲA9!X'=;zLPn( q*V<hv900)h730f;Fьb(pvP߄�QH." Ah] sVM]S'ٲ3vØ╄r7r{:jO ydwgXAvF,it.l8/oTٌZ{ (}@P4( ,+! b*e3ҹ}Bmg/$Dᘅl4K", )nEZ(#�KUcl<]CNR&0.u!T�Q5o@ܐB]O~m}?ds�ᘉb�*Lo_Þ,J[Lds L?�ۉE?Sg>f8| AKmܤE!NI#].D{fnJdklf{zVK&\T" c(=HZFCuh� Fp hBQC@iE\Hx!P0]H(XڴZϼ.u#mBŪI.?o_l>C$�ͦEOP,G*U# u#A"3|=dY&'T,04]#H<P%n2ݺ<\5< Bjuh#NNGQ<ͳVtϓ< *IcgJ4駕Fny "ImG|zz5swjMGs;25qgG2ӔAAZ$;H"N41#�.TsE,nI40wR0ƚ@\6'* qRH l@2r1˧ˋ" Ӵa7P9>џN%Y=lu8}~E'q�4 6S#8i9L oɞV $k PH #xykGRfK$Sb@*!uc!.'L- =e>Os\WQ4Bʏ,ЕzȢYPi]QQ c�85駨/ss%I퍾?:^R>Iǧ?U<Z4;B~W(52|B*Er��wTItPMT1l�t"<IF=JddS8na|" }^xjx̙Io#Uɵhfkdow,z6~\i8�!iIBA0xE9%Hb Xl[ic t+C?̳ᒎK`AUU4 {W&t9m'\!^f<tLNӤ%(l c~iuvFLN_o̙dP8B* LG7uDy߲ϯY^?g$M{%OCqL:}[N"dps\^[|l/$;yO x?̟7 N%ma>.&۶�tn}l^MKѴy G[Pn.Ǜ\�bNLsIt~Cdpz[quv=;WբO{|%'HV �֋ mS29JmfgĚ;_lf�:iT�v4Vrbw4V\'ھYTje$to [$,8qjsZ2J}#tpu(#1ӂ{�Fy W7Ӹ^/<(EV>( )-԰섀sE@<Y�&kaT.֧ 1G=e` [w^lz#FPic{7#qN\#G#y񐡛.UVtR :SX0w~+zJ*ޟ6U_4aB[c/ ޚ﷗f+WmLzdrO%|ބ8 ŋTrnoW,lLEOlU 8m[JשϚkuMk8{WhmM<,Y3b,8ŹE~eŴunV `| %OLQ�/KդG[ƨ]h 6'�Y8%{Yoݙ*�M&ZIB7 gX |/A뿈s�ǩߓf4CM]6!4;OvSokwaA=^O]$TWq_q5laߠV]. +8F\*I ಕ4܌ʫe&)<G8R.v֋ɤěn%*u_Spui^;ş>Gz.\揕}FH<R) $v0ѿ)!wl$#c\A3׺@@pւy C$:sQ~N+]gߤӂ8dι+H#:s]jFMHa}Ӓ>|�Pu;4'- An \EFa4e>D$rJ,!K|)I:ͷTOUL+]ڎ 2+s勮kc{2d/gK|-VSn.�酖rWܟ$5nQ;tX#q`A8>e7c旽fPűǤEOQNcLo2\~+/X-s犪dc(ם_Mٟ>my5^BQOO(:J")6I{1$|~,O|޸/t69In,t34 Bc%q平_'6a%+H%- *B i5sfFnH@c= ǫ)=w_s~w-m!%5% f~J4wڦu f`dCB%R iȟ+IX%7HCZI%H5N]jMioGv%:Vqk+O:mƵ�5rgNMH(qeiLa vU`R.eAr g!6(6HŒ C ko>> ͅ0iB5G-_c\<3 ‰:�w#0=D] R6@Rc%Lq�ҹй&&0d˒Gev6eMG*$ :Y ff> '+,$fs YH׹6k6n/_=S?^2ڌ t¢Z�MtoH&l 8~v^%SKkQq-XCLbhٸ^saaaӷ(_4sDmVM_g;@Zzn|d/5;4Y o?J ? {Drn#` ܹ_ʣTNY;mi=Lt> 2M.̒l.zf2l[gM}62SgjT4e,gFZܓԻ ;=AOY!=AI|�HTTp2$ml�+fi <U  #IGG4&�3ujrn]쪀u@ aʄUnr . Je ,ܐ7@CR�Д bYEm$->4ÖXr,ZimOŒ9qS(sH-A-[3x$S?-͊ C- (13<6�G{)<ۗ&O8Khdp|S/cbE ˟Gm<okji\Z6hq&|m^?3�>KIp? V 8diORK]1mkߕ%m?y4qQfqp;m$`;x~^1ߪ|GqPJ&Ӹ3F#wH]Mdps7 [se uY~.n!QqEىV3[6�3-|�U&ttA=*&c 7;NE|)ZvrkjIH]@Ksl8ۄy�{ŏzm}^!))j"|IQU)kq.9ؓ٣F*ߢKbL8q^(z ѱ`v ;=Ola.stѴXnl;zE9>;<BZm_%*-4"SNɌ\+N."',hV)SM6hp}TJ+IdH&S [?+\F?)=$z?#>8+i!}Z$i~ L[tӢhv$Mz~*؃mX̗$K3e'c;"#*'/pN9b|WO yeҊ\5xҴ<mfR@cגyyU˂]{Ϫu-L׵= 7Ϩv{w1c=6<۞]EO)d|(BՔQ\E,YN͉;+{*ahc[Wn=o׿t2f߅ E{l`|=8Ã/y:̎^X'GK M:NCORGJ@7i`kA>| _v6yYiMd-qo9r+äᒒ/z:^@i5!9=53Yx4]c[EEMSDy.wĮyM-^.W7Ǣ$<#l$T7&QےD׎ *@y -$ASV9 |'N˽V8 ;_Z劫DesHk!6Ϗ Wö؜ᔟ5}sm^۲AOOQ٥gҺTpL.>3{)܏OxeE_"�Gi7#~Bb<p9�Nj*9Vrn0�8oTe>qT9&Vվ&?W<󊏻 )Ov]|PrKC J�,6WY1m:^._:&NtDw0I8`/Mr%:᪂�CCROWת.S=c{yqw+ٗAXW KzidY QӨڦKQI=[ yr<7 *H]mBw;~rc]g^M+JΆ: &Z袞Q#^Z0c=ӭ\z}ܲdV@umKB1UU-jpǒ;n G+~WOS.Ѹ:*Y8|.q^sti%Ê/T#8W}~m:Cg{1&^|Oj{8?GY'^y|+W/4Z 6|bnA#-�@Bcx3 %d"k%LP1 `dIN'p7IkRJ\ AumaB&*Q;DVkN_L�?n 鲂%֟|(QEޣ[; hm-]T<%2:Vnlgs}NEMUwR>GQp'h眛#=8 D;,h$oZ&9űh`zᨪm$N6|iv)d[`n6pViM<x}L 9伉hu::Qc5Q4Jhik$y3;7yn(6t߷:cG4PjMS%TA<l?X vd{}n]!QO}Fi$˃$Wэo4 if*X} r*]6PMsKTvDjZn 7Z<ܧEM5UBIkn{d<l:|>68lqKFk|2uՍ}O_'FKvdTnA;n0Xʱd: pdѩ“Vh"s~*\2̓uYbh5zƲ9PG#e,)o7=?+�R9PQꁎ3-tk!Ęʢˬ%SJn.H40? 6ֽUu**K07Qn 53+qa, [DبuN]4d?"FwǛJ Vi۳I* 5ՓjOs�*>bǍRD767`L!=�B2͗ 6:>sO{>#R%k8^ݕVl6ʙҫveѺVio�uY#'6<Xm>Vjۧ>AN0zI˶9d˒^WHAq)b&{< k^$4t6꼔aUPum&efUPro.~_PX&ܺ_ff6cXrjvo2#{݋Y疅I8I?xanQ~C$p=Xls�B Gl?+ ,+g ?U*cL�~T>.=R&ؗ>T D_`ݟNJmbEq3e8O.e/4{<?՚[񪗷}Hc<tϙ\[dRq)%9!~ %LVwqn5H'+GC �ۑN[3c.khY _r^dŗkpY9k7KopvI*es2pۑ?pBS�*>m33*cC  414dLz]; TC#dWܕKRr6dGW麌5Mc$t.ּ(Śx*)uD|~3^~W,jY^]*QGM%Ζ 9~etO9I�2Ђld澺ZQ:S,H.nmc6G1 Ȅp(֬S%ҀER\��h 㝕&M˭3\0 v-{Xÿ0,E21S/eDm6�Z9ǵ!c|i<u/+Yex(dYr@Y9/DX9ke&PUHZ *Ѣ&YQ/dQJ6fu dq�yrvZ:5 -5Ze kK@]tdB˓U-6CVctZu cj>fP>`FY3E͂ ۾E U{ q81}HM9U4|B+Xh##$ÀSE`>}POzzᡩ]F_kn;cO9B.J~! v1ߒvv{͢׸AG=h s퐝K7; p.֑p*I 7=UR!ƿqqs 78UDmE5^$|0~mo쌒4+zwCBe|clT4H s|^'C&2YӛPô!Wj`yeÛtΤG|pZ鮊 Ya3fG7kہSF_ Gۋ*dCV:m9q9k#n|U~ �:=R=:N@$yh$ᣪ{`9Ԡɫ`]03ۺA9敔zt%/Vc${ԄXl,Qd(S L邠r#t'6�D uFA5ōh-,=-0EXF r*4\#O2`u;dB ƒ5fEG J4m[ ,R3<d(c.z\ $c*kb-c,%岗 d )c7$n)2evB&"{hOIp0-1x+xP)`iƟkTKߪ=Y=/|=0IhsGW`~c_%0&ĵLdsHi ӣ4؎cvj$]Axv)Cr#KK +!I9&' <[_Hi hB q0&a<FTI{%֕e9]U9c/ؠt 7 qa�䒶\p}Yk> ?49SO+Sl<^6nMFKee9嵺\%$+(9I�BBHU8oR=V$#7ꕰYmrhֶq$lFяFֵ?j i>k̍!+x{{x6 Y .l X)JD:&$LVыG<EX:QTyc>7"\9*49T2ס<]R`)q&`n.<bv#A$� ' ڊYRo{糯sdΗ< wEy4]wĖjy^ݳ¸W+iP�j_Ad / ^4J ,Fx�/2\Ώ mh >bmmըH3"#\B�Z}5j~3+l6O,sZ.%C�)zv>0sJDŽc^r Y|b:VGN'0GeF\kL!ǢPuAB+0>PD'4[GCAאAs[y*j*#>6QQrQlon\nTmeRFgCڋnѤ=>P{VeJZ>#9{9RgVų[_}s/p]^QN_Ye$qg1hIG^r%qd֤G,Q:F'yj5<ϸ"9UL{$\2{'+F}DeY#gK MIZ>KǟY 3H,)-Ƚ82TN1c{{0U0xnߢCQ;#VPfpVnv×}RweXhէMI!oi BG6OK}g` kc`.J 4e|pBepllisy�Z!j#[]l\E�#3`y:R,T<I~<Ln{�+.X'nV\8f Y,ΑttLKLDfn8ԅ^ d|#L0lӸIfuƞ1,>.U~]-HǑqZ%dN{Q8j:xZ1;'&�yy,h%γX/A%k!y+.hHtM¢>3i\IUs!EUQBڨ-+C˸]d:gɂ[<1qI~Ws2=/'esI0gtonq 0F}y+HhdmЄ5QrDb):{&hSwǪt*{ $+#pUK]�v2C.C!u<dvu٩],p90*2)uLVh�Z!Wo >?lo7~5\ja>θn=n(W>赛5cdle\^ݢԐ?N'܆:  ESEnEzC4fOi.yzX(=J'ɝ�!|sIoUc|镔t4Y]`;-TEtf{n=M3ɹ٤kaWdn&Yجq]kFF9Tk7Cd%ɎEN06)CAe7M3Z󈯅hQ8rI$Gb$X7LD(>x`lo MtμZD~YڨÛs/7 [R= ''n<Ȓy%.kq�{,?bmiTˋU@\%D4,~JLn i ; ;H,c; "˞s]6�4  H8Y!q'*DH`+Dj>+]+ְ]ג)> k оY*vmsZ#mǼ-&uQTjH%#}9MEu<"Bd,x>!6�snre Gq8~$ԓGFڀ*lvDfM&3X-fZhhl>s|B,7Gv<ԩ>rkKGNQA.13{ П3-7ZҨ+uWlNv.y� $V Kiϵ]0; 괊Fpo8|QR�TeZ  {Y%[ڍeRpKV; Gz.Je'E1m,}I<m˰pD8 H[ڧ;Ķ@T4]qgM o5( { umR5j<ݣo'?`o|XqNǕwjT:{[ X<i.Rx3ÑO\+S&HWC$}x<?^3>vV︊:<p6 M S8$)g 髖-Jaac?wC޾}OXߝ7\>@c†�l`۩`u"Cw&1nk)8i2[GwkL|4ҵJw#]K_le. lqCFvA\?s{e?K] ;_@t1# ݒĭ~#́תKK>03Ɂ#sȄoF&ױ&B<xob9p-!V!#+K uows,cvcl؂;uvixKBv<g!9R+,D@65h\c2K1^,UͨVP^t1Ldn5.<DT詋A>;)HmmhmMrcu6]6{m�  }PXjy䥐><uS9Ak#Í,ZO$8Xn l%Q|uZN!+F$spՏqˉ>K,\_m1.ӥv�x}^�ĺ:VD[�}`VY|N)mĿ2ǥ~M:I@�`śz>NMo`V͈Cb𡱁!H ڀ<\DIcVʁ463v+6#h�/ f l5tִߟ4 T|rL^ qS]W%IIw6�?ukq7�d쩒YU-|p �| ,Jٺָ{CfGN�2+W.9+82O|df8L qJSNKD]c)y@ı%O8o@VB$@�Cnٴ!|*y4.rQ$4jEٓ'à*?pOEh*4GT[M"܆Lߢbh?qmeZRMV$u0(!HsF۬L6�ݥbXx$�^7e$` lb@+FV�25Aa~n.-H18>+7}$`i Lr 䤨㖝w;�vj $4"9<Z6~ܑ? vt^ ֍^g:r/\>Khn/e X/j`UaA 'aD\ox=d+ i!qIYIMž [MI=tt}zp\1V%"NS/!&4]4aN<dE2 2ޕ v4UW.|Ѫ*/?m1QE2C!$\Bc�v^ !qTq]/hF[p+40TJxBxo Ck�mm%-@ g;Y٧PQ%tz4[8#Rl\+;)89+7UgUQ=[w1#K]g=̵vQ9�Fw]tFj]v:f67<3E=Q6ng-M=K`8Xȱǎ-GYXƆrP@զ*�,tykaC,(՝B{$C9Y(c ʚ2FN@[F;2cQVt)00ֳapMBIsLk)a�ҹ~>2l+uαTaa㭥^9^W _:XP ƥaDzCpNˉ*)C\2flDFEÇipy.@̽v/huPrA3I  ZC+@mia<B6]1|2+e6*fԂZ*ayaP%HK}b�Iƨ p HkQ6̲1i /Ak]&Q;`fOeю5|q{+ \6ttj l70\3sgGku(,&' |j@v*\F_ȼ7z +tPi\kHӪG\ƭl)tH"`1qY\i4ZiboKd"Ip~�ZD$۽7HX뢢jY}#f.2#5ϊ@Vt45-uԐ;p7U8,TRبnHїL qEl0&@)5'C5{."lVc|MOubjBfF^[.JDHdtzRd8?5<e,|o۠]v^,q`Ը-|g`$:14m?z:`-֟G,vF)}Nx h80/0FnyC A'iH/OAqɻʌJ4D8lW"tsӧ VѱF@WăZdS-)gB1pɎ=if+<}>:in}@ύB6PqN|=?X0rΈc[gO4xidXmV$a)2O Y6@-2o D {qcZ` KdHn['NΡ 78_FzN'ap84HMSD>QmipSU#McM\M+ba DdEYFuԪdbhV\JpCCS' hH:YU\h `�VQ%Bht@e|ռ9O!t4lY2f/.:* B֭c>uS v4va;@v=;=y%wQB"k@`q~&=ok,DIzY# +fɺ=Qu(lH욒ԨOk�{wh}ՠ9p^D.}U]6L@dqto j s5hkv\x,$jxua>,A)SqmhxQio!%.Rd7qa8SqELO#eN\/mRŠjyE�0dR,GZϼ7߸N8E7eVs1�Œ`הO__ ]mWrWFJ0%mqȄrlZda(Hhȱ9 c. \A597(bvh H)L(3ZFVʉz(bߍu͔*6w^8͖кDįiϞ[`ι5i3_Mp<6rH)ə-SQew+@΄Qx+F[�깲'7`Yi⮅ٲ-ʄ՜cM :-1tY k]$lഄ4NWA|-6טӣݼUǓRͻK;qsuȥ,ι#^5Tc)A\6+c,@J4L f\UlKEh.:V)"ke,Q*6c&]Zscq!$A(8c)tXv׌9:~`hd`8[E\H&�Set 0چWHtwQ UvWN@ZXQ 'IHh-JY킷ěe؉hϪ:-īO;뮨ѯu8& |M&y/<UũRF'FOb.T+uiSST ZwW7HdMl%$)`{KO"'>)cp},2F%ch1*KY3Os Cٕ8cDŋՅoǢ!eՕN3c}TE9# Զgop38W�`E/ Dݷ_Zl 4}$IF@5�)WLLJzp{3UкmYˆHX+ .IeM^ '2s\dp& G;9Z:LM4EֲHsEW$ӽ} ^'.ʪlq {%KlӨS $yT6QeCLv 6HV] G0j*mEjc\ɣ)Eٕ<Pu ~MЦG8{]#)M2>jxٿ͞\6u֮}ďN(pJWkQHHR :<¬Pe�(_Rx8R,[FХƞS܍dU#}hm.s4t",;,13h6XK IiUzϡ((#,Vآ"q}^cFMQ4'SL{,v`:H2KԚ[qVd7KQXbhO hSq걩De;4[FKWӢ-JS< r5tcP]qPEJ2U8}[ZgYUFkyt}gh(Gw46]?K,8lzhix$vwҿ00Ĵ^nF۲l� y"I \,jZ Zr)$Kg6ֵMSeov/(]MNTn"yTU#yK�ɲ)Y$M #|7@ɑ EX(dxrQIme&&] +iW mvP/KE$e$F6Fֈ2Z#G%ϒ>g)L ei *ML*T,Xi6I%*f*Kᖟ69λJ G(X A^$ 6[sOm )j류 )ȩGHI' f탈왎ngLz65 .V5RFS,Z ׯpE%ɿ$~XCP&x2LQ ⥰*5sd.oM{' iT1cl~Sˑ|jmj `cX`ɞ|ѓXsUb%+u}AIʒs hU@6M@HY91 <e)2ac+9Bc#dIpmtat$X`^ŠuX\.�R4FJ-ؖK?i+H1s*B-V샔n&ͱT+G9L%uIY81eOSW`74Mxc8qddMudhI.N)2BB1}]RD3p'JQ㏫ₘfG!z�@G"MVa4@#SfEuHhyᵚ"3�$rwk1SD5Ǎɜ͒R6#l#R-i�YNOEU&"ž9'p�a4ti> kp|NEv }SωRk)8W˖%&Wy>\2S"WeZtPjYf�$z.9LQ, "vfMLF^ѐ B1R-w0m3NJd@p\vӕ(hk3GV4dh4j3Mr\sW3i:,Tˍɲ쟨x0;$؛9sĵRt#] !KysUElໝiS4YDx!c;H:"1tiXln~+tD`M иpqfOx=248pwGF893O<ڕARH%o(2Gi#kXJNO%hJ,h6HQr!hi�eD wTZA@�P9ZXH(0HMq#pdZ+6XZ v w.ZSG 2D]k(! ε:Ji͍b3~ɒk}7ZLn앝O%,}BTTHGo.e˲IL{Q_Q.\Q6yL@E,mCJд8qdVt%W +ݹ6ZEMi\]තYmq 8 :u Ii;+uUNi7�\JcTsvyӓ M+,).B˪/(-(M@ dYC0cA*0fТ5'<aOrM#y.Ifi:rO%'LM(H!9}⪑2��J4g$B.|IFBV RV=sMaefk p68S4G8(]G>儮Gk�pT=]nf"T2m)4lj$kc)C##ZD9#wM&9¨22V hNJgfFڕ#�.Y&og:dp+j u\dk"s N_i%Q.7<O;pI# y|F?1U<R"Ǘ02ETεlzCOD_X$D.Z]1-)!m6_E$˪1D24aX3$ym: -{(ۜrQD@9@\,h 6ra.IE4qN%!7%'"9){]jVM|, ЊJ/cjыdk5evfZ<9)DF͐LР@;.IKH5GU!3R%#ETѴ h-`pN):/x endstream endobj 9 0 obj << /Length 170 >> stream q /DeviceRGB cs 0.6 0.6 0.6 scn /DeviceRGB CS 0.6 0.6 0.6 SCN BT 350.129 361.6965 Td /F1.0 27 Tf <446f63756d656e74205469746c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 10 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 9 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R >> >> >> endobj 11 0 obj << /Type /Font /BaseFont /283853+NotoSerif /Subtype /TrueType /FontDescriptor 21 0 R /FirstChar 32 /LastChar 255 /Widths 23 0 R /ToUnicode 22 0 R >> endobj 12 0 obj << /Length 165 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf <636f6e74656e742070616765> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 13 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 12 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R >> >> >> endobj 14 0 obj [13 0 R /XYZ 0 841.89 null] endobj 15 0 obj << /Type /Names /Dests 16 0 R >> endobj 16 0 obj << /Names [(__anchor-top) 14 0 R] >> endobj 17 0 obj << /Type /Outlines /Count 1 /First 18 0 R /Last 18 0 R >> endobj 18 0 obj << /Title <feff0044006f00630075006d0065006e00740020005400690074006c0065> /Parent 17 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 19 0 obj << /Nums [0 << /P (i) >> 1 << /P (ii) >> 2 << /P (1) >>] >> endobj 20 0 obj << /Length1 4460 /Length 2764 /Filter [/FlateDecode] >> stream xXyPJ�qI E2@+C qÀ%�d I MNر;L2$MdO&dIi3=f:x6ӺI3IܷcB~zow~�-CUND.E)߯�$s̳y\hK#=> |]:r]K#! ~Ϡ6]:s(τh�%ϫz�8 wd x@D zom2U`)$A2@,5-!ywQ0\MI(ňJleY9JMx ,ȅ/X?YspjΡ-"=ݶªϞ.?]bbӤ/ů^<G*4T#QniT9P NqQԗ &9*ÇCXrüOd!~v]q941v$IN)fuRRfNQ6km3!08tu_k쩔N=OL416uOtFM|=r@E RF<EidsKG]^+w=Sm-*\y|tR+/r$SHu ϏNC 9Eu,\s w˝ -S~u걻?x.ϷuMj洊Bzoh7LҤ4Gdf ͓a^K%o_^yw|qEUzl W_|v{N}RLεVCxkTBiYAqWS_:Ƹ1a)9X0IV $0cq4LB^ ٌ$f-C-PQ,+tn4d.uf֨`]Seh]i7͜vv;j22*̍b&ê6`C`s؜:gd~n)-/JS)ҫb}GmDҔk$jϟlRז8&̓3UzfyInVQ*@=[6Ykt>zتnIԴ1TP P7ܖS V{bKGJ|_U✜b*_f F݋%-s](Qs]&MZƴ tm:jF5m:AV@p]B`z~ 弮$ ΔgIƸYYe#`fQ<ގe&~GNVqi'LY[j*{KSBCO%V[}B! Қ3޼:g+L1N*Y q~C8YJ;Q3x1NDes9w_q߄з [L!aĖ R^G+gZ?'\il+Ҵ *:@ycMM=r>rC|il]n."~<1F=PZzh〣&G47&SK m̛)Lγ4yb?<X!Qm' Lm6.rWQ%C]Q Oj9(V~ߛ߸BLq_c+KΆY%\ɦkjUnݹ *s3:,/MKS42,7酚ֺͯN:2f)w]D5wFmp'낽2}G>\wYb[%L67OM?)M>>M3eӚ5`QXa0R^u)hTBsAM5<%\π#@ʵ2$xuBaEN HJ,EHȧP0żԍ8rUo$|H>I@z-^<)GYlUDf7^+Wt"BईP"Ni)<P8 v, H3 %". bq hHK!sӷ$ВNt3" J'|")6l@U%2a4uz_So5]Ӡt3"S".=q90Jط荲fS '0DZ~?;OE!O3A;!+>X/DqGM >Y ~"qhsUD<8zPn  ÞoA|+o o`aȳ²EB7`t%./}Enҏ:.[D}|`{[3Y٘\Dxs,!%VRoTj_uѰ{޳b [b';HG  b| _EP|l_l^au=kubƈ< v~\bJ4L hF!8p\p2#AQ\onbu%(j^^^İՑhlܦyYǡ[;X c<2 {la[C9ęjv#͜ p 4/8/$σW`tjD簙-1`xOx1w wx/v׽*ȩYj=H&^;tbӐV 2|@FTj~s)?>)~ Z,$>_n�cQ endstream endobj 21 0 obj << /Type /FontDescriptor /FontName /283853+NotoSerif /FontFile2 20 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 22 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 23 0 obj [259 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 727 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 612 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 562 1000 492 1000 535 1000 538 1000 319 1000 1000 310 944 645 577 613 1000 1000 1000 352 634 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj xref 0 24 0000000000 65535 f 0000000015 00000 n 0000000268 00000 n 0000000470 00000 n 0000000541 00000 n 0000000592 00000 n 0000000864 00000 n 0000000968 00000 n 0000001265 00000 n 0000022915 00000 n 0000023136 00000 n 0000023434 00000 n 0000023599 00000 n 0000023816 00000 n 0000024115 00000 n 0000024159 00000 n 0000024208 00000 n 0000024261 00000 n 0000024335 00000 n 0000024484 00000 n 0000024560 00000 n 0000027414 00000 n 0000027628 00000 n 0000028990 00000 n trailer << /Size 24 /Root 2 0 R /Info 1 0 R >> startxref 30113 %%EOF ������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/cover-page-front-cover-image-cover.pdf��������������������0000664�0000000�0000000�00000115176�14163570564�0027650�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Document Title) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20191216234914-07'00') /CreationDate (D:20191216234914-07'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 13 0 R /Outlines 16 0 R /PageLabels 18 0 R /PageMode /UseOutlines /OpenAction [8 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 2 /Kids [8 0 R 10 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Type /XObject /Subtype /Image /ColorSpace /DeviceRGB /BitsPerComponent 8 /Width 287 /Height 406 /Length 21479 /Filter [/DCTDecode] >> stream �JFIF�^^���C�    $.' ",#(7),01444'9=82<.342�C  2!!22222222222222222222222222222222222222222222222222�����������������A����!1AQ"a2q#BR$3br%CSdᢲ�������������4������!1"AQ2aq#B$R� ��?�V|B-!L, hIمL$ Vf jƑЕC .#Y`tu!gIrT'dX-746+cB} 0$!=�`4ېVƘ=7D 11P7 $&!PYSLD=eBlK-be&) N7@IcC2B'@x<�f & V!,qIȖ l+Yt"G41 ԀF�eD4Ɛ}C`T +C` *edJ)=`Fub:)^Af9h '*%J 48V V жD0ªE�#E(`'%7:2Y,R!kVASHI2@ K�vPP.xiƭ *@ &y#�] ZIS4G00{c6į(LH{]4ҴL2[JlI9H jhcT{V!j=X)o$@ĺP<X!XHah8@!)�P0NYej(((bʼn5�;,R蘀:D=/ <ExvyR%isӲricÓഊa%j�10)lK@{o2B[e!Z0!�U�&0}Vl#y& L&!�/j�]B�. } ?`9e ܠnCCAb@7zLpuդ; DvD5hXC1-@ꡀ��W:X PT&"hC%B<9K>efp@ x@B�!! -@ 1�7@1'`U8F7eH@[%Z@6C ҴH*LJ\ 6V3En(lR `z4@q B~RR rBk*`eCx(Q`xX %M )X&R�iϺ拡 i#h :8)V�V*0ZKcJ/P =RLMS<iL�$ۤ^8K$ qUJ}6WҌoa6An<1rϬxF<1ݙnsj%2&՞K\R磨%9knv"?U͞<>W4E+rбG91P 2`xȱ�.! .PCw)baCU Lt8$*2aFcU$3r JMPRI@ Yhpv"Har�vQAw; sq�G=^!}eQ`wx}v[gx>aK�&@nPw&g%ɳ,{U4�,2~\\͈\\F,8c( � r4CȡQ: M!PACQAFT*0:ʒ ܆@W9inʴ0]3eNʢEϫo7bCvWtui4P_U<aY7 6kYĎ~xQG/ܟC3cGTSoG\c�6ApRQèWTɵ(x<ZYC0Œ=7eʦ#뚗;sQ;E4uG${nI'$Y_ArT."~,]Y)m�j7O:8X8 !{BiMTkR�"xCBPt:2 *  Tctr 2R@3ź=-Ȑ/IoTBn xzezQAsS&�WN>1 dtbuě AsHe;z=&J:!cK6Tq˭{iqlLȻ�mU1l t'$ަ|+S \ ~\} rpN}X g5x-8qixډ[3};1]GҚS0Qj&Za?E{x1|G5:z_⇓'lhcMVOT x=.L)ױeFBĠ@EašۢG9&@˒tU$лP4c=x>ʒ�N1Dr49:�QH lE!*9I_fy@t_�3 &#i4U̐�C]{sGtLE| g63x^^$,x> ܜ][{#RIukGuܔI"(#c/%ZsvVyib9;.6Sj$ILkfyh~`i<Q #<WL%+MkJ< 1.@0 `nR; hCvSZEYLĹHH$Khq9:%N3]Lnz*-s0vuǴm] �Q?*;z-g^( 9d'Eqg)u*}2n`R#'Ro#m4H`JΖ#HwJ{]# \`6�V8~Z!g}y9vwǢ;G0|dbw]˺5|+{/ٲ ޷S,ؾ&_NN.CDsԲA9!X'=;zLPn( q*V<hv900)h730f;Fьb(pvP߄�QH." Ah] sVM]S'ٲ3vØ╄r7r{:jO ydwgXAvF,it.l8/oTٌZ{ (}@P4( ,+! b*e3ҹ}Bmg/$Dᘅl4K", )nEZ(#�KUcl<]CNR&0.u!T�Q5o@ܐB]O~m}?ds�ᘉb�*Lo_Þ,J[Lds L?�ۉE?Sg>f8| AKmܤE!NI#].D{fnJdklf{zVK&\T" c(=HZFCuh� Fp hBQC@iE\Hx!P0]H(XڴZϼ.u#mBŪI.?o_l>C$�ͦEOP,G*U# u#A"3|=dY&'T,04]#H<P%n2ݺ<\5< Bjuh#NNGQ<ͳVtϓ< *IcgJ4駕Fny "ImG|zz5swjMGs;25qgG2ӔAAZ$;H"N41#�.TsE,nI40wR0ƚ@\6'* qRH l@2r1˧ˋ" Ӵa7P9>џN%Y=lu8}~E'q�4 6S#8i9L oɞV $k PH #xykGRfK$Sb@*!uc!.'L- =e>Os\WQ4Bʏ,ЕzȢYPi]QQ c�85駨/ss%I퍾?:^R>Iǧ?U<Z4;B~W(52|B*Er��wTItPMT1l�t"<IF=JddS8na|" }^xjx̙Io#Uɵhfkdow,z6~\i8�!iIBA0xE9%Hb Xl[ic t+C?̳ᒎK`AUU4 {W&t9m'\!^f<tLNӤ%(l c~iuvFLN_o̙dP8B* LG7uDy߲ϯY^?g$M{%OCqL:}[N"dps\^[|l/$;yO x?̟7 N%ma>.&۶�tn}l^MKѴy G[Pn.Ǜ\�bNLsIt~Cdpz[quv=;WբO{|%'HV �֋ mS29JmfgĚ;_lf�:iT�v4Vrbw4V\'ھYTje$to [$,8qjsZ2J}#tpu(#1ӂ{�Fy W7Ӹ^/<(EV>( )-԰섀sE@<Y�&kaT.֧ 1G=e` [w^lz#FPic{7#qN\#G#y񐡛.UVtR :SX0w~+zJ*ޟ6U_4aB[c/ ޚ﷗f+WmLzdrO%|ބ8 ŋTrnoW,lLEOlU 8m[JשϚkuMk8{WhmM<,Y3b,8ŹE~eŴunV `| %OLQ�/KդG[ƨ]h 6'�Y8%{Yoݙ*�M&ZIB7 gX |/A뿈s�ǩߓf4CM]6!4;OvSokwaA=^O]$TWq_q5laߠV]. +8F\*I ಕ4܌ʫe&)<G8R.v֋ɤěn%*u_Spui^;ş>Gz.\揕}FH<R) $v0ѿ)!wl$#c\A3׺@@pւy C$:sQ~N+]gߤӂ8dι+H#:s]jFMHa}Ӓ>|�Pu;4'- An \EFa4e>D$rJ,!K|)I:ͷTOUL+]ڎ 2+s勮kc{2d/gK|-VSn.�酖rWܟ$5nQ;tX#q`A8>e7c旽fPűǤEOQNcLo2\~+/X-s犪dc(ם_Mٟ>my5^BQOO(:J")6I{1$|~,O|޸/t69In,t34 Bc%q平_'6a%+H%- *B i5sfFnH@c= ǫ)=w_s~w-m!%5% f~J4wڦu f`dCB%R iȟ+IX%7HCZI%H5N]jMioGv%:Vqk+O:mƵ�5rgNMH(qeiLa vU`R.eAr g!6(6HŒ C ko>> ͅ0iB5G-_c\<3 ‰:�w#0=D] R6@Rc%Lq�ҹй&&0d˒Gev6eMG*$ :Y ff> '+,$fs YH׹6k6n/_=S?^2ڌ t¢Z�MtoH&l 8~v^%SKkQq-XCLbhٸ^saaaӷ(_4sDmVM_g;@Zzn|d/5;4Y o?J ? {Drn#` ܹ_ʣTNY;mi=Lt> 2M.̒l.zf2l[gM}62SgjT4e,gFZܓԻ ;=AOY!=AI|�HTTp2$ml�+fi <U  #IGG4&�3ujrn]쪀u@ aʄUnr . Je ,ܐ7@CR�Д bYEm$->4ÖXr,ZimOŒ9qS(sH-A-[3x$S?-͊ C- (13<6�G{)<ۗ&O8Khdp|S/cbE ˟Gm<okji\Z6hq&|m^?3�>KIp? V 8diORK]1mkߕ%m?y4qQfqp;m$`;x~^1ߪ|GqPJ&Ӹ3F#wH]Mdps7 [se uY~.n!QqEىV3[6�3-|�U&ttA=*&c 7;NE|)ZvrkjIH]@Ksl8ۄy�{ŏzm}^!))j"|IQU)kq.9ؓ٣F*ߢKbL8q^(z ѱ`v ;=Ola.stѴXnl;zE9>;<BZm_%*-4"SNɌ\+N."',hV)SM6hp}TJ+IdH&S [?+\F?)=$z?#>8+i!}Z$i~ L[tӢhv$Mz~*؃mX̗$K3e'c;"#*'/pN9b|WO yeҊ\5xҴ<mfR@cגyyU˂]{Ϫu-L׵= 7Ϩv{w1c=6<۞]EO)d|(BՔQ\E,YN͉;+{*ahc[Wn=o׿t2f߅ E{l`|=8Ã/y:̎^X'GK M:NCORGJ@7i`kA>| _v6yYiMd-qo9r+äᒒ/z:^@i5!9=53Yx4]c[EEMSDy.wĮyM-^.W7Ǣ$<#l$T7&QےD׎ *@y -$ASV9 |'N˽V8 ;_Z劫DesHk!6Ϗ Wö؜ᔟ5}sm^۲AOOQ٥gҺTpL.>3{)܏OxeE_"�Gi7#~Bb<p9�Nj*9Vrn0�8oTe>qT9&Vվ&?W<󊏻 )Ov]|PrKC J�,6WY1m:^._:&NtDw0I8`/Mr%:᪂�CCROWת.S=c{yqw+ٗAXW KzidY QӨڦKQI=[ yr<7 *H]mBw;~rc]g^M+JΆ: &Z袞Q#^Z0c=ӭ\z}ܲdV@umKB1UU-jpǒ;n G+~WOS.Ѹ:*Y8|.q^sti%Ê/T#8W}~m:Cg{1&^|Oj{8?GY'^y|+W/4Z 6|bnA#-�@Bcx3 %d"k%LP1 `dIN'p7IkRJ\ AumaB&*Q;DVkN_L�?n 鲂%֟|(QEޣ[; hm-]T<%2:Vnlgs}NEMUwR>GQp'h眛#=8 D;,h$oZ&9űh`zᨪm$N6|iv)d[`n6pViM<x}L 9伉hu::Qc5Q4Jhik$y3;7yn(6t߷:cG4PjMS%TA<l?X vd{}n]!QO}Fi$˃$Wэo4 if*X} r*]6PMsKTvDjZn 7Z<ܧEM5UBIkn{d<l:|>68lqKFk|2uՍ}O_'FKvdTnA;n0Xʱd: pdѩ“Vh"s~*\2̓uYbh5zƲ9PG#e,)o7=?+�R9PQꁎ3-tk!Ęʢˬ%SJn.H40? 6ֽUu**K07Qn 53+qa, [DبuN]4d?"FwǛJ Vi۳I* 5ՓjOs�*>bǍRD767`L!=�B2͗ 6:>sO{>#R%k8^ݕVl6ʙҫveѺVio�uY#'6<Xm>Vjۧ>AN0zI˶9d˒^WHAq)b&{< k^$4t6꼔aUPum&efUPro.~_PX&ܺ_ff6cXrjvo2#{݋Y疅I8I?xanQ~C$p=Xls�B Gl?+ ,+g ?U*cL�~T>.=R&ؗ>T D_`ݟNJmbEq3e8O.e/4{<?՚[񪗷}Hc<tϙ\[dRq)%9!~ %LVwqn5H'+GC �ۑN[3c.khY _r^dŗkpY9k7KopvI*es2pۑ?pBS�*>m33*cC  414dLz]; TC#dWܕKRr6dGW麌5Mc$t.ּ(Śx*)uD|~3^~W,jY^]*QGM%Ζ 9~etO9I�2Ђld澺ZQ:S,H.nmc6G1 Ȅp(֬S%ҀER\��h 㝕&M˭3\0 v-{Xÿ0,E21S/eDm6�Z9ǵ!c|i<u/+Yex(dYr@Y9/DX9ke&PUHZ *Ѣ&YQ/dQJ6fu dq�yrvZ:5 -5Ze kK@]tdB˓U-6CVctZu cj>fP>`FY3E͂ ۾E U{ q81}HM9U4|B+Xh##$ÀSE`>}POzzᡩ]F_kn;cO9B.J~! v1ߒvv{͢׸AG=h s퐝K7; p.֑p*I 7=UR!ƿqqs 78UDmE5^$|0~mo쌒4+zwCBe|clT4H s|^'C&2YӛPô!Wj`yeÛtΤG|pZ鮊 Ya3fG7kہSF_ Gۋ*dCV:m9q9k#n|U~ �:=R=:N@$yh$ᣪ{`9Ԡɫ`]03ۺA9敔zt%/Vc${ԄXl,Qd(S L邠r#t'6�D uFA5ōh-,=-0EXF r*4\#O2`u;dB ƒ5fEG J4m[ ,R3<d(c.z\ $c*kb-c,%岗 d )c7$n)2evB&"{hOIp0-1x+xP)`iƟkTKߪ=Y=/|=0IhsGW`~c_%0&ĵLdsHi ӣ4؎cvj$]Axv)Cr#KK +!I9&' <[_Hi hB q0&a<FTI{%֕e9]U9c/ؠt 7 qa�䒶\p}Yk> ?49SO+Sl<^6nMFKee9嵺\%$+(9I�BBHU8oR=V$#7ꕰYmrhֶq$lFяFֵ?j i>k̍!+x{{x6 Y .l X)JD:&$LVыG<EX:QTyc>7"\9*49T2ס<]R`)q&`n.<bv#A$� ' ڊYRo{糯sdΗ< wEy4]wĖjy^ݳ¸W+iP�j_Ad / ^4J ,Fx�/2\Ώ mh >bmmըH3"#\B�Z}5j~3+l6O,sZ.%C�)zv>0sJDŽc^r Y|b:VGN'0GeF\kL!ǢPuAB+0>PD'4[GCAאAs[y*j*#>6QQrQlon\nTmeRFgCڋnѤ=>P{VeJZ>#9{9RgVų[_}s/p]^QN_Ye$qg1hIG^r%qd֤G,Q:F'yj5<ϸ"9UL{$\2{'+F}DeY#gK MIZ>KǟY 3H,)-Ƚ82TN1c{{0U0xnߢCQ;#VPfpVnv×}RweXhէMI!oi BG6OK}g` kc`.J 4e|pBepllisy�Z!j#[]l\E�#3`y:R,T<I~<Ln{�+.X'nV\8f Y,ΑttLKLDfn8ԅ^ d|#L0lӸIfuƞ1,>.U~]-HǑqZ%dN{Q8j:xZ1;'&�yy,h%γX/A%k!y+.hHtM¢>3i\IUs!EUQBڨ-+C˸]d:gɂ[<1qI~Ws2=/'esI0gtonq 0F}y+HhdmЄ5QrDb):{&hSwǪt*{ $+#pUK]�v2C.C!u<dvu٩],p90*2)uLVh�Z!Wo >?lo7~5\ja>θn=n(W>赛5cdle\^ݢԐ?N'܆:  ESEnEzC4fOi.yzX(=J'ɝ�!|sIoUc|镔t4Y]`;-TEtf{n=M3ɹ٤kaWdn&Yجq]kFF9Tk7Cd%ɎEN06)CAe7M3Z󈯅hQ8rI$Gb$X7LD(>x`lo MtμZD~YڨÛs/7 [R= ''n<Ȓy%.kq�{,?bmiTˋU@\%D4,~JLn i ; ;H,c; "˞s]6�4  H8Y!q'*DH`+Dj>+]+ְ]ג)> k оY*vmsZ#mǼ-&uQTjH%#}9MEu<"Bd,x>!6�snre Gq8~$ԓGFڀ*lvDfM&3X-fZhhl>s|B,7Gv<ԩ>rkKGNQA.13{ П3-7ZҨ+uWlNv.y� $V Kiϵ]0; 괊Fpo8|QR�TeZ  {Y%[ڍeRpKV; Gz.Je'E1m,}I<m˰pD8 H[ڧ;Ķ@T4]qgM o5( { umR5j<ݣo'?`o|XqNǕwjT:{[ X<i.Rx3ÑO\+S&HWC$}x<?^3>vV︊:<p6 M S8$)g 髖-Jaac?wC޾}OXߝ7\>@c†�l`۩`u"Cw&1nk)8i2[GwkL|4ҵJw#]K_le. lqCFvA\?s{e?K] ;_@t1# ݒĭ~#́תKK>03Ɂ#sȄoF&ױ&B<xob9p-!V!#+K uows,cvcl؂;uvixKBv<g!9R+,D@65h\c2K1^,UͨVP^t1Ldn5.<DT詋A>;)HmmhmMrcu6]6{m�  }PXjy䥐><uS9Ak#Í,ZO$8Xn l%Q|uZN!+F$spՏqˉ>K,\_m1.ӥv�x}^�ĺ:VD[�}`VY|N)mĿ2ǥ~M:I@�`śz>NMo`V͈Cb𡱁!H ڀ<\DIcVʁ463v+6#h�/ f l5tִߟ4 T|rL^ qS]W%IIw6�?ukq7�d쩒YU-|p �| ,Jٺָ{CfGN�2+W.9+82O|df8L qJSNKD]c)y@ı%O8o@VB$@�Cnٴ!|*y4.rQ$4jEٓ'à*?pOEh*4GT[M"܆Lߢbh?qmeZRMV$u0(!HsF۬L6�ݥbXx$�^7e$` lb@+FV�25Aa~n.-H18>+7}$`i Lr 䤨㖝w;�vj $4"9<Z6~ܑ? vt^ ֍^g:r/\>Khn/e X/j`UaA 'aD\ox=d+ i!qIYIMž [MI=tt}zp\1V%"NS/!&4]4aN<dE2 2ޕ v4UW.|Ѫ*/?m1QE2C!$\Bc�v^ !qTq]/hF[p+40TJxBxo Ck�mm%-@ g;Y٧PQ%tz4[8#Rl\+;)89+7UgUQ=[w1#K]g=̵vQ9�Fw]tFj]v:f67<3E=Q6ng-M=K`8Xȱǎ-GYXƆrP@զ*�,tykaC,(՝B{$C9Y(c ʚ2FN@[F;2cQVt)00ֳapMBIsLk)a�ҹ~>2l+uαTaa㭥^9^W _:XP ƥaDzCpNˉ*)C\2flDFEÇipy.@̽v/huPrA3I  ZC+@mia<B6]1|2+e6*fԂZ*ayaP%HK}b�Iƨ p HkQ6̲1i /Ak]&Q;`fOeю5|q{+ \6ttj l70\3sgGku(,&' |j@v*\F_ȼ7z +tPi\kHӪG\ƭl)tH"`1qY\i4ZiboKd"Ip~�ZD$۽7HX뢢jY}#f.2#5ϊ@Vt45-uԐ;p7U8,TRبnHїL qEl0&@)5'C5{."lVc|MOubjBfF^[.JDHdtzRd8?5<e,|o۠]v^,q`Ը-|g`$:14m?z:`-֟G,vF)}Nx h80/0FnyC A'iH/OAqɻʌJ4D8lW"tsӧ VѱF@WăZdS-)gB1pɎ=if+<}>:in}@ύB6PqN|=?X0rΈc[gO4xidXmV$a)2O Y6@-2o D {qcZ` KdHn['NΡ 78_FzN'ap84HMSD>QmipSU#McM\M+ba DdEYFuԪdbhV\JpCCS' hH:YU\h `�VQ%Bht@e|ռ9O!t4lY2f/.:* B֭c>uS v4va;@v=;=y%wQB"k@`q~&=ok,DIzY# +fɺ=Qu(lH욒ԨOk�{wh}ՠ9p^D.}U]6L@dqto j s5hkv\x,$jxua>,A)SqmhxQio!%.Rd7qa8SqELO#eN\/mRŠjyE�0dR,GZϼ7߸N8E7eVs1�Œ`הO__ ]mWrWFJ0%mqȄrlZda(Hhȱ9 c. \A597(bvh H)L(3ZFVʉz(bߍu͔*6w^8͖кDįiϞ[`ι5i3_Mp<6rH)ə-SQew+@΄Qx+F[�깲'7`Yi⮅ٲ-ʄ՜cM :-1tY k]$lഄ4NWA|-6טӣݼUǓRͻK;qsuȥ,ι#^5Tc)A\6+c,@J4L f\UlKEh.:V)"ke,Q*6c&]Zscq!$A(8c)tXv׌9:~`hd`8[E\H&�Set 0چWHtwQ UvWN@ZXQ 'IHh-JY킷ěe؉hϪ:-īO;뮨ѯu8& |M&y/<UũRF'FOb.T+uiSST ZwW7HdMl%$)`{KO"'>)cp},2F%ch1*KY3Os Cٕ8cDŋՅoǢ!eՕN3c}TE9# Զgop38W�`E/ Dݷ_Zl 4}$IF@5�)WLLJzp{3UкmYˆHX+ .IeM^ '2s\dp& G;9Z:LM4EֲHsEW$ӽ} ^'.ʪlq {%KlӨS $yT6QeCLv 6HV] G0j*mEjc\ɣ)Eٕ<Pu ~MЦG8{]#)M2>jxٿ͞\6u֮}ďN(pJWkQHHR :<¬Pe�(_Rx8R,[FХƞS܍dU#}hm.s4t",;,13h6XK IiUzϡ((#,Vآ"q}^cFMQ4'SL{,v`:H2KԚ[qVd7KQXbhO hSq걩De;4[FKWӢ-JS< r5tcP]qPEJ2U8}[ZgYUFkyt}gh(Gw46]?K,8lzhix$vwҿ00Ĵ^nF۲l� y"I \,jZ Zr)$Kg6ֵMSeov/(]MNTn"yTU#yK�ɲ)Y$M #|7@ɑ EX(dxrQIme&&] +iW mvP/KE$e$F6Fֈ2Z#G%ϒ>g)L ei *ML*T,Xi6I%*f*Kᖟ69λJ G(X A^$ 6[sOm )j류 )ȩGHI' f탈왎ngLz65 .V5RFS,Z ׯpE%ɿ$~XCP&x2LQ ⥰*5sd.oM{' iT1cl~Sˑ|jmj `cX`ɞ|ѓXsUb%+u}AIʒs hU@6M@HY91 <e)2ac+9Bc#dIpmtat$X`^ŠuX\.�R4FJ-ؖK?i+H1s*B-V샔n&ͱT+G9L%uIY81eOSW`74Mxc8qddMudhI.N)2BB1}]RD3p'JQ㏫ₘfG!z�@G"MVa4@#SfEuHhyᵚ"3�$rwk1SD5Ǎɜ͒R6#l#R-i�YNOEU&"ž9'p�a4ti> kp|NEv }SωRk)8W˖%&Wy>\2S"WeZtPjYf�$z.9LQ, "vfMLF^ѐ B1R-w0m3NJd@p\vӕ(hk3GV4dh4j3Mr\sW3i:,Tˍɲ쟨x0;$؛9sĵRt#] !KysUElໝiS4YDx!c;H:"1tiXln~+tD`M иpqfOx=248pwGF893O<ڕARH%o(2Gi#kXJNO%hJ,h6HQr!hi�eD wTZA@�P9ZXH(0HMq#pdZ+6XZ v w.ZSG 2D]k(! ε:Ji͍b3~ɒk}7ZLn앝O%,}BTTHGo.e˲IL{Q_Q.\Q6yL@E,mCJд8qdVt%W +ݹ6ZEMi\]තYmq 8 :u Ii;+uUNi7�\JcTsvyӓ M+,).B˪/(-(M@ dYC0cA*0fТ5'<aOrM#y.Ifi:rO%'LM(H!9}⪑2��J4g$B.|IFBV RV=sMaefk p68S4G8(]G>儮Gk�pT=]nf"T2m)4lj$kc)C##ZD9#wM&9¨22V hNJgfFڕ#�.Y&og:dp+j u\dk"s N_i%Q.7<O;pI# y|F?1U<R"Ǘ02ETεlzCOD_X$D.Z]1-)!m6_E$˪1D24aX3$ym: -{(ۜrQD@9@\,h 6ra.IE4qN%!7%'"9){]jVM|, ЊJ/cjыdk5evfZ<9)DF͐LР@;.IKH5GU!3R%#ETѴ h-`pN):/x endstream endobj 7 0 obj << /Length 55 >> stream q q 595.28 0.0 0.0 842.1034 0.0 -0.1067 cm /I1 Do Q Q endstream endobj 8 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 7 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /XObject << /I1 6 0 R >> >> >> endobj 9 0 obj << /Length 303 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 192.5425 777.054 Td /F2.0 27 Tf <446f63756d656e74205469746c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 746.406 Td /F1.0 10.5 Tf <636f6e74656e742070616765> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 10 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 9 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 11 0 R /F1.0 15 0 R >> >> >> endobj 11 0 obj << /Type /Font /BaseFont /d1cd5c+NotoSerif-Bold /Subtype /TrueType /FontDescriptor 20 0 R /FirstChar 32 /LastChar 255 /Widths 22 0 R /ToUnicode 21 0 R >> endobj 12 0 obj [10 0 R /XYZ 0 758.37 null] endobj 13 0 obj << /Type /Names /Dests 14 0 R >> endobj 14 0 obj << /Names [(__anchor-top) 12 0 R] >> endobj 15 0 obj << /Type /Font /BaseFont /9954ec+NotoSerif /Subtype /TrueType /FontDescriptor 24 0 R /FirstChar 32 /LastChar 255 /Widths 26 0 R /ToUnicode 25 0 R >> endobj 16 0 obj << /Type /Outlines /Count 1 /First 17 0 R /Last 17 0 R >> endobj 17 0 obj << /Title <feff0044006f00630075006d0065006e00740020005400690074006c0065> /Parent 16 0 R /Count 0 /Dest [10 0 R /XYZ 0 841.89 null] >> endobj 18 0 obj << /Nums [0 << /P (i) >> 1 << /P (1) >>] >> endobj 19 0 obj << /Length1 7948 /Length 4635 /Filter [/FlateDecode] >> stream xY p[Օ>=I8q~츲%'OX%ۊd;RdK !i @xiC�03[ .3݅aXs;8 e:s{9s2�ȃ:P³c!o4[f"� (_y~1 nW"}@S@?^OW -9͛{=H<qk>tK_lw�Q�8 ј?z"Nտ([ԹqloB}Mm9�P?Q>Y旒 $�RgP w7p&<g뛰; pVPGzS)D}e6!I~@n>9O\ՖVpϿD~>:{Sw7r_H({]} k'3/_!RΝa(D+ ˸h^Xq~Xe⍄oeZnc7mZXU\yDXUje:EW�9h4I_(|P:+L\C6β+*\ɉHjo*#o]c?oXu?RUe~kJLޓ['>:جWo+ktW5˺j1WlEjSңV~%D_3Lgį$Uy6ۃ?s^>fmh*h8cs'Κ4cU5ܕm:>juuVjMKKk,%wⒹ)ɪb~rghpF:tLTPд_f359, eU{}/iW[S3M ų]U[uAQeSjBb,)jPWt9ޝu<k((w8w})Bjv쪳 Us~c})Ų&GOlMkD ek. q1s[S!F6׶/Zl-ͽP9F44D zؠ~%g*N1?cnj֭bn*SRzLj|cSPpSS #Be7h%OO,Ez da1mriG{T{%JͶ>@]cGRG~wWb;U"^$/-$*6{pwݳ/k+ f}KƮڢ e*^Me7+޺@~YYXSmwGjuYZfрC1~CԤn{7Ż&gJfe3*x<{ Ғ1T+GZ jS{ ԎToN+]d^-o1J]4 ([)L_q'\5P*8Nqb]}}] @N*A}s @>EǷ/_q_zVAtB7>NpH)]XqE6w Qw̏d[e~Uy2΃ ~# АRW@q% e\ %dDUPDr? *C2O 2FOdol(6x6lZd<=!P}&㹰[x*{d|A#= 2ǝT\6렌g;"D !l۸ID&&#<f&'A:qlg@C 0H`7FGavpaVQ~l(k/>0Fǡ$xȤp$?P+ܘ,0ۑ3̤G3O ]e=ؗ,dHXhk6Gj1}| cF*b`\ ycw šX8<Œ@^*w#a-x z'<'Zfz)/lބW L y'2B(Ԅ2(.1Hd&`5 [bG"cDtټo>si,2Of4$bf@[p1>143"(ʌyͲ  c)_0r ١L!?.Sh( 'gd<| qT _p:v}Q8ü#P#H͍&aya`< Na􆅊6pVmNFv 9NoP9}Hu mnkA4'&ſq!d&￵x$x? ĔwWB8] & FODca#S1a %J|e&ɀ:l7ӍЍ_f؎!fͷ)ަY`N#;c /cD;6K,6ΠQ*!ۗeuNاT؉!o`[J<u/}x!jc3dG{/CeѪwb=c;2luL+ Ȓٜ1vBSNK/;Ѧ閉EYbH\OH7遰 /b6L6e7)4Eb7q\ y]&f$t8Nc2?y͞Դ|jvTi."W=f EO 1'XKX8 D^Śc&b1 f,,*kyzXJiMTܰf\z=6]#mDb2ekQh> +RZ J&+6l2UeMԈg1< ʱp8_(i>Ve,b ]Ú. C_ƒy XbQ5(ƶغaKHy|Jldp# ?왝=6+^<{m6\ٜ΋md ~uX{pd5MW?$|zsv챳kgUμz^3=9}ӊ5k5OO?yOG499y$ 'H'.<'3'H'ȅD8Ayk=gop?N:JGG#G$kIU,E\ּ1qa_7n;S +q \?_yg$:2=wyCCuph8h0iD0撆k\\8WA0]L9634{e{9$T$޵5Cȣ= =&K{$v3mL1x]<�{qȀqreS&2/U"f4b!2ƧX�r޾gnhoneM ̦ښ Ub0_YR)<:.vz#)*ZJ^�oRRI06a)9of8 D+@Km`](#\?j݂)JF! ^ vso iPLnNϩ\bO FgȆmu -3\U+'6^ﮭqH+E&RRuHYLaa|9-z+|ϻ%^RQmR}/fTj*4hE!9+K ρv;ѽd(t&=I(h̊ɨ= .u.uRyv$)Uo<t}Ӆ>gQ$WWhk`5#Gtqva4=t V~Ӌɂ|fZIYnY'`)I-#V~i>աYD1T]{@ jknc&Cmرzg8m,|YJbB<YŦӤ <c,lQ͂=IsFr##�FGpzAS ԃFw`Vړ.߸TpW .^Q[t4)ћ՗4=N:\=Ng`kltfS7]LOImP .NǻQЉk)ˠƢ0u{ z͐&QzP%Myi*Jnޭ<5 b xj ơQP ./ŀ Y]tm=,"3X|-9 z'3Nns.F/7 ;懅Zq&pQhy>]h3q< `Zt蘱 >#C3Vrȹ@84z#\=\ x0()!PJDBu[٨;Gay9.i11E2>�zyHz4ǡ_"q:A6C8 )GKb;[)ޚU Ť澤.~^RKj+"U0<|wH_a3.ԩLfTVϗ?e4vCS[Ih#M7b=) UwEܑoe(pۡ(_ OQUaj_M)+TBNC{\(!ˆYp;(6 WVqkસ7G+$5 endstream endobj 20 0 obj << /Type /FontDescriptor /FontName /d1cd5c+NotoSerif-Bold /FontFile2 19 0 R /FontBBox [-212 -250 1306 1058] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 21 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 22 0 obj [259 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 767 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 652 600 600 600 600 600 600 600 600 600 600 600 600 600 600 526 600 570 600 600 600 352 600 600 352 985 666 612 600 600 600 600 404 666 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600] endobj 23 0 obj << /Length1 7792 /Length 4796 /Filter [/FlateDecode] >> stream xY P[יϽz0F`l8⚗c 0lז@ " v5i6v]M6$6fIIζtimY;>:6LBlk{sΕ��|(3mF�d>>vd.6 گ蝨S2;:U:~kgg:ʋ(o ~G{;>=xoǒ)x| м<nA@V � OxBv�;~PAΦ)+�@>Vu{/U~%%tz9WKiݓWR=@sZh[VBt/zL/s]S9 Љ14}XTY WVt;ʅBs[kQ -;;Ik]  }+?((oԭNׂG?J~� :yDhmklm(hr=ʂ RV3z* ]sho*B5Ϭ&sW9)6kOMyvy䰩e1׶ұG$g̝yp޶ƉW>#[%n.k`#JފÉFf@yk7'#obKg=LtʄPw zx=$-h7 㞯>٦歺-Jp5A3,RBv:}v@{a<~"FYomك.3EFuET#uÖ:-RO嗗o1YLEˏ,Vu=so~w{Zjvzݎ͍BU}{++ʍ=W>=}t:mS;E)0xCۂ𾣭$zB}n#S;~YS}u_``sdK^QS7 CiUᝎ}RqLyG'uA`}#UV>B>V_sp-,W_(kX*udK{MgM*ONtxmf mن]__gtnmlȝgjSݫ# 嘦m31饽)T"Mc=]+Wr{N8p?˅իy0JX⥅mmx̩8^g9͖ǣJ6eDuɝ=& ubul֭B]ǟ-1;m5n!ņMmvo{>v=/qn|ϖV{Qݶ27v0mN}1ZsMךu ZT`\qTԊR\lxKa{ҡxtUR_!]~ֺ_xq\ 23/yQ8%0-yL]>=gco@ ;r VGP·ur$^|&mC8<7h4?#SGSW&?@ F4@L;< N]dm0\ȳWB6 Y4;;pۇ\>̗Q/F*#qp-a},N'U\oU\3貊Pmk lRq UŵOZU\ Ku`"JQu"T�䊊`;Y(P*U<~υ#)σ */J&χvqX7o>yS `~N E`O,~:MM;ho,63'蔝v1֔crRNv4$ 30 ) |k’B/~رօ>{%$SFX>KŨWNDayRxSL6=&,̅ , abXtMD3r�4Zi _K xamɄHFbQdo M"Ƣ ;c=-qIM%Bay>8Ac7;"?!SB@,|[Ŀ wwLˡ;vP yW(h D/iNΒԎ!ddSV)p;(Lvo#쳩T3ܽؼcFN9А_ )p qcGiGgĐʁu8n"W'铩p$ 1f,'MQol:uw(!|L$zr!45+So Ѭ`V~Mvzgp$JD&0F5CQZJӃ}þqzklkhcgx??<v @4'AS*",ɶXv&ɸ<LѹPtf!4ˉHMJ4󟏤B).Nʉ(Kӱ]@&\BߚsrV]D_l0 l!lS(GfmaYVr]/A|�Foa;m M<$ZRrxY`/)tsI̎X3u|drcXnw[0.ޣ׳mA�tVe)L$11(f'b$L-kR~&DKs_E$/υH $]'O#mXPmnƩ? kRr*ddK8=mI yvn>gdx<1cgG7l9{~ |ho";X1cF8TH"yK3[&$�֑OɐbʐՑ 1GW j'Y`B@=XbD�|$uNCYIr9p=J a$zporuȣɞ׺jP�X>kcI WqD\ad32"&|8|B".K=]r= ׌׈y\#YCDLŷb~|6'STSBO'8?&>d$_DȍKKA^".|/^y^q1sQdaA0TT»&+RL^С/ϐkӹ<Csa1]}>-AY(:z'#bowwwç\zs+zK6[|%žBb>zQ4^1018 / `K,ǖƽ6>36G+aJ!ECK<x.PvxJ,0dEʖJ;L&S6~䱤6H!I[5ϨZX8$GGQ EV<ǐc;lLƆK$6%mtqЁ}ٱ}o۞ݻv65: 5UۤJkEd,ؐcX<ATMd)@& ;UGAFotmάs]h;7SD$L~%uM56`b.uQ[M.[z܆zXj֔Z)Dj;% ذXQeZ JM)]4LsteLma):WMt!ЦI.KqR/܊3DV$�wĠ[L�zнGt0Z,NJ$q7zFk9ss>Mh_<t6uJka`Mg䓚@Zl疝08l N-AZK,wJ?hÒ}|.,Nb>gLJ,V)q.Eh-)Ką_eYpt4-R$ J-q\.8CjK b".>!ԽOf;.j7ܣ@pJ8.62uYn\Hw>0QFBsR ]3@ňKz0ixZZ¸*bUH~9Yw Mrg?FwFg}di0=C@EԃKE_eۄ(KvszMP[vzLTRoMDXP/`3U& w {)*Kf1Q:~tM`59S,7;Ww[sZ3MoK*! tw.e a`I/9,[XrдNK^;^6F  u/I%'y{ ><,'XچmW)C4[^u,V <l3a,fZ4Y1vaJgǸ׻iӁt0rJ#G"uw%"\IVnw23 %L>(m`?&Xоέ?j\;^7Ǽ> p?; ? (<_g1~nM}.x?/:F4<�Hn:VHpV" '@T{5|OĖ-<*m�c<+Gn# 'ati_sP+cpZ{:]S3ýs_iA0 YW-^!]^a"EܚBP'|EXܕ # endstream endobj 24 0 obj << /Type /FontDescriptor /FontName /9954ec+NotoSerif /FontFile2 23 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 25 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 26 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 562 500 492 500 535 500 538 500 500 500 500 500 500 645 577 613 500 500 500 352 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 27 0000000000 65535 f 0000000015 00000 n 0000000264 00000 n 0000000466 00000 n 0000000530 00000 n 0000000581 00000 n 0000000853 00000 n 0000022503 00000 n 0000022608 00000 n 0000022905 00000 n 0000023259 00000 n 0000023570 00000 n 0000023740 00000 n 0000023784 00000 n 0000023833 00000 n 0000023886 00000 n 0000024051 00000 n 0000024125 00000 n 0000024275 00000 n 0000024335 00000 n 0000029060 00000 n 0000029279 00000 n 0000030641 00000 n 0000031555 00000 n 0000036441 00000 n 0000036655 00000 n 0000038017 00000 n trailer << /Size 27 /Root 2 0 R /Info 1 0 R >> startxref 38931 %%EOF ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/cover-page-front-cover-image-fill.pdf���������������������0000664�0000000�0000000�00000100271�14163570564�0027446�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Document Title) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20190917005902-06'00') /CreationDate (D:20190917005902-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 15 0 R /Outlines 17 0 R /PageLabels 19 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 792.0] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 3 /Kids [7 0 R 10 0 R 13 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 612.0 792.0] /CropBox [0 0 612.0 792.0] /BleedBox [0 0 612.0 792.0] /TrimBox [0 0 612.0 792.0] /ArtBox [0 0 612.0 792.0] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 47 >> stream q q 612.0 0.0 0.0 792.0 0.0 0.0 cm /I1 Do Q Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 612.0 792.0] /CropBox [0 0 612.0 792.0] /BleedBox [0 0 612.0 792.0] /TrimBox [0 0 612.0 792.0] /ArtBox [0 0 612.0 792.0] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /XObject << /I1 8 0 R >> >> >> endobj 8 0 obj << /Type /XObject /Subtype /Image /ColorSpace /DeviceRGB /BitsPerComponent 8 /Width 287 /Height 406 /Length 21479 /Filter [/DCTDecode] >> stream �JFIF�^^���C�    $.' ",#(7),01444'9=82<.342�C  2!!22222222222222222222222222222222222222222222222222�����������������A����!1AQ"a2q#BR$3br%CSdᢲ�������������4������!1"AQ2aq#B$R� ��?�V|B-!L, hIمL$ Vf jƑЕC .#Y`tu!gIrT'dX-746+cB} 0$!=�`4ېVƘ=7D 11P7 $&!PYSLD=eBlK-be&) N7@IcC2B'@x<�f & V!,qIȖ l+Yt"G41 ԀF�eD4Ɛ}C`T +C` *edJ)=`Fub:)^Af9h '*%J 48V V жD0ªE�#E(`'%7:2Y,R!kVASHI2@ K�vPP.xiƭ *@ &y#�] ZIS4G00{c6į(LH{]4ҴL2[JlI9H jhcT{V!j=X)o$@ĺP<X!XHah8@!)�P0NYej(((bʼn5�;,R蘀:D=/ <ExvyR%isӲricÓഊa%j�10)lK@{o2B[e!Z0!�U�&0}Vl#y& L&!�/j�]B�. } ?`9e ܠnCCAb@7zLpuդ; DvD5hXC1-@ꡀ��W:X PT&"hC%B<9K>efp@ x@B�!! -@ 1�7@1'`U8F7eH@[%Z@6C ҴH*LJ\ 6V3En(lR `z4@q B~RR rBk*`eCx(Q`xX %M )X&R�iϺ拡 i#h :8)V�V*0ZKcJ/P =RLMS<iL�$ۤ^8K$ qUJ}6WҌoa6An<1rϬxF<1ݙnsj%2&՞K\R磨%9knv"?U͞<>W4E+rбG91P 2`xȱ�.! .PCw)baCU Lt8$*2aFcU$3r JMPRI@ Yhpv"Har�vQAw; sq�G=^!}eQ`wx}v[gx>aK�&@nPw&g%ɳ,{U4�,2~\\͈\\F,8c( � r4CȡQ: M!PACQAFT*0:ʒ ܆@W9inʴ0]3eNʢEϫo7bCvWtui4P_U<aY7 6kYĎ~xQG/ܟC3cGTSoG\c�6ApRQèWTɵ(x<ZYC0Œ=7eʦ#뚗;sQ;E4uG${nI'$Y_ArT."~,]Y)m�j7O:8X8 !{BiMTkR�"xCBPt:2 *  Tctr 2R@3ź=-Ȑ/IoTBn xzezQAsS&�WN>1 dtbuě AsHe;z=&J:!cK6Tq˭{iqlLȻ�mU1l t'$ަ|+S \ ~\} rpN}X g5x-8qixډ[3};1]GҚS0Qj&Za?E{x1|G5:z_⇓'lhcMVOT x=.L)ױeFBĠ@EašۢG9&@˒tU$лP4c=x>ʒ�N1Dr49:�QH lE!*9I_fy@t_�3 &#i4U̐�C]{sGtLE| g63x^^$,x> ܜ][{#RIukGuܔI"(#c/%ZsvVyib9;.6Sj$ILkfyh~`i<Q #<WL%+MkJ< 1.@0 `nR; hCvSZEYLĹHH$Khq9:%N3]Lnz*-s0vuǴm] �Q?*;z-g^( 9d'Eqg)u*}2n`R#'Ro#m4H`JΖ#HwJ{]# \`6�V8~Z!g}y9vwǢ;G0|dbw]˺5|+{/ٲ ޷S,ؾ&_NN.CDsԲA9!X'=;zLPn( q*V<hv900)h730f;Fьb(pvP߄�QH." Ah] sVM]S'ٲ3vØ╄r7r{:jO ydwgXAvF,it.l8/oTٌZ{ (}@P4( ,+! b*e3ҹ}Bmg/$Dᘅl4K", )nEZ(#�KUcl<]CNR&0.u!T�Q5o@ܐB]O~m}?ds�ᘉb�*Lo_Þ,J[Lds L?�ۉE?Sg>f8| AKmܤE!NI#].D{fnJdklf{zVK&\T" c(=HZFCuh� Fp hBQC@iE\Hx!P0]H(XڴZϼ.u#mBŪI.?o_l>C$�ͦEOP,G*U# u#A"3|=dY&'T,04]#H<P%n2ݺ<\5< Bjuh#NNGQ<ͳVtϓ< *IcgJ4駕Fny "ImG|zz5swjMGs;25qgG2ӔAAZ$;H"N41#�.TsE,nI40wR0ƚ@\6'* qRH l@2r1˧ˋ" Ӵa7P9>џN%Y=lu8}~E'q�4 6S#8i9L oɞV $k PH #xykGRfK$Sb@*!uc!.'L- =e>Os\WQ4Bʏ,ЕzȢYPi]QQ c�85駨/ss%I퍾?:^R>Iǧ?U<Z4;B~W(52|B*Er��wTItPMT1l�t"<IF=JddS8na|" }^xjx̙Io#Uɵhfkdow,z6~\i8�!iIBA0xE9%Hb Xl[ic t+C?̳ᒎK`AUU4 {W&t9m'\!^f<tLNӤ%(l c~iuvFLN_o̙dP8B* LG7uDy߲ϯY^?g$M{%OCqL:}[N"dps\^[|l/$;yO x?̟7 N%ma>.&۶�tn}l^MKѴy G[Pn.Ǜ\�bNLsIt~Cdpz[quv=;WբO{|%'HV �֋ mS29JmfgĚ;_lf�:iT�v4Vrbw4V\'ھYTje$to [$,8qjsZ2J}#tpu(#1ӂ{�Fy W7Ӹ^/<(EV>( )-԰섀sE@<Y�&kaT.֧ 1G=e` [w^lz#FPic{7#qN\#G#y񐡛.UVtR :SX0w~+zJ*ޟ6U_4aB[c/ ޚ﷗f+WmLzdrO%|ބ8 ŋTrnoW,lLEOlU 8m[JשϚkuMk8{WhmM<,Y3b,8ŹE~eŴunV `| %OLQ�/KդG[ƨ]h 6'�Y8%{Yoݙ*�M&ZIB7 gX |/A뿈s�ǩߓf4CM]6!4;OvSokwaA=^O]$TWq_q5laߠV]. +8F\*I ಕ4܌ʫe&)<G8R.v֋ɤěn%*u_Spui^;ş>Gz.\揕}FH<R) $v0ѿ)!wl$#c\A3׺@@pւy C$:sQ~N+]gߤӂ8dι+H#:s]jFMHa}Ӓ>|�Pu;4'- An \EFa4e>D$rJ,!K|)I:ͷTOUL+]ڎ 2+s勮kc{2d/gK|-VSn.�酖rWܟ$5nQ;tX#q`A8>e7c旽fPűǤEOQNcLo2\~+/X-s犪dc(ם_Mٟ>my5^BQOO(:J")6I{1$|~,O|޸/t69In,t34 Bc%q平_'6a%+H%- *B i5sfFnH@c= ǫ)=w_s~w-m!%5% f~J4wڦu f`dCB%R iȟ+IX%7HCZI%H5N]jMioGv%:Vqk+O:mƵ�5rgNMH(qeiLa vU`R.eAr g!6(6HŒ C ko>> ͅ0iB5G-_c\<3 ‰:�w#0=D] R6@Rc%Lq�ҹй&&0d˒Gev6eMG*$ :Y ff> '+,$fs YH׹6k6n/_=S?^2ڌ t¢Z�MtoH&l 8~v^%SKkQq-XCLbhٸ^saaaӷ(_4sDmVM_g;@Zzn|d/5;4Y o?J ? {Drn#` ܹ_ʣTNY;mi=Lt> 2M.̒l.zf2l[gM}62SgjT4e,gFZܓԻ ;=AOY!=AI|�HTTp2$ml�+fi <U  #IGG4&�3ujrn]쪀u@ aʄUnr . Je ,ܐ7@CR�Д bYEm$->4ÖXr,ZimOŒ9qS(sH-A-[3x$S?-͊ C- (13<6�G{)<ۗ&O8Khdp|S/cbE ˟Gm<okji\Z6hq&|m^?3�>KIp? V 8diORK]1mkߕ%m?y4qQfqp;m$`;x~^1ߪ|GqPJ&Ӹ3F#wH]Mdps7 [se uY~.n!QqEىV3[6�3-|�U&ttA=*&c 7;NE|)ZvrkjIH]@Ksl8ۄy�{ŏzm}^!))j"|IQU)kq.9ؓ٣F*ߢKbL8q^(z ѱ`v ;=Ola.stѴXnl;zE9>;<BZm_%*-4"SNɌ\+N."',hV)SM6hp}TJ+IdH&S [?+\F?)=$z?#>8+i!}Z$i~ L[tӢhv$Mz~*؃mX̗$K3e'c;"#*'/pN9b|WO yeҊ\5xҴ<mfR@cגyyU˂]{Ϫu-L׵= 7Ϩv{w1c=6<۞]EO)d|(BՔQ\E,YN͉;+{*ahc[Wn=o׿t2f߅ E{l`|=8Ã/y:̎^X'GK M:NCORGJ@7i`kA>| _v6yYiMd-qo9r+äᒒ/z:^@i5!9=53Yx4]c[EEMSDy.wĮyM-^.W7Ǣ$<#l$T7&QےD׎ *@y -$ASV9 |'N˽V8 ;_Z劫DesHk!6Ϗ Wö؜ᔟ5}sm^۲AOOQ٥gҺTpL.>3{)܏OxeE_"�Gi7#~Bb<p9�Nj*9Vrn0�8oTe>qT9&Vվ&?W<󊏻 )Ov]|PrKC J�,6WY1m:^._:&NtDw0I8`/Mr%:᪂�CCROWת.S=c{yqw+ٗAXW KzidY QӨڦKQI=[ yr<7 *H]mBw;~rc]g^M+JΆ: &Z袞Q#^Z0c=ӭ\z}ܲdV@umKB1UU-jpǒ;n G+~WOS.Ѹ:*Y8|.q^sti%Ê/T#8W}~m:Cg{1&^|Oj{8?GY'^y|+W/4Z 6|bnA#-�@Bcx3 %d"k%LP1 `dIN'p7IkRJ\ AumaB&*Q;DVkN_L�?n 鲂%֟|(QEޣ[; hm-]T<%2:Vnlgs}NEMUwR>GQp'h眛#=8 D;,h$oZ&9űh`zᨪm$N6|iv)d[`n6pViM<x}L 9伉hu::Qc5Q4Jhik$y3;7yn(6t߷:cG4PjMS%TA<l?X vd{}n]!QO}Fi$˃$Wэo4 if*X} r*]6PMsKTvDjZn 7Z<ܧEM5UBIkn{d<l:|>68lqKFk|2uՍ}O_'FKvdTnA;n0Xʱd: pdѩ“Vh"s~*\2̓uYbh5zƲ9PG#e,)o7=?+�R9PQꁎ3-tk!Ęʢˬ%SJn.H40? 6ֽUu**K07Qn 53+qa, [DبuN]4d?"FwǛJ Vi۳I* 5ՓjOs�*>bǍRD767`L!=�B2͗ 6:>sO{>#R%k8^ݕVl6ʙҫveѺVio�uY#'6<Xm>Vjۧ>AN0zI˶9d˒^WHAq)b&{< k^$4t6꼔aUPum&efUPro.~_PX&ܺ_ff6cXrjvo2#{݋Y疅I8I?xanQ~C$p=Xls�B Gl?+ ,+g ?U*cL�~T>.=R&ؗ>T D_`ݟNJmbEq3e8O.e/4{<?՚[񪗷}Hc<tϙ\[dRq)%9!~ %LVwqn5H'+GC �ۑN[3c.khY _r^dŗkpY9k7KopvI*es2pۑ?pBS�*>m33*cC  414dLz]; TC#dWܕKRr6dGW麌5Mc$t.ּ(Śx*)uD|~3^~W,jY^]*QGM%Ζ 9~etO9I�2Ђld澺ZQ:S,H.nmc6G1 Ȅp(֬S%ҀER\��h 㝕&M˭3\0 v-{Xÿ0,E21S/eDm6�Z9ǵ!c|i<u/+Yex(dYr@Y9/DX9ke&PUHZ *Ѣ&YQ/dQJ6fu dq�yrvZ:5 -5Ze kK@]tdB˓U-6CVctZu cj>fP>`FY3E͂ ۾E U{ q81}HM9U4|B+Xh##$ÀSE`>}POzzᡩ]F_kn;cO9B.J~! v1ߒvv{͢׸AG=h s퐝K7; p.֑p*I 7=UR!ƿqqs 78UDmE5^$|0~mo쌒4+zwCBe|clT4H s|^'C&2YӛPô!Wj`yeÛtΤG|pZ鮊 Ya3fG7kہSF_ Gۋ*dCV:m9q9k#n|U~ �:=R=:N@$yh$ᣪ{`9Ԡɫ`]03ۺA9敔zt%/Vc${ԄXl,Qd(S L邠r#t'6�D uFA5ōh-,=-0EXF r*4\#O2`u;dB ƒ5fEG J4m[ ,R3<d(c.z\ $c*kb-c,%岗 d )c7$n)2evB&"{hOIp0-1x+xP)`iƟkTKߪ=Y=/|=0IhsGW`~c_%0&ĵLdsHi ӣ4؎cvj$]Axv)Cr#KK +!I9&' <[_Hi hB q0&a<FTI{%֕e9]U9c/ؠt 7 qa�䒶\p}Yk> ?49SO+Sl<^6nMFKee9嵺\%$+(9I�BBHU8oR=V$#7ꕰYmrhֶq$lFяFֵ?j i>k̍!+x{{x6 Y .l X)JD:&$LVыG<EX:QTyc>7"\9*49T2ס<]R`)q&`n.<bv#A$� ' ڊYRo{糯sdΗ< wEy4]wĖjy^ݳ¸W+iP�j_Ad / ^4J ,Fx�/2\Ώ mh >bmmըH3"#\B�Z}5j~3+l6O,sZ.%C�)zv>0sJDŽc^r Y|b:VGN'0GeF\kL!ǢPuAB+0>PD'4[GCAאAs[y*j*#>6QQrQlon\nTmeRFgCڋnѤ=>P{VeJZ>#9{9RgVų[_}s/p]^QN_Ye$qg1hIG^r%qd֤G,Q:F'yj5<ϸ"9UL{$\2{'+F}DeY#gK MIZ>KǟY 3H,)-Ƚ82TN1c{{0U0xnߢCQ;#VPfpVnv×}RweXhէMI!oi BG6OK}g` kc`.J 4e|pBepllisy�Z!j#[]l\E�#3`y:R,T<I~<Ln{�+.X'nV\8f Y,ΑttLKLDfn8ԅ^ d|#L0lӸIfuƞ1,>.U~]-HǑqZ%dN{Q8j:xZ1;'&�yy,h%γX/A%k!y+.hHtM¢>3i\IUs!EUQBڨ-+C˸]d:gɂ[<1qI~Ws2=/'esI0gtonq 0F}y+HhdmЄ5QrDb):{&hSwǪt*{ $+#pUK]�v2C.C!u<dvu٩],p90*2)uLVh�Z!Wo >?lo7~5\ja>θn=n(W>赛5cdle\^ݢԐ?N'܆:  ESEnEzC4fOi.yzX(=J'ɝ�!|sIoUc|镔t4Y]`;-TEtf{n=M3ɹ٤kaWdn&Yجq]kFF9Tk7Cd%ɎEN06)CAe7M3Z󈯅hQ8rI$Gb$X7LD(>x`lo MtμZD~YڨÛs/7 [R= ''n<Ȓy%.kq�{,?bmiTˋU@\%D4,~JLn i ; ;H,c; "˞s]6�4  H8Y!q'*DH`+Dj>+]+ְ]ג)> k оY*vmsZ#mǼ-&uQTjH%#}9MEu<"Bd,x>!6�snre Gq8~$ԓGFڀ*lvDfM&3X-fZhhl>s|B,7Gv<ԩ>rkKGNQA.13{ П3-7ZҨ+uWlNv.y� $V Kiϵ]0; 괊Fpo8|QR�TeZ  {Y%[ڍeRpKV; Gz.Je'E1m,}I<m˰pD8 H[ڧ;Ķ@T4]qgM o5( { umR5j<ݣo'?`o|XqNǕwjT:{[ X<i.Rx3ÑO\+S&HWC$}x<?^3>vV︊:<p6 M S8$)g 髖-Jaac?wC޾}OXߝ7\>@c†�l`۩`u"Cw&1nk)8i2[GwkL|4ҵJw#]K_le. lqCFvA\?s{e?K] ;_@t1# ݒĭ~#́תKK>03Ɂ#sȄoF&ױ&B<xob9p-!V!#+K uows,cvcl؂;uvixKBv<g!9R+,D@65h\c2K1^,UͨVP^t1Ldn5.<DT詋A>;)HmmhmMrcu6]6{m�  }PXjy䥐><uS9Ak#Í,ZO$8Xn l%Q|uZN!+F$spՏqˉ>K,\_m1.ӥv�x}^�ĺ:VD[�}`VY|N)mĿ2ǥ~M:I@�`śz>NMo`V͈Cb𡱁!H ڀ<\DIcVʁ463v+6#h�/ f l5tִߟ4 T|rL^ qS]W%IIw6�?ukq7�d쩒YU-|p �| ,Jٺָ{CfGN�2+W.9+82O|df8L qJSNKD]c)y@ı%O8o@VB$@�Cnٴ!|*y4.rQ$4jEٓ'à*?pOEh*4GT[M"܆Lߢbh?qmeZRMV$u0(!HsF۬L6�ݥbXx$�^7e$` lb@+FV�25Aa~n.-H18>+7}$`i Lr 䤨㖝w;�vj $4"9<Z6~ܑ? vt^ ֍^g:r/\>Khn/e X/j`UaA 'aD\ox=d+ i!qIYIMž [MI=tt}zp\1V%"NS/!&4]4aN<dE2 2ޕ v4UW.|Ѫ*/?m1QE2C!$\Bc�v^ !qTq]/hF[p+40TJxBxo Ck�mm%-@ g;Y٧PQ%tz4[8#Rl\+;)89+7UgUQ=[w1#K]g=̵vQ9�Fw]tFj]v:f67<3E=Q6ng-M=K`8Xȱǎ-GYXƆrP@զ*�,tykaC,(՝B{$C9Y(c ʚ2FN@[F;2cQVt)00ֳapMBIsLk)a�ҹ~>2l+uαTaa㭥^9^W _:XP ƥaDzCpNˉ*)C\2flDFEÇipy.@̽v/huPrA3I  ZC+@mia<B6]1|2+e6*fԂZ*ayaP%HK}b�Iƨ p HkQ6̲1i /Ak]&Q;`fOeю5|q{+ \6ttj l70\3sgGku(,&' |j@v*\F_ȼ7z +tPi\kHӪG\ƭl)tH"`1qY\i4ZiboKd"Ip~�ZD$۽7HX뢢jY}#f.2#5ϊ@Vt45-uԐ;p7U8,TRبnHїL qEl0&@)5'C5{."lVc|MOubjBfF^[.JDHdtzRd8?5<e,|o۠]v^,q`Ը-|g`$:14m?z:`-֟G,vF)}Nx h80/0FnyC A'iH/OAqɻʌJ4D8lW"tsӧ VѱF@WăZdS-)gB1pɎ=if+<}>:in}@ύB6PqN|=?X0rΈc[gO4xidXmV$a)2O Y6@-2o D {qcZ` KdHn['NΡ 78_FzN'ap84HMSD>QmipSU#McM\M+ba DdEYFuԪdbhV\JpCCS' hH:YU\h `�VQ%Bht@e|ռ9O!t4lY2f/.:* B֭c>uS v4va;@v=;=y%wQB"k@`q~&=ok,DIzY# +fɺ=Qu(lH욒ԨOk�{wh}ՠ9p^D.}U]6L@dqto j s5hkv\x,$jxua>,A)SqmhxQio!%.Rd7qa8SqELO#eN\/mRŠjyE�0dR,GZϼ7߸N8E7eVs1�Œ`הO__ ]mWrWFJ0%mqȄrlZda(Hhȱ9 c. \A597(bvh H)L(3ZFVʉz(bߍu͔*6w^8͖кDįiϞ[`ι5i3_Mp<6rH)ə-SQew+@΄Qx+F[�깲'7`Yi⮅ٲ-ʄ՜cM :-1tY k]$lഄ4NWA|-6טӣݼUǓRͻK;qsuȥ,ι#^5Tc)A\6+c,@J4L f\UlKEh.:V)"ke,Q*6c&]Zscq!$A(8c)tXv׌9:~`hd`8[E\H&�Set 0چWHtwQ UvWN@ZXQ 'IHh-JY킷ěe؉hϪ:-īO;뮨ѯu8& |M&y/<UũRF'FOb.T+uiSST ZwW7HdMl%$)`{KO"'>)cp},2F%ch1*KY3Os Cٕ8cDŋՅoǢ!eՕN3c}TE9# Զgop38W�`E/ Dݷ_Zl 4}$IF@5�)WLLJzp{3UкmYˆHX+ .IeM^ '2s\dp& G;9Z:LM4EֲHsEW$ӽ} ^'.ʪlq {%KlӨS $yT6QeCLv 6HV] G0j*mEjc\ɣ)Eٕ<Pu ~MЦG8{]#)M2>jxٿ͞\6u֮}ďN(pJWkQHHR :<¬Pe�(_Rx8R,[FХƞS܍dU#}hm.s4t",;,13h6XK IiUzϡ((#,Vآ"q}^cFMQ4'SL{,v`:H2KԚ[qVd7KQXbhO hSq걩De;4[FKWӢ-JS< r5tcP]qPEJ2U8}[ZgYUFkyt}gh(Gw46]?K,8lzhix$vwҿ00Ĵ^nF۲l� y"I \,jZ Zr)$Kg6ֵMSeov/(]MNTn"yTU#yK�ɲ)Y$M #|7@ɑ EX(dxrQIme&&] +iW mvP/KE$e$F6Fֈ2Z#G%ϒ>g)L ei *ML*T,Xi6I%*f*Kᖟ69λJ G(X A^$ 6[sOm )j류 )ȩGHI' f탈왎ngLz65 .V5RFS,Z ׯpE%ɿ$~XCP&x2LQ ⥰*5sd.oM{' iT1cl~Sˑ|jmj `cX`ɞ|ѓXsUb%+u}AIʒs hU@6M@HY91 <e)2ac+9Bc#dIpmtat$X`^ŠuX\.�R4FJ-ؖK?i+H1s*B-V샔n&ͱT+G9L%uIY81eOSW`74Mxc8qddMudhI.N)2BB1}]RD3p'JQ㏫ₘfG!z�@G"MVa4@#SfEuHhyᵚ"3�$rwk1SD5Ǎɜ͒R6#l#R-i�YNOEU&"ž9'p�a4ti> kp|NEv }SωRk)8W˖%&Wy>\2S"WeZtPjYf�$z.9LQ, "vfMLF^ѐ B1R-w0m3NJd@p\vӕ(hk3GV4dh4j3Mr\sW3i:,Tˍɲ쟨x0;$؛9sĵRt#] !KysUElໝiS4YDx!c;H:"1tiXln~+tD`M иpqfOx=248pwGF893O<ڕARH%o(2Gi#kXJNO%hJ,h6HQr!hi�eD wTZA@�P9ZXH(0HMq#pdZ+6XZ v w.ZSG 2D]k(! ε:Ji͍b3~ɒk}7ZLn앝O%,}BTTHGo.e˲IL{Q_Q.\Q6yL@E,mCJд8qdVt%W +ݹ6ZEMi\]තYmq 8 :u Ii;+uUNi7�\JcTsvyӓ M+,).B˪/(-(M@ dYC0cA*0fТ5'<aOrM#y.Ifi:rO%'LM(H!9}⪑2��J4g$B.|IFBV RV=sMaefk p68S4G8(]G>儮Gk�pT=]nf"T2m)4lj$kc)C##ZD9#wM&9¨22V hNJgfFڕ#�.Y&og:dp+j u\dk"s N_i%Q.7<O;pI# y|F?1U<R"Ǘ02ETεlzCOD_X$D.Z]1-)!m6_E$˪1D24aX3$ym: -{(ۜrQD@9@\,h 6ra.IE4qN%!7%'"9){]jVM|, ЊJ/cjыdk5evfZ<9)DF͐LР@;.IKH5GU!3R%#ETѴ h-`pN):/x endstream endobj 9 0 obj << /Length 169 >> stream q /DeviceRGB cs 0.6 0.6 0.6 scn /DeviceRGB CS 0.6 0.6 0.6 SCN BT 366.849 339.246 Td /F1.0 27 Tf <446f63756d656e74205469746c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 10 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 612.0 792.0] /CropBox [0 0 612.0 792.0] /BleedBox [0 0 612.0 792.0] /TrimBox [0 0 612.0 792.0] /ArtBox [0 0 612.0 792.0] /Contents 9 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R >> >> >> endobj 11 0 obj << /Type /Font /BaseFont /c521a3+NotoSerif /Subtype /TrueType /FontDescriptor 21 0 R /FirstChar 32 /LastChar 255 /Widths 23 0 R /ToUnicode 22 0 R >> endobj 12 0 obj << /Length 165 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 744.036 Td /F1.0 10.5 Tf <636f6e74656e742070616765> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 13 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 612.0 792.0] /CropBox [0 0 612.0 792.0] /BleedBox [0 0 612.0 792.0] /TrimBox [0 0 612.0 792.0] /ArtBox [0 0 612.0 792.0] /Contents 12 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R >> >> >> endobj 14 0 obj [13 0 R /XYZ 0 792.0 null] endobj 15 0 obj << /Type /Names /Dests 16 0 R >> endobj 16 0 obj << /Names [(__anchor-top) 14 0 R] >> endobj 17 0 obj << /Type /Outlines /Count 1 /First 18 0 R /Last 18 0 R >> endobj 18 0 obj << /Title <feff0044006f00630075006d0065006e00740020005400690074006c0065> /Parent 17 0 R /Count 0 /Dest [10 0 R /XYZ 0 792.0 null] >> endobj 19 0 obj << /Nums [0 << /P (i) >> 1 << /P (ii) >> 2 << /P (1) >>] >> endobj 20 0 obj << /Length1 8644 /Length 5308 /Filter [/FlateDecode] >> stream xY}pSו?=I?%c O~ےllc0mI_Hd[`KBIfC!M2 ۦi4l'%iMgff;lfBf)lt)ܫgc}8{syW2�H*P_$uCE3"? &Mo%o�q_fFG©v¿ SSGHқf|GykH NOHMC dEz鶐o& 俞y�ݿH4̙n3@6;'"3o7�z7@RGS�VC�#*,Ak QIFSRp+ =LO(_Bœ�j2EL_hB|1܃|PqD4ln2k\3n'Hf* ?Ws&sTŞkp||wr$fOteߜ#դz24wp]Hm'+ˊY,WвlxTHݗx0+]qj(HIXoR:nʞ5Eb21D2,\*ٜegʚXhj:1 ,h{WY8;zjԒ_]Z)4vf]UWJ{HwoiT ew8TQm)~dl񽊭#REgm^/=:R"́kymdZT"BM7>d286§#_YNX֖nk_Uě?{ u U#E/}'o n[Ef'L UIF\hQ1[Y&z$u^ӡ#\َHWm26Tz?y썇I)l>C֗lTt4#fY)0 2ĆUIOJ2l&f1՛yZӆ /+hjQ.=lJ[M'?m2h -_96Xz'QyǞRAguT-:5 L}Å+[9^5w) rJ2iGI>xLy@-O7&'o16y׵ zk<jScNf^BQ-&1CS{:kGg߂լJz^,x]jL%M =:*Ͱs 򂬬rra;`H|&qMUiiUMOϯgOec:V%嚛o|f7©mG0&wbȾ#3Ix]=+@ ]| 6ח7[ )ͻv4eetz>=bfKOnݹe}V=~die&yn[WZ|K6i,5/칿miT1}*n>}dXTEz )BGzDzNZzR_7۰JBtcyAaB44[- 9%(/ᵰtz1%}Xϕ,]Yoǣo?@oggkh@3`8eA7C4Z1g}>Gnya1CAަ|}O{wlQsmVo6WgFm|yzK[z?SUmu欲MyLyԨ۫Q_嵟|dE ЯKXT36?u9\AQ^^E*Q{[ڥJKV`žʷo~[շswylK޳y3#D6_K$b.B`乆2y\mpFI乪6[?p~Fr.5s~|1?ʿ^@/N0)~ eaXr Ia )F`ހ^]sxw/O\ ױ|iZX,P(~GP>A<?}T%P*8Nq嵢;; )K [�̕qgx/ʗvG ]W`tbB?my͸,lQ8)0/-sxsx <2C\q2�1ʸH+AOZe\ZIPH2OIWC6$j('?d'C)W() O=2 ܏d<Vo|A#/餇?)ox&Mx&oGESqasUf#]q:=- ѡ0~3C"pI8z3~Z #>  `^+"Ί1*m�ep<,8^F.'P`rve&a # EPd04)5RvtN4&Q^kLX֟d$!\FC%%h-u}5T$cOG}/_O5>>,qCQ؏X=l s0 wNbɐ0e9nx)|q0 1L0vHXOP3D)E<wH�cp=Ox<`w}If^xx2[P_E4` }cF!iFcQ�Z`Y#|F{ȞC[cF0z0<P\p'/@( Q!>]B$J0&*[QYm.ţYPB[Y)w ;[ZNHhu w!Z<BOWRQ? bB8*g"A�@޺ Nbxp"8.LBIE$ F`gd` a}(<fQ'jƘ>Ύ/=8qt=Hc68!hbώ5)3ҋm?s`6ɽIDnIE_qtP_BՅ\;/@)E؉a| [Jbº.]sl{pP*a(GDى1l3R nD]Q6؜q !vK0 g-W<?B3ҭq<yYìS"x4̱9;zH1 y(Lil'qщfϩ_~WثiR'jߧ;zzDXd�aDXp$ u5Ӵ&܅ep]$$рuKZ&Gv, ,f^$Ik#1\&5gg! R"iȓxRq$dƙ G\'^vCCKKXxH&*U<_ ^m-A*Z~n`M ,W"Vx.aE<ـ(y=9,G\}8%wIDuq=W5Wz^%+5]?] )\6&nYINsh,xK~97q9>yT,x,%.g RY̋g{3Ϝr3JJsl_VAKI>s޵!k I\B5^$_HIw,o^(u.%@5Q:[wfU#֑R ΎRw5WNM+h\#hp=Z445|‹pc9DI.=z9!9im%NHڵ۽@ȣ-GtK<OǎvaGmX,`UEb+H" (2VJp^g**(].F?VİTP(Vv ;vtwuv8VkKsSm[UWY̦ҒMb@j2SSI*G+VEWX4QZ![x%CJy$؄99q5i]$ZM]D"5M{ŌHGh]?e$ԜkCy )b{ T )MŞT*FHi3aް:.+Ev_tmc2Dv&RRKILIaչS0H~po{DʬDTvzy@mvJZ]֒DRiEaC̈^k#>Qi?uy..86a..r 9Ny$w4țu`g vK\C!-qY0!hSnE+!!t'h0.R8/yue$EGN{NRuE;O:6񴏺BJ0Źu6 U?(Hb4 Z;#N2"=.PN&*.ڽ)= LRgExmرd,8Em}EH:m՟T-{fSi]<Kmte>Gc/1䃧<Sq2,_] \Q99B*x*'(Y=(#hͲi'q3˽UV:1@)w݆ OI]ܜ k)HEa( FnTC*Gۄ*iwHSQwc1Ur8, 5u@_Y10]O*ŀ:{a#u6jL`SrTW`*ypʰ0{sT( ԼK֭)hĈ F aNωNw#l0]k6S%&\]�‰ap6&s,�XQ(A% !f�ب;+\Ӯ`bfe}K)1zgj19h#:bTiRhR6P%(Ar.~7џt }ʗ`=*_Rݠ�on?&z=~k5}bE%/x6oY\7"�<{GN<!b~0O:aqk^j"aõt(w T8xBփ1@ ow|QFZ/<d/_ U(C{.):ڀ>;SQ>}�w^%p:NҩU?P=TI6s/pOxlb#v5+]\><vW endstream endobj 21 0 obj << /Type /FontDescriptor /FontName /c521a3+NotoSerif /FontFile2 20 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 22 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 23 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 727 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 612 500 500 500 500 500 500 500 500 500 500 500 500 562 500 492 500 535 500 538 500 319 500 500 310 944 645 577 613 500 500 500 352 634 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 24 0000000000 65535 f 0000000015 00000 n 0000000264 00000 n 0000000465 00000 n 0000000536 00000 n 0000000587 00000 n 0000000849 00000 n 0000000946 00000 n 0000001233 00000 n 0000022883 00000 n 0000023103 00000 n 0000023391 00000 n 0000023556 00000 n 0000023773 00000 n 0000024062 00000 n 0000024105 00000 n 0000024154 00000 n 0000024207 00000 n 0000024281 00000 n 0000024430 00000 n 0000024506 00000 n 0000029904 00000 n 0000030118 00000 n 0000031480 00000 n trailer << /Size 24 /Root 2 0 R /Info 1 0 R >> startxref 32394 %%EOF ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/cover-page-front-cover-image-format.pdf�������������������0000664�0000000�0000000�00000032322�14163570564�0030011�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Document Title) /Creator (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /ModDate (D:20190707014810-06'00') /CreationDate (D:20190707014810-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 12 0 R /Outlines 15 0 R /PageLabels 17 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 842.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 2 /Kids [7 0 R 9 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 261 >> stream q q 0.0 123.305 m 595.28 123.305 l 595.28 718.585 l 0.0 718.585 l h W n /DeviceRGB cs 0.0 0.0 0.0 scn 2.97640 0.00000 0.00000 2.97640 0.00000 -1420.21139 cm 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 cm q 1.0 0.0 0.0 scn 0.0 518.585 200.0 200.0 re f Q Q Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << >> >> >> endobj 8 0 obj << /Length 303 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 192.5425 777.054 Td /F2.0 27 Tf <446f63756d656e74205469746c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 746.406 Td /F3.0 10.5 Tf <636f6e74656e742070616765> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 9 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 8 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 10 0 R /F3.0 14 0 R >> >> >> endobj 10 0 obj << /Type /Font /BaseFont /68f192+NotoSerif-Bold /Subtype /TrueType /FontDescriptor 19 0 R /FirstChar 32 /LastChar 255 /Widths 21 0 R /ToUnicode 20 0 R >> endobj 11 0 obj [9 0 R /XYZ 0 758.37 null] endobj 12 0 obj << /Type /Names /Dests 13 0 R >> endobj 13 0 obj << /Names [(__anchor-top) 11 0 R] >> endobj 14 0 obj << /Type /Font /BaseFont /e13b8f+NotoSerif /Subtype /TrueType /FontDescriptor 23 0 R /FirstChar 32 /LastChar 255 /Widths 25 0 R /ToUnicode 24 0 R >> endobj 15 0 obj << /Type /Outlines /Count 1 /First 16 0 R /Last 16 0 R >> endobj 16 0 obj << /Title <feff0044006f00630075006d0065006e00740020005400690074006c0065> /Parent 15 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 17 0 obj << /Nums [0 << /P (i) >> 1 << /P (1) >>] >> endobj 18 0 obj << /Length1 3744 /Length 2184 /Filter [/FlateDecode] >> stream xV}lS?gqȇB̳ώ?8$8g! (_l??v h-Z@[>P"DcZi4iiCe&MEڴRHB:f{{ �dB$SZރ(}<53=,:!G�%]8gcB9MxK$nTڧn"G3`h6;:|C:ړ1_a @Uw.Fj@E@`v)@VJȠ3賦T+e>C l�+@Ԍzz_㈃<L^U]xL5ojl sWwK7oL].|+Q(kdoPzSV=sbh kE] `$T͒\A*)KbhE* ݲcf*^מdm=RAc 6sB9sUPkr}5zc$5 bMJ5ZI=`$x١'~:ꔿ39 ٯsW }٠ciu; mncQD} lAw<iLFZ֯''xuHo^ΈW/Dh@t_8cWFOpˇܘ=so)$'v5I9yzzyuKxklu76Z:[[O᫭_Vbktv[s{^~oAJI[4Ŭ`(y1A*u [XtKӭ ۃA-6Ƈt}:[kf‹Q_ck3=g.Zݣ_> s4,jZ|շ'[qZ4s$&:BM77Dyg\weo*?mB3=(ϭrTWI LRb*SeN>.|r콓aB]wsVn<^]KP&jn.e%!z:H.Yj|j*hXt֘0Z0[hȌlПԻ .=[F_5<ON->5rwTf\kEbo^Q5 ~ѩݴclUfޯlr:k7ԍ&QwgYwԯ:a!ݹID?n(N.UKy5'8F:R[ $s& HO�;}t]iN/\ Xa0=rH9C7q6$?,d,u e¨B�Y Gq]Z<8::,h E4^޾xC#r=ⲩϸC ) ZE\G+8 'x@i0[ NC TR ΀jQpC BIWC uD闀:)5sW'% ^ Ҫ॰ (\DPp-$R20{ ^]t.F _xVˁV ´+x<&ffx"zܭvP) ۗJcPs|Y>6!3XICFk7 8*"0! Ia;`UNxlyz1FļȎ Ov^VS1G,bZdS!O㬓}gęie=.#@vⳆՔu%4ʹ}t&)9$b8{Ӑhkj zedl$ aVZe$FɣLaDٳ5HdGkKlkɹ]KEv:HXK cͰhchC(/qi+b0<3I+*x..+BGD\y\߁ 7.,r<)'gI+q)Ge[2u.?K_YVz;4c! '|:N,Ol_&FiaùaD+-bJcraJqHC+Z+״ =R!/cDqWE5602>X{e2g1.r"Xx`�+΢|Qn~x/.>[x6Nhe˺ endstream endobj 19 0 obj << /Type /FontDescriptor /FontName /68f192+NotoSerif-Bold /FontFile2 18 0 R /FontBBox [-212 -250 1306 1058] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 20 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 21 0 obj [259 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 767 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 652 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 526 1000 570 1000 1000 1000 352 1000 1000 352 985 666 612 1000 1000 1000 1000 404 666 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj 22 0 obj << /Length1 3620 /Length 2268 /Filter [/FlateDecode] >> stream xW{L[1 7b0?6~G  .5v+~id]˴Hٲ,ִ(ꪩSmդIJivS*ݢl"5}BHʚ?sw~w1@�@fB`òD=KU'GY|~ @\ srر+ M{uS6XďmftT+h# P4x3?d$/ܒbs�hC^x�(6)_(�M">mx6*zЁ;VZ۩6hZ[aSz Vi.)%:Y:jalx`|A`rjΝr̝3)5uZYS&i82ja^?tU똥W:nۆL哧7>i* XK*&_"[k|Srts] ,Dz*x&5DRRT~vtΪ챶+uڃϫ:kj*fgWy߿u#]_פtD+K)pA@ )Hx["kivu<]ﻮ[6Tpxvxyiɽ7_;` |moV?-ŲV|$`Jh"?3$9TJBExL_QZyFp.Ob ArY+/m(*e U:g5BjoQVTtwS9sfuEgTjL l@[]fE[jd>|)3Τ6bSXGAW}_mΤ5EVd33jӎs6B$D+dKcGϻk=ԩOMT7T[̜]gdUfT~oibʻ7tjdv8;f� \]f-VgI][%jal]ئE tnČ)ڮMI0l7o/'8NEL04jW2M}bT(o=֝8`h,Nݪ1ڀ2kd )K#U<#z赵7#%nᮡ*&>w,s^܈oD"ףv{:kj_( ٪)]nFRBDIvW΢6l<rkYnɕS&^֖ģ ܕ#BW ;g{ z1jomCcI*/j>"a+9sk:S>(żۯ?R:ZѢ.|rv&!$<R>d͑ĿCTiiFW}-_i71GE�NNGrxIZU|w?J6~d‘I}Eɳdox|BI.Ԃ[$ܧJR(#6;&C'(Is4FC7p Z2J6/_%B;V's"N@DC"NYKq AAD)q)dKACzE\YRWCD䢈AMg" *j+V*WqQϋxhD< Z .* 0J.xJ~/J5"Iz'^1\WBK~ LόCQfrg9z aX` 4㏱:~ O]>**X9,n0b!f<0~bx10!g[وl 萅p(r]0z VuS�- %W3qr/df+SA1(,MޣPp2,n.Fg;BXbE8aXF,oKǓ{o)86^!|NE}ză^_0#z*ֽm/. {@%,'Bم{72X,l7\!7g\$6BS؄DB&cގ_n<$x1G<abnL畕c@ܖ:}'<F8G1:֐QT,ts&嘮0›8RlU` \B_Aer:u ta<%"d 5c,IQcod}쎨FAMMQDXx=Ї?!E`>s*M.|~wza.dz R!y4 ?룺 endstream endobj 23 0 obj << /Type /FontDescriptor /FontName /e13b8f+NotoSerif /FontFile2 22 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 24 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 25 0 obj [259 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 562 1000 492 1000 535 1000 538 1000 1000 1000 1000 1000 1000 645 577 613 1000 1000 1000 352 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj xref 0 26 0000000000 65535 f 0000000015 00000 n 0000000268 00000 n 0000000470 00000 n 0000000533 00000 n 0000000584 00000 n 0000000856 00000 n 0000001168 00000 n 0000001452 00000 n 0000001806 00000 n 0000002116 00000 n 0000002286 00000 n 0000002329 00000 n 0000002378 00000 n 0000002431 00000 n 0000002596 00000 n 0000002670 00000 n 0000002819 00000 n 0000002879 00000 n 0000005153 00000 n 0000005372 00000 n 0000006734 00000 n 0000007860 00000 n 0000010218 00000 n 0000010432 00000 n 0000011794 00000 n trailer << /Size 26 /Root 2 0 R /Info 1 0 R >> startxref 12923 %%EOF ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/cover-page-front-cover-image-max.pdf����������������������0000664�0000000�0000000�00000075760�14163570564�0027323�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20190917011059-06'00') /CreationDate (D:20190917011059-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 12 0 R /Outlines 15 0 R /PageLabels 16 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 297.64] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 2 /Kids [7 0 R 10 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 209.76 297.64] /CropBox [0 0 209.76 297.64] /BleedBox [0 0 209.76 297.64] /TrimBox [0 0 209.76 297.64] /ArtBox [0 0 209.76 297.64] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 54 >> stream q q 209.76 0.0 0.0 296.7337 0.0 0.4532 cm /I1 Do Q Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 209.76 297.64] /CropBox [0 0 209.76 297.64] /BleedBox [0 0 209.76 297.64] /TrimBox [0 0 209.76 297.64] /ArtBox [0 0 209.76 297.64] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /XObject << /I1 8 0 R >> >> >> endobj 8 0 obj << /Type /XObject /Subtype /Image /ColorSpace /DeviceRGB /BitsPerComponent 8 /Width 287 /Height 406 /Length 21479 /Filter [/DCTDecode] >> stream �JFIF�^^���C�    $.' ",#(7),01444'9=82<.342�C  2!!22222222222222222222222222222222222222222222222222�����������������A����!1AQ"a2q#BR$3br%CSdᢲ�������������4������!1"AQ2aq#B$R� ��?�V|B-!L, hIمL$ Vf jƑЕC .#Y`tu!gIrT'dX-746+cB} 0$!=�`4ېVƘ=7D 11P7 $&!PYSLD=eBlK-be&) N7@IcC2B'@x<�f & V!,qIȖ l+Yt"G41 ԀF�eD4Ɛ}C`T +C` *edJ)=`Fub:)^Af9h '*%J 48V V жD0ªE�#E(`'%7:2Y,R!kVASHI2@ K�vPP.xiƭ *@ &y#�] ZIS4G00{c6į(LH{]4ҴL2[JlI9H jhcT{V!j=X)o$@ĺP<X!XHah8@!)�P0NYej(((bʼn5�;,R蘀:D=/ <ExvyR%isӲricÓഊa%j�10)lK@{o2B[e!Z0!�U�&0}Vl#y& L&!�/j�]B�. } ?`9e ܠnCCAb@7zLpuդ; DvD5hXC1-@ꡀ��W:X PT&"hC%B<9K>efp@ x@B�!! -@ 1�7@1'`U8F7eH@[%Z@6C ҴH*LJ\ 6V3En(lR `z4@q B~RR rBk*`eCx(Q`xX %M )X&R�iϺ拡 i#h :8)V�V*0ZKcJ/P =RLMS<iL�$ۤ^8K$ qUJ}6WҌoa6An<1rϬxF<1ݙnsj%2&՞K\R磨%9knv"?U͞<>W4E+rбG91P 2`xȱ�.! .PCw)baCU Lt8$*2aFcU$3r JMPRI@ Yhpv"Har�vQAw; sq�G=^!}eQ`wx}v[gx>aK�&@nPw&g%ɳ,{U4�,2~\\͈\\F,8c( � r4CȡQ: M!PACQAFT*0:ʒ ܆@W9inʴ0]3eNʢEϫo7bCvWtui4P_U<aY7 6kYĎ~xQG/ܟC3cGTSoG\c�6ApRQèWTɵ(x<ZYC0Œ=7eʦ#뚗;sQ;E4uG${nI'$Y_ArT."~,]Y)m�j7O:8X8 !{BiMTkR�"xCBPt:2 *  Tctr 2R@3ź=-Ȑ/IoTBn xzezQAsS&�WN>1 dtbuě AsHe;z=&J:!cK6Tq˭{iqlLȻ�mU1l t'$ަ|+S \ ~\} rpN}X g5x-8qixډ[3};1]GҚS0Qj&Za?E{x1|G5:z_⇓'lhcMVOT x=.L)ױeFBĠ@EašۢG9&@˒tU$лP4c=x>ʒ�N1Dr49:�QH lE!*9I_fy@t_�3 &#i4U̐�C]{sGtLE| g63x^^$,x> ܜ][{#RIukGuܔI"(#c/%ZsvVyib9;.6Sj$ILkfyh~`i<Q #<WL%+MkJ< 1.@0 `nR; hCvSZEYLĹHH$Khq9:%N3]Lnz*-s0vuǴm] �Q?*;z-g^( 9d'Eqg)u*}2n`R#'Ro#m4H`JΖ#HwJ{]# \`6�V8~Z!g}y9vwǢ;G0|dbw]˺5|+{/ٲ ޷S,ؾ&_NN.CDsԲA9!X'=;zLPn( q*V<hv900)h730f;Fьb(pvP߄�QH." Ah] sVM]S'ٲ3vØ╄r7r{:jO ydwgXAvF,it.l8/oTٌZ{ (}@P4( ,+! b*e3ҹ}Bmg/$Dᘅl4K", )nEZ(#�KUcl<]CNR&0.u!T�Q5o@ܐB]O~m}?ds�ᘉb�*Lo_Þ,J[Lds L?�ۉE?Sg>f8| AKmܤE!NI#].D{fnJdklf{zVK&\T" c(=HZFCuh� Fp hBQC@iE\Hx!P0]H(XڴZϼ.u#mBŪI.?o_l>C$�ͦEOP,G*U# u#A"3|=dY&'T,04]#H<P%n2ݺ<\5< Bjuh#NNGQ<ͳVtϓ< *IcgJ4駕Fny "ImG|zz5swjMGs;25qgG2ӔAAZ$;H"N41#�.TsE,nI40wR0ƚ@\6'* qRH l@2r1˧ˋ" Ӵa7P9>џN%Y=lu8}~E'q�4 6S#8i9L oɞV $k PH #xykGRfK$Sb@*!uc!.'L- =e>Os\WQ4Bʏ,ЕzȢYPi]QQ c�85駨/ss%I퍾?:^R>Iǧ?U<Z4;B~W(52|B*Er��wTItPMT1l�t"<IF=JddS8na|" }^xjx̙Io#Uɵhfkdow,z6~\i8�!iIBA0xE9%Hb Xl[ic t+C?̳ᒎK`AUU4 {W&t9m'\!^f<tLNӤ%(l c~iuvFLN_o̙dP8B* LG7uDy߲ϯY^?g$M{%OCqL:}[N"dps\^[|l/$;yO x?̟7 N%ma>.&۶�tn}l^MKѴy G[Pn.Ǜ\�bNLsIt~Cdpz[quv=;WբO{|%'HV �֋ mS29JmfgĚ;_lf�:iT�v4Vrbw4V\'ھYTje$to [$,8qjsZ2J}#tpu(#1ӂ{�Fy W7Ӹ^/<(EV>( )-԰섀sE@<Y�&kaT.֧ 1G=e` [w^lz#FPic{7#qN\#G#y񐡛.UVtR :SX0w~+zJ*ޟ6U_4aB[c/ ޚ﷗f+WmLzdrO%|ބ8 ŋTrnoW,lLEOlU 8m[JשϚkuMk8{WhmM<,Y3b,8ŹE~eŴunV `| %OLQ�/KդG[ƨ]h 6'�Y8%{Yoݙ*�M&ZIB7 gX |/A뿈s�ǩߓf4CM]6!4;OvSokwaA=^O]$TWq_q5laߠV]. +8F\*I ಕ4܌ʫe&)<G8R.v֋ɤěn%*u_Spui^;ş>Gz.\揕}FH<R) $v0ѿ)!wl$#c\A3׺@@pւy C$:sQ~N+]gߤӂ8dι+H#:s]jFMHa}Ӓ>|�Pu;4'- An \EFa4e>D$rJ,!K|)I:ͷTOUL+]ڎ 2+s勮kc{2d/gK|-VSn.�酖rWܟ$5nQ;tX#q`A8>e7c旽fPűǤEOQNcLo2\~+/X-s犪dc(ם_Mٟ>my5^BQOO(:J")6I{1$|~,O|޸/t69In,t34 Bc%q平_'6a%+H%- *B i5sfFnH@c= ǫ)=w_s~w-m!%5% f~J4wڦu f`dCB%R iȟ+IX%7HCZI%H5N]jMioGv%:Vqk+O:mƵ�5rgNMH(qeiLa vU`R.eAr g!6(6HŒ C ko>> ͅ0iB5G-_c\<3 ‰:�w#0=D] R6@Rc%Lq�ҹй&&0d˒Gev6eMG*$ :Y ff> '+,$fs YH׹6k6n/_=S?^2ڌ t¢Z�MtoH&l 8~v^%SKkQq-XCLbhٸ^saaaӷ(_4sDmVM_g;@Zzn|d/5;4Y o?J ? {Drn#` ܹ_ʣTNY;mi=Lt> 2M.̒l.zf2l[gM}62SgjT4e,gFZܓԻ ;=AOY!=AI|�HTTp2$ml�+fi <U  #IGG4&�3ujrn]쪀u@ aʄUnr . Je ,ܐ7@CR�Д bYEm$->4ÖXr,ZimOŒ9qS(sH-A-[3x$S?-͊ C- (13<6�G{)<ۗ&O8Khdp|S/cbE ˟Gm<okji\Z6hq&|m^?3�>KIp? V 8diORK]1mkߕ%m?y4qQfqp;m$`;x~^1ߪ|GqPJ&Ӹ3F#wH]Mdps7 [se uY~.n!QqEىV3[6�3-|�U&ttA=*&c 7;NE|)ZvrkjIH]@Ksl8ۄy�{ŏzm}^!))j"|IQU)kq.9ؓ٣F*ߢKbL8q^(z ѱ`v ;=Ola.stѴXnl;zE9>;<BZm_%*-4"SNɌ\+N."',hV)SM6hp}TJ+IdH&S [?+\F?)=$z?#>8+i!}Z$i~ L[tӢhv$Mz~*؃mX̗$K3e'c;"#*'/pN9b|WO yeҊ\5xҴ<mfR@cגyyU˂]{Ϫu-L׵= 7Ϩv{w1c=6<۞]EO)d|(BՔQ\E,YN͉;+{*ahc[Wn=o׿t2f߅ E{l`|=8Ã/y:̎^X'GK M:NCORGJ@7i`kA>| _v6yYiMd-qo9r+äᒒ/z:^@i5!9=53Yx4]c[EEMSDy.wĮyM-^.W7Ǣ$<#l$T7&QےD׎ *@y -$ASV9 |'N˽V8 ;_Z劫DesHk!6Ϗ Wö؜ᔟ5}sm^۲AOOQ٥gҺTpL.>3{)܏OxeE_"�Gi7#~Bb<p9�Nj*9Vrn0�8oTe>qT9&Vվ&?W<󊏻 )Ov]|PrKC J�,6WY1m:^._:&NtDw0I8`/Mr%:᪂�CCROWת.S=c{yqw+ٗAXW KzidY QӨڦKQI=[ yr<7 *H]mBw;~rc]g^M+JΆ: &Z袞Q#^Z0c=ӭ\z}ܲdV@umKB1UU-jpǒ;n G+~WOS.Ѹ:*Y8|.q^sti%Ê/T#8W}~m:Cg{1&^|Oj{8?GY'^y|+W/4Z 6|bnA#-�@Bcx3 %d"k%LP1 `dIN'p7IkRJ\ AumaB&*Q;DVkN_L�?n 鲂%֟|(QEޣ[; hm-]T<%2:Vnlgs}NEMUwR>GQp'h眛#=8 D;,h$oZ&9űh`zᨪm$N6|iv)d[`n6pViM<x}L 9伉hu::Qc5Q4Jhik$y3;7yn(6t߷:cG4PjMS%TA<l?X vd{}n]!QO}Fi$˃$Wэo4 if*X} r*]6PMsKTvDjZn 7Z<ܧEM5UBIkn{d<l:|>68lqKFk|2uՍ}O_'FKvdTnA;n0Xʱd: pdѩ“Vh"s~*\2̓uYbh5zƲ9PG#e,)o7=?+�R9PQꁎ3-tk!Ęʢˬ%SJn.H40? 6ֽUu**K07Qn 53+qa, [DبuN]4d?"FwǛJ Vi۳I* 5ՓjOs�*>bǍRD767`L!=�B2͗ 6:>sO{>#R%k8^ݕVl6ʙҫveѺVio�uY#'6<Xm>Vjۧ>AN0zI˶9d˒^WHAq)b&{< k^$4t6꼔aUPum&efUPro.~_PX&ܺ_ff6cXrjvo2#{݋Y疅I8I?xanQ~C$p=Xls�B Gl?+ ,+g ?U*cL�~T>.=R&ؗ>T D_`ݟNJmbEq3e8O.e/4{<?՚[񪗷}Hc<tϙ\[dRq)%9!~ %LVwqn5H'+GC �ۑN[3c.khY _r^dŗkpY9k7KopvI*es2pۑ?pBS�*>m33*cC  414dLz]; TC#dWܕKRr6dGW麌5Mc$t.ּ(Śx*)uD|~3^~W,jY^]*QGM%Ζ 9~etO9I�2Ђld澺ZQ:S,H.nmc6G1 Ȅp(֬S%ҀER\��h 㝕&M˭3\0 v-{Xÿ0,E21S/eDm6�Z9ǵ!c|i<u/+Yex(dYr@Y9/DX9ke&PUHZ *Ѣ&YQ/dQJ6fu dq�yrvZ:5 -5Ze kK@]tdB˓U-6CVctZu cj>fP>`FY3E͂ ۾E U{ q81}HM9U4|B+Xh##$ÀSE`>}POzzᡩ]F_kn;cO9B.J~! v1ߒvv{͢׸AG=h s퐝K7; p.֑p*I 7=UR!ƿqqs 78UDmE5^$|0~mo쌒4+zwCBe|clT4H s|^'C&2YӛPô!Wj`yeÛtΤG|pZ鮊 Ya3fG7kہSF_ Gۋ*dCV:m9q9k#n|U~ �:=R=:N@$yh$ᣪ{`9Ԡɫ`]03ۺA9敔zt%/Vc${ԄXl,Qd(S L邠r#t'6�D uFA5ōh-,=-0EXF r*4\#O2`u;dB ƒ5fEG J4m[ ,R3<d(c.z\ $c*kb-c,%岗 d )c7$n)2evB&"{hOIp0-1x+xP)`iƟkTKߪ=Y=/|=0IhsGW`~c_%0&ĵLdsHi ӣ4؎cvj$]Axv)Cr#KK +!I9&' <[_Hi hB q0&a<FTI{%֕e9]U9c/ؠt 7 qa�䒶\p}Yk> ?49SO+Sl<^6nMFKee9嵺\%$+(9I�BBHU8oR=V$#7ꕰYmrhֶq$lFяFֵ?j i>k̍!+x{{x6 Y .l X)JD:&$LVыG<EX:QTyc>7"\9*49T2ס<]R`)q&`n.<bv#A$� ' ڊYRo{糯sdΗ< wEy4]wĖjy^ݳ¸W+iP�j_Ad / ^4J ,Fx�/2\Ώ mh >bmmըH3"#\B�Z}5j~3+l6O,sZ.%C�)zv>0sJDŽc^r Y|b:VGN'0GeF\kL!ǢPuAB+0>PD'4[GCAאAs[y*j*#>6QQrQlon\nTmeRFgCڋnѤ=>P{VeJZ>#9{9RgVų[_}s/p]^QN_Ye$qg1hIG^r%qd֤G,Q:F'yj5<ϸ"9UL{$\2{'+F}DeY#gK MIZ>KǟY 3H,)-Ƚ82TN1c{{0U0xnߢCQ;#VPfpVnv×}RweXhէMI!oi BG6OK}g` kc`.J 4e|pBepllisy�Z!j#[]l\E�#3`y:R,T<I~<Ln{�+.X'nV\8f Y,ΑttLKLDfn8ԅ^ d|#L0lӸIfuƞ1,>.U~]-HǑqZ%dN{Q8j:xZ1;'&�yy,h%γX/A%k!y+.hHtM¢>3i\IUs!EUQBڨ-+C˸]d:gɂ[<1qI~Ws2=/'esI0gtonq 0F}y+HhdmЄ5QrDb):{&hSwǪt*{ $+#pUK]�v2C.C!u<dvu٩],p90*2)uLVh�Z!Wo >?lo7~5\ja>θn=n(W>赛5cdle\^ݢԐ?N'܆:  ESEnEzC4fOi.yzX(=J'ɝ�!|sIoUc|镔t4Y]`;-TEtf{n=M3ɹ٤kaWdn&Yجq]kFF9Tk7Cd%ɎEN06)CAe7M3Z󈯅hQ8rI$Gb$X7LD(>x`lo MtμZD~YڨÛs/7 [R= ''n<Ȓy%.kq�{,?bmiTˋU@\%D4,~JLn i ; ;H,c; "˞s]6�4  H8Y!q'*DH`+Dj>+]+ְ]ג)> k оY*vmsZ#mǼ-&uQTjH%#}9MEu<"Bd,x>!6�snre Gq8~$ԓGFڀ*lvDfM&3X-fZhhl>s|B,7Gv<ԩ>rkKGNQA.13{ П3-7ZҨ+uWlNv.y� $V Kiϵ]0; 괊Fpo8|QR�TeZ  {Y%[ڍeRpKV; Gz.Je'E1m,}I<m˰pD8 H[ڧ;Ķ@T4]qgM o5( { umR5j<ݣo'?`o|XqNǕwjT:{[ X<i.Rx3ÑO\+S&HWC$}x<?^3>vV︊:<p6 M S8$)g 髖-Jaac?wC޾}OXߝ7\>@c†�l`۩`u"Cw&1nk)8i2[GwkL|4ҵJw#]K_le. lqCFvA\?s{e?K] ;_@t1# ݒĭ~#́תKK>03Ɂ#sȄoF&ױ&B<xob9p-!V!#+K uows,cvcl؂;uvixKBv<g!9R+,D@65h\c2K1^,UͨVP^t1Ldn5.<DT詋A>;)HmmhmMrcu6]6{m�  }PXjy䥐><uS9Ak#Í,ZO$8Xn l%Q|uZN!+F$spՏqˉ>K,\_m1.ӥv�x}^�ĺ:VD[�}`VY|N)mĿ2ǥ~M:I@�`śz>NMo`V͈Cb𡱁!H ڀ<\DIcVʁ463v+6#h�/ f l5tִߟ4 T|rL^ qS]W%IIw6�?ukq7�d쩒YU-|p �| ,Jٺָ{CfGN�2+W.9+82O|df8L qJSNKD]c)y@ı%O8o@VB$@�Cnٴ!|*y4.rQ$4jEٓ'à*?pOEh*4GT[M"܆Lߢbh?qmeZRMV$u0(!HsF۬L6�ݥbXx$�^7e$` lb@+FV�25Aa~n.-H18>+7}$`i Lr 䤨㖝w;�vj $4"9<Z6~ܑ? vt^ ֍^g:r/\>Khn/e X/j`UaA 'aD\ox=d+ i!qIYIMž [MI=tt}zp\1V%"NS/!&4]4aN<dE2 2ޕ v4UW.|Ѫ*/?m1QE2C!$\Bc�v^ !qTq]/hF[p+40TJxBxo Ck�mm%-@ g;Y٧PQ%tz4[8#Rl\+;)89+7UgUQ=[w1#K]g=̵vQ9�Fw]tFj]v:f67<3E=Q6ng-M=K`8Xȱǎ-GYXƆrP@զ*�,tykaC,(՝B{$C9Y(c ʚ2FN@[F;2cQVt)00ֳapMBIsLk)a�ҹ~>2l+uαTaa㭥^9^W _:XP ƥaDzCpNˉ*)C\2flDFEÇipy.@̽v/huPrA3I  ZC+@mia<B6]1|2+e6*fԂZ*ayaP%HK}b�Iƨ p HkQ6̲1i /Ak]&Q;`fOeю5|q{+ \6ttj l70\3sgGku(,&' |j@v*\F_ȼ7z +tPi\kHӪG\ƭl)tH"`1qY\i4ZiboKd"Ip~�ZD$۽7HX뢢jY}#f.2#5ϊ@Vt45-uԐ;p7U8,TRبnHїL qEl0&@)5'C5{."lVc|MOubjBfF^[.JDHdtzRd8?5<e,|o۠]v^,q`Ը-|g`$:14m?z:`-֟G,vF)}Nx h80/0FnyC A'iH/OAqɻʌJ4D8lW"tsӧ VѱF@WăZdS-)gB1pɎ=if+<}>:in}@ύB6PqN|=?X0rΈc[gO4xidXmV$a)2O Y6@-2o D {qcZ` KdHn['NΡ 78_FzN'ap84HMSD>QmipSU#McM\M+ba DdEYFuԪdbhV\JpCCS' hH:YU\h `�VQ%Bht@e|ռ9O!t4lY2f/.:* B֭c>uS v4va;@v=;=y%wQB"k@`q~&=ok,DIzY# +fɺ=Qu(lH욒ԨOk�{wh}ՠ9p^D.}U]6L@dqto j s5hkv\x,$jxua>,A)SqmhxQio!%.Rd7qa8SqELO#eN\/mRŠjyE�0dR,GZϼ7߸N8E7eVs1�Œ`הO__ ]mWrWFJ0%mqȄrlZda(Hhȱ9 c. \A597(bvh H)L(3ZFVʉz(bߍu͔*6w^8͖кDįiϞ[`ι5i3_Mp<6rH)ə-SQew+@΄Qx+F[�깲'7`Yi⮅ٲ-ʄ՜cM :-1tY k]$lഄ4NWA|-6טӣݼUǓRͻK;qsuȥ,ι#^5Tc)A\6+c,@J4L f\UlKEh.:V)"ke,Q*6c&]Zscq!$A(8c)tXv׌9:~`hd`8[E\H&�Set 0چWHtwQ UvWN@ZXQ 'IHh-JY킷ěe؉hϪ:-īO;뮨ѯu8& |M&y/<UũRF'FOb.T+uiSST ZwW7HdMl%$)`{KO"'>)cp},2F%ch1*KY3Os Cٕ8cDŋՅoǢ!eՕN3c}TE9# Զgop38W�`E/ Dݷ_Zl 4}$IF@5�)WLLJzp{3UкmYˆHX+ .IeM^ '2s\dp& G;9Z:LM4EֲHsEW$ӽ} ^'.ʪlq {%KlӨS $yT6QeCLv 6HV] G0j*mEjc\ɣ)Eٕ<Pu ~MЦG8{]#)M2>jxٿ͞\6u֮}ďN(pJWkQHHR :<¬Pe�(_Rx8R,[FХƞS܍dU#}hm.s4t",;,13h6XK IiUzϡ((#,Vآ"q}^cFMQ4'SL{,v`:H2KԚ[qVd7KQXbhO hSq걩De;4[FKWӢ-JS< r5tcP]qPEJ2U8}[ZgYUFkyt}gh(Gw46]?K,8lzhix$vwҿ00Ĵ^nF۲l� y"I \,jZ Zr)$Kg6ֵMSeov/(]MNTn"yTU#yK�ɲ)Y$M #|7@ɑ EX(dxrQIme&&] +iW mvP/KE$e$F6Fֈ2Z#G%ϒ>g)L ei *ML*T,Xi6I%*f*Kᖟ69λJ G(X A^$ 6[sOm )j류 )ȩGHI' f탈왎ngLz65 .V5RFS,Z ׯpE%ɿ$~XCP&x2LQ ⥰*5sd.oM{' iT1cl~Sˑ|jmj `cX`ɞ|ѓXsUb%+u}AIʒs hU@6M@HY91 <e)2ac+9Bc#dIpmtat$X`^ŠuX\.�R4FJ-ؖK?i+H1s*B-V샔n&ͱT+G9L%uIY81eOSW`74Mxc8qddMudhI.N)2BB1}]RD3p'JQ㏫ₘfG!z�@G"MVa4@#SfEuHhyᵚ"3�$rwk1SD5Ǎɜ͒R6#l#R-i�YNOEU&"ž9'p�a4ti> kp|NEv }SωRk)8W˖%&Wy>\2S"WeZtPjYf�$z.9LQ, "vfMLF^ѐ B1R-w0m3NJd@p\vӕ(hk3GV4dh4j3Mr\sW3i:,Tˍɲ쟨x0;$؛9sĵRt#] !KysUElໝiS4YDx!c;H:"1tiXln~+tD`M иpqfOx=248pwGF893O<ڕARH%o(2Gi#kXJNO%hJ,h6HQr!hi�eD wTZA@�P9ZXH(0HMq#pdZ+6XZ v w.ZSG 2D]k(! ε:Ji͍b3~ɒk}7ZLn앝O%,}BTTHGo.e˲IL{Q_Q.\Q6yL@E,mCJд8qdVt%W +ݹ6ZEMi\]තYmq 8 :u Ii;+uUNi7�\JcTsvyӓ M+,).B˪/(-(M@ dYC0cA*0fТ5'<aOrM#y.Ifi:rO%'LM(H!9}⪑2��J4g$B.|IFBV RV=sMaefk p68S4G8(]G>儮Gk�pT=]nf"T2m)4lj$kc)C##ZD9#wM&9¨22V hNJgfFڕ#�.Y&og:dp+j u\dk"s N_i%Q.7<O;pI# y|F?1U<R"Ǘ02ETεlzCOD_X$D.Z]1-)!m6_E$˪1D24aX3$ym: -{(ۜrQD@9@\,h 6ra.IE4qN%!7%'"9){]jVM|, ЊJ/cjыdk5evfZ<9)DF͐LР@;.IKH5GU!3R%#ETѴ h-`pN):/x endstream endobj 9 0 obj << /Length 165 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 249.676 Td /F1.0 10.5 Tf <636f6e74656e742070616765> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 10 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 209.76 297.64] /CropBox [0 0 209.76 297.64] /BleedBox [0 0 209.76 297.64] /TrimBox [0 0 209.76 297.64] /ArtBox [0 0 209.76 297.64] /Contents 9 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 14 0 R >> >> >> endobj 11 0 obj [10 0 R /XYZ 0 297.64 null] endobj 12 0 obj << /Type /Names /Dests 13 0 R >> endobj 13 0 obj << /Names [(__anchor-top) 11 0 R] >> endobj 14 0 obj << /Type /Font /BaseFont /9954ec+NotoSerif /Subtype /TrueType /FontDescriptor 18 0 R /FirstChar 32 /LastChar 255 /Widths 20 0 R /ToUnicode 19 0 R >> endobj 15 0 obj << /Type /Outlines /Count 0 /First null /Last null >> endobj 16 0 obj << /Nums [0 << /P (i) >> 1 << /P (1) >>] >> endobj 17 0 obj << /Length1 7792 /Length 4796 /Filter [/FlateDecode] >> stream xY P[יϽz0F`l8⚗c 0lז@ " v5i6v]M6$6fIIζtimY;>:6LBlk{sΕ��|(3mF�d>>vd.6 گ蝨S2;:U:~kgg:ʋ(o ~G{;>=xoǒ)x| м<nA@V � OxBv�;~PAΦ)+�@>Vu{/U~%%tz9WKiݓWR=@sZh[VBt/zL/s]S9 Љ14}XTY WVt;ʅBs[kQ -;;Ik]  }+?((oԭNׂG?J~� :yDhmklm(hr=ʂ RV3z* ]sho*B5Ϭ&sW9)6kOMyvy䰩e1׶ұG$g̝yp޶ƉW>#[%n.k`#JފÉFf@yk7'#obKg=LtʄPw zx=$-h7 㞯>٦歺-Jp5A3,RBv:}v@{a<~"FYomك.3EFuET#uÖ:-RO嗗o1YLEˏ,Vu=so~w{Zjvzݎ͍BU}{++ʍ=W>=}t:mS;E)0xCۂ𾣭$zB}n#S;~YS}u_``sdK^QS7 CiUᝎ}RqLyG'uA`}#UV>B>V_sp-,W_(kX*udK{MgM*ONtxmf mن]__gtnmlȝgjSݫ# 嘦m31饽)T"Mc=]+Wr{N8p?˅իy0JX⥅mmx̩8^g9͖ǣJ6eDuɝ=& ubul֭B]ǟ-1;m5n!ņMmvo{>v=/qn|ϖV{Qݶ27v0mN}1ZsMךu ZT`\qTԊR\lxKa{ҡxtUR_!]~ֺ_xq\ 23/yQ8%0-yL]>=gco@ ;r VGP·ur$^|&mC8<7h4?#SGSW&?@ F4@L;< N]dm0\ȳWB6 Y4;;pۇ\>̗Q/F*#qp-a},N'U\oU\3貊Pmk lRq UŵOZU\ Ku`"JQu"T�䊊`;Y(P*U<~υ#)σ */J&χvqX7o>yS `~N E`O,~:MM;ho,63'蔝v1֔crRNv4$ 30 ) |k’B/~رօ>{%$SFX>KŨWNDayRxSL6=&,̅ , abXtMD3r�4Zi _K xamɄHFbQdo M"Ƣ ;c=-qIM%Bay>8Ac7;"?!SB@,|[Ŀ wwLˡ;vP yW(h D/iNΒԎ!ddSV)p;(Lvo#쳩T3ܽؼcFN9А_ )p qcGiGgĐʁu8n"W'铩p$ 1f,'MQol:uw(!|L$zr!45+So Ѭ`V~Mvzgp$JD&0F5CQZJӃ}þqzklkhcgx??<v @4'AS*",ɶXv&ɸ<LѹPtf!4ˉHMJ4󟏤B).Nʉ(Kӱ]@&\BߚsrV]D_l0 l!lS(GfmaYVr]/A|�Foa;m M<$ZRrxY`/)tsI̎X3u|drcXnw[0.ޣ׳mA�tVe)L$11(f'b$L-kR~&DKs_E$/υH $]'O#mXPmnƩ? kRr*ddK8=mI yvn>gdx<1cgG7l9{~ |ho";X1cF8TH"yK3[&$�֑OɐbʐՑ 1GW j'Y`B@=XbD�|$uNCYIr9p=J a$zporuȣɞ׺jP�X>kcI WqD\ad32"&|8|B".K=]r= ׌׈y\#YCDLŷb~|6'STSBO'8?&>d$_DȍKKA^".|/^y^q1sQdaA0TT»&+RL^С/ϐkӹ<Csa1]}>-AY(:z'#bowwwç\zs+zK6[|%žBb>zQ4^1018 / `K,ǖƽ6>36G+aJ!ECK<x.PvxJ,0dEʖJ;L&S6~䱤6H!I[5ϨZX8$GGQ EV<ǐc;lLƆK$6%mtqЁ}ٱ}o۞ݻv65: 5UۤJkEd,ؐcX<ATMd)@& ;UGAFotmάs]h;7SD$L~%uM56`b.uQ[M.[z܆zXj֔Z)Dj;% ذXQeZ JM)]4LsteLma):WMt!ЦI.KqR/܊3DV$�wĠ[L�zнGt0Z,NJ$q7zFk9ss>Mh_<t6uJka`Mg䓚@Zl疝08l N-AZK,wJ?hÒ}|.,Nb>gLJ,V)q.Eh-)Ką_eYpt4-R$ J-q\.8CjK b".>!ԽOf;.j7ܣ@pJ8.62uYn\Hw>0QFBsR ]3@ňKz0ixZZ¸*bUH~9Yw Mrg?FwFg}di0=C@EԃKE_eۄ(KvszMP[vzLTRoMDXP/`3U& w {)*Kf1Q:~tM`59S,7;Ww[sZ3MoK*! tw.e a`I/9,[XrдNK^;^6F  u/I%'y{ ><,'XچmW)C4[^u,V <l3a,fZ4Y1vaJgǸ׻iӁt0rJ#G"uw%"\IVnw23 %L>(m`?&Xоέ?j\;^7Ǽ> p?; ? (<_g1~nM}.x?/:F4<�Hn:VHpV" '@T{5|OĖ-<*m�c<+Gn# 'ati_sP+cpZ{:]S3ýs_iA0 YW-^!]^a"EܚBP'|EXܕ # endstream endobj 18 0 obj << /Type /FontDescriptor /FontName /9954ec+NotoSerif /FontFile2 17 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 19 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 20 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 562 500 492 500 535 500 538 500 500 500 500 500 500 645 577 613 500 500 500 352 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 21 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000460 00000 n 0000000524 00000 n 0000000575 00000 n 0000000847 00000 n 0000000951 00000 n 0000001248 00000 n 0000022898 00000 n 0000023114 00000 n 0000023412 00000 n 0000023456 00000 n 0000023505 00000 n 0000023558 00000 n 0000023723 00000 n 0000023793 00000 n 0000023853 00000 n 0000028739 00000 n 0000028953 00000 n 0000030315 00000 n trailer << /Size 21 /Root 2 0 R /Info 1 0 R >> startxref 31229 %%EOF ����������������ruby-asciidoctor-pdf-1.6.2/spec/reference/cover-page-front-cover-image-path.pdf���������������������0000664�0000000�0000000�00000074575�14163570564�0027475�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20190807022458-06'00') /CreationDate (D:20191027032720-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 12 0 R /Outlines 15 0 R /PageLabels 17 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 2 /Kids [7 0 R 10 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 54 >> stream q q 595.1291 0.0 0.0 841.89 0.0754 0.0 cm /I1 Do Q Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /XObject << /I1 8 0 R >> >> >> endobj 8 0 obj << /Type /XObject /Subtype /Image /ColorSpace /DeviceRGB /BitsPerComponent 8 /Width 287 /Height 406 /Length 21479 /Filter [/DCTDecode] >> stream �JFIF�^^���C�    $.' ",#(7),01444'9=82<.342�C  2!!22222222222222222222222222222222222222222222222222�����������������A����!1AQ"a2q#BR$3br%CSdᢲ�������������4������!1"AQ2aq#B$R� ��?�V|B-!L, hIمL$ Vf jƑЕC .#Y`tu!gIrT'dX-746+cB} 0$!=�`4ېVƘ=7D 11P7 $&!PYSLD=eBlK-be&) N7@IcC2B'@x<�f & V!,qIȖ l+Yt"G41 ԀF�eD4Ɛ}C`T +C` *edJ)=`Fub:)^Af9h '*%J 48V V жD0ªE�#E(`'%7:2Y,R!kVASHI2@ K�vPP.xiƭ *@ &y#�] ZIS4G00{c6į(LH{]4ҴL2[JlI9H jhcT{V!j=X)o$@ĺP<X!XHah8@!)�P0NYej(((bʼn5�;,R蘀:D=/ <ExvyR%isӲricÓഊa%j�10)lK@{o2B[e!Z0!�U�&0}Vl#y& L&!�/j�]B�. } ?`9e ܠnCCAb@7zLpuդ; DvD5hXC1-@ꡀ��W:X PT&"hC%B<9K>efp@ x@B�!! -@ 1�7@1'`U8F7eH@[%Z@6C ҴH*LJ\ 6V3En(lR `z4@q B~RR rBk*`eCx(Q`xX %M )X&R�iϺ拡 i#h :8)V�V*0ZKcJ/P =RLMS<iL�$ۤ^8K$ qUJ}6WҌoa6An<1rϬxF<1ݙnsj%2&՞K\R磨%9knv"?U͞<>W4E+rбG91P 2`xȱ�.! .PCw)baCU Lt8$*2aFcU$3r JMPRI@ Yhpv"Har�vQAw; sq�G=^!}eQ`wx}v[gx>aK�&@nPw&g%ɳ,{U4�,2~\\͈\\F,8c( � r4CȡQ: M!PACQAFT*0:ʒ ܆@W9inʴ0]3eNʢEϫo7bCvWtui4P_U<aY7 6kYĎ~xQG/ܟC3cGTSoG\c�6ApRQèWTɵ(x<ZYC0Œ=7eʦ#뚗;sQ;E4uG${nI'$Y_ArT."~,]Y)m�j7O:8X8 !{BiMTkR�"xCBPt:2 *  Tctr 2R@3ź=-Ȑ/IoTBn xzezQAsS&�WN>1 dtbuě AsHe;z=&J:!cK6Tq˭{iqlLȻ�mU1l t'$ަ|+S \ ~\} rpN}X g5x-8qixډ[3};1]GҚS0Qj&Za?E{x1|G5:z_⇓'lhcMVOT x=.L)ױeFBĠ@EašۢG9&@˒tU$лP4c=x>ʒ�N1Dr49:�QH lE!*9I_fy@t_�3 &#i4U̐�C]{sGtLE| g63x^^$,x> ܜ][{#RIukGuܔI"(#c/%ZsvVyib9;.6Sj$ILkfyh~`i<Q #<WL%+MkJ< 1.@0 `nR; hCvSZEYLĹHH$Khq9:%N3]Lnz*-s0vuǴm] �Q?*;z-g^( 9d'Eqg)u*}2n`R#'Ro#m4H`JΖ#HwJ{]# \`6�V8~Z!g}y9vwǢ;G0|dbw]˺5|+{/ٲ ޷S,ؾ&_NN.CDsԲA9!X'=;zLPn( q*V<hv900)h730f;Fьb(pvP߄�QH." Ah] sVM]S'ٲ3vØ╄r7r{:jO ydwgXAvF,it.l8/oTٌZ{ (}@P4( ,+! b*e3ҹ}Bmg/$Dᘅl4K", )nEZ(#�KUcl<]CNR&0.u!T�Q5o@ܐB]O~m}?ds�ᘉb�*Lo_Þ,J[Lds L?�ۉE?Sg>f8| AKmܤE!NI#].D{fnJdklf{zVK&\T" c(=HZFCuh� Fp hBQC@iE\Hx!P0]H(XڴZϼ.u#mBŪI.?o_l>C$�ͦEOP,G*U# u#A"3|=dY&'T,04]#H<P%n2ݺ<\5< Bjuh#NNGQ<ͳVtϓ< *IcgJ4駕Fny "ImG|zz5swjMGs;25qgG2ӔAAZ$;H"N41#�.TsE,nI40wR0ƚ@\6'* qRH l@2r1˧ˋ" Ӵa7P9>џN%Y=lu8}~E'q�4 6S#8i9L oɞV $k PH #xykGRfK$Sb@*!uc!.'L- =e>Os\WQ4Bʏ,ЕzȢYPi]QQ c�85駨/ss%I퍾?:^R>Iǧ?U<Z4;B~W(52|B*Er��wTItPMT1l�t"<IF=JddS8na|" }^xjx̙Io#Uɵhfkdow,z6~\i8�!iIBA0xE9%Hb Xl[ic t+C?̳ᒎK`AUU4 {W&t9m'\!^f<tLNӤ%(l c~iuvFLN_o̙dP8B* LG7uDy߲ϯY^?g$M{%OCqL:}[N"dps\^[|l/$;yO x?̟7 N%ma>.&۶�tn}l^MKѴy G[Pn.Ǜ\�bNLsIt~Cdpz[quv=;WբO{|%'HV �֋ mS29JmfgĚ;_lf�:iT�v4Vrbw4V\'ھYTje$to [$,8qjsZ2J}#tpu(#1ӂ{�Fy W7Ӹ^/<(EV>( )-԰섀sE@<Y�&kaT.֧ 1G=e` [w^lz#FPic{7#qN\#G#y񐡛.UVtR :SX0w~+zJ*ޟ6U_4aB[c/ ޚ﷗f+WmLzdrO%|ބ8 ŋTrnoW,lLEOlU 8m[JשϚkuMk8{WhmM<,Y3b,8ŹE~eŴunV `| %OLQ�/KդG[ƨ]h 6'�Y8%{Yoݙ*�M&ZIB7 gX |/A뿈s�ǩߓf4CM]6!4;OvSokwaA=^O]$TWq_q5laߠV]. +8F\*I ಕ4܌ʫe&)<G8R.v֋ɤěn%*u_Spui^;ş>Gz.\揕}FH<R) $v0ѿ)!wl$#c\A3׺@@pւy C$:sQ~N+]gߤӂ8dι+H#:s]jFMHa}Ӓ>|�Pu;4'- An \EFa4e>D$rJ,!K|)I:ͷTOUL+]ڎ 2+s勮kc{2d/gK|-VSn.�酖rWܟ$5nQ;tX#q`A8>e7c旽fPűǤEOQNcLo2\~+/X-s犪dc(ם_Mٟ>my5^BQOO(:J")6I{1$|~,O|޸/t69In,t34 Bc%q平_'6a%+H%- *B i5sfFnH@c= ǫ)=w_s~w-m!%5% f~J4wڦu f`dCB%R iȟ+IX%7HCZI%H5N]jMioGv%:Vqk+O:mƵ�5rgNMH(qeiLa vU`R.eAr g!6(6HŒ C ko>> ͅ0iB5G-_c\<3 ‰:�w#0=D] R6@Rc%Lq�ҹй&&0d˒Gev6eMG*$ :Y ff> '+,$fs YH׹6k6n/_=S?^2ڌ t¢Z�MtoH&l 8~v^%SKkQq-XCLbhٸ^saaaӷ(_4sDmVM_g;@Zzn|d/5;4Y o?J ? {Drn#` ܹ_ʣTNY;mi=Lt> 2M.̒l.zf2l[gM}62SgjT4e,gFZܓԻ ;=AOY!=AI|�HTTp2$ml�+fi <U  #IGG4&�3ujrn]쪀u@ aʄUnr . Je ,ܐ7@CR�Д bYEm$->4ÖXr,ZimOŒ9qS(sH-A-[3x$S?-͊ C- (13<6�G{)<ۗ&O8Khdp|S/cbE ˟Gm<okji\Z6hq&|m^?3�>KIp? V 8diORK]1mkߕ%m?y4qQfqp;m$`;x~^1ߪ|GqPJ&Ӹ3F#wH]Mdps7 [se uY~.n!QqEىV3[6�3-|�U&ttA=*&c 7;NE|)ZvrkjIH]@Ksl8ۄy�{ŏzm}^!))j"|IQU)kq.9ؓ٣F*ߢKbL8q^(z ѱ`v ;=Ola.stѴXnl;zE9>;<BZm_%*-4"SNɌ\+N."',hV)SM6hp}TJ+IdH&S [?+\F?)=$z?#>8+i!}Z$i~ L[tӢhv$Mz~*؃mX̗$K3e'c;"#*'/pN9b|WO yeҊ\5xҴ<mfR@cגyyU˂]{Ϫu-L׵= 7Ϩv{w1c=6<۞]EO)d|(BՔQ\E,YN͉;+{*ahc[Wn=o׿t2f߅ E{l`|=8Ã/y:̎^X'GK M:NCORGJ@7i`kA>| _v6yYiMd-qo9r+äᒒ/z:^@i5!9=53Yx4]c[EEMSDy.wĮyM-^.W7Ǣ$<#l$T7&QےD׎ *@y -$ASV9 |'N˽V8 ;_Z劫DesHk!6Ϗ Wö؜ᔟ5}sm^۲AOOQ٥gҺTpL.>3{)܏OxeE_"�Gi7#~Bb<p9�Nj*9Vrn0�8oTe>qT9&Vվ&?W<󊏻 )Ov]|PrKC J�,6WY1m:^._:&NtDw0I8`/Mr%:᪂�CCROWת.S=c{yqw+ٗAXW KzidY QӨڦKQI=[ yr<7 *H]mBw;~rc]g^M+JΆ: &Z袞Q#^Z0c=ӭ\z}ܲdV@umKB1UU-jpǒ;n G+~WOS.Ѹ:*Y8|.q^sti%Ê/T#8W}~m:Cg{1&^|Oj{8?GY'^y|+W/4Z 6|bnA#-�@Bcx3 %d"k%LP1 `dIN'p7IkRJ\ AumaB&*Q;DVkN_L�?n 鲂%֟|(QEޣ[; hm-]T<%2:Vnlgs}NEMUwR>GQp'h眛#=8 D;,h$oZ&9űh`zᨪm$N6|iv)d[`n6pViM<x}L 9伉hu::Qc5Q4Jhik$y3;7yn(6t߷:cG4PjMS%TA<l?X vd{}n]!QO}Fi$˃$Wэo4 if*X} r*]6PMsKTvDjZn 7Z<ܧEM5UBIkn{d<l:|>68lqKFk|2uՍ}O_'FKvdTnA;n0Xʱd: pdѩ“Vh"s~*\2̓uYbh5zƲ9PG#e,)o7=?+�R9PQꁎ3-tk!Ęʢˬ%SJn.H40? 6ֽUu**K07Qn 53+qa, [DبuN]4d?"FwǛJ Vi۳I* 5ՓjOs�*>bǍRD767`L!=�B2͗ 6:>sO{>#R%k8^ݕVl6ʙҫveѺVio�uY#'6<Xm>Vjۧ>AN0zI˶9d˒^WHAq)b&{< k^$4t6꼔aUPum&efUPro.~_PX&ܺ_ff6cXrjvo2#{݋Y疅I8I?xanQ~C$p=Xls�B Gl?+ ,+g ?U*cL�~T>.=R&ؗ>T D_`ݟNJmbEq3e8O.e/4{<?՚[񪗷}Hc<tϙ\[dRq)%9!~ %LVwqn5H'+GC �ۑN[3c.khY _r^dŗkpY9k7KopvI*es2pۑ?pBS�*>m33*cC  414dLz]; TC#dWܕKRr6dGW麌5Mc$t.ּ(Śx*)uD|~3^~W,jY^]*QGM%Ζ 9~etO9I�2Ђld澺ZQ:S,H.nmc6G1 Ȅp(֬S%ҀER\��h 㝕&M˭3\0 v-{Xÿ0,E21S/eDm6�Z9ǵ!c|i<u/+Yex(dYr@Y9/DX9ke&PUHZ *Ѣ&YQ/dQJ6fu dq�yrvZ:5 -5Ze kK@]tdB˓U-6CVctZu cj>fP>`FY3E͂ ۾E U{ q81}HM9U4|B+Xh##$ÀSE`>}POzzᡩ]F_kn;cO9B.J~! v1ߒvv{͢׸AG=h s퐝K7; p.֑p*I 7=UR!ƿqqs 78UDmE5^$|0~mo쌒4+zwCBe|clT4H s|^'C&2YӛPô!Wj`yeÛtΤG|pZ鮊 Ya3fG7kہSF_ Gۋ*dCV:m9q9k#n|U~ �:=R=:N@$yh$ᣪ{`9Ԡɫ`]03ۺA9敔zt%/Vc${ԄXl,Qd(S L邠r#t'6�D uFA5ōh-,=-0EXF r*4\#O2`u;dB ƒ5fEG J4m[ ,R3<d(c.z\ $c*kb-c,%岗 d )c7$n)2evB&"{hOIp0-1x+xP)`iƟkTKߪ=Y=/|=0IhsGW`~c_%0&ĵLdsHi ӣ4؎cvj$]Axv)Cr#KK +!I9&' <[_Hi hB q0&a<FTI{%֕e9]U9c/ؠt 7 qa�䒶\p}Yk> ?49SO+Sl<^6nMFKee9嵺\%$+(9I�BBHU8oR=V$#7ꕰYmrhֶq$lFяFֵ?j i>k̍!+x{{x6 Y .l X)JD:&$LVыG<EX:QTyc>7"\9*49T2ס<]R`)q&`n.<bv#A$� ' ڊYRo{糯sdΗ< wEy4]wĖjy^ݳ¸W+iP�j_Ad / ^4J ,Fx�/2\Ώ mh >bmmըH3"#\B�Z}5j~3+l6O,sZ.%C�)zv>0sJDŽc^r Y|b:VGN'0GeF\kL!ǢPuAB+0>PD'4[GCAאAs[y*j*#>6QQrQlon\nTmeRFgCڋnѤ=>P{VeJZ>#9{9RgVų[_}s/p]^QN_Ye$qg1hIG^r%qd֤G,Q:F'yj5<ϸ"9UL{$\2{'+F}DeY#gK MIZ>KǟY 3H,)-Ƚ82TN1c{{0U0xnߢCQ;#VPfpVnv×}RweXhէMI!oi BG6OK}g` kc`.J 4e|pBepllisy�Z!j#[]l\E�#3`y:R,T<I~<Ln{�+.X'nV\8f Y,ΑttLKLDfn8ԅ^ d|#L0lӸIfuƞ1,>.U~]-HǑqZ%dN{Q8j:xZ1;'&�yy,h%γX/A%k!y+.hHtM¢>3i\IUs!EUQBڨ-+C˸]d:gɂ[<1qI~Ws2=/'esI0gtonq 0F}y+HhdmЄ5QrDb):{&hSwǪt*{ $+#pUK]�v2C.C!u<dvu٩],p90*2)uLVh�Z!Wo >?lo7~5\ja>θn=n(W>赛5cdle\^ݢԐ?N'܆:  ESEnEzC4fOi.yzX(=J'ɝ�!|sIoUc|镔t4Y]`;-TEtf{n=M3ɹ٤kaWdn&Yجq]kFF9Tk7Cd%ɎEN06)CAe7M3Z󈯅hQ8rI$Gb$X7LD(>x`lo MtμZD~YڨÛs/7 [R= ''n<Ȓy%.kq�{,?bmiTˋU@\%D4,~JLn i ; ;H,c; "˞s]6�4  H8Y!q'*DH`+Dj>+]+ְ]ג)> k оY*vmsZ#mǼ-&uQTjH%#}9MEu<"Bd,x>!6�snre Gq8~$ԓGFڀ*lvDfM&3X-fZhhl>s|B,7Gv<ԩ>rkKGNQA.13{ П3-7ZҨ+uWlNv.y� $V Kiϵ]0; 괊Fpo8|QR�TeZ  {Y%[ڍeRpKV; Gz.Je'E1m,}I<m˰pD8 H[ڧ;Ķ@T4]qgM o5( { umR5j<ݣo'?`o|XqNǕwjT:{[ X<i.Rx3ÑO\+S&HWC$}x<?^3>vV︊:<p6 M S8$)g 髖-Jaac?wC޾}OXߝ7\>@c†�l`۩`u"Cw&1nk)8i2[GwkL|4ҵJw#]K_le. lqCFvA\?s{e?K] ;_@t1# ݒĭ~#́תKK>03Ɂ#sȄoF&ױ&B<xob9p-!V!#+K uows,cvcl؂;uvixKBv<g!9R+,D@65h\c2K1^,UͨVP^t1Ldn5.<DT詋A>;)HmmhmMrcu6]6{m�  }PXjy䥐><uS9Ak#Í,ZO$8Xn l%Q|uZN!+F$spՏqˉ>K,\_m1.ӥv�x}^�ĺ:VD[�}`VY|N)mĿ2ǥ~M:I@�`śz>NMo`V͈Cb𡱁!H ڀ<\DIcVʁ463v+6#h�/ f l5tִߟ4 T|rL^ qS]W%IIw6�?ukq7�d쩒YU-|p �| ,Jٺָ{CfGN�2+W.9+82O|df8L qJSNKD]c)y@ı%O8o@VB$@�Cnٴ!|*y4.rQ$4jEٓ'à*?pOEh*4GT[M"܆Lߢbh?qmeZRMV$u0(!HsF۬L6�ݥbXx$�^7e$` lb@+FV�25Aa~n.-H18>+7}$`i Lr 䤨㖝w;�vj $4"9<Z6~ܑ? vt^ ֍^g:r/\>Khn/e X/j`UaA 'aD\ox=d+ i!qIYIMž [MI=tt}zp\1V%"NS/!&4]4aN<dE2 2ޕ v4UW.|Ѫ*/?m1QE2C!$\Bc�v^ !qTq]/hF[p+40TJxBxo Ck�mm%-@ g;Y٧PQ%tz4[8#Rl\+;)89+7UgUQ=[w1#K]g=̵vQ9�Fw]tFj]v:f67<3E=Q6ng-M=K`8Xȱǎ-GYXƆrP@զ*�,tykaC,(՝B{$C9Y(c ʚ2FN@[F;2cQVt)00ֳapMBIsLk)a�ҹ~>2l+uαTaa㭥^9^W _:XP ƥaDzCpNˉ*)C\2flDFEÇipy.@̽v/huPrA3I  ZC+@mia<B6]1|2+e6*fԂZ*ayaP%HK}b�Iƨ p HkQ6̲1i /Ak]&Q;`fOeю5|q{+ \6ttj l70\3sgGku(,&' |j@v*\F_ȼ7z +tPi\kHӪG\ƭl)tH"`1qY\i4ZiboKd"Ip~�ZD$۽7HX뢢jY}#f.2#5ϊ@Vt45-uԐ;p7U8,TRبnHїL qEl0&@)5'C5{."lVc|MOubjBfF^[.JDHdtzRd8?5<e,|o۠]v^,q`Ը-|g`$:14m?z:`-֟G,vF)}Nx h80/0FnyC A'iH/OAqɻʌJ4D8lW"tsӧ VѱF@WăZdS-)gB1pɎ=if+<}>:in}@ύB6PqN|=?X0rΈc[gO4xidXmV$a)2O Y6@-2o D {qcZ` KdHn['NΡ 78_FzN'ap84HMSD>QmipSU#McM\M+ba DdEYFuԪdbhV\JpCCS' hH:YU\h `�VQ%Bht@e|ռ9O!t4lY2f/.:* B֭c>uS v4va;@v=;=y%wQB"k@`q~&=ok,DIzY# +fɺ=Qu(lH욒ԨOk�{wh}ՠ9p^D.}U]6L@dqto j s5hkv\x,$jxua>,A)SqmhxQio!%.Rd7qa8SqELO#eN\/mRŠjyE�0dR,GZϼ7߸N8E7eVs1�Œ`הO__ ]mWrWFJ0%mqȄrlZda(Hhȱ9 c. \A597(bvh H)L(3ZFVʉz(bߍu͔*6w^8͖кDįiϞ[`ι5i3_Mp<6rH)ə-SQew+@΄Qx+F[�깲'7`Yi⮅ٲ-ʄ՜cM :-1tY k]$lഄ4NWA|-6טӣݼUǓRͻK;qsuȥ,ι#^5Tc)A\6+c,@J4L f\UlKEh.:V)"ke,Q*6c&]Zscq!$A(8c)tXv׌9:~`hd`8[E\H&�Set 0چWHtwQ UvWN@ZXQ 'IHh-JY킷ěe؉hϪ:-īO;뮨ѯu8& |M&y/<UũRF'FOb.T+uiSST ZwW7HdMl%$)`{KO"'>)cp},2F%ch1*KY3Os Cٕ8cDŋՅoǢ!eՕN3c}TE9# Զgop38W�`E/ Dݷ_Zl 4}$IF@5�)WLLJzp{3UкmYˆHX+ .IeM^ '2s\dp& G;9Z:LM4EֲHsEW$ӽ} ^'.ʪlq {%KlӨS $yT6QeCLv 6HV] G0j*mEjc\ɣ)Eٕ<Pu ~MЦG8{]#)M2>jxٿ͞\6u֮}ďN(pJWkQHHR :<¬Pe�(_Rx8R,[FХƞS܍dU#}hm.s4t",;,13h6XK IiUzϡ((#,Vآ"q}^cFMQ4'SL{,v`:H2KԚ[qVd7KQXbhO hSq걩De;4[FKWӢ-JS< r5tcP]qPEJ2U8}[ZgYUFkyt}gh(Gw46]?K,8lzhix$vwҿ00Ĵ^nF۲l� y"I \,jZ Zr)$Kg6ֵMSeov/(]MNTn"yTU#yK�ɲ)Y$M #|7@ɑ EX(dxrQIme&&] +iW mvP/KE$e$F6Fֈ2Z#G%ϒ>g)L ei *ML*T,Xi6I%*f*Kᖟ69λJ G(X A^$ 6[sOm )j류 )ȩGHI' f탈왎ngLz65 .V5RFS,Z ׯpE%ɿ$~XCP&x2LQ ⥰*5sd.oM{' iT1cl~Sˑ|jmj `cX`ɞ|ѓXsUb%+u}AIʒs hU@6M@HY91 <e)2ac+9Bc#dIpmtat$X`^ŠuX\.�R4FJ-ؖK?i+H1s*B-V샔n&ͱT+G9L%uIY81eOSW`74Mxc8qddMudhI.N)2BB1}]RD3p'JQ㏫ₘfG!z�@G"MVa4@#SfEuHhyᵚ"3�$rwk1SD5Ǎɜ͒R6#l#R-i�YNOEU&"ž9'p�a4ti> kp|NEv }SωRk)8W˖%&Wy>\2S"WeZtPjYf�$z.9LQ, "vfMLF^ѐ B1R-w0m3NJd@p\vӕ(hk3GV4dh4j3Mr\sW3i:,Tˍɲ쟨x0;$؛9sĵRt#] !KysUElໝiS4YDx!c;H:"1tiXln~+tD`M иpqfOx=248pwGF893O<ڕARH%o(2Gi#kXJNO%hJ,h6HQr!hi�eD wTZA@�P9ZXH(0HMq#pdZ+6XZ v w.ZSG 2D]k(! ε:Ji͍b3~ɒk}7ZLn앝O%,}BTTHGo.e˲IL{Q_Q.\Q6yL@E,mCJд8qdVt%W +ݹ6ZEMi\]තYmq 8 :u Ii;+uUNi7�\JcTsvyӓ M+,).B˪/(-(M@ dYC0cA*0fТ5'<aOrM#y.Ifi:rO%'LM(H!9}⪑2��J4g$B.|IFBV RV=sMaefk p68S4G8(]G>儮Gk�pT=]nf"T2m)4lj$kc)C##ZD9#wM&9¨22V hNJgfFڕ#�.Y&og:dp+j u\dk"s N_i%Q.7<O;pI# y|F?1U<R"Ǘ02ETεlzCOD_X$D.Z]1-)!m6_E$˪1D24aX3$ym: -{(ۜrQD@9@\,h 6ra.IE4qN%!7%'"9){]jVM|, ЊJ/cjыdk5evfZ<9)DF͐LР@;.IKH5GU!3R%#ETѴ h-`pN):/x endstream endobj 9 0 obj << /Length 151 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf <68656c6c6f> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 10 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 9 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 14 0 R >> >> >> endobj 11 0 obj [10 0 R /XYZ 0 841.89 null] endobj 12 0 obj << /Type /Names /Dests 13 0 R >> endobj 13 0 obj << /Names [(__anchor-top) 11 0 R] >> endobj 14 0 obj << /Type /Font /BaseFont /704ebe+NotoSerif /Subtype /TrueType /FontDescriptor 19 0 R /FirstChar 32 /LastChar 255 /Widths 21 0 R /ToUnicode 20 0 R >> endobj 15 0 obj << /Type /Outlines /Count 1 /First 16 0 R /Last 16 0 R >> endobj 16 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 15 0 R /Count 0 /Dest [10 0 R /XYZ 0 841.89 null] >> endobj 17 0 obj << /Nums [0 << /P (i) >> 1 << /P (1) >>] >> endobj 18 0 obj << /Length1 6908 /Length 4033 /Filter [/FlateDecode] >> stream xY}pSWv?62A`_"[21F%B_DXl=[JlIphw3$. %;!t:m&yS֤;[2tgg2ifۥ@;ddK&b^=%O~{ߓ �VChP4Z#"? kF&FN?�~,>"|@ꬊ34Z1Bh{Q.G0L^Fem;(D9Ҡ&*rM,4.(؀tagp oO$Nﵢ|*HbtS�(=:|4Mhoޝ8�[ڊM-~.Q-4os 0]\Eu�jsyD0ob\r3;>z؂ VAUe kUBUEQAʌłP<QD>.oUg^lOoƞKۻkM5^U}zJ+y9w$U-';q('7h7h̼Xg&2s#MFsQ3;J³:Ū<P/t 5 dB+JvW0ʦ: -v-t1pPHgm Bo ̗L ڈc}y-XO^^o-}'յڀKYr-++T޿Oꗬ/ha߾6VBxz^:9ѹ仙̻;;z# yGԝpDcjo  PvK "=< $44Wk?L�H#5jAP!P۠[cNvnc.:=Џdhi 6`Y ”p P W\Ẃ0Oo*  #1+VF@9iUp-H@i렊D8CSp=<C~`�6 U ^VaAḂA/WK'djfU&_-|K ^ uc ^ W㉉dt4nDݱa+m+E<*qH$! 4t>bI{㈏b0 Vl"2uҨ$%:etzdt'7/׈H4 %Q axz"&FQZKCg@6QaI[2(%SxnmAgsQ}G]4$Y t2Ch|d× FFv'q׿N))48JB0C41MRM%p4V!#[b[Χ# 03^aG:oX#tf;vu:JiK#E!68?V$yO+:#T6%Ե)|\YO3h+1! .g I %%/ca)BOfba)Iz]'!]y0+ZT:`(jbK*u{k~@gooop;t;n\;@=nG hNJ/$'Ƣ,նґx~%4ӱPl4U$x4{%Gӡ4GGdD<d-Z1'#&rqקe'aIZfcX˷ |[p]/.{x�c+V0 Ca+Ʋ0BҊ}y/p66.3ٱ[4Lnncٓރpvn`ø%*$g|GIqDw7;Dɯ}_3̎dI3!Ɵ!u n8bDRJZ؉G99XېQl Rj8MSTtOz\])\ y?(1GŤ?Io~KC??w 7彫Hʠ1#Xx d-"kyKgYI+97sdrdw;OJy29OZ 9s8P, )A|dq""V5 ${/;KQBt`o^A5*>Fu4J`yS, *a:sx[ *$2#X}C4wȎ;D;풎DcMnWng\?xr>| /r)y E2xqы*`0yA]B7Γyr|`?OPfznZ}v{ӹi WH{me;qzR{rmRUjьFlծJ& ua{*C}k|4[旨NTe宺A`j7|: :; +tl7՗JIP_|Kn{JJpރ{O#2K x-Ϭ.u\e=-sB^y/7<rv֘Ća:h R_$u8e9RHʒ| xgOg2RP*k"Cr�[t)AВ ΀7p9m=-mڵsƭu6km7U?%V+ˍEzVVk+HMAYIeB )V4JM;j<ikڗ46Csm uTC@S1@Ox{o7qa5 f3$Hh$ :o]l kk`Eؒ74#~5VVU;Cat@m[. 9muFp\Ͼ6keUX eUfUlU"o^+-ӿ4DTD'bPJ$ j}`M7uԕ fC!̪Uل= ~5{Iv iR__]4B&si`Q@lgf0<lv% As}z&{EjwXtτ!̧Y(D\,fה]�ץh;fG-†d \(<_}b 6Da<NTFʑȝ|p;a)1rpD(!:xdbR<YΨχ(dc aels:ԙeFr#G_jzhk#re]9B&l E@K-43N;ߩ`tj#4ߔzL�*.lmXʺj= GYZ5S?> y uJE+H5,;ٴLDN9`_5vSebg\RU㩁4b~/g^~Qb^?[s %+eB7Le1-w%nb7E7Er ,;KM`#B&3<c3v;4+Yoxڼdz͵<3V[_یHNi5�=="=y (Cԏ뛮&y\w61óB3,bb<f0J1Nf@$ u#2[;b BQj6a<e3#5/f N~y-eЭ O@FsU? c4]/b!~k/ p?Gî97Āo,#|S_:wS0E:a~ea7S|uB;r>J8}|O_ž!>Ӫ̓1.JGH / YAZ5W*h?|]i݀9U!o}5Vi _s FA5j˴?~,$uZCM qo ;lHnH_ug endstream endobj 19 0 obj << /Type /FontDescriptor /FontName /704ebe+NotoSerif /FontFile2 18 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 20 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 21 0 obj [500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 535 500 500 634 500 500 500 310 500 500 577 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 22 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000460 00000 n 0000000524 00000 n 0000000575 00000 n 0000000847 00000 n 0000000951 00000 n 0000001248 00000 n 0000022898 00000 n 0000023100 00000 n 0000023398 00000 n 0000023442 00000 n 0000023491 00000 n 0000023544 00000 n 0000023709 00000 n 0000023783 00000 n 0000023909 00000 n 0000023969 00000 n 0000028092 00000 n 0000028306 00000 n 0000029668 00000 n trailer << /Size 22 /Root 2 0 R /Info 1 0 R >> startxref 30582 %%EOF �����������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/cover-page-front-cover-image-positioned.pdf���������������0000664�0000000�0000000�00000032330�14163570564�0030675�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Document Title) /Creator (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /ModDate (D:20190706171126-06'00') /CreationDate (D:20190706171126-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 12 0 R /Outlines 15 0 R /PageLabels 17 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 842.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 2 /Kids [7 0 R 9 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 267 >> stream q q 297.64 544.25 m 595.28 544.25 l 595.28 841.89 l 297.64 841.89 l h W n /DeviceRGB cs 0.0 0.0 0.0 scn 1.48820 0.00000 0.00000 1.48820 -145.30785 -411.01070 cm 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 cm q 1.0 0.0 0.0 scn 297.64 641.89 200.0 200.0 re f Q Q Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << >> >> >> endobj 8 0 obj << /Length 303 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 192.5425 777.054 Td /F2.0 27 Tf <446f63756d656e74205469746c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 746.406 Td /F3.0 10.5 Tf <636f6e74656e742070616765> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 9 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 8 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 10 0 R /F3.0 14 0 R >> >> >> endobj 10 0 obj << /Type /Font /BaseFont /68f192+NotoSerif-Bold /Subtype /TrueType /FontDescriptor 19 0 R /FirstChar 32 /LastChar 255 /Widths 21 0 R /ToUnicode 20 0 R >> endobj 11 0 obj [9 0 R /XYZ 0 758.37 null] endobj 12 0 obj << /Type /Names /Dests 13 0 R >> endobj 13 0 obj << /Names [(__anchor-top) 11 0 R] >> endobj 14 0 obj << /Type /Font /BaseFont /e13b8f+NotoSerif /Subtype /TrueType /FontDescriptor 23 0 R /FirstChar 32 /LastChar 255 /Widths 25 0 R /ToUnicode 24 0 R >> endobj 15 0 obj << /Type /Outlines /Count 1 /First 16 0 R /Last 16 0 R >> endobj 16 0 obj << /Title <feff0044006f00630075006d0065006e00740020005400690074006c0065> /Parent 15 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 17 0 obj << /Nums [0 << /P (i) >> 1 << /P (1) >>] >> endobj 18 0 obj << /Length1 3744 /Length 2184 /Filter [/FlateDecode] >> stream xV}lS?gqȇB̳ώ?8$8g! (_l??v h-Z@[>P"DcZi4iiCe&MEڴRHB:f{{ �dB$SZރ(}<53=,:!G�%]8gcB9MxK$nTڧn"G3`h6;:|C:ړ1_a @Uw.Fj@E@`v)@VJȠ3賦T+e>C l�+@Ԍzz_㈃<L^U]xL5ojl sWwK7oL].|+Q(kdoPzSV=sbh kE] `$T͒\A*)KbhE* ݲcf*^מdm=RAc 6sB9sUPkr}5zc$5 bMJ5ZI=`$x١'~:ꔿ39 ٯsW }٠ciu; mncQD} lAw<iLFZ֯''xuHo^ΈW/Dh@t_8cWFOpˇܘ=so)$'v5I9yzzyuKxklu76Z:[[O᫭_Vbktv[s{^~oAJI[4Ŭ`(y1A*u [XtKӭ ۃA-6Ƈt}:[kf‹Q_ck3=g.Zݣ_> s4,jZ|շ'[qZ4s$&:BM77Dyg\weo*?mB3=(ϭrTWI LRb*SeN>.|r콓aB]wsVn<^]KP&jn.e%!z:H.Yj|j*hXt֘0Z0[hȌlПԻ .=[F_5<ON->5rwTf\kEbo^Q5 ~ѩݴclUfޯlr:k7ԍ&QwgYwԯ:a!ݹID?n(N.UKy5'8F:R[ $s& HO�;}t]iN/\ Xa0=rH9C7q6$?,d,u e¨B�Y Gq]Z<8::,h E4^޾xC#r=ⲩϸC ) ZE\G+8 'x@i0[ NC TR ΀jQpC BIWC uD闀:)5sW'% ^ Ҫ॰ (\DPp-$R20{ ^]t.F _xVˁV ´+x<&ffx"zܭvP) ۗJcPs|Y>6!3XICFk7 8*"0! Ia;`UNxlyz1FļȎ Ov^VS1G,bZdS!O㬓}gęie=.#@vⳆՔu%4ʹ}t&)9$b8{Ӑhkj zedl$ aVZe$FɣLaDٳ5HdGkKlkɹ]KEv:HXK cͰhchC(/qi+b0<3I+*x..+BGD\y\߁ 7.,r<)'gI+q)Ge[2u.?K_YVz;4c! '|:N,Ol_&FiaùaD+-bJcraJqHC+Z+״ =R!/cDqWE5602>X{e2g1.r"Xx`�+΢|Qn~x/.>[x6Nhe˺ endstream endobj 19 0 obj << /Type /FontDescriptor /FontName /68f192+NotoSerif-Bold /FontFile2 18 0 R /FontBBox [-212 -250 1306 1058] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 20 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 21 0 obj [259 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 767 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 652 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 526 1000 570 1000 1000 1000 352 1000 1000 352 985 666 612 1000 1000 1000 1000 404 666 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj 22 0 obj << /Length1 3620 /Length 2268 /Filter [/FlateDecode] >> stream xW{L[1 7b0?6~G  .5v+~id]˴Hٲ,ִ(ꪩSmդIJivS*ݢl"5}BHʚ?sw~w1@�@fB`òD=KU'GY|~ @\ srر+ M{uS6XďmftT+h# P4x3?d$/ܒbs�hC^x�(6)_(�M">mx6*zЁ;VZ۩6hZ[aSz Vi.)%:Y:jalx`|A`rjΝr̝3)5uZYS&i82ja^?tU똥W:nۆL哧7>i* XK*&_"[k|Srts] ,Dz*x&5DRRT~vtΪ챶+uڃϫ:kj*fgWy߿u#]_פtD+K)pA@ )Hx["kivu<]ﻮ[6Tpxvxyiɽ7_;` |moV?-ŲV|$`Jh"?3$9TJBExL_QZyFp.Ob ArY+/m(*e U:g5BjoQVTtwS9sfuEgTjL l@[]fE[jd>|)3Τ6bSXGAW}_mΤ5EVd33jӎs6B$D+dKcGϻk=ԩOMT7T[̜]gdUfT~oibʻ7tjdv8;f� \]f-VgI][%jal]ئE tnČ)ڮMI0l7o/'8NEL04jW2M}bT(o=֝8`h,Nݪ1ڀ2kd )K#U<#z赵7#%nᮡ*&>w,s^܈oD"ףv{:kj_( ٪)]nFRBDIvW΢6l<rkYnɕS&^֖ģ ܕ#BW ;g{ z1jomCcI*/j>"a+9sk:S>(żۯ?R:ZѢ.|rv&!$<R>d͑ĿCTiiFW}-_i71GE�NNGrxIZU|w?J6~d‘I}Eɳdox|BI.Ԃ[$ܧJR(#6;&C'(Is4FC7p Z2J6/_%B;V's"N@DC"NYKq AAD)q)dKACzE\YRWCD䢈AMg" *j+V*WqQϋxhD< Z .* 0J.xJ~/J5"Iz'^1\WBK~ LόCQfrg9z aX` 4㏱:~ O]>**X9,n0b!f<0~bx10!g[وl 萅p(r]0z VuS�- %W3qr/df+SA1(,MޣPp2,n.Fg;BXbE8aXF,oKǓ{o)86^!|NE}ză^_0#z*ֽm/. {@%,'Bم{72X,l7\!7g\$6BS؄DB&cގ_n<$x1G<abnL畕c@ܖ:}'<F8G1:֐QT,ts&嘮0›8RlU` \B_Aer:u ta<%"d 5c,IQcod}쎨FAMMQDXx=Ї?!E`>s*M.|~wza.dz R!y4 ?룺 endstream endobj 23 0 obj << /Type /FontDescriptor /FontName /e13b8f+NotoSerif /FontFile2 22 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 24 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 25 0 obj [259 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 562 1000 492 1000 535 1000 538 1000 1000 1000 1000 1000 1000 645 577 613 1000 1000 1000 352 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj xref 0 26 0000000000 65535 f 0000000015 00000 n 0000000268 00000 n 0000000470 00000 n 0000000533 00000 n 0000000584 00000 n 0000000856 00000 n 0000001174 00000 n 0000001458 00000 n 0000001812 00000 n 0000002122 00000 n 0000002292 00000 n 0000002335 00000 n 0000002384 00000 n 0000002437 00000 n 0000002602 00000 n 0000002676 00000 n 0000002825 00000 n 0000002885 00000 n 0000005159 00000 n 0000005378 00000 n 0000006740 00000 n 0000007866 00000 n 0000010224 00000 n 0000010438 00000 n 0000011800 00000 n trailer << /Size 26 /Root 2 0 R /Info 1 0 R >> startxref 12929 %%EOF ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/cover-page-front-cover-image-unscaled.pdf�����������������0000664�0000000�0000000�00000073720�14163570564�0030326�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Document Title) /Creator (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /ModDate (D:20190706171030-06'00') /CreationDate (D:20190706171030-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 15 0 R /Outlines 17 0 R /PageLabels 19 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 842.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 3 /Kids [7 0 R 10 0 R 13 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 54 >> stream q q 287.0 0.0 0.0 406.0 154.14 217.945 cm /I1 Do Q Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /XObject << /I1 8 0 R >> >> >> endobj 8 0 obj << /Type /XObject /Subtype /Image /ColorSpace /DeviceRGB /BitsPerComponent 8 /Width 287 /Height 406 /Length 21479 /Filter [/DCTDecode] >> stream �JFIF�^^���C�    $.' ",#(7),01444'9=82<.342�C  2!!22222222222222222222222222222222222222222222222222�����������������A����!1AQ"a2q#BR$3br%CSdᢲ�������������4������!1"AQ2aq#B$R� ��?�V|B-!L, hIمL$ Vf jƑЕC .#Y`tu!gIrT'dX-746+cB} 0$!=�`4ېVƘ=7D 11P7 $&!PYSLD=eBlK-be&) N7@IcC2B'@x<�f & V!,qIȖ l+Yt"G41 ԀF�eD4Ɛ}C`T +C` *edJ)=`Fub:)^Af9h '*%J 48V V жD0ªE�#E(`'%7:2Y,R!kVASHI2@ K�vPP.xiƭ *@ &y#�] ZIS4G00{c6į(LH{]4ҴL2[JlI9H jhcT{V!j=X)o$@ĺP<X!XHah8@!)�P0NYej(((bʼn5�;,R蘀:D=/ <ExvyR%isӲricÓഊa%j�10)lK@{o2B[e!Z0!�U�&0}Vl#y& L&!�/j�]B�. } ?`9e ܠnCCAb@7zLpuդ; DvD5hXC1-@ꡀ��W:X PT&"hC%B<9K>efp@ x@B�!! -@ 1�7@1'`U8F7eH@[%Z@6C ҴH*LJ\ 6V3En(lR `z4@q B~RR rBk*`eCx(Q`xX %M )X&R�iϺ拡 i#h :8)V�V*0ZKcJ/P =RLMS<iL�$ۤ^8K$ qUJ}6WҌoa6An<1rϬxF<1ݙnsj%2&՞K\R磨%9knv"?U͞<>W4E+rбG91P 2`xȱ�.! .PCw)baCU Lt8$*2aFcU$3r JMPRI@ Yhpv"Har�vQAw; sq�G=^!}eQ`wx}v[gx>aK�&@nPw&g%ɳ,{U4�,2~\\͈\\F,8c( � r4CȡQ: M!PACQAFT*0:ʒ ܆@W9inʴ0]3eNʢEϫo7bCvWtui4P_U<aY7 6kYĎ~xQG/ܟC3cGTSoG\c�6ApRQèWTɵ(x<ZYC0Œ=7eʦ#뚗;sQ;E4uG${nI'$Y_ArT."~,]Y)m�j7O:8X8 !{BiMTkR�"xCBPt:2 *  Tctr 2R@3ź=-Ȑ/IoTBn xzezQAsS&�WN>1 dtbuě AsHe;z=&J:!cK6Tq˭{iqlLȻ�mU1l t'$ަ|+S \ ~\} rpN}X g5x-8qixډ[3};1]GҚS0Qj&Za?E{x1|G5:z_⇓'lhcMVOT x=.L)ױeFBĠ@EašۢG9&@˒tU$лP4c=x>ʒ�N1Dr49:�QH lE!*9I_fy@t_�3 &#i4U̐�C]{sGtLE| g63x^^$,x> ܜ][{#RIukGuܔI"(#c/%ZsvVyib9;.6Sj$ILkfyh~`i<Q #<WL%+MkJ< 1.@0 `nR; hCvSZEYLĹHH$Khq9:%N3]Lnz*-s0vuǴm] �Q?*;z-g^( 9d'Eqg)u*}2n`R#'Ro#m4H`JΖ#HwJ{]# \`6�V8~Z!g}y9vwǢ;G0|dbw]˺5|+{/ٲ ޷S,ؾ&_NN.CDsԲA9!X'=;zLPn( q*V<hv900)h730f;Fьb(pvP߄�QH." Ah] sVM]S'ٲ3vØ╄r7r{:jO ydwgXAvF,it.l8/oTٌZ{ (}@P4( ,+! b*e3ҹ}Bmg/$Dᘅl4K", )nEZ(#�KUcl<]CNR&0.u!T�Q5o@ܐB]O~m}?ds�ᘉb�*Lo_Þ,J[Lds L?�ۉE?Sg>f8| AKmܤE!NI#].D{fnJdklf{zVK&\T" c(=HZFCuh� Fp hBQC@iE\Hx!P0]H(XڴZϼ.u#mBŪI.?o_l>C$�ͦEOP,G*U# u#A"3|=dY&'T,04]#H<P%n2ݺ<\5< Bjuh#NNGQ<ͳVtϓ< *IcgJ4駕Fny "ImG|zz5swjMGs;25qgG2ӔAAZ$;H"N41#�.TsE,nI40wR0ƚ@\6'* qRH l@2r1˧ˋ" Ӵa7P9>џN%Y=lu8}~E'q�4 6S#8i9L oɞV $k PH #xykGRfK$Sb@*!uc!.'L- =e>Os\WQ4Bʏ,ЕzȢYPi]QQ c�85駨/ss%I퍾?:^R>Iǧ?U<Z4;B~W(52|B*Er��wTItPMT1l�t"<IF=JddS8na|" }^xjx̙Io#Uɵhfkdow,z6~\i8�!iIBA0xE9%Hb Xl[ic t+C?̳ᒎK`AUU4 {W&t9m'\!^f<tLNӤ%(l c~iuvFLN_o̙dP8B* LG7uDy߲ϯY^?g$M{%OCqL:}[N"dps\^[|l/$;yO x?̟7 N%ma>.&۶�tn}l^MKѴy G[Pn.Ǜ\�bNLsIt~Cdpz[quv=;WբO{|%'HV �֋ mS29JmfgĚ;_lf�:iT�v4Vrbw4V\'ھYTje$to [$,8qjsZ2J}#tpu(#1ӂ{�Fy W7Ӹ^/<(EV>( )-԰섀sE@<Y�&kaT.֧ 1G=e` [w^lz#FPic{7#qN\#G#y񐡛.UVtR :SX0w~+zJ*ޟ6U_4aB[c/ ޚ﷗f+WmLzdrO%|ބ8 ŋTrnoW,lLEOlU 8m[JשϚkuMk8{WhmM<,Y3b,8ŹE~eŴunV `| %OLQ�/KդG[ƨ]h 6'�Y8%{Yoݙ*�M&ZIB7 gX |/A뿈s�ǩߓf4CM]6!4;OvSokwaA=^O]$TWq_q5laߠV]. +8F\*I ಕ4܌ʫe&)<G8R.v֋ɤěn%*u_Spui^;ş>Gz.\揕}FH<R) $v0ѿ)!wl$#c\A3׺@@pւy C$:sQ~N+]gߤӂ8dι+H#:s]jFMHa}Ӓ>|�Pu;4'- An \EFa4e>D$rJ,!K|)I:ͷTOUL+]ڎ 2+s勮kc{2d/gK|-VSn.�酖rWܟ$5nQ;tX#q`A8>e7c旽fPűǤEOQNcLo2\~+/X-s犪dc(ם_Mٟ>my5^BQOO(:J")6I{1$|~,O|޸/t69In,t34 Bc%q平_'6a%+H%- *B i5sfFnH@c= ǫ)=w_s~w-m!%5% f~J4wڦu f`dCB%R iȟ+IX%7HCZI%H5N]jMioGv%:Vqk+O:mƵ�5rgNMH(qeiLa vU`R.eAr g!6(6HŒ C ko>> ͅ0iB5G-_c\<3 ‰:�w#0=D] R6@Rc%Lq�ҹй&&0d˒Gev6eMG*$ :Y ff> '+,$fs YH׹6k6n/_=S?^2ڌ t¢Z�MtoH&l 8~v^%SKkQq-XCLbhٸ^saaaӷ(_4sDmVM_g;@Zzn|d/5;4Y o?J ? {Drn#` ܹ_ʣTNY;mi=Lt> 2M.̒l.zf2l[gM}62SgjT4e,gFZܓԻ ;=AOY!=AI|�HTTp2$ml�+fi <U  #IGG4&�3ujrn]쪀u@ aʄUnr . Je ,ܐ7@CR�Д bYEm$->4ÖXr,ZimOŒ9qS(sH-A-[3x$S?-͊ C- (13<6�G{)<ۗ&O8Khdp|S/cbE ˟Gm<okji\Z6hq&|m^?3�>KIp? V 8diORK]1mkߕ%m?y4qQfqp;m$`;x~^1ߪ|GqPJ&Ӹ3F#wH]Mdps7 [se uY~.n!QqEىV3[6�3-|�U&ttA=*&c 7;NE|)ZvrkjIH]@Ksl8ۄy�{ŏzm}^!))j"|IQU)kq.9ؓ٣F*ߢKbL8q^(z ѱ`v ;=Ola.stѴXnl;zE9>;<BZm_%*-4"SNɌ\+N."',hV)SM6hp}TJ+IdH&S [?+\F?)=$z?#>8+i!}Z$i~ L[tӢhv$Mz~*؃mX̗$K3e'c;"#*'/pN9b|WO yeҊ\5xҴ<mfR@cגyyU˂]{Ϫu-L׵= 7Ϩv{w1c=6<۞]EO)d|(BՔQ\E,YN͉;+{*ahc[Wn=o׿t2f߅ E{l`|=8Ã/y:̎^X'GK M:NCORGJ@7i`kA>| _v6yYiMd-qo9r+äᒒ/z:^@i5!9=53Yx4]c[EEMSDy.wĮyM-^.W7Ǣ$<#l$T7&QےD׎ *@y -$ASV9 |'N˽V8 ;_Z劫DesHk!6Ϗ Wö؜ᔟ5}sm^۲AOOQ٥gҺTpL.>3{)܏OxeE_"�Gi7#~Bb<p9�Nj*9Vrn0�8oTe>qT9&Vվ&?W<󊏻 )Ov]|PrKC J�,6WY1m:^._:&NtDw0I8`/Mr%:᪂�CCROWת.S=c{yqw+ٗAXW KzidY QӨڦKQI=[ yr<7 *H]mBw;~rc]g^M+JΆ: &Z袞Q#^Z0c=ӭ\z}ܲdV@umKB1UU-jpǒ;n G+~WOS.Ѹ:*Y8|.q^sti%Ê/T#8W}~m:Cg{1&^|Oj{8?GY'^y|+W/4Z 6|bnA#-�@Bcx3 %d"k%LP1 `dIN'p7IkRJ\ AumaB&*Q;DVkN_L�?n 鲂%֟|(QEޣ[; hm-]T<%2:Vnlgs}NEMUwR>GQp'h眛#=8 D;,h$oZ&9űh`zᨪm$N6|iv)d[`n6pViM<x}L 9伉hu::Qc5Q4Jhik$y3;7yn(6t߷:cG4PjMS%TA<l?X vd{}n]!QO}Fi$˃$Wэo4 if*X} r*]6PMsKTvDjZn 7Z<ܧEM5UBIkn{d<l:|>68lqKFk|2uՍ}O_'FKvdTnA;n0Xʱd: pdѩ“Vh"s~*\2̓uYbh5zƲ9PG#e,)o7=?+�R9PQꁎ3-tk!Ęʢˬ%SJn.H40? 6ֽUu**K07Qn 53+qa, [DبuN]4d?"FwǛJ Vi۳I* 5ՓjOs�*>bǍRD767`L!=�B2͗ 6:>sO{>#R%k8^ݕVl6ʙҫveѺVio�uY#'6<Xm>Vjۧ>AN0zI˶9d˒^WHAq)b&{< k^$4t6꼔aUPum&efUPro.~_PX&ܺ_ff6cXrjvo2#{݋Y疅I8I?xanQ~C$p=Xls�B Gl?+ ,+g ?U*cL�~T>.=R&ؗ>T D_`ݟNJmbEq3e8O.e/4{<?՚[񪗷}Hc<tϙ\[dRq)%9!~ %LVwqn5H'+GC �ۑN[3c.khY _r^dŗkpY9k7KopvI*es2pۑ?pBS�*>m33*cC  414dLz]; TC#dWܕKRr6dGW麌5Mc$t.ּ(Śx*)uD|~3^~W,jY^]*QGM%Ζ 9~etO9I�2Ђld澺ZQ:S,H.nmc6G1 Ȅp(֬S%ҀER\��h 㝕&M˭3\0 v-{Xÿ0,E21S/eDm6�Z9ǵ!c|i<u/+Yex(dYr@Y9/DX9ke&PUHZ *Ѣ&YQ/dQJ6fu dq�yrvZ:5 -5Ze kK@]tdB˓U-6CVctZu cj>fP>`FY3E͂ ۾E U{ q81}HM9U4|B+Xh##$ÀSE`>}POzzᡩ]F_kn;cO9B.J~! v1ߒvv{͢׸AG=h s퐝K7; p.֑p*I 7=UR!ƿqqs 78UDmE5^$|0~mo쌒4+zwCBe|clT4H s|^'C&2YӛPô!Wj`yeÛtΤG|pZ鮊 Ya3fG7kہSF_ Gۋ*dCV:m9q9k#n|U~ �:=R=:N@$yh$ᣪ{`9Ԡɫ`]03ۺA9敔zt%/Vc${ԄXl,Qd(S L邠r#t'6�D uFA5ōh-,=-0EXF r*4\#O2`u;dB ƒ5fEG J4m[ ,R3<d(c.z\ $c*kb-c,%岗 d )c7$n)2evB&"{hOIp0-1x+xP)`iƟkTKߪ=Y=/|=0IhsGW`~c_%0&ĵLdsHi ӣ4؎cvj$]Axv)Cr#KK +!I9&' <[_Hi hB q0&a<FTI{%֕e9]U9c/ؠt 7 qa�䒶\p}Yk> ?49SO+Sl<^6nMFKee9嵺\%$+(9I�BBHU8oR=V$#7ꕰYmrhֶq$lFяFֵ?j i>k̍!+x{{x6 Y .l X)JD:&$LVыG<EX:QTyc>7"\9*49T2ס<]R`)q&`n.<bv#A$� ' ڊYRo{糯sdΗ< wEy4]wĖjy^ݳ¸W+iP�j_Ad / ^4J ,Fx�/2\Ώ mh >bmmըH3"#\B�Z}5j~3+l6O,sZ.%C�)zv>0sJDŽc^r Y|b:VGN'0GeF\kL!ǢPuAB+0>PD'4[GCAאAs[y*j*#>6QQrQlon\nTmeRFgCڋnѤ=>P{VeJZ>#9{9RgVų[_}s/p]^QN_Ye$qg1hIG^r%qd֤G,Q:F'yj5<ϸ"9UL{$\2{'+F}DeY#gK MIZ>KǟY 3H,)-Ƚ82TN1c{{0U0xnߢCQ;#VPfpVnv×}RweXhէMI!oi BG6OK}g` kc`.J 4e|pBepllisy�Z!j#[]l\E�#3`y:R,T<I~<Ln{�+.X'nV\8f Y,ΑttLKLDfn8ԅ^ d|#L0lӸIfuƞ1,>.U~]-HǑqZ%dN{Q8j:xZ1;'&�yy,h%γX/A%k!y+.hHtM¢>3i\IUs!EUQBڨ-+C˸]d:gɂ[<1qI~Ws2=/'esI0gtonq 0F}y+HhdmЄ5QrDb):{&hSwǪt*{ $+#pUK]�v2C.C!u<dvu٩],p90*2)uLVh�Z!Wo >?lo7~5\ja>θn=n(W>赛5cdle\^ݢԐ?N'܆:  ESEnEzC4fOi.yzX(=J'ɝ�!|sIoUc|镔t4Y]`;-TEtf{n=M3ɹ٤kaWdn&Yجq]kFF9Tk7Cd%ɎEN06)CAe7M3Z󈯅hQ8rI$Gb$X7LD(>x`lo MtμZD~YڨÛs/7 [R= ''n<Ȓy%.kq�{,?bmiTˋU@\%D4,~JLn i ; ;H,c; "˞s]6�4  H8Y!q'*DH`+Dj>+]+ְ]ג)> k оY*vmsZ#mǼ-&uQTjH%#}9MEu<"Bd,x>!6�snre Gq8~$ԓGFڀ*lvDfM&3X-fZhhl>s|B,7Gv<ԩ>rkKGNQA.13{ П3-7ZҨ+uWlNv.y� $V Kiϵ]0; 괊Fpo8|QR�TeZ  {Y%[ڍeRpKV; Gz.Je'E1m,}I<m˰pD8 H[ڧ;Ķ@T4]qgM o5( { umR5j<ݣo'?`o|XqNǕwjT:{[ X<i.Rx3ÑO\+S&HWC$}x<?^3>vV︊:<p6 M S8$)g 髖-Jaac?wC޾}OXߝ7\>@c†�l`۩`u"Cw&1nk)8i2[GwkL|4ҵJw#]K_le. lqCFvA\?s{e?K] ;_@t1# ݒĭ~#́תKK>03Ɂ#sȄoF&ױ&B<xob9p-!V!#+K uows,cvcl؂;uvixKBv<g!9R+,D@65h\c2K1^,UͨVP^t1Ldn5.<DT詋A>;)HmmhmMrcu6]6{m�  }PXjy䥐><uS9Ak#Í,ZO$8Xn l%Q|uZN!+F$spՏqˉ>K,\_m1.ӥv�x}^�ĺ:VD[�}`VY|N)mĿ2ǥ~M:I@�`śz>NMo`V͈Cb𡱁!H ڀ<\DIcVʁ463v+6#h�/ f l5tִߟ4 T|rL^ qS]W%IIw6�?ukq7�d쩒YU-|p �| ,Jٺָ{CfGN�2+W.9+82O|df8L qJSNKD]c)y@ı%O8o@VB$@�Cnٴ!|*y4.rQ$4jEٓ'à*?pOEh*4GT[M"܆Lߢbh?qmeZRMV$u0(!HsF۬L6�ݥbXx$�^7e$` lb@+FV�25Aa~n.-H18>+7}$`i Lr 䤨㖝w;�vj $4"9<Z6~ܑ? vt^ ֍^g:r/\>Khn/e X/j`UaA 'aD\ox=d+ i!qIYIMž [MI=tt}zp\1V%"NS/!&4]4aN<dE2 2ޕ v4UW.|Ѫ*/?m1QE2C!$\Bc�v^ !qTq]/hF[p+40TJxBxo Ck�mm%-@ g;Y٧PQ%tz4[8#Rl\+;)89+7UgUQ=[w1#K]g=̵vQ9�Fw]tFj]v:f67<3E=Q6ng-M=K`8Xȱǎ-GYXƆrP@զ*�,tykaC,(՝B{$C9Y(c ʚ2FN@[F;2cQVt)00ֳapMBIsLk)a�ҹ~>2l+uαTaa㭥^9^W _:XP ƥaDzCpNˉ*)C\2flDFEÇipy.@̽v/huPrA3I  ZC+@mia<B6]1|2+e6*fԂZ*ayaP%HK}b�Iƨ p HkQ6̲1i /Ak]&Q;`fOeю5|q{+ \6ttj l70\3sgGku(,&' |j@v*\F_ȼ7z +tPi\kHӪG\ƭl)tH"`1qY\i4ZiboKd"Ip~�ZD$۽7HX뢢jY}#f.2#5ϊ@Vt45-uԐ;p7U8,TRبnHїL qEl0&@)5'C5{."lVc|MOubjBfF^[.JDHdtzRd8?5<e,|o۠]v^,q`Ը-|g`$:14m?z:`-֟G,vF)}Nx h80/0FnyC A'iH/OAqɻʌJ4D8lW"tsӧ VѱF@WăZdS-)gB1pɎ=if+<}>:in}@ύB6PqN|=?X0rΈc[gO4xidXmV$a)2O Y6@-2o D {qcZ` KdHn['NΡ 78_FzN'ap84HMSD>QmipSU#McM\M+ba DdEYFuԪdbhV\JpCCS' hH:YU\h `�VQ%Bht@e|ռ9O!t4lY2f/.:* B֭c>uS v4va;@v=;=y%wQB"k@`q~&=ok,DIzY# +fɺ=Qu(lH욒ԨOk�{wh}ՠ9p^D.}U]6L@dqto j s5hkv\x,$jxua>,A)SqmhxQio!%.Rd7qa8SqELO#eN\/mRŠjyE�0dR,GZϼ7߸N8E7eVs1�Œ`הO__ ]mWrWFJ0%mqȄrlZda(Hhȱ9 c. \A597(bvh H)L(3ZFVʉz(bߍu͔*6w^8͖кDįiϞ[`ι5i3_Mp<6rH)ə-SQew+@΄Qx+F[�깲'7`Yi⮅ٲ-ʄ՜cM :-1tY k]$lഄ4NWA|-6טӣݼUǓRͻK;qsuȥ,ι#^5Tc)A\6+c,@J4L f\UlKEh.:V)"ke,Q*6c&]Zscq!$A(8c)tXv׌9:~`hd`8[E\H&�Set 0چWHtwQ UvWN@ZXQ 'IHh-JY킷ěe؉hϪ:-īO;뮨ѯu8& |M&y/<UũRF'FOb.T+uiSST ZwW7HdMl%$)`{KO"'>)cp},2F%ch1*KY3Os Cٕ8cDŋՅoǢ!eՕN3c}TE9# Զgop38W�`E/ Dݷ_Zl 4}$IF@5�)WLLJzp{3UкmYˆHX+ .IeM^ '2s\dp& G;9Z:LM4EֲHsEW$ӽ} ^'.ʪlq {%KlӨS $yT6QeCLv 6HV] G0j*mEjc\ɣ)Eٕ<Pu ~MЦG8{]#)M2>jxٿ͞\6u֮}ďN(pJWkQHHR :<¬Pe�(_Rx8R,[FХƞS܍dU#}hm.s4t",;,13h6XK IiUzϡ((#,Vآ"q}^cFMQ4'SL{,v`:H2KԚ[qVd7KQXbhO hSq걩De;4[FKWӢ-JS< r5tcP]qPEJ2U8}[ZgYUFkyt}gh(Gw46]?K,8lzhix$vwҿ00Ĵ^nF۲l� y"I \,jZ Zr)$Kg6ֵMSeov/(]MNTn"yTU#yK�ɲ)Y$M #|7@ɑ EX(dxrQIme&&] +iW mvP/KE$e$F6Fֈ2Z#G%ϒ>g)L ei *ML*T,Xi6I%*f*Kᖟ69λJ G(X A^$ 6[sOm )j류 )ȩGHI' f탈왎ngLz65 .V5RFS,Z ׯpE%ɿ$~XCP&x2LQ ⥰*5sd.oM{' iT1cl~Sˑ|jmj `cX`ɞ|ѓXsUb%+u}AIʒs hU@6M@HY91 <e)2ac+9Bc#dIpmtat$X`^ŠuX\.�R4FJ-ؖK?i+H1s*B-V샔n&ͱT+G9L%uIY81eOSW`74Mxc8qddMudhI.N)2BB1}]RD3p'JQ㏫ₘfG!z�@G"MVa4@#SfEuHhyᵚ"3�$rwk1SD5Ǎɜ͒R6#l#R-i�YNOEU&"ž9'p�a4ti> kp|NEv }SωRk)8W˖%&Wy>\2S"WeZtPjYf�$z.9LQ, "vfMLF^ѐ B1R-w0m3NJd@p\vӕ(hk3GV4dh4j3Mr\sW3i:,Tˍɲ쟨x0;$؛9sĵRt#] !KysUElໝiS4YDx!c;H:"1tiXln~+tD`M иpqfOx=248pwGF893O<ڕARH%o(2Gi#kXJNO%hJ,h6HQr!hi�eD wTZA@�P9ZXH(0HMq#pdZ+6XZ v w.ZSG 2D]k(! ε:Ji͍b3~ɒk}7ZLn앝O%,}BTTHGo.e˲IL{Q_Q.\Q6yL@E,mCJд8qdVt%W +ݹ6ZEMi\]තYmq 8 :u Ii;+uUNi7�\JcTsvyӓ M+,).B˪/(-(M@ dYC0cA*0fТ5'<aOrM#y.Ifi:rO%'LM(H!9}⪑2��J4g$B.|IFBV RV=sMaefk p68S4G8(]G>儮Gk�pT=]nf"T2m)4lj$kc)C##ZD9#wM&9¨22V hNJgfFڕ#�.Y&og:dp+j u\dk"s N_i%Q.7<O;pI# y|F?1U<R"Ǘ02ETεlzCOD_X$D.Z]1-)!m6_E$˪1D24aX3$ym: -{(ۜrQD@9@\,h 6ra.IE4qN%!7%'"9){]jVM|, ЊJ/cjыdk5evfZ<9)DF͐LР@;.IKH5GU!3R%#ETѴ h-`pN):/x endstream endobj 9 0 obj << /Length 170 >> stream q /DeviceRGB cs 0.6 0.6 0.6 scn /DeviceRGB CS 0.6 0.6 0.6 SCN BT 350.129 361.6965 Td /F1.0 27 Tf <446f63756d656e74205469746c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 10 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 9 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R >> >> >> endobj 11 0 obj << /Type /Font /BaseFont /283853+NotoSerif /Subtype /TrueType /FontDescriptor 21 0 R /FirstChar 32 /LastChar 255 /Widths 23 0 R /ToUnicode 22 0 R >> endobj 12 0 obj << /Length 165 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf <636f6e74656e742070616765> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 13 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 12 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R >> >> >> endobj 14 0 obj [13 0 R /XYZ 0 841.89 null] endobj 15 0 obj << /Type /Names /Dests 16 0 R >> endobj 16 0 obj << /Names [(__anchor-top) 14 0 R] >> endobj 17 0 obj << /Type /Outlines /Count 1 /First 18 0 R /Last 18 0 R >> endobj 18 0 obj << /Title <feff0044006f00630075006d0065006e00740020005400690074006c0065> /Parent 17 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 19 0 obj << /Nums [0 << /P (i) >> 1 << /P (ii) >> 2 << /P (1) >>] >> endobj 20 0 obj << /Length1 4460 /Length 2764 /Filter [/FlateDecode] >> stream xXyPJ�qI E2@+C qÀ%�d I MNر;L2$MdO&dIi3=f:x6ӺI3IܷcB~zow~�-CUND.E)߯�$s̳y\hK#=> |]:r]K#! ~Ϡ6]:s(τh�%ϫz�8 wd x@D zom2U`)$A2@,5-!ywQ0\MI(ňJleY9JMx ,ȅ/X?YspjΡ-"=ݶªϞ.?]bbӤ/ů^<G*4T#QniT9P NqQԗ &9*ÇCXrüOd!~v]q941v$IN)fuRRfNQ6km3!08tu_k쩔N=OL416uOtFM|=r@E RF<EidsKG]^+w=Sm-*\y|tR+/r$SHu ϏNC 9Eu,\s w˝ -S~u걻?x.ϷuMj洊Bzoh7LҤ4Gdf ͓a^K%o_^yw|qEUzl W_|v{N}RLεVCxkTBiYAqWS_:Ƹ1a)9X0IV $0cq4LB^ ٌ$f-C-PQ,+tn4d.uf֨`]Seh]i7͜vv;j22*̍b&ê6`C`s؜:gd~n)-/JS)ҫb}GmDҔk$jϟlRז8&̓3UzfyInVQ*@=[6Ykt>zتnIԴ1TP P7ܖS V{bKGJ|_U✜b*_f F݋%-s](Qs]&MZƴ tm:jF5m:AV@p]B`z~ 弮$ ΔgIƸYYe#`fQ<ގe&~GNVqi'LY[j*{KSBCO%V[}B! Қ3޼:g+L1N*Y q~C8YJ;Q3x1NDes9w_q߄з [L!aĖ R^G+gZ?'\il+Ҵ *:@ycMM=r>rC|il]n."~<1F=PZzh〣&G47&SK m̛)Lγ4yb?<X!Qm' Lm6.rWQ%C]Q Oj9(V~ߛ߸BLq_c+KΆY%\ɦkjUnݹ *s3:,/MKS42,7酚ֺͯN:2f)w]D5wFmp'낽2}G>\wYb[%L67OM?)M>>M3eӚ5`QXa0R^u)hTBsAM5<%\π#@ʵ2$xuBaEN HJ,EHȧP0żԍ8rUo$|H>I@z-^<)GYlUDf7^+Wt"BईP"Ni)<P8 v, H3 %". bq hHK!sӷ$ВNt3" J'|")6l@U%2a4uz_So5]Ӡt3"S".=q90Jط荲fS '0DZ~?;OE!O3A;!+>X/DqGM >Y ~"qhsUD<8zPn  ÞoA|+o o`aȳ²EB7`t%./}Enҏ:.[D}|`{[3Y٘\Dxs,!%VRoTj_uѰ{޳b [b';HG  b| _EP|l_l^au=kubƈ< v~\bJ4L hF!8p\p2#AQ\onbu%(j^^^İՑhlܦyYǡ[;X c<2 {la[C9ęjv#͜ p 4/8/$σW`tjD簙-1`xOx1w wx/v׽*ȩYj=H&^;tbӐV 2|@FTj~s)?>)~ Z,$>_n�cQ endstream endobj 21 0 obj << /Type /FontDescriptor /FontName /283853+NotoSerif /FontFile2 20 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 22 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 23 0 obj [259 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 727 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 612 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 562 1000 492 1000 535 1000 538 1000 319 1000 1000 310 944 645 577 613 1000 1000 1000 352 634 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj xref 0 24 0000000000 65535 f 0000000015 00000 n 0000000268 00000 n 0000000470 00000 n 0000000541 00000 n 0000000592 00000 n 0000000864 00000 n 0000000968 00000 n 0000001265 00000 n 0000022915 00000 n 0000023136 00000 n 0000023434 00000 n 0000023599 00000 n 0000023816 00000 n 0000024115 00000 n 0000024159 00000 n 0000024208 00000 n 0000024261 00000 n 0000024335 00000 n 0000024484 00000 n 0000024560 00000 n 0000027414 00000 n 0000027628 00000 n 0000028990 00000 n trailer << /Size 24 /Root 2 0 R /Info 1 0 R >> startxref 30113 %%EOF ������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/example-page-split.pdf������������������������������������0000664�0000000�0000000�00000053241�14163570564�0024652�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.4.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.4.dev, based on Prawn 2.2.2) /ModDate (D:20210108021151-07'00') /CreationDate (D:20210108021151-07'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 15 0 R /PageLabels 17 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 2 /Kids [7 0 R 13 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 4043 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 794.5242 Td /F2.0 9.975 Tf <4578616d706c6520312e205469746c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 1.0 1.0 1.0 scn 52.24 786.899 m 543.04 786.899 l 545.2491 786.899 547.04 785.1081 547.04 782.899 c 547.04 52.24 l 547.04 50.0309 545.2491 48.24 543.04 48.24 c 52.24 48.24 l 50.0309 48.24 48.24 50.0309 48.24 52.24 c 48.24 782.899 l 48.24 785.1081 50.0309 786.899 52.24 786.899 c h f 0.9333 0.9333 0.9333 SCN 0.75 w 52.24 786.899 m 543.04 786.899 l 545.2491 786.899 547.04 785.1081 547.04 782.899 c 547.04 52.24 l 547.04 50.0309 545.2491 48.24 543.04 48.24 c 52.24 48.24 l 50.0309 48.24 48.24 50.0309 48.24 52.24 c 48.24 782.899 l 48.24 785.1081 50.0309 786.899 52.24 786.899 c h S Q q 0.8999999999999999 w 1.0 1.0 1.0 SCN [3.6 3.6] 0.0 d 52.99 48.24 m 542.29 48.24 l S Q 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 60.24 762.935 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 60.24 735.155 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 60.24 707.375 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 60.24 679.595 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 60.24 651.815 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 60.24 624.035 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 60.24 596.255 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 60.24 568.475 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 60.24 540.695 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 60.24 512.915 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 60.24 485.135 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 60.24 457.355 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 60.24 429.575 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 60.24 401.795 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 60.24 374.015 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 60.24 346.235 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 60.24 318.455 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 60.24 290.675 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 60.24 262.895 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 60.24 235.115 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 60.24 207.335 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 60.24 179.555 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 60.24 151.775 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 60.24 123.995 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 60.24 96.215 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 60.24 68.435 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 11 0 R /F1.0 14 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /3c7f81+NotoSerif-Italic /Subtype /TrueType /FontDescriptor 19 0 R /FirstChar 32 /LastChar 255 /Widths 21 0 R /ToUnicode 20 0 R >> endobj 12 0 obj << /Length 1242 >> stream q q /DeviceRGB cs 1.0 1.0 1.0 scn 52.24 805.89 m 543.04 805.89 l 545.2491 805.89 547.04 804.0991 547.04 801.89 c 547.04 699.52 l 547.04 697.3109 545.2491 695.52 543.04 695.52 c 52.24 695.52 l 50.0309 695.52 48.24 697.3109 48.24 699.52 c 48.24 801.89 l 48.24 804.0991 50.0309 805.89 52.24 805.89 c h f /DeviceRGB CS 0.9333 0.9333 0.9333 SCN 0.75 w 52.24 805.89 m 543.04 805.89 l 545.2491 805.89 547.04 804.0991 547.04 801.89 c 547.04 699.52 l 547.04 697.3109 545.2491 695.52 543.04 695.52 c 52.24 695.52 l 50.0309 695.52 48.24 697.3109 48.24 699.52 c 48.24 801.89 l 48.24 804.0991 50.0309 805.89 52.24 805.89 c h S Q q 0.8999999999999999 w /DeviceRGB CS 1.0 1.0 1.0 SCN [3.6 3.6] 0.0 d 52.99 805.89 m 542.29 805.89 l S Q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 60.24 794.676 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 60.24 766.896 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 60.24 739.116 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 60.24 711.336 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 13 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 12 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 14 0 R >> >> >> endobj 14 0 obj << /Type /Font /BaseFont /b34495+NotoSerif /Subtype /TrueType /FontDescriptor 23 0 R /FirstChar 32 /LastChar 255 /Widths 25 0 R /ToUnicode 24 0 R >> endobj 15 0 obj << /Type /Outlines /Count 1 /First 16 0 R /Last 16 0 R >> endobj 16 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 15 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 17 0 obj << /Nums [0 << /P (1) >> 1 << /P (2) >>] >> endobj 18 0 obj << /Length1 7612 /Length 4649 /Filter [/FlateDecode] >> stream xYtSU4M@M?(?:4miKi@&mmPq G砫YubqϠq]㺳# ]g@F9d浴k_y~�Epd`HzD> O}+�JpxPw#ϲHlOͻH ^OUHw"|Ļ'µ%1bmH?'`_")Z" kq _Gr~1/J�=(C9+&l ?,ġ ~!(b>KPj|5h?aAJ5it!]y}CK Y|Oo_p'n (>WFi�yEUk++rٵ{\{)v U@y DHԆʊ5kk "U#| q]xH7ҎxݙGU{*O}#dw\sَr`|uhPQG*U%58 Am wQ mA+:BSC|4ql|O]v3m9+\u5NxEQ_XIlTJ 3MCG7.R۰=}/?b~45(vs0E[a J`ȫQOeEM T]"qp=vq} -kWG4 r Iu3d j:rzD.k˿zChƱPh++Q,R9{CG4?9xᏢ.[+ ,*>yO5 ߒzk_"׭ZPl$p%O$FEH@em[ʼH}N=q5z)cq=z|*=9}kguK̖m/,zDyvQY.GG*/yQQl:�X#, YQ~Nud~9oWL˶^CZFo7K66dO t[BaH6w=wY/z]8#Ww{M֭9cO%ޠ{8y5W0Ka%?L0f6e,ՔܯK#Zmǚ?ٻ?W/i۲</]w.e+LOO\Jd {Kq+.'YAJ^IU/nJuZL yާskY<8y6~;6=kC\O�"t7T616|2Bw$OV-Yh!WT/"ڧ Kj}pyem6qh=WeDU׆_nq?Bs;ax2!A>smOђ4gw@b&?P|O+7\$rWb+W1t>;35a>(}w8#bQVV", *%P*8,::p}z"Ass @=Ocۂ8N%M- fG豺j dKIeiJY;" 8(%=)ޑ/8㤌~!<jHEVɸWBEƕO2<2!̣ 9)!294Xux:=2[2� yN&0& +H+RqO(2Kԇe<ÑP &T^S!4C~0 B7 tgFCa0a+n 4la#e G c=*(?~ [ñ#W#w88RcEiAcw; ̿q<eJB !l(笮 %.h4 kkpS(fİT [SJ3)L[0*xبƒs3G}EӋo Ux1~(@,̺ef?&vr? =~-V[Xi=Hyay@0â}B0+ԗCFeqxT$bfvK@,`2޽8k16j x`714b0(ʄyM0c⣱1_0=Gn2(bcQO�Gx0;E1c!T&tDs[LQk­h s$ 7$;HhwegpG}ww}{:ƎvюMoZ2DsF*£Bp$2Va0$°744B/"ё`:{%CG1oC]-ب0p žk2 o" }iqbیlC6cݴׁ{ <m$!ra e>IԏVdR2-£v40RԎ;pԃ7b8t=ض#m+[ہAƩ9;ۡV<TJEgQ{02lGF̏Digv7=YV\Qx^Nl�;)'ͥhctK",aHTOH7遰 ͞㈍1dRqO̹ FbQc48l :lm7Q<®U#z{ӜAO$m_ $8}o;hsW% sM?~/i}OC''>X%lˑlDtD7$8Iu`.L:'I<IIA$:$s&ӤnvZm(�%$ ٵHebKH&RhBY(m I>>B?҈ 1%r**YV2.AϲB?2}_2w(C|9Usw~' '^:yw)TS#Oy[xdg] 7%$߹8;YV$ U!2|ˬL_d+jw#ļ+Y̮9Nj3}eɷv].<<Tv\$U inJ/4<̭qfL2K8<eͼaW2(1DI#=)uURw)bm]} }w' yaiTpKf:vd.4FX){HwA2B((eO4mE_liCFEQ:S lu;{]Z[M6\G7_Wzjl劒b0_X =MV)<*<T%bss9E/9G/66G<MiF8)N,' P[^&XEAz" SˍW.f6V0b `lqǂ&72L_8VIranu$�Z/z}Rgj)0zRhaSDJFID Aj:&ފ?4~OBnqKyk<_*Vi]2bJY=7TIYW.G2*~th6Q=qTr_b|rxĊN7Jq@=+i=Avֆu[mB Y3<7  `2C?D;Ei`6Jμ53333="fKbObx~4VʸV`,a h$e W]Bĵȸ.,^D1TUz(@(/KS-m+:ڄ+LQ'ĈfIͲnD^&% ȫ$B5 ָǒ2'2yaJ(xBsJqoP*p dn/-4Ъ 4J\c!vɆ&8E&1 %KNk7W"[I]Wg(-ՆZW 7!~GyBg(r S^ +)O8 |Z[b@̝n  s9W=90gLVZ07Rg曦3B\#:T( .-a~m^ĸ~Ot/趍v_\tk7 { tJZ{0k]f}R <~#\wr9ιO xW0()!PJFB N&ج/if0S\ `bff}0K1VGsOo 5G$"n舛& Z(i@:ץpX$Zů韫c!Nz8<pHݟhf _ 7>RN;p_~GBϿ1kNx{ooc/[,Cl$?)l-禇[8ʢ;ʽ =8:3 SEZяh}"UMBOsvզ<㐓 /w<z|ͧixnh_XהTbvFu,9Xs eJL^N蕟)/$1 endstream endobj 19 0 obj << /Type /FontDescriptor /FontName /3c7f81+NotoSerif-Italic /FontFile2 18 0 R /FontBBox [-254 -250 1238 1047] /Flags 70 /StemV 0 /ItalicAngle -12.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 20 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 21 0 obj [259 600 600 600 600 600 600 600 600 600 600 600 600 600 250 600 600 559 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 623 600 600 600 600 600 600 600 600 600 600 600 600 600 600 612 600 600 600 600 600 600 600 600 600 600 600 600 579 600 600 600 493 600 600 600 304 600 600 304 895 600 600 577 600 600 600 368 600 600 600 545 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600] endobj 22 0 obj << /Length1 7052 /Length 4186 /Filter [/FlateDecode] >> stream xX}pSWv?=I?el c1-2 zؒ(!Zm;i23aMfMf;lf6ifY`v0%b^=B{={{ι= �, ӕ#s�t|Иlap|":]�KSL(WBrS�od`LoO(>uooߏEI vce&eJSD8487c,.6  bGޟ%R 0?I]b݌c0z"lqrMQjdگ| 0^�KMRӘ4g"sm#q2 =Pcڄ UByNjRM16+7lTEˊ>v%ſ v?kX^W{_Jv~lяμy+ZM\O~ֿhJɹYyoz63p:Y`X XELUb6!7qcBqe6:BOF߈<=7,s5?mu^\4&5m/~О_*6ԭ~u-;8?Om\&IiycȝPZV%<MM9W0QkLhyFGz0pg]TKMmν-+pAuzpZWb ϯ\R]0,3]qM+sԣm%"z-Zf�UHSVTy׿b\AU;v<ױ߫5'NNގ/&ZZ/dn :}./R3JmdSc }PV!T׶%O5luK߮HfR4Wۥ+ך.VI}Rs\QI N:xiavlѼa 鹷� #:x }rLZp h4"'fԞ6"^?1�BVh5Bf1uW__ؠ`>A?-x)?F>“ό>NYEFa"Ѱ(A)(i'3*.[.= r@1Hk ħ󠆄U<c*rrUTL(V|X+ԨxXm*^�*^OUڄ_/UbAاKHxLŗLŋቼ /W:Cx(I7o@ ">1AYW 9_ZC0C `lBF�%D`,jGd \.#~`&-cЋ<I,\# cxj"!FC14y20ze2D8!:k$G<bݒa9G#~# s48',菍#MM[͌pph2ʓ4:f s$;qx(nwo7<<.':$&1B<R�&d‘$:^ґCt4%M"9ȖV$);(v#,d2b8p2kNZ Zy%+ E*+2ZՉ`]D>.'`8ɇLϟ@,  az8$uGǒqDxT$ГHPdHnv#YY:z?+,dp"0F5Z.w hwutk3Dwn7H;z!W_/JN=^{hN38 O&,ܲx[X4DL GD 2 *br|2`  '@r<P4)d-Z0'C&rr'e'aI^fxE9#o)lfYn#yy u<Ph,I~茠UIվ,g5xvcB؉!|Lns^]cx!j#\s|xøe*8g|G&qIDsW>>3ʎdI3!Ÿu1n$e." A5|-D|ld<XېRmɯܹcɄ%D><nDZd;|.#sM'{ o"W{)~RaZ"e,E `5.e3KH!3Đ!s9R2GN̑9Jg}GT5!%(N!)y(Ib\3cM{ GX\"B>:'Z]cKd{kPEX;Xu,"ȰU,h@$+¶%d7&v$nl3[7JniAty~(zs1S? E ׫_%g?+Ùؙ3Bz4&OgN %z=Ω8uĩ󧮟}*sJd]VIJ&) 2yLxgf޳+X⬖>h ^~,zh/EѶҹ~6?,nyz{n{Cwz]FSJJ<@o]9_rDZrv Fh,9936{f2=J^ 9ԺYmإ*w|GcUU|=J6֘†aLtD/؛0E 0' ^Ԟٓ؃ʀA-Ȑ/C>`63}3.>X J+y=C{{gGmk3OlټicsznյOJ5ʲRCI‚|}NыujY-uw3Y X|T(胚6{HӖմ-hm:ꐨcDgɮ/풏*֬L&A!;U:P#LaA)LA!6 b3dm aeF�6":AM&_}K) :9T8% 3{/}|�#~sQP v{1cӢ#~U)5+$O+qR' .sJhk M/}vA$"Z]`M'7vJԙLQQ:@CGf=fT}"-b*Bwdl4r:t}j2 Ԁ7+ جf"Y{r, K7hj]AɁ>>PF0c JF^ZJX}\U`*x�f 6p3#Nt)"! qHDZ_t=odž-1ފ#~ QçXR&u,ē|:L)T?R;:,j$0_; a{hܘiƿk&qE'jGS 15)|WDou9qK=UNSxF4VOQĆъWbpuG+s:f(CzL~TR;Ǧc"tvM>S= @wKS1i8^ɼJ,Ul^6<>j\9 & ̙l\\ bCݮ\7MwK*!.X6I2Fr0M0gxƤgl6-,9hZrӒʵyk):<:f$rt`Fwy�!%̓Bl@&P&0A\x0{5(qL Y̐4Y1va*Cc<4/XCzD!RzGj!H)P`Vo:af R_BVֳʠza9?~@6(�[…zl>x~=9}aU7} zk;[!;G`tSB3D L*N qq梎w="?=| [8+"{ /Vi^M(܆K]UA#vl,\|Lt>^y<;fE ;qhkn :lf_fD*H endstream endobj 23 0 obj << /Type /FontDescriptor /FontName /b34495+NotoSerif /FontFile2 22 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 24 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 25 0 obj [500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 492 500 535 500 500 500 500 500 500 500 500 645 577 500 500 500 500 352 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 26 0000000000 65535 f 0000000015 00000 n 0000000248 00000 n 0000000449 00000 n 0000000513 00000 n 0000000564 00000 n 0000000836 00000 n 0000004931 00000 n 0000005241 00000 n 0000005283 00000 n 0000005331 00000 n 0000005383 00000 n 0000005555 00000 n 0000006850 00000 n 0000007149 00000 n 0000007314 00000 n 0000007388 00000 n 0000007513 00000 n 0000007573 00000 n 0000012312 00000 n 0000012536 00000 n 0000013898 00000 n 0000014812 00000 n 0000019088 00000 n 0000019302 00000 n 0000020664 00000 n trailer << /Size 26 /Root 2 0 R /Info 1 0 R >> startxref 21578 %%EOF ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/font-box-drawing.pdf��������������������������������������0000664�0000000�0000000�00000061401�14163570564�0024336�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.beta.2.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.2.dev, based on Prawn 2.2.2) /ModDate (D:20190721175317-06'00') /CreationDate (D:20190721181125-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 14 0 R /PageLabels 16 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 842.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 3792 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN 1.7571 Tw BT 48.24 793.926 Td /F1.0 10.5 Tf <4c6574d57320617373756d6520796f75d576652070757420796f7572207468656d652d72656c617465642066696c657320696e736964652061206469726563746f7279206e616d6520> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN 1.7571 Tw BT 433.1463 793.926 Td /F2.0 10.5 Tf <7265736f7572636573> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 1.7571 Tw BT 480.3963 793.926 Td /F1.0 10.5 Tf <20746861742068617320746865> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 778.146 Td /F1.0 10.5 Tf [<666f6c6c6f77696e67206c61> 20.0195 <796f75743a>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.9608 0.9608 0.9608 scn 52.24 762.33 m 543.04 762.33 l 545.2491 762.33 547.04 760.5391 547.04 758.33 c 547.04 626.41 l 547.04 624.2009 545.2491 622.41 543.04 622.41 c 52.24 622.41 l 50.0309 622.41 48.24 624.2009 48.24 626.41 c 48.24 758.33 l 48.24 760.5391 50.0309 762.33 52.24 762.33 c h f 0.8 0.8 0.8 SCN 0.75 w 52.24 762.33 m 543.04 762.33 l 545.2491 762.33 547.04 760.5391 547.04 758.33 c 547.04 626.41 l 547.04 624.2009 545.2491 622.41 543.04 622.41 c 52.24 622.41 l 50.0309 622.41 48.24 624.2009 48.24 626.41 c 48.24 758.33 l 48.24 760.5391 50.0309 762.33 52.24 762.33 c h S Q 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 739.505 Td /F2.0 11 Tf <7265736f7572636573> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 724.765 Td /F2.1 11 Tf <21222220> Tj /F2.0 11 Tf <666f6e7473> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 710.025 Td /F2.1 11 Tf <23> Tj /F2.0 11 Tf <caca20> Tj /F2.1 11 Tf <21222220> Tj /F2.0 11 Tf <726f626f746f2d626f6c645f6974616c69632e747466> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 695.285 Td /F2.1 11 Tf <23> Tj /F2.0 11 Tf <caca20> Tj /F2.1 11 Tf <21222220> Tj /F2.0 11 Tf <726f626f746f2d626f6c642e747466> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 680.545 Td /F2.1 11 Tf <23> Tj /F2.0 11 Tf <caca20> Tj /F2.1 11 Tf <21222220> Tj /F2.0 11 Tf <726f626f746f2d6974616c69632e747466> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 665.805 Td /F2.1 11 Tf <23> Tj /F2.0 11 Tf <caca20> Tj /F2.1 11 Tf <24222220> Tj /F2.0 11 Tf <726f626f746f2d6e6f726d616c2e747466> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 651.065 Td /F2.1 11 Tf <24222220> Tj /F2.0 11 Tf <7468656d6573> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 636.325 Td /F2.0 11 Tf <ca202020> Tj /F2.1 11 Tf <24222220> Tj /F2.0 11 Tf <62617369632d7468656d652e796d6c> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 598.446 Td /F1.0 10.5 Tf [<4c6574d573206d616b> 20.0195 <65206120626f782e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.9608 0.9608 0.9608 scn 52.24 582.63 m 543.04 582.63 l 545.2491 582.63 547.04 580.8391 547.04 578.63 c 547.04 535.15 l 547.04 532.9409 545.2491 531.15 543.04 531.15 c 52.24 531.15 l 50.0309 531.15 48.24 532.9409 48.24 535.15 c 48.24 578.63 l 48.24 580.8391 50.0309 582.63 52.24 582.63 c h f 0.8 0.8 0.8 SCN 0.75 w 52.24 582.63 m 543.04 582.63 l 545.2491 582.63 547.04 580.8391 547.04 578.63 c 547.04 535.15 l 547.04 532.9409 545.2491 531.15 543.04 531.15 c 52.24 531.15 l 50.0309 531.15 48.24 532.9409 48.24 535.15 c 48.24 578.63 l 48.24 580.8391 50.0309 582.63 52.24 582.63 c h S Q 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 559.805 Td /F2.1 11 Tf <252226> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 545.065 Td /F2.1 11 Tf <242227> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R /F2.0 12 0 R /F2.1 13 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /f2f364+NotoSerif /Subtype /TrueType /FontDescriptor 18 0 R /FirstChar 32 /LastChar 255 /Widths 20 0 R /ToUnicode 19 0 R >> endobj 12 0 obj << /Type /Font /BaseFont /5b0b08+mplus1mn-regular /Subtype /TrueType /FontDescriptor 22 0 R /FirstChar 32 /LastChar 255 /Widths 24 0 R /ToUnicode 23 0 R >> endobj 13 0 obj << /Type /Font /BaseFont /2ad006+mplus1mn-regular /Subtype /TrueType /FontDescriptor 26 0 R /FirstChar 32 /LastChar 255 /Widths 28 0 R /ToUnicode 27 0 R >> endobj 14 0 obj << /Type /Outlines /Count 1 /First 15 0 R /Last 15 0 R >> endobj 15 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 14 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 16 0 obj << /Nums [0 << /P (1) >>] >> endobj 17 0 obj << /Length1 10732 /Length 6626 /Filter [/FlateDecode] >> stream xy T[ו9^ HW\Ŀ$@̿�/!ljK�ـڙqfQ'iI2ԓJEfVBy}z͛zIo7guֈ qN瞽>|g}90B(U zaj4> gWg??R|u?A==d'�ܜߧ|O�= |'/Gh~`Ruj 2@{07 I,?D(!M3K~ 5K/+GY]8K�gUNٯ T1Fd~%AU~w >#+LHLJNAʴ Vh?oIcdŷ.4e V&zXۙ_ᇱe T[XtL*`j,Bf`h-bۊjȳ,AQ_Y ik5=!%PC1wI^C6kU3cK63e&0i`+ۯI0&Zͩ z۝5 6W]kf6WA)Tea, #SKSi(RX2G[uM lr5; []?wK2_%7v;V\?7{qhqϱkRNh` KqևeSܑ꼢ӣLz FkR2V7f"Afk4T&YY�|*jRh2i|%^egyWF۵CMM>?خh+~ڕ1DŽåVK-6bKuuK__۷%#�u'1~M(b3/<W>aeQ{uQG}B|OT-<z zY_n5Ͽ?ؒT+ta\mj/3>ȶqE;$b׳ 1 ؘIJ Gjdx+k~۔{ͦZe=nho,_0vK|�@XUNa%ʺ|:@]27Ns [nRpO]zJNGo:w{|ӯYJu5WZw65W i keƃJYmhi DkIfՑGGu9&c 7|;of⢷2-K7s'[W}[S,QgGch#+&N>ͤ.=t֚YX+]k,zU^Ζ)ɕj25*d>| I:F**3-ڟO2>΅W9a,Ur%TZ\Ր7Rᅠn_<[W6RT<ctz鳊ҒԙIe+0fB+ѥICyyR!{qB4^2䵎_NP'+ YiyEUƶ5&!%>rJk_o7Ioi9oGbݱzmW6w M:" 7s4oY|43}h;4& F-P�F5ݿv/([ƾ$y2/n}Z:_.gdK9|;!<X6�B(gr"ng0 .V>f,؋ $p-捇F;y"02iVa;d[ c+a@!UvOT R{}lq5+n[oޏ誃}#[?}ƻ#P_MCjzAWEաMi/bd[c5ٻԻ‰9C]x2<?Sі]m;AF}<;;j|xЙqK6EJ@{(`KEga% p1Kv,3}r;9A-tmc7< I^˯46r>2O u@=d{8wֱyK n1o;G 9;\d;ao6sFIA<2*cԨo Wl`._̊XS8ֆCҦCLsWuEcaI!'mu]O&)tuNEom9ovYfD<hv1_9B[dJϪv5׎&{V kg^+<:\ D0c([PJ[;TSR',V:K k+x1]: . *LmCŀh65IzSWx f\kͤ{{76ɥ5.q<_(SIя]4)Ab9a^ +[IoCO]q#7!cNT }m(Y9账&r .w' _Rm5U1v_h˗rXW%^{=3t,ڌf8UȰͬ gI.d<}ʺ"ݑ_ѕ3Ir]aMjZsN.h2{v'E  xG  "Y{!IҪUiB~FLit.5FԜ(*2$-[> kGc2{4 fl2/ŰUiї>90ldS0 )oPx7f6y\AbB^�NMf|MjlzEJUZLCڭ;t *)3tFM.KF}Xv.ĭ[]Jۑ/7!BNg-k;�/iYI%Wf1>  O�N.TW&ң+w[;>BwN\P-mn%<fq" CR'/N=uTk_wg"IPpO<�g—}8;v3g]zT0tf$+0?`<GµѺF6S[oh6ǿ 3CϢ_ecVNWُ9 JrJmiCzQZvU< ܧ ӃqwQ?0ُ|B0ZY$*dd.# <O#2:9*eF*`EE kᾆҟ!{)s#j"q䗶^BH1'|\:ѡWP*/]^~|<+_{_1I0c&bwDvn0/1o�C!>ɵ=fF<HDR7ƽ40A.䆓  zܙjم�oA tIcBO|_|g["ug|AKP| RV/EJ<.e(Dr "_2u/G"?|@p "?D~"jfs狠Iɸ 򓙧͋T-{= UU|g08;|<?LB?_>6vDKh-�0BUAZG~"eAa~<9+D)?< r`#RA43]-nhb0|Yr4,RM:i͂E(yd>cn$nr(\+5>K53U3֚2!LJ}q>8F PnOq/ b[T7(0ȏ} #$ʇ ,!Li~rQ:SfdsE8&ad>8p \8To<Yj^Tp2[�HB/ *!XЃg%icAh?ZāȲK81>^?G>􇀷.LA߲|`ʿK,N1ᾘ@9/*+MB I":wm##Xh׀kknv|@{{w�Y'\ K�#~cgS?[], iB Sz6x¿Hz5̯&XBL 19'.j0]d!d!w<<^Ɉ ԧ&Q5GeG`s:pq=ʁsPIl>4L/G|H#t@Gm&1Qo`wt+a(xivx-k en*CtU:˔: Y+2D1.y,�X8IQvF=> >S$%SI twѥKp.Q ԖqDM_s!^;I'hŝ< aEK?Z,CP`\ tK! (<<g8uG\~4([wyh߄s#JT>IO"YU3 VADء Pbtyu61==wpgrG\[8u _gpk#ւ ժiJTR 'L"IqxRbd:Le$R x2tn%`)J@Oa_uoun@<}%FA7 #^\:ws@4g3˞m뽷-,ikoanvM\}KoX?pu}YOmџ}we'$uUUWs`33ϜxEO+^z\"z qEyi~{;W0+( >~};B3 }`m3jڕqz),~~qFܡ[LŴ}i ]} kK9ʞaﰬ},SQᶻlkuuu%ha:N,w\֕etTҚb0حOʴ^OMtqYX7#eeވlp?1>t("},\{60~bܥK-7R5x{#PY(6Px( ʎ]BqN,b5D ؟A>r$01Isi2"_F 0BpVLqktdxhp`_oOwWgjoinjl;P[cME!ߠWҔ)ɉL*XbSBo+L|bx#pt앉^*>I{LҾ#|#j4NM|hKa|Hi+D29^81:@F]h+LhCDE \܌i)vo0HLFo:28q:ø;"8hj*#:ovqS&eI´oa}wuEJGO0s\p8#eDk8Q)k@F Q "0Zwy|g'^)m$%-9h6uA8Qzp8Þc|p@kH ~^3C9M;"rv}-eKZފdHxNw�E8c_ENB<#_k Zz_g<I!z�B))C- P q NwbN xSy,QX}꾈EXXvET{E,NwC=y<9b0yYonTڿj4 ! k陈ޫU9{}T 8 JfMf"LwD:9 5uѹO@xFF9a8*w@Ehk2"3Vs(u[#}:. 0"%G^{W\Kk7.S9ͼ80tśX#d 1ĪG z܈yGDcP~C2 9NcF:ʴٵ;̯Ʌޑ5\"@A$Ҵ4S:|&34b6v-$85{zM4Ri6iOQ/m3CkcCv!JF=2io@ !;2K A4 !7ePz l'0db<e�G.zl O|q|n;NbeEG 70#M([$Qh#o/YT~jM>Q3D 5;{?r=H.#}~_)}?4<^{xkwZwù}=B[=�?r]GGywp]:zNq]?g#p ~MoCpڊ2&`]e1Ǵ_C>u.R-8' K? -mA[/c< ȵo~} =aiv(sz}maX{]g~NyHUߠc!ĨT%͔CLP&9 f^f#_q&v`'wؘۓI>/"6 C endstream endobj 18 0 obj << /Type /FontDescriptor /FontName /f2f364+NotoSerif /FontFile2 17 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 19 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 20 0 obj [259 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 310 250 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 286 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 623 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 562 613 492 613 535 369 538 634 319 1000 584 310 944 645 577 613 1000 471 451 352 634 579 861 578 564 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 250 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj 21 0 obj << /Length1 4388 /Length 2865 /Filter [/FlateDecode] >> stream xW l>c'm؉ӴuH'iJcy4mqRi4kqlv?j;} V\ ecc"/jCՆ 4uhܣν[ lB{=;9;@�$(1rGo�HYxǗO/&UO�hC)^(@[PDB«�kcI](oCOmod"ٴ(AB1(BF j΍Jp% %5Pe|2+}2 Pa}$~ ίFD_! QCF[XVbR2)+GPB}gH J4(LiϽx9xa/gkO3}%{@O P Pk\/h- X0v[ɉ];#j]n+26Mol5TO]۽[=R1E엄Kv,1 j^-AsmmJo޹l8| Sۥ~Ɵ|y2$YSs+ɣ1W_cqw}ķOG"Ukヌ2N<KPĐzB H38ֵjs7鍄._>WN#2ZM:f^7xUo<:v0'~jw[9/"%rLk|j8r)U D 8*D=鲚Et:v-ֵ4tFs=pNceأ[KړӮmU:g|&]ks>?wb^Q>( :[q/~ϑLD(9ys~XM eEc�&Fb=KKOTT .hwݰeAo0s[v׮uy|qqaAGCpt5ՐGHfnv\O<uz]Fcxl p6PCHu{3gf.b8|'@<}Pֽ>"ynq[`d+( vz{رsdolEtҪ{G{ņ fM}CJ<N{ԩjhmnQg¦SΗc*wy$20oD0ahDrtWe ٚ;TbA@yq蕪?7V z8":"%w BCءL>-lvlFUiJ*jl}u~^ jGUaQ�TO%T 4qݽ#rYE4HXYP$j�+ ?O5S0H)tܲjv93j*#J$YίdAz>ǝ?C0'}l7L/]G%[B5BxFv^{p )zzS*yFѫCEF+(!�H@%)㕰 (6+ܤyPԣ43V*6l|^уVb67<#Fj)3I'#$ n C2�K&h4s�Å{}*0 l&A /-ShB%,Rxf *M4la0D S4H¦kDxEcXBdvRh"NRÏ[)iL7Q8~ sҜK..Ēʧdl6cik"[^&7EL7tTg%+,@)COB4BV:_ƢP&CX4yY83m&A!3 ບ?h:-eB41L&RO,eh,G izbT _\<Ȍ*+ OmBF1Gk'QÞ)v]D˙b^͚^SXniǙl+Ɗ)]D ꂨKq)?fpz٘1 =ΆcV(#>ܒ"G@̌ˆdceR�g"r~͊UNUiہ!PSN&qDZ.w ViRKoI'ץ>\x&iaHz 5K?~(=!%$H==7v_5I{zB3nvO DcЧG H{$ד{GHdv(H~ 1|8"#^83%D>itb!|@_?V(Rn/I$:jvnVߓg:WrPTU(^}g=O1 '' wr@5:ߨlpv q fG'> 58[}M[Xdbȫ-`u{E"5T@.EVI4}sWE\χx1!G0:=2;ka擵\uMUh.vE.2[Y3CeUݰHeu l(lf4|,y\g3LLtVMbA( KsyfW"chY܅S]!&O Hg 4ln&nVjy%HFL|,&4,fEΊ~waEֱe(Cz�}),DMg\͘D[l#A1wU1OC!'3+!{Lj{]n)ϽSd׆ƪ0˨ź~K}?a ?p endstream endobj 22 0 obj << /Type /FontDescriptor /FontName /5b0b08+mplus1mn-regular /FontFile2 21 0 R /FontBBox [0 -230 1000 860] /Flags 4 /StemV 0 /ItalicAngle 0.0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 23 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 24 0 obj [500 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 500 500 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 500 1000 500 500 500 500 500 500 1000 500 500 1000 1000 500 500 500 500 1000 1000 500 500 500 500 1000 1000 1000 500 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 500 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj 25 0 obj << /Length1 3356 /Length 1964 /Filter [/FlateDecode] >> stream xV]lW>wv׿qP-⎧ώ$J6c;uc&Yq#OmLU!Z*TD**A**,"ăh B41߽;vgvws3.1""Az.Sr]Q  b ]&b%tH |ɻk߂p>:m+uPX%r}:=}O@?[Խ%A{u-y(O2lˍSQG՚[>[eVX%k̢nwb$S2k}1-}틱M/ZV(g'qǰ,f19`k"ٯ|ƲZ'G֭gC4e l(a։[)L֕I9%w`Ge~v=5kRU~gLT&փEy<`Rn[ԛBJoj iyj" F˾-Пm0]댴kZ[r׷#+O qNq긳Zh><^?dRͯ}`ƘB,"&A%-a$�{dAXXf& pU p rk<ȫO< w< xvHG!-�Nz%N.x` .CYg;nj tӎ끏o>=SC; |cjdQ1rI&OfLrc):F*ը@'PbwA:EC'h5Eg( $G| #r5B%*'S e ޡZRڢG-fѱؾ)*TF r!UeX(BT�1>\A,[*e>bckhXF8NVCjqXF󪇇ˡUgRU0%HE[G9:+gYDTP璅˵溼^y+N͵\X(<7˫nTXs*|<jrBݫ..{./x&_)xy^R%[2"@K%)8t.WBOUۄOrvr<: }LKsGɣS=8V|[a1a" |,eU)ɶ\%R&R~'b=/S|kEIyHr+ʓbʀ *nH28謈Z*yiMӵux7OYh8q@騲H sd4fRQ$q<6YbVď;5QxKo/v bQBiu{n'u:/8?(.}U,%.A̸Ȉ` R8{m\ΩC}ug 6$v&/rO#̉ρeB^98jKmܧoJ͗<󻎼GW/~T ڶ~^b_Uf}-2n{OB1eh!mCD>>MI'/>9l[Y1-P̩da1?dm܎aSz ; _d+m/bv- B'дVP|j3{{ndWA'& 9L6.Q] %LѬ;ڭ7T;;L>b ?f$%ًM %3#5o h܏IRANћ7&Q\Pv$7xzj6N7Ф0xca82"-C/ Hr1 v"CL4ɬhLHX͟RK8.LQ1ŒqL>L_~>8Q\M([L´io^ endstream endobj 26 0 obj << /Type /FontDescriptor /FontName /2ad006+mplus1mn-regular /FontFile2 25 0 R /FontBBox [0 -230 1000 860] /Flags 4 /StemV 0 /ItalicAngle 0.0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 27 0 obj << /Length 256 /Filter [/FlateDecode] >> stream x]PMo +8v ڭ4ueL�"?pN~>B{fB6l0@:A7a4NU->H$67{q;޲Dw_Ú D)jՏ^tz3P}okߗm_5-weL$m 0+""֙HQXa8vA =B XEVsF7gf͹C:T5?}x endstream endobj 28 0 obj [500 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj xref 0 29 0000000000 65535 f 0000000015 00000 n 0000000262 00000 n 0000000463 00000 n 0000000520 00000 n 0000000571 00000 n 0000000843 00000 n 0000004687 00000 n 0000005010 00000 n 0000005052 00000 n 0000005100 00000 n 0000005152 00000 n 0000005317 00000 n 0000005489 00000 n 0000005661 00000 n 0000005735 00000 n 0000005860 00000 n 0000005905 00000 n 0000012622 00000 n 0000012836 00000 n 0000014198 00000 n 0000015307 00000 n 0000018262 00000 n 0000018474 00000 n 0000019836 00000 n 0000020952 00000 n 0000023006 00000 n 0000023218 00000 n 0000023549 00000 n trailer << /Size 29 /Root 2 0 R /Info 1 0 R >> startxref 24686 %%EOF ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/font-emoji.pdf��������������������������������������������0000664�0000000�0000000�00000037513�14163570564�0023227�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.3.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.3.dev, based on Prawn 2.2.2) /ModDate (D:20200129093440+00'00') /CreationDate (D:20200129093440+00'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 13 0 R /PageLabels 15 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 997 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf <446f6ed57420> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 77.745 793.926 Td /F3.1 10.5 Tf <21> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 91.0695 793.926 Td /F1.0 10.5 Tf <206f766572207370696c6c656420> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 155.0145 793.926 Td /F3.1 10.5 Tf <22> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 168.339 793.926 Td /F1.0 10.5 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 766.146 Td /F1.0 10.5 Tf <4173636969646f63746f7220697320> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 118.128 766.146 Td /F3.1 10.5 Tf <23> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 131.4525 766.146 Td /F1.0 10.5 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R /F3.1 12 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /728269+NotoSerif /Subtype /TrueType /FontDescriptor 17 0 R /FirstChar 32 /LastChar 255 /Widths 19 0 R /ToUnicode 18 0 R >> endobj 12 0 obj << /Type /Font /BaseFont /ebfaf2+NotoEmoji /Subtype /TrueType /FontDescriptor 21 0 R /FirstChar 32 /LastChar 255 /Widths 23 0 R /ToUnicode 22 0 R >> endobj 13 0 obj << /Type /Outlines /Count 1 /First 14 0 R /Last 14 0 R >> endobj 14 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 13 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 15 0 obj << /Nums [0 << /P (1) >>] >> endobj 16 0 obj << /Length1 8596 /Length 5331 /Filter [/FlateDecode] >> stream xX pSיϽ,e[~`m/ll#[?KdKH2R i7d6.I3-\Im:le34m,0L;yM&J{{�@*ԀMzBE5 dNlw|@]?d4@R MFY*r?>g/5Kf=B\|%Aq˱3QP0긿Hފ-%?}�hˏ 7¾Зz ( OfmH8]SP6 `Q{;$x�ş6T%SCRr ;\68/XӺ }F>C?/)_w\>Rq,>y! Rek8ӊF]Q:=AHK67wL<SFd6!dksl}CݖvԑB^ˌ74>דgVJJy,ȥ U7$G  Y9'ȿ߾g̨K-iUTa󆤱ߐ7w-v֬<>>A}riDӐQo*I~K!$Р3Z>/u|.'ٵp#m|] +ézuSa絕.)RK:Gub/T`_*ӰSP9/Z|c:6iڳ[Sn߶R{\LVvo?y[76tԌuVͼw>=eSh*b7TZ�B2^.:/r JBǝ\:w[wfc3m9)<)X=9R1tC6 ^cd,6O|kx̜_ӹiKUY_ 3[ZBxqkȓ2EU ztj2g#U~ W( .ijmc\ŎPO̴ Uozqawn=C?ὡoLm+Pun|arsWTa֯ϋ BoqAG)PX󙘃y6m,d%4Us_Q':[R 4֔;5w?OohrOqjת%weyn];j8c5˿XIEtIBנv˘8a噼v۾ Talc{"yʿR|<]ڸPPuSAZ^VoyJ4H9JTTt=(=s9|`ǎ ;ٻ+_?yg=Z[^ /DZZ"h04hbȑ,sr d{2}w e_[AA< rGb-Rs;Tܖi3s38Ӹҿ:9 Y%?nژHIVH}Ϧq,�^NԬ/CrEn+Onne fkZZԴy}(0&t َʮ=w؃sS:֭iX-7w,seL;rL$/8ѕWg;ڛF s{˚&/]kA-ѾƊ&!qoWZQTE;=fLOYaly*WZR\S]P90n:4 -]義A\iE0Cl@4eqhsv!usmc@[<S*+5{IʇZKqrF 2୹8=_qFKא}X37Qij' eS"H M>ZAHPn,J[HJ4[+%%w?ñ 1whѾCCFݺ?Bw?`i#$utEC}# 9Y2|looNqYqΎfakȴ]7&i겵EsԚ?%x >&qv?:#U"PNFmǔ1+ނ&ܧ-pw SV@Y7Ÿ=[P& Fa/9qte f� Ʉp}<R)vHB{րie70IKVr W758&HZ}PW"xE06IS23S6nA`'Za{Qऌē2 ;2A\q62C \q$\We\ )AƕG:d\ PLNX WC6$jL~-㉀+OM\'n2q?$PLƓ`^x 2J2}]sOOj:*l"tS3>'0a:ffZF|_k�3!! ~ibZ|  ~`|(@�&Df=*$}h >`FOQ4ZAԲ3 ?Lf<al Р;`p]LSB`qf Sp'cp 98/0 M[nilf<B4f=Bpr=z3~<xGѶ1p� N`?[|T@yfGCI<f-G&r{W?,ƍFѨmx"4"OSLqY;�t4j1~05NFt$hdE-~1| 2C]qc#9?grbs8̞iL[0ˌ s/,D}_ qBp;+k ½yh?>1P;BXث=݃QagHh. Kh�J6c% X C/a?|0$M'Œ'05Q|YJG=Q&Oևsaa-P $1l҉ŀЉ[f3@9#osXiMjq{0p;,T!rEe_♗lGq,ft2JԏXuwQ&w9{"">ax-# Ї5TWqvL:ٌ̄0lRWg7]D}r#&f.LS`{B6u!,r5"?Y6"ݮ A6NFl0'_FTWץDF !2Z6"8( |Oa=I?I/ۗ$ߧw.!$~g'L֡%0D&|Jxs$ LD^"x> w1%B/0 RM -;I29L/VCj>�C):L'$!47="jH' %%yH$*UyֆH_(G*lYVOAY7=RlU7V�O6<S54_#M׈j)酫]Wt_%+uU;.+>VƏ7LgSl!=%>{jOГǟT$בӚ\}8;͙NdK ?\8pv؂dn (wy)IcCV(A+R/M&RmE>缼{/Yu%@c 7γՌƆA% rh(ww%Ut9uَ ԥ;8ultn{|Kp9DIʾH0["Jv4 TJص۹H㮇N΍}SrotI^,h84sD"}}(WBdTF ^ss{#dod/*>j#vK}TVRJ]~]IHe.c>2<48f;;LZ4omjl16<m&=-59)QR*xd*܂Tebww5Eu[3dSGLMSӄwi⚦5MZJEȮa'OZD ;XYQƄTzl!X-D܂U-ho19,}IUd,I"NXdmY@JR+ ;^类D 33)R3)pBXz}% +S׳)l;[2* "Uu'UTIwK")K50nw"Qj>Z!6Qͻ=K㢠SRCVdj) d{%iӤE ?kxSJm´n[u תgUt z=% ve<0.X87y}&Ak֬5w>s^RxE+r|#|OC!juzq>3Ch6^x,CZ)ɼ i_鰃LYD3ԎU<4 TWIݕЏ✷`cd]1b C䷰IF1$iεxR~5IZ dZhςu֟sMcaPX/es̘eywR*r8+'N/\h%:}.fUtMϼ8. rnWPsR]fD.nSR']A@aAlŧP[a(MV6!UVE֣F4ݫTTD;nޥ_UV rBMнZŗ⪁fDyϣ N'iA2 9(=,"2,>r\G֑4WJdԭ'Wb}Wuj0Ը(G:RЌmL1&¼VQW&*\:E<j|U <:t-`UP@ji5׽j8j `^L,qqLq)☉a(M#Ǹ[/]nqAFK$"#;b"T)R딒No8xf!UG5Vja;|Y*zA �bk=Pk/jG[Vs|2~.OY}�Sh;%xO꫶^<ӿ�ok$ݰk_i#$-3MMqh>x _&~{Z1ZO á� G�"l˷ٱp K2:ʥbGfRiW>p;X SlOTpG`*Yw{#OXW׹6/6k\ endstream endobj 17 0 obj << /Type /FontDescriptor /FontName /728269+NotoSerif /FontFile2 16 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 18 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 19 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 500 500 250 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 705 500 500 727 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 492 613 535 500 500 500 319 500 500 310 500 645 577 613 500 471 451 352 500 579 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 250 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj 20 0 obj << /Length1 4976 /Length 3063 /Filter [/FlateDecode] >> stream xVilً!,␒(NÒ)[؎S䊢+Ҷ$NW&i#nEӜhZMA Ms4B)zE,okӴW37߼yA!E=Gx&gy ȳdzeIFH5cLK#@G* [X*4ܜɣ d.~t ҾUπ2bρs%0HX'%lVj4d{am SaO1_T ˈEpUƜW /eyp>Kx"?@7 Bj",4`.܇A4&X-N܈!䡒? "56Aϗwo\=18_qV5J*J_ Lbvٓd{Re w6Alnb4v.SOvĽ~csxȅ`JcuQ[Zs.t4Ly^ﰘuZձhv3CwrRSzEc3FʈUja53=``߀ 'x`}f맾!ك!nzx�h²?=:4*�!ng b;i x蹶 P7*bd^Yj*VFRCF`EslVU%J\_t'`lvh ևwuuۼA1΃mQ& cZc\gl0[.kGc1F#:)nUq*nkw7MSg>\yCPI<RsbWe=2R@f0?#vCg1,z˜4R_WoJ[­)q%}gtnw-U [/_~,Ǫ^5}{wϏkSP+n(/Xn2ob[vAq YNsռJm5jDjj:?ƩTr}֓n?'>Gz!0h)?#݂ZW{ ;}8HSè4fJkN[3�ѲOڸ{=?kLGO++v]*OF V"R]n+"Q_#�*c-rWjn'j{#'(aIW2K92~ehАe-KWSZ�tbn ) ~؜8~h`pX1cdpaFSOj枧͛6gN%3>wt~]uS 3H\|d5PN  ķY:[U:SVLSdM\m陣=h)top?o3vRՖAܯjۇa& |Bmo^}C=d1Nef0sN<2u9XCtD~ivsgh7M_r1s/ǶV[kicchOaooNt7ښ=vɩ ն5g<jUSP{V{ZG62գMڴ{U t35<9tCn i4z[*]{xդ~Em?Ŭgmcj҆h6hC}lIiW[OoD}T=B0z?nh |u+\1qrnnmDŊ c̍VS# )S..+#VfRD-^\g iVvE# : >QpEtZY4Qpi]9d. Gx\d^Mܸ8~HȊPp5\,̥4Tp2Qע] CN]סQYu6\} n3 70pWp#SݪFP=<˯Re{zd.Ld:p:MWE2/!1Ec(hP %2pY0#h�O#iQ4kT<I9);B 9t�d)+iIT*lesJLĒlt+X,eZ+6e`Z“nhY[C,S,Ii(gx%Aв[wʌR$FB,!fb$tX2E& 1pH7P@Af}?JvXL%dAe3{|@xLRv9 b1AWmB+XbBtȶHf #h'ױ&q5R]wao:e|IQ19 G (aez%9,OY8|WgQTJrEJe\V"ܒt8VIb,ebH"Nϒ(V %REZ,9Ќe;%Q7!v Ss|80)J\d|zaz. GvxS`NGX$IeQQd[Rb^RqeXv TQdL6ϤDdX+H m u\4}$89ĵdKC9KkSBMq9n2e9z٫gbzFcY`Wѧjmq@eY 4Vo^PNy*\icG y\y7Ay~:2VUSLfdX�*{RvGa$O~%UgRs⠵D5 Dd"FSW3O-P_^:⿄r*]~/CtnvZ�V6*%YNR]* TSioM^S6VwVnXXO_47SO/ r֎w>zCS_ yW endstream endobj 21 0 obj << /Type /FontDescriptor /FontName /ebfaf2+NotoEmoji /FontFile2 20 0 R /FontBBox [-23 -269 1309 1056] /Flags 5 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 2163 /XHeight 1514 >> endobj 22 0 obj << /Length 241 /Filter [/FlateDecode] >> stream x]Pn -/ YINE8H1 };]f4;aex@S#fΛkؒFpvtԋ�BQ5g&| -Lp[?`Ж_Ղ@8osZFkT3Ja[%"xYd;):yżӓTqߛw3{aTx?a Nu endstream endobj 23 0 obj [1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269 1269] endobj xref 0 24 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000001887 00000 n 0000002197 00000 n 0000002239 00000 n 0000002287 00000 n 0000002339 00000 n 0000002504 00000 n 0000002669 00000 n 0000002743 00000 n 0000002868 00000 n 0000002913 00000 n 0000008334 00000 n 0000008548 00000 n 0000009910 00000 n 0000010824 00000 n 0000013977 00000 n 0000014190 00000 n 0000014506 00000 n trailer << /Size 24 /Root 2 0 R /Info 1 0 R >> startxref 15644 %%EOF �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/font-glyph-default-with-fallback.pdf����������������������0000664�0000000�0000000�00000126311�14163570564�0027372�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20190917032018-06'00') /CreationDate (D:20190917032029-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 17 0 R /PageLabels 18 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 6551 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf <6120> Tj /F1.1 10.5 Tf <2120> Tj /F1.0 10.5 Tf <6220> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 79.236 793.926 Td /F2.1 10.5 Tf <21> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 84.486 793.926 Td /F1.0 10.5 Tf <2063> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 778.146 Td /F1.0 10.5 Tf <6320> Tj /F1.1 10.5 Tf <2220> Tj /F1.0 10.5 Tf <6220> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 78.501 778.146 Td /F2.1 10.5 Tf <22> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 83.751 778.146 Td /F1.0 10.5 Tf <2061> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 762.366 Td /F1.0 10.5 Tf <6120> Tj /F1.1 10.5 Tf <2320> Tj /F1.0 10.5 Tf <6220> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 79.236 762.366 Td /F2.1 10.5 Tf <23> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 89.736 762.366 Td /F1.0 10.5 Tf <2063> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 746.586 Td /F1.0 10.5 Tf <6320> Tj /F1.1 10.5 Tf <2420> Tj /F1.0 10.5 Tf <6220> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 78.501 746.586 Td /F2.1 10.5 Tf <24> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 89.001 746.586 Td /F1.0 10.5 Tf <2061> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 730.806 Td /F1.0 10.5 Tf <61d16220> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 73.797 730.806 Td /F2.0 10.5 Tf <63d1> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 84.297 730.806 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 84.297 730.806 Td /F2.0 10.5 Tf <64> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 715.026 Td /F1.0 10.5 Tf <736fc920> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 70.752 715.026 Td /F2.0 10.5 Tf <77656c6cc9> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 102.252 715.026 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 699.246 Td /F1.0 10.5 Tf <39392c393920db20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 85.6515 699.246 Td /F2.0 10.5 Tf <2d352c303020db> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 683.466 Td /F1.0 10.5 Tf [<59> 29.7852 <4f4c4faa20>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 88.0898 683.466 Td /F2.0 10.5 Tf <41434d45aa> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 667.686 Td /F1.0 10.5 Tf [<54> 29.7852 <6f20b021>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 651.906 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 48.24 651.906 Td /F2.1 10.5 Tf <25> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.74 651.906 Td /F1.0 10.5 Tf <20746f20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 73.9335 651.906 Td /F2.1 10.5 Tf <26> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 636.126 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 48.24 636.126 Td /F2.1 10.5 Tf <27> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.74 636.126 Td /F1.0 10.5 Tf <20746f20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 73.9335 636.126 Td /F2.1 10.5 Tf <28> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 620.346 Td /F1.1 10.5 Tf <2520> Tj /F1.0 10.5 Tf <746f20bd> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 604.566 Td /F1.1 10.5 Tf <26> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 588.786 Td /F1.1 10.5 Tf <27> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 573.006 Td /F1.0 10.5 Tf [<6b> 20.0195 <656570ca636c6f7365>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 557.226 Td /F1.0 10.5 Tf [<6b> 20.0195 <656570>] TJ /F1.1 10.5 Tf <28> Tj /F1.0 10.5 Tf <636c6f7365287229> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 541.446 Td /F1.0 10.5 Tf <61646a6f696e6564> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 525.666 Td /F1.0 10.5 Tf <696e> Tj /F1.1 10.5 Tf <29> Tj /F1.0 10.5 Tf <646976697369626c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 509.886 Td /F1.0 10.5 Tf <616c6d6f7374> Tj /F1.1 10.5 Tf <2a> Tj /F1.0 10.5 Tf <746f756368696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 494.106 Td /F1.0 10.5 Tf <66617374> Tj /F1.1 10.5 Tf <2b> Tj /F1.0 10.5 Tf <617070726f616368696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 478.326 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 478.326 Td /F3.1 10.5 Tf <21> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.74 478.326 Td /F1.0 10.5 Tf <20646f6e65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 462.546 Td /F1.0 10.5 Tf <7570736964> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 75.855 462.546 Td /F3.1 10.5 Tf <22> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 81.651 462.546 Td /F1.0 10.5 Tf <20646f776e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 446.766 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 48.24 446.766 Td /F3.0 10.5 Tf <a5> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 430.986 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 430.986 Td /F3.1 10.5 Tf <232425> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R /F1.1 12 0 R /F2.1 13 0 R /F2.0 14 0 R /F3.1 15 0 R /F3.0 16 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /de5cce+NotoSerif /Subtype /TrueType /FontDescriptor 20 0 R /FirstChar 32 /LastChar 255 /Widths 22 0 R /ToUnicode 21 0 R >> endobj 12 0 obj << /Type /Font /BaseFont /f2a119+NotoSerif /Subtype /TrueType /FontDescriptor 24 0 R /FirstChar 32 /LastChar 255 /Widths 26 0 R /ToUnicode 25 0 R >> endobj 13 0 obj << /Type /Font /BaseFont /6a7d59+mplus1mn-regular /Subtype /TrueType /FontDescriptor 28 0 R /FirstChar 32 /LastChar 255 /Widths 30 0 R /ToUnicode 29 0 R >> endobj 14 0 obj << /Type /Font /BaseFont /79bca3+mplus1mn-regular /Subtype /TrueType /FontDescriptor 32 0 R /FirstChar 32 /LastChar 255 /Widths 34 0 R /ToUnicode 33 0 R >> endobj 15 0 obj << /Type /Font /BaseFont /4054dd+mplus-1p-regular /Subtype /TrueType /FontDescriptor 36 0 R /FirstChar 32 /LastChar 255 /Widths 38 0 R /ToUnicode 37 0 R >> endobj 16 0 obj << /Type /Font /BaseFont /f336a5+mplus-1p-regular /Subtype /TrueType /FontDescriptor 40 0 R /FirstChar 32 /LastChar 255 /Widths 42 0 R /ToUnicode 41 0 R >> endobj 17 0 obj << /Type /Outlines /Count 0 /First null /Last null >> endobj 18 0 obj << /Nums [0 << /P (1) >>] >> endobj 19 0 obj << /Length1 12200 /Length 7807 /Filter [/FlateDecode] >> stream xz XU @7,4£BImNtzQhxO ꩭq:z3tjϼtm?zNu{~k^{ZBȌФk%`~QYd T? k@(c&};>MO]Qŏ:9�>0mH9~E(!SIu_G#’08P gwo6!Bliesv8_?"dF)9!}烙` dsb$#4 ɣcJUl\|B"R'%kw2e5_NLIA#K`EuѺ6L-PxA0K8g+KQ)e bd.]kR&uWxS+sJF'q酤.DD}"%R0q*#T`Jfo))l ]{6Pt];Ujod 4LJȰŻUZw WEimsѩ\|tр((]ag@dhjؔ \QNjXm.SUʤLmiEvl#?P*jy1 K$Ue Ъa#D*ӏIcK[6VZѱ{Ozkdm&Q*SSֿq:/=.1υ-Ons'=</J LVt]ʿwT'm Y ,yLA43T|QE�W-l["_nLL4]RnTm2T[bfh.J0j?LKWo#QLASatmX*m?s?=qvo çffN nspOc۶''?'q8\GtW`<ѯ)*]hd19:nd1PbZg"|Po BL0&v<#ZK"XNphL(/S +K[ o.e$&2$^)Nx05/:LK٧c3ONR̔#arfb!L. \m-,>+ C/7.8pnL�JXr9X6%`ȇӥ]XI =}/K2e=%GL2Mn(1͕5n?鈌ܒѼIוuK MzORdvc~rzn㏊Ew_=;ހA?΋uk7Z)Ė `*[&&n}]P8ŗDQxGW,s?(fSun)OJ*w1?DsuijfU7e-ւÿĺ3mg||lpU4lQx�[">d*"|p xWv'mψm-<>^{t(!L7쨌Hxz`]T^\YҍWEJAx"VWLaaPe,h? dvlqMt8˓v\9ojR9,hWL?7^9IpHFXkT a54,Q䲠,3{]UW3T颃0T8F {s_lXS*v870 K(-QPA|b>Q&irա/$E#r{T&P甦ʱ.p8#)kdg*-KNkKI)5UsED%L@p/EhW"qpet%&j5$29XuɡP;!+(LLUYJ`t&QLUG)RL7Wx/jlQepJ[}N)ߥo,ϕ3JScuAʴ;{r66=9:"^=z@,k4Bc =Zі*ԕgTv:-GQ mEzSɳZY] W}?I߂Z'QƿE/~Pl*H|vG w+T$'j_2Ne^kԛzw: ֤`>fbxG9Yr WuW3 dI"^|.+!>KPh{`R͚9H^K@c!kAddՒZ:~lDNnuj)?fgi#h'.}.nAamðfabHFe%6 sG׉ }Skzý.#<WM_ XM2x}QN(w87 <㤺M,liՔz/Bu͸PZoo1Xj$+'RKzy7+9!ۍtz V5W2L: RÞsSU;W SpY77,QnQK=8`Zx-% 7][0>79q5PY _wW5R.J556lZI\_&{Ϝ-+=;3󌷤 YO ~}Sf&&8 o{%Ƽ.95wxD<ݰ]ZtQ,y`M',Jz!Bz2ߎ`"_\RhiTUvzRel7 +^0vm \a%a˙xež6CP-L2•jToBn! 솻tCLl~O^+lnmM4ݚgS>$ N_KjJ0E4ds2Ӭ<juO4i,uiE539efCRJu۠cggtyLXXH. �n+b-onQ8"YODQ&5ci7g lOfìV5XF/hoaȣuUjԆre.,i̔O㏩2jOKFgbtD+K,ĪXKXQ.LJP ¸d4V_LdhrňĔ aDqR{-U:X1pDV|=QAHv\pSNB,ߎP+ $N%jrx<?&_+ENi" .q jnN͉r权7 pexJۚXޥgQee>҈:``Yc K% eۢ0+ckL>ì/UZ#c媫W> $YpUrtmd98˓Tc51RFR&b2 %gԪ[o1ŁXU`e-D$xVAD\ yK/&ga6Nҁ'[݀dxyxl ن-7WTa2w4L|tm awEn;N [Y I yUmu?xtswd5 3Y̓EΦlb_`BmT t9|F)H|(tQ)NOc,kZCXUxZv;S{;CxJM&N4Ԛ_{zlxA5Hv>1}af[>&iGjRZ ,}**mxYii=uӿUG)3#_${Uߕ NEf r*fܺoɪpTwVb"Aʼn sM˖=6`*gm <YV%<?v iDkm5{Mo]Bs򟶗*y!tpމ2"fymcc`MDX/|THt@8U<&~U|CR([Rt#IxYF%/7,shLp o /(S܃F!={mzmg>CVA2 HC&fd/ލcXj T>63to<$?!FtYOF9D7;SI@[ؗ/ @gQ7$P*J}F5|?0/|Hh&XOĄ P0ZtC{{!i`)ȃ(!|@rOс<K#m zf(E@ƘQ-YAգ^M׵Vvѝ u nb~<fųSfKU1UfA쌇Wcbv� 1!<kz0g$g =³(³p Džĺ^"pA/D*(jQ Z|8 KPc,CLJ/Ep `W;Cpe Q_+Ѱ!|*cCH#2DD/C5鹙1g< 745d&&.^ FshQ4|`.y A*Z rԄhp`˳rCZ;F6ugGh<0q4pihϔ77 ,OFǧF90E)A&a(ЛCxo{\ `'kq #ȣp]04&(Jq˹8ߌk=yFV |JT>.x}@qSg6yP~!JŰ~z;>:ݮ̮#$B.򁙄滇9np (-Q.|AXG8sP~5|| 7]b2yQ*^g4ڟH 1;ܒR&0Z؃LO6F{}o=[<=S>35&21>$g3ou7rUfgAGtMq)U\Sw W]ԝ6{\oUWWUkjjMm�sUm\KS[mvf8yfqb�nʍx;NGƇ kv1힙YO\> zvgYyfgYG&BG/98>P9Hc6S{0=Īn8#PSNܺB`nrup6Lku:/_)\ 6)L G/!)\ 6 Zw=uAYu&Cz fsћB \3C z"I /nD-r #x!HƄ)\>)T7$ HCAN9RfC<_͌OF33jjo]6i( G褕Ft,|Ћ_o}?a>)_/%4 tUJBX a/̳Pbtyn 8X![RR YQK8бӱ"޻ʰh$R0;8Pb,Hzp caX 0:2 :&y1a'FeQX!@9sժt>APPb eaE[s,N�@9XKu^W ^K؞@>`e˥[؞K}1wsMv*,Xa&lI89rrI={�y:]<'K' wo9?~S/~|鸐L<ۦMX= 6$(bVl<;/j;2"׺Mn<l>=:axUXbz�ؗ{,kU=`+{{.\#߰3lcTـEdQZT=Xe0րzN/˙JEu9A{г:b!>_wgg/u_MJ[FlԷ}E->3? iFTB,zl`ow` 3xw�#(0"8(/ltBv6M@f{&(ov<ػ:;64756TW*+JKfѐOStxet\. EB R̩띜?.@V!~!k9'ƭi#Fڂ#m+#qW 9\߮xcg@ۂ4 D .~c'W16_z -5i84ápF &dAH׹}ujߐ P~Q_LIrut[yu(4̎] γuL֟s?g-]+Z(<Z+>GY❟yA""@¨f_z_%փ+:7}=7 V".yLǷu#dӑ>oC�vaH!)8Iϫ=ҳwgemtad|;˾PhOrU8X` `)d|d_O԰@Zt WBs~wΐog6WHGu fp9AET}~?W+$lՍw)i~e9BZ2W7Ol^=G@-|gdY`!S?oALka8#\Z~O{_K7ҹ(t֑A2`~^1jF_]_ʡXbe\?s׆x Q!1ej"F_| 9 tsa(qՃ�d(=H|??m}doD<T#!aPj_ { gW @q]wr77/[ q>DM~DVX _33`k!M|w_ ..V j-jC8\C.D!=`Yݿ }}8l,A#�W_! (CQdy&Z1q6#h)~ d &^ؼ8/cW,`Fj8_M_ċ^ c!g|Ty|>#&<ЬH!t~\)m?HwrpkϢ}.v!EBѿ w~V?{/ڎ|?A7-@9f0bdXO!w;HyeUK'%ĴwLcWc. ne!L!uza=;"@EwJ |ӂ/Q2R\+.#k `a%*\W&y9}iP'gN! endstream endobj 20 0 obj << /Type /FontDescriptor /FontName /de5cce+NotoSerif /FontFile2 19 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 21 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 22 0 obj [259 333 500 500 500 500 500 500 346 346 500 500 250 500 500 500 500 500 500 500 500 500 500 500 500 559 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 623 500 500 742 500 500 500 500 612 500 500 500 500 625 500 500 500 500 500 500 500 562 613 492 613 535 369 538 634 319 299 584 310 944 645 577 613 500 471 451 352 634 579 861 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 834 500 500 500 500 500 707 500 500 500 500 500 500 500 500 500 500 500 500 752 500 500 500 500 500 500 500 500 500 500 500 857 259 500 500 500 500 500 500 1000 500 500 500 500 500 500 500 500 500 559 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj 23 0 obj << /Length1 7556 /Length 4574 /Filter [/FlateDecode] >> stream xY{P[Wzνz ؊ !y`y aIH H$8kL6lwu:;kO&IN}q;.ʹt6e34zLw'3&I]cv+|;^ �@ <ႍ D~@rgfLO@\ Myi6:%8;~Gيr牰0KEy�e:d7o?C(ϢùQg_ z|ZІB:04~@ Ǜ_1C>{ӿ/FC13�O؁6�2zAT5ڴt]Fo]T_� 9Ɯ cqZl\5 ?U_bϤ %cv�RPXTJ-&cgmoJq׮HRҠ wŸgW ?ܮRil2tRIFխ/KUOڅ+IhqINgFM'E4[_"MWOT/K'A'zݣ$ e\ cH=?yMB5:U e 9ۅv.6l/ I4,Q["啐]5MBxN~͚r@+fְ%]l1&ˆ]`E%DlOLiְ|ӆMCm\<O[RehM*-^wЦ<Z2M^g;ܬ^TkosqeU==f*U6ᄀeyV{-%ҝumv^8}::PUTEs=\ lJ|oq}u.5lNO,Ս?RKIbJ|gW~|>fP\ZU*6{gkyFj*4۠JqU456l/H!ՄXԺ&"nU2Dvo"L<[iY?}+$^J̑3K|O8-<+_=zx4[Bh ȭS{I(3jHA~bR"*"j&TbFt]͜Ȭ,*+#?L37ՔV6?62m>{ ƺ _nU19E;Tx|�)6 )ҀbV/lǓrVS| iW_Ѝ%+'+#Yנy¤"؏XP| G@}Q݀xI  RABnꞡ.LvZpR n3ڃǧ )4;pea !hII'::O$: c;뛎m=,3$6 =`Y=EL^;6ץںT[_ϽL&cgfQc;R ' Np5+'_*"l .N*Б"WA>1*2It(ĥPF䤂AYV4"Pt< e Gug@g@?O^3MR _<TYI;YШFW(|ňo=̬Lcv(E}C> a8 !7P=zp4,P L {b;n[r P,DH`'k`z73?pGBDؑ0< gh-e/29: _k Xpۓq_$i9E݋b$LjFy8c J=4x}s44}wSǃ% XF88oV_40c>|R 9'@0it]'HcHjB2)T 0 xg�?K&,i6>|4k ͙g|13:2!N<BpLHr'& F(P׬8甉qhl} }"6czt1jM{">/)_0z}o}@Jz}07EF5=AZa}2a}}cC1ctcpfCkh774R7tAk Н=5Q\x6}t:I4 L'83Y}@MJЋ <1.τ"AGB:Lb1U_D<1}ƉႰ[fN˷y{fYv# <pC ":yv<6I* W;vS27[&w9 }`CP<ڇr>Ou|\a>*Dr#|snv~RQ5r)v$sMʟ At sx,V$ϫ ; G>+>ﰪkRt*Ǣh`̘;68a4qgeq&N?y@vۧo\l6|&בO `cFX$\D`M p5 %BR XN:$9$$I :WI*9JVIG1 &κ s�PƚlA2Q'd}(tǰ& mĴiaDjQa+r*iQ vc}>ƚ@Hob [Yr s7"c12a[hs|R-bE]H-YJ~dye%gd-+qhn6pAt gbn,];BZJ\J"~E! dCD8?>p^/`< m}.yN#(s+gYՙ<{l7`^i Ke%7bƼdV,ՠWfRԴnCweFX&5: EѲn2><.v 97ᱏGWhzC GaC#d; `zq)f;{9vcpn W=,o-٫~Y;LNvV[F˚28?\$䛮NvSvov^XXg;͋Fj~h!D(N2`EP &2x!PTW3jv( XR͠hu1Xl.c>:2<4wO_oOapۮ;Z̦ښ[*ʥ2ciq~>;kC.=MQDbMvSy[Vmz{k,ye|Ց{5-9}%iY$zm5&QmD'O[%?… (hAm~+CmE ].ؓJEնsQ 춲Xaxj0]5}rdC)eM4\tzԒ&ՙ^y)xy9Z&YmOgk$MfsK"+'[{h*vcxnvqRraRz)00DOS.Yd1FqBE7{ݒqZa@`80F#% L /8S20\76R`# k#n W˪>d Org͡fץU7@e ZmLz.d}j>2 V iMCb$5roujp[c(kd[3ǍKRXΗ:דe ؝D1dpO)Vfew8˭u%p%rqkА\YliFpYqa[靖K/i4e )\bIܶw5K#;SNUaFrR4rZEu хzh7v6emE=.GYZwQ'>״ y!U]c0yz F1u8LE[޵!O {1*uJ>%lvQGYױ{a# ,rw=\^{[4gBy ,-;r `#u{0M0gx--,9h\%kis$W.<:%rbdBN;_cΫܝrsF,@&P&0QҸ5 UqSƱ5Ԓk*Y8.\b?zy叻],ǡ#D&R;FGj_$&SIN9CdnNk13H!y2Iײ�נoj7:xy~~>*AkAx^g<~=|S_:/'x~Ey;i *=0 .` q@wx}뮁{3"㿈#M|![?~Ǹ+#{x MA:׾6$oUxt+w`Y[v?b&?<G˪ i|MǚBHZ1 J.QT7U M6Ua)y09@; endstream endobj 24 0 obj << /Type /FontDescriptor /FontName /f2a119+NotoSerif /FontFile2 23 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 25 0 obj << /Length 279 /Filter [/FlateDecode] >> stream x]j0 ~ Cv!0K`ְ8qyIZ`>FcPdg;@>Da/قеtkN& úgٶR*7OnNToA$7_7LTj&˶z(5kYs% Vݿ۳ɢS)Ckjš;B=#gQk4qp#6BeGBy44.v{/Wi1iN"RŇ; endstream endobj 26 0 obj [259 1000 1000 1000 1000 705 979 777 200 0 100 310 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj 27 0 obj << /Length1 4036 /Length 2494 /Filter [/FlateDecode] >> stream xVmlS~ϵc''$49ח&N)l!nLIlJ };W ct6ZUhQP7mlviMIZU~4J)ڏT4Qi=7M=;}>9:@� d(sT$[Ye*�NM]xQ `'3ш‹�e!Ĭ#zx\^Ey7"GA7ӑqOVԑd3y̙�L>ԟLGROL<:MwfsJVń1&өy~(DTh*X{WCeb/`,3+@:7 g�f�oX⭖DRq73 S6�O+8X;ĖzsKW:|s}'JP2\Y{VG]%ho {҆SxZDF^EZ nKt#5&<t;CX'֛+ %ɅN7{i ',zZgdž_\Xu=4!V]-;|_5H;-d!HssKS1Dc G,]^cewi) Z0}u: fnׯ5ֵwun66{K/Y̦VdIy]:ɳw7m?Zkw[?$Rq=g2sd׮ ֞vǦ@_^U G?8W7 +~^<KKuŞqEu]jl0&&^#>Rl6q Џ\=owԿ-1YY#-f_%?T6mCMvo#9ϱǖf!tt~N< Mƕ~IsvZkzux45<uI-oA> 7,>x|{- 8nr%T>07n EBA`ofrڈP^!*#]w3o.PbEEz$Y6wL%K"12b"fR^2sZŤ2Vq)6K[2ϦN4wyY>4/kgQ˻`wt;߁n=pD  yR痺݈<v#SR`v.{_Ǭ9۫]^E~"F:&:o&_1`6ET㼎a?29&.mq::6s/},A0 qP ( map AGyP DζTZGA cl2Ci7-u\,; 4z*< 7&B{9B\GOQrD&Mr7{5y,7Y8'D:#]T69GWTF\U7;3Y/׍փX,ܕJ#}jnl0SBٜSL#9M'D**1UrD獰\$ͬj':i$D^%&gU&T'=P4sfVL,1FT$rRJS)%MD9Ngw48DŽA@ppd"H۱;v㙈c;̥鲞vmfG-nM 6>*bhIqۛTbƕ/aU\ 8Qg 01=Xg1a.QbHyd8>QTcb˴(D$Ĝ~ źA۵tӨn; [%?= r}xss-9ҧ˟tMYi9, r5\!+G| d"?.'R#όmmE^9*Oߒ |Tr;y|bA&#}˻?aȃqy1q6\B~|PG_wGjMsߔBͿq`s^xxpȐKqq!|4t/MYCZ ߫CaS됶y4<@j.X'v494¢K38 TEڞK3:(_ }d{'lC\hY&Z#B8|eΪ\yNN`tzb~Hcv^M=˦rgM5qiNzyif/ QؼSPA)D(D1l+pm,6]^j'hflH dXd M ?"hA$F cGa ᑶ_jET6S�s9lS DC,( $Zs(ɥY6`լ�&U@MRd0W(<ڶ3& m+W|dB$f/p"R/vg, h+4+b95b_pp” W@ZtD endstream endobj 28 0 obj << /Type /FontDescriptor /FontName /6a7d59+mplus1mn-regular /FontFile2 27 0 R /FontBBox [0 -270 1000 1025] /Flags 4 /StemV 0 /ItalicAngle 0.0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 29 0 obj << /Length 264 /Filter [/FlateDecode] >> stream x]n <PYJQ-0)C~ƭ:i[?8/�tůQaV[D^20a[̽3-X\RYxu}5%^ >*Û {u=j:�%HQ X[]kLU0u6zIJC;U+B2jք}Dnj!c4njO9kjY&뾤Zc覴X^:=U~? endstream endobj 30 0 obj [500 500 500 1000 1000 1000 1000 1000 1000 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj 31 0 obj << /Length1 4272 /Length 2814 /Filter [/FlateDecode] >> stream xV po%6۲dlPjz ,66Y!c# 9 c $ȯ Mf$2IfȒ_N;mZ2Ld$i4M$r{ZMw{߽{۷�A<x% @J'"Cg&PD~_a=�5t2UOoC=ɠ`3ԱoW4f/NF2 TzJ8ch$!\H _HGufyBhs O ;TX7Pr Ǚ"ɂsfBuFR/o3w^NgUK8k)?1cˠEcbDRxtHb`)N˿\ZުtW]=@'
E, *bb:hJN c5U "&4wiyKsmF2nnhu勺 ~hu[v/u?59syNarP+MefTUے%X&=-T=V9ڷ.2!&'*/tV[X[`."J:\B$}*?VtZv?x#ܙ=b?'Z1u*R ϩDij-C&5-Hs;\i^붽+>5 rlZ#87L)Jhˎ _x}+mB$%%68ҘSXy[x(L^䗌4N|T(y,pgp]U?u7 O^b>wZH<aIu-\}C$&^;ֳȩ*�Z+FȰgu@@fÛ-m{):C'y85]^)(dq̻;r{<抩SL8v ސ]X3Z xENd]BAv,(yC9dTW\iŕٔ81&kmդż,]=K}=L%)]J '`5]()"NDHQnZ{r)բ4"hyaRV ^f\Sk#o(2XuӪy/r⼾T㑢/b==wر+T9O3K Bp?< {D 5d-I5r|$XID ` ck6͌(Jlުl\]-,= cheΥ8eA;םk�; r\O.@# y^vfsvQ vmIØ^!v{)yoi3kn7]&~NInjpd>XC %D3"*H,*MԍZN0ːf'͋hvw..ͮC]8Okv=|fσ"b(' <^g.4}>N49O /i>%0OVa94#0]dxb2Կ6ɍ+(R:v t ␀ݐ0L$~XIFX aaap=FhLj(\/NA {ɉ mt%ͅФ73v8EbHI r6$Ba,>fiFd6p<Fmr5 )L7Q9rh"2Bd.t:CEObm ^4o%4E)馐NHK%q|P6H')P( MC靾dFGcp4h"S7M$}1fMT*h~\W+4NtV3$Si¡ߗF + 5h4}nǮ7٨{soeVu^E7:kFtcչមrײz͖1#!ɶZlhEzF@[/OH9 qoG)w(d|<6896ɥI؆RsO<!͏i jA4?0rq͋UÍ']4鹷mju #xQrrmqޝ 6yDo8J/f ^j?Gc!Wx D-CL-{meSK1!|L8vdi?f@ZD /JdEz'ӎ#͈-oj_e[jOJRBO]xKq?`nxv¿_ �ُt̳ڷW%`@-$~^CGTKم暴MjPi@qأ aM^nKPVQ+=ΫW#yzUg WP>voPQxޱ굠g7Eռ:ڻ^˳4V'>۴ɢ[O.&Zj+B+MPUW픨Waؓ f| mQZ2\s46Ksu<+mP ImC97͌S H|:vA1E|U`0ȉlF5n"w+J6D=#Q%^OrJfr!WK2"o#K _I :ɷmP|? eU:iYANKΟyÞ.4%;"9v]~3TWo6WUE+?U SEaˣ! endstream endobj 32 0 obj << /Type /FontDescriptor /FontName /79bca3+mplus1mn-regular /FontFile2 31 0 R /FontBBox [0 -270 1000 1025] /Flags 4 /StemV 0 /ItalicAngle 0.0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 33 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 34 0 obj [500 364 364 364 364 364 364 364 364 364 364 364 500 500 364 364 500 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 364 500 364 500 364 500 364 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 500 500 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 1000 364 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj 35 0 obj << /Length1 3516 /Length 2244 /Filter [/FlateDecode] >> stream xV}l[W?َя|6iMuiM&4i,M8_G^ةf?7ncu+ ( Sy/Q!DˤNb*Q( ub mb|lu8%*߻9sν>�,68+)@7�r&6~P ŒA,#[6呸vz\؂sDT+WQ_WH;Pãͭ޹Z�PO%3Z ! %"Pt҅b>БJ)ݦj2NW �5xXvU� ��""X#un΁� bBIɛWE!\IPVHNv~)Hic5ҷy] TBA~it޾ӺHoho$_&]!42`*{$#&<;6صc'Ξ>Y[yXO-Q̻Zy io[dRS#eFW5`̚^iɎ+!.%զ?,V\'u9g/h\Ww?)߿u |'ijYU>QMwtM]uf^YVCbŪZ{0 L`5ոx)#z|lkMX{/+V5^NyM&4 Njxs=_Igvᗰ*kH-r <HnB 2Ek.^J8D)xeٷCS',<'| !+ٳhkgR+6WiXJb~> 8z&NQ&.☉[pWs&n^[m"ϻ&nCMkIARne6eF&L|9BΘr5a!W ⛫l6Pjlp%ӦWM Xaiۓtt&57VEqGox~IH<! 3 OZ6�bxP&|0?<>v#gK4jOƔ4ZȘ(O&dzFnFc!}itTܘ$[.hL4t&L7(0i`< HP)e3+]( i3d&pϦe0nh+R `.a 'B GY(ӪJ3ɰ6U7KĢ񨦆hJMǣ#o4I+ jIͨNtR%hFKGJEM1h<AEC"'UU`Tq"(]Fw?vmӉ1?m \ .btIOrLgx Fl mch[C,X؞w l38[ g* )kMՌF[ȆVsA]=iXR#i0"ff}UV5<y8^\ ⌂0Eja jQS/q!Rی>_JoLJO#{]`ﱫ,[ÅGʶمcDog ziIvFKXb!ܳ)D'a'h'جoC}zY٣i;}3C,{~9d ?$ی3c)B4ߕit ?lo\P-^~7ߴzP-^z,<'aP/ \"˃z}zQӾW7ԡjP8wutG62}U'U:N􆾬ɥ A_`$.Q;^٥[Uć; q-;$Q5ò1!gs.7ҋ)NOiK Ȼ;++hWK/q<ϐ$[v0ȩ9raCeG|,-dW(I_1YͺҝR2K44]vyd Mstg_r4'$N{U>+H=DApi�3s N^7K408u"rXЀhn ')ܡ^ηpr|٩V]XD lCRήӑfev~K_,n<X?}iz8W <=<X5NQ\|oKpC3<�6F endstream endobj 36 0 obj << /Type /FontDescriptor /FontName /4054dd+mplus-1p-regular /FontFile2 35 0 R /FontBBox [-109 -288 1403 1075] /Flags 4 /StemV 0 /ItalicAngle 0.0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 37 0 obj << /Length 254 /Filter [/FlateDecode] >> stream x]Pn CIJJ/>� T/(z`5;,9Ͻw�[M%Iar1ZԳ-ۀ@6{2a;Dޒw_afS$%6`ˠ_ 4پ7/-捳 ,QiHORX+xtV/X ?B^Xa'EGC+<چ묺^T췓5ձpj v|x endstream endobj 38 0 obj [290 1000 552 1000 1000 1000 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj 39 0 obj << /Length1 3088 /Length 1849 /Filter [/FlateDecode] >> stream xV]lW>wv׿qb;l+7g"㸱zC2ٝq㸦n(j+<TBIGDR4RJE:wNv=ss{Ι{C:HP*ZbXwٕuwPNYOFrE߃<8pK.g[ϳ瀏W0AWpl>ী+C;iMU{| {!n-VJծ `p$Sw`_:f[{hI֧D?UH>Kfhu+7].mdt-b5c}#w]YӨ`?+~I2sU:xv󙍏Z4hkkkvd v#iu_i& 1Ik4 ?PwXe�oiӡS(f?߽g1c_WV/N8Pg/kՊkxz^x<=w<><>@6onNb=vNz|.z|Iew4tR#ϧW=itQE;|Z59{R{y>:r8ALZ*)K9rhh/q_5CO,Þ8A|Ci*q;R𰡸B:Q.9jpq8AL%,/*mBIp:=<LQ >\^whWkrEHԢEV*2CJ@D#փJarS908ؠ3ȿ)ҥrEA&h" !WE e@ZJ"qXm^+gUjGB/;+vᖭZ%:eR 4UJtTgW/WX^qxg)ˁmvŢ]MBaM:ʥS8:9vTcqr8;4ON&.$C 3C;khV|Wnk`fUn0p -WQo?Z3o:6R>im}F'V%m\VyBW =_[EʵJŒ eKFҤ:T[{qq!5#0%gӄ‡]$^/2{-keH,oyI|K|G O/~Us/=%80/X]ك19P<{†`'|zS>^D9q 30a9yX}> qo[Ti?TѿROkQ~̭GQߝ\$M-sˌ}ռ<4Nsy44ݞ" vO%ݩKb:yTܺɯlw721O z^ 3îߐzHt `HwIw⼩&LzcTm2. X_XZ f}mS-Fw?v[ .9dd)unqi|$fPm:: *gf4B2Oن+ci^'PCjwcD}pc٩V:xW׃Fm@$Yrӕ.#oxxrz>LQdzȒ9Nw,@wPCZ>JdnEmJ.Kb>XllM؉y!)d,1:'`?N]aapyʽ۾gk.X|^[Z״? Dm" endstream endobj 40 0 obj << /Type /FontDescriptor /FontName /f336a5+mplus-1p-regular /FontFile2 39 0 R /FontBBox [-109 -288 1403 1075] /Flags 4 /StemV 0 /ItalicAngle 0.0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 41 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 42 0 obj [364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 457 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj xref 0 43 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000007442 00000 n 0000007804 00000 n 0000007846 00000 n 0000007894 00000 n 0000007946 00000 n 0000008111 00000 n 0000008276 00000 n 0000008448 00000 n 0000008620 00000 n 0000008792 00000 n 0000008964 00000 n 0000009034 00000 n 0000009079 00000 n 0000016977 00000 n 0000017191 00000 n 0000018553 00000 n 0000019468 00000 n 0000024132 00000 n 0000024346 00000 n 0000024700 00000 n 0000025616 00000 n 0000028200 00000 n 0000028413 00000 n 0000028752 00000 n 0000029672 00000 n 0000032576 00000 n 0000032789 00000 n 0000034151 00000 n 0000035066 00000 n 0000037400 00000 n 0000037616 00000 n 0000037945 00000 n 0000038863 00000 n 0000040802 00000 n 0000041018 00000 n 0000042380 00000 n trailer << /Size 43 /Root 2 0 R /Info 1 0 R >> startxref 43294 %%EOF �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/font-glyph-default.pdf������������������������������������0000664�0000000�0000000�00000102105�14163570564�0024657�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20190917032018-06'00') /CreationDate (D:20190917032025-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 15 0 R /PageLabels 16 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 5114 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf <6120> Tj /F1.1 10.5 Tf <2120> Tj /F1.0 10.5 Tf <6220> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 79.236 793.926 Td /F2.1 10.5 Tf <21> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 84.486 793.926 Td /F1.0 10.5 Tf <2063> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 778.146 Td /F1.0 10.5 Tf <6320> Tj /F1.1 10.5 Tf <2220> Tj /F1.0 10.5 Tf <6220> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 78.501 778.146 Td /F2.1 10.5 Tf <22> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 83.751 778.146 Td /F1.0 10.5 Tf <2061> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 762.366 Td /F1.0 10.5 Tf <6120> Tj /F1.1 10.5 Tf <2320> Tj /F1.0 10.5 Tf <6220> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 79.236 762.366 Td /F2.1 10.5 Tf <23> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 89.736 762.366 Td /F1.0 10.5 Tf <2063> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 746.586 Td /F1.0 10.5 Tf <6320> Tj /F1.1 10.5 Tf <2420> Tj /F1.0 10.5 Tf <6220> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 78.501 746.586 Td /F2.1 10.5 Tf <24> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 89.001 746.586 Td /F1.0 10.5 Tf <2061> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 730.806 Td /F1.0 10.5 Tf <61d16220> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 73.797 730.806 Td /F2.0 10.5 Tf <63d164> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 715.026 Td /F1.0 10.5 Tf <736fc920> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 70.752 715.026 Td /F2.0 10.5 Tf <77656c6cc9> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 699.246 Td /F1.0 10.5 Tf <39392c393920db20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 85.6515 699.246 Td /F2.0 10.5 Tf <2d352c303020db> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 683.466 Td /F1.0 10.5 Tf [<59> 29.7852 <4f4c4faa20>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 88.0898 683.466 Td /F2.0 10.5 Tf <41434d45aa> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 667.686 Td /F1.0 10.5 Tf [<54> 29.7852 <6f20b021>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 651.906 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 48.24 651.906 Td /F2.1 10.5 Tf <25> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.74 651.906 Td /F1.0 10.5 Tf <20746f20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 73.9335 651.906 Td /F2.1 10.5 Tf <26> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 636.126 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 48.24 636.126 Td /F2.1 10.5 Tf <27> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.74 636.126 Td /F1.0 10.5 Tf <20746f20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 73.9335 636.126 Td /F2.1 10.5 Tf <28> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 620.346 Td /F1.1 10.5 Tf <2520> Tj /F1.0 10.5 Tf <746f20bd> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 604.566 Td /F1.1 10.5 Tf <26> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 588.786 Td /F1.1 10.5 Tf <27> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 573.006 Td /F1.0 10.5 Tf [<6b> 20.0195 <656570ca636c6f7365>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 557.226 Td /F1.0 10.5 Tf [<6b> 20.0195 <656570>] TJ /F1.1 10.5 Tf <28> Tj /F1.0 10.5 Tf <636c6f7365287229> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 541.446 Td /F1.0 10.5 Tf <61646a6f696e6564> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 525.666 Td /F1.0 10.5 Tf <696e> Tj /F1.1 10.5 Tf <29> Tj /F1.0 10.5 Tf <646976697369626c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 509.886 Td /F1.0 10.5 Tf <616c6d6f7374> Tj /F1.1 10.5 Tf <2a> Tj /F1.0 10.5 Tf <746f756368696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 494.106 Td /F1.0 10.5 Tf <66617374> Tj /F1.1 10.5 Tf <2b> Tj /F1.0 10.5 Tf <617070726f616368696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R /F1.1 12 0 R /F2.1 13 0 R /F2.0 14 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /7aafab+NotoSerif /Subtype /TrueType /FontDescriptor 18 0 R /FirstChar 32 /LastChar 255 /Widths 20 0 R /ToUnicode 19 0 R >> endobj 12 0 obj << /Type /Font /BaseFont /f2a119+NotoSerif /Subtype /TrueType /FontDescriptor 22 0 R /FirstChar 32 /LastChar 255 /Widths 24 0 R /ToUnicode 23 0 R >> endobj 13 0 obj << /Type /Font /BaseFont /6a7d59+mplus1mn-regular /Subtype /TrueType /FontDescriptor 26 0 R /FirstChar 32 /LastChar 255 /Widths 28 0 R /ToUnicode 27 0 R >> endobj 14 0 obj << /Type /Font /BaseFont /79bca3+mplus1mn-regular /Subtype /TrueType /FontDescriptor 30 0 R /FirstChar 32 /LastChar 255 /Widths 32 0 R /ToUnicode 31 0 R >> endobj 15 0 obj << /Type /Outlines /Count 0 /First null /Last null >> endobj 16 0 obj << /Nums [0 << /P (1) >>] >> endobj 17 0 obj << /Length1 12000 /Length 7670 /Filter [/FlateDecode] >> stream xz t[E`{O7ɶ$o'?˻ny_U8myIl˱'@B't>&4t7'4t7dB~/@ byngnݺֽ0B(r�{? )B&S<c:Ƨ{ +Bog>pʔs s5nSG[wG3nۂP\-S}[? Ir#LBpf5s׉f#B<Blԡ Bz/B^0Oe?Ss0"C(bf5 \ BRR"4 #JULl\|R'&i߿um!%PW1'a=X(]^eLE<}~~EH l~aTJ#$I`T*6 J5BR"9A�PjXa +E%cqzı_/)cwZ̽{uexk;]4`}V572i&ZddXRP};]w;(~EgϽCi_ǰR; c)\1ɩ1[x{n(SU miEv|#Q&*j K$Ue\�QhѰ R`b܏CcJ[YZ zjSces&^,]Sֿq:7-6qC-Oo>O˵V>5_ʗ.6#UiNV0Q ,\S 2F\%crcB\H`lrX)w3Gs6nX <+ij|MO&R4yPH�TO"ӵaih짏<ٙ3?o~o9=;{z8;{ΞqONǞ;U㟜Do7Nqn?{=f_= DtXPB̻jCEi頉l5Cy  2L]jcyr?G!*<1 `+1 CQ]zBך((%Fu)Q2y\LZzV)Ir2?LHC"Jb+c ˫xnˍK?BA|5.D2TItCX. & w4aŢ +1aՐzwQUiSuuAL,Ge۬s=?>ނ3ӛwT=)愮\Plێ -}U,:L"gFy8TE 4AhQJD,ɫ` _31n޲QWcKiLDBPnPUFyilIcUY<1ɤ$P M-Ӝgj-H9k+<yvxɩ' w-_cπEk� AWSĻ2OQW_ցmi5kS|b\e=<tJ=uGexzP_$гrSyUY\楦q9 ;N"F[Laa@e1,p3:vV&;k剻R\0PX\nvjKSmIKJfeDR8Y,#,52u(rEPyo{ŽU~7t钝2T8Zg:;['W{a~psũ چt+,3PHkM}A�/*9yo鈚K/uLh m~ZviWc9GsRĬ$Ԙ\3T5\B\ WrܽMAKˊ%S*՘LϫȒBʠ~`"B8.W('2mMTT$W~lSJk}v)xo,ϑsK晸ѶduA[Ye+l#=6&-)*<N5z`,ӤkD]}>vl5=$DY+όt7LD%}gh+ ML:T8kHC~d>7: -jm]zwxȀ9.|ۣq m2 PXIz<5OyfQo0XC 91e#da0\)6e^$D%xXz'LB͌iH`^B7OȚbքk)PGDh̰~%>@ւ %yuX~b/R&~͊"k:kɅN}^n`2ȣfaHAe%6 <*'{lYo>D0e%`Nwvaj"QKbo�2u>-`Owh`e|fKK/;EZp뽅mcJ}k:U %<q:T[ǜuK"Jonn nl^W0vX(n)3,nʀӐGosm_Q8z>OaEcc;Q+u(ޟӹ LKW$;x G&'! 5R5o__r)TSs˖IjZk4`ꎽO{JJ<Oa=j&mcbj$|#"1M {5ó($QZv~so] FEFJ5%R3 b0!z;;$be1h E̜XZ)4-TYvfJel7 )+^7v m |a%aHj_3Ts$#\ͭI5m-t+UdLgVc{*,bMlPs\keަ- =!9!vz[RJvT->p!CSj1BU~)UWZT36]Vl6$&W Y;tiטꑖ Z�m8OEF#2s fGBV 'ot{4BD͹!oLszAcjx@n]vC@GnUNwER6 oPwdIc8tjLUTNNwo3~\J.T7R8/#\Xb!;�%AʠrhDbb!5rB&3Y/'$gkvs^3֒SC v{DJEͧ#C|&u�{DQT8On8X7Ztpoi(Cd?l03+$?$EJ-B$gy*|k&:L%g2Y~c _c(?l1,\xʟqݴpь)9/I؈9pY!+ZO݌&6o+gC0v5lvѶt[grccn-* OL*l]o>Pfo34'na::Y1wh~֮ҁo/}CGl.*r6f,]{l**t4e{DoRC wg lEc Tf^5$3~Й@ymӲ2I*݇}f{C9֜\?ڴ牱]V⮱'4mx&٬=g gb,6g˦LI=_Ϙoa6cq-{`]$ ecS4^*GD6_{ѯݬ \ *BaYi~g):"NpR<0>(v޶[^> [By"J<#dCTU'#B?-h-rꍳ3GUpLˮWL%"9b\d^dd~)E^_H%H>J^i y2됯CCB9+u4o5P97ƹM)p Zr!=).b>G DJg#3wZr2P1f_Ghy xc$GSQ,Fvet"%k#~-=B6-'by(jQ]ڢEyjQ0É8އz ȊBǘ>W~~(PQ(|'pȴ!M 2:Tk5A>ԂZԆ7w.ԍz>ԏC?3YJ'yUŴ6WYw`$<*]s$K(( 1XCA<$'A<d EI { C86x A ^"q-Ax"8Fj ^TR/EA|R2 >3A|(` 6'CZ > U0]+ QGh# ^$A K׸gg'ƽ|9'op&]|Hry\]#FThͣY48"3\h5@PFypDà P hr^7횝q(7#&hkln9K9 D[n < :*[44\xic@oJZk3sB0h�Ń$ B9"(Jq;ys5ɻG |JT>Nx@ qQgNP~%JŰyz316\Ω[̮#$DSNFy~H(-S.Dx P~ |x| ;Sb2~1*^{4ڟH 1p).k .Fuħ=޹ wО}`#`=q0zvzowκLN = ɹ,wM|k:050 _#kb#與i>oN櫫&[c{j5u]|M{[m zoij],33xx,?1539A n^Qw`'0?s.f\S8+# K1n41y,?yU#xS{% !ɵz&x:#bosǚX8 gv [7P̭BFhNg t2k7=Q5 D腖 q;D^vApDn.(knD{H;WOxl"zChtf)$3KO8K1X"M?%Wdޠ3L\2Ә0M] prE#F{!i8ta.S{%ČcLLݳcMn{!:H~ NZiDS?./^@?{83R!D!_Ih&骔X:, ^+� BqRbes@=eG.cRO/K*j@&(�C 0& uxRPБ!h?70ˎ N8 /BƊ5KW�z^UBy>#w/ +ʘK$eq<PʱPX=_e*E5W*_X>]?yle.k_-^{<p ??} 9t O}EE>4Ё0 'K'$qr$c=O'~zN\:?qĕ7N,i?Z/in&พxŲV-kOWFk]&ca0e;*{D6 ~fﰳ==zu>1lcC6 81O<yAn _ߐn@h@  E[wVVrWOұ͇IiC=[-b|cPuR/Ho@J=7>سݓ,Yx<(B ss<  :K0a<Eg<Yxʓu}=Ύ--M u5UʊҒ"KaAd4dSd6N)EH%bǂzKuT@` :9~#0rtHk`uu$P!xߛoZ}B[hK@�:kyvu uZZ#ԸB h14 a 38^W iY#ξZNonɄZڅj(I'$ ::/fp߅H4 F}> sغ#,_P8ع˗-ՖuZ֖>>R�> b/iփx~༰|`H#:0Y_<tf|w~+]Zտ2㻺2Ə^!�|:0$gՔc畕U9ҳ:!6[|iDu = "}/:a!:/6ӱ<p42D ~X Iٗ5, @Щq@7dQݢ3PD-U$B> [u}tJpOYC,-{5y�4y}"[~1W?Q-!S6Z72:#p*G>gB%H3}`MG15nsk_Q@!62`>^1jFP]O ʡXbe|/sxQ1jbF_x ta(qՃ�d(=H\B0}doD<T#AaPj� { g @UqSwJ7 Zq!HM>DZXP3hk!/M# Bw_ N^V4j-jC68Eӹhto35#dX` �<.�t CFqF�.r� GR8|}?BsG8/a#T,bF \վ0+ 2,`Cޅ:8|F׳M<EsEon5#%:5r+ }+_#ڶC> ?<AJP829Y\B@Bk:BNz ߿<:Fd*:FWajTa3)<"u/BzӒZ 13ÎMD_F?Fwp#, bDR-@ϠsBۅBN2 O/Tbkɜ!FHJJ o;D,+xyy p-pט&9\X޵<$jSq= endstream endobj 18 0 obj << /Type /FontDescriptor /FontName /7aafab+NotoSerif /FontFile2 17 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 19 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 20 0 obj [259 333 500 500 500 500 500 500 346 346 500 500 250 500 500 500 500 500 500 500 500 500 500 500 500 559 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 623 500 500 742 500 500 500 500 612 500 500 500 500 625 500 500 500 500 500 500 500 562 613 492 613 535 369 538 634 319 299 584 310 944 645 577 613 500 471 451 352 634 579 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 834 500 500 500 500 500 707 500 500 500 500 500 500 500 500 500 500 500 500 752 500 500 500 500 500 500 500 500 500 500 500 857 259 500 500 500 500 500 500 1000 500 500 500 500 500 500 500 500 500 559 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj 21 0 obj << /Length1 7556 /Length 4574 /Filter [/FlateDecode] >> stream xY{P[Wzνz ؊ !y`y aIH H$8kL6lwu:;kO&IN}q;.ʹt6e34zLw'3&I]cv+|;^ �@ <ႍ D~@rgfLO@\ Myi6:%8;~Gيr牰0KEy�e:d7o?C(ϢùQg_ z|ZІB:04~@ Ǜ_1C>{ӿ/FC13�O؁6�2zAT5ڴt]Fo]T_� 9Ɯ cqZl\5 ?U_bϤ %cv�RPXTJ-&cgmoJq׮HRҠ wŸgW ?ܮRil2tRIFխ/KUOڅ+IhqINgFM'E4[_"MWOT/K'A'zݣ$ e\ cH=?yMB5:U e 9ۅv.6l/ I4,Q["啐]5MBxN~͚r@+fְ%]l1&ˆ]`E%DlOLiְ|ӆMCm\<O[RehM*-^wЦ<Z2M^g;ܬ^TkosqeU==f*U6ᄀeyV{-%ҝumv^8}::PUTEs=\ lJ|oq}u.5lNO,Ս?RKIbJ|gW~|>fP\ZU*6{gkyFj*4۠JqU456l/H!ՄXԺ&"nU2Dvo"L<[iY?}+$^J̑3K|O8-<+_=zx4[Bh ȭS{I(3jHA~bR"*"j&TbFt]͜Ȭ,*+#?L37ՔV6?62m>{ ƺ _nU19E;Tx|�)6 )ҀbV/lǓrVS| iW_Ѝ%+'+#Yנy¤"؏XP| G@}Q݀xI  RABnꞡ.LvZpR n3ڃǧ )4;pea !hII'::O$: c;뛎m=,3$6 =`Y=EL^;6ץںT[_ϽL&cgfQc;R ' Np5+'_*"l .N*Б"WA>1*2It(ĥPF䤂AYV4"Pt< e Gug@g@?O^3MR _<TYI;YШFW(|ňo=̬Lcv(E}C> a8 !7P=zp4,P L {b;n[r P,DH`'k`z73?pGBDؑ0< gh-e/29: _k Xpۓq_$i9E݋b$LjFy8c J=4x}s44}wSǃ% XF88oV_40c>|R 9'@0it]'HcHjB2)T 0 xg�?K&,i6>|4k ͙g|13:2!N<BpLHr'& F(P׬8甉qhl} }"6czt1jM{">/)_0z}o}@Jz}07EF5=AZa}2a}}cC1ctcpfCkh774R7tAk Н=5Q\x6}t:I4 L'83Y}@MJЋ <1.τ"AGB:Lb1U_D<1}ƉႰ[fN˷y{fYv# <pC ":yv<6I* W;vS27[&w9 }`CP<ڇr>Ou|\a>*Dr#|snv~RQ5r)v$sMʟ At sx,V$ϫ ; G>+>ﰪkRt*Ǣh`̘;68a4qgeq&N?y@vۧo\l6|&בO `cFX$\D`M p5 %BR XN:$9$$I :WI*9JVIG1 &κ s�PƚlA2Q'd}(tǰ& mĴiaDjQa+r*iQ vc}>ƚ@Hob [Yr s7"c12a[hs|R-bE]H-YJ~dye%gd-+qhn6pAt gbn,];BZJ\J"~E! dCD8?>p^/`< m}.yN#(s+gYՙ<{l7`^i Ke%7bƼdV,ՠWfRԴnCweFX&5: EѲn2><.v 97ᱏGWhzC GaC#d; `zq)f;{9vcpn W=,o-٫~Y;LNvV[F˚28?\$䛮NvSvov^XXg;͋Fj~h!D(N2`EP &2x!PTW3jv( XR͠hu1Xl.c>:2<4wO_oOapۮ;Z̦ښ[*ʥ2ciq~>;kC.=MQDbMvSy[Vmz{k,ye|Ց{5-9}%iY$zm5&QmD'O[%?… (hAm~+CmE ].ؓJEնsQ 춲Xaxj0]5}rdC)eM4\tzԒ&ՙ^y)xy9Z&YmOgk$MfsK"+'[{h*vcxnvqRraRz)00DOS.Yd1FqBE7{ݒqZa@`80F#% L /8S20\76R`# k#n W˪>d Org͡fץU7@e ZmLz.d}j>2 V iMCb$5roujp[c(kd[3ǍKRXΗ:דe ؝D1dpO)Vfew8˭u%p%rqkА\YliFpYqa[靖K/i4e )\bIܶw5K#;SNUaFrR4rZEu хzh7v6emE=.GYZwQ'>״ y!U]c0yz F1u8LE[޵!O {1*uJ>%lvQGYױ{a# ,rw=\^{[4gBy ,-;r `#u{0M0gx--,9h\%kis$W.<:%rbdBN;_cΫܝrsF,@&P&0QҸ5 UqSƱ5Ԓk*Y8.\b?zy叻],ǡ#D&R;FGj_$&SIN9CdnNk13H!y2Iײ�נoj7:xy~~>*AkAx^g<~=|S_:/'x~Ey;i *=0 .` q@wx}뮁{3"㿈#M|![?~Ǹ+#{x MA:׾6$oUxt+w`Y[v?b&?<G˪ i|MǚBHZ1 J.QT7U M6Ua)y09@; endstream endobj 22 0 obj << /Type /FontDescriptor /FontName /f2a119+NotoSerif /FontFile2 21 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 23 0 obj << /Length 279 /Filter [/FlateDecode] >> stream x]j0 ~ Cv!0K`ְ8qyIZ`>FcPdg;@>Da/قеtkN& úgٶR*7OnNToA$7_7LTj&˶z(5kYs% Vݿ۳ɢS)Ckjš;B=#gQk4qp#6BeGBy44.v{/Wi1iN"RŇ; endstream endobj 24 0 obj [259 1000 1000 1000 1000 705 979 777 200 0 100 310 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj 25 0 obj << /Length1 4036 /Length 2494 /Filter [/FlateDecode] >> stream xVmlS~ϵc''$49ח&N)l!nLIlJ };W ct6ZUhQP7mlviMIZU~4J)ڏT4Qi=7M=;}>9:@� d(sT$[Ye*�NM]xQ `'3ш‹�e!Ĭ#zx\^Ey7"GA7ӑqOVԑd3y̙�L>ԟLGROL<:MwfsJVń1&өy~(DTh*X{WCeb/`,3+@:7 g�f�oX⭖DRq73 S6�O+8X;ĖzsKW:|s}'JP2\Y{VG]%ho {҆SxZDF^EZ nKt#5&<t;CX'֛+ %ɅN7{i ',zZgdž_\Xu=4!V]-;|_5H;-d!HssKS1Dc G,]^cewi) Z0}u: fnׯ5ֵwun66{K/Y̦VdIy]:ɳw7m?Zkw[?$Rq=g2sd׮ ֞vǦ@_^U G?8W7 +~^<KKuŞqEu]jl0&&^#>Rl6q Џ\=owԿ-1YY#-f_%?T6mCMvo#9ϱǖf!tt~N< Mƕ~IsvZkzux45<uI-oA> 7,>x|{- 8nr%T>07n EBA`ofrڈP^!*#]w3o.PbEEz$Y6wL%K"12b"fR^2sZŤ2Vq)6K[2ϦN4wyY>4/kgQ˻`wt;߁n=pD  yR痺݈<v#SR`v.{_Ǭ9۫]^E~"F:&:o&_1`6ET㼎a?29&.mq::6s/},A0 qP ( map AGyP DζTZGA cl2Ci7-u\,; 4z*< 7&B{9B\GOQrD&Mr7{5y,7Y8'D:#]T69GWTF\U7;3Y/׍փX,ܕJ#}jnl0SBٜSL#9M'D**1UrD獰\$ͬj':i$D^%&gU&T'=P4sfVL,1FT$rRJS)%MD9Ngw48DŽA@ppd"H۱;v㙈c;̥鲞vmfG-nM 6>*bhIqۛTbƕ/aU\ 8Qg 01=Xg1a.QbHyd8>QTcb˴(D$Ĝ~ źA۵tӨn; [%?= r}xss-9ҧ˟tMYi9, r5\!+G| d"?.'R#όmmE^9*Oߒ |Tr;y|bA&#}˻?aȃqy1q6\B~|PG_wGjMsߔBͿq`s^xxpȐKqq!|4t/MYCZ ߫CaS됶y4<@j.X'v494¢K38 TEڞK3:(_ }d{'lC\hY&Z#B8|eΪ\yNN`tzb~Hcv^M=˦rgM5qiNzyif/ QؼSPA)D(D1l+pm,6]^j'hflH dXd M ?"hA$F cGa ᑶ_jET6S�s9lS DC,( $Zs(ɥY6`լ�&U@MRd0W(<ڶ3& m+W|dB$f/p"R/vg, h+4+b95b_pp” W@ZtD endstream endobj 26 0 obj << /Type /FontDescriptor /FontName /6a7d59+mplus1mn-regular /FontFile2 25 0 R /FontBBox [0 -270 1000 1025] /Flags 4 /StemV 0 /ItalicAngle 0.0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 27 0 obj << /Length 264 /Filter [/FlateDecode] >> stream x]n <PYJQ-0)C~ƭ:i[?8/�tůQaV[D^20a[̽3-X\RYxu}5%^ >*Û {u=j:�%HQ X[]kLU0u6zIJC;U+B2jք}Dnj!c4njO9kjY&뾤Zc覴X^:=U~? endstream endobj 28 0 obj [500 500 500 1000 1000 1000 1000 1000 1000 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj 29 0 obj << /Length1 4272 /Length 2814 /Filter [/FlateDecode] >> stream xV po%6۲dlPjz ,66Y!c# 9 c $ȯ Mf$2IfȒ_N;mZ2Ld$i4M$r{ZMw{߽{۷�A<x% @J'"Cg&PD~_a=�5t2UOoC=ɠ`3ԱoW4f/NF2 TzJ8ch$!\H _HGufyBhs O ;TX7Pr Ǚ"ɂsfBuFR/o3w^NgUK8k)?1cˠEcbDRxtHb`)N˿\ZުtW]=@'
E, *bb:hJN c5U "&4wiyKsmF2nnhu勺 ~hu[v/u?59syNarP+MefTUے%X&=-T=V9ڷ.2!&'*/tV[X[`."J:\B$}*?VtZv?x#ܙ=b?'Z1u*R ϩDij-C&5-Hs;\i^붽+>5 rlZ#87L)Jhˎ _x}+mB$%%68ҘSXy[x(L^䗌4N|T(y,pgp]U?u7 O^b>wZH<aIu-\}C$&^;ֳȩ*�Z+FȰgu@@fÛ-m{):C'y85]^)(dq̻;r{<抩SL8v ސ]X3Z xENd]BAv,(yC9dTW\iŕٔ81&kmդż,]=K}=L%)]J '`5]()"NDHQnZ{r)բ4"hyaRV ^f\Sk#o(2XuӪy/r⼾T㑢/b==wر+T9O3K Bp?< {D 5d-I5r|$XID ` ck6͌(Jlުl\]-,= cheΥ8eA;םk�; r\O.@# y^vfsvQ vmIØ^!v{)yoi3kn7]&~NInjpd>XC %D3"*H,*MԍZN0ːf'͋hvw..ͮC]8Okv=|fσ"b(' <^g.4}>N49O /i>%0OVa94#0]dxb2Կ6ɍ+(R:v t ␀ݐ0L$~XIFX aaap=FhLj(\/NA {ɉ mt%ͅФ73v8EbHI r6$Ba,>fiFd6p<Fmr5 )L7Q9rh"2Bd.t:CEObm ^4o%4E)馐NHK%q|P6H')P( MC靾dFGcp4h"S7M$}1fMT*h~\W+4NtV3$Si¡ߗF + 5h4}nǮ7٨{soeVu^E7:kFtcչមrײz͖1#!ɶZlhEzF@[/OH9 qoG)w(d|<6896ɥI؆RsO<!͏i jA4?0rq͋UÍ']4鹷mju #xQrrmqޝ 6yDo8J/f ^j?Gc!Wx D-CL-{meSK1!|L8vdi?f@ZD /JdEz'ӎ#͈-oj_e[jOJRBO]xKq?`nxv¿_ �ُt̳ڷW%`@-$~^CGTKم暴MjPi@qأ aM^nKPVQ+=ΫW#yzUg WP>voPQxޱ굠g7Eռ:ڻ^˳4V'>۴ɢ[O.&Zj+B+MPUW픨Waؓ f| mQZ2\s46Ksu<+mP ImC97͌S H|:vA1E|U`0ȉlF5n"w+J6D=#Q%^OrJfr!WK2"o#K _I :ɷmP|? eU:iYANKΟyÞ.4%;"9v]~3TWo6WUE+?U SEaˣ! endstream endobj 30 0 obj << /Type /FontDescriptor /FontName /79bca3+mplus1mn-regular /FontFile2 29 0 R /FontBBox [0 -270 1000 1025] /Flags 4 /StemV 0 /ItalicAngle 0.0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 31 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 32 0 obj [500 364 364 364 364 364 364 364 364 364 364 364 500 500 364 364 500 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 364 500 364 500 364 500 364 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 500 500 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 1000 364 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj xref 0 33 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000006005 00000 n 0000006341 00000 n 0000006383 00000 n 0000006431 00000 n 0000006483 00000 n 0000006648 00000 n 0000006813 00000 n 0000006985 00000 n 0000007157 00000 n 0000007227 00000 n 0000007272 00000 n 0000015033 00000 n 0000015247 00000 n 0000016609 00000 n 0000017524 00000 n 0000022188 00000 n 0000022402 00000 n 0000022756 00000 n 0000023672 00000 n 0000026256 00000 n 0000026469 00000 n 0000026808 00000 n 0000027728 00000 n 0000030632 00000 n 0000030845 00000 n 0000032207 00000 n trailer << /Size 33 /Root 2 0 R /Info 1 0 R >> startxref 33122 %%EOF �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/font-glyph-fallback-only.pdf������������������������������0000664�0000000�0000000�00000071645�14163570564�0025767�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20190917032018-06'00') /CreationDate (D:20190917032033-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 15 0 R /PageLabels 16 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 6219 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 795.165 Td /F1.0 10.5 Tf <6120> Tj /F1.1 10.5 Tf <2120> Tj /F1.0 10.5 Tf <6220> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 79.698 795.165 Td /F2.1 10.5 Tf <21> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 84.948 795.165 Td /F1.0 10.5 Tf <2063> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 782.22 Td /F1.0 10.5 Tf <6320> Tj /F1.1 10.5 Tf <2220> Tj /F1.0 10.5 Tf <6220> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 79.425 782.22 Td /F2.1 10.5 Tf <22> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 84.675 782.22 Td /F1.0 10.5 Tf <2061> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 769.275 Td /F1.0 10.5 Tf <6120> Tj /F1.1 10.5 Tf <2320> Tj /F1.0 10.5 Tf <6220> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 79.698 769.275 Td /F2.1 10.5 Tf <23> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 90.198 769.275 Td /F1.0 10.5 Tf <2063> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 756.33 Td /F1.0 10.5 Tf <6320> Tj /F1.1 10.5 Tf <2420> Tj /F1.0 10.5 Tf <6220> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 79.425 756.33 Td /F2.1 10.5 Tf <24> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 89.925 756.33 Td /F1.0 10.5 Tf <2061> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 743.385 Td /F1.0 10.5 Tf <61d16220> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 73.041 743.385 Td /F2.0 10.5 Tf <63d1> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 83.541 743.385 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 83.541 743.385 Td /F2.0 10.5 Tf <64> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 730.44 Td /F1.0 10.5 Tf <736fc920> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 72.9885 730.44 Td /F2.0 10.5 Tf <77656c6cc9> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 104.4885 730.44 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 717.495 Td /F1.0 10.5 Tf <39392c393920db20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 91.479 717.495 Td /F2.0 10.5 Tf <2d352c303020db> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 704.55 Td /F1.0 10.5 Tf [<59> 50.0 <4f4c> 50.0 <4faa20>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 89.1585 704.55 Td /F2.0 10.5 Tf <41434d45aa> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 691.605 Td /F1.0 10.5 Tf [<54> 90.0 <6f20b021>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 678.66 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 48.24 678.66 Td /F2.1 10.5 Tf <25> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.74 678.66 Td /F1.0 10.5 Tf [<2074> 10.0 <6f20>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 76.086 678.66 Td /F2.1 10.5 Tf <26> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 665.715 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 48.24 665.715 Td /F2.1 10.5 Tf <27> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.74 665.715 Td /F1.0 10.5 Tf [<2074> 10.0 <6f20>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 76.086 665.715 Td /F2.1 10.5 Tf <28> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 652.77 Td /F1.1 10.5 Tf <2520> Tj /F1.0 10.5 Tf [<74> 10.0 <6f20bd>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 639.825 Td /F1.1 10.5 Tf <26> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 626.88 Td /F1.1 10.5 Tf <27> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 613.935 Td /F1.0 10.5 Tf [<6b> 40.0 <65> -10.0 <6570ca636c6f7365>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 600.99 Td /F1.0 10.5 Tf [<6b> 40.0 <65> -10.0 <6570>] TJ /F1.1 10.5 Tf <28> Tj /F1.0 10.5 Tf [<636c6f736528> 10.0 <72> 40.0 <29>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 588.045 Td /F1.0 10.5 Tf [<61646a6f696e65> -10.0 <64>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 575.1 Td /F1.0 10.5 Tf <696e> Tj /F1.1 10.5 Tf <29> Tj /F1.0 10.5 Tf <646976697369626c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 562.155 Td /F1.0 10.5 Tf [<616c6d6f73> 20.0 <74>] TJ /F1.1 10.5 Tf <2a> Tj /F1.0 10.5 Tf [<74> 10.0 <6f756368696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 549.21 Td /F1.0 10.5 Tf [<66> 30.0 <61> 10.0 <73> 20.0 <74>] TJ /F1.1 10.5 Tf <2b> Tj /F1.0 10.5 Tf [<61707072> 20.0 <6f616368696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 536.265 Td /F1.1 10.5 Tf <2c20> Tj /F1.0 10.5 Tf <646f6e65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 523.32 Td /F1.0 10.5 Tf <7570736964> Tj /F1.1 10.5 Tf <2d20> Tj /F1.0 10.5 Tf [<646f> 10.0 <776e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 510.375 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 48.24 510.375 Td /F1.0 10.5 Tf <a5> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 497.43 Td /F1.1 10.5 Tf <2e2f30> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R /F1.1 12 0 R /F2.1 13 0 R /F2.0 14 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /8d2830+mplus-1p-regular /Subtype /TrueType /FontDescriptor 18 0 R /FirstChar 32 /LastChar 255 /Widths 20 0 R /ToUnicode 19 0 R >> endobj 12 0 obj << /Type /Font /BaseFont /8ffdae+mplus-1p-regular /Subtype /TrueType /FontDescriptor 22 0 R /FirstChar 32 /LastChar 255 /Widths 24 0 R /ToUnicode 23 0 R >> endobj 13 0 obj << /Type /Font /BaseFont /6a7d59+mplus1mn-regular /Subtype /TrueType /FontDescriptor 26 0 R /FirstChar 32 /LastChar 255 /Widths 28 0 R /ToUnicode 27 0 R >> endobj 14 0 obj << /Type /Font /BaseFont /79bca3+mplus1mn-regular /Subtype /TrueType /FontDescriptor 30 0 R /FirstChar 32 /LastChar 255 /Widths 32 0 R /ToUnicode 31 0 R >> endobj 15 0 obj << /Type /Outlines /Count 0 /First null /Last null >> endobj 16 0 obj << /Nums [0 << /P (1) >>] >> endobj 17 0 obj << /Length1 5936 /Length 4088 /Filter [/FlateDecode] >> stream x8 p[Օ'Kؒ-!/D_,[Jl9?يؖ%[۲%r,KHrBB )+h6]a 6�]-v[f!)t4dime']=I3t޽?�r!7 _'V!�R81wVxS8 ŗ,w,"w2u4!Bd8Sh876"wU8p'X2u$>L0~<|@}# i.wI�\x zA<4 ӯJy\Ǜ� ĩEhvT^ �G\ly~VWX/.)]qJ([uTڊXJL>YO`t` K.;G7P>ߧtENYsiOyms!Eej6Z[*T8CC/9cÁ}n@5!mCj`VZJHBL^>GjZ CC`h¡s_]—E֔՚-V+jb}ZW[Ajͽl<ucwt߾/u-&'RG[F{cY|;APl=NR=ՊX Uhçht�*BkK95VmP֖PK/'OF&=>MV>-}p:ǎzzQ"XNzu~~Ѡ `ʈB5=?(+^!ҠKRG,|I@ aύD I6> #k*FīɒP3ҲqGGw]޿nSu[.'^nom9 j2ֱu`<GqW AgY9=EL`HKFEm{]}y~ÇT&?(*Ԕj*Htл=<n} y3I7vBلr>CbdPq], <moZ]GoQP[r$A"Fo>:L [ kVb&cYk0'iSŦPiqO{ojo`r}а\6|5gVvU%[(ErgΑ[*XإJ{6kU+,:P^iS@ok n4ץkP`59=2<p$8 |Mq1{4 [UrvqQcS}ȅ~q,[z gJx5f$EY_ZJtKݩW uKS's͕轡ƖiJom4y1ZK D=,1K_Pfo%}H*M`"ލ~50_K-r8wxqf UѺM訶.? GumMnwF\;n!Oձ\']*~mWBĐ*}eh*j}IWZkJdG޽w&bgc/?~P-.im)=eqƓz]m>yOJG>xi}({3YRbsn{ey Hl f^^lhflk֯{]}uĎ]>gg[X L *WYLUe:wuc 1El]etB_5_fi9I vcgеd!{+K=-%xumveY#EJ/c#d+`*eh^ cў3ga-y{29t8+P芲wG&b4}" 'g=\j5$R v{#Qو((E_�:2qXl{ȞM##SOIMo%=H& qpƇ|̦O:GOZ]3{s3;~o.2iqmc쒾XKT?>Z>[preWgnNle!dMȖ'΍9y1ܣ'~3BN;ujn&ya&[I9'?{6c7W8$)WpyA"GPLjډ5ID;+nXQk:dM 4V֗SYC+cGV^#Go{(Meus7O v}7D=` xacpނOz'<i'wc<s͜KsOr^EUz]uPCYђi0|%9NMD;�Ujjh3<5V6ڈF!H?Қ[ n zk7yOPQsPy]b¨? Ϡ}',؞sb-9)_Wu2f%ʛ4y34ů 7;`#j4T y SϊBص )خH!R4aurn]HgwVh'C`+NmЍa/xra�/'og (6D,mXt\LT},` <o] ⮘U+xѴP*'B9)ρU$OtѶRWf)Ԓ Grr:DukQ 9Uh:а 4 Uo+4l_-Ddb2U57n1m>ӽ -8D`&!{n 3cDqČm؇[7 (sc\!qOxbv:@0JiBI9c0_cz^b51P| fP=M0</,xzD27E%FIaL7j6Y lҴ1nJdLY8ڟ4ǒT\S -(Φ$2xD1|2Ľ$ϤlL|26Lͼof:!>ND#In$Hg6ga#?4$Sl*GRF~O$5MX(2 P#6@h42̵(3pwM}.oG4y<Mۼ3$35'0,I\Ǖ=cFi2w q!DeIJ,?KU^wp5[lMHMe=)Qg8cvɔ<%=2SE7ІeN;?J=F[H/* `g7Y?B"^�7+M'�'Έo$Yه_r}8QZX" 1 >.>&Nxx49DXrA#vHa3-qʳn y1q\S$]WƓ9="=!E;&NBIqCov\(UG zn:Sv\M:!\ݿ.Kսh=ƒ{9,mϓ23= /Sohރ3 ;~@(rg3[w2 ܼw ϐ" SeLjt{mB`p >A)22V`mk2ϗ)P&29Mrrjٱ,(Fc|zr,r:~s)`J^B1|[bkzp:ȳɦ2!P!Ob i˴ȿ!Wg4o)χF"rUi= i>-&<@J!20'_xaP_HcɅ 2YQ/(+3dHF\BZӮd Y62ZB[`HAN\ c-2#,l[CBZ{37> hn&絸'#Fz "4c3X-c27W]Ul {_[rE^A+4 endstream endobj 18 0 obj << /Type /FontDescriptor /FontName /8d2830+mplus-1p-regular /FontFile2 17 0 R /FontBBox [-109 -288 1403 1075] /Flags 4 /StemV 0 /ItalicAngle 0.0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 19 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 20 0 obj [290 363 364 364 364 364 364 364 385 385 364 364 304 364 364 364 364 364 364 364 364 364 364 364 364 620 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 585 364 364 793 364 364 364 364 653 364 364 364 364 670 364 364 364 364 364 364 364 548 578 522 578 552 522 573 573 307 347 562 307 805 568 570 573 364 453 497 512 558 557 810 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 457 364 364 364 364 866 364 364 364 364 364 847 364 364 364 364 364 364 364 364 364 364 364 364 850 364 364 364 364 364 364 364 364 364 364 364 1000 290 364 364 364 364 364 364 946 364 364 364 364 364 364 364 364 364 754 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj 21 0 obj << /Length1 4192 /Length 2750 /Filter [/FlateDecode] >> stream xWkp>wWob?bI^[ (6,;qʖz1IH! 45Bm 4˔4-4t` ` iy|@�$a_luՆ\`u/�H(:3|f@Lt8GzX=OezZ<N~6auط'Fp m:0GX4\<$zQw g0A6=cGU@l*⹦h_Ij/�8/>eu<C~AaѲ+;85#fLu6(Os,p=||6Ե?m=@2N^1Oc Bl4XHA(_<ِHNr[IoF7 W'9*Ryk<ho:(f\N)brPN%.q_yԬ,[&,`lS=[Q<V]uC")%ý$wqڳgI9ٯΉƕ&Ky[̈́g/EDqyל׆}䜓șG=d(iVf昏Q9(/k꘠FZGZZ&X:Jm7/׮l/7?o<I=u}xayd  !sd#>oA@HWW ^m%/(\| =jH>aft_[r@aۭD1aZjZSĵoo*swDC¶; Ow9#Tb<<}ڬfd` &l˵Y C1eذv;vmn|37կZEo}D�X#?%{o/#w u]imaYTw`4-U !CyvgN:cYݓ~9'k91sCX(r{2lvvdk;`<I*Kys@p1RK{Dn}عk{|_A_Xlu)' QzJP1^pHr_}_Nwpy\8 3c|x7Rf/c$l1^B^|Lꑽ Z뻋q9c $BRDb B_<bUOT% 7b>C*Zh<¬řv)' 9ܬf sRrrZ5*R{u5j':oЍVOOvi~U)lqU5?]ͯC4y>zRZRrnE0EJibxvU7_j#NiaL`нaL\ K9O6PlpŕMݰ9C`'( C#ޝ0�[ C ^؄nlifTG)h$Ƨdbh'UcP,G!3@YMIP輜kv xi^ƈOl6 aX%!I|kOn B9f N&cMM9w�OX :S۔L: 0j!,4*HŻ-+@=LPB2MDY_\H(&e?p0捰/¼(M%d3id<8J44`rF㪌4I_TFpXO}GԽgH]G]#=ݛi͆!ka7ݶڰRv&KUv͞`G82zFla/>!ئpħIje06-a3ؤ'Ta1ԬM;")UxM"gRˈVV#a<5#>,,1GԸbpQ7d#huFFO lPGx m[7` ViHHg3R/wjfүsFtL'uIoJo*Uv}�zG%".vûf\ z&tDT][C{%r#acZ E<-nLÑadvJj7_Ѵݩ˯,}TwX /5s6?wfձ򗾑/A}J!p5zS\^5yJY#fJ5wW*^BJUyeYE}.&+Xci^3PAnYFgo((FU^ӛF-JD gU+4ժqٕo.1ю&R`$/# U{Dj{崏2em xӪYl\vjEfZ23mR J7N PD85MiOLӴN'2rŁH9 Yδ\ Tsil`6Zn [a9mrzx=i,GL4ݓ}, „E1PyXL)4ofR3/ >#e柃8H Fꝁ=U]y,獓]JP(tRFvir^ ,ۧ%;n?P I endstream endobj 22 0 obj << /Type /FontDescriptor /FontName /8ffdae+mplus-1p-regular /FontFile2 21 0 R /FontBBox [-109 -288 1403 1075] /Flags 4 /StemV 0 /ItalicAngle 0.0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 23 0 obj << /Length 304 /Filter [/FlateDecode] >> stream x]n <0 "E%.j `H A9k3巰]>̫42w>|IgTzo^fґU(%7e&VdY,$4?\b Buыz^٦yݠsU3fDm p ѵu bt['*-5P,њЖ`PV7p{ԥB9†p_Ph‘P kBԮ!1#ԡc6MIwo\RŕcѮ|=IEm/ endstream endobj 24 0 obj [290 1000 1000 1000 1000 693 900 865 226 0 94 457 1000 552 1000 1000 1000 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj 25 0 obj << /Length1 4036 /Length 2494 /Filter [/FlateDecode] >> stream xVmlS~ϵc''$49ח&N)l!nLIlJ };W ct6ZUhQP7mlviMIZU~4J)ڏT4Qi=7M=;}>9:@� d(sT$[Ye*�NM]xQ `'3ш‹�e!Ĭ#zx\^Ey7"GA7ӑqOVԑd3y̙�L>ԟLGROL<:MwfsJVń1&өy~(DTh*X{WCeb/`,3+@:7 g�f�oX⭖DRq73 S6�O+8X;ĖzsKW:|s}'JP2\Y{VG]%ho {҆SxZDF^EZ nKt#5&<t;CX'֛+ %ɅN7{i ',zZgdž_\Xu=4!V]-;|_5H;-d!HssKS1Dc G,]^cewi) Z0}u: fnׯ5ֵwun66{K/Y̦VdIy]:ɳw7m?Zkw[?$Rq=g2sd׮ ֞vǦ@_^U G?8W7 +~^<KKuŞqEu]jl0&&^#>Rl6q Џ\=owԿ-1YY#-f_%?T6mCMvo#9ϱǖf!tt~N< Mƕ~IsvZkzux45<uI-oA> 7,>x|{- 8nr%T>07n EBA`ofrڈP^!*#]w3o.PbEEz$Y6wL%K"12b"fR^2sZŤ2Vq)6K[2ϦN4wyY>4/kgQ˻`wt;߁n=pD  yR痺݈<v#SR`v.{_Ǭ9۫]^E~"F:&:o&_1`6ET㼎a?29&.mq::6s/},A0 qP ( map AGyP DζTZGA cl2Ci7-u\,; 4z*< 7&B{9B\GOQrD&Mr7{5y,7Y8'D:#]T69GWTF\U7;3Y/׍փX,ܕJ#}jnl0SBٜSL#9M'D**1UrD獰\$ͬj':i$D^%&gU&T'=P4sfVL,1FT$rRJS)%MD9Ngw48DŽA@ppd"H۱;v㙈c;̥鲞vmfG-nM 6>*bhIqۛTbƕ/aU\ 8Qg 01=Xg1a.QbHyd8>QTcb˴(D$Ĝ~ źA۵tӨn; [%?= r}xss-9ҧ˟tMYi9, r5\!+G| d"?.'R#όmmE^9*Oߒ |Tr;y|bA&#}˻?aȃqy1q6\B~|PG_wGjMsߔBͿq`s^xxpȐKqq!|4t/MYCZ ߫CaS됶y4<@j.X'v494¢K38 TEڞK3:(_ }d{'lC\hY&Z#B8|eΪ\yNN`tzb~Hcv^M=˦rgM5qiNzyif/ QؼSPA)D(D1l+pm,6]^j'hflH dXd M ?"hA$F cGa ᑶ_jET6S�s9lS DC,( $Zs(ɥY6`լ�&U@MRd0W(<ڶ3& m+W|dB$f/p"R/vg, h+4+b95b_pp” W@ZtD endstream endobj 26 0 obj << /Type /FontDescriptor /FontName /6a7d59+mplus1mn-regular /FontFile2 25 0 R /FontBBox [0 -270 1000 1025] /Flags 4 /StemV 0 /ItalicAngle 0.0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 27 0 obj << /Length 264 /Filter [/FlateDecode] >> stream x]n <PYJQ-0)C~ƭ:i[?8/�tůQaV[D^20a[̽3-X\RYxu}5%^ >*Û {u=j:�%HQ X[]kLU0u6zIJC;U+B2jք}Dnj!c4njO9kjY&뾤Zc覴X^:=U~? endstream endobj 28 0 obj [500 500 500 1000 1000 1000 1000 1000 1000 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj 29 0 obj << /Length1 4272 /Length 2814 /Filter [/FlateDecode] >> stream xV po%6۲dlPjz ,66Y!c# 9 c $ȯ Mf$2IfȒ_N;mZ2Ld$i4M$r{ZMw{߽{۷�A<x% @J'"Cg&PD~_a=�5t2UOoC=ɠ`3ԱoW4f/NF2 TzJ8ch$!\H _HGufyBhs O ;TX7Pr Ǚ"ɂsfBuFR/o3w^NgUK8k)?1cˠEcbDRxtHb`)N˿\ZުtW]=@'
E, *bb:hJN c5U "&4wiyKsmF2nnhu勺 ~hu[v/u?59syNarP+MefTUے%X&=-T=V9ڷ.2!&'*/tV[X[`."J:\B$}*?VtZv?x#ܙ=b?'Z1u*R ϩDij-C&5-Hs;\i^붽+>5 rlZ#87L)Jhˎ _x}+mB$%%68ҘSXy[x(L^䗌4N|T(y,pgp]U?u7 O^b>wZH<aIu-\}C$&^;ֳȩ*�Z+FȰgu@@fÛ-m{):C'y85]^)(dq̻;r{<抩SL8v ސ]X3Z xENd]BAv,(yC9dTW\iŕٔ81&kmդż,]=K}=L%)]J '`5]()"NDHQnZ{r)բ4"hyaRV ^f\Sk#o(2XuӪy/r⼾T㑢/b==wر+T9O3K Bp?< {D 5d-I5r|$XID ` ck6͌(Jlުl\]-,= cheΥ8eA;םk�; r\O.@# y^vfsvQ vmIØ^!v{)yoi3kn7]&~NInjpd>XC %D3"*H,*MԍZN0ːf'͋hvw..ͮC]8Okv=|fσ"b(' <^g.4}>N49O /i>%0OVa94#0]dxb2Կ6ɍ+(R:v t ␀ݐ0L$~XIFX aaap=FhLj(\/NA {ɉ mt%ͅФ73v8EbHI r6$Ba,>fiFd6p<Fmr5 )L7Q9rh"2Bd.t:CEObm ^4o%4E)馐NHK%q|P6H')P( MC靾dFGcp4h"S7M$}1fMT*h~\W+4NtV3$Si¡ߗF + 5h4}nǮ7٨{soeVu^E7:kFtcչមrײz͖1#!ɶZlhEzF@[/OH9 qoG)w(d|<6896ɥI؆RsO<!͏i jA4?0rq͋UÍ']4鹷mju #xQrrmqޝ 6yDo8J/f ^j?Gc!Wx D-CL-{meSK1!|L8vdi?f@ZD /JdEz'ӎ#͈-oj_e[jOJRBO]xKq?`nxv¿_ �ُt̳ڷW%`@-$~^CGTKم暴MjPi@qأ aM^nKPVQ+=ΫW#yzUg WP>voPQxޱ굠g7Eռ:ڻ^˳4V'>۴ɢ[O.&Zj+B+MPUW픨Waؓ f| mQZ2\s46Ksu<+mP ImC97͌S H|:vA1E|U`0ȉlF5n"w+J6D=#Q%^OrJfr!WK2"o#K _I :ɷmP|? eU:iYANKΟyÞ.4%;"9v]~3TWo6WUE+?U SEaˣ! endstream endobj 30 0 obj << /Type /FontDescriptor /FontName /79bca3+mplus1mn-regular /FontFile2 29 0 R /FontBBox [0 -270 1000 1025] /Flags 4 /StemV 0 /ItalicAngle 0.0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 31 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 32 0 obj [500 364 364 364 364 364 364 364 364 364 364 364 500 500 364 364 500 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 364 500 364 500 364 500 364 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 500 500 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 1000 364 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj xref 0 33 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000007110 00000 n 0000007446 00000 n 0000007488 00000 n 0000007536 00000 n 0000007588 00000 n 0000007760 00000 n 0000007932 00000 n 0000008104 00000 n 0000008276 00000 n 0000008346 00000 n 0000008391 00000 n 0000012569 00000 n 0000012785 00000 n 0000014147 00000 n 0000015062 00000 n 0000017902 00000 n 0000018118 00000 n 0000018497 00000 n 0000019416 00000 n 0000022000 00000 n 0000022213 00000 n 0000022552 00000 n 0000023472 00000 n 0000026376 00000 n 0000026589 00000 n 0000027951 00000 n trailer << /Size 33 /Root 2 0 R /Info 1 0 R >> startxref 28866 %%EOF �������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/font-i18n-default-with-fallback.pdf�����������������������0000664�0000000�0000000�00000435031�14163570564�0027030�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (i18n Font Test) /Creator (Asciidoctor PDF 1.6.0.dev, based on Prawn 2.4.0) /Producer (Asciidoctor PDF 1.6.0.dev, based on Prawn 2.4.0) /ModDate (D:20210509133006-06'00') /CreationDate (D:20210509141658-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 10 0 R /Outlines 60 0 R /PageLabels 93 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 4 /Kids [7 0 R 24 0 R 38 0 R 51 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 20561 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 203.1376 777.054 Td /F2.0 27 Tf [<6931386e2046> 40.0391 <6f6e742054> 29.7852 <657374>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.3608 0.3843 0.4 scn 0.3608 0.3843 0.4 SCN 2.61 Tw BT 48.24 741.886 Td /F4.0 13 Tf [<4772756d70> 20.0195 <792077697a61726473206d616b> 20.0195 <6520746f786963206272657720666f7220746865206576696c20517565656e20616e64204a61636b2e204275742074686579>] TJ ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.3608 0.3843 0.4 scn 0.3608 0.3843 0.4 SCN BT 48.24 719.006 Td /F3.0 13 Tf [<666561726564206e6f742c20666f7220746865792068616420746865206d616e> 20.0195 <7920746f6e67756573206f66204e6f746f205365726966206f6e20746865697220736964652e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 672.314 Td /F2.0 22 Tf <44696163726974696373> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0804 Tw BT 48.24 643.126 Td /F1.0 10.5 Tf <cb20e720e520cc2080208120> Tj /F1.1 10.5 Tf <212022202320> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0804 Tw BT 140.0614 643.126 Td /F5.1 10.5 Tf <21> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0804 Tw BT 147.3379 643.126 Td /F1.0 10.5 Tf <20> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0804 Tw BT 150.1377 643.126 Td /F5.1 10.5 Tf <22> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0804 Tw BT 157.4142 643.126 Td /F1.0 10.5 Tf <20> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0804 Tw BT 160.2141 643.126 Td /F5.1 10.5 Tf <23> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0804 Tw BT 167.4906 643.126 Td /F1.0 10.5 Tf <20ae20> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0804 Tw BT 183.0758 643.126 Td /F5.1 10.5 Tf <24> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0804 Tw BT 192.0323 643.126 Td /F1.0 10.5 Tf <20> Tj /F1.1 10.5 Tf <2420> Tj /F1.0 10.5 Tf <8220> Tj /F1.1 10.5 Tf <252026202720282029202a202b20> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0804 Tw BT 280.3641 643.126 Td /F5.1 10.5 Tf <25> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0804 Tw BT 293.9406 643.126 Td /F1.0 10.5 Tf <20> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0804 Tw BT 296.7404 643.126 Td /F5.1 10.5 Tf <26> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0804 Tw BT 309.5819 643.126 Td /F1.0 10.5 Tf <20> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0804 Tw BT 312.3818 643.126 Td /F5.1 10.5 Tf <27> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0804 Tw BT 325.9583 643.126 Td /F1.0 10.5 Tf <20> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0804 Tw BT 328.7582 643.126 Td /F5.1 10.5 Tf <28> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0804 Tw BT 341.5997 643.126 Td /F1.0 10.5 Tf <20e9208320e620e820> Tj /F1.1 10.5 Tf <2c202d202e202f20302031203220> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0804 Tw BT 447.1546 643.126 Td /F5.1 10.5 Tf <29> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0804 Tw BT 453.4546 643.126 Td /F1.0 10.5 Tf <20> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0804 Tw BT 456.2545 643.126 Td /F5.1 10.5 Tf <2a> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0804 Tw BT 462.418 643.126 Td /F1.0 10.5 Tf <20> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0804 Tw BT 465.2179 643.126 Td /F5.1 10.5 Tf <2b> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0804 Tw BT 473.0404 643.126 Td /F1.0 10.5 Tf <20> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0804 Tw BT 475.8403 643.126 Td /F5.1 10.5 Tf <2c> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0804 Tw BT 483.6628 643.126 Td /F1.0 10.5 Tf <20> Tj /F1.1 10.5 Tf <3320342035203620372038> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.148 Tw BT 48.24 627.346 Td /F1.1 10.5 Tf <39203a20> Tj /F1.0 10.5 Tf <ed20ea20eb20ec20> Tj /F1.1 10.5 Tf <3b203c203d203e203f20> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.148 Tw BT 123.5673 627.346 Td /F5.1 10.5 Tf <2d> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.148 Tw BT 126.9063 627.346 Td /F1.0 10.5 Tf <20> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.148 Tw BT 129.7738 627.346 Td /F5.1 10.5 Tf <2e> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.148 Tw BT 133.0918 627.346 Td /F1.0 10.5 Tf <20> Tj /F1.1 10.5 Tf <40204120422043204420452046204720> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.148 Tw BT 209.9921 627.346 Td /F5.1 10.5 Tf <2f> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.148 Tw BT 221.7206 627.346 Td /F1.0 10.5 Tf <20> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.148 Tw BT 224.5881 627.346 Td /F5.1 10.5 Tf <30> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.148 Tw BT 234.3216 627.346 Td /F1.0 10.5 Tf <208420> Tj /F1.1 10.5 Tf <482049204a204b204c20> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.148 Tw BT 299.7014 627.346 Td /F5.1 10.5 Tf <31> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.148 Tw BT 312.6689 627.346 Td /F1.0 10.5 Tf <20> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.148 Tw BT 315.5364 627.346 Td /F5.1 10.5 Tf <32> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.148 Tw BT 326.6139 627.346 Td /F1.0 10.5 Tf <20f120ee20ef20cd208520> Tj /F1.1 10.5 Tf <4d204e204f20> Tj /F1.0 10.5 Tf <af20> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.148 Tw BT 425.4077 627.346 Td /F5.1 10.5 Tf <33> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.148 Tw BT 433.8392 627.346 Td /F1.0 10.5 Tf <20> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.148 Tw BT 436.7067 627.346 Td /F5.1 10.5 Tf <34> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.148 Tw BT 445.0332 627.346 Td /F1.0 10.5 Tf <20> Tj /F1.1 10.5 Tf <5020> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.148 Tw BT 458.5592 627.346 Td /F5.1 10.5 Tf <35> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.148 Tw BT 466.8857 627.346 Td /F1.0 10.5 Tf <20> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.148 Tw BT 469.7531 627.346 Td /F5.1 10.5 Tf <36> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.148 Tw BT 478.0796 627.346 Td /F1.0 10.5 Tf <20ce20> Tj /F1.1 10.5 Tf <51205220532054205520> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.148 Tw BT 540.4355 627.346 Td /F5.1 10.5 Tf <37> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.148 Tw BT 547.04 627.346 Td ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0637 Tw BT 48.24 611.566 Td /F5.1 10.5 Tf <38> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0637 Tw BT 54.75 611.566 Td /F1.0 10.5 Tf <20> Tj /F1.1 10.5 Tf <562057205820> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0637 Tw BT 82.9875 611.566 Td /F5.1 10.5 Tf <39> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0637 Tw BT 89.004 611.566 Td /F1.0 10.5 Tf <20> Tj /F1.1 10.5 Tf <59205a205b205c20> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0637 Tw BT 126.7237 611.566 Td /F5.1 10.5 Tf <3a> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0637 Tw BT 133.5802 611.566 Td /F1.0 10.5 Tf <20> Tj /F1.1 10.5 Tf <5d205e20> Tj /F1.0 10.5 Tf <f420f220f3208620> Tj /F1.1 10.5 Tf <5f20602061206220632064206520> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0637 Tw BT 266.9196 611.566 Td /F5.1 10.5 Tf <3b> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0637 Tw BT 274.0911 611.566 Td /F1.0 10.5 Tf <20> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0637 Tw BT 276.8744 611.566 Td /F5.1 10.5 Tf <3c> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0637 Tw BT 284.0459 611.566 Td /F1.0 10.5 Tf <20> Tj /F1.1 10.5 Tf <66206720682069206a206b20> Tj /F1.0 10.5 Tf <d920> Tj /F1.1 10.5 Tf <6c206d206e206f2070207120> Tj /F1.0 10.5 Tf <8820872089208b208a208c20> Tj /F1.1 10.5 Tf <722073207420> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0637 Tw BT 484.5815 611.566 Td /F5.1 10.5 Tf <3d> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0637 Tw BT 490.3355 611.566 Td /F1.0 10.5 Tf <20> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0637 Tw BT 493.1188 611.566 Td /F5.1 10.5 Tf <3e> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0637 Tw BT 498.8938 611.566 Td /F1.0 10.5 Tf <20> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0637 Tw BT 501.677 611.566 Td /F5.1 10.5 Tf <3f> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0637 Tw BT 507.431 611.566 Td /F1.0 10.5 Tf <20be20> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0637 Tw BT 521.8175 611.566 Td /F5.1 10.5 Tf <40> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0637 Tw BT 531.1415 611.566 Td /F1.0 10.5 Tf <20> Tj /F1.1 10.5 Tf <7520> Tj /F1.0 10.5 Tf <8d> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0145 Tw BT 48.24 595.786 Td /F1.1 10.5 Tf <76207720782079207a207b207c20> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0145 Tw BT 107.0574 595.786 Td /F5.1 10.5 Tf <41> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0145 Tw BT 118.8174 595.786 Td /F1.0 10.5 Tf <20> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0145 Tw BT 121.5514 595.786 Td /F5.1 10.5 Tf <42> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0145 Tw BT 133.3114 595.786 Td /F1.0 10.5 Tf <208f208e2090209120> Tj /F1.1 10.5 Tf <7d207e207f208020812082208320> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0145 Tw BT 227.9117 595.786 Td /F5.1 10.5 Tf <43> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0145 Tw BT 233.7077 595.786 Td /F1.0 10.5 Tf <20> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0145 Tw BT 236.4417 595.786 Td /F5.1 10.5 Tf <44> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0145 Tw BT 242.2377 595.786 Td /F1.0 10.5 Tf <20> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0145 Tw BT 244.9716 595.786 Td /F5.1 10.5 Tf <45> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0145 Tw BT 250.7676 595.786 Td /F1.0 10.5 Tf <20> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0145 Tw BT 253.5016 595.786 Td /F5.1 10.5 Tf <46> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0145 Tw BT 259.5181 595.786 Td /F1.0 10.5 Tf <20> Tj /F1.1 10.5 Tf <8420852086208720882089208a20> Tj /F1.0 10.5 Tf <9320922094209520> Tj /F1.1 10.5 Tf <8b208c208d208e208f20> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0145 Tw BT 377.3013 595.786 Td /F5.1 10.5 Tf <47> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0145 Tw BT 380.5668 595.786 Td /F1.0 10.5 Tf <20> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0145 Tw BT 383.3008 595.786 Td /F5.1 10.5 Tf <48> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0145 Tw BT 386.5348 595.786 Td /F1.0 10.5 Tf <20> Tj /F1.1 10.5 Tf <902091209220932094209520962097209820> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0145 Tw BT 452.8402 595.786 Td /F5.1 10.5 Tf <49> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0145 Tw BT 459.6442 595.786 Td /F1.0 10.5 Tf <20> Tj /F1.1 10.5 Tf <99209a209b209c20> Tj /F1.0 10.5 Tf <9620> Tj /F1.1 10.5 Tf <9d209e20> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0145 Tw BT 528.6925 595.786 Td /F5.1 10.5 Tf <4a> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0145 Tw BT 538.2475 595.786 Td /F1.0 10.5 Tf <2098> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.1055 Tw BT 48.24 580.006 Td /F1.0 10.5 Tf <972099209b209a20bf20> Tj /F1.1 10.5 Tf <9f20a020a120> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.1055 Tw BT 119.3081 580.006 Td /F5.1 10.5 Tf <4b> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.1055 Tw BT 125.3981 580.006 Td /F1.0 10.5 Tf <20> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.1055 Tw BT 128.2231 580.006 Td /F5.1 10.5 Tf <4c> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.1055 Tw BT 134.2081 580.006 Td /F1.0 10.5 Tf <20> Tj /F1.1 10.5 Tf <a220> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.1055 Tw BT 145.9166 580.006 Td /F5.1 10.5 Tf <4d> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.1055 Tw BT 151.9016 580.006 Td /F1.0 10.5 Tf <20> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.1055 Tw BT 154.7266 580.006 Td /F5.1 10.5 Tf <4e> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.1055 Tw BT 160.7116 580.006 Td /F1.0 10.5 Tf <20cf20> Tj /F1.1 10.5 Tf <a320a420a520a620a720> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.1055 Tw BT 215.3152 580.006 Td /F5.1 10.5 Tf <4f> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.1055 Tw BT 220.0717 580.006 Td /F1.0 10.5 Tf <20> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.1055 Tw BT 222.8967 580.006 Td /F5.1 10.5 Tf <50> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.1055 Tw BT 227.6532 580.006 Td /F1.0 10.5 Tf <20> Tj /F1.1 10.5 Tf <a820a920aa20> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.1055 Tw BT 253.1597 580.006 Td /F5.1 10.5 Tf <51> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.1055 Tw BT 258.3782 580.006 Td /F1.0 10.5 Tf <20> Tj /F1.1 10.5 Tf <ab20ac20> Tj /F1.0 10.5 Tf <a720> Tj /F1.1 10.5 Tf <ad20ae20> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.1055 Tw BT 299.4888 580.006 Td /F5.1 10.5 Tf <52> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.1055 Tw BT 304.8648 580.006 Td /F1.0 10.5 Tf <20> Tj /F1.1 10.5 Tf <af20b020> Tj /F1.0 10.5 Tf <9d209c209e209f20> Tj /F1.1 10.5 Tf <b120b220b320b420b520b620b720> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.1055 Tw BT 426.5879 580.006 Td /F5.1 10.5 Tf <53> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.1055 Tw BT 432.4469 580.006 Td /F1.0 10.5 Tf <20> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.1055 Tw BT 435.2719 580.006 Td /F5.1 10.5 Tf <54> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.1055 Tw BT 441.1309 580.006 Td /F1.0 10.5 Tf <20b520> Tj /F1.1 10.5 Tf <b820b920ba20bb20bc20bd20> Tj /F1.0 10.5 Tf <d820> Tj /F1.1 10.5 Tf <be20bf20c020c1> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 564.226 Td /F1.1 10.5 Tf <c220c320c4> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 520.114 Td /F2.0 22 Tf [<4c697374204d61726b> 20.0195 <657273>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 491.5242 Td /F3.0 9.975 Tf [<477265656b206e756d6572> 20.0195 <6174696f6e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 52.141 471.935 Td /F1.1 10.5 Tf <c5> Tj /F1.0 10.5 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 66.24 471.935 Td /F1.0 10.5 Tf <6f6e65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 52.183 450.155 Td /F1.1 10.5 Tf <c6> Tj /F1.0 10.5 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 66.24 450.155 Td /F1.0 10.5 Tf <74776f> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 53.3598 428.375 Td /F1.1 10.5 Tf [<c7> 80.0781] TJ /F1.0 10.5 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 66.24 428.375 Td /F1.0 10.5 Tf <7468726565> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 401.1932 Td /F3.0 9.975 Tf <436865636b6c697374> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 52.145 381.604 Td /F1.1 10.5 Tf <c8> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 66.24 381.604 Td /F1.0 10.5 Tf [<436865636b> 20.0195 <6564>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 52.145 359.824 Td /F1.1 10.5 Tf <c9> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 66.24 359.824 Td /F1.0 10.5 Tf [<556e636865636b> 20.0195 <6564>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 315.712 Td /F2.0 22 Tf [<43686172> 20.0195 <6163746572732042> 20.0195 <79204c616e6775616765>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 274.464 Td /F2.0 18 Tf <42756c67617269616e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 246.444 Td /F1.1 10.5 Tf <cacb20cccdcecfd020d1d2d3d4d0d5d6d7d020d8d9dadbdc> Tj /F1.0 10.5 Tf <2c20> Tj /F1.1 10.5 Tf <dddcd3dedfe0d0e120e2d2e3e4e5e6e720e8e7e4d0> Tj /F1.0 10.5 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 206.604 Td /F2.0 18 Tf <436174616c616e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 178.584 Td /F1.0 10.5 Tf [<c744976e6120616d6f722071756520736572> 20.0195 <88732066656c698d21c82e20416978982c20696ce16c9c7320636f6d70616e> 20.0195 <792067656e699f742c206a61208e7320756e206c6c75957420728f746f6c20626c617692732e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 138.744 Td /F2.0 18 Tf <43726f617469616e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 110.724 Td /F1.0 10.5 Tf <476f6a617a6e6920> Tj /F1.1 10.5 Tf <7a> Tj /F1.0 10.5 Tf <61> Tj /F1.1 10.5 Tf <78> Tj /F1.0 10.5 Tf <69> Tj /F1.1 10.5 Tf <7520> Tj /F1.0 10.5 Tf <7320626963696b6c6f6d206472> Tj /F1.1 10.5 Tf <c3> Tj /F1.0 10.5 Tf <6920686d656c6a20692066696e75207661747520752064> Tj /F1.1 10.5 Tf <c3> Tj /F1.0 10.5 Tf <657075206e6f> Tj /F1.1 10.5 Tf <aa> Tj /F1.0 10.5 Tf <6e6a652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 8 0 R /F4.0 12 0 R /F3.0 13 0 R /F1.0 15 0 R /F1.1 16 0 R /F5.1 17 0 R >> >> >> endobj 8 0 obj << /Type /Font /BaseFont /4bd86e+NotoSerif-Bold /Subtype /TrueType /FontDescriptor 95 0 R /FirstChar 32 /LastChar 255 /Widths 97 0 R /ToUnicode 96 0 R >> endobj 9 0 obj [7 0 R /XYZ 0 758.37 null] endobj 10 0 obj << /Type /Names /Dests 11 0 R >> endobj 11 0 obj << /Kids [42 0 R 43 0 R 56 0 R] >> endobj 12 0 obj << /Type /Font /BaseFont /58184e+NotoSerif-BoldItalic /Subtype /TrueType /FontDescriptor 99 0 R /FirstChar 32 /LastChar 255 /Widths 101 0 R /ToUnicode 100 0 R >> endobj 13 0 obj << /Type /Font /BaseFont /fee526+NotoSerif-Italic /Subtype /TrueType /FontDescriptor 103 0 R /FirstChar 32 /LastChar 255 /Widths 105 0 R /ToUnicode 104 0 R >> endobj 14 0 obj [7 0 R /XYZ 0 700.61 null] endobj 15 0 obj << /Type /Font /BaseFont /643632+NotoSerif /Subtype /TrueType /FontDescriptor 107 0 R /FirstChar 32 /LastChar 255 /Widths 109 0 R /ToUnicode 108 0 R >> endobj 16 0 obj << /Type /Font /BaseFont /782f23+NotoSerif /Subtype /TrueType /FontDescriptor 111 0 R /FirstChar 32 /LastChar 255 /Widths 113 0 R /ToUnicode 112 0 R >> endobj 17 0 obj << /Type /Font /BaseFont /fe84ed+mplus-1p-regular /Subtype /TrueType /FontDescriptor 115 0 R /FirstChar 32 /LastChar 255 /Widths 117 0 R /ToUnicode 116 0 R >> endobj 18 0 obj [7 0 R /XYZ 0 548.41 null] endobj 19 0 obj [7 0 R /XYZ 0 344.008 null] endobj 20 0 obj [7 0 R /XYZ 0 298.488 null] endobj 21 0 obj [7 0 R /XYZ 0 230.628 null] endobj 22 0 obj [7 0 R /XYZ 0 162.768 null] endobj 23 0 obj << /Length 4714 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 786.666 Td /F2.0 18 Tf <437a656368> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 758.646 Td /F1.0 10.5 Tf <50> Tj /F1.1 10.5 Tf <a6> Tj /F1.0 10.5 Tf <926c69> Tj /F1.1 10.5 Tf <aa20c3> Tj /F1.0 10.5 Tf <6c75> Tj /F1.1 10.5 Tf <ae> Tj /F1.0 10.5 Tf <6f75> Tj /F1.1 10.5 Tf <78> Tj /F1.0 10.5 Tf <6b> Tj /F1.1 10.5 Tf <bd20> Tj /F1.0 10.5 Tf <6b> Tj /F1.1 10.5 Tf <b49c20> Tj /F1.0 10.5 Tf <9c70> Tj /F1.1 10.5 Tf <81> Tj /F1.0 10.5 Tf <6c20> Tj /F1.1 10.5 Tf <79> Tj /F1.0 10.5 Tf [<8762656c736b> 20.0195 <8e20976479> 89.8438 <2e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 718.806 Td /F2.0 18 Tf <44616e697368> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 690.786 Td /F1.0 10.5 Tf [<5175697a64656c74616765726e6520737069737465206a6f726462be72206d656420666cbf64652c206d656e73206369726b75736b6c6f766e656e2057> 49.8047 <616c74686572207370696c6c65646520708c2078796c6f666f6e2e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 650.946 Td /F2.0 18 Tf <4475746368> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 622.926 Td /F1.0 10.5 Tf <4c796e7820632e712e20766f73207072696b742062683a20646167207a77656d6a756621> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 583.086 Td /F2.0 18 Tf <46696e6e697368> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 555.066 Td /F1.0 10.5 Tf [<416c62657274206f737469206661676f74696e206a6120749a72> 20.0195 <8a> 20.0195 <79747469207075686b7576616e206d656c6f6469616e2e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 515.226 Td /F2.0 18 Tf <4672656e6368> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 487.206 Td /F1.0 10.5 Tf [<56> 60.0586 <6f> 20.0195 <79657a206c6520627269636b20678e616e7420717565206ad56578616d696e652070728f732064752077686172662e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 447.366 Td /F2.0 18 Tf <4765726d616e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 419.346 Td /F1.0 10.5 Tf [<566963746f72206a616774207a779a6c6620426f786b8a6d706665722071756572209f6265722064656e2067726fa7656e2053> 20.0195 <796c7465722044656963682e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 379.506 Td /F2.0 18 Tf <477265656b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 351.486 Td /F1.1 10.5 Tf [<e9> 29.7852 <eaebecedeeef20c5f0f1>] TJ /F1.0 10.5 Tf <b9> Tj /F1.1 10.5 Tf <eff220c6c5f3f4f520f6efb8f7f8ef20c7ef> Tj /F1.0 10.5 Tf <2c20> Tj /F1.1 10.5 Tf [<f9fac5edfb> 20.0195 <fcf0fdfefcec20ff>] TJ /F1.0 10.5 Tf <b9> Tj /F1.1 10.5 Tf <f7fa20f8> Tj /F1.2 10.5 Tf <2122> Tj /F1.1 10.5 Tf <fa> Tj /F1.2 10.5 Tf <232420> Tj /F1.1 10.5 Tf <fbfff8> Tj /F1.2 10.5 Tf <25> Tj /F1.1 10.5 Tf <f5> Tj /F1.0 10.5 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 311.646 Td /F2.0 18 Tf <48756e67617269616e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 283.626 Td /F1.0 10.5 Tf <e77276927a74> Tj /F1.1 10.5 Tf <b5> Tj /F1.0 10.5 Tf <72> Tj /F1.1 10.5 Tf <a120> Tj /F1.0 10.5 Tf [<749f6b> 20.0195 <9a72669c7297678e702e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 243.786 Td /F2.0 18 Tf <4963656c616e646963> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 215.766 Td /F1.0 10.5 Tf [<4bbe6d69206e> 20.0195] TJ /F1.1 10.5 Tf <bd20> Tj /F1.0 10.5 Tf <9a786920688e722c20796b69737420> Tj /F1.1 10.5 Tf <a3> Tj /F1.0 10.5 Tf <6a9766756d206e9c2062be> Tj /F1.1 10.5 Tf <7b> Tj /F1.0 10.5 Tf <692076926c206f67208764726570612e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 175.926 Td /F2.0 18 Tf <4974616c69616e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 147.906 Td /F1.0 10.5 Tf <496e207175656c2063616d706f2073692074726f76616e2066756e67686920696e206162626f6e64616e7a612e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 108.066 Td /F2.0 18 Tf <4a6170616e657365> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 80.046 Td /F5.1 10.5 Tf <55565758595a5b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 64.266 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 64.266 Td /F5.1 10.5 Tf <5c5d5e5f60> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 24 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 23 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 8 0 R /F1.0 15 0 R /F1.1 16 0 R /F1.2 32 0 R /F5.1 17 0 R >> >> >> endobj 25 0 obj [24 0 R /XYZ 0 841.89 null] endobj 26 0 obj [24 0 R /XYZ 0 742.83 null] endobj 27 0 obj [24 0 R /XYZ 0 674.97 null] endobj 28 0 obj [24 0 R /XYZ 0 607.11 null] endobj 29 0 obj [24 0 R /XYZ 0 539.25 null] endobj 30 0 obj [24 0 R /XYZ 0 471.39 null] endobj 31 0 obj [24 0 R /XYZ 0 403.53 null] endobj 32 0 obj << /Type /Font /BaseFont /5eaf47+NotoSerif /Subtype /TrueType /FontDescriptor 119 0 R /FirstChar 32 /LastChar 255 /Widths 121 0 R /ToUnicode 120 0 R >> endobj 33 0 obj [24 0 R /XYZ 0 335.67 null] endobj 34 0 obj [24 0 R /XYZ 0 267.81 null] endobj 35 0 obj [24 0 R /XYZ 0 199.95 null] endobj 36 0 obj [24 0 R /XYZ 0 132.09 null] endobj 37 0 obj << /Length 6015 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 794.676 Td /F5.1 10.5 Tf <616263646566> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 778.896 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 778.896 Td /F5.1 10.5 Tf <6768696a6b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 763.116 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 763.116 Td /F5.1 10.5 Tf <6c6d6e6f707172> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 747.336 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 747.336 Td /F5.1 10.5 Tf <7374757677> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 731.556 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 731.556 Td /F5.1 10.5 Tf <78797a7b7c7d7e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 715.776 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 715.776 Td /F5.1 10.5 Tf <7f80818283> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 675.936 Td /F2.0 18 Tf [<4b> 20.0195 <6f7265616e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 647.916 Td /F1.2 10.5 Tf <26272820292a2b2c2d202e2f3031203233342035292036373820392f2d203a3b3c203d3e> Tj /F1.0 10.5 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 608.076 Td /F2.0 18 Tf <4e6f7277656769616e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 580.056 Td /F1.0 10.5 Tf <4a656720626567796e7465208c20666f7274be726520656e2073616e6477696368206d656e73206a6567206b6abf727465207461786920708c207665692074696c207175697a2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 540.216 Td /F2.0 18 Tf <506f6c697368> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 512.196 Td /F1.0 10.5 Tf <50976a64> Tj /F1.1 10.5 Tf <c1c2> Tj /F1.0 10.5 Tf <652c206b69> Tj /F1.1 10.5 Tf <9920> Tj /F1.0 10.5 Tf <74> Tj /F1.1 10.5 Tf <8020> Tj /F1.0 10.5 Tf <63686d75726e6f> Tj /F1.1 10.5 Tf <a87520> Tj /F1.0 10.5 Tf <772067> Tj /F1.1 10.5 Tf <9874> Tj /F1.0 10.5 Tf <6220666c61737a7921> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 472.356 Td /F2.0 18 Tf <506f7274756775657365> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 1.791 Tw BT 48.24 444.336 Td /F1.0 10.5 Tf [<cb206e6f6974652c20766f7699204b> 20.0195 <6f77616c736b79207690206f20926d8b2063616972206e6f20708e20646f2070696e679f696d2071756569786f736f206520766f769720709b6520618d9c636172206e6f20636887206465>] TJ ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 428.556 Td /F1.0 10.5 Tf [<74896d6172> 20.0195 <617320646f206a61627574692066656c697a2e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 388.716 Td /F2.0 18 Tf <526f6d616e69616e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 360.696 Td /F1.0 10.5 Tf [<42896e6420776869736b79> 89.8438 <2c206a617a6f6c6f67756c20>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 165.2221 360.696 Td /F5.1 10.5 Tf <51> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 170.4406 360.696 Td /F1.0 10.5 Tf <707269> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 185.1721 360.696 Td /F5.1 10.5 Tf <52> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 190.5481 360.696 Td /F1.0 10.5 Tf <75697420766f6d> Tj /F1.1 10.5 Tf <7320> Tj /F1.0 10.5 Tf <66697820946e2074657175696c612e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 320.856 Td /F2.0 18 Tf <5275737369616e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 292.836 Td /F1.2 10.5 Tf <3f> Tj /F1.1 10.5 Tf [<d2d9dfdb20e8> 20.0195 <d920d9e6>] TJ /F1.2 10.5 Tf <402041> Tj /F1.1 10.5 Tf <e4e7cb20dae5d4d7e7cb20e3d5d0cfe2cdd8d6d7e7cb20d1cdd3dcd7> Tj /F1.0 10.5 Tf <2c20> Tj /F1.1 10.5 Tf <ced020e0> Tj /F1.2 10.5 Tf <42> Tj /F1.1 10.5 Tf <ddd9e120ccd0de> Tj /F1.0 10.5 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 252.996 Td /F2.0 18 Tf <5365726269616e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 224.976 Td /F1.0 10.5 Tf <476f6a617a6e6920> Tj /F1.1 10.5 Tf <7a> Tj /F1.0 10.5 Tf <61> Tj /F1.1 10.5 Tf <78> Tj /F1.0 10.5 Tf <69> Tj /F1.1 10.5 Tf <7520> Tj /F1.0 10.5 Tf <7320626963696b6c6f6d206472> Tj /F1.1 10.5 Tf <c3> Tj /F1.0 10.5 Tf <6920686d656c6a20692066696e75207661747520752064> Tj /F1.1 10.5 Tf <c3> Tj /F1.0 10.5 Tf <657075206e6f> Tj /F1.1 10.5 Tf <aa> Tj /F1.0 10.5 Tf <6e6a652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 185.136 Td /F2.0 18 Tf <536c6f76616b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 157.116 Td /F1.0 10.5 Tf <4b> Tj /F1.1 10.5 Tf <a4> Tj /F1.0 10.5 Tf <6465> Tj /F1.1 10.5 Tf <962079> Tj /F1.0 10.5 Tf <6174> Tj /F1.1 10.5 Tf <96> Tj /F1.0 10.5 Tf <6f762075> Tj /F1.1 10.5 Tf <78> Tj /F1.0 10.5 Tf [<92206b> 20.0195 <6f>] TJ /F1.1 10.5 Tf <9c> Tj /F1.0 10.5 Tf <6120> Tj /F1.1 10.5 Tf <c3> Tj /F1.0 10.5 Tf [<72> 20.0195 <61>] TJ /F1.1 10.5 Tf <ae20> Tj /F1.0 10.5 Tf [<6b> 20.0195 <9972752e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 117.276 Td /F2.0 18 Tf <536c6f76656e69616e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 89.256 Td /F1.1 10.5 Tf <58> Tj /F1.0 10.5 Tf <6572696620626f207a612076616a6f2073706574206b7568616c20646f6d61> Tj /F1.1 10.5 Tf <78> Tj /F1.0 10.5 Tf <6520> Tj /F1.1 10.5 Tf <c3> Tj /F1.0 10.5 Tf <67616e63652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 38 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 37 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F5.1 17 0 R /F2.0 8 0 R /F1.2 32 0 R /F1.0 15 0 R /F1.1 16 0 R >> >> >> endobj 39 0 obj [38 0 R /XYZ 0 699.96 null] endobj 40 0 obj [38 0 R /XYZ 0 632.1 null] endobj 41 0 obj [38 0 R /XYZ 0 564.24 null] endobj 42 0 obj << /Limits [(__anchor-top) (_finnish)] /Names [(__anchor-top) 9 0 R (_bulgarian) 20 0 R (_catalan) 21 0 R (_characters_by_language) 19 0 R (_croatian) 22 0 R (_czech) 25 0 R (_danish) 26 0 R (_diacritics) 14 0 R (_dutch) 27 0 R (_finnish) 28 0 R] >> endobj 43 0 obj << /Limits [(_french) (_norwegian)] /Names [(_french) 29 0 R (_german) 30 0 R (_greek) 31 0 R (_hungarian) 33 0 R (_icelandic) 34 0 R (_italian) 35 0 R (_japanese) 36 0 R (_korean) 39 0 R (_list_markers) 18 0 R (_monospace_text) 57 0 R (_norwegian) 40 0 R] >> endobj 44 0 obj [38 0 R /XYZ 0 496.38 null] endobj 45 0 obj [38 0 R /XYZ 0 412.74 null] endobj 46 0 obj [38 0 R /XYZ 0 344.88 null] endobj 47 0 obj [38 0 R /XYZ 0 277.02 null] endobj 48 0 obj [38 0 R /XYZ 0 209.16 null] endobj 49 0 obj [38 0 R /XYZ 0 141.3 null] endobj 50 0 obj << /Length 5795 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 786.666 Td /F2.0 18 Tf <5370616e697368> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 758.646 Td /F1.0 10.5 Tf <42656e6a616d926e20706964699720756e6120626562696461206465206b69776920792066726573612e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 730.866 Td /F1.0 10.5 Tf <4a6f76656e63696c6c6f20656d706f6e7a6f9661646f20646520776869736b793a20c171758e2066696775726f74612065786869626521> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 691.026 Td /F2.0 18 Tf [<53> 9.7656 <776564697368>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 663.006 Td /F1.0 10.5 Tf [<42> 20.0195 <7978666a8a726d617420669a6c206769636b20708c2064757673686f77656e2e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 623.166 Td /F2.0 18 Tf <5475726b697368> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 595.146 Td /F1.0 10.5 Tf [<536166207665206861> 20.0195 <79647574206bf57a208d6f6375>] TJ /F1.1 10.5 Tf <85> Tj /F1.0 10.5 Tf <752062696e20706c616a20679a726d9f> Tj /F1.1 10.5 Tf <ab> Tj /F1.0 10.5 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 555.306 Td /F2.0 18 Tf [<556b72> 20.0195 <61696e69616e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 527.286 Td /F1.2 10.5 Tf <43> Tj /F1.1 10.5 Tf <cd> Tj /F1.2 10.5 Tf <44> Tj /F1.1 10.5 Tf <df20> Tj /F1.2 10.5 Tf <45> Tj /F1.1 10.5 Tf <cb> Tj /F1.0 10.5 Tf <2c20> Tj /F1.1 10.5 Tf <cedce2de> Tj /F1.0 10.5 Tf <2c20> Tj /F1.1 10.5 Tf <d4d0> Tj /F1.0 10.5 Tf <3f> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 483.174 Td /F2.0 22 Tf [<4d6f6e6f73706163652054> 29.7852 <657874>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.9608 0.9608 0.9608 scn 52.24 465.95 m 543.04 465.95 l 545.2491 465.95 547.04 464.1591 547.04 461.95 c 547.04 403.73 l 547.04 401.5209 545.2491 399.73 543.04 399.73 c 52.24 399.73 l 50.0309 399.73 48.24 401.5209 48.24 403.73 c 48.24 461.95 l 48.24 464.1591 50.0309 465.95 52.24 465.95 c h f 0.8 0.8 0.8 SCN 0.75 w 52.24 465.95 m 543.04 465.95 l 545.2491 465.95 547.04 464.1591 547.04 461.95 c 547.04 403.73 l 547.04 401.5209 545.2491 399.73 543.04 399.73 c 52.24 399.73 l 50.0309 399.73 48.24 401.5209 48.24 403.73 c 48.24 461.95 l 48.24 464.1591 50.0309 465.95 52.24 465.95 c h S Q 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 443.125 Td /F7.0 11 Tf <3c68313e48656a20768a726c64656e213c2f68313e20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 180.24 443.125 Td /F7.1 11 Tf <21> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 428.385 Td /F7.0 11 Tf <3c703e> Tj /F7.1 11 Tf <222324252627> Tj /F7.0 11 Tf <2c20> Tj /F7.1 11 Tf <282923> Tj /F7.0 11 Tf <213c2f703e20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 169.24 428.385 Td /F7.1 11 Tf <2a> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 413.645 Td /F7.0 11 Tf <3c703e436f6d707574652074686520> Tj /F7.1 11 Tf <2b20> Tj /F7.0 11 Tf <66726f6d20> Tj /F7.1 11 Tf <2c20> Tj /F7.0 11 Tf <746f20> Tj /F7.1 11 Tf <2d20> Tj /F7.0 11 Tf <696e20> Tj /F7.1 11 Tf <2e> Tj /F7.0 11 Tf <2c206e6f7420> Tj /F7.1 11 Tf <2f> Tj /F7.0 11 Tf <2e3c2f703e20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 310.744 413.645 Td /F7.1 11 Tf <30> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 50.865 382.005 Td /F7.1 10.5 Tf <21> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 63.99 381.766 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 63.99 381.766 Td /F7.0 10.5 Tf <48656a20768a726c64656e21> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 126.99 381.766 Td /F1.0 10.5 Tf [<2069732053> 9.7656 <77656469736820666f7220>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 202.267 381.766 Td /F7.0 10.5 Tf <48656c6c6f2c20576f726c6421> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 270.517 381.766 Td /F1.0 10.5 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 50.865 360.225 Td /F7.1 10.5 Tf <2a> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 63.99 359.986 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 63.99 359.986 Td /F7.1 10.5 Tf <222324252627> Tj /F7.0 10.5 Tf <2c20> Tj /F7.1 10.5 Tf <282923> Tj /F7.0 10.5 Tf <21> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 126.99 359.986 Td /F1.0 10.5 Tf <206973205275737369616e20666f7220> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 199.86 359.986 Td /F7.0 10.5 Tf <476f6f646279652c20576f726c6421> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 278.61 359.986 Td /F1.0 10.5 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 50.865 338.445 Td /F7.1 10.5 Tf <30> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 63.99 338.206 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 63.99 338.206 Td /F7.1 10.5 Tf <2b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 69.24 338.206 Td /F1.0 10.5 Tf <2069732074686520477265656b2073796d626f6c20666f722064656c74612e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 51 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 50 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 8 0 R /F1.0 15 0 R /F1.1 16 0 R /F1.2 32 0 R /F7.0 58 0 R /F7.1 59 0 R >> >> >> endobj 52 0 obj [51 0 R /XYZ 0 841.89 null] endobj 53 0 obj [51 0 R /XYZ 0 715.05 null] endobj 54 0 obj [51 0 R /XYZ 0 647.19 null] endobj 55 0 obj [51 0 R /XYZ 0 579.33 null] endobj 56 0 obj << /Limits [(_polish) (_ukrainian)] /Names [(_polish) 41 0 R (_portuguese) 44 0 R (_romanian) 45 0 R (_russian) 46 0 R (_serbian) 47 0 R (_slovak) 48 0 R (_slovenian) 49 0 R (_spanish) 52 0 R (_swedish) 53 0 R (_turkish) 54 0 R (_ukrainian) 55 0 R] >> endobj 57 0 obj [51 0 R /XYZ 0 511.47 null] endobj 58 0 obj << /Type /Font /BaseFont /f3d534+mplus1mn-regular /Subtype /TrueType /FontDescriptor 123 0 R /FirstChar 32 /LastChar 255 /Widths 125 0 R /ToUnicode 124 0 R >> endobj 59 0 obj << /Type /Font /BaseFont /bd0231+mplus1mn-regular /Subtype /TrueType /FontDescriptor 127 0 R /FirstChar 32 /LastChar 255 /Widths 129 0 R /ToUnicode 128 0 R >> endobj 60 0 obj << /Type /Outlines /Count 32 /First 61 0 R /Last 92 0 R >> endobj 61 0 obj << /Title <feff006900310038006e00200046006f006e007400200054006500730074> /Parent 60 0 R /Count 0 /Next 62 0 R /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 62 0 obj << /Title <feff0044006900610063007200690074006900630073> /Parent 60 0 R /Count 0 /Next 63 0 R /Prev 61 0 R /Dest [7 0 R /XYZ 0 700.61 null] >> endobj 63 0 obj << /Title <feff004c0069007300740020004d00610072006b006500720073> /Parent 60 0 R /Count 0 /Next 64 0 R /Prev 62 0 R /Dest [7 0 R /XYZ 0 548.41 null] >> endobj 64 0 obj << /Title <feff00430068006100720061006300740065007200730020004200790020004c0061006e00670075006100670065> /Parent 60 0 R /Count 27 /First 65 0 R /Last 91 0 R /Next 92 0 R /Prev 63 0 R /Dest [7 0 R /XYZ 0 344.008 null] >> endobj 65 0 obj << /Title <feff00420075006c00670061007200690061006e> /Parent 64 0 R /Count 0 /Next 66 0 R /Dest [7 0 R /XYZ 0 298.488 null] >> endobj 66 0 obj << /Title <feff0043006100740061006c0061006e> /Parent 64 0 R /Count 0 /Next 67 0 R /Prev 65 0 R /Dest [7 0 R /XYZ 0 230.628 null] >> endobj 67 0 obj << /Title <feff00430072006f0061007400690061006e> /Parent 64 0 R /Count 0 /Next 68 0 R /Prev 66 0 R /Dest [7 0 R /XYZ 0 162.768 null] >> endobj 68 0 obj << /Title <feff0043007a006500630068> /Parent 64 0 R /Count 0 /Next 69 0 R /Prev 67 0 R /Dest [24 0 R /XYZ 0 841.89 null] >> endobj 69 0 obj << /Title <feff00440061006e006900730068> /Parent 64 0 R /Count 0 /Next 70 0 R /Prev 68 0 R /Dest [24 0 R /XYZ 0 742.83 null] >> endobj 70 0 obj << /Title <feff00440075007400630068> /Parent 64 0 R /Count 0 /Next 71 0 R /Prev 69 0 R /Dest [24 0 R /XYZ 0 674.97 null] >> endobj 71 0 obj << /Title <feff00460069006e006e006900730068> /Parent 64 0 R /Count 0 /Next 72 0 R /Prev 70 0 R /Dest [24 0 R /XYZ 0 607.11 null] >> endobj 72 0 obj << /Title <feff004600720065006e00630068> /Parent 64 0 R /Count 0 /Next 73 0 R /Prev 71 0 R /Dest [24 0 R /XYZ 0 539.25 null] >> endobj 73 0 obj << /Title <feff004700650072006d0061006e> /Parent 64 0 R /Count 0 /Next 74 0 R /Prev 72 0 R /Dest [24 0 R /XYZ 0 471.39 null] >> endobj 74 0 obj << /Title <feff0047007200650065006b> /Parent 64 0 R /Count 0 /Next 75 0 R /Prev 73 0 R /Dest [24 0 R /XYZ 0 403.53 null] >> endobj 75 0 obj << /Title <feff00480075006e00670061007200690061006e> /Parent 64 0 R /Count 0 /Next 76 0 R /Prev 74 0 R /Dest [24 0 R /XYZ 0 335.67 null] >> endobj 76 0 obj << /Title <feff004900630065006c0061006e006400690063> /Parent 64 0 R /Count 0 /Next 77 0 R /Prev 75 0 R /Dest [24 0 R /XYZ 0 267.81 null] >> endobj 77 0 obj << /Title <feff004900740061006c00690061006e> /Parent 64 0 R /Count 0 /Next 78 0 R /Prev 76 0 R /Dest [24 0 R /XYZ 0 199.95 null] >> endobj 78 0 obj << /Title <feff004a006100700061006e006500730065> /Parent 64 0 R /Count 0 /Next 79 0 R /Prev 77 0 R /Dest [24 0 R /XYZ 0 132.09 null] >> endobj 79 0 obj << /Title <feff004b006f007200650061006e> /Parent 64 0 R /Count 0 /Next 80 0 R /Prev 78 0 R /Dest [38 0 R /XYZ 0 699.96 null] >> endobj 80 0 obj << /Title <feff004e006f007200770065006700690061006e> /Parent 64 0 R /Count 0 /Next 81 0 R /Prev 79 0 R /Dest [38 0 R /XYZ 0 632.1 null] >> endobj 81 0 obj << /Title <feff0050006f006c006900730068> /Parent 64 0 R /Count 0 /Next 82 0 R /Prev 80 0 R /Dest [38 0 R /XYZ 0 564.24 null] >> endobj 82 0 obj << /Title <feff0050006f00720074007500670075006500730065> /Parent 64 0 R /Count 0 /Next 83 0 R /Prev 81 0 R /Dest [38 0 R /XYZ 0 496.38 null] >> endobj 83 0 obj << /Title <feff0052006f006d0061006e00690061006e> /Parent 64 0 R /Count 0 /Next 84 0 R /Prev 82 0 R /Dest [38 0 R /XYZ 0 412.74 null] >> endobj 84 0 obj << /Title <feff005200750073007300690061006e> /Parent 64 0 R /Count 0 /Next 85 0 R /Prev 83 0 R /Dest [38 0 R /XYZ 0 344.88 null] >> endobj 85 0 obj << /Title <feff005300650072006200690061006e> /Parent 64 0 R /Count 0 /Next 86 0 R /Prev 84 0 R /Dest [38 0 R /XYZ 0 277.02 null] >> endobj 86 0 obj << /Title <feff0053006c006f00760061006b> /Parent 64 0 R /Count 0 /Next 87 0 R /Prev 85 0 R /Dest [38 0 R /XYZ 0 209.16 null] >> endobj 87 0 obj << /Title <feff0053006c006f00760065006e00690061006e> /Parent 64 0 R /Count 0 /Next 88 0 R /Prev 86 0 R /Dest [38 0 R /XYZ 0 141.3 null] >> endobj 88 0 obj << /Title <feff005300700061006e006900730068> /Parent 64 0 R /Count 0 /Next 89 0 R /Prev 87 0 R /Dest [51 0 R /XYZ 0 841.89 null] >> endobj 89 0 obj << /Title <feff0053007700650064006900730068> /Parent 64 0 R /Count 0 /Next 90 0 R /Prev 88 0 R /Dest [51 0 R /XYZ 0 715.05 null] >> endobj 90 0 obj << /Title <feff005400750072006b006900730068> /Parent 64 0 R /Count 0 /Next 91 0 R /Prev 89 0 R /Dest [51 0 R /XYZ 0 647.19 null] >> endobj 91 0 obj << /Title <feff0055006b007200610069006e00690061006e> /Parent 64 0 R /Count 0 /Prev 90 0 R /Dest [51 0 R /XYZ 0 579.33 null] >> endobj 92 0 obj << /Title <feff004d006f006e006f0073007000610063006500200054006500780074> /Parent 60 0 R /Count 0 /Prev 64 0 R /Dest [51 0 R /XYZ 0 511.47 null] >> endobj 93 0 obj << /Nums [0 << /P (1) >> 1 << /P (2) >> 2 << /P (3) >> 3 << /P (4) >>] >> endobj 94 0 obj << /Length1 13180 /Length 8225 /Filter [/FlateDecode] >> stream x{ x[EfսW/ölJגle[e[-;ێD%?r,9$p$i,2 }dfv2,KMa:= e-Wrb�W:uԩ:U8#>D"oW춺c*pA[@x"X}Р�xc3W B Yg}1ГPDhǝPܶ `ݠL#Y ThwPyW=Bysw q 6(Ӿ`_#Tl3p;PٗPl`&xb/ 6 v8}kBB^<R ~?-Gc3""/h'<嫂g8M/#1g m@P( " #<+7_H"jfՊhAxЉ:wE7+޻ u</yN>("+PrwkP1ZS UH^WSDüRPvV 7bx[[T" W@ud2�z!{ <SO5HˡG1HQZwk Ga(9%5-%Y%/ɳsP"+UZN_XTl\אgsㆎvw[kh*JK,fP0*[!NOKM% |E]LQJǴ2oղV&J{91z$I:⒎kXLעZv1tM'C_{<@u2Ctsє+BA+{IGvE[vM̻Nw6Y4D&#:+J2h!3sc ]g $LeZ zdtG'W9Q~sT'Ya#hkH3~߰'J<隟?0DgeQ#tE ֎kt\GyZ1C`8短Vbw~[ FZ̟MIq¨.,aEPTՉvDzx RZj@�ZBt_'^шrX CQּR#`k\ke}(u`|7u#}P3te*t� Z�"m2/ i__+]F&]ŀVqy]٠6m=Q/# yEN}Q 30MɚpM͢(,VQLs=<y瑡 byY?:[N+ΊѐU,kԹ=ʫì= u1*O` J@#0MY%=}LGfOexҺ֩a<ϨP+=A10 ZxFZ!bpeú`Z3E+Lȱ5Jyl5hEܦPH@5ZYTZ#@ bqfQ=Lb&訣ÎH ? ) `Bj^)`F[ F[bۺjJ5=/d:YLB!3vo 78t<3}Zglvŭl_w72`Y>ط6=L4{@K\hjꅂW@hWKq <z#'\a4z+<xTx^ʞ�!׻h?ۆ&Cl# 8z�? ~JTLo` q> 2 ΋]W&X3X <p8 8y>1< txZg7#{y .c2u/ /]Z^"ӗ_"./F}7:D$'Pp -wet$n% /| o#᪗uPn5'x/M"\ }٠Wop*ZVYlBx?X.[?.[8]xkᣅ?-.,܂(d_%M<2&;>Ŀ&U{<g_>O>w칗JQQ!O= 䣡G/>J?zCd:k_:y$=z哤$x'qmljqGБ#D#w\=P*>Xdɘc{pC�e[~^5s`^ IoRm"3ɶ}<b@fd5}�XաB?MN4_LN^,(}2}C2,Ղ-Q|0cQ(ؼs=z5wD 9x:~6K> gei(G ܅ Fq& 9#ss[x++f}ٲ% po8'2gq<a.AR ' 9罹vJ\t?Bn3&.c=z>^|u>;\_ޠ6^i[w_m%f}}bQB|L'[%lM\D;.wKG\$@v%| DPP!pB\$# lgD'&^Y޹<-:|Z9,ĝx vauRGQ]G<˻Ow`}apZx"HL:;Qh(*"ٖ`Ք},<QI:d3v_!݋O/OPpCE +R#di$1dfHD T.7Erԩr tʹc=$yd0UiSDIgJZXʵߔe XPU%mFqeJB*I#J}}̈́> XJ" HFF3tot=S5m׷9Ѷx}/ƽKSkQ |Sj)n4+{m:皶orkZD{wg֍MjӖ`G~sn,im.UzlzJhh*bK+Y U$Ȍj�Hv Rv$TNp51.C#mխs_/MyzY?1 ni[Ȯzm[Ujwy(a-x#Wn$)%O=eTgGveeku˟ BZޮq t`J`*ɱaW8<usgq3TAoOqLe&,װ|u,3XֱLXzĉwvpe0(F2Jy熟- uybqN6H~h̻“_?8&M ]}kM? _as30#Dt3 bD?ObyKA.?;Qu=mKv|`PSZH~;79l-3ulRɑᑗ}/8G ƙS&_m(hoS(Tfe-_JB^Ph/ OzBluLMcQX4#2"az]9.K>aQY4#O',qe뤃kPAY<kRF+|ő<>\kapfblV]S7*&y:91(ӳ^U@M⃸nPFMcV]Fq-қڌbnYo:0Ko!n72vz\ǀЇ +I0ǂܭ6)RCqG[KA |^YNwrbmat0,ePMLUQݾ=0_4ADU\Aw[cgS+4+SWwu r-R@ ֝DZ4}ݲ鑘Az,b$;FǺʂj fT7EȐr_4C#>O `l:4yzҧק~x;>/L&W<c-:s%!J+;Բj>tLKPz;dys=\Za{JQMQOߵ1vfxN{p.=ZQ!d_qxJ<zYsYU38^/2<_<|hl-dnɫ:C} =wlmƆ EY*ZlBױsʥhbs0f q; 3z:)"BȢo3ڤ)sp /L<\հA^WSn:<ޱ6sISc)q5ocS\7F*KZ͆ nwa'w5qKfm|Ү7kc:fY γ0Y/6볨djQt(כOq=ШVً֦{56K k{WŪn_x_ݿ7Cŷ{98qӳu֙w|V>I2 6 ;DQj`^[idkFws+Qg{rE{#VbLv^_AnxaK+cw25΁jܦ0׊K=WTWwkzJ;*{K_WӂG nz ˀ<hX r/cv|} �uɾXwc,*'-Ҩ5֨cIQi'm1D") lLf6?)+-cPbOЃ:e8:qj{|"oggiռ$Ol} G׌w~;{gM2s;$uoWLe`x%TǤ[ݍEV7 `eAףȭ::d6a5g5۷?2Z}SG40IbV#Ɵ/}]S*Y&EKR|ɒ|?QWLj+v[sS ;W0O30bPrX$9dd�drzcy:w[ӒԻFL{GOw6h^Lpc?n­'f3e<*&vR>4v%"ĝd5xř4i{٬e28Eqz;Y" 13M]U*K'K ұHhTT4puv_|~߁<[qдN_}9ܡڵY޾?C[aNMSۊ m4ARJ˒ӄ[n c t6tϹ?pdz.96Uh+,rqUXsohs34,xaag"X#mרU75i;P V-nz\[Y)5Sm7Ze񹙩run*c9CS'[ ݆|6*+TiQB8{pXo6V7ޓ1mI#/Yn#kߒkLUX$?h,9Ր0-P.^=d22J 3raM4kOpI8UN5\ p=^1V̓<<]x7w*sH$0ڭzN,M D;jZ_ynu-c{:vN RmVk^MbȠؐsa!h[s$aH6 ?qqmݷe%f4X{s �",=`@Գ} {YwĂ+čUc_;wb+G?D.=�vs'q1Ri^?o}:!7N=r/ޚ{ɈZ1ƹ-{,xfjLpi}Ivn) 7j+*CʺSJW`\vZg#KI2XzjNm&{ 7Xe%qn|h(Pˮݱ;k=M%GuĻG:,& }48v?oq*Ԅ5CJLRGXwLu<NJD- gޖ$S)BK^]|2zN;eUmc&{^^|h3`nN:5j4)Ʝ9վL 'F} }3[u&ENT3g=#)pxeudXNi*,ƾ[{ 6'j)-R]h?\ ^ )߻lvibsT@fJ~d݅nZlw\3ŏ4MTOc~ldtz嚦C#Ko-*`PinM 1M"U[VRZSiI]hS%iA2おF&J:%4ӴnÇL Apɚ+&zl0$3pu>lYJ =KԬ!{ERJ{7E,j=*m*PVL'RML ~P)]@)ɈxOyLͫv,/ l5}J1pg+#A۳/#yIfW~'Wi(ű~/39WcT .A)NIKTq]F %` PԒIgAƚQ"}loʵ7`w VJrk"ضsDִ'a3~,T^=U%|^b)SM.b)/Vݟ]/]V0- crf} qmv0o-bw֔)ٴAy߹\  *t؎m6HbYHudNUG  OF x`$ko"*\-zBeή.mupGfC9SB9VJg굚tI ROvR40y{l6C=LʔaI7[ VTjh"/7p1m fF^9J1ʠ&-ñw,9eOYzpfa)vܞ &\8 Z#9DPPU&vqui[4HnM?A 6A'-Bf~NF*,W}JOЩt%%b3V&h ɼM"'Y)$'4e�dKpr!gNBTJa<A'zjņTKKN%t*<=;9>JJPh|*@GtV@80+7w"!/0;9o M"g@>MuXW ̆'CtV>⯴ '`&?}td};j30;5a\8Hdb\gP2X@8dYUL4‘9dLn MGXflh`: }Mtd"@7]3K2d82;92A7MkhwnjsM~zScoocgGw]NwJ-tct$3Kn th LMPm+=$<|sqL`68f_+vfYws PW)shvղ5A,DhE Q !O�0GaҐGCk\)��O?HvB4 \c A[?i~7XD>7 q(ྑxa=0&3̶$gHMa�^vc ~tr8ȱVCmpLp:" ʳ<.k4G͜" S ݂n>f>23Y  kIhuu_ύEpb5?L{\y'nwh0F1Pʡc{G" :}S{l6rqvlfˍ0_z e7rqmCÜkx] 7:;au8:\@f0g,7 pYW1W0 Ik3?Vsܜb0ap?An,L^.ٵxs s 5gxu|Ŭgg<fl7;qg߀ρ1v$H6NFcfT+cG9hmh_n�_vn7-hݔؑ *+ endstream endobj 95 0 obj << /Type /FontDescriptor /FontName /4bd86e+NotoSerif-Bold /FontFile2 94 0 R /FontBBox [-212 -250 1306 1058] /Flags 6 /StemV 0 /ItalicAngle 0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 96 0 obj << /Length 1278 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }ik/y_!}t~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=n?[i(JKiU:JSz2QeL*EJ̔Ye,*+eU(NU-уk5x5F^ky ^#k5x5F^ky ^#kxZV^kZy-^+kxZV^kZy-^+uxu:N^:y^'uxu:N^:y^'xz^^zy=^/xz^^zy=^/o xo7 Aހ7y o xo7 Aހ7y oxo7jo$JI$$*I$ITH$$QI"IDD%$JI$$*I$ITD$$III$$u>M&Iބ7ɛ&y$o›Mx o7M&Iބ7ɛ&yUoa[5joSor4ۂs�ޮ>,x/x;Â31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x e#e_y+h܊7k:/Z5dUluz5n[eB&Si|y(%q& %+S%*ABijPU6\h,(+L,4G5<cD [˧*t [ jjaijIxʪwgFwضR>sh>:OVRP*#i|e0U,*oU/*[U,Nmlx:&\}M)L2\%CHF7էʻBL)jƻJ1:%H߯:=S۳zrmkO媳7 endstream endobj 97 0 obj [259 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 559 600 600 600 600 600 600 559 600 600 600 600 600 600 600 600 600 671 667 767 600 621 769 818 400 368 733 653 952 788 600 638 600 707 585 652 747 600 600 600 600 600 600 600 600 600 600 600 599 648 526 648 570 600 560 666 352 600 636 352 985 666 612 645 600 522 487 404 666 605 855 645 579 528 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600] endobj 98 0 obj << /Length1 11032 /Length 6914 /Filter [/FlateDecode] >> stream xz T[ו9^/sEGH@$@?[`H aI688:Nui&t%q4mӕvҼ4o{4uY8K楱253W}g9#riD!K5  yŌA`pu9~P // e$fchG(tïz*&|[}6讂vU ;s tBbxk'_@+=LM/C�%oȿ~g@Ɖp4F?B;?//eNS-yQUz<v$NDׄQ(u8O?DאW9}I H$ P4zzq' 4?%A1莫hl<l)x B >L-4:C$^SQ4|4hHF`AZh  f !O �]8z7:!8RAp_&O3G` 1;셷HмkE;uY('I 2T(/R(K˾xjGG\;}v[oOihfjmil0u5uWP%y9YbPFvokf⌆Б6w c&oLVCҚnHb kFf]=k6'G<@ql}ӌo@C]q<}zdPny tajkiŇG<vR;⹜Bʸ7.UAb::Ǯp4;q>'N{a*m_]?rx�zfkV<)q\p޿MsjLj}�jάzo$Or[]^]hn$_:=8p{پQg\:}l p6*b]f�p�*q +F'fѬ:qjpp^>A4njQ;|0>獟|:@BI⹿WՂ|vae*/Fm�BJFS0&g? PT<q 7#ZFxg DA[˸xAasK623k_L ϋȘ|oU~׈ф{!4Uo>^1Aͳ*n�OpI4@=Nz<N7 Iuu~ΣLbC) �1=.R+y.I3J. fkYߖ#mJ$zֵ I(UԥMO #ԁ.Z +(Pó s\[=7r tƶ0!t7>r+~۱ͮ9{( X#ֶ|%_>/1T4_ϫkV+�)U[3/ +Iq2WrbX5YIϋؤώySX>ϋ,<"\$ 4QhyyVN s70yuFs7OΣǤxVG."�mg}$>_LGr@~ps]׵)av<ij·%2˱}>؝ 0qhSדhƩʆ(y:IIHR,0.VcX<c\Е 2ȲgߛNθNg{`ُE0F2eI19=8|)=?y|0`Cˠl\ z0WyZ6;Fz]LƣQɣt!,L߼g.[)e -2K?%'.ҭKKҦJbX1 !q`\�&>EߢReBn,yc8-q?"y%ͼ[ytBϣ[hO˱�Z Q6(8>W:2ɽ5/Lw<)sƛܞLل3J@Hg"ƴզhl(u4a6\ ژ6"U؇\p-B+ol?1; ]D(y3y 'b73ϻ>r%꩞D?f%xGPa;N(K|2Q2J( 9OR'O4 Y$ySEx�17רX1n$%} ~ diBå8ߦZGt}q1טD,RDE$A<<G7]c*_Wͷ ^d,Aaԗ�_(!,*5-]W+VvT?mJu6P| 94#TmlL.Ҭؤj<\N'Rf ZyXv6o j["N)Tzw]D).96<>|fvzoH\PCZ,/,~c%u#]'YڃED^$o +nhpΥJ=Oyfc e}IںPLUZȉ/\}pW󇟋0 :;]i*+nìږ-neEQWFISM☂Sd ^xԽܗlu6n,G՗}~MZx [$ jM40X{,9O&,GUUײic1#HC㢒JKF,<G۳ DJNVi Eb&JȄeRU!3DH #*;�W<N]LK7ٯÇqeJX!mT<2uuFrviFZJfF[JnQ/}i]^Vz1tlՏ>G|Mo9MA63P"jⶇd`$E4N i'?ۻ$jS%Z3t1q-g5lY +Znf7@_clgMY<ȊsootȌM2mUu 7N]ce]{/ɛ3O^-+uyEN-1AwB.+3HFby S=<d^ո]P5IcQz F鳴Ԗ 67Q#c>)-.`J+ v[9ީnwn}ǢlYI^αfn`bb8q,ܻz__fġm9+s+LNZC?1Qۤ~+_`6TԸ{\P=XuuxOwt>4 {ɝVoMmtuі-1-g:k YKNinl)h rT|oB*Lpu57+-,wg2KKUšZiyJ><2ϟLTIQUdn*;ZdEչ!#S&wuʳs N?urfhԓݛ_#qF@svW y]|S ˩Q%?rrq-}&!ckM"Ih>M|BX8 Tn@l>Ec֢]o${M>D`Hh^ʧПq饴@HdVo*mVmW|T@Ě[#+ն"*p#4ԇy 'K,*TrvCe8w=Z)5#fdefWgٺ'M qV#T-U]VyIYR,v|5 pqueqCI٬|ͫ5(%EχM/�sﰗ *Xw ]Ȗ+VQvI0d6xR[.vmqEsFաSL},/ C7Vg沍uZX j-[E|SFAϝ.(eR\/l(Fe[ZbyyxZx =؆dȩHĆUbX^OS~huT&|[S;=[м =ix &?]c|.5%!*;t!)Z?7W+l*[2X$^eK$Q%frE]m:8x;[Nu^tӺ([32cZl]nMf;?W1q#kFUX7v6l[]{LU]:ITgff:�vS`s T*@IUۡIQNt'L 8rlF_\ln/Y_?Hel=q,Mzr,]~s%f=rlZĊeoV=1?z@Wc[O~v̖O>;`Y}`IP ̭@C rd2ӈZ(ŀ&MPJV쵘 q\´SoAŖ\ndd7r} k`2eRݺ.Mu}ӵ3 %Y8$Pnše]tiW'w>cb$?`S-x[wMGN:]06i3ŁЁ/(.+Z;W Q*QׁRj=tW) 7zS1AN˛(f nS6賋 ' I4N1X*,tsotvVPs}Y5cvױ-}ѝn[]QusyeSVY;oީZɷKZOAyPqFr&aEFZWwyji9qU^ONde]b宲ꢲ΂zNJ嶥OQflN Id7IMz_cOSt1ETnl3٪Pdgy0;Sic+s9mw]6E<CQR$.xl%PͭR]ș'v}h'̄)Pi9.26֍&E\CL:#mwrmu񥕈!!}Sdn?q?n=_;;[[=tKֲf=S-D:5;&abTV.|kW>ia9l>'̄=+8D!br'K JRZY\fs7??r˥+W.վXzЮ Ϳvֵ_0÷o}䨱+T8 sWP@LشRlc7{k K 6 K*2|!\L]n0Te\Y>Q(P/ڡ(MWp}ֹ0`BbS7bE?')UqHmϔCsqk.7sVɝ_>ygambe}+&P!t> n}w2܃~NK#ݩ?336(^XVǃDzkeseG<QIMIt9UKʐ8w+lb<xSo nۀQ&R4Ў4M-M3HBiZWҴ)4-s3iZ t{C΄wڏt_qON<sQ ,/ kz-Mc$4M!9mJ4wiOiRЯiѿIbTT TÌL4KYeFf4MP t.jcoxX$M Ml8gKsz{q%]QvG}zW8fHp'c1bpnWx); Bޅc7-wGۨohmiklkk /#r[E>9ȆZ;1mhpa{C6oK1(c솰/%a} [n79_'υC�aÖPz8/�^|7'>;(̹GXϺв)%<g7iԳwW Fc xÂwvw%v=1vOhkawCls v&XegA0'.G(b@?Vv>$ EŠwXGB(qC7Ʒ‡%c ϸ\$E}8`CJ-c(hP 5Fpg-"?h AIU/‡E|O?: wH`t ,r + c}K{Rwz"|憐n^" 4AAC/|c  ~޾:0h}g/i%Ơ共6x[X~YEoXZe da0#GR0YCZs1(V A#@ AڿT M"&˺Ax.m<MC=p<e>mKJ7w7$'y[ݼ{C`8<I*k.h;;w6~S}}|<Cdn?XB'·2>ޏp YEo•bH$I,|52oar="4~tC/6I.mT16mJUk_;! .+m',opwV>5 ~5BhB$ )PNh KDW>~ endstream endobj 99 0 obj << /Type /FontDescriptor /FontName /58184e+NotoSerif-BoldItalic /FontFile2 98 0 R /FontBBox [-265 -250 1289 1058] /Flags 70 /StemV 0 /ItalicAngle -12 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 100 0 obj << /Length 1278 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }ik/y_!}t~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=n?[i(JKiU:JSz2QeL*EJ̔Ye,*+eU(NU-уk5x5F^ky ^#k5x5F^ky ^#kxZV^kZy-^+kxZV^kZy-^+uxu:N^:y^'uxu:N^:y^'xz^^zy=^/xz^^zy=^/o xo7 Aހ7y o xo7 Aހ7y oxo7jo$JI$$*I$ITH$$QI"IDD%$JI$$*I$ITD$$III$$u>M&Iބ7ɛ&y$o›Mx o7M&Iބ7ɛ&yUoa[5joSor4ۂs�ޮ>,x/x;Â31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x e#e_y+h܊7k:/Z5dUluz5n[eB&Si|y(%q& %+S%*ABijPU6\h,(+L,4G5<cD [˧*t [ jjaijIxʪwgFwضR>sh>:OVRP*#i|e0U,*oU/*[U,Nmlx:&\}M)L2\%CHF7էʻBL)jƻJ1:%H߯:=S۳zrmkO媳7 endstream endobj 101 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 500 500 304 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 671 500 500 500 500 795 500 500 400 500 500 500 500 500 500 787 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 665 623 527 665 535 403 500 655 354 500 597 354 969 671 618 623 500 550 514 416 672 585 875 604 585 558 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj 102 0 obj << /Length1 9116 /Length 5591 /Filter [/FlateDecode] >> stream x9 xǙ3+c˒.x6d[6%KȆ˖l lIH2`5y@Jф ~ @ i嚔 IڦP(Mh.g66w}3;+#A[L7|!j[GͻȦ_3 hꎵ~ի"4)h;]=!VRe{n$]}_}T7B[v:lv<S]g16/ {Ӝ=Vp�?a}#U m`wzn~ oB0'o0n^eV^ _qܵe؅\/iߵ\)ȈA/90||̄gȎ+N8P7RP, �siF)E>Ч{ ԉo1`87=We]]%Q_؆c\$@-xB/م U)w=GJ[쐮r ja<>e&j!4I{'Q>s �'T9�/<f ϊ0H*ǍF Q'"UZ>'$&}s&ScC}]%5ƪ x ϛ[40oVnNv֌ӄ4]j6N3ibԄHec BE/f\PUMpBb<ȷQ6~<g pvY,*~!Z^|M/C ^h^Ja."�`oHryb3hhӃQB#*; FMp"@ ;g,`fDԊlf}Nלec=BTQ.*HELG;;T-3.m+"kA n2ř^$!f zI4꩹t?CpxMD>C_l چB[^%^D[aP̎bgjs5aUd+x (W,GxjA S8c"niqC%"FF^7-##ft]0@w-POH*s;E'qf˃UF5vT TQ$v 2<9&u&�>;K *(92 ʅ6HKO' ^Q+擘ept<MԖ2g=m D`=CW �5 sB9U!hwm)vXi5E'4CDhPEZcjZseCDnG`M ##y+6 |�BBhEez$<*8R-[[q 3ę>NSyՈ].|eg10ˊaF$ j;CI$Iy'/[o$<4r0h\5 „t0<`)c+VR|g82#Sd,7pܸz*laE,)!kImP0ڃɺr9eѥF5,; 6Aoo,M-*x)ooc0SV<8 ƬyxWP*CH DR# ?t B[(G ˆ"Ghu 1aj� J(\$'oo' 5G "CtŃG8Q(#bB/#] pvֆ | )œQ=NBf}k=5@Q9h1AZ !dׇ'BxcO aUñKa;w-øxa0?̖f㯁Z-q,ZcSg"PIq(&qfA1bTàbh@<2><,)m"<70[RϿl||_-nbbfR0{ڇ뾅c�<=EJ̓5T%JwЋ%ΨI\3^b?hgX L.YJ1kf@m,`YK-6י/70+n61 UQ8Ǜq8֬ʏ5Ō+2űcoIJNyt) [=M̚!e^t".H["Fleu][Pٔq*Mi�` �) 2~@D~BHa:?D~@. mhICfW27B Z85'^IkOy\5ҢvmRi2rx Co?R؂V 'EeM <ԉhkx"VA=..* M 5Jwd8=Ed*{E1y,Ҏ=?ÜEM; $ɴspJi5S`hG iMqηQ|:-E[KD-}fn+FDDGExȬR.PV+^Peј2l.sg QZ!iU|N$=U�qga'6~e=sMfۜϵsOq@9$H`⢠Xݣy59d)N~Q>,]`/G(QX0'vB6b^e -/H,=⢲K]$%S7>Kq߸ߨ\i\eѪ5EmPGq* n6y30C<~޽a9}gjڿBm<mt-8aWiQ@v: J!-BɎ_!/ҀgHOٸDU_OW?ܰM~GhCc泟ɶخϤI)"Ch!q{}1&`X+ʟ=gD+r#hFnVIw NVKHw)`܋orKM՗x'/3"5Br_81k\=M�-spa487ؐ8k9!3O퇇qGϳỦ#?-}8f|{gwm=|o ɶkΝkwYo~_Is +}kEk!I#( g.bM{m;-e;oI߻7spiP:un' g GJR_~D5$M2ʟƿ_9SSKWc4)qp4>mZسUjzM?aNCS<ӿ/EVq{y6˗$}|i#f;GvKpWiuGǺmkO/ĝ/(b& l Ҧ%b.\C#3?TO/gv9}. /ztg))7;)(5Eՙ^1ȣ$-wg Q)Y'd  %m*?W0)i)LO2նoތEْV[Ë+q?ްf7VҵrUXwgܔ'ZsKZJWQi'Lb o}t>ӱk'u"CJb{,[`'( %+ܭ%~țT-J<`vLϝ>4{HOf7om\ў0nm=>¾O[-6QZkLcD"$[;[F#Wsjّ_`MߵmIkNr"[Z(] ֓ t7[¾.|x?`;KŚ|eZtv9Ӭ=>rh뙦XS-GG-uʵҪѷE5~Cg'Q�[ n*^&Iɭ@l>͟2 Gv4Eg.i}\ Y}d}St!sJnRN^8=h`HwrR8Fr|\N{Jgh}3U'3:6Ƃ {ŰL$9cXF3[])s'oHǤ u?p׹w_nHW^Z|[O}[8 , 3ƕ2:>-I;du걁yCl2ȶF^{ mي՝os7z.xOc6kSR}[g6*3`tTCyP_(*vâٚ|eR'9ɟoczjI+Fzwxh|o 1>'|[]ɿf]N_T|c#,]<~/^[U8h3=a>wS#j0Fu8_@즂LRQ'棸!{Dby|HxQ g9;C:.6VYq:Nf-̳ #|Gһ]850 F~( 0̠4OY4 ViPaSnla% p$Ti�_NpADJ>)&TcP2$ gWaJNaUdCizV$)V"=;"'=ޖ hpZUD;$h! Ob)p *P(x|.g=+o6_tu;x#/ɐot{N'Mu:zܞ@fغ\.>‡y#X>rfu:dʒ=ffw|yOX<w]]na6r|}(=�g nݺ.,ӓ'wp<2'irw7y:l>qmwK:f^f&/0{8mn>Mi|YhM&5uzc 1x ^=>vP={NWmswں G n; u$]}^ \Ƀ9~Wwו[W÷}ȅ5_P<Qл0#rP)Po姘zZ 8kav�(݅:AJ�` d-17+:z` Fp('osX(0ȃ9eј. �p~ŇVC%>8ۋӘ(�\=jOh<jY$IȒsh3\9u׳;7W{~Wh` {DhHd D1pNHqR^Dv uT{%$dA5G?N�v* imͻ `Q`Ďe�5* =Ka4B[ :>뀪3UUXCd;pt|[JS}ԏTY5U\yg\NtN]FA/]\x=4#pwZ:=Kmm ߑ{׃,&=- = Is } O'z "Cs ?TAd!cK cu5@PːO` ߽ endstream endobj 103 0 obj << /Type /FontDescriptor /FontName /fee526+NotoSerif-Italic /FontFile2 102 0 R /FontBBox [-254 -250 1238 1047] /Flags 70 /StemV 0 /ItalicAngle -12 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 104 0 obj << /Length 1278 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }ik/y_!}t~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=n?[i(JKiU:JSz2QeL*EJ̔Ye,*+eU(NU-уk5x5F^ky ^#k5x5F^ky ^#kxZV^kZy-^+kxZV^kZy-^+uxu:N^:y^'uxu:N^:y^'xz^^zy=^/xz^^zy=^/o xo7 Aހ7y o xo7 Aހ7y oxo7jo$JI$$*I$ITH$$QI"IDD%$JI$$*I$ITD$$III$$u>M&Iބ7ɛ&y$o›Mx o7M&Iބ7ɛ&yUoa[5joSor4ۂs�ޮ>,x/x;Â31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x e#e_y+h܊7k:/Z5dUluz5n[eB&Si|y(%q& %+S%*ABijPU6\h,(+L,4G5<cD [˧*t [ jjaijIxʪwgFwضR>sh>:OVRP*#i|e0U,*oU/*[U,Nmlx:&\}M)L2\%CHF7էʻBL)jƻJ1:%H߯:=S۳zrmkO媳7 endstream endobj 105 0 obj [259 600 600 600 600 600 600 600 600 600 600 600 250 600 250 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 626 600 600 600 713 600 600 600 600 600 600 763 600 600 600 600 543 600 600 600 600 600 600 600 600 600 600 600 600 600 579 600 486 579 493 317 556 599 304 600 568 304 895 599 574 600 600 467 463 368 599 600 600 600 527 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600] endobj 106 0 obj << /Length1 21748 /Length 11860 /Filter [/FlateDecode] >> stream x| `[ř{O/Y%ٖ|<Y/I|$q,g؎e8!MB!h HCM)Peih,XҋRmWJXĖdˎBd?|]a C,ondVBx٧{Nm1Ԍ<Ph#BLȶ?<gSH??xd|n U?g �m3;35D@'pq|r)DHq'<b}s|�Boڸ_#T=&30mB@7՛ ;Ў8tóU6~|~hgKۇ.6IP"?Ozt,|/aib좐]W"P/t%2P؟ =*<}gA31A"q íjkP)2ݼW/zHJ 3J]^x4Z?Yѻ 2&WK= !*r/DÄcGW~};W3WPׄ,"%3! 3w#>'JByI^KoJ=#;HE .B'IP\>dK W2-k.BǪ˄,@]BNQ *@["W.$NN,\Ed.BK_S~\Tޟ:@^D֞Νć:�H;Om}Pk?Y)׼DK$Ҁ@"(8D �",)UfQmtLlcbRrJlI3Y9yE%eU5u 뚚[<XZݷvz뀫l]Bz`߰oekؖi_Kz;;Z[56TWUVdgY̦DA " y,$(0@*8(J睆~'gjkM.`;y�Uni3~uRh9eerK, Q)xەvCh;Jh3JTt:WEVNW9wWWABP) byXiI? iΖJNcJsʄJUPNqSBQctt?=h?%xPovv;Vr*RIB3i"!gPYL!XږiX;EzᯗVCX/b5w~Z \?<?UF-KG{zQa޺Q;@Djuo=F T#Ph@<*8~5U'yd{�lhwrA d|7�B;e_hu|ϳж<PU78;E �BiEW- `Py!x~H@R)nwt;K+Pj|zAEcT}N0T $dUw.nNe O/WۺYMMg vY~{>eJX]6hvkaVZPC=(AIt:'S.4vzv? 8}4B֍)KnF@C9�j(pA9J̺Zm d8JO;R_TDL֋MLVѹ?T󞁡(Ճ�h(=HawtވxF< cUGX & :E+\g /Wk<>BC<A.x"Ή*S`&`3bϗk! uB{w!m fv+ 5rS*8|)r~LEyx}J)!P$T6Hi{KGr@/`DaR/ 7L1�ܰR #R(|}?Hs{|q/vb#nj8( ;r/!7\L Ʀ]*HeJB-X p)|;bp8@�|ctK*nYt.KX]--8t߷-BX5[BPP'6AMÓo�2�2\, X0  i"}qkeF.)|c4 #E.c8 0FK;?cQ8c,ҳ i-g?~+!f;.ŽzTܾ1o)}< c8ǘDZYᩇ=@d />ė\z)}Co:ܱ:vw߱Ǐ}tc"Rg³Mq3p's&k&Y _pKqb |a{C,CL`AlpkXPv/{eKTiR[-lQNQKǧ [[TmvN[C;!5ЏBЋCI=.#OE|G{JJÒN|SNK[{⻝w}y9x(*ipfw;czP(%}PǜW1B?رɑ )8R]B13 gfg|ah_~ dRRH2�0W 9R"XT4<۫p)}-ۥt([!1?Ѳ Ytч~"OS|>Xu~|?hdvt:It] lDG!o_t%3Ů"` i-*#.K0` Gxր�z¦PjYD{V@ =2 By һ"HK?OHnbKaNq_dbX%f3)K* `eN]oq%>.1YL saiҀd,C ;+X9|Ic`̯\v {]Z3ܧ =߉KŷCtKM{Pj`p`e3AA-Ag~<f9䎐s!/reK7e.ϡ㡟wS~R* ^1RQq% ^{'(#[TyT.5T_H"2:216\4JGFFuԉN#DkܯyAZ^[Szt4Q0XbÒ]#Ba6sL,~S—g]BVV`3kF,R!|Im_Rh5A,EP^_xJ4f{619Tz$gelMhݻaOoWsSleF۵6~CRRF'G*(@~Ph50 ?u@kgbctTKEo!=E1 �2Fd *Y+i&pO\]&+;R_lҘ6ݿ~zge6h-AI49WU\)KХw ;_^"ޛ4<YF eY3lűi`֌2Vɦ*+</Gŧj߶putoODZi6[HBq:>9*fP$Dz\>i?*ФCfT@f5H˪\te)@)8KsՕ"X1zZp}xR#5ZsQ@-kgc|l޷Y8um o4)'6vnkd+7 k].]N*YP)bZ1VYc#VmZ!*o}̓'78+4 uG햎%wʴKS=zcJ q7;g KhMRcdXЭWF, B̗xG:nb֮woc><%ק q˯Fzd d�V.O0&~%EE fwl/>?֪ц;^{ &SmRF)4G~\a{|Ɏ\oʉ +Hsݟf&4l'A6qWCDe1 C_ljMZ~G-D2]ZRR1`~Qˠ^>RwKٍ\ƹ?PRWyi=xKB|A�Qc1KK<ҥFeXBYYU,ؖǩG0?G[|V_dm7%j;:5&gZmQnID/VH_|y{Y�Vi [NUJ9uj1v( wK]q M>^ۋIҶwv#8k'ןݿuƔ`c5vv$Õ$ Q(2=:Lpt[ɴyw .]Mź' <|U˩+O=鎫2 >>=ߞ>5db>|h=걣 )cz?c`[w_~Ǐ_>m #E>kǏNfcwۊ_!rZm,FMlٮ{/l| Pxmwoa%egKN2t G da̶Ƃβ F3P}IYd ru5|v1~wӽ}抝vGdwl,vȬ%er*ƞmwuto0+6֙uE  =Gێ_wdZ/r~վS̺~OC$7(a+j=M iլS |#k0ДYϸbX#cqD1 'a f]AZ3VKqQT<5I+*-o!Vɑ0-VXGL?s$ʬȲlBqJCD$+Ex'A�,\>F1&Y1{T,"4\1ƚbC]g.wÁQf7 1+BWDg\Sffgpl&_lZzp57c}6C쎋aNXV bifX6<t1 2Vp[h elj,1蚭{A]'ƾ{,x//]_Z9ۙǿ<؀7%o);#愒 1]a[Z~MVE84הx͙RclIxw =Ыz 52Y "k1Kl@Pl91Tп@ Lt*iD~cЉ-9ZmMEEvSI+O<E [Xf4fTezz*/omOgml} ~泚@~`/;\aXY2ၧ7+*SPç?+7*9&?VO/R-T T0.W @ME`4"q@Lp=F%`:e>se ֊S\4PJ.#v>r[RSOoDR8^,!,UFHX'dӻ.rɉEn.k}}^,*o?Bq8xs}SOG&ZM\Ma"$Z^,oТQw8irF]-Q"}H\1 !\ v[,o?]eSbB esEDz[\J.;8t:XJ3J&:_szjDxH!"=IT/B4IPJLG6g"U&h7k՗Gr*WVVYkCC3 L " &f5YZbksFUjxN.NmQGBCRfeaXCDTBdn^}G {KbuE=a%֞{2#CFZcij-E,4?+^1!,>W;UM5|b?nxІ|m'"lťbI~^8H~|厕[v7ZHT71@c$J|5%|Mn\ ?xt& Ȩd>Fa%ж;&Ǧ%=$$GDjzbwJRkG' х ( KL!c{W $gwQp5c=)ѳ̭2L@,a^*qL:)Aj #]&0݊_9smmق+qݕ#ɺPM6mOZX?u4WШ~e__VˏmFx.ݿ}1_hjLW3-w]Q"'vc6SXc^3yuIX{N(v�7,_6p')|~; DŸA4D�cdUoʏ6hB!BXN۳ԬV8& ^ غnݖrze\U}YuΞ~֑x>ㅣzLV5D1Jޚ_k`Y;4xXݰZt9<)!F)'&mB'ȡ^�^2Q5&kU{ k#7$Dïk =UЍh,N 3\JJ`kSՇhMAl3k7܂VW|X!ezyQEST̴BC).\J["6:Rj6W{ʹ $]},cm hX[;Mk43;s:b#g 9vM5tτ� u!!˃JmNkvRWMJ2eBYzk2VLG&LM-;[^%IQ5KCԪB%A6cUHȦZᄾ'^H`וnW fm c Mc\=F>wƸ:6d~frhR^\i/՚X3?.L~mRy Ubi]yŝ�Z`MXb!$ IGBD';PQ_Ůz1-ͪ"\{:4u-z|I0= ϲn!=$csS'XLC2{`mR$HUT TRͿwIJ-*"H y\|B^>k ([e=pM͖Hpww5j4Umzf+kK3�fBU[،Wv8 ƆXtKF{dj5h/F/@)̯"qLf-# fM`Tġ-}8$\[ mʠTOxA.�wVnY6[BJ/<"{AbL쑾Ltҷ4.l3~PZݾe~}C\e] H,NAF�!1W6ӛZ,{$Mג z`i>결BN pI-pZbNؔbhs^{@\$B^`iDRf 46PFx7+yKp ^ط Vko{Tӣ*U~+g9119ޑd1~7d2 6qZ$dv龰(|= rS~,IHޢ�V$p~/V `7̦uU g5/;kpۘ&PgTY*bhiN,[y #-xu,]vcq!+=(Eu� L۾>8`9_ r0T1,¿v(2?/C#yF^~dKe&%ַ+1񭭍1,ѕeGnh-k1o].>fu)c&gGng4X=א3_K0`3=G("gtuϳ6<pg1<x-U8fL?n2Ot޸yN\P^~xi t/fp}j7T~s7~ /Aq7L96-fl Jv~o5mw3Q=6<xbن @!NqUŦnxy:v0?><P[PWd:_ԸӛuT?)!?pyިzN ͏o6_o:Guo6ϝ;{b-%귽3[N,gώ{[=4tLԾ+^U8ε8s'=36h+Z7JZ$WY5mΎˊGzFˮn(亣joZ,1Bܴ%wO}JR-zYwrAnUYp$`)t*)n/>Vlk5hJڮ-)d7%S]g'0նEɘanףt;~%l?z[hYw槿e{9Ήva0=SDD1x5#rMD`!#41 -#;vu̍ g֟(omde %rS#GDv|7Dž ¡N_>_ۯ^iz2'$!{F#L [QXW& 0U<$&PW|9Z" )-yJ"fd?\Sթ,"X*:w1{[*&S3/jHU[*ӴԮ˗>^ĂX~Qe;Ex+c=r8y%+q/'bSTFedT͉ל+%Vd %b۳3u>6:C~hmw޷J[-fz&.h-?;>$ip(^yh0ߠQ/Y^sr:q^iӸD3Au;ZMuJz_݁oa(3 VbĂ=ژgN@FO tZc}}K5[&kIެRVW/S@V_'Ctm߫$Y=Gc0}~|ł\9 .­kyC8-KtLO"4{=(b7p?ֻoqŋ#cAnn<X-�DV,r7/^$8N�ނ^cyād8+QWCF[-\g;jk~ >UlEc>;r#eckD}80c?m|7 L{Y貆P3f}Br#4Geؼ-\6V84PHvH"bWeR1Y ۀm>",!xR>9uވRwCƱX- y os}+o8<^.v}%c$hw<3=ds.[ɂ99s:Q1ӈ7<s/_Z"/ӽ9^U%W2Mx?;H};~Y|BB|w;@y5-{ m4@_ix4_م[-Gt2+d[eW_-tNz6ߐ+A_=H7/_ٷu,3ORxgn y$~W# #~x6[G^wv@hXÇ# wk fz~~3/vބӾo_ǁ}{n>/ lnL?eӁ?g ^?'0!/CH\є[+yJZEt{wVE!}A \E[R ݔUh  ";'*/lЯbAmP 1ryAm*WETmp6K,YU#kn10"4H( )cbx<199L_]PUbW nvaQ8Pxt0^uݜ3c 7̇7,ѿ)]ݕW<4[׾"~\D6F JIT �.!RQZPD)YT|;?|3&I ",2$&_dw:Pe2l"C^{Ҝöx y2 TAꈧ,\)K :)K =)|SDfor 'k=܀4Ȑ(*cNz)OA2V)(9d=ed=e d8(<@xA)B{r,C*&FFg frrd|l6 9w &g&ᶡqɉə)>261›6+%дclrO7egg)J1ogC[a_Rdr162w ٷUg  srAwhlʷXn6̼yredh'->yɎQ zrbo>=Dx<41g'!op7nt7HW$n#sL 7<Oe|]{<_^^מwu6wv]emmeMuU|s_TYQjokLƀi~hONcۦLjڇO+?<15ylxl3?n�SC ml>C#;'&gYjUǦffظyrz\݈*$(G( 7$q4:46\Q@޶AkCp\;{Z6AxNchsNVs@{mdN7Lpf% V0/>m(vfM�Ɣ^e% jv[ 3Qc# Gypf3 /n gfuZ>m-̓P{ۚW08�6 wPni!"B$=qo, 7m;HtԉUWaH?HR}�P5ύNaSCGNj.(uZ^MPCUo3@x�=hε&xBC@[:Ӵ$3M-Ai|l(ת<ZrAFt}6YGZt>OЙmE蜢njߠG(/d&<'vX]s�4zhr֙�f2SNxDY4L.7ǀ$ =2@ԙ �'|]\FXmF-t K_ER2C[O&N-̽N.ݎohڏa:@OgAsȉΣяOOѿп!A`Gѽ7gxC'Zy}P endstream endobj 107 0 obj << /Type /FontDescriptor /FontName /643632+NotoSerif /FontFile2 106 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 108 0 obj << /Length 1278 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }ik/y_!}t~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=n?[i(JKiU:JSz2QeL*EJ̔Ye,*+eU(NU-уk5x5F^ky ^#k5x5F^ky ^#kxZV^kZy-^+kxZV^kZy-^+uxu:N^:y^'uxu:N^:y^'xz^^zy=^/xz^^zy=^/o xo7 Aހ7y o xo7 Aހ7y oxo7jo$JI$$*I$ITH$$QI"IDD%$JI$$*I$ITD$$III$$u>M&Iބ7ɛ&y$o›Mx o7M&Iބ7ɛ&yUoa[5joSor4ۂs�ޮ>,x/x;Â31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x e#e_y+h܊7k:/Z5dUluz5n[eB&Si|y(%q& %+S%*ABijPU6\h,(+L,4G5<cD [˧*t [ jjaijIxʪwgFwضR>sh>:OVRP*#i|e0U,*oU/*[U,Nmlx:&\}M)L2\%CHF7էʻBL)jƻJ1:%H߯:=S۳zrmkO媳7 endstream endobj 109 0 obj [259 333 500 500 500 500 500 500 500 500 500 500 250 500 250 500 500 500 500 500 500 500 500 500 500 500 286 500 500 500 500 500 500 705 653 613 727 500 500 713 500 367 356 700 623 500 500 500 604 742 655 543 500 716 674 1046 500 500 500 500 500 500 500 500 500 562 613 492 613 535 369 538 634 319 299 584 310 944 645 577 613 613 471 451 352 634 579 861 578 564 511 500 500 500 500 500 705 705 613 623 763 742 716 562 562 562 562 562 562 492 535 535 535 535 319 319 319 319 645 577 577 577 577 577 634 634 634 634 500 500 500 500 500 500 500 646 500 500 500 500 500 500 951 742 500 500 500 500 500 615 500 500 500 629 500 500 500 500 840 577 500 333 500 500 500 500 500 514 514 500 500 705 705 742 958 904 500 500 500 500 500 250 500 500 500 625 500 500 500 500 500 500 500 250 500 500 500 705 623 705 623 623 367 367 367 367 742 742 500 742 716 716 716 319 500 500 500 500 500 500 500 500 500 500] endobj 110 0 obj << /Length1 44612 /Length 19648 /Filter [/FlateDecode] >> stream x X8>q q܈6F8iqlqqu8Nuh9/M_iI㟦 HXy^{;,��РQC<|+�vvq�7͓ɲ{@e {'�� LM!D mw�B�n롓Uet|c'}Q$�nۮ� yضu{u9ʯ o~]�;jltb27�1<n<Z Fq{C`ߗ>ޗso2^5·Э�:<{vν9wW )3xg�I@;zcJ{Gx=F.c~EʗO<see `0xƫ_Ĕ@W�RbT1r>57@eN9VP麆':;1> `ཅ ^;Zt;3@|0{T{@㠿D8w>bAcM�ѡGG>A׽s=4v� :Yx%!Y~ u[u]wL (>�WT߻U=Ef"G'_$i Aa:>�6O<�c(c % 4ǠKP�N6 F3N tcPg\o!Z| xo <(~q}N"G6 AGi"a8PpyFrLxd, RyX>1\?v`81a:W|~V?0=QD] 5 E/ C$ "R-+*u&VtzCJ*0AFf/0 K,e堢zMMm]}hlj]cuu{6 mS77 ܴ}G]8pmo{G쮻xC'~pSG?szgSO?g/ŗ^~Wk�-mM u5k*+J-%Eܜ̌tSAKjb*<\,  < ɢ.TLvNb:|SB%.3$sQ%9lN|N$E~D[ub3r\bɍ?Q* Kxbv*,ӥZ:KPy|}v]8.}tzˇ䂊d?vXl=uR٦KPG9-("tpHq.鹃] ]~=ۺiچ=H[?-JWLo[8>.L'RZN5Aj�ˋSl\@/Ky,U+Jv]ݥV;8fAuKsON69dKC׶NSRE jeT)jss B r *C̠ LoeKzmT'~Ih3~dN5fUciGmA4>d݅i#f:h:R}0Xҷ UEπbȂr~I ~` =}&EĊYjT .Ǣtr7DMtaq<3N̾izlZ.'2J^^O#Ð{kZo)5+,ly݈{nkG\R׷> sKSHjiVd0rwZ)AW*UNPmV{JDhJ4UZըoofx˒bԭR$^/E+%P (E\;-x#1b.UB)pF`L+,._T(^q4EKmJOD bf@AZQhUm~ŴC8kӢ;'b!2%zĜ.M:wߖ/y\x8襮j< Wsy4nI.!1A2C$9K AuEAuck.ɍNv\W0UME$Ω'1|kSy RŝEmbг'}l&NʼnFopI Ƌ>:)$K4/Gݗ(6-ȑF4f&iq)z熶mXA:QGRihW] pz.B$0 ꒶ Ý:(~AR~~!Bh!{樺9kAnn;fYXFR#"@ a �%y|Q= }P7 v t/# Qx#Q9<t;y\} ߇՗QtШF:@0Js9 w~?`GPpi3?|0C(^F=H7b|P1{2?Wz~x~{=zO=Awݽn/ X1*c1| ;1OGyw}G8:w[TM|ьѲQ:7GɅ9�>xi9m>rNz='zNtt#G`. 6fk.hm~/uM_6Qty< `Qf m c`3ah~(@ /Q |x ^G55&&V]Ρ~XXv:iĿiӠ}m9oow0(NmlnAf|]E EmNlH܀#e"qW k埜ꘀ(3@?B?lNT[S6D?W7 t$⤉p P210v8�ѽ/#fmįq<xX zKg{& ^%G~ 1:9}emTF[ }>maXf*ɃTä0 niQ(~K~?rzj7Ѹ%T*0Rϐ1,8 vArBřй/yĥ6=ozE-`=> w`#I}WoS;Q@X%,u-,˔.m5*J_L4%F_SKGѝEo~;U0VxKUu1[Ly{IoҿL@i@CǃbR&~GQx01$qqSGB$$+/D###""%M~_~vY\](Ċ(`e)UJnWHv'117ƼILjvk[6S[Qqq#3̈́܄x{}II1I.t#;ǒ>F fôR!ROU&Θdm.<Lt}oҟJ!73.d|YfV@VdVo٬KYe~ 9>G ݓg T 2G/)Tn,T**zW[|ħ$@�!@c/Qi"e/6Ffǿ]e+?%x]SP�Ca90Ti2Se4wkJC:jh!}j=SSl3~ZYJ_>P%ɤwx{5RDC7󶫆4{"!jH__P%2'k ~ @:(D0)Q�zRW QOuUh.ܺ*uսUUٽպz5.G4(kiP|XFa<Bh5Bk5?WҢRdĄƦɥؠ |cԤR^^~^|iF3!~ss`j2p"8l$C؀KGaOge$TB5?UF(uZ2VP,92HUɐ2CZxvVj AYu9u0g>Pxdo&Z#EaGFW׫TR=%ŮT7(MJцo\[_82 {4<2C,$@ F OP(#;<OfAgO;yr?f�9:Byp.:'$s<CGR1"˜,E,SKUC| Fb*�d!I*'[MHu^r49OIMY' quEGm/2dVS̗35#k1X�| o{ z�BІ.BCM'EP'N_=U!Ķ ps<�${>yai$r[�zɴZa/^IR,ɑ#Uy<u$gOX̜3Hc {+s;*CGnȖXZ;y8ZkDZ?E*k@�k9'ʖja=D3|"X14,n{!O@ϧہ?)@,x„|54:ZVѶX) ZrC^L˵`o/z(X]hk#hF}p-F`y:@I?5TVҴ64x޶]kÂ9֨qak@UL,c.{ $Q�WVGy~b]3wnM2%._ui_-g4Eb>miw'a.#Z>sĐ։Uu걣tdjQ[,}f Y=bԋKlը!POum>`=8!UXK+u0'iWƕ"Ŵ{6/d\5KRuN:+嫤gL&*_'Riቫ6k|(p65/< eDy[E: "|MhrF-M|t/'Ξu /Gftff>"B)gb'=ou荔g⸳up52%,Q,97\; ۻх@҆} 8ZQFllbeDTӝP瞀l`q �/[.FL$bWgn>`ZV!CBuCV-�q#>,xLjAS$p|51#DW"z-ՕKx] ERWqV 7KB]Դ9>0׿֠~</v&7ŪX̽ "`~jpE]N,Fhj/ -qp:g8ws{q,54gLz%Azl!&02IRcϞo%e3/'V7 > il;b/9;=JNgbbή;'\|cJ~?0A8/-oYJS^aXtHQ: pZc8Wx�EsMu5[ug_&Ktl 2l,}4|фEUG R>F.ȴ?ٳ\l7vt^z]8dLgy/5 8fr©|6 ئ,-p RI\$Uf,[~>ƍca ??Z\=7  !Ht*w‡(Ep \[3UN6Ig>%&J�ahj358);H+ݼԈv|΁jz^4aGө/uu'~O5]}WCIIPo<(CN< }qp%#--|q=_ZO}စt2O,l`\d͜\�2RP9 }BлZ$cO0*jT)9!<Ĉs:9ψʵ%m&VCm(d�`txDJW(۬h`Iq?8ɺw@m-YGoj $>knVs?C&l" )v<P�;RajO*Dw橙O#~>g3o-/k@\y6|igG^NK/7h mkPrsD&Ws׃,r7KܹNWϮW\:}\ BtOO!"pHd4& pa_/mM,-?xr[;R)Io-YoV)J+)As~ys{֊bmփRc͍bdeՔ8F`Ykwcic<É?dvx ݰ߫]?__FY~I_1zGF4CX/jv4Q%{X\ǠE]6ч;~űɯмbP {9/ .gjKhs|ҝ 06-2c!Z~&<<N|}4Y7J5n{n_̸vgU۞x6"iq5d'-]0f>jYch*No>),Il,΂ZN<j)mW ض*sg_ .luĵ*,hxO 7s("UJF#;ΣM|h~ј٘ބMJ}t@@^ɝY[ٵ:|k+ٜO{ѕUr)/'Fs!W[wE\* 1~~B{tXC}dg!ֶ^UC5b'Amq̓'jo")Pq$Jk]͋LA F]=Z+ӗ+?gDeR*M#x&2Y/څw@ewS[dHojSv\Zz1Q#ݴu?GQ5 ℀~lil9 ]!^@_�YIZ]!dʸHX #IyK1{"sN.:<LɜA,RߋCl c>/aK+T|.@M^kwAss;=JRХךbP\]O@\qXZ%z }>dt<CZ{g+!c4`uyڲWy\@ yXhp3s 4 V]؛+p;wCW$X_0S8n64(xA7we{[Wr*۲Tw̧֡ "|dO} *7먣\4/3U4Mf?KTXӢ;>.X_Y+d?)@ uB-Y伪N1Ȏu7WnfƮ WNQvS#׋>j@ l_ȥ~ e ΂ h,0W}_r,?w׭ l( I-7^ᯆݧ޻%3"Tmj. ԥAz)U TKM] \%{=�vx` zS4A?<3a } 1jat8%΅Y221yIr;slLO=sMnMSDӊ6&nP*-/ٌ̋wUC8?Vi(KM >C}4tjthv##+';^ެゔi>=`NŽe̗f ow[mb]a`{`?8 " ^D*ѡAh1(ؘ&Ao@!K}Ǝ g[<:ߟLCkYd!OV<fƢhY9IU}S}?W̛7r vUFE].Ux:p|0=}@ii:d~d&xB%pv ^[f텗}|$gJů0 Hjߏ<oL:Suw<c)q(Al,7 E}ڠQz\ԅ}xr 0|veyc#cc'n{mvۣOuUџm}m,w'HQ޳R?@8Pkfx$Z/<D"cB^J į(#Dl!]GğPZm̯a <0 !FN<"* R k# b.y{%])C߄u8\dG:4y)q9*N8s"<f&Tc|5 vKKw%)م1T6Z8Z! }e\sq޲te^[BpA}4ߐp 2LTh֦ t|[/Пp#mv/P_;[_A"Nû9込Hn܂h NGqɆvDoPb2JS� y CxiLH, Ec D߰x̾h!nПϺ߶_gOV M|< ع;5Ua)~Joga`_k-;:5p1~h<lyHQO=a�;+ca޲C؎9maomܛQbd]n^~|-GP�QtO[}u!v& )2F>.aW6}l{j +*Gx0dzskeG/4g!!rVϮ0qt %ڒ?EZ;a5 ĘW]pQxu+rz HsD<(*ssDg ADxo!vf"})Zt.qj~;tMa͑]ow\==nIo'c]?|(X)Z2VՋN_Ai"nh*M|nr21'_,;PkeVX8N|Ւ`0pMf202jYuӼJ}}8PW8u nVu_p- )lp,;_!H%=t.e8{I !uR'~) е X15:pU#֡B@ uKٯMݴ4k!~v!e.]x!4͐>9e@֏=NRg#[8LX5Ý'?PL(h,1 vn@̪wD: `GQVۖRM/Aw#pE.,NgU.=m-Z=( :-[%pwǫɍ建Udjğ<gj92_:i?(KN:nu z^So-f}^Gb qr(˨\rR12bfc>`QzG[udܩNdgOu�Je"(T]�le0[<$1Jz2*~EPdHkAR4XOG|gd=|5#ߛV7ԉktTie!8&>MtYs]60v68mS;Ξ,8!dl84<͐xgY˗qm<uM"]\X֩eu?8 -eaOAߝ{C\?]?c\:5.N²4l:vI3.lѯl5Hఴ,$v:65ek*aQyɪ\NK33eK|l!U.UʌmA*2m[k8r~^c-:v;{Hc3bn`,e$$q i%+RkշMN ~W4z ~|eV 2u@A'@?{2q~Qg�CNPgp =dt)LJ,=JvGzPa=Hkzid}W5KѪchhJc~@ʡ;=dHq:<>0)Qy7l 9l<~7q=܇=(m4\&(v)Ԏ�/>x;.KkrBz׌ㆅϩkDr_] 9pfzw=6h)yWzQN-w^%&~`7Az.ܺ^O[!R,vlB_1"udb'VO4]`%v5ktg$Krը#_3!T+?~p1_'-$,rk IkHUL� :}BH +4͍cݰ22Gd2X~|Yg:cRE sFRimP^No.>ƝK 8 ]M#[D,y5\ڸ+"}DeA~�4'F..qV$Μk4!Ȗ?tJRG" ȼ0GՍ呺=dL "Kq|on_o^- hɵۯn.(&y}/<hXt2'"fR_C>Vg湸4e/eӢٳf=zB74!? fvBj+%0r~=H|6.cc^Bc ĶŲ?li"."{jHHp2EK# !ΪL(M>-i͎p�cI}7o*Sr@EyV!/VfLa:v[G?;ZW9P?*)rqĀ1P ejUV5x{,^Jp|إHFZC:9<lA7qwN'ϵfDƪ33hJ<-'}\WېpS!_Rܵ}9 ?ݸ͚! V)4OHG۞ch* gtI*1S�K" IBײ"Lxܔ4O]ks * `oկQ48.!A,a!bcV>Np̿4plIA[@A:,?89>a; -sUs>wcio~RDޱ}7 *U* BZE,(5=@$, TZoS%Gݏnynˣn4O $a3uto@ ‹™tBj?:S [}G/^ѻqB8-z8w#ml^8:x-RƒG>"{~}rAt�\)WʱȚwG67-v,V1LJȠ8^[Q@FOB*UꘔbĖ15˪}T0`!iv&>v΃iD3b^ bk-l:iP)3B_$�D�gf/CA遭1b{OLݑzng–&)d?.?{c5 ev>hoxzk.\ooXegXxB'T4;XLC݅;nb@C&Oxtr4z"3ܼ on'δ`9^>_6|o_ ]~TÃVEK?O>]<\_?qӝԎM!w@*;3d?Cߐf`?ˠ' sa#^ᘂ!8KȺdׇ~tӚf# ݟF }fP<Ѥg7y5J`8"5ig⽍;j:'d 4|Y6J8*-mLMMO9K^X"-w(JLh(w܆噕QzU5,ߥP{z|  x̥6{|sn#2r&pͳ9�{_e:f臉=ERFc5cf]S64d:trʼ(YRYjR4崴IcBxQqMiQI1bCyA2hr^�ם&wqmHjL`O_tkҒ$ 5yu�TL+Ʒ῍`!1ĭgpZ脑71QyӮ_<VcI,3 '(˨N6cROOި;*fXmTn*+37ejJM '?85?>1lšK >"|C %SfyEb/8y9ȎS r/�O./#3wңcdkE:I9%s y]B )R+`bm*#-k-�Y;vJowiWKvI{~(8d`ӿ=2UcvxT1*;O]Vޕ'xh߫+n� =]ljDWU֒ rRȖxhN|MB عUgD% |3bzWyͦ¾J[9}%%=<Ruw+6%{l@jiogG*J2 P1eMC w-urRpOmjSREJ�/: SqW*u2pVŖ*BM̺&.�.cudwZt+fÏ,R n`!$3QMj!G;Ң}!;W̯Dv qؽ" 繀WJUQ)>7|@$8W̷lpkkn\5]پvgǛY]{A( ~ *՛0/NNZ|?{bwf2y(=!.m mK+ 1g "sijaXvȑ׊#kh9~a1f? T@$0gÌu;RV3}皔CYLΝ˪ʸ5<=TB~|;awbYwaPU:6MCD7K1 |GJǛ=%":_{2LC,x \u<lP?CeK# 1U"4h(ʽOkH%H҉Atz|,^.,C&iq$Ek##tIɑ(ܝ<[5Ț-`¼e"GU\`wwcb"uIȈ`^H4%8Om*C~lزm6.Yg5VF1^ΩJ BYin qՐ`fVʴ(s|퇆NSksWXWG4GS-*@# :* Ho =(IEykux k'|٠ ˈ&S%Muuy=TL(J|E$y<xѫs3HC*<_49O*grcgQaP온!UѬz֨~;-iko8r2ʒ?qBT-wFBܳ ~37L$y,}tOeCy/莵ڮb:Ĝ Ei' 5ќ̱tYl:$>5O{ /ty1XKW>gCiUav`?ᑛ ~^ fMΣx EgU^W(Q":DW}*?,o׋^r".Ld k㫲T8nTl_UҲq\Oٛns,gC⾢HO2λCȷF)}TNQy|5Ba\oo,^ZJs{if4A.<J+bf~ϋzUa%EI P7kxWZg݅"T_:dI_GN. رTǵMۋ0qgmq;uJ`W ASuwS^WilI@i}e˱c-ym֔EVtݺ.R&X[Ѩ57%tz}H\jX9+2*8ؚ'5iJd\[v6޵ˮ ԦuY\DEV!)#2<иJ#QFauE<8FW# {LS $Rb(-8׶u01Wv02^8 3~䆬rk/.yy ? ('\NmGDf fR +K#L+h0CU9q�ŗ򛺲؍$:,s[^U4KWŦjC-c?ᑒ-$2&Y4VvD2` Hs(#:}MBm21~o[c;dfdo{ wXo4ȒAGw#9d';w›GaW,r2SH|OvL:`dޜ3.Α4J}XC1lđX=})7;?SkVM||ql7%1r "5zH :11ᒟ޴:Cl@2 Qy][:,=<vWuk}ĺ52](|r`RT>pf<ҤGZw=8o걑'6D*+lY8,.:l\[ O8\@ QBpR2ThiSMySg/7x{+^TYc /3XCys_ARj f+d79#?Q=tzfKz~&v'd:|>8_YK =u65yfʋJ/jĿz\N6oQU]@`xPLV)ijY@2+{u+H9e(_:}&W 5f͹=)&]r1*k^뮦d1S?(y x*:+dV{$qix!"Kb*o3'1&KlavfmK mW0+Σ" 5<i4gI]|s.-굲 S =S_g'w/]+JTUHMI2>R"ڜe{˒DfP_6 QS}rzhϖ JRT5)Iog<d?wqк#GWjoz]7KcI"He^q׷Eybs&ld~I>1ݐ 5\G/zt̟ll}oR@ ~k=*-VT蘣8߃k$d'~ɣܝ_YQH?p10SCdf8n֬`ճd-&| F=K/=dቸnrU._u ս[?4ZSg_Ư uM˗Y].NSJ?n;7L<T dיv:,kܯrx, ȣ'aD k=xߵURd&EyVź\4T/ɗߕg ~|7z=)nU^ď9k-z(u<.�}�|׻?dר [ЩoXłu,<_v \&aUQ(ޠ`MeTNQKq-awo~W)7PW7Ҭ�k} wZ#_fۅ'@v/[ͻ޸W.B6\ J )Q\x:A"UG /cjh1rmM.,*+lwn/񨐖8tDƅhr#,xGi5(7|NZgV?I6uxgXYGixV%M휭+MԑguIaak/ Tö' cፗzop/^h*k7aOזvfYUPun]Rjy\(xŧ d))\u6Cm,զ+2tk2{^>}Ź[ݽvh]Vx~YZYiUWg+RzX{77m=8SHb5+$N-jzH qZH+obT _*I&}]۫$E=w՟[H__PR^k`Hdl uD_V#x=Qҳ(G jkX 7+sy+ qR :z[uGK+aAQRi`}Ɇ(ԍ=f9a^1"ao$Πek{dhaddT;vu5%D{N bF?&6ŜIG4aO eixd<C�>,KѧuX>;wx|-&<Dz35w:9'B$ `2)VkD+?JZdXX;M?+.ݫgw%ܸG̛p=-l y7(ѐ{'^JVY෢aDzF]Sd{Mq<k>}ܵ� ZT`/wB#ܵ7kdE} wdP]*!�DR7#H [eq15]S iM˸kӭ5CܵЎ2@+_q>`/ܵ]x_r MxKضIE!%UQ6:7dWTt'+  ф>alIU4z}SC5#+ö>NgjQ$32S{SB M19nΠ,dQb}boDd &mI*nQtmSga3Ocz-[Heݣ>e;=^'&&zFȥ#-q;ah>2鱏+&ƊjE}\fHR,P$%YẰ)崍(TF1IRT^ܤh)lh(i4*jŵ5%M5TQXӦ)IR8 ֱqĄbt\10<64IhU;b21fV Fl}1Fo?<0i$}#]FS$e:0=>069<10<:ާ-`m` &i2t;�#US  05It(@#I�$WBPtچ`kFOP�:t*U\Mk\apIw;@ c!(q0FQ6s`ZaН [~' ,Ij4Be)\ܳId“I'iq=B%\ %#XGQ^=zQt%/0Ҧ,MLRpSv)m:w"7)tC'yeѹ:E%$W2BzyUj-F~U47k("тeQ "o@5XȻ(EZa-J-!oTkY)ik5 mGP'w[eƉ$L (S!Uد DE< tVs*H{!-F$ 9F &tpd_a n ϱn&̷m(m0ĶI=L 1gLjJ& 3Ʊ=ǔfG�^3l!#4<sP�c~@pA !P 0 J`8P `46/PP0j`,Ԃ` LWzh)0 Ҡ )̄Y0٫0@3,�A>ŰZ`),Vo-U +z�alV[alk_:v `={a`np8 &8'$fnvO�w.7f[xvx<߃G1xAx>Oax >O3Q<  ?< /\pIFz4ԃ' t%M">%6 Y öAa׸}]X87:b-o)u|RPmÙK+I{BZbS#)bf9^zLTǼ.۸T  +jΕR oնndpEj U+qzfԐGeOXˡVKj鳍O ٦&  N ,qIoMyRS,2\Eͤ"~82sU쌧%ͷed߶kA[߸mV)h'p/ecymxč^ڹ, vgp,>b2D~L wX`YQ}7.cr`߸>ɞn3NjC,LJ0GXFI<:~`qy Ɲ!g?V0$nҙFW)-⾉`,*$ۜ`d R}|Xel655=%;H is;gpg#{6q7p "̽(gt7r|hΥ\:wɥr,.=;spqs&۔!$MD5> Ihk3:lc3R[/ Hzlbώ~؇&mx(66frϽq=$o;*F8&IT8��ى endstream endobj 111 0 obj << /Type /FontDescriptor /FontName /782f23+NotoSerif /FontFile2 110 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 112 0 obj << /Length 1157 /Filter [/FlateDecode] >> stream xenGE .yc F<%Eߧ)qQu}Gs|.t.zy}9??]Gsl[yOO秷k}~=<Km/kz>>c_Oş׺y4|)rsî~5-ZnKe/t$=r $YrAVUro[AnDZZm�ĭ"qkH̓mZ6;xxJ#be3fx'NrW54$g:;nMers,7on%{]t o_%+u|n:puڐ׉1_yUGK^f^/t2/ Ix= X雴,h:p *4780 |)YxQUݲ˅`AR�oDձxxem,+HȘox6!],Zt򦃍7l`M}卾7;DH_MیZ 7n7-r[,or[,oȕͷ2%zv2n$n$c$ca'{', YkI͒Ւ(Ւf%Q%QgZuVKnjIԭZ-jI1DݔՒ(^ZঐՒ$wBO:m(533'*dIT׆%Q e5iI x=ܔ%K"} YUjYeY1_+7b7x7 *M3o7B-a7B-tp$ }>4-6Afx;͡fGTYCH|H :\^%Yu&5_Y.H:"7vQ:)2LeF]R͊eɲHʊYk_ / (g_/SWƫ0TxIK UUj,3ǷZk#suBj#sNkh]xYՊdY@m@jm@;mO3Oen<dqQҸ(Ib#d:Cjƫi& a o? H@YnEW,<U7 endstream endobj 113 0 obj [259 705 705 705 613 613 613 613 727 727 727 500 623 623 623 623 623 623 623 713 713 713 713 792 792 500 367 367 367 367 367 367 695 356 700 623 623 623 623 623 763 763 763 500 763 742 742 742 742 604 655 655 655 500 543 543 543 543 500 612 612 612 500 716 716 716 716 716 716 716 500 500 500 1046 625 625 625 625 591 591 591 500 562 562 562 492 492 492 492 613 613 577 500 535 535 535 535 535 535 535 538 538 538 538 634 634 500 319 319 319 319 319 620 299 584 584 310 310 310 370 324 645 779 645 645 500 634 577 577 577 577 500 471 471 471 500 451 451 451 451 500 352 352 352 500 634 634 634 634 634 634 634 615 500 500 500 861 564 564 564 564 511 511 511 500 610 606 574 812 812 705 578 640 564 581 687 562 576 704 627 458 613 492 615 488 535 787 595 577 667 858 945 595 687 678 716 546 556 945 687 879 612 610 527 333 604 494 604 535 768 470 696 604 473 693 496 579 577 609 605 496 333 461 592] endobj 114 0 obj << /Length1 16000 /Length 10493 /Filter [/FlateDecode] >> stream x{ X[U=熄(-HXa/kP,],ZVkuC.mjL??uOg%jgs=λK DD$ ΚL7 lSo{{ `NҽzO!"]}CQ'3�co|tn k~pޤC}}=~+4+3"�v2\'MOAapۇ.D$ho(8 ﴖ!s1AOe rz&to�_<zES#0sיL鿿{^pN`b'0}`D?EE=< ⏟o15ǩ"Ki8\zp?A\ *A[ȶ U`BhP$0 4PE@D/Z**;>mh0V:2H 4< a_>wC`[2ajhГk 1 `F湏ba> =7 zF6 347$h>hk^ m?>hC6mBhZhYJy١恶_ov3 Zo>~CЊhe |3 IAP-HeElܢK)e*9EIMK,l9y"]Z)]ZWmi]־!3b&;SeP3-܆$f0ڊ:oE!Ԍ֫qfZfR:lW-*LPwƽm$S;g�#>N9槂1 R$jL|N}3+-Uw 娋V0-6Nʜey)TTOY`4U:iN�qJq b/Vޛ1&PӦdEiU{<r孨WΠ40QMiϴl0n&9 -f`_00t*ߊ΋9aJՌ{TӢܑ֛iK8DE,n2u^UPrCTN>W!D!f8�.vfA.={ mAZiy͜L4([ڼ-3 |g0&x2kH Ft}%�~M."i7Z%8*x_C⠲A_=WE1Zi?e=omH[Ɛc! }9,266v!<&</D9cF32/rscJZu":898Xlo?+AR (HǤ_˜dQ1f@J- d&R1UJ /J >z̺8vf"U EHQTH,f1FhV' e1F4PfRrUO="S<e|l=AoܨQy*SYYCsOx)՘&h"` ]wubŰxZQh#s>[-¬p~R�$H-WE&T=n\8px2XB[0y%%)?ey$G� ed2 RٯEpAU}]K<<bnf`6 8?Zc@ dQZrĀ h UIdVD%kgvҋf׵6?ܳxGo4tfo.~bgѪ̞!�|&@O15>L2K R$RiL3fϲ;[K<(O/I@#x Ph NiJ7r_* bdF_hڈ]=>э "S7~BJ,@3/l R& ъW nٺG1q͝O?r;vhזr _sEKw�bb*R HZ(Ř6̦|~[wUw|k#fu[mWrw Nļy1/SRl|_} {YE1Q@|.\ݼ>i" +`7s] I">NkcW;N7lXF!?]<Ctڻ-?9v26Lj!֐D,&91Z9H<ir]b3 8<| C>0*,)2bBSފk-gwV .o'@##8&ja_Joc}�6>S5+vW \RYJ87Ƌ&M! P( <X-fMDU 6#c VԻ:PB~w4t5'IluWӕO0Nz}%XTL0DzdF3cREg986j6ވSLm8|5*26/i6b=|-:~8;UVGD)<*dwfgx8]5\(H>rb/4{RذہKx=?!>,oAwa>?VHY::; <&,8 {~K}jwi 5X29T>Q+ű+οSrTUb' Y("R=fłMgj{v]bo{ُc:fR!RF) Zj ^5DTX7:<T^j5|f7 Ϸ2|}΂⢼EE7ueh-e=FTV}p?i O'1JY,?X՜}Cg袏?,FqJ\q 4M<ĀH\>Aq'q1ea"1f )Tj*gͅLS͆!) k>2aPp9(LQ`{eMe,_Ѵ^g-(RҲE:VH鰤`]ZTD{~[g.^lXB0CG0M&2t_'(?(w(~GY<i6K)fOk>zGP gJ~/Ae=%f.+4^t@pʇ`Jdy|d 8Ϫ5g(8]Dkp|ո//)-(O?Zt59(!w_jq4kgtMh]k{4œuKKW@kSӎM5{r6)𢌐ia%Z45*~ -spk {;Rc{yh/c-tYk7\^H.{*j{Zwp)eIH66Αr̡z}9P]YE3{j*e ӛF`NwwmJN7uޝ#dp8]Ku`EUK4󲸹B)\kL /�+ByZ1HlE')fGBh= =b%^oIimٰoҎUroN.߃4W/ mmLoĮQr8Graiqe!<#Q={ˍG+,SټVDٜx rįg% L )L9{ܘA%@C8m,tz@n BiJ X +@N\I\tHMnZz3У4E5˒odz$ڧQ9W=^y&G\T:TRF1F+R}H [~вeXt~ܗ%V|z##O QL×d?0pΏ <(}<4cd轋9r4V=$.}0�͌>253l5ɓK*@}E)#;+Rx# Qx4 K^\4hO?L"!r"2KAa٭Ew,ɷ{[V6s l%-~6[IW'wstpqE88J̖̜rUX@sj>=ܔxqgs%Vw,gf63̥,@֢TAlㅼR+%M?QB1?u r gÄ*ѳ`[8_acL}H'?c$rp6�nWYUm_κ6z@?vQT7?iM5>퉛D }DY섒G+ٓ,ְAkQ2J4#r[%XN;p1wz:\uUq "N7#d5q f>)�9a4܈1%0SMtoha><<8Uf4bp.WVӧFxuӴtYt)Ånc-б$c 1-#FV {:nhm%֬GG8DCƨAڜ`]�)LTr\%όDexɓ+MuГB+.Bm᢯+Ro-jyS} =7#ƍMcAF:1aG*LmaC;[OySsQ}bOMPɞk-ߓ2}kQXS /V#T8BQ[@wλO=I=)?v'Da[11Q07 L>$""/36Zm}_C3:!ܹnmڡ7RvG6/u% K]8>yt`d¥gLMZs2 L�c(5GcP7?П?}\?lX9vcWL}{bNpzJ2oDtda)E ?4CŦBD,FKXKZxƹ8w*%sqL|FyI,k)tzR⫫XrҸխi2t/{F~idUK}m.ʬk2Lmv{?]0tc,߷nHR '3X _QZ){ֽep=H)ӱo/뗪RoF\ _9u{U&] d[M(9-K2e% 3/pfF B\;.23%@Ug>PĔd!ڤLE%5MU!_ˬ #dƶC{p؝bQQ6*$%j$գ¹I)j*ds,Uyw瞒-WCyܞ&y<r}C<\dԾmu+4nI9g cA BdCzaR¤F"MHE⨲E)i؄(2[ܸ:vHP,L)]S>U<YN8KKܵ $ɋ SOZ]N/D]xDĭq?D|z\CƁm1֔T7ɕ!Lz6ͯB`a;VݔӪkhF?I_!X[Zŗڹmd*^ |bi!;Ma%BC|ff';[gEzDh|3R/r5.YV|;_ԚѯIP&bTȚ{|ͼTD\ :6%ׂ6~k1EI#3SlB󹧳/ځ/ ֦Z9;r6ZQ]hMۀq__+{ uE"ТY(D.J5AkM /?8[ ;y.lB{݁.$wDGywt`+0;$1U4DIKiuApqgsr]'v3`;.$'Ԇ6W(ƵU nj;n^j*Pjg뛎r e=MŦntwHj[`LM3y^2լ,`XT9d"(`r8fm{ej%GGzwlSqoq U*wy\uH&uizwYMUS^wx_ ?˘<&9/bnr�T Z5(^ס LUת(^[?3\p2dv~u:8[k%{;�2-?J#a')1x^ט%lVExZ, [9ۗdfwIX(V:M)}\2V3>;ҞHiw_5!UDRRGlΗjYT.HFsJ-umL]j(4 ŠA4[>sNSp_?B>yjXO1 G7k"Hy_<ld|d甁STĻh_ /oԔY[m*dP,繴K?灼tAAOnw:TIcס|w"%ݳg U)Z䞵:ΦBތWa, ̿= yZ Hܰv][䅕u~wqÃ!=#3莫 v^ G%g,_}Ż fЏd"0 )ü4'jYB\f^dFfAy0{+l%?5)|{-=V<h`uMӮŏw''XLӉ@n)g-EH}_//qZm:*qt|Gթ,<XOdK eB=DLG+I!9G% r;;<!yejSPBI𒺡r'bo|Cb%N8U\!['U ,J A!(qcKf8`$E$:="@,o;oWoƻƝUV4Ew[+zK Hjk땜)׺U'ee;2.ǐi#&PwG|bw+Wt;ܿ`c32Fi-|}5 3x?5ecwzI$:0Vym|9-?/k џb Ckv :rrEE]YߒxD#3w/~y3 %Lyi +w7qNAKu~m*,ۊgI;|tkI�Nrp [o!(9~BIirI0SQ[.'GjVobW'K2{eqgG%~w�lMD(EO_:ntg7:C *={#2J;qʂZij J" B=J6\iڻm<I<z 9Nu j )_[9?JǦ6CFo%Mzs }V&S2mŬK,F&¼w+\wU'X/g?_p <dK <3d*ϴFo vq5[f2i."R%O]BIynA>4Bq{ .ۗp] nY޷#HOˢ;4>/.;BP ,-sˊdoTvgBQ[`o4y+LlbK2KE,Đ&Ƕn[mZg}j{]ocQ|~k6LvoܼGPޖX0U䚆*�+yWB|ޫ @e*lH:sVpEZ %CS'E_[]4ZӤ.y -J1CzH&O#iޔ@Nux=am7OO/pysiLHlg$,1i #S!I(Z92"5'9EK94Cf$h4di];ݚ*njmJj ؙNʒJ('ԂCKNQ=gԴW =BDi >pNI[[]Fw'q(nMyY8"8;A $k kvuiA2_iR,l38W5mWT(/)1M*]Cْʖ }v$>6k=gǕ=@c=g,G?>Rz#R) w8} '$5S:K^Z*ܕ~؆%)9waTX0D$E3-95{[bSh>rSkl;ڗ#ɛ߹ o{Umɭvwi]N5fp@lJ.b-XWFS慜92vGH+Ah'=2vA/K#o-g x+=.w7 \Wݞ%F&VޔlRyNÐC0ʼb�02<&%| ,9HTGƭO'VKkB;SStOƒPJI5 :x !5%QERA!I?˂eŲmByڙjHԹỉ$w\GE)`I<'_K?{k֯a:6|ͅ:n5-Y}H7RYY)7ӱH=V`AD\qcL ?&!� "hB]8 ju8xGAϏń�HN1ZŏǘDOcpQ8Xqa~~M "(رh;-H̚1/uc}iѐMUePz�YuAߘ{dx=2秌zC7tfh SYzq]֨n?11Mqxϰ~hC8PL?S#k|c~=8<8040FcC,X7ff'Fqo蚜SZjD?52#H@@o�i)?`А{78Y<<2|j(ԳR<<%TRQ=\'Q͞EJp#((1@JtqPz,"FUR(p5D5^=k:*'J`? ~2I >�`B\IP㮍 3�M{*̜}iL &ȄqS0G X�`_C_.q wְa'E4AX9mz`nmݿ@!X K!S kN̘YǬaNgk'Xj|̪5FTGؕ1B 0'x~~/s w| <Wi4eՈvP5!MpU ZRL0e{}35 //ze7 6aF_~ da\ yppvCŀ NNv5p_*a卷V2\iht jXQ6 {nCa0WyHvU-'5@GWUʚ΃;e�aWF$@" F!(p"QFb$AR$Cr(šE(-FKPJDR$B(42e"BFdBfdAVdCvrP.D| !'DbTܨ!*GUjTjRTQjDMyQ jEPjGQD>ԅC|EFQQ|;\2_o{+7owv/ygXo"%E^ߗp}OkyY,w5K6$/fēa5Zulw.Wȯpk͓Ӓe{f>Ǖ`2\o/z\o v~>gkͯ6<<3?o[y;c \|oYy<כyx6fM�_<\3O_g8< /|�K6A�t endstream endobj 115 0 obj << /Type /FontDescriptor /FontName /fe84ed+mplus-1p-regular /FontFile2 114 0 R /FontBBox [-109 -288 1403 1075] /Flags 4 /StemV 0 /ItalicAngle 0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 116 0 obj << /Length 638 /Filter [/FlateDecode] >> stream x]ˊ@E -`=!1Ƌ<У5IJ5 }&Qty} Ӽ[^!}xq'kfz^[~<f}O÷m ۼ~=_u]kXN| S,[vאXty<52~>֐W<IfvCغ%dǢ8锅eUYiI? -;V1(2b9u*bUJhH,$ #l@+l@WB3 *0D1.@%J+ B| bRH|RǬP-ߒ =(z�uzd76NjI=uD4 S&_U0j1i0| ش#ځ: rSI$[J$m {(U[J[Fߺ0uF[X/t6 Z;P= �3RL`QNDUV(\ 5QuFhIQ1K:KDurp6j÷ѷ5MoK4;sU9<^_{|Zс|_>x|-5:O۰|n*׫n|A|$ߖi6U4w4mq1>a^'z[J1Y endstream endobj 117 0 obj [290 693 693 693 853 1293 1223 1293 1223 600 587 745 745 318 316 1117 927 1235 1055 803 793 793 793 629 620 573 653 683 683 548 550 548 888 1120 1120 552 552 552 573 311 308 648 910 580 570 570 570 453 453 497 512 558 558 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj 118 0 obj << /Length1 8580 /Length 5229 /Filter [/FlateDecode] >> stream xY}P[ו?'/eπ]Xc,@_6`@X`K J@['.L]DZ4fvRtݝi'i'٦vqjO6dܫ' 3mw}9s90�Hi[V@Ƥ#tW1T�HYUsՎ&�r�]Ř;xǧMq�=M{rb8ʮeIa㓑Ck1}w �i7/t ae"OIɩ&y q}0lmE\ /j/H򠏽JM_O]?8W&Zv vḄ/hqXurK˯,d@ e+0y%9B<7֋?Q�BF4 Hn_-]]-`  'g\&k^g@ `TD }(!*Ѓ+(Ӧ@xgg\WC^FY$K ZDIzĤUbp:z{vwwubY-;oZkRSQ^Vj*TTXQ7dRW%'%&Id*.E*[[M."d_PW+5-9z%iY$zZjUsdpVy*rzBάBhԖ3n qQbho69Yn&J`6)dMrplj 6fHXŦUۣtvڬqTҦV.fnR6+:n-4])TD7m33+f٪l79rR"[mJ1ѳ4O))t^_UD[iejq͸egfSRf60t;q5N{:ջ:N݈`Lt0ȜQw;c<ak`)+P\KL2, wɘ͎^"yd2=t/KWR?5噌tlR㣊ÂJaCfI4}h 3V0;6RMj*QZcs*+#lyp0E>+OR&Li)-ɇÔf\(fe3S 6Әɣc;΋Pxu]0`e m3NϨ2xpWRXĀhnw;v:kUcfN*aFvbf< �*v$zl]AzLGYY7S'1@\P6Sת1~Q +ָ5-cNs8`]TG$Eb hC,9,){y*n'[ ψ 5}+e0qSWiz-.3 rG 3.=oS6O V1ݍe5+ffbaŠmYϵyp?+:HG_Y=k!'z>|M Bi`v#ʜ)>W8*0azIi.89KcFcbR p]q16ak8dcDQ܀ёfMQdo,71|wp-uX$JOrLl$YM2l D^Ŗ%k#$ցe}CY$G~,t;I<y|Lϓzn[]KÖ4RARP'$<$ DG𾁷>$F!xo=Dv$E>F|lXU؁yNĖ@@- \d-ZAk϶v|yk4_#kD;奫i-*JW>pJt|@D/ż6oޚ%X'/<MҞ{ZH<jD8?<3}FJ'1˧4qz`9MSSOI:ʩOi/t=D"x́8֮^IyZt12xh*{+{, хC= ݖ4xC-{r~qqqqá'-Iy[628$͡Js|ڕ4aGib�p$t6ѐ9l_oqqǜnú 9ֲ{PўP19KcO JeSqmP<HX1~l64 H1Hxx?#0(M8EH4:&C!TljaD 1;!Q(.fl0!XƻAfF'u;+RvZd_څ̅ӷ8x Q—9=�u~ ?r?<Ix=(_0d�<9A�^w%̃a8'q~ Bv"Nٲf `e7ps(]?3,u@ї8=}s }P"o}ok2̩hUwᲘĩ` صa6sOp/<(\>Հ)$h3Yڷ  Vg*,-tE.Ú|2%x~_⟑Z<%41YWF#/6_DU_nL/0G2?5j>uw!RHNekT1+3WDTRU*rET9WdTQ3ZV2X3wKݵ?(K.lSlڼ%)UKȭh0uYEf^D&e2G<U}\ri֜v_noiٺI.=sP}+76ٚ X EUH%(g4\Aؚ|\T*Ρ#G97eBIh1Q{qN!Eo\$oOLٳ<q]ݩSЇ;wb2;Coz-5m=Ey8>='^|z\o|{@bq\$*-fc .Sfw<͇^?;̚&,ԑIҶu-]Ў?d;7~y>k>3TDm2t'^2Z"Y|/^2X3Ť),&qErZ%D K _vU7Ϝ7n7k }XzQ3>_''M ʶD7כMWMܤ[kΆq x?q45'/׉ŵqaa5 gq'|9M}R>C~0w-vu bu&T^}"iGgбKFR ֒bح㌆~/`3t,Z=ygb%,5u/lrdԲoڼiDZ0KEi%{e83PꮚƂ{Uֽ#ez^+cR<xfb`<;{ҰJ+P}O35#kr۵ަ M,{O<c;'BߊG  ϤqO|@DsUVF' 9ʬf3awQNfmSuCGA(Qcϭk~-5UcgG+s+-Zr֞XS"'~cu^3^X/tCIec/8UjNlO-e5.Kq,wO5Q{zPXvs8v6KϮx1t?O5o }ƚ27oo9|G~ra^xdϙx sO|ΈcOx5UH&T; 7^Y~a`[kKo^|mCĻ1 |P9k oI/ VD֯/.ܠo(6m#W򚣴Đb(y%SwX1Bϰ�cȸۗN7 o8U%2ccMB.F dު"l�JKsJk ߧbaA>||AqǽIxT!n-E8b*A>:+ M SzNUi 2EJk GPiXŸcNMG*u* ҔJ@^%<)TT=#c^)´@$@{!hw,: A2ǨֹM{Ca_O+J˷xݣb& S7;t .w&YZaߘyݓVwM}^>L=1*G"JGecH*ʖ'\?E<@8l#709y&|#^={ioNc;c %vD*Jݍy|H7Pti~c/mͧMm%tO[_kiikҮimkDN;hG[z}NzCpB7Pz+ VzG|:Ec74 `\/p~,0 Y!EKȟ-5HKþ@h˾[&_!>+*Ђ�E FpR|ǘů0{~@Y�e>ï p# ~u21cK=ݰ~NfV)ײe{;n 7E]_5<2,V̫>8֊m2mDԨgaEbٳrD\sA:< 핕-Cދe�Rw=y-/,}|5,vbiR&A놭3gfbdwbgsDV<gGx] WտM7oq"Mc~AZko6]P܅]Z6Ndv:a�0fۋ^Ţ!LWBDE8^UlxWq&wW3=䱌g$ϣrVS|iwF,}>vk!U}q ,;78Fq+B"hHI$I$@YER+1xO5xGܺo$DxAϾp rFʫ++b}W[վIUyڛ5]�~** endstream endobj 119 0 obj << /Type /FontDescriptor /FontName /5eaf47+NotoSerif /FontFile2 118 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 120 0 obj << /Length 409 /Filter [/FlateDecode] >> stream x]Mn0 :"ǒc fIN{�xsAdaH>S?yt,D ][NswƋ_Uu1OvNU򺕻~@T$*s>뇿'ޟn.7]qԉ&NW!]I19S羒nd%ugRG7M\~S|Eu+�C4Њ [|]v͎=cJat\_Jxc F: KX9%`'0~Cݡaa P†vײԊMobDaӋ@KFyZ ~#෵~CC"`~*g_ ֢} @#hE  qx+CfR#1guY?.& endstream endobj 121 0 obj [259 768 579 577 592 577 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 613 535 491 826 755 492 319 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj 122 0 obj << /Length1 4960 /Length 3295 /Filter [/FlateDecode] >> stream xX}p{m dɘ1+v�KYg| YƒC!ɖ,'Вh%I04ӏL~vҔt6mL?I&L۴LRmLv 4mU}{} ��r{߿2�Iv[<RYdWMg*wDLr<659;LPqāˏ{ ˉT2(Mb/bi*Sa4݃p"k8߰ߝ$kao>2?ڊGT`2.''4[,[J_Mo|KY{qkWrM C;> QILp΄K \7r?PQ.ZT./)#�3liBѰ}�Ftӫd+,a9I,n,!,XzօK%]׮ˬq҇ţeuc\=<3Z(~l�c \gS _9yլ⚸�VVR V[͢ZX 7�nLۙOʊ`DU@UJ#k\w[B!-.8E٥΁Pdu3]K`ġtG]LÑ?)jJIsD%Q+q.>RJQݾݮ�Ҕ9O-*b.Ioc<4T14T16Fb2aڋzlywU*2wҟp*ԭ5oPQحQ063NMtc/&iQӉ\F$Jwuf!iZN/1 hԏ 98) "  FPXi(ƘfRŖ~Y�L| "k؞]GLD,mX,Sh0aG3M{{*x8PD܍ދvl؋EN;.{PBd\6Z V.gg] 9)9E}S}l5*h wDoĬmDk3;1 !@s+>`%0AW ">IJ^$ aqkyb،_6+%.MYtK?̘C`�C\+qղA,ʶYG0㳷?gE].}oeOu/58g O9~ݳ9?A`!pgG˼f?>NLbJ!%[Q ~Nrok~ ) [EC"OT 8}[~&V%{mbC'{GCy'}r[V PYiϝ)4ElFsóC~mW`vugO7حN0X7ժ/p}jȟ{_ _ _LPD Wb&ضW1?Z{:@ra\U\u~_/7ˀ,06\#{|䩱CоK]x+^r1.˓Uθ=f fQKI16X;qx[%:^~rLS!:#XY≠jlֲF= ]ޗ_vl;R׳,<v2kW,OXֹ+k+˖f!6gch!Dg΁yTzu~򄶯т-1/PrF[S L7HȚj5*\~f+vRO z=!G )4.9׹~;}w hWտ7;Պc ܌}+yl^,)^|SLc\Ƣ(ӣa-Kϳ9VWV޸7j\gqbuRȋQDHmоPPnm o-돩'Hjۮ}<Ϣ]xjJ,_[SCsxw'X>tԫ_4:z᥸-m쫤ʷrlh`4L\/}oWq'Y{B=Q聽K5@4Zsr~tnn{ uonZn^0Y=mq7Ë/;g"#s$ &f٦$t֠y21۵]0:8<;`|taN~ n+CǶf3u#*x~'M-Aٷo ejXvFgfHQͩKWB@j]kK_ܱܳ_P&O=fm_jI+w] 3tYn]6"f.1˥<nR<*(ſ4 e$nɴ. O� l@u"].:A&tKS\95}U0_<O ˩Gj]E/@xC odCX/-Iij ]m.fi%S\H>96&'r[sfrbz ]y,U(Lv5S-Ded8LCYO&Tnpk,lىt&]H&d2IOy6eSI'cdN&h"=UȧwO4]p[Ӆy.L.Kc$r$jydx:61q?Ey߰6 a7 HO(G[:$<~!܄qXW>H PX Z6r/0 h[!nq !ggy'9o 2SX}Y4mX 0E+M^XVF$0X^$5/:؃0ZQCb~bN#J%aN 2&onCmGb_prD)aܶWf7b 6CʥJ,9G3a#gA&ul[3^Gb2ǜv ŲMz_'۰z4q=7`;ĜymBX3(_w4$e_J'J/J9ޒޟ5~kU3[.=/K_ KQIzI$WE˥x>/H@Dۥ}-wJ{B˧MƤ#{0דˎHd0 =GJڌ-ElMIc;pdXYK;]:B1~<%|0Ij[<V jLFoTajG ܎3; ?% 3 endstream endobj 123 0 obj << /Type /FontDescriptor /FontName /f3d534+mplus1mn-regular /FontFile2 122 0 R /FontBBox [0 -270 1000 1025] /Flags 4 /StemV 0 /ItalicAngle 0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 124 0 obj << /Length 1278 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }ik/y_!}t~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=n?[i(JKiU:JSz2QeL*EJ̔Ye,*+eU(NU-уk5x5F^ky ^#k5x5F^ky ^#kxZV^kZy-^+kxZV^kZy-^+uxu:N^:y^'uxu:N^:y^'xz^^zy=^/xz^^zy=^/o xo7 Aހ7y o xo7 Aހ7y oxo7jo$JI$$*I$ITH$$QI"IDD%$JI$$*I$ITD$$III$$u>M&Iބ7ɛ&y$o›Mx o7M&Iބ7ɛ&yUoa[5joSor4ۂs�ޮ>,x/x;Â31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x e#e_y+h܊7k:/Z5dUluz5n[eB&Si|y(%q& %+S%*ABijPU6\h,(+L,4G5<cD [˧*t [ jjaijIxʪwgFwضR>sh>:OVRP*#i|e0U,*oU/*[U,Nmlx:&\}M)L2\%CHF7էʻBL)jƻJ1:%H߯:=S۳zrmkO媳7 endstream endobj 125 0 obj [500 500 364 364 364 364 364 364 364 364 364 364 500 364 500 500 364 500 364 364 364 364 364 364 364 364 364 364 500 364 500 364 364 364 364 500 364 364 364 500 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 500 364 500 500 500 364 500 500 500 364 500 500 500 500 500 364 500 364 500 500 500 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj 126 0 obj << /Length1 4560 /Length 2870 /Filter [/FlateDecode] >> stream xW{l[εc'MةӤ v|WH&uQ[vbi +ka)eӠ04*TV!nuh2D5!ԖM:D}s}wϽ�pT{pjs}@( Ńe;�FYuhor HLMūNY CT0* otjfnrN/PG#+>]nD1tC9|L2,}ur};S ;Q߇<M/gX9kLd&W0/ґ" lDG j×P8;gװ'CQ?Sg`L7^e@FBOc)\3$\*DZ.+/)85*}#VDx! cj;i%3\+pxppѡlVl ʠ8L&G,Ƭ@R#J]і-*X\Yv?I``GZ;$6Ic@Ȓ:DTaHw "̱:*y=`f ]Oh7-`xzdE x%cIc>@atzh|(h'eQUQZO۬LfA~0TRn`ȟ䂔y>`ɜȱ:y9fjq?BOpixho'(hN \jGK\HƠOi:7s9,:c6#JnlVe9%@a#/? r s("6Tcz�FTrlӻ_ s]bE`e 9DgPc0&:|g#~v ^pq"+jg"'e jJ.xciRO"G*$Hd If"q06H@+<AJssnk�>E#62@%W8w/B<>k'\~]/[oqOO5 gO p+^:sllKD5:9F O͝(Ny?t)w9ѝO]ձIwdzfU`FKxG/l }7qOG1oOUTP+]vFhXvS^X4%Zqmw{G~"0qlț*jRIWms94ΆBgC.~W} H}cc1U#cyūFp8{gik];y;ϧҼ]ف1ØǷOCӱ8MS^^45\C+Qoln;ltXvjY~ ?SOVbuڝ.A9.I%`F^OlVk;<k#/l}v3M_!ttdp%HTKPϓϓ|?b<A2T9ݐB7ľ{ `ewnZQ-V)vC_x¸3X/#nGI{=7rqZO@o= М /Ul%X�7Vp WPs*|;8|쵂V(lC?w0\E!@ Kkf,Knrm k3,ٟ:sXߟnv~j/<n|~#95_ #o{5hEM+Zh5j5@52멜p߸~So yE&d3߸ګ܇{ܤU=7+`%81Ϫm8[M7e[|щξu/\!o,y_۸b:ҺN֭#MW` ZBsx>VhJ F ]_;ZO_DدЋ8:tփ$ː" MT+ m>Th5Tp ]9AmVY.:P/R]cn[|ߝ\:6ͮ6g60two'ٙ`'$Sjk:ZT"a[_FҙX2A[E=8mS<53A%]fuV,L"r9 'Sh,C9Lr2/4ӑL,F4Ic9M &&l&b!\ael6BcY3Fi2-,'ñX(E 34Fx<ł33s8L\/jaP_.hWwmF c/\,p$`)B0kmHm{`/rЍ>EqH<80AAb9ی]E.z%68_o3i`I٣ErOP=kYS,Z`R"IkiW % ʧ17IWAO #h;qYQs2,M&(mrv0#Rv̎لe߬3ha>"*{OʖH8BU2b6"{qBMW6, 'dobA}#T}2\JJC0};bXSw 'ńOm1eB=g[BJ!Sb@DxP-P&&=AHFzb?kfW[ "1>YNu q<ߊ8y?InjFK%V,o_,/�@ሊI -)%ed)'d1$UDpl-=١noSߩ̷)8-2oost̤"ѦM'9UR(�_ endstream endobj 127 0 obj << /Type /FontDescriptor /FontName /bd0231+mplus1mn-regular /FontFile2 126 0 R /FontBBox [0 -270 1000 1025] /Flags 4 /StemV 0 /ItalicAngle 0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 128 0 obj << /Length 299 /Filter [/FlateDecode] >> stream x]n0 w=t|6@.zn@(W@- 2K2A t!s]{\�IZMuD ryQ8nzVAd<lkvm+t)nrdD D':h~`d.NXEW58m1/s Kgb` JCT~yZ 柫8^3FUmy7bѵe}`,Q KX֬ք>X##'FM0?QVMMY5+�+X‘P{5A]ӗqp,y3, endstream endobj 129 0 obj [500 1000 500 500 500 500 500 500 500 500 1000 500 500 500 500 364 1000 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj xref 0 130 0000000000 65535 f 0000000015 00000 n 0000000254 00000 n 0000000456 00000 n 0000000534 00000 n 0000000585 00000 n 0000000857 00000 n 0000021471 00000 n 0000021832 00000 n 0000022001 00000 n 0000022043 00000 n 0000022092 00000 n 0000022143 00000 n 0000022321 00000 n 0000022496 00000 n 0000022539 00000 n 0000022707 00000 n 0000022875 00000 n 0000023050 00000 n 0000023093 00000 n 0000023137 00000 n 0000023181 00000 n 0000023225 00000 n 0000023269 00000 n 0000028036 00000 n 0000028386 00000 n 0000028430 00000 n 0000028474 00000 n 0000028518 00000 n 0000028562 00000 n 0000028606 00000 n 0000028650 00000 n 0000028694 00000 n 0000028862 00000 n 0000028906 00000 n 0000028950 00000 n 0000028994 00000 n 0000029038 00000 n 0000035106 00000 n 0000035456 00000 n 0000035500 00000 n 0000035543 00000 n 0000035587 00000 n 0000035853 00000 n 0000036129 00000 n 0000036173 00000 n 0000036217 00000 n 0000036261 00000 n 0000036305 00000 n 0000036349 00000 n 0000036392 00000 n 0000042240 00000 n 0000042603 00000 n 0000042647 00000 n 0000042691 00000 n 0000042735 00000 n 0000042779 00000 n 0000043047 00000 n 0000043091 00000 n 0000043266 00000 n 0000043441 00000 n 0000043516 00000 n 0000043678 00000 n 0000043837 00000 n 0000044004 00000 n 0000044240 00000 n 0000044383 00000 n 0000044531 00000 n 0000044683 00000 n 0000044823 00000 n 0000044967 00000 n 0000045107 00000 n 0000045255 00000 n 0000045399 00000 n 0000045543 00000 n 0000045683 00000 n 0000045839 00000 n 0000045995 00000 n 0000046143 00000 n 0000046295 00000 n 0000046439 00000 n 0000046594 00000 n 0000046738 00000 n 0000046898 00000 n 0000047050 00000 n 0000047198 00000 n 0000047346 00000 n 0000047490 00000 n 0000047645 00000 n 0000047793 00000 n 0000047941 00000 n 0000048089 00000 n 0000048232 00000 n 0000048395 00000 n 0000048485 00000 n 0000056801 00000 n 0000057018 00000 n 0000058372 00000 n 0000059286 00000 n 0000066291 00000 n 0000066517 00000 n 0000067872 00000 n 0000068787 00000 n 0000074469 00000 n 0000074693 00000 n 0000076048 00000 n 0000076963 00000 n 0000088916 00000 n 0000089130 00000 n 0000090485 00000 n 0000091401 00000 n 0000111142 00000 n 0000111356 00000 n 0000112590 00000 n 0000113506 00000 n 0000124092 00000 n 0000124308 00000 n 0000125022 00000 n 0000125993 00000 n 0000131313 00000 n 0000131527 00000 n 0000132012 00000 n 0000132927 00000 n 0000136313 00000 n 0000136526 00000 n 0000137881 00000 n 0000138796 00000 n 0000141757 00000 n 0000141970 00000 n 0000142345 00000 n trailer << /Size 130 /Root 2 0 R /Info 1 0 R >> startxref 143263 %%EOF �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/font-i18n-default.pdf�������������������������������������0000664�0000000�0000000�00000350525�14163570564�0024326�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (i18n Font Test) /Creator (Asciidoctor PDF 1.6.0.dev, based on Prawn 2.4.0) /Producer (Asciidoctor PDF 1.6.0.dev, based on Prawn 2.4.0) /ModDate (D:20210509133006-06'00') /CreationDate (D:20210509141652-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 10 0 R /Outlines 59 0 R /PageLabels 92 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 4 /Kids [7 0 R 25 0 R 37 0 R 51 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 7602 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 203.1376 777.054 Td /F2.0 27 Tf [<6931386e2046> 40.0391 <6f6e742054> 29.7852 <657374>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.3608 0.3843 0.4 scn 0.3608 0.3843 0.4 SCN 2.61 Tw BT 48.24 741.886 Td /F4.0 13 Tf [<4772756d70> 20.0195 <792077697a61726473206d616b> 20.0195 <6520746f786963206272657720666f7220746865206576696c20517565656e20616e64204a61636b2e204275742074686579>] TJ ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.3608 0.3843 0.4 scn 0.3608 0.3843 0.4 SCN BT 48.24 719.006 Td /F3.0 13 Tf [<666561726564206e6f742c20666f7220746865792068616420746865206d616e> 20.0195 <7920746f6e67756573206f66204e6f746f205365726966206f6e20746865697220736964652e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 672.314 Td /F2.0 22 Tf <44696163726974696373> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0945 Tw BT 48.24 643.126 Td /F1.0 10.5 Tf <cb20e720e520cc2080208120> Tj /F1.1 10.5 Tf <212022202320242025202620> Tj /F1.0 10.5 Tf <ae20> Tj /F1.1 10.5 Tf <27202820> Tj /F1.0 10.5 Tf <8220> Tj /F1.1 10.5 Tf <29202a202b202c202d202e202f203020312032203320> Tj /F1.0 10.5 Tf <e9208320e620e820> Tj /F1.1 10.5 Tf <3420352036203720382039203a203b203c203d203e203f204020412042204320442045204620> Tj /F1.0 10.5 Tf <ed20ea20eb20ec20> Tj /F1.1 10.5 Tf <47> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.1024 Tw BT 48.24 627.346 Td /F1.1 10.5 Tf <482049204a204b204c204d204e204f2050205120522053205420552056205720> Tj /F1.0 10.5 Tf <8420> Tj /F1.1 10.5 Tf <582059205a205b205c205d205e20> Tj /F1.0 10.5 Tf <f120ee20ef20cd208520> Tj /F1.1 10.5 Tf <5f2060206120> Tj /F1.0 10.5 Tf <af20> Tj /F1.1 10.5 Tf <62206320642065206620> Tj /F1.0 10.5 Tf <ce20> Tj /F1.1 10.5 Tf <6720682069206a206b206c206d206e206f2070207120722073207420752076> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0118 Tw BT 48.24 611.566 Td /F1.1 10.5 Tf <77207820> Tj /F1.0 10.5 Tf <f420f220f3208620> Tj /F1.1 10.5 Tf <79207a207b207c207d207e207f2080208120822083208420852086208720> Tj /F1.0 10.5 Tf <d920> Tj /F1.1 10.5 Tf <882089208a208b208c208d20> Tj /F1.0 10.5 Tf <8820872089208b208a208c20> Tj /F1.1 10.5 Tf <8e208f209020912092209320> Tj /F1.0 10.5 Tf <be20> Tj /F1.1 10.5 Tf <94209520> Tj /F1.0 10.5 Tf <8d20> Tj /F1.1 10.5 Tf <96209720982099209a209b209c209d209e20> Tj /F1.0 10.5 Tf <8f208e2090> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.1137 Tw BT 48.24 595.786 Td /F1.0 10.5 Tf <9120> Tj /F1.1 10.5 Tf <9f20a020a120a220a320a420a520a620a720a820a920aa20ab20ac20ad20ae20af20b020> Tj /F1.0 10.5 Tf <9320922094209520> Tj /F1.1 10.5 Tf <b120b220b320b420b520b620b720b820b920ba20bb20bc20bd20be20bf20c020c120c220c320c420c520> Tj /F1.0 10.5 Tf <9620> Tj /F1.1 10.5 Tf <c620c720c820> Tj /F1.0 10.5 Tf <9820972099209b209a20bf20> Tj /F1.1 10.5 Tf <c920ca20cb20cc20cd20ce20cf20d0> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 580.006 Td /F1.0 10.5 Tf <cf20> Tj /F1.1 10.5 Tf <d120d220d320d420d520d620d720d820d920da20db20dc20dd20> Tj /F1.0 10.5 Tf <a720> Tj /F1.1 10.5 Tf <de20df20e020e120e220> Tj /F1.0 10.5 Tf <9d209c209e209f20> Tj /F1.1 10.5 Tf <e320e420e520e620e720e820e920ea20eb20> Tj /F1.0 10.5 Tf <b520> Tj /F1.1 10.5 Tf <ec20ed20ee20ef20f020f120> Tj /F1.0 10.5 Tf <d820> Tj /F1.1 10.5 Tf <f220f320f420f520f620f720f8> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 535.894 Td /F2.0 22 Tf [<4c697374204d61726b> 20.0195 <657273>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 507.3042 Td /F3.0 9.975 Tf [<477265656b206e756d6572> 20.0195 <6174696f6e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 52.141 487.715 Td /F1.1 10.5 Tf <f9> Tj /F1.0 10.5 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 66.24 487.715 Td /F1.0 10.5 Tf <6f6e65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 52.183 465.935 Td /F1.1 10.5 Tf <fa> Tj /F1.0 10.5 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 66.24 465.935 Td /F1.0 10.5 Tf <74776f> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 53.3598 444.155 Td /F1.1 10.5 Tf [<fb> 80.0781] TJ /F1.0 10.5 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 66.24 444.155 Td /F1.0 10.5 Tf <7468726565> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 416.9732 Td /F3.0 9.975 Tf <436865636b6c697374> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 52.145 397.384 Td /F1.1 10.5 Tf <fc> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 66.24 397.384 Td /F1.0 10.5 Tf [<436865636b> 20.0195 <6564>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.0 Tc -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 52.145 375.604 Td /F1.1 10.5 Tf <fd> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 66.24 375.604 Td /F1.0 10.5 Tf [<556e636865636b> 20.0195 <6564>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 331.492 Td /F2.0 22 Tf [<43686172> 20.0195 <6163746572732042> 20.0195 <79204c616e6775616765>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 290.244 Td /F2.0 18 Tf <42756c67617269616e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 262.224 Td /F1.1 10.5 Tf <feff20> Tj /F1.2 10.5 Tf <21222324252026272829252a2b2c25202d2e2f3031> Tj /F1.0 10.5 Tf <2c20> Tj /F1.2 10.5 Tf <323128333435253620372738393a3b3c203d3c3925> Tj /F1.0 10.5 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 222.384 Td /F2.0 18 Tf <436174616c616e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 194.364 Td /F1.0 10.5 Tf [<c744976e6120616d6f722071756520736572> 20.0195 <88732066656c698d21c82e20416978982c20696ce16c9c7320636f6d70616e> 20.0195 <792067656e699f742c206a61208e7320756e206c6c75957420728f746f6c20626c617692732e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 154.524 Td /F2.0 18 Tf <43726f617469616e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 126.504 Td /F1.0 10.5 Tf <476f6a617a6e6920> Tj /F1.1 10.5 Tf <9a> Tj /F1.0 10.5 Tf <61> Tj /F1.1 10.5 Tf <98> Tj /F1.0 10.5 Tf <69> Tj /F1.1 10.5 Tf <9520> Tj /F1.0 10.5 Tf <7320626963696b6c6f6d206472> Tj /F1.1 10.5 Tf <f7> Tj /F1.0 10.5 Tf <6920686d656c6a20692066696e75207661747520752064> Tj /F1.1 10.5 Tf <f7> Tj /F1.0 10.5 Tf <657075206e6f> Tj /F1.1 10.5 Tf <da> Tj /F1.0 10.5 Tf <6e6a652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 86.664 Td /F2.0 18 Tf <437a656368> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 58.644 Td /F1.0 10.5 Tf <50> Tj /F1.1 10.5 Tf <d4> Tj /F1.0 10.5 Tf <926c69> Tj /F1.1 10.5 Tf <da20f7> Tj /F1.0 10.5 Tf <6c75> Tj /F1.1 10.5 Tf <df> Tj /F1.0 10.5 Tf <6f75> Tj /F1.1 10.5 Tf <98> Tj /F1.0 10.5 Tf <6b> Tj /F1.1 10.5 Tf <f120> Tj /F1.0 10.5 Tf <6b> Tj /F1.1 10.5 Tf <e6c520> Tj /F1.0 10.5 Tf <9c70> Tj /F1.1 10.5 Tf <a3> Tj /F1.0 10.5 Tf <6c20> Tj /F1.1 10.5 Tf <99> Tj /F1.0 10.5 Tf [<8762656c736b> 20.0195 <8e20976479> 89.8438 <2e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 8 0 R /F4.0 12 0 R /F3.0 13 0 R /F1.0 15 0 R /F1.1 16 0 R /F1.2 20 0 R >> >> >> endobj 8 0 obj << /Type /Font /BaseFont /4bd86e+NotoSerif-Bold /Subtype /TrueType /FontDescriptor 94 0 R /FirstChar 32 /LastChar 255 /Widths 96 0 R /ToUnicode 95 0 R >> endobj 9 0 obj [7 0 R /XYZ 0 758.37 null] endobj 10 0 obj << /Type /Names /Dests 11 0 R >> endobj 11 0 obj << /Kids [41 0 R 42 0 R 55 0 R] >> endobj 12 0 obj << /Type /Font /BaseFont /58184e+NotoSerif-BoldItalic /Subtype /TrueType /FontDescriptor 98 0 R /FirstChar 32 /LastChar 255 /Widths 100 0 R /ToUnicode 99 0 R >> endobj 13 0 obj << /Type /Font /BaseFont /fee526+NotoSerif-Italic /Subtype /TrueType /FontDescriptor 102 0 R /FirstChar 32 /LastChar 255 /Widths 104 0 R /ToUnicode 103 0 R >> endobj 14 0 obj [7 0 R /XYZ 0 700.61 null] endobj 15 0 obj << /Type /Font /BaseFont /643632+NotoSerif /Subtype /TrueType /FontDescriptor 106 0 R /FirstChar 32 /LastChar 255 /Widths 108 0 R /ToUnicode 107 0 R >> endobj 16 0 obj << /Type /Font /BaseFont /b60b8e+NotoSerif /Subtype /TrueType /FontDescriptor 110 0 R /FirstChar 32 /LastChar 255 /Widths 112 0 R /ToUnicode 111 0 R >> endobj 17 0 obj [7 0 R /XYZ 0 564.19 null] endobj 18 0 obj [7 0 R /XYZ 0 359.788 null] endobj 19 0 obj [7 0 R /XYZ 0 314.268 null] endobj 20 0 obj << /Type /Font /BaseFont /875e7f+NotoSerif /Subtype /TrueType /FontDescriptor 114 0 R /FirstChar 32 /LastChar 255 /Widths 116 0 R /ToUnicode 115 0 R >> endobj 21 0 obj [7 0 R /XYZ 0 246.408 null] endobj 22 0 obj [7 0 R /XYZ 0 178.548 null] endobj 23 0 obj [7 0 R /XYZ 0 110.688 null] endobj 24 0 obj << /Length 4662 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 786.666 Td /F2.0 18 Tf <44616e697368> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 758.646 Td /F1.0 10.5 Tf [<5175697a64656c74616765726e6520737069737465206a6f726462be72206d656420666cbf64652c206d656e73206369726b75736b6c6f766e656e2057> 49.8047 <616c74686572207370696c6c65646520708c2078796c6f666f6e2e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 718.806 Td /F2.0 18 Tf <4475746368> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 690.786 Td /F1.0 10.5 Tf <4c796e7820632e712e20766f73207072696b742062683a20646167207a77656d6a756621> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 650.946 Td /F2.0 18 Tf <46696e6e697368> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 622.926 Td /F1.0 10.5 Tf [<416c62657274206f737469206661676f74696e206a6120749a72> 20.0195 <8a> 20.0195 <79747469207075686b7576616e206d656c6f6469616e2e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 583.086 Td /F2.0 18 Tf <4672656e6368> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 555.066 Td /F1.0 10.5 Tf [<56> 60.0586 <6f> 20.0195 <79657a206c6520627269636b20678e616e7420717565206ad56578616d696e652070728f732064752077686172662e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 515.226 Td /F2.0 18 Tf <4765726d616e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 487.206 Td /F1.0 10.5 Tf [<566963746f72206a616774207a779a6c6620426f786b8a6d706665722071756572209f6265722064656e2067726fa7656e2053> 20.0195 <796c7465722044656963682e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 447.366 Td /F2.0 18 Tf <477265656b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 419.346 Td /F1.2 10.5 Tf [<3e> 29.7852 <3f404142434420>] TJ /F1.1 10.5 Tf <f9> Tj /F1.2 10.5 Tf <4546> Tj /F1.0 10.5 Tf <b9> Tj /F1.2 10.5 Tf <444720> Tj /F1.1 10.5 Tf <faf9> Tj /F1.2 10.5 Tf <48494a204b44> Tj /F1.1 10.5 Tf <ec> Tj /F1.2 10.5 Tf <4c4d4420> Tj /F1.1 10.5 Tf <fb> Tj /F1.2 10.5 Tf <44> Tj /F1.0 10.5 Tf <2c20> Tj /F1.2 10.5 Tf <4e4f> Tj /F1.1 10.5 Tf <f9> Tj /F1.2 10.5 Tf [<4250> 20.0195 <5145525351412054>] TJ /F1.0 10.5 Tf <b9> Tj /F1.2 10.5 Tf <4c4f204d55564f57582050544d594a> Tj /F1.0 10.5 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 379.506 Td /F2.0 18 Tf <48756e67617269616e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 351.486 Td /F1.0 10.5 Tf <e77276927a74> Tj /F1.1 10.5 Tf <e7> Tj /F1.0 10.5 Tf <72> Tj /F1.1 10.5 Tf <cb20> Tj /F1.0 10.5 Tf [<749f6b> 20.0195 <9a72669c7297678e702e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 311.646 Td /F2.0 18 Tf <4963656c616e646963> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 283.626 Td /F1.0 10.5 Tf [<4bbe6d69206e> 20.0195] TJ /F1.1 10.5 Tf <f120> Tj /F1.0 10.5 Tf <9a786920688e722c20796b69737420> Tj /F1.1 10.5 Tf <d1> Tj /F1.0 10.5 Tf <6a9766756d206e9c2062be> Tj /F1.1 10.5 Tf <9b> Tj /F1.0 10.5 Tf <692076926c206f67208764726570612e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 243.786 Td /F2.0 18 Tf <4974616c69616e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 215.766 Td /F1.0 10.5 Tf <496e207175656c2063616d706f2073692074726f76616e2066756e67686920696e206162626f6e64616e7a612e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 175.926 Td /F2.0 18 Tf <4a6170616e657365> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 147.906 Td /F1.2 10.5 Tf <5a5b5c5d5e5f60> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 132.126 Td /F1.2 10.5 Tf <6162636465> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 116.346 Td /F1.2 10.5 Tf <666768696a6b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 100.566 Td /F1.2 10.5 Tf <6c6d6e6f70> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 84.786 Td /F1.2 10.5 Tf <71727374757677> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 69.006 Td /F1.2 10.5 Tf <78797a7b7c> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 53.226 Td /F1.2 10.5 Tf <7d7e7f80818283> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 25 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 24 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 8 0 R /F1.0 15 0 R /F1.2 20 0 R /F1.1 16 0 R >> >> >> endobj 26 0 obj [25 0 R /XYZ 0 841.89 null] endobj 27 0 obj [25 0 R /XYZ 0 742.83 null] endobj 28 0 obj [25 0 R /XYZ 0 674.97 null] endobj 29 0 obj [25 0 R /XYZ 0 607.11 null] endobj 30 0 obj [25 0 R /XYZ 0 539.25 null] endobj 31 0 obj [25 0 R /XYZ 0 471.39 null] endobj 32 0 obj [25 0 R /XYZ 0 403.53 null] endobj 33 0 obj [25 0 R /XYZ 0 335.67 null] endobj 34 0 obj [25 0 R /XYZ 0 267.81 null] endobj 35 0 obj [25 0 R /XYZ 0 199.95 null] endobj 36 0 obj << /Length 5150 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 794.676 Td /F1.2 10.5 Tf <8485868788> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 754.836 Td /F2.0 18 Tf [<4b> 20.0195 <6f7265616e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 726.816 Td /F1.2 10.5 Tf <898a8b208c8d8e8f9020919293942095969720988c20999a9b209c9290209d9e9f20a0a1> Tj /F1.0 10.5 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 686.976 Td /F2.0 18 Tf <4e6f7277656769616e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 658.956 Td /F1.0 10.5 Tf <4a656720626567796e7465208c20666f7274be726520656e2073616e6477696368206d656e73206a6567206b6abf727465207461786920708c207665692074696c207175697a2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 619.116 Td /F2.0 18 Tf <506f6c697368> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 591.096 Td /F1.0 10.5 Tf <50976a64> Tj /F1.1 10.5 Tf <f5f6> Tj /F1.0 10.5 Tf <652c206b69> Tj /F1.1 10.5 Tf <c220> Tj /F1.0 10.5 Tf <74> Tj /F1.1 10.5 Tf <a220> Tj /F1.0 10.5 Tf <63686d75726e6f> Tj /F1.1 10.5 Tf <d89520> Tj /F1.0 10.5 Tf <772067> Tj /F1.1 10.5 Tf <c090> Tj /F1.0 10.5 Tf <6220666c61737a7921> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 551.256 Td /F2.0 18 Tf <506f7274756775657365> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 1.791 Tw BT 48.24 523.236 Td /F1.0 10.5 Tf [<cb206e6f6974652c20766f7699204b> 20.0195 <6f77616c736b79207690206f20926d8b2063616972206e6f20708e20646f2070696e679f696d2071756569786f736f206520766f769720709b6520618d9c636172206e6f20636887206465>] TJ ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 507.456 Td /F1.0 10.5 Tf [<74896d6172> 20.0195 <617320646f206a61627574692066656c697a2e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 467.616 Td /F2.0 18 Tf <526f6d616e69616e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 439.596 Td /F1.0 10.5 Tf [<42896e6420776869736b79> 89.8438 <2c206a617a6f6c6f67756c20>] TJ /F1.1 10.5 Tf <db> Tj /F1.0 10.5 Tf <707269> Tj /F1.1 10.5 Tf <e0> Tj /F1.0 10.5 Tf <75697420766f6d> Tj /F1.1 10.5 Tf <8f20> Tj /F1.0 10.5 Tf <66697820946e2074657175696c612e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 399.756 Td /F2.0 18 Tf <5275737369616e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 371.736 Td /F1.2 10.5 Tf [<a2272e3430203d> 20.0195 <2e202e3ba320a4393c>] TJ /F1.1 10.5 Tf <ff20> Tj /F1.2 10.5 Tf <2f3a292c3c> Tj /F1.1 10.5 Tf <ff20> Tj /F1.2 10.5 Tf <382a252437222d2b2c3c> Tj /F1.1 10.5 Tf <ff20> Tj /F1.2 10.5 Tf <262228312c> Tj /F1.0 10.5 Tf <2c20> Tj /F1.2 10.5 Tf <23252035a5322e3620212533> Tj /F1.0 10.5 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 331.896 Td /F2.0 18 Tf <5365726269616e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 303.876 Td /F1.0 10.5 Tf <476f6a617a6e6920> Tj /F1.1 10.5 Tf <9a> Tj /F1.0 10.5 Tf <61> Tj /F1.1 10.5 Tf <98> Tj /F1.0 10.5 Tf <69> Tj /F1.1 10.5 Tf <9520> Tj /F1.0 10.5 Tf <7320626963696b6c6f6d206472> Tj /F1.1 10.5 Tf <f7> Tj /F1.0 10.5 Tf <6920686d656c6a20692066696e75207661747520752064> Tj /F1.1 10.5 Tf <f7> Tj /F1.0 10.5 Tf <657075206e6f> Tj /F1.1 10.5 Tf <da> Tj /F1.0 10.5 Tf <6e6a652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 264.036 Td /F2.0 18 Tf <536c6f76616b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 236.016 Td /F1.0 10.5 Tf <4b> Tj /F1.1 10.5 Tf <d2> Tj /F1.0 10.5 Tf <6465> Tj /F1.1 10.5 Tf <be2099> Tj /F1.0 10.5 Tf <6174> Tj /F1.1 10.5 Tf <be> Tj /F1.0 10.5 Tf <6f762075> Tj /F1.1 10.5 Tf <98> Tj /F1.0 10.5 Tf [<92206b> 20.0195 <6f>] TJ /F1.1 10.5 Tf <c5> Tj /F1.0 10.5 Tf <6120> Tj /F1.1 10.5 Tf <f7> Tj /F1.0 10.5 Tf [<72> 20.0195 <61>] TJ /F1.1 10.5 Tf <df20> Tj /F1.0 10.5 Tf [<6b> 20.0195 <9972752e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 196.176 Td /F2.0 18 Tf <536c6f76656e69616e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 168.156 Td /F1.1 10.5 Tf <70> Tj /F1.0 10.5 Tf <6572696620626f207a612076616a6f2073706574206b7568616c20646f6d61> Tj /F1.1 10.5 Tf <98> Tj /F1.0 10.5 Tf <6520> Tj /F1.1 10.5 Tf <f7> Tj /F1.0 10.5 Tf <67616e63652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 128.316 Td /F2.0 18 Tf <5370616e697368> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 100.296 Td /F1.0 10.5 Tf <42656e6a616d926e20706964699720756e6120626562696461206465206b69776920792066726573612e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 72.516 Td /F1.0 10.5 Tf <4a6f76656e63696c6c6f20656d706f6e7a6f9661646f20646520776869736b793a20c171758e2066696775726f74612065786869626521> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 37 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 36 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.2 20 0 R /F2.0 8 0 R /F1.0 15 0 R /F1.1 16 0 R >> >> >> endobj 38 0 obj [37 0 R /XYZ 0 778.86 null] endobj 39 0 obj [37 0 R /XYZ 0 711 null] endobj 40 0 obj [37 0 R /XYZ 0 643.14 null] endobj 41 0 obj << /Limits [(__anchor-top) (_finnish)] /Names [(__anchor-top) 9 0 R (_bulgarian) 19 0 R (_catalan) 21 0 R (_characters_by_language) 18 0 R (_croatian) 22 0 R (_czech) 23 0 R (_danish) 26 0 R (_diacritics) 14 0 R (_dutch) 27 0 R (_finnish) 28 0 R] >> endobj 42 0 obj << /Limits [(_french) (_norwegian)] /Names [(_french) 29 0 R (_german) 30 0 R (_greek) 31 0 R (_hungarian) 32 0 R (_icelandic) 33 0 R (_italian) 34 0 R (_japanese) 35 0 R (_korean) 38 0 R (_list_markers) 17 0 R (_monospace_text) 56 0 R (_norwegian) 39 0 R] >> endobj 43 0 obj [37 0 R /XYZ 0 575.28 null] endobj 44 0 obj [37 0 R /XYZ 0 491.64 null] endobj 45 0 obj [37 0 R /XYZ 0 423.78 null] endobj 46 0 obj [37 0 R /XYZ 0 355.92 null] endobj 47 0 obj [37 0 R /XYZ 0 288.06 null] endobj 48 0 obj [37 0 R /XYZ 0 220.2 null] endobj 49 0 obj [37 0 R /XYZ 0 152.34 null] endobj 50 0 obj << /Length 5182 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 786.666 Td /F2.0 18 Tf [<53> 9.7656 <776564697368>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 758.646 Td /F1.0 10.5 Tf [<42> 20.0195 <7978666a8a726d617420669a6c206769636b20708c2064757673686f77656e2e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 718.806 Td /F2.0 18 Tf <5475726b697368> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 690.786 Td /F1.0 10.5 Tf [<536166207665206861> 20.0195 <79647574206bf57a208d6f6375>] TJ /F1.1 10.5 Tf <ab> Tj /F1.0 10.5 Tf <752062696e20706c616a20679a726d9f> Tj /F1.1 10.5 Tf <dc> Tj /F1.0 10.5 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 650.946 Td /F2.0 18 Tf [<556b72> 20.0195 <61696e69616e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 622.926 Td /F1.2 10.5 Tf <a622a73420a8> Tj /F1.1 10.5 Tf <ff> Tj /F1.0 10.5 Tf <2c20> Tj /F1.2 10.5 Tf <23313733> Tj /F1.0 10.5 Tf <2c20> Tj /F1.2 10.5 Tf <2925> Tj /F1.0 10.5 Tf <3f> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 578.814 Td /F2.0 22 Tf [<4d6f6e6f73706163652054> 29.7852 <657874>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.9608 0.9608 0.9608 scn 52.24 561.59 m 543.04 561.59 l 545.2491 561.59 547.04 559.7991 547.04 557.59 c 547.04 499.37 l 547.04 497.1609 545.2491 495.37 543.04 495.37 c 52.24 495.37 l 50.0309 495.37 48.24 497.1609 48.24 499.37 c 48.24 557.59 l 48.24 559.7991 50.0309 561.59 52.24 561.59 c h f 0.8 0.8 0.8 SCN 0.75 w 52.24 561.59 m 543.04 561.59 l 545.2491 561.59 547.04 559.7991 547.04 557.59 c 547.04 499.37 l 547.04 497.1609 545.2491 495.37 543.04 495.37 c 52.24 495.37 l 50.0309 495.37 48.24 497.1609 48.24 499.37 c 48.24 557.59 l 48.24 559.7991 50.0309 561.59 52.24 561.59 c h S Q 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 538.765 Td /F5.0 11 Tf <3c68313e48656a20768a726c64656e213c2f68313e20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 180.24 538.765 Td /F5.1 11 Tf <21> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 524.025 Td /F5.0 11 Tf <3c703e> Tj /F5.1 11 Tf <222324252627> Tj /F5.0 11 Tf <2c20> Tj /F5.1 11 Tf <282923> Tj /F5.0 11 Tf <213c2f703e20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 169.24 524.025 Td /F5.1 11 Tf <2a> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 509.285 Td /F5.0 11 Tf <3c703e436f6d707574652074686520> Tj /F5.1 11 Tf <2b20> Tj /F5.0 11 Tf <66726f6d20> Tj /F5.1 11 Tf <2c20> Tj /F5.0 11 Tf <746f20> Tj /F5.1 11 Tf <2d20> Tj /F5.0 11 Tf <696e20> Tj /F5.1 11 Tf <2e> Tj /F5.0 11 Tf <2c206e6f7420> Tj /F5.1 11 Tf <2f> Tj /F5.0 11 Tf <2e3c2f703e20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 310.744 509.285 Td /F5.1 11 Tf <30> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 50.865 477.645 Td /F5.1 10.5 Tf <21> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 63.99 477.406 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 63.99 477.406 Td /F5.0 10.5 Tf <48656a20768a726c64656e21> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 126.99 477.406 Td /F1.0 10.5 Tf [<2069732053> 9.7656 <77656469736820666f7220>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 202.267 477.406 Td /F5.0 10.5 Tf <48656c6c6f2c20576f726c6421> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 270.517 477.406 Td /F1.0 10.5 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 50.865 455.865 Td /F5.1 10.5 Tf <2a> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 63.99 455.626 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 63.99 455.626 Td /F5.1 10.5 Tf <222324252627> Tj /F5.0 10.5 Tf <2c20> Tj /F5.1 10.5 Tf <282923> Tj /F5.0 10.5 Tf <21> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 126.99 455.626 Td /F1.0 10.5 Tf <206973205275737369616e20666f7220> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 199.86 455.626 Td /F5.0 10.5 Tf <476f6f646279652c20576f726c6421> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 278.61 455.626 Td /F1.0 10.5 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 50.865 434.085 Td /F5.1 10.5 Tf <30> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 63.99 433.846 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN BT 63.99 433.846 Td /F5.1 10.5 Tf <2b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 69.24 433.846 Td /F1.0 10.5 Tf <2069732074686520477265656b2073796d626f6c20666f722064656c74612e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 51 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 50 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 8 0 R /F1.0 15 0 R /F1.1 16 0 R /F1.2 20 0 R /F5.0 57 0 R /F5.1 58 0 R >> >> >> endobj 52 0 obj [51 0 R /XYZ 0 841.89 null] endobj 53 0 obj [51 0 R /XYZ 0 742.83 null] endobj 54 0 obj [51 0 R /XYZ 0 674.97 null] endobj 55 0 obj << /Limits [(_polish) (_ukrainian)] /Names [(_polish) 40 0 R (_portuguese) 43 0 R (_romanian) 44 0 R (_russian) 45 0 R (_serbian) 46 0 R (_slovak) 47 0 R (_slovenian) 48 0 R (_spanish) 49 0 R (_swedish) 52 0 R (_turkish) 53 0 R (_ukrainian) 54 0 R] >> endobj 56 0 obj [51 0 R /XYZ 0 607.11 null] endobj 57 0 obj << /Type /Font /BaseFont /f3d534+mplus1mn-regular /Subtype /TrueType /FontDescriptor 118 0 R /FirstChar 32 /LastChar 255 /Widths 120 0 R /ToUnicode 119 0 R >> endobj 58 0 obj << /Type /Font /BaseFont /bd0231+mplus1mn-regular /Subtype /TrueType /FontDescriptor 122 0 R /FirstChar 32 /LastChar 255 /Widths 124 0 R /ToUnicode 123 0 R >> endobj 59 0 obj << /Type /Outlines /Count 32 /First 60 0 R /Last 91 0 R >> endobj 60 0 obj << /Title <feff006900310038006e00200046006f006e007400200054006500730074> /Parent 59 0 R /Count 0 /Next 61 0 R /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 61 0 obj << /Title <feff0044006900610063007200690074006900630073> /Parent 59 0 R /Count 0 /Next 62 0 R /Prev 60 0 R /Dest [7 0 R /XYZ 0 700.61 null] >> endobj 62 0 obj << /Title <feff004c0069007300740020004d00610072006b006500720073> /Parent 59 0 R /Count 0 /Next 63 0 R /Prev 61 0 R /Dest [7 0 R /XYZ 0 564.19 null] >> endobj 63 0 obj << /Title <feff00430068006100720061006300740065007200730020004200790020004c0061006e00670075006100670065> /Parent 59 0 R /Count 27 /First 64 0 R /Last 90 0 R /Next 91 0 R /Prev 62 0 R /Dest [7 0 R /XYZ 0 359.788 null] >> endobj 64 0 obj << /Title <feff00420075006c00670061007200690061006e> /Parent 63 0 R /Count 0 /Next 65 0 R /Dest [7 0 R /XYZ 0 314.268 null] >> endobj 65 0 obj << /Title <feff0043006100740061006c0061006e> /Parent 63 0 R /Count 0 /Next 66 0 R /Prev 64 0 R /Dest [7 0 R /XYZ 0 246.408 null] >> endobj 66 0 obj << /Title <feff00430072006f0061007400690061006e> /Parent 63 0 R /Count 0 /Next 67 0 R /Prev 65 0 R /Dest [7 0 R /XYZ 0 178.548 null] >> endobj 67 0 obj << /Title <feff0043007a006500630068> /Parent 63 0 R /Count 0 /Next 68 0 R /Prev 66 0 R /Dest [7 0 R /XYZ 0 110.688 null] >> endobj 68 0 obj << /Title <feff00440061006e006900730068> /Parent 63 0 R /Count 0 /Next 69 0 R /Prev 67 0 R /Dest [25 0 R /XYZ 0 841.89 null] >> endobj 69 0 obj << /Title <feff00440075007400630068> /Parent 63 0 R /Count 0 /Next 70 0 R /Prev 68 0 R /Dest [25 0 R /XYZ 0 742.83 null] >> endobj 70 0 obj << /Title <feff00460069006e006e006900730068> /Parent 63 0 R /Count 0 /Next 71 0 R /Prev 69 0 R /Dest [25 0 R /XYZ 0 674.97 null] >> endobj 71 0 obj << /Title <feff004600720065006e00630068> /Parent 63 0 R /Count 0 /Next 72 0 R /Prev 70 0 R /Dest [25 0 R /XYZ 0 607.11 null] >> endobj 72 0 obj << /Title <feff004700650072006d0061006e> /Parent 63 0 R /Count 0 /Next 73 0 R /Prev 71 0 R /Dest [25 0 R /XYZ 0 539.25 null] >> endobj 73 0 obj << /Title <feff0047007200650065006b> /Parent 63 0 R /Count 0 /Next 74 0 R /Prev 72 0 R /Dest [25 0 R /XYZ 0 471.39 null] >> endobj 74 0 obj << /Title <feff00480075006e00670061007200690061006e> /Parent 63 0 R /Count 0 /Next 75 0 R /Prev 73 0 R /Dest [25 0 R /XYZ 0 403.53 null] >> endobj 75 0 obj << /Title <feff004900630065006c0061006e006400690063> /Parent 63 0 R /Count 0 /Next 76 0 R /Prev 74 0 R /Dest [25 0 R /XYZ 0 335.67 null] >> endobj 76 0 obj << /Title <feff004900740061006c00690061006e> /Parent 63 0 R /Count 0 /Next 77 0 R /Prev 75 0 R /Dest [25 0 R /XYZ 0 267.81 null] >> endobj 77 0 obj << /Title <feff004a006100700061006e006500730065> /Parent 63 0 R /Count 0 /Next 78 0 R /Prev 76 0 R /Dest [25 0 R /XYZ 0 199.95 null] >> endobj 78 0 obj << /Title <feff004b006f007200650061006e> /Parent 63 0 R /Count 0 /Next 79 0 R /Prev 77 0 R /Dest [37 0 R /XYZ 0 778.86 null] >> endobj 79 0 obj << /Title <feff004e006f007200770065006700690061006e> /Parent 63 0 R /Count 0 /Next 80 0 R /Prev 78 0 R /Dest [37 0 R /XYZ 0 711 null] >> endobj 80 0 obj << /Title <feff0050006f006c006900730068> /Parent 63 0 R /Count 0 /Next 81 0 R /Prev 79 0 R /Dest [37 0 R /XYZ 0 643.14 null] >> endobj 81 0 obj << /Title <feff0050006f00720074007500670075006500730065> /Parent 63 0 R /Count 0 /Next 82 0 R /Prev 80 0 R /Dest [37 0 R /XYZ 0 575.28 null] >> endobj 82 0 obj << /Title <feff0052006f006d0061006e00690061006e> /Parent 63 0 R /Count 0 /Next 83 0 R /Prev 81 0 R /Dest [37 0 R /XYZ 0 491.64 null] >> endobj 83 0 obj << /Title <feff005200750073007300690061006e> /Parent 63 0 R /Count 0 /Next 84 0 R /Prev 82 0 R /Dest [37 0 R /XYZ 0 423.78 null] >> endobj 84 0 obj << /Title <feff005300650072006200690061006e> /Parent 63 0 R /Count 0 /Next 85 0 R /Prev 83 0 R /Dest [37 0 R /XYZ 0 355.92 null] >> endobj 85 0 obj << /Title <feff0053006c006f00760061006b> /Parent 63 0 R /Count 0 /Next 86 0 R /Prev 84 0 R /Dest [37 0 R /XYZ 0 288.06 null] >> endobj 86 0 obj << /Title <feff0053006c006f00760065006e00690061006e> /Parent 63 0 R /Count 0 /Next 87 0 R /Prev 85 0 R /Dest [37 0 R /XYZ 0 220.2 null] >> endobj 87 0 obj << /Title <feff005300700061006e006900730068> /Parent 63 0 R /Count 0 /Next 88 0 R /Prev 86 0 R /Dest [37 0 R /XYZ 0 152.34 null] >> endobj 88 0 obj << /Title <feff0053007700650064006900730068> /Parent 63 0 R /Count 0 /Next 89 0 R /Prev 87 0 R /Dest [51 0 R /XYZ 0 841.89 null] >> endobj 89 0 obj << /Title <feff005400750072006b006900730068> /Parent 63 0 R /Count 0 /Next 90 0 R /Prev 88 0 R /Dest [51 0 R /XYZ 0 742.83 null] >> endobj 90 0 obj << /Title <feff0055006b007200610069006e00690061006e> /Parent 63 0 R /Count 0 /Prev 89 0 R /Dest [51 0 R /XYZ 0 674.97 null] >> endobj 91 0 obj << /Title <feff004d006f006e006f0073007000610063006500200054006500780074> /Parent 59 0 R /Count 0 /Prev 63 0 R /Dest [51 0 R /XYZ 0 607.11 null] >> endobj 92 0 obj << /Nums [0 << /P (1) >> 1 << /P (2) >> 2 << /P (3) >> 3 << /P (4) >>] >> endobj 93 0 obj << /Length1 13180 /Length 8225 /Filter [/FlateDecode] >> stream x{ x[EfսW/ölJגle[e[-;ێD%?r,9$p$i,2 }dfv2,KMa:= e-Wrb�W:uԩ:U8#>D"oW춺c*pA[@x"X}Р�xc3W B Yg}1ГPDhǝPܶ `ݠL#Y ThwPyW=Bysw q 6(Ӿ`_#Tl3p;PٗPl`&xb/ 6 v8}kBB^<R ~?-Gc3""/h'<嫂g8M/#1g m@P( " #<+7_H"jfՊhAxЉ:wE7+޻ u</yN>("+PrwkP1ZS UH^WSDüRPvV 7bx[[T" W@ud2�z!{ <SO5HˡG1HQZwk Ga(9%5-%Y%/ɳsP"+UZN_XTl\אgsㆎvw[kh*JK,fP0*[!NOKM% |E]LQJǴ2oղV&J{91z$I:⒎kXLעZv1tM'C_{<@u2Ctsє+BA+{IGvE[vM̻Nw6Y4D&#:+J2h!3sc ]g $LeZ zdtG'W9Q~sT'Ya#hkH3~߰'J<隟?0DgeQ#tE ֎kt\GyZ1C`8短Vbw~[ FZ̟MIq¨.,aEPTՉvDzx RZj@�ZBt_'^шrX CQּR#`k\ke}(u`|7u#}P3te*t� Z�"m2/ i__+]F&]ŀVqy]٠6m=Q/# yEN}Q 30MɚpM͢(,VQLs=<y瑡 byY?:[N+ΊѐU,kԹ=ʫì= u1*O` J@#0MY%=}LGfOexҺ֩a<ϨP+=A10 ZxFZ!bpeú`Z3E+Lȱ5Jyl5hEܦPH@5ZYTZ#@ bqfQ=Lb&訣ÎH ? ) `Bj^)`F[ F[bۺjJ5=/d:YLB!3vo 78t<3}Zglvŭl_w72`Y>ط6=L4{@K\hjꅂW@hWKq <z#'\a4z+<xTx^ʞ�!׻h?ۆ&Cl# 8z�? ~JTLo` q> 2 ΋]W&X3X <p8 8y>1< txZg7#{y .c2u/ /]Z^"ӗ_"./F}7:D$'Pp -wet$n% /| o#᪗uPn5'x/M"\ }٠Wop*ZVYlBx?X.[?.[8]xkᣅ?-.,܂(d_%M<2&;>Ŀ&U{<g_>O>w칗JQQ!O= 䣡G/>J?zCd:k_:y$=z哤$x'qmljqGБ#D#w\=P*>Xdɘc{pC�e[~^5s`^ IoRm"3ɶ}<b@fd5}�XաB?MN4_LN^,(}2}C2,Ղ-Q|0cQ(ؼs=z5wD 9x:~6K> gei(G ܅ Fq& 9#ss[x++f}ٲ% po8'2gq<a.AR ' 9罹vJ\t?Bn3&.c=z>^|u>;\_ޠ6^i[w_m%f}}bQB|L'[%lM\D;.wKG\$@v%| DPP!pB\$# lgD'&^Y޹<-:|Z9,ĝx vauRGQ]G<˻Ow`}apZx"HL:;Qh(*"ٖ`Ք},<QI:d3v_!݋O/OPpCE +R#di$1dfHD T.7Erԩr tʹc=$yd0UiSDIgJZXʵߔe XPU%mFqeJB*I#J}}̈́> XJ" HFF3tot=S5m׷9Ѷx}/ƽKSkQ |Sj)n4+{m:皶orkZD{wg֍MjӖ`G~sn,im.UzlzJhh*bK+Y U$Ȍj�Hv Rv$TNp51.C#mխs_/MyzY?1 ni[Ȯzm[Ujwy(a-x#Wn$)%O=eTgGveeku˟ BZޮq t`J`*ɱaW8<usgq3TAoOqLe&,װ|u,3XֱLXzĉwvpe0(F2Jy熟- uybqN6H~h̻“_?8&M ]}kM? _as30#Dt3 bD?ObyKA.?;Qu=mKv|`PSZH~;79l-3ulRɑᑗ}/8G ƙS&_m(hoS(Tfe-_JB^Ph/ OzBluLMcQX4#2"az]9.K>aQY4#O',qe뤃kPAY<kRF+|ő<>\kapfblV]S7*&y:91(ӳ^U@M⃸nPFMcV]Fq-қڌbnYo:0Ko!n72vz\ǀЇ +I0ǂܭ6)RCqG[KA |^YNwrbmat0,ePMLUQݾ=0_4ADU\Aw[cgS+4+SWwu r-R@ ֝DZ4}ݲ鑘Az,b$;FǺʂj fT7EȐr_4C#>O `l:4yzҧק~x;>/L&W<c-:s%!J+;Բj>tLKPz;dys=\Za{JQMQOߵ1vfxN{p.=ZQ!d_qxJ<zYsYU38^/2<_<|hl-dnɫ:C} =wlmƆ EY*ZlBױsʥhbs0f q; 3z:)"BȢo3ڤ)sp /L<\հA^WSn:<ޱ6sISc)q5ocS\7F*KZ͆ nwa'w5qKfm|Ү7kc:fY γ0Y/6볨djQt(כOq=ШVً֦{56K k{WŪn_x_ݿ7Cŷ{98qӳu֙w|V>I2 6 ;DQj`^[idkFws+Qg{rE{#VbLv^_AnxaK+cw25΁jܦ0׊K=WTWwkzJ;*{K_WӂG nz ˀ<hX r/cv|} �uɾXwc,*'-Ҩ5֨cIQi'm1D") lLf6?)+-cPbOЃ:e8:qj{|"oggiռ$Ol} G׌w~;{gM2s;$uoWLe`x%TǤ[ݍEV7 `eAףȭ::d6a5g5۷?2Z}SG40IbV#Ɵ/}]S*Y&EKR|ɒ|?QWLj+v[sS ;W0O30bPrX$9dd�drzcy:w[ӒԻFL{GOw6h^Lpc?n­'f3e<*&vR>4v%"ĝd5xř4i{٬e28Eqz;Y" 13M]U*K'K ұHhTT4puv_|~߁<[qдN_}9ܡڵY޾?C[aNMSۊ m4ARJ˒ӄ[n c t6tϹ?pdz.96Uh+,rqUXsohs34,xaag"X#mרU75i;P V-nz\[Y)5Sm7Ze񹙩run*c9CS'[ ݆|6*+TiQB8{pXo6V7ޓ1mI#/Yn#kߒkLUX$?h,9Ր0-P.^=d22J 3raM4kOpI8UN5\ p=^1V̓<<]x7w*sH$0ڭzN,M D;jZ_ynu-c{:vN RmVk^MbȠؐsa!h[s$aH6 ?qqmݷe%f4X{s �",=`@Գ} {YwĂ+čUc_;wb+G?D.=�vs'q1Ri^?o}:!7N=r/ޚ{ɈZ1ƹ-{,xfjLpi}Ivn) 7j+*CʺSJW`\vZg#KI2XzjNm&{ 7Xe%qn|h(Pˮݱ;k=M%GuĻG:,& }48v?oq*Ԅ5CJLRGXwLu<NJD- gޖ$S)BK^]|2zN;eUmc&{^^|h3`nN:5j4)Ʝ9վL 'F} }3[u&ENT3g=#)pxeudXNi*,ƾ[{ 6'j)-R]h?\ ^ )߻lvibsT@fJ~d݅nZlw\3ŏ4MTOc~ldtz嚦C#Ko-*`PinM 1M"U[VRZSiI]hS%iA2おF&J:%4ӴnÇL Apɚ+&zl0$3pu>lYJ =KԬ!{ERJ{7E,j=*m*PVL'RML ~P)]@)ɈxOyLͫv,/ l5}J1pg+#A۳/#yIfW~'Wi(ű~/39WcT .A)NIKTq]F %` PԒIgAƚQ"}loʵ7`w VJrk"ضsDִ'a3~,T^=U%|^b)SM.b)/Vݟ]/]V0- crf} qmv0o-bw֔)ٴAy߹\  *t؎m6HbYHudNUG  OF x`$ko"*\-zBeή.mupGfC9SB9VJg굚tI ROvR40y{l6C=LʔaI7[ VTjh"/7p1m fF^9J1ʠ&-ñw,9eOYzpfa)vܞ &\8 Z#9DPPU&vqui[4HnM?A 6A'-Bf~NF*,W}JOЩt%%b3V&h ɼM"'Y)$'4e�dKpr!gNBTJa<A'zjņTKKN%t*<=;9>JJPh|*@GtV@80+7w"!/0;9o M"g@>MuXW ̆'CtV>⯴ '`&?}td};j30;5a\8Hdb\gP2X@8dYUL4‘9dLn MGXflh`: }Mtd"@7]3K2d82;92A7MkhwnjsM~zScoocgGw]NwJ-tct$3Kn th LMPm+=$<|sqL`68f_+vfYws PW)shvղ5A,DhE Q !O�0GaҐGCk\)��O?HvB4 \c A[?i~7XD>7 q(ྑxa=0&3̶$gHMa�^vc ~tr8ȱVCmpLp:" ʳ<.k4G͜" S ݂n>f>23Y  kIhuu_ύEpb5?L{\y'nwh0F1Pʡc{G" :}S{l6rqvlfˍ0_z e7rqmCÜkx] 7:;au8:\@f0g,7 pYW1W0 Ik3?Vsܜb0ap?An,L^.ٵxs s 5gxu|Ŭgg<fl7;qg߀ρ1v$H6NFcfT+cG9hmh_n�_vn7-hݔؑ *+ endstream endobj 94 0 obj << /Type /FontDescriptor /FontName /4bd86e+NotoSerif-Bold /FontFile2 93 0 R /FontBBox [-212 -250 1306 1058] /Flags 6 /StemV 0 /ItalicAngle 0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 95 0 obj << /Length 1278 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }ik/y_!}t~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=n?[i(JKiU:JSz2QeL*EJ̔Ye,*+eU(NU-уk5x5F^ky ^#k5x5F^ky ^#kxZV^kZy-^+kxZV^kZy-^+uxu:N^:y^'uxu:N^:y^'xz^^zy=^/xz^^zy=^/o xo7 Aހ7y o xo7 Aހ7y oxo7jo$JI$$*I$ITH$$QI"IDD%$JI$$*I$ITD$$III$$u>M&Iބ7ɛ&y$o›Mx o7M&Iބ7ɛ&yUoa[5joSor4ۂs�ޮ>,x/x;Â31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x e#e_y+h܊7k:/Z5dUluz5n[eB&Si|y(%q& %+S%*ABijPU6\h,(+L,4G5<cD [˧*t [ jjaijIxʪwgFwضR>sh>:OVRP*#i|e0U,*oU/*[U,Nmlx:&\}M)L2\%CHF7էʻBL)jƻJ1:%H߯:=S۳zrmkO媳7 endstream endobj 96 0 obj [259 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 559 600 600 600 600 600 600 559 600 600 600 600 600 600 600 600 600 671 667 767 600 621 769 818 400 368 733 653 952 788 600 638 600 707 585 652 747 600 600 600 600 600 600 600 600 600 600 600 599 648 526 648 570 600 560 666 352 600 636 352 985 666 612 645 600 522 487 404 666 605 855 645 579 528 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600] endobj 97 0 obj << /Length1 11032 /Length 6914 /Filter [/FlateDecode] >> stream xz T[ו9^/sEGH@$@?[`H aI688:Nui&t%q4mӕvҼ4o{4uY8K楱253W}g9#riD!K5  yŌA`pu9~P // e$fchG(tïz*&|[}6讂vU ;s tBbxk'_@+=LM/C�%oȿ~g@Ɖp4F?B;?//eNS-yQUz<v$NDׄQ(u8O?DאW9}I H$ P4zzq' 4?%A1莫hl<l)x B >L-4:C$^SQ4|4hHF`AZh  f !O �]8z7:!8RAp_&O3G` 1;셷HмkE;uY('I 2T(/R(K˾xjGG\;}v[oOihfjmil0u5uWP%y9YbPFvokf⌆Б6w c&oLVCҚnHb kFf]=k6'G<@ql}ӌo@C]q<}zdPny tajkiŇG<vR;⹜Bʸ7.UAb::Ǯp4;q>'N{a*m_]?rx�zfkV<)q\p޿MsjLj}�jάzo$Or[]^]hn$_:=8p{پQg\:}l p6*b]f�p�*q +F'fѬ:qjpp^>A4njQ;|0>獟|:@BI⹿WՂ|vae*/Fm�BJFS0&g? PT<q 7#ZFxg DA[˸xAasK623k_L ϋȘ|oU~׈ф{!4Uo>^1Aͳ*n�OpI4@=Nz<N7 Iuu~ΣLbC) �1=.R+y.I3J. fkYߖ#mJ$zֵ I(UԥMO #ԁ.Z +(Pó s\[=7r tƶ0!t7>r+~۱ͮ9{( X#ֶ|%_>/1T4_ϫkV+�)U[3/ +Iq2WrbX5YIϋؤώySX>ϋ,<"\$ 4QhyyVN s70yuFs7OΣǤxVG."�mg}$>_LGr@~ps]׵)av<ij·%2˱}>؝ 0qhSדhƩʆ(y:IIHR,0.VcX<c\Е 2ȲgߛNθNg{`ُE0F2eI19=8|)=?y|0`Cˠl\ z0WyZ6;Fz]LƣQɣt!,L߼g.[)e -2K?%'.ҭKKҦJbX1 !q`\�&>EߢReBn,yc8-q?"y%ͼ[ytBϣ[hO˱�Z Q6(8>W:2ɽ5/Lw<)sƛܞLل3J@Hg"ƴզhl(u4a6\ ژ6"U؇\p-B+ol?1; ]D(y3y 'b73ϻ>r%꩞D?f%xGPa;N(K|2Q2J( 9OR'O4 Y$ySEx�17רX1n$%} ~ diBå8ߦZGt}q1טD,RDE$A<<G7]c*_Wͷ ^d,Aaԗ�_(!,*5-]W+VvT?mJu6P| 94#TmlL.Ҭؤj<\N'Rf ZyXv6o j["N)Tzw]D).96<>|fvzoH\PCZ,/,~c%u#]'YڃED^$o +nhpΥJ=Oyfc e}IںPLUZȉ/\}pW󇟋0 :;]i*+nìږ-neEQWFISM☂Sd ^xԽܗlu6n,G՗}~MZx [$ jM40X{,9O&,GUUײic1#HC㢒JKF,<G۳ DJNVi Eb&JȄeRU!3DH #*;�W<N]LK7ٯÇqeJX!mT<2uuFrviFZJfF[JnQ/}i]^Vz1tlՏ>G|Mo9MA63P"jⶇd`$E4N i'?ۻ$jS%Z3t1q-g5lY +Znf7@_clgMY<ȊsootȌM2mUu 7N]ce]{/ɛ3O^-+uyEN-1AwB.+3HFby S=<d^ո]P5IcQz F鳴Ԗ 67Q#c>)-.`J+ v[9ީnwn}ǢlYI^αfn`bb8q,ܻz__fġm9+s+LNZC?1Qۤ~+_`6TԸ{\P=XuuxOwt>4 {ɝVoMmtuі-1-g:k YKNinl)h rT|oB*Lpu57+-,wg2KKUšZiyJ><2ϟLTIQUdn*;ZdEչ!#S&wuʳs N?urfhԓݛ_#qF@svW y]|S ˩Q%?rrq-}&!ckM"Ih>M|BX8 Tn@l>Ec֢]o${M>D`Hh^ʧПq饴@HdVo*mVmW|T@Ě[#+ն"*p#4ԇy 'K,*TrvCe8w=Z)5#fdefWgٺ'M qV#T-U]VyIYR,v|5 pqueqCI٬|ͫ5(%EχM/�sﰗ *Xw ]Ȗ+VQvI0d6xR[.vmqEsFաSL},/ C7Vg沍uZX j-[E|SFAϝ.(eR\/l(Fe[ZbyyxZx =؆dȩHĆUbX^OS~huT&|[S;=[м =ix &?]c|.5%!*;t!)Z?7W+l*[2X$^eK$Q%frE]m:8x;[Nu^tӺ([32cZl]nMf;?W1q#kFUX7v6l[]{LU]:ITgff:�vS`s T*@IUۡIQNt'L 8rlF_\ln/Y_?Hel=q,Mzr,]~s%f=rlZĊeoV=1?z@Wc[O~v̖O>;`Y}`IP ̭@C rd2ӈZ(ŀ&MPJV쵘 q\´SoAŖ\ndd7r} k`2eRݺ.Mu}ӵ3 %Y8$Pnše]tiW'w>cb$?`S-x[wMGN:]06i3ŁЁ/(.+Z;W Q*QׁRj=tW) 7zS1AN˛(f nS6賋 ' I4N1X*,tsotvVPs}Y5cvױ-}ѝn[]QusyeSVY;oީZɷKZOAyPqFr&aEFZWwyji9qU^ONde]b宲ꢲ΂zNJ嶥OQflN Id7IMz_cOSt1ETnl3٪Pdgy0;Sic+s9mw]6E<CQR$.xl%PͭR]ș'v}h'̄)Pi9.26֍&E\CL:#mwrmu񥕈!!}Sdn?q?n=_;;[[=tKֲf=S-D:5;&abTV.|kW>ia9l>'̄=+8D!br'K JRZY\fs7??r˥+W.վXzЮ Ϳvֵ_0÷o}䨱+T8 sWP@LشRlc7{k K 6 K*2|!\L]n0Te\Y>Q(P/ڡ(MWp}ֹ0`BbS7bE?')UqHmϔCsqk.7sVɝ_>ygambe}+&P!t> n}w2܃~NK#ݩ?336(^XVǃDzkeseG<QIMIt9UKʐ8w+lb<xSo nۀQ&R4Ў4M-M3HBiZWҴ)4-s3iZ t{C΄wڏt_qON<sQ ,/ kz-Mc$4M!9mJ4wiOiRЯiѿIbTT TÌL4KYeFf4MP t.jcoxX$M Ml8gKsz{q%]QvG}zW8fHp'c1bpnWx); Bޅc7-wGۨohmiklkk /#r[E>9ȆZ;1mhpa{C6oK1(c솰/%a} [n79_'υC�aÖPz8/�^|7'>;(̹GXϺв)%<g7iԳwW Fc xÂwvw%v=1vOhkawCls v&XegA0'.G(b@?Vv>$ EŠwXGB(qC7Ʒ‡%c ϸ\$E}8`CJ-c(hP 5Fpg-"?h AIU/‡E|O?: wH`t ,r + c}K{Rwz"|憐n^" 4AAC/|c  ~޾:0h}g/i%Ơ共6x[X~YEoXZe da0#GR0YCZs1(V A#@ AڿT M"&˺Ax.m<MC=p<e>mKJ7w7$'y[ݼ{C`8<I*k.h;;w6~S}}|<Cdn?XB'·2>ޏp YEo•bH$I,|52oar="4~tC/6I.mT16mJUk_;! .+m',opwV>5 ~5BhB$ )PNh KDW>~ endstream endobj 98 0 obj << /Type /FontDescriptor /FontName /58184e+NotoSerif-BoldItalic /FontFile2 97 0 R /FontBBox [-265 -250 1289 1058] /Flags 70 /StemV 0 /ItalicAngle -12 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 99 0 obj << /Length 1278 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }ik/y_!}t~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=n?[i(JKiU:JSz2QeL*EJ̔Ye,*+eU(NU-уk5x5F^ky ^#k5x5F^ky ^#kxZV^kZy-^+kxZV^kZy-^+uxu:N^:y^'uxu:N^:y^'xz^^zy=^/xz^^zy=^/o xo7 Aހ7y o xo7 Aހ7y oxo7jo$JI$$*I$ITH$$QI"IDD%$JI$$*I$ITD$$III$$u>M&Iބ7ɛ&y$o›Mx o7M&Iބ7ɛ&yUoa[5joSor4ۂs�ޮ>,x/x;Â31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x e#e_y+h܊7k:/Z5dUluz5n[eB&Si|y(%q& %+S%*ABijPU6\h,(+L,4G5<cD [˧*t [ jjaijIxʪwgFwضR>sh>:OVRP*#i|e0U,*oU/*[U,Nmlx:&\}M)L2\%CHF7էʻBL)jƻJ1:%H߯:=S۳zrmkO媳7 endstream endobj 100 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 500 500 304 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 671 500 500 500 500 795 500 500 400 500 500 500 500 500 500 787 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 665 623 527 665 535 403 500 655 354 500 597 354 969 671 618 623 500 550 514 416 672 585 875 604 585 558 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj 101 0 obj << /Length1 9116 /Length 5591 /Filter [/FlateDecode] >> stream x9 xǙ3+c˒.x6d[6%KȆ˖l lIH2`5y@Jф ~ @ i嚔 IڦP(Mh.g66w}3;+#A[L7|!j[GͻȦ_3 hꎵ~ի"4)h;]=!VRe{n$]}_}T7B[v:lv<S]g16/ {Ӝ=Vp�?a}#U m`wzn~ oB0'o0n^eV^ _qܵe؅\/iߵ\)ȈA/90||̄gȎ+N8P7RP, �siF)E>Ч{ ԉo1`87=We]]%Q_؆c\$@-xB/م U)w=GJ[쐮r ja<>e&j!4I{'Q>s �'T9�/<f ϊ0H*ǍF Q'"UZ>'$&}s&ScC}]%5ƪ x ϛ[40oVnNv֌ӄ4]j6N3ibԄHec BE/f\PUMpBb<ȷQ6~<g pvY,*~!Z^|M/C ^h^Ja."�`oHryb3hhӃQB#*; FMp"@ ;g,`fDԊlf}Nלec=BTQ.*HELG;;T-3.m+"kA n2ř^$!f zI4꩹t?CpxMD>C_l چB[^%^D[aP̎bgjs5aUd+x (W,GxjA S8c"niqC%"FF^7-##ft]0@w-POH*s;E'qf˃UF5vT TQ$v 2<9&u&�>;K *(92 ʅ6HKO' ^Q+擘ept<MԖ2g=m D`=CW �5 sB9U!hwm)vXi5E'4CDhPEZcjZseCDnG`M ##y+6 |�BBhEez$<*8R-[[q 3ę>NSyՈ].|eg10ˊaF$ j;CI$Iy'/[o$<4r0h\5 „t0<`)c+VR|g82#Sd,7pܸz*laE,)!kImP0ڃɺr9eѥF5,; 6Aoo,M-*x)ooc0SV<8 ƬyxWP*CH DR# ?t B[(G ˆ"Ghu 1aj� J(\$'oo' 5G "CtŃG8Q(#bB/#] pvֆ | )œQ=NBf}k=5@Q9h1AZ !dׇ'BxcO aUñKa;w-øxa0?̖f㯁Z-q,ZcSg"PIq(&qfA1bTàbh@<2><,)m"<70[RϿl||_-nbbfR0{ڇ뾅c�<=EJ̓5T%JwЋ%ΨI\3^b?hgX L.YJ1kf@m,`YK-6י/70+n61 UQ8Ǜq8֬ʏ5Ō+2űcoIJNyt) [=M̚!e^t".H["Fleu][Pٔq*Mi�` �) 2~@D~BHa:?D~@. mhICfW27B Z85'^IkOy\5ҢvmRi2rx Co?R؂V 'EeM <ԉhkx"VA=..* M 5Jwd8=Ed*{E1y,Ҏ=?ÜEM; $ɴspJi5S`hG iMqηQ|:-E[KD-}fn+FDDGExȬR.PV+^Peј2l.sg QZ!iU|N$=U�qga'6~e=sMfۜϵsOq@9$H`⢠Xݣy59d)N~Q>,]`/G(QX0'vB6b^e -/H,=⢲K]$%S7>Kq߸ߨ\i\eѪ5EmPGq* n6y30C<~޽a9}gjڿBm<mt-8aWiQ@v: J!-BɎ_!/ҀgHOٸDU_OW?ܰM~GhCc泟ɶخϤI)"Ch!q{}1&`X+ʟ=gD+r#hFnVIw NVKHw)`܋orKM՗x'/3"5Br_81k\=M�-spa487ؐ8k9!3O퇇qGϳỦ#?-}8f|{gwm=|o ɶkΝkwYo~_Is +}kEk!I#( g.bM{m;-e;oI߻7spiP:un' g GJR_~D5$M2ʟƿ_9SSKWc4)qp4>mZسUjzM?aNCS<ӿ/EVq{y6˗$}|i#f;GvKpWiuGǺmkO/ĝ/(b& l Ҧ%b.\C#3?TO/gv9}. /ztg))7;)(5Eՙ^1ȣ$-wg Q)Y'd  %m*?W0)i)LO2նoތEْV[Ë+q?ްf7VҵrUXwgܔ'ZsKZJWQi'Lb o}t>ӱk'u"CJb{,[`'( %+ܭ%~țT-J<`vLϝ>4{HOf7om\ў0nm=>¾O[-6QZkLcD"$[;[F#Wsjّ_`MߵmIkNr"[Z(] ֓ t7[¾.|x?`;KŚ|eZtv9Ӭ=>rh뙦XS-GG-uʵҪѷE5~Cg'Q�[ n*^&Iɭ@l>͟2 Gv4Eg.i}\ Y}d}St!sJnRN^8=h`HwrR8Fr|\N{Jgh}3U'3:6Ƃ {ŰL$9cXF3[])s'oHǤ u?p׹w_nHW^Z|[O}[8 , 3ƕ2:>-I;du걁yCl2ȶF^{ mي՝os7z.xOc6kSR}[g6*3`tTCyP_(*vâٚ|eR'9ɟoczjI+Fzwxh|o 1>'|[]ɿf]N_T|c#,]<~/^[U8h3=a>wS#j0Fu8_@즂LRQ'棸!{Dby|HxQ g9;C:.6VYq:Nf-̳ #|Gһ]850 F~( 0̠4OY4 ViPaSnla% p$Ti�_NpADJ>)&TcP2$ gWaJNaUdCizV$)V"=;"'=ޖ hpZUD;$h! Ob)p *P(x|.g=+o6_tu;x#/ɐot{N'Mu:zܞ@fغ\.>‡y#X>rfu:dʒ=ffw|yOX<w]]na6r|}(=�g nݺ.,ӓ'wp<2'irw7y:l>qmwK:f^f&/0{8mn>Mi|YhM&5uzc 1x ^=>vP={NWmswں G n; u$]}^ \Ƀ9~Wwו[W÷}ȅ5_P<Qл0#rP)Po姘zZ 8kav�(݅:AJ�` d-17+:z` Fp('osX(0ȃ9eј. �p~ŇVC%>8ۋӘ(�\=jOh<jY$IȒsh3\9u׳;7W{~Wh` {DhHd D1pNHqR^Dv uT{%$dA5G?N�v* imͻ `Q`Ďe�5* =Ka4B[ :>뀪3UUXCd;pt|[JS}ԏTY5U\yg\NtN]FA/]\x=4#pwZ:=Kmm ߑ{׃,&=- = Is } O'z "Cs ?TAd!cK cu5@PːO` ߽ endstream endobj 102 0 obj << /Type /FontDescriptor /FontName /fee526+NotoSerif-Italic /FontFile2 101 0 R /FontBBox [-254 -250 1238 1047] /Flags 70 /StemV 0 /ItalicAngle -12 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 103 0 obj << /Length 1278 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }ik/y_!}t~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=n?[i(JKiU:JSz2QeL*EJ̔Ye,*+eU(NU-уk5x5F^ky ^#k5x5F^ky ^#kxZV^kZy-^+kxZV^kZy-^+uxu:N^:y^'uxu:N^:y^'xz^^zy=^/xz^^zy=^/o xo7 Aހ7y o xo7 Aހ7y oxo7jo$JI$$*I$ITH$$QI"IDD%$JI$$*I$ITD$$III$$u>M&Iބ7ɛ&y$o›Mx o7M&Iބ7ɛ&yUoa[5joSor4ۂs�ޮ>,x/x;Â31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x e#e_y+h܊7k:/Z5dUluz5n[eB&Si|y(%q& %+S%*ABijPU6\h,(+L,4G5<cD [˧*t [ jjaijIxʪwgFwضR>sh>:OVRP*#i|e0U,*oU/*[U,Nmlx:&\}M)L2\%CHF7էʻBL)jƻJ1:%H߯:=S۳zrmkO媳7 endstream endobj 104 0 obj [259 600 600 600 600 600 600 600 600 600 600 600 250 600 250 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 626 600 600 600 713 600 600 600 600 600 600 763 600 600 600 600 543 600 600 600 600 600 600 600 600 600 600 600 600 600 579 600 486 579 493 317 556 599 304 600 568 304 895 599 574 600 600 467 463 368 599 600 600 600 527 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600] endobj 105 0 obj << /Length1 21748 /Length 11860 /Filter [/FlateDecode] >> stream x| `[ř{O/Y%ٖ|<Y/I|$q,g؎e8!MB!h HCM)Peih,XҋRmWJXĖdˎBd?|]a C,ondVBx٧{Nm1Ԍ<Ph#BLȶ?<gSH??xd|n U?g �m3;35D@'pq|r)DHq'<b}s|�Boڸ_#T=&30mB@7՛ ;Ў8tóU6~|~hgKۇ.6IP"?Ozt,|/aib좐]W"P/t%2P؟ =*<}gA31A"q íjkP)2ݼW/zHJ 3J]^x4Z?Yѻ 2&WK= !*r/DÄcGW~};W3WPׄ,"%3! 3w#>'JByI^KoJ=#;HE .B'IP\>dK W2-k.BǪ˄,@]BNQ *@["W.$NN,\Ed.BK_S~\Tޟ:@^D֞Νć:�H;Om}Pk?Y)׼DK$Ҁ@"(8D �",)UfQmtLlcbRrJlI3Y9yE%eU5u 뚚[<XZݷvz뀫l]Bz`߰oekؖi_Kz;;Z[56TWUVdgY̦DA " y,$(0@*8(J睆~'gjkM.`;y�Uni3~uRh9eerK, Q)xەvCh;Jh3JTt:WEVNW9wWWABP) byXiI? iΖJNcJsʄJUPNqSBQctt?=h?%xPovv;Vr*RIB3i"!gPYL!XږiX;EzᯗVCX/b5w~Z \?<?UF-KG{zQa޺Q;@Djuo=F T#Ph@<*8~5U'yd{�lhwrA d|7�B;e_hu|ϳж<PU78;E �BiEW- `Py!x~H@R)nwt;K+Pj|zAEcT}N0T $dUw.nNe O/WۺYMMg vY~{>eJX]6hvkaVZPC=(AIt:'S.4vzv? 8}4B֍)KnF@C9�j(pA9J̺Zm d8JO;R_TDL֋MLVѹ?T󞁡(Ճ�h(=HawtވxF< cUGX & :E+\g /Wk<>BC<A.x"Ή*S`&`3bϗk! uB{w!m fv+ 5rS*8|)r~LEyx}J)!P$T6Hi{KGr@/`DaR/ 7L1�ܰR #R(|}?Hs{|q/vb#nj8( ;r/!7\L Ʀ]*HeJB-X p)|;bp8@�|ctK*nYt.KX]--8t߷-BX5[BPP'6AMÓo�2�2\, X0  i"}qkeF.)|c4 #E.c8 0FK;?cQ8c,ҳ i-g?~+!f;.ŽzTܾ1o)}< c8ǘDZYᩇ=@d />ė\z)}Co:ܱ:vw߱Ǐ}tc"Rg³Mq3p's&k&Y _pKqb |a{C,CL`AlpkXPv/{eKTiR[-lQNQKǧ [[TmvN[C;!5ЏBЋCI=.#OE|G{JJÒN|SNK[{⻝w}y9x(*ipfw;czP(%}PǜW1B?رɑ )8R]B13 gfg|ah_~ dRRH2�0W 9R"XT4<۫p)}-ۥt([!1?Ѳ Ytч~"OS|>Xu~|?hdvt:It] lDG!o_t%3Ů"` i-*#.K0` Gxր�z¦PjYD{V@ =2 By һ"HK?OHnbKaNq_dbX%f3)K* `eN]oq%>.1YL saiҀd,C ;+X9|Ic`̯\v {]Z3ܧ =߉KŷCtKM{Pj`p`e3AA-Ag~<f9䎐s!/reK7e.ϡ㡟wS~R* ^1RQq% ^{'(#[TyT.5T_H"2:216\4JGFFuԉN#DkܯyAZ^[Szt4Q0XbÒ]#Ba6sL,~S—g]BVV`3kF,R!|Im_Rh5A,EP^_xJ4f{619Tz$gelMhݻaOoWsSleF۵6~CRRF'G*(@~Ph50 ?u@kgbctTKEo!=E1 �2Fd *Y+i&pO\]&+;R_lҘ6ݿ~zge6h-AI49WU\)KХw ;_^"ޛ4<YF eY3lűi`֌2Vɦ*+</Gŧj߶putoODZi6[HBq:>9*fP$Dz\>i?*ФCfT@f5H˪\te)@)8KsՕ"X1zZp}xR#5ZsQ@-kgc|l޷Y8um o4)'6vnkd+7 k].]N*YP)bZ1VYc#VmZ!*o}̓'78+4 uG햎%wʴKS=zcJ q7;g KhMRcdXЭWF, B̗xG:nb֮woc><%ק q˯Fzd d�V.O0&~%EE fwl/>?֪ц;^{ &SmRF)4G~\a{|Ɏ\oʉ +Hsݟf&4l'A6qWCDe1 C_ljMZ~G-D2]ZRR1`~Qˠ^>RwKٍ\ƹ?PRWyi=xKB|A�Qc1KK<ҥFeXBYYU,ؖǩG0?G[|V_dm7%j;:5&gZmQnID/VH_|y{Y�Vi [NUJ9uj1v( wK]q M>^ۋIҶwv#8k'ןݿuƔ`c5vv$Õ$ Q(2=:Lpt[ɴyw .]Mź' <|U˩+O=鎫2 >>=ߞ>5db>|h=걣 )cz?c`[w_~Ǐ_>m #E>kǏNfcwۊ_!rZm,FMlٮ{/l| Pxmwoa%egKN2t G da̶Ƃβ F3P}IYd ru5|v1~wӽ}抝vGdwl,vȬ%er*ƞmwuto0+6֙uE  =Gێ_wdZ/r~վS̺~OC$7(a+j=M iլS |#k0ДYϸbX#cqD1 'a f]AZ3VKqQT<5I+*-o!Vɑ0-VXGL?s$ʬȲlBqJCD$+Ex'A�,\>F1&Y1{T,"4\1ƚbC]g.wÁQf7 1+BWDg\Sffgpl&_lZzp57c}6C쎋aNXV bifX6<t1 2Vp[h elj,1蚭{A]'ƾ{,x//]_Z9ۙǿ<؀7%o);#愒 1]a[Z~MVE84הx͙RclIxw =Ыz 52Y "k1Kl@Pl91Tп@ Lt*iD~cЉ-9ZmMEEvSI+O<E [Xf4fTezz*/omOgml} ~泚@~`/;\aXY2ၧ7+*SPç?+7*9&?VO/R-T T0.W @ME`4"q@Lp=F%`:e>se ֊S\4PJ.#v>r[RSOoDR8^,!,UFHX'dӻ.rɉEn.k}}^,*o?Bq8xs}SOG&ZM\Ma"$Z^,oТQw8irF]-Q"}H\1 !\ v[,o?]eSbB esEDz[\J.;8t:XJ3J&:_szjDxH!"=IT/B4IPJLG6g"U&h7k՗Gr*WVVYkCC3 L " &f5YZbksFUjxN.NmQGBCRfeaXCDTBdn^}G {KbuE=a%֞{2#CFZcij-E,4?+^1!,>W;UM5|b?nxІ|m'"lťbI~^8H~|厕[v7ZHT71@c$J|5%|Mn\ ?xt& Ȩd>Fa%ж;&Ǧ%=$$GDjzbwJRkG' х ( KL!c{W $gwQp5c=)ѳ̭2L@,a^*qL:)Aj #]&0݊_9smmق+qݕ#ɺPM6mOZX?u4WШ~e__VˏmFx.ݿ}1_hjLW3-w]Q"'vc6SXc^3yuIX{N(v�7,_6p')|~; DŸA4D�cdUoʏ6hB!BXN۳ԬV8& ^ غnݖrze\U}YuΞ~֑x>ㅣzLV5D1Jޚ_k`Y;4xXݰZt9<)!F)'&mB'ȡ^�^2Q5&kU{ k#7$Dïk =UЍh,N 3\JJ`kSՇhMAl3k7܂VW|X!ezyQEST̴BC).\J["6:Rj6W{ʹ $]},cm hX[;Mk43;s:b#g 9vM5tτ� u!!˃JmNkvRWMJ2eBYzk2VLG&LM-;[^%IQ5KCԪB%A6cUHȦZᄾ'^H`וnW fm c Mc\=F>wƸ:6d~frhR^\i/՚X3?.L~mRy Ubi]yŝ�Z`MXb!$ IGBD';PQ_Ůz1-ͪ"\{:4u-z|I0= ϲn!=$csS'XLC2{`mR$HUT TRͿwIJ-*"H y\|B^>k ([e=pM͖Hpww5j4Umzf+kK3�fBU[،Wv8 ƆXtKF{dj5h/F/@)̯"qLf-# fM`Tġ-}8$\[ mʠTOxA.�wVnY6[BJ/<"{AbL쑾Ltҷ4.l3~PZݾe~}C\e] H,NAF�!1W6ӛZ,{$Mג z`i>결BN pI-pZbNؔbhs^{@\$B^`iDRf 46PFx7+yKp ^ط Vko{Tӣ*U~+g9119ޑd1~7d2 6qZ$dv龰(|= rS~,IHޢ�V$p~/V `7̦uU g5/;kpۘ&PgTY*bhiN,[y #-xu,]vcq!+=(Eu� L۾>8`9_ r0T1,¿v(2?/C#yF^~dKe&%ַ+1񭭍1,ѕeGnh-k1o].>fu)c&gGng4X=א3_K0`3=G("gtuϳ6<pg1<x-U8fL?n2Ot޸yN\P^~xi t/fp}j7T~s7~ /Aq7L96-fl Jv~o5mw3Q=6<xbن @!NqUŦnxy:v0?><P[PWd:_ԸӛuT?)!?pyިzN ͏o6_o:Guo6ϝ;{b-%귽3[N,gώ{[=4tLԾ+^U8ε8s'=36h+Z7JZ$WY5mΎˊGzFˮn(亣joZ,1Bܴ%wO}JR-zYwrAnUYp$`)t*)n/>Vlk5hJڮ-)d7%S]g'0նEɘanףt;~%l?z[hYw槿e{9Ήva0=SDD1x5#rMD`!#41 -#;vu̍ g֟(omde %rS#GDv|7Dž ¡N_>_ۯ^iz2'$!{F#L [QXW& 0U<$&PW|9Z" )-yJ"fd?\Sթ,"X*:w1{[*&S3/jHU[*ӴԮ˗>^ĂX~Qe;Ex+c=r8y%+q/'bSTFedT͉ל+%Vd %b۳3u>6:C~hmw޷J[-fz&.h-?;>$ip(^yh0ߠQ/Y^sr:q^iӸD3Au;ZMuJz_݁oa(3 VbĂ=ژgN@FO tZc}}K5[&kIެRVW/S@V_'Ctm߫$Y=Gc0}~|ł\9 .­kyC8-KtLO"4{=(b7p?ֻoqŋ#cAnn<X-�DV,r7/^$8N�ނ^cyād8+QWCF[-\g;jk~ >UlEc>;r#eckD}80c?m|7 L{Y貆P3f}Br#4Geؼ-\6V84PHvH"bWeR1Y ۀm>",!xR>9uވRwCƱX- y os}+o8<^.v}%c$hw<3=ds.[ɂ99s:Q1ӈ7<s/_Z"/ӽ9^U%W2Mx?;H};~Y|BB|w;@y5-{ m4@_ix4_م[-Gt2+d[eW_-tNz6ߐ+A_=H7/_ٷu,3ORxgn y$~W# #~x6[G^wv@hXÇ# wk fz~~3/vބӾo_ǁ}{n>/ lnL?eӁ?g ^?'0!/CH\є[+yJZEt{wVE!}A \E[R ݔUh  ";'*/lЯbAmP 1ryAm*WETmp6K,YU#kn10"4H( )cbx<199L_]PUbW nvaQ8Pxt0^uݜ3c 7̇7,ѿ)]ݕW<4[׾"~\D6F JIT �.!RQZPD)YT|;?|3&I ",2$&_dw:Pe2l"C^{Ҝöx y2 TAꈧ,\)K :)K =)|SDfor 'k=܀4Ȑ(*cNz)OA2V)(9d=ed=e d8(<@xA)B{r,C*&FFg frrd|l6 9w &g&ᶡqɉə)>261›6+%дclrO7egg)J1ogC[a_Rdr162w ٷUg  srAwhlʷXn6̼yredh'->yɎQ zrbo>=Dx<41g'!op7nt7HW$n#sL 7<Oe|]{<_^^מwu6wv]emmeMuU|s_TYQjokLƀi~hONcۦLjڇO+?<15ylxl3?n�SC ml>C#;'&gYjUǦffظyrz\݈*$(G( 7$q4:46\Q@޶AkCp\;{Z6AxNchsNVs@{mdN7Lpf% V0/>m(vfM�Ɣ^e% jv[ 3Qc# Gypf3 /n gfuZ>m-̓P{ۚW08�6 wPni!"B$=qo, 7m;HtԉUWaH?HR}�P5ύNaSCGNj.(uZ^MPCUo3@x�=hε&xBC@[:Ӵ$3M-Ai|l(ת<ZrAFt}6YGZt>OЙmE蜢njߠG(/d&<'vX]s�4zhr֙�f2SNxDY4L.7ǀ$ =2@ԙ �'|]\FXmF-t K_ER2C[O&N-̽N.ݎohڏa:@OgAsȉΣяOOѿп!A`Gѽ7gxC'Zy}P endstream endobj 106 0 obj << /Type /FontDescriptor /FontName /643632+NotoSerif /FontFile2 105 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 107 0 obj << /Length 1278 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }ik/y_!}t~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=n?[i(JKiU:JSz2QeL*EJ̔Ye,*+eU(NU-уk5x5F^ky ^#k5x5F^ky ^#kxZV^kZy-^+kxZV^kZy-^+uxu:N^:y^'uxu:N^:y^'xz^^zy=^/xz^^zy=^/o xo7 Aހ7y o xo7 Aހ7y oxo7jo$JI$$*I$ITH$$QI"IDD%$JI$$*I$ITD$$III$$u>M&Iބ7ɛ&y$o›Mx o7M&Iބ7ɛ&yUoa[5joSor4ۂs�ޮ>,x/x;Â31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x e#e_y+h܊7k:/Z5dUluz5n[eB&Si|y(%q& %+S%*ABijPU6\h,(+L,4G5<cD [˧*t [ jjaijIxʪwgFwضR>sh>:OVRP*#i|e0U,*oU/*[U,Nmlx:&\}M)L2\%CHF7էʻBL)jƻJ1:%H߯:=S۳zrmkO媳7 endstream endobj 108 0 obj [259 333 500 500 500 500 500 500 500 500 500 500 250 500 250 500 500 500 500 500 500 500 500 500 500 500 286 500 500 500 500 500 500 705 653 613 727 500 500 713 500 367 356 700 623 500 500 500 604 742 655 543 500 716 674 1046 500 500 500 500 500 500 500 500 500 562 613 492 613 535 369 538 634 319 299 584 310 944 645 577 613 613 471 451 352 634 579 861 578 564 511 500 500 500 500 500 705 705 613 623 763 742 716 562 562 562 562 562 562 492 535 535 535 535 319 319 319 319 645 577 577 577 577 577 634 634 634 634 500 500 500 500 500 500 500 646 500 500 500 500 500 500 951 742 500 500 500 500 500 615 500 500 500 629 500 500 500 500 840 577 500 333 500 500 500 500 500 514 514 500 500 705 705 742 958 904 500 500 500 500 500 250 500 500 500 625 500 500 500 500 500 500 500 250 500 500 500 705 623 705 623 623 367 367 367 367 742 742 500 742 716 716 716 319 500 500 500 500 500 500 500 500 500 500] endobj 109 0 obj << /Length1 35944 /Length 14414 /Filter [/FlateDecode] >> stream x} |[ŵ̽Z[%o+"ٖUxb;lK /YBC6ͣJJC<BChKyl(@l;3ʒmɖ}Ur;wΙ9skB~ bQoS.c|0&IB;!- 7S=tB4ɡ?? B'[>C{;>PЛ<l6 ڱwaH=%ɅIZnݍ}ttd;BӘi$As16Bg̰"+n�MN'o8Q(ۆk|ِmD~~2Kr/ߴ=oA1sF7HKr=dy$ J;!]_7 AE #cMMȀ8(`8t' #Oh5Ѽʜu<$KCQ=$ 4xނ!F}ˎP?\(Pv<DϣF4h;/?NQшtXb0/܎0:8U5?=bCʥk8EyD')B\!Gy*Vǃ !, Fty,;BqzMt/BAȋ>BDxFr4:Aք6*cO'MH>9T&^f8J{| (A0Ò~7, PT!ũ51q'$$SR5KKπ,rrQ/(,*.1K+*kPm]=7ljljniP[{qsgI޲m?yphxd14>1y=B3 wB]yo|!Pܱ[v{?q]w߃qSC}]mMuUeEyY ?/7';+=MMMIDB2?_o/OD,bR*5U%"Ԥ &^ IUX^[�9W49 K9+D)\Q.Ntq&ш/Djx ,T쭀y{k^)蜗7!dIL Řs %ZJӀBVwZ4*EZ$)-!1\ʋs^d̀ik5slK@%QSaIPlITTZIK۫qL9_^bR$"Ui9Ń}N;37Y F͝)-UvYd8_ ԲVq&H%uRe6F�;j5!Eꃈ`K'P<2蒻,L/펢9hxY9gh*L}ОQhdj\`�y9@U;0Yqxh)9}_ < CʩT wB\j&}{PIQ4<aTPYtI\S$Or>"<f[`*+H\i[J H[Ag~s'z*H*:-Q蕃\Rm1tA]Nsi�0m\4'\QSu2J 2 i2M%ͺJd 0,\BG W^c+MBPNyRݥ) 愊 "-61P M"|%\:5fMf; m=T"3|/90 ؄p!̴T%+kh͊۵ܜm DւHs7( -FSefmsi-qpsځ9M[g! fr/+P|e4s|K[w20oi<`\ |FMeH*I$DHIx￈Mad4D|H)tx  N\oi(8k;sX42>]Bҥ2p0NM;'34 r@X:8)c8ct;9c"금1A">eڼѼ .-݌it�|3Cx<PG <iNOt�`RHKpf,rDpe3ybi<>A%p~3FB}8X\s8DaPb(`CP!n?9bſ,6|3?vg;lQug yT=|??~x;e={&9x KvSx.{Ż]b]xۉNn?ЉO|~bęlcP 9l8 Z$�C⋆[|:36`xxGG>C E�ߟ=~β͊Ъ4ldK::.uyvJjWvؿC� WgJ/Ns$ b|q-9tai FΆn yۺ?"-mȮz� $pskzzz&mOFӶić= gfg{qtdFp N|N(/m>L'?HL#$M'") 1 o,EuHnGhzVu}#~?[Ȉ>a#D /w.?qt2譳w ʺvQ}@ߠOmKiFq Z&1"` :Nk fʡLRW =p9eI'!aPZ=i$ڌWz;P;*RJDy$(o%֋^CoftHovyXiFxH䗒1 DZ,s pR2$2O2_E%U y0fy/6e/|Dߊ3{şHqSF=>i|K5ueooޏx5}Z.k2d3eh8o2/<E+JXQC^pq%$-0ˡuOÆ,}*w*ߋ8٭ UUuw_99yDnU?6Fi5{5flFLĽ_C'&ܒ7 nM3Y|[ɔД)R=RS_jaUuٺ.֚vGKiKOHߙ@s{ IW33{3_#'PĪԃl悎_·u}/yY% Rg+Xg39XUʌaVX)f^xi]xӫRgW%EG_</E oyzA%=W~ L3}cE/^¼ƾ7<T]S'`V�h-Wa}Fvޏ�\U'`~ `neCؓSKKR.,~ HT6 �+*Сc5@FX&bnȉQeF) qĔDYpm•d:XPИ1!VtZ7[\DEӁq~dRt­t@u1W! K5 1L-cxv�*L ,Wydy;f\0r^V|Am,=3ulnkIUdCKKttKKC2ڜnbi=G??yϏvGD{Eŷ%?q1DC5 B6 wI`B .)4, &bT>>>x2, �~"�"hrRnȂfyV摒 ӧ*A$M3:!zX`+GQ$gAY@V2Rgp & 2=.ha~.iÕڢpfԕu/d}fo? "~c^NQyMYOj(XA<v@ Ht*�B3W_b Ң=yofu $օD6<3t<HF5[ ~i⵬FMOQWj~;^.*õEpv/QHr8#;'9giQ^FN `YAu~*Ϯ9J&e*ۂuڱ&~(XZJzvf潵V\tC.G!w oϧaw=t 0%2pT Ov+lTQxxV[MYX *i nu NYD{]oiOGi{%P5Yn4=0׌uޞ{},0ΉoF[Gđ,;FtαT�?8:[-?>禞>WL0 /Z0Lz0r̸?81?}L[9#>.5'l-4iZ;}D'֯։_# 6J2ey-T"զ3h1/ԧo&7& o FzkЧp>KХ) -VcCurA@T?Iht֯>�K34Wꬃ]TjR hYS]]dN*S4J~Y{s>rTY8f4lçwSs"<KNGM@ Vg9 F^!]8넸^rMK։A:!$;wv \tyճg{t72RBV(AöxH;ĬOnq!8gjKaKYψsӕ욁lh�0ƫ׬*gbO\؋kTSvsDk؅kS쐵.0@\4jpq2ŝ 8 wb,fccTWf�VJ)?:QAeCUi+u7*ȮjFoQ8<+3N8H3* l!5u93``条ǯhJK+Ö<QMqև9b9R0*I bÃەթ gZڌq<m>Ml8;.&vNx V,oߩ-M w9,k'ԫSgl{3p)!<Ep5sWpйYu:h&Wjc]H_eÖ=fMH_ZVzHnIFag 薉6$Ge ?m(Qv+M1^Mv&_@|Wڍy C*V-Wd9q\cp]L"b yqT~=T)RE=Q񍳍,ԄZ GQ!Z ;Dwy>:,yǨnE'~;@zQ$qO/ˇ?;~ԁOIpjas*1OX?(!O>/c7?~~h< bx܁\Ye1n`\f͟w. x?XYzX^ "M${;fN] hE`znAnF`=*'~l=\Y,5EXx=PAHD| VkOa7 u7G7|luT|-j)u!qwFЯ T+: |"죣)q9Ak*lI2ݙ}}"'i_fc/,2f[ѽ&hm5%7y u ͻ[kšDըٚĵ\R^ }|lVgeK*y㥐o?AО i}Z?mb +}CYu`\ݞmhw6mO.$:C4Wx_fM9u%07vvgޟk-sn[F-<ZȘUt]}yLly9 Uڍ)u!lVWJ/U~)ՒD`^KBJP =G3T,ґj}_N-yoHb/Yрn0 /(*B+}5+ W+w9btU_V9G</q # Sz6bR>W=/rﺱ#OchZ]z) ?*f]c:fXC[^_tR*O6D(.5^ta7 ɂVN. Q 4x 3="X`,[:MHUخ'%뜶ܶvrmV""ujMg5;[j-gnKt-sKoZnګΥTK>)=ڬ뜍q:iy4Rg=N`iDmKX5 C4E Yxg"EG<zH:U*5Fo=sz ֪LK|6?QU=Q=tFOtjhâPtI]0~-~M߯#߽g!-x6\zz5:a ጾ!B#T W a6|}ZG&XC}#󃭟K .*>ՔEڅXС /޳:YV]_\/@\ sxZd?&a:?ɺOjf jJ#S<oeD8ZZ_ZUsUd %,nLs3s\M$kar22~ .^% HwR?S0 AD-)lvwom0(dӥ[:q6D])M7skO-~p5[ iIzg{Ի-n{HS9.}uV.8Hߓs}폞J\Wk%Ojq⛺RKkeΫk$v|j_X&Zc]W6NV_s%j@PHq l.Lo8>TVp`аu,<`[Ev_ViA%uwo lʪO3Ʀ^86$Dhr5v^*r ȗVjwPTX;CQ;`]Mz3 v:;|f vDaWcWu}\a $WT;XGHACo0n* aYj�ǚؼT,m)-)hil^Nc=qo-O+KH|vK'' h^z9-̳VC?~Gp*JG5v}o)SF<5[|pG}60HpHBb2~( g@g9h/^t i?/OX㳊bG":)wlڴ,RUF*IHH}١gU뛥7f⪌}yyȩ;N ?891чRρD&Ü lQN.xgj7]hfGĹj`$nR}<gϷܛyuQ8x3{z&0ąGU&8!c\8|]55s{mxp_XJYtU~H8w.Gԭ!T!SvקBJqk!…^dm}$ڵ7^g6sԭ|b$6v1)q6/INW Jt`[fQjHޤ]HiT"]zMF=Cs!LA'c`oMAђXaloxb?\$פjx<1JYPN[bKo~o+z^ U);L5E Q*C ooVf5_Kn)۵?2%}É1\p|dO7yƞ,Y S-חu֟}xa!S.J ,iwڗ+WD_ Mmb˶d4~I lbSMG}݀n]g|W0r1j:nsO?=E|_=R/=oԏvDPy0ᗠM ƇEH*SP4`,zG$&g{D^1́78/ed9-~^[ִФh,c" ٿ;i8(\tX}fkå!|lX{ɿb='P{MQؿtJ%{pz5kmEXW疽Ѷ)C]tϹ[B|Q@e_IߍD,D3X6ϝ͒~̂"aWz V!VvjLgx=5w]lX-ySV{pD.wNϣRġLn1׀Iy ^Q[\Y\=O"š?av?WR;31{0mCե1DQNۯYn.,T(RTtvC3Wq@H$k*{( #urW\}aӺhNl_'Ҳphln?hBtQىym4069-sWO;CKڅYz60="o@.JkKCK^:mQ;m0!pg[,-[!jas-gYWһzY>6 B)NlL絖4 \]7ݕ[߯8/jQ|B5O7C? cO1g#Qk}&n u>:yD$ Gz{!0ձW6=?$6b/`+ꦮ]�^-?dXX6|*3yl쭻cUU6HFhruyA=�)rV\k;ȥ%\(L#vs %]μ'BvQ%bVfͅL ^+}`̿h}ת~w¡ߺc٧NOu�j +`M(L�[f,4Q$t:&TNP *LJ}g}0|o_o� 4{> k{"1 ;6K0 '|pNb7^1&3005*ȃ[Zw~m)4Vsꭦx [_vWj}[7iyl]̖Qy<㯼<t5NKewb~ig2>5088=OW43xɆM[2tEw9]8Vd'p=Չĸ NS`*S+rˇBS cR# ͻ[JZ@D+]^3DV9[&ں$'cVeqbIRh$i0[&g6NhnخhMXrC-v^nUiFgZ/QCړ; f#G�1(YF�MW?_e _5dG{t2`?4?뻾}kF T^L(ۊ+L%*5]y%Hgk}OX("CuLZk>2g #$V%{v ͆Nv$ ٷ:vG7<v!jMu{Ǽ>n\v9N[nH6yۂ҉[״dKp7ݕ('`ET" oOtCRN؄.)}wH #a;;e nQ]ʁ]5qtmW&ٜ יl e\,L.U)b=b'<:E%*%^A2D+宅vՅuYiFX?͑#:c2Bvnnljev�<vӮb}B,P':gF*Y cj>%p0apu2YR\$/J,xLJ,pV&?$x=%i`^XOhZjSo÷i hXIhcscFY7Dv-pƙ<!Ӕ'O! MkNlc']+>1 kybBZlUW#EjV"8k,avu3)qe95$W> =t\3Sb?bi~[/L_ ۷fϘ {sQcr- d%vUktjFŨ8ir&ڳ8|溑rw{%q$R**I&:.>� ﬒7kt /m PUAoцVWOM^*V;Uh /NH:cTQWAuQ!EVdے=VH );ҽ΂י?kc 4HʆߵTP;\:-'s $~ B]<XDL-,Iu|1nruqAIt&#Ĭ(- L/OHJb_S* N JEѭG_Y-g+JJ 51u;aGvduߝJ]Vh!_O? >tԧ�;5 �ꌐ`,DAH.™%h ’xG!pr'vͿ'vlIe%!/OD"h?CBpR\CK㻞yFS?nY_l(~>j% M@Ʒ#B,y}bd{~ G;sd^ɿk#@v墪kya^mVWUyoԑt]읠m�Pt^~<[*"u`1n/-f%}3Z|A7$Bpc3<Sޞw;{1M6hQοa[cht5>mo! q0묫/1D^t:帵B]ѽzZUV,5?0*944M+͸aUoN]XZVd]wV/!.bO$vNn|ɽ3a~m UkON];9Y0sza "vFY^ >r`'8:.:xS&nSrBUPZn&rĵ| }ok t  w]P@>|?p"`//Jkp˯٩>(o ӒX9zrcd`Em.O6)ֱS<QUX(~ӣZ`Ċ](}㵾sZ_wrlt`|wjwr}N_lلz8|JN\bg =azAѐ#<DKm dr'~Qk*jм NyTvK:-/MSTћ M1BjyJ%"MdϓMC-8 >3?v`Ow9Z,etep=;N0476D'/uQ)>' TS.ʯXCbs32WYZ%!hýBl`/ƆhȺ0hJ.EkdHGÍ7+E@"x?D"/ؐwdi0Sz;E.T$[:$F'g,؇!,< a1ACBXdhZKQ4:$==&=='`<UX)}q=aCMÜəy! ?V&YϪN!,F VJb_ž(R{p!썊E;*=-}E_a?)|br UOL ~-W::ʵ[\y<<mS#QԦ=Șihd|Ky!yjzdbKצee嚓M{iLcĠ#U,K0O sfXi �T!<2g vxff2_۵kvV gtyBp{LxfhU3\.Ӕ0:o:gS̰km&|>C gHs^H,PAN8]նEsemm)vnsikkic{meʕ75VԶ65B+mk+R8̻'7269:BXf6 NLOGGQЬi4OLB@~@ȌiƇ&vƉLNqPuf69LOLLkGFSCT&$ڃa48ˀP5ܝQdX-GW9mFZ13\PN8@Fxz4Hs Yx)8͵p!;ggiF0)*@KC 4J3o 퀴 (#urj 2L˘<?IP9)y`Y3BZ*ȓZ\vZeL X' fȫJVn/af {;p柡"RKrk?i!tBxJP3LgDk_VròR YH\zP2M ʽ *q#86C,&W/ FעJlp >QK*Q\C6*;S483E[48ETa["|M|Gd2M駽h=D[9IQ^$2-o@}NwgǗzHfL|oqC+4 &KK•8 xAw.~B!1YEXK{`_,8a9+p08 c%`mF?bq4p<;N8 gtѩi8gp6A\^-DE +6Rp\NR*ո: R xXMV܆q6͸wn o bx� xxcxOI|=xϢx'ޅw=x/ �>oD8ڊ※)@^ ʂ~ =lFE`Ys-\Z:fꟚMwC#Sc^3~Mg$&1H+g+^K|1ʲrI%}NzW;^m n]c-3MIjiڙVZXIy)S[]g/M-i0"D$ 4:̒4[lI 4<;>d5KZʖimD"ڗx!*;XV]#ޛ%{wÒ)N3*WMqxuk26 wF]<^^^bvnpr(vh&2"HwD(}}s|v M` KF%^.%>J$> g49Mْq^f@/ 'үL9J?G2K`ځB݌YYY^T˫[&,Z{C+ 8<^]4:9lgL!ؘdNOiL53KYE?ǣ, endstream endobj 110 0 obj << /Type /FontDescriptor /FontName /b60b8e+NotoSerif /FontFile2 109 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 111 0 obj << /Length 1165 /Filter [/FlateDecode] >> stream xenWE . {EDdIPBwOvfS}|.t.zyOtލӾ';Oxn;ѿ|~.T~z;??]_K=a_j~ٮn/uҿ??3?"|`m;?q=qHjv: c=@rBN3I:ɶI.' Hb#YrX\$CBUH"+p+@Qަ3Y3K;fxG͋J$J; r޸J@M2d$]dF%sIdI:vމddIdI'%e\5^b 0;w%݂.}w =:offyx:'Ht0dIש�;Ux2%E9$^8^/K^ x=y x-�^jޠ8d^qVޠ  G ‰2- 7@,ϛoFp$y TCpI- 6߶̂ Y$"vk:eENqAX$(v ݊n͡ W:#M+Fte1dMGm:=+#y;4f8ߨfW(IŰ1٣6Mʻ96dH2w0^2.67 ,]MT"٦dM6%xyrx 'xgJ;SYS5 Yliޓm݋lC*e exWuC6;%<8fx26̶| o* K8A$2\edP!%^q_6 eΊm:lQ61r^[  oN͡lޠ6y Vm?24`l` qV52s_idQ2k JDkybSOfHTf5ʱ1 l I@W7LxYa^2nX^%y:/U7( endstream endobj 112 0 obj [259 705 705 705 500 500 500 500 613 613 613 613 727 727 727 500 500 500 500 500 623 623 623 623 623 623 623 500 500 500 500 713 713 713 713 792 792 500 367 367 367 367 367 367 500 500 695 356 700 623 623 623 623 623 500 500 763 763 763 500 763 500 500 742 742 742 500 500 742 500 500 604 655 655 655 500 500 500 543 543 543 500 543 500 612 612 500 612 500 716 716 716 716 716 716 716 500 500 500 500 500 1046 625 625 625 625 591 591 591 500 562 562 562 500 500 500 500 492 492 492 492 613 613 577 500 500 500 535 535 535 535 535 535 535 500 500 500 500 538 538 538 538 634 634 500 319 319 319 319 319 500 500 620 299 584 584 310 310 310 370 324 500 645 779 645 645 500 634 500 577 577 577 500 500 577 500 500 500 471 471 471 500 500 500 451 451 451 500 451 500 352 352 500 352 500 634 634 634 634 634 634 634 500 500 615 500 500 500 861 564 564 564 564 511 511 511 500 610 606 574 812 812 705 578] endobj 113 0 obj << /Length1 17152 /Length 10506 /Filter [/FlateDecode] >> stream x{ tǑh� IC�<�$'�xIOQ!PeY-EWV|ūO ۫|N|8yb'fȱW3)o aF4i6H+FOvdlλȕ&!\؞ l<U>09wxX@2ϠAħ2ܔ;N�w ~/9�sΝ x]>Y(GHs?9ݷ@=&ykF`o"z¢o-ELw#2V}W/΄Ql"K~JplT: `pAW1޽zqe<WiCA }$4 R�3/]P$HW ohJ!*VB1${jlooDNĢ'n"uL,  0PRI 3sM0ݒGPD OC?A HG&[?$ =d-߇6#( #xY 2ob"zM8VHu�%ǁpEgO,#<ґ@E`!Z"2D]҇@8THC݉5YNkDM|Y7I`8(J_0E3,*:&6.^P&&%gdVBl).׻kκ)v_ޞΎ[Z[=nWC}QS]UYQn/[E&cArd"A%J<#lH?b\S  (4!v'c/tNҹFl56Y7džtq9s�ʷA6_ʗ=B ֝>bCxu<{#.w&6kŘLL,c< T I!Z::.V;h26䜋B <ː!$YDtt+{mht0nn^hLo ) C+Ϳ}!#r ֮~Z׻!N˟#х1^#)>G./{8ֳ<=zxc򙸸7hu @sߪ yn )Fp8XOWk(sh D<0ӖMժ(:jo=D�w0FUO#p0D#5)pflX1q ::< S_r0,H<>͆$zP �<4YV :+ >n="3 X1T(g tAm>c1C hś/dB\=X,Yl2]gֽL|Z0XmS`Vs9d]}L)zƊJѠ0Nm�Ի'B8 v@ 9 7$N D҅ns@(PA1:l3b(= @(p tQp+8<u}5;U(B bY%2z MnR&vP+\&#լ1"hT: "zO'Ze87M!g�QoQ}D\mP i:e< 5tEus]Z sNd@",WHA<xMgxY>to!.s\@5O W"jŭ=&#3ܽm9$$7 <Maa~L. <ºc)%H �U9:2<a"8QNQcǑ >:Xflj}Z$>RA#0�p3ƅb8_}('ZRgTl2^ps`ͬK)'^gn '&0߅'Fw'^E0^șձZŇVb;Vz;Vp s^u8 �J' �Q/X&a�.Fnd, 7!O �7j0_E=i"4o1 qpLiNu&^DpXV?r>~BcX|Y}ӽW59=^:|r>9 NxP }>w}{ѽ{=|/}P:GNO'0@ w[Ǚ;?|_=.!0~#^jK6F?{3V52fU#1;ϭm"&ޣ}e9~j&;;ɚ+?>DLtG^ǽOz(1F߈Q8˪M*qBš T/nD'@&qGwLjN|ulaYPus[Hzsn8ngJB#كq(8I0gRQ`  "@a� %?%.- p`<0PCG0;oPXH Iwda�B #i2JAmICK7/RDh6<l8*Rx Ї|M%t=_^Ao7-zG7^.ٺ[hrnUF~$=c 7+|oTDt%+#h3a F^Z`q u\:fP1uRV?FO蜈BG[t _zt@~?] uBd*J,M&=O2^ ux]ͼ\lT>u:{uTr YD?9�__2-T9G[ODfSItC@pDb QG~?BL0bcb;bǞCqθ;⾈? g-.||Q~ /'T!U (*[O&,irZbUj:R;AoHebtf-qP6r\ZDb6ˑS89ڕ)d5USӪ"UU]MzUQMʒdwBP2#eU_t݄9MIndWEgMĤc:jedϊ[]EQdӒ(E8U. oBmWfUr"ڠ8sJ@rI.'.3-/E9(KE%_c2pə{ A"Q:Geg'vթ)uT{3?e9K3Lwk/V%]\yWoyu^C5T6_ôlԡw]Wu˺@|ftz7R 2 J (n2gu֒Der(-8nE~kG*37fI5/T;{Qg7uv829אMwuESsz3mGj/?ˍGGf^Q\ z!˺%jD(<! T_T&Q;gWӜMnoMGB5ϩΆ@W!;-.t)9>oV?e΃<�l6uϫJˬPO6o͍f19qRȶg6z纥xڴ.[\^|>jAV~ƀ^6sJx,p?#WXi sYzť.Va&3yja)A<:AG̸rfz"ZJl,9RjZ2w-t;54cUG0Y^8L:J)RLqT*TILbV^FIOiQliXREakի2uLMa1J uHC*kA8,Qĥj/ֺ˳l2VIڞ_cT[x`ȁEapPiޑA5R'=-6kFRaurӸс[V}KmЙ[2YmG~1?Ѧ3YYX5;{JbkԵ^_e@kvSS$IW ȬX2f^~h8aᳰvGX/.MW[^7x;s9T@p=PK|Eck(Q " 1s W߶H7tfzAgQ *_Yˈ%b^ÿM>Tτ_m1K+֬ƱUciFE7Ūw-~gz;O*+OQam~y5Xy:AׅLFQ]f_Z4[ >EYV^ ~ל3c]fkښ^[d~,=_˴|fV'W^Თve@ o_mk6yjqI$}Dd,קͽ|a1=cZ;nm _rZ*b36H Nj=@< 䏎<}Ӥ9_Td or\Ż((ޟ]!a r_m4f<F/ϹT-QPnށlDl}_ٱpd [ 9A>H"y\H$kV`Kޠ=Ƥ&,ǂHx૷4? Ier߸knh6n:ؖTY>n㟏6aOLm<Y4Sݱ7c]ONZt^uyG8i#1q1Qɬ%ɍiŎmjaw�GVW磤'%qc3{h,d%Jv\3,S 4l-.=4K9e9kySђgl/pɳZl.lsͶKkDc vRM̟)۲S^ӹ|q^k:_sc$urMLx,Y&wtwg9ueVTlO܏_P8 *]H /.OWk2!%m荤lCfX'#f>mzKf<ZW_- FmyִqMŖ]mMR<Stx$9Wo4MyYLRJ1_P3S5=u\6lbʐlV2Mb.3ZZ�HőMق4&5e}e1!_"1YȗWÉzQ )reqz"%<L$ӢN k4 [qP1poǿz,A[Ί69L]^jx2$.arZtIׇ]f^vp 5LT3j;j)G^O"(.+'-:_P\޶1-ޞnEK- ڵ #h'PUBUF& iӟ\.Sek/}XоzzSR/Vß73GmilwyPaDz߄!Z)5oGI>WWwqI%5[oL/k~`MӻGS? likQR-.1NvѺ{&TGq rBr8?SP!, {=&!9:cVƧV_ G-b<;2_ꂡ֊K''w-#חZsHVKSaY#;4p#qc$f=(sVU}S~E_21únPUչ=Xs<[UQRRFcP/ >֪3f,]ݳ+]RoSʌm9+D|^,e2B?G{6#^A.l±AX6 tZ|݀ cf;S34Vr ɶ-'fks'keb}oO[ݱ}ԜVԢ5ko68{&9)$,ʌ T'撲8H1 ʲC&ʚ̦&G$Iќb`6SV4 ֽ:GqnlLrB6+fpbM< 'K8 > KMSHr %ED;]qi ̻gn)v?Sǃ;+o%쓧ï] ~/>@>eÚYo/!6}NKm/l_e#a*sum,�ttbPZ1S[inLB,G_NLq/<w2Jm:=ҁ!w׉O`d+~I$ѣn9֣,3$i ;wBn=uЁtF]l}C>:wtę.(?ag\ſU'Ode% 11FAw`Dw W$!Qtb[oM1j(uiUeweNkkyxX g4:9+׳:zU;(s?ٯK5HK" #2dؓ]9QZ9a7O7q+fups9\:̵{1lє_o94ӯU62z<ҹw zוmVxfy5[r֡CYݠ4)MPzCT"J5&$fəR_ӵ.nNo|AG)ZcI֐=q|+́{w5ㅘT*s2!W!_Ϟ 48$S\gzL[즂'ׂ3JwكK|IUfT:;Yi&yB""/p㾷2h Lj$JX(ZAYlJ{,0A紨nzۙ.0N-DTbͪxPO~Gde{Q2]9#eL3Q(]yyb4-4K5Wp}K AgABlBsK>5ks*'hl\ ~.kEkkӰV8 sr r|W-|k8c[^%;:SVpf>Ӡ`8qi?r~!iVAyNfTK +9Y=w{fWY >F澄OcQð~PKOqޝ=*ܓC"mkqzѳ}kS.Q?yuKŸM\3mBd_3Z$,2L^6Hض4!:ָ6x)7pƒbLG(uqSK1عld|ɴ;Q_ ;4}^hlZZFGzz2~нU7ox ;:�tZ,͆\T-f|*AD>Dr`2d")Cg=;Uam.O."5ζ6j3y&isw~27&6<ֽ1;FKv6Hϩ?S=_>76a p^^.� hY?|tM<ݖw;3`G9O{I&i͂x?Pݰ[;Y;* WWZ\خy<[k.:аlk*p'7x*}x*= [4rwۑ'Μ+];}j—6kn^!7 Չ'+w_XcOi9|9`ݾcgT*3i&s)9SqI=['~k~`PY*ə]J\z|["q_Jq !Su|<42.P}_ Cb; &{{<˰=1weqr|x[ؼ%R㒬UV<&grĶ/j ILH <>T@&^C9i^ +D8 HIdX=E-#վv9U'+K5sѐw*W:fTrx {r+9sG=_֠hMޅ`qxxhq w%"6 s%rWDJ=%;'2X%) EШא\^I b ־a}`L_s%|ߺ>[]ϿgAdŖ9QN?8iUYC G&,ShTfX/$opbMln5>۲-9zpUOW煿#9uY|5X&#/)nZ :{FKMUJߍ[o69X%[4t-ZZqμ]uOHv;u\[elSu=7|TX# 6f:<zR&=`ѠlE!(~%^ "ZF|zi暺 Z.4ۆZ*m7џ<t#zώrx[SyVGi=Zز~ seMO(#GԳ3Nnӵ&+Ƌw=ZEQ.! L8cHJ搝m1c  =:[B&J>VpJݙ]|~μŖ Sjcl˿jlKNتvr~+q-Z472ɰ\?pŇ}7ȩ X7sL.ԉs]CS5g3j) uȢkT4֐yKtt:/=6vό@u,V%>uw6e;36K0'%ą a]bNOMg+TS>v9,9Uqq*#1fŕ^%I:B޲򵬭x^e+B�'l6^_Ȏ1� e PXQ6rehve CbY( eC^,GXFyOr,ҠKk{IUb9 rI�`|vNeKbBrZ!iTI2,AX=  hG*cv&S,"G,ǡjYO|"TvcaT-~䬏m+bfg.R`|xQ?g}]ɥYV?y''YN^-lqn' I:tEoλ8'6N.C|ysy^vjz>x8;]#@\4 .T{-;+ϙ'}A3<A 4>= .f|si~ܷ|lw}7/oF͙OӣK0(lN]7ܝu7w枦Ͷw m6<l] 2ig[X[&.+;FXMOL%$b87 ͏禃 O特%f ~i;lqق-hMBAKÓEP,ԌUYkU|="~C]7F<$Z^lyj?!25@;OT|6� WFQc)@;K;^f�W_.^3DWD /#(jrzc(b7<~ȹIh*!^WT#+Y@kfJu-,D=h=<}lM0 1y!\8oE2)4|qr#`6b^d;(Hxzg̃nPfQ=R›u]laaŷhBkmhޭPChoH%hgfyO2.,pī</Io3:By^ޣ s.# ?Ǐ̄z{kk?xDVr>@bb>r›qDM.ě4fK GhcqrXq8 U8 gc!Z9uX 8\؄[p1.V\m q9 W؉׃7`݁˖-vmR],Չpەt"5B'wH'n"\Z.Kw/ߢb}iHg/{K1م)or�=65L^ !s^:]}At;7:&Bj405<,ttKqlK/N%3ޅL&D5F$%|'X矛[-m`'"y@GW[}JE;zz%%<1KB*> endstream endobj 114 0 obj << /Type /FontDescriptor /FontName /875e7f+NotoSerif /FontFile2 113 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 115 0 obj << /Length 820 /Filter [/FlateDecode] >> stream x]ˎ6~ -E`Y"E0(,(ȆƳ? ^x.~-Oޭmm/e;n_||;-^_ڝχ}>\=wdnK]xx薺Z%H?Zo}j0[.us=Ἦ-u2k\޾ML:$(9JN!I$lB$aY2b%df$a$ %Wd19!$* wlIN:9mm5^6^2wdXtrgepV- s|=R&Ԑ X D5݌+8hB$3- ﬽WZނEyxgƫޢ;%#Er"lAj| ST@2u1XUmrXaI 5MXUm 7Iz$׋wjbjX`7juQ7 &W:x9Z7 Wޠm z�/!4^ Yzu"6^FxJDxp"Ӛ6ߦ~2F4T0F45;/=7ʶ\&8hӲ1+s,Z#%*0[\s`ɨNX^’52A{wN%9iCRd7_]<8I<\i_VfZd'N i,׳x!3dfб :Wfq3n8 :OwB/==<w9zm.["ޮ7E?h endstream endobj 116 0 obj [259 640 564 581 687 562 576 704 627 458 613 492 615 488 535 787 595 577 667 858 945 595 687 678 716 546 556 945 687 879 612 610 527 333 604 494 604 535 768 470 696 604 473 693 496 579 577 609 605 496 333 461 592 768 579 577 592 577 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 613 535 491 826 755 492 319 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj 117 0 obj << /Length1 4960 /Length 3295 /Filter [/FlateDecode] >> stream xX}p{m dɘ1+v�KYg| YƒC!ɖ,'Вh%I04ӏL~vҔt6mL?I&L۴LRmLv 4mU}{} ��r{߿2�Iv[<RYdWMg*wDLr<659;LPqāˏ{ ˉT2(Mb/bi*Sa4݃p"k8߰ߝ$kao>2?ڊGT`2.''4[,[J_Mo|KY{qkWrM C;> QILp΄K \7r?PQ.ZT./)#�3liBѰ}�Ftӫd+,a9I,n,!,XzօK%]׮ˬq҇ţeuc\=<3Z(~l�c \gS _9yլ⚸�VVR V[͢ZX 7�nLۙOʊ`DU@UJ#k\w[B!-.8E٥΁Pdu3]K`ġtG]LÑ?)jJIsD%Q+q.>RJQݾݮ�Ҕ9O-*b.Ioc<4T14T16Fb2aڋzlywU*2wҟp*ԭ5oPQحQ063NMtc/&iQӉ\F$Jwuf!iZN/1 hԏ 98) "  FPXi(ƘfRŖ~Y�L| "k؞]GLD,mX,Sh0aG3M{{*x8PD܍ދvl؋EN;.{PBd\6Z V.gg] 9)9E}S}l5*h wDoĬmDk3;1 !@s+>`%0AW ">IJ^$ aqkyb،_6+%.MYtK?̘C`�C\+qղA,ʶYG0㳷?gE].}oeOu/58g O9~ݳ9?A`!pgG˼f?>NLbJ!%[Q ~Nrok~ ) [EC"OT 8}[~&V%{mbC'{GCy'}r[V PYiϝ)4ElFsóC~mW`vugO7حN0X7ժ/p}jȟ{_ _ _LPD Wb&ضW1?Z{:@ra\U\u~_/7ˀ,06\#{|䩱CоK]x+^r1.˓Uθ=f fQKI16X;qx[%:^~rLS!:#XY≠jlֲF= ]ޗ_vl;R׳,<v2kW,OXֹ+k+˖f!6gch!Dg΁yTzu~򄶯т-1/PrF[S L7HȚj5*\~f+vRO z=!G )4.9׹~;}w hWտ7;Պc ܌}+yl^,)^|SLc\Ƣ(ӣa-Kϳ9VWV޸7j\gqbuRȋQDHmоPPnm o-돩'Hjۮ}<Ϣ]xjJ,_[SCsxw'X>tԫ_4:z᥸-m쫤ʷrlh`4L\/}oWq'Y{B=Q聽K5@4Zsr~tnn{ uonZn^0Y=mq7Ë/;g"#s$ &f٦$t֠y21۵]0:8<;`|taN~ n+CǶf3u#*x~'M-Aٷo ejXvFgfHQͩKWB@j]kK_ܱܳ_P&O=fm_jI+w] 3tYn]6"f.1˥<nR<*(ſ4 e$nɴ. O� l@u"].:A&tKS\95}U0_<O ˩Gj]E/@xC odCX/-Iij ]m.fi%S\H>96&'r[sfrbz ]y,U(Lv5S-Ded8LCYO&Tnpk,lىt&]H&d2IOy6eSI'cdN&h"=UȧwO4]p[Ӆy.L.Kc$r$jydx:61q?Ey߰6 a7 HO(G[:$<~!܄qXW>H PX Z6r/0 h[!nq !ggy'9o 2SX}Y4mX 0E+M^XVF$0X^$5/:؃0ZQCb~bN#J%aN 2&onCmGb_prD)aܶWf7b 6CʥJ,9G3a#gA&ul[3^Gb2ǜv ŲMz_'۰z4q=7`;ĜymBX3(_w4$e_J'J/J9ޒޟ5~kU3[.=/K_ KQIzI$WE˥x>/H@Dۥ}-wJ{B˧MƤ#{0דˎHd0 =GJڌ-ElMIc;pdXYK;]:B1~<%|0Ij[<V jLFoTajG ܎3; ?% 3 endstream endobj 118 0 obj << /Type /FontDescriptor /FontName /f3d534+mplus1mn-regular /FontFile2 117 0 R /FontBBox [0 -270 1000 1025] /Flags 4 /StemV 0 /ItalicAngle 0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 119 0 obj << /Length 1278 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }ik/y_!}t~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=n?[i(JKiU:JSz2QeL*EJ̔Ye,*+eU(NU-уk5x5F^ky ^#k5x5F^ky ^#kxZV^kZy-^+kxZV^kZy-^+uxu:N^:y^'uxu:N^:y^'xz^^zy=^/xz^^zy=^/o xo7 Aހ7y o xo7 Aހ7y oxo7jo$JI$$*I$ITH$$QI"IDD%$JI$$*I$ITD$$III$$u>M&Iބ7ɛ&y$o›Mx o7M&Iބ7ɛ&yUoa[5joSor4ۂs�ޮ>,x/x;Â31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x e#e_y+h܊7k:/Z5dUluz5n[eB&Si|y(%q& %+S%*ABijPU6\h,(+L,4G5<cD [˧*t [ jjaijIxʪwgFwضR>sh>:OVRP*#i|e0U,*oU/*[U,Nmlx:&\}M)L2\%CHF7էʻBL)jƻJ1:%H߯:=S۳zrmkO媳7 endstream endobj 120 0 obj [500 500 364 364 364 364 364 364 364 364 364 364 500 364 500 500 364 500 364 364 364 364 364 364 364 364 364 364 500 364 500 364 364 364 364 500 364 364 364 500 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 500 364 500 500 500 364 500 500 500 364 500 500 500 500 500 364 500 364 500 500 500 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj 121 0 obj << /Length1 4560 /Length 2870 /Filter [/FlateDecode] >> stream xW{l[εc'MةӤ v|WH&uQ[vbi +ka)eӠ04*TV!nuh2D5!ԖM:D}s}wϽ�pT{pjs}@( Ńe;�FYuhor HLMūNY CT0* otjfnrN/PG#+>]nD1tC9|L2,}ur};S ;Q߇<M/gX9kLd&W0/ґ" lDG j×P8;gװ'CQ?Sg`L7^e@FBOc)\3$\*DZ.+/)85*}#VDx! cj;i%3\+pxppѡlVl ʠ8L&G,Ƭ@R#J]і-*X\Yv?I``GZ;$6Ic@Ȓ:DTaHw "̱:*y=`f ]Oh7-`xzdE x%cIc>@atzh|(h'eQUQZO۬LfA~0TRn`ȟ䂔y>`ɜȱ:y9fjq?BOpixho'(hN \jGK\HƠOi:7s9,:c6#JnlVe9%@a#/? r s("6Tcz�FTrlӻ_ s]bE`e 9DgPc0&:|g#~v ^pq"+jg"'e jJ.xciRO"G*$Hd If"q06H@+<AJssnk�>E#62@%W8w/B<>k'\~]/[oqOO5 gO p+^:sllKD5:9F O͝(Ny?t)w9ѝO]ձIwdzfU`FKxG/l }7qOG1oOUTP+]vFhXvS^X4%Zqmw{G~"0qlț*jRIWms94ΆBgC.~W} H}cc1U#cyūFp8{gik];y;ϧҼ]ف1ØǷOCӱ8MS^^45\C+Qoln;ltXvjY~ ?SOVbuڝ.A9.I%`F^OlVk;<k#/l}v3M_!ttdp%HTKPϓϓ|?b<A2T9ݐB7ľ{ `ewnZQ-V)vC_x¸3X/#nGI{=7rqZO@o= М /Ul%X�7Vp WPs*|;8|쵂V(lC?w0\E!@ Kkf,Knrm k3,ٟ:sXߟnv~j/<n|~#95_ #o{5hEM+Zh5j5@52멜p߸~So yE&d3߸ګ܇{ܤU=7+`%81Ϫm8[M7e[|щξu/\!o,y_۸b:ҺN֭#MW` ZBsx>VhJ F ]_;ZO_DدЋ8:tփ$ː" MT+ m>Th5Tp ]9AmVY.:P/R]cn[|ߝ\:6ͮ6g60two'ٙ`'$Sjk:ZT"a[_FҙX2A[E=8mS<53A%]fuV,L"r9 'Sh,C9Lr2/4ӑL,F4Ic9M &&l&b!\ael6BcY3Fi2-,'ñX(E 34Fx<ł33s8L\/jaP_.hWwmF c/\,p$`)B0kmHm{`/rЍ>EqH<80AAb9ی]E.z%68_o3i`I٣ErOP=kYS,Z`R"IkiW % ʧ17IWAO #h;qYQs2,M&(mrv0#Rv̎لe߬3ha>"*{OʖH8BU2b6"{qBMW6, 'dobA}#T}2\JJC0};bXSw 'ńOm1eB=g[BJ!Sb@DxP-P&&=AHFzb?kfW[ "1>YNu q<ߊ8y?InjFK%V,o_,/�@ሊI -)%ed)'d1$UDpl-=١noSߩ̷)8-2oost̤"ѦM'9UR(�_ endstream endobj 122 0 obj << /Type /FontDescriptor /FontName /bd0231+mplus1mn-regular /FontFile2 121 0 R /FontBBox [0 -270 1000 1025] /Flags 4 /StemV 0 /ItalicAngle 0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 123 0 obj << /Length 299 /Filter [/FlateDecode] >> stream x]n0 w=t|6@.zn@(W@- 2K2A t!s]{\�IZMuD ryQ8nzVAd<lkvm+t)nrdD D':h~`d.NXEW58m1/s Kgb` JCT~yZ 柫8^3FUmy7bѵe}`,Q KX֬ք>X##'FM0?QVMMY5+�+X‘P{5A]ӗqp,y3, endstream endobj 124 0 obj [500 1000 500 500 500 500 500 500 500 500 1000 500 500 500 500 364 1000 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj xref 0 125 0000000000 65535 f 0000000015 00000 n 0000000254 00000 n 0000000456 00000 n 0000000534 00000 n 0000000585 00000 n 0000000857 00000 n 0000008511 00000 n 0000008872 00000 n 0000009041 00000 n 0000009083 00000 n 0000009132 00000 n 0000009183 00000 n 0000009360 00000 n 0000009535 00000 n 0000009578 00000 n 0000009746 00000 n 0000009914 00000 n 0000009957 00000 n 0000010001 00000 n 0000010045 00000 n 0000010213 00000 n 0000010257 00000 n 0000010301 00000 n 0000010345 00000 n 0000015060 00000 n 0000015397 00000 n 0000015441 00000 n 0000015485 00000 n 0000015529 00000 n 0000015573 00000 n 0000015617 00000 n 0000015661 00000 n 0000015705 00000 n 0000015749 00000 n 0000015793 00000 n 0000015837 00000 n 0000021040 00000 n 0000021377 00000 n 0000021421 00000 n 0000021462 00000 n 0000021506 00000 n 0000021772 00000 n 0000022048 00000 n 0000022092 00000 n 0000022136 00000 n 0000022180 00000 n 0000022224 00000 n 0000022268 00000 n 0000022311 00000 n 0000022355 00000 n 0000027590 00000 n 0000027953 00000 n 0000027997 00000 n 0000028041 00000 n 0000028085 00000 n 0000028353 00000 n 0000028397 00000 n 0000028572 00000 n 0000028747 00000 n 0000028822 00000 n 0000028984 00000 n 0000029143 00000 n 0000029310 00000 n 0000029546 00000 n 0000029689 00000 n 0000029837 00000 n 0000029989 00000 n 0000030129 00000 n 0000030273 00000 n 0000030413 00000 n 0000030561 00000 n 0000030705 00000 n 0000030849 00000 n 0000030989 00000 n 0000031145 00000 n 0000031301 00000 n 0000031449 00000 n 0000031601 00000 n 0000031745 00000 n 0000031898 00000 n 0000032042 00000 n 0000032202 00000 n 0000032354 00000 n 0000032502 00000 n 0000032650 00000 n 0000032794 00000 n 0000032949 00000 n 0000033097 00000 n 0000033245 00000 n 0000033393 00000 n 0000033536 00000 n 0000033699 00000 n 0000033789 00000 n 0000042105 00000 n 0000042322 00000 n 0000043676 00000 n 0000044590 00000 n 0000051595 00000 n 0000051821 00000 n 0000053175 00000 n 0000054090 00000 n 0000059772 00000 n 0000059996 00000 n 0000061351 00000 n 0000062266 00000 n 0000074219 00000 n 0000074433 00000 n 0000075788 00000 n 0000076704 00000 n 0000091211 00000 n 0000091425 00000 n 0000092667 00000 n 0000093583 00000 n 0000104182 00000 n 0000104396 00000 n 0000105292 00000 n 0000106207 00000 n 0000109593 00000 n 0000109806 00000 n 0000111161 00000 n 0000112076 00000 n 0000115037 00000 n 0000115250 00000 n 0000115625 00000 n trailer << /Size 125 /Root 2 0 R /Info 1 0 R >> startxref 116543 %%EOF ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/font-kerning-base.pdf�������������������������������������0000664�0000000�0000000�00000005251�14163570564�0024463�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.beta.2.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.2.dev, based on Prawn 2.2.2) /ModDate (D:20190714031813-06'00') /CreationDate (D:20190714031813-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 12 0 R /PageLabels 14 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 842.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 676 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN BT 36.0 793.602 Td /F1.0 12 Tf [<41> 70 <56> 80 <41>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN BT 36.0 777.93 Td /F1.0 12 Tf [<41> 40 <79> 20 <61>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN BT 36.0 762.258 Td /F1.0 12 Tf [<57> 50 <41> 50 <57> 50 <41>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN BT 36.0 746.586 Td /F1.0 12 Tf [<57> 30 <6557> 30 <6f72> -15 <6b>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN BT 36.0 730.914 Td /F1.0 12 Tf [<44> 90 <5949>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /Subtype /Type1 /BaseFont /Helvetica /Encoding /WinAnsiEncoding >> endobj 12 0 obj << /Type /Outlines /Count 1 /First 13 0 R /Last 13 0 R >> endobj 13 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 12 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 14 0 obj << /Nums [0 << /P (1) >>] >> endobj xref 0 15 0000000000 65535 f 0000000015 00000 n 0000000262 00000 n 0000000463 00000 n 0000000520 00000 n 0000000571 00000 n 0000000843 00000 n 0000001570 00000 n 0000001867 00000 n 0000001909 00000 n 0000001957 00000 n 0000002009 00000 n 0000002107 00000 n 0000002181 00000 n 0000002306 00000 n trailer << /Size 15 /Root 2 0 R /Info 1 0 R >> startxref 2351 %%EOF �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/font-kerning-default.pdf����������������������������������0000664�0000000�0000000�00000020110�14163570564�0025164�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.beta.2.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.2.dev, based on Prawn 2.2.2) /ModDate (D:20190714032013-06'00') /CreationDate (D:20190714032013-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 12 0 R /PageLabels 14 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 842.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 724 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf [<41> 80.0781 <56> 80.0781 <41>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 778.146 Td /F1.0 10.5 Tf [<41> 49.8047 <7961>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 762.366 Td /F1.0 10.5 Tf [<57> 60.0586 <41> 69.8242 <57> 60.0586 <41>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 746.586 Td /F1.0 10.5 Tf [<57> 60.0586 <6557> 60.0586 <6f726b>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 730.806 Td /F1.0 10.5 Tf [<44> 29.7852 <5949>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /8f8a48+NotoSerif /Subtype /TrueType /FontDescriptor 16 0 R /FirstChar 32 /LastChar 255 /Widths 18 0 R /ToUnicode 17 0 R >> endobj 12 0 obj << /Type /Outlines /Count 1 /First 13 0 R /Last 13 0 R >> endobj 13 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 12 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 14 0 obj << /Nums [0 << /P (1) >>] >> endobj 15 0 obj << /Length1 4060 /Length 2547 /Filter [/FlateDecode] >> stream xW}l[?$N:i$/vR~vb-i4iR4IMԵ4?hC&1`["+0`l MH&1`ڦcmAm^vKtecY{5�Ѓ Tzf"Ods*ͩL$Q�|1*ފ6D"z;ݒ B+бh[Ɲ_{`?-hf07t8{}>]i~mX'/@9>?RUo ZI'eN^p4Rc]Oj,^w%n1rF va,N?0\yw\v5jV6VO~K>8S4z\PE}RQ[V`xP4v"'3"'5[h'Z9RM$ Mj/?wl g5O2;}?O9%g񐾹Ŝut.3.r:i61.mp/WchQcTc|63h f|Q~$N5;�,D`jT{ +%^!tRXfnߧӾ߼X~ $\3 |GtQ͹ mK}2jLQkTG2˃tG 49 Z%q`-\xGs믈Vz^Y0V7\P|h'C'#@9Ǚu2/}4[uuS#g?z8' >r~tNOhglFIS_~ۨkTk2nXK.:)Y+k\ 4q>*zjOf\k|Gz#l sOKSMar,I[+QbVHl?uwsd *PgM@ıu?6ޛoj7l'vȮv9 \U-~m|HڂTw3 :k['szsd:3qzfwY}R[ R`$>U&bpX s3eLg[k;)r<~.D7g7yw6ԯ Kmo5K?6wzyMI\3jrİ3E hRk"g g ћT7ݜ1�Xe*2M `4䵡C7ңޱP}Kg_rmԕ,opyI]K2(Kԋu^`CUvE*2"W)Yg3D鹁7~}w|]|Wo9 Ñboot.t'/}F! ,bۏ3S+͊ հX%ѹg WvwK =UZ:y.>a6:įlshgx]\;eЃ *d!% R[RYT_l8~7wT'Jmg fK'&g~FU͇t '"QO 1wf,.ѶR<j:lv$ߖK.yHNQM$Ϸ`~*9hwC `Iv=_B5u[{x~'qTwQA\9*dNCmP=rz\μ 2,SQVRʾt~~R-[`aػgp&+i/tͣY_yAXiVwU N+8Sp{bM{NhWxGYГ ΂X\ī*H@PMVS@<Z!o+: ]6کzpq.zGS2nczz ^WN nSpLt.OnWW7?ħbtD1)Ϗ�,LCpq݅W5iOL}lW^bx;a4S\r3|+oo$ar,/Nsr8ar3La:Sx2/CZ4KR-x5bg&X.̤.  yl(xužuG١:|!R^>3T%!Pa< !"`/b\5_!";z\='i ; Ϡ4ib }B/t3F{E%nة n2B)! !a<5DE&Q(d{H&B$rfH$S{8qً>h*x ۳xq*/aɮb4~'嬯#VC#H,GŊh,1?MiY/d`A_iy1ErNJ:$du1^+YFrx2!;J,ΑMŵ^U@9ԉ.Gdo�1(EW{gmӲ_ҟ?9'揝o.jU< endstream endobj 16 0 obj << /Type /FontDescriptor /FontName /8f8a48+NotoSerif /FontFile2 15 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 17 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 18 0 obj [1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 705 1000 1000 727 1000 1000 1000 1000 367 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 674 1046 1000 625 1000 1000 1000 1000 1000 1000 1000 562 1000 1000 1000 535 1000 1000 1000 1000 1000 584 1000 1000 1000 577 1000 1000 471 1000 1000 1000 1000 1000 1000 564 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj xref 0 19 0000000000 65535 f 0000000015 00000 n 0000000262 00000 n 0000000463 00000 n 0000000520 00000 n 0000000571 00000 n 0000000843 00000 n 0000001618 00000 n 0000001915 00000 n 0000001957 00000 n 0000002005 00000 n 0000002057 00000 n 0000002222 00000 n 0000002296 00000 n 0000002421 00000 n 0000002466 00000 n 0000005103 00000 n 0000005317 00000 n 0000006679 00000 n trailer << /Size 19 /Root 2 0 R /Info 1 0 R >> startxref 7806 %%EOF ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/font-kerning-disabled.pdf���������������������������������0000664�0000000�0000000�00000017733�14163570564�0025330�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.beta.2.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.2.dev, based on Prawn 2.2.2) /ModDate (D:20190714031638-06'00') /CreationDate (D:20190714031638-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 12 0 R /PageLabels 14 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 842.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 615 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf <415641> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 778.146 Td /F1.0 10.5 Tf <417961> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 762.366 Td /F1.0 10.5 Tf <57415741> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 746.586 Td /F1.0 10.5 Tf <5765576f726b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 730.806 Td /F1.0 10.5 Tf <445949> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /8f8a48+NotoSerif /Subtype /TrueType /FontDescriptor 16 0 R /FirstChar 32 /LastChar 255 /Widths 18 0 R /ToUnicode 17 0 R >> endobj 12 0 obj << /Type /Outlines /Count 1 /First 13 0 R /Last 13 0 R >> endobj 13 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 12 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 14 0 obj << /Nums [0 << /P (1) >>] >> endobj 15 0 obj << /Length1 4060 /Length 2547 /Filter [/FlateDecode] >> stream xW}l[?$N:i$/vR~vb-i4iR4IMԵ4?hC&1`["+0`l MH&1`ڦcmAm^vKtecY{5�Ѓ Tzf"Ods*ͩL$Q�|1*ފ6D"z;ݒ B+бh[Ɲ_{`?-hf07t8{}>]i~mX'/@9>?RUo ZI'eN^p4Rc]Oj,^w%n1rF va,N?0\yw\v5jV6VO~K>8S4z\PE}RQ[V`xP4v"'3"'5[h'Z9RM$ Mj/?wl g5O2;}?O9%g񐾹Ŝut.3.r:i61.mp/WchQcTc|63h f|Q~$N5;�,D`jT{ +%^!tRXfnߧӾ߼X~ $\3 |GtQ͹ mK}2jLQkTG2˃tG 49 Z%q`-\xGs믈Vz^Y0V7\P|h'C'#@9Ǚu2/}4[uuS#g?z8' >r~tNOhglFIS_~ۨkTk2nXK.:)Y+k\ 4q>*zjOf\k|Gz#l sOKSMar,I[+QbVHl?uwsd *PgM@ıu?6ޛoj7l'vȮv9 \U-~m|HڂTw3 :k['szsd:3qzfwY}R[ R`$>U&bpX s3eLg[k;)r<~.D7g7yw6ԯ Kmo5K?6wzyMI\3jrİ3E hRk"g g ћT7ݜ1�Xe*2M `4䵡C7ңޱP}Kg_rmԕ,opyI]K2(Kԋu^`CUvE*2"W)Yg3D鹁7~}w|]|Wo9 Ñboot.t'/}F! ,bۏ3S+͊ հX%ѹg WvwK =UZ:y.>a6:įlshgx]\;eЃ *d!% R[RYT_l8~7wT'Jmg fK'&g~FU͇t '"QO 1wf,.ѶR<j:lv$ߖK.yHNQM$Ϸ`~*9hwC `Iv=_B5u[{x~'qTwQA\9*dNCmP=rz\μ 2,SQVRʾt~~R-[`aػgp&+i/tͣY_yAXiVwU N+8Sp{bM{NhWxGYГ ΂X\ī*H@PMVS@<Z!o+: ]6کzpq.zGS2nczz ^WN nSpLt.OnWW7?ħbtD1)Ϗ�,LCpq݅W5iOL}lW^bx;a4S\r3|+oo$ar,/Nsr8ar3La:Sx2/CZ4KR-x5bg&X.̤.  yl(xužuG١:|!R^>3T%!Pa< !"`/b\5_!";z\='i ; Ϡ4ib }B/t3F{E%nة n2B)! !a<5DE&Q(d{H&B$rfH$S{8qً>h*x ۳xq*/aɮb4~'嬯#VC#H,GŊh,1?MiY/d`A_iy1ErNJ:$du1^+YFrx2!;J,ΑMŵ^U@9ԉ.Gdo�1(EW{gmӲ_ҟ?9'揝o.jU< endstream endobj 16 0 obj << /Type /FontDescriptor /FontName /8f8a48+NotoSerif /FontFile2 15 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 17 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 18 0 obj [1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 705 1000 1000 727 1000 1000 1000 1000 367 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 674 1046 1000 625 1000 1000 1000 1000 1000 1000 1000 562 1000 1000 1000 535 1000 1000 1000 1000 1000 584 1000 1000 1000 577 1000 1000 471 1000 1000 1000 1000 1000 1000 564 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj xref 0 19 0000000000 65535 f 0000000015 00000 n 0000000262 00000 n 0000000463 00000 n 0000000520 00000 n 0000000571 00000 n 0000000843 00000 n 0000001509 00000 n 0000001806 00000 n 0000001848 00000 n 0000001896 00000 n 0000001948 00000 n 0000002113 00000 n 0000002187 00000 n 0000002312 00000 n 0000002357 00000 n 0000004994 00000 n 0000005208 00000 n 0000006570 00000 n trailer << /Size 19 /Root 2 0 R /Info 1 0 R >> startxref 7697 %%EOF �������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/font-notdef-glyph.pdf�������������������������������������0000664�0000000�0000000�00000016455�14163570564�0024526�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 2.0.0.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 2.0.0.dev, based on Prawn 2.2.2) /ModDate (D:20200225065448+00'00') /CreationDate (D:20200225065448+00'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 12 0 R /PageLabels 14 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 161 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.1 10.5 Tf <21212121212121212121> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.1 11 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /77bad2+NotoSerif /Subtype /TrueType /FontDescriptor 16 0 R /FirstChar 32 /LastChar 255 /Widths 18 0 R /ToUnicode 17 0 R >> endobj 12 0 obj << /Type /Outlines /Count 1 /First 13 0 R /Last 13 0 R >> endobj 13 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 12 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 14 0 obj << /Nums [0 << /P (1) >>] >> endobj 15 0 obj << /Length1 6408 /Length 3601 /Filter [/FlateDecode] >> stream xX}l[u?=>lR(a\]E]Jm96%h"iNfI|Hď=Vj4Ǚ?nX<SbsEjnztMs/dI{~=s{$� o"a;" ө391b{& 24-v))LF?@yOE!A�t(9p{S(O(Ty98?��>tI1s;?],)?;F@ + =SS8c�lZK/*/[f "�t6:ۜΔxp#|LFMi@J:@]de`e/8K� v!8Cd/]5s'_O!E~-PoLf PYO74^[Tm 1 q-]/T+)'㭝dl~G3(Uqu0k=q_�[ᆁnGඁ<b&h"N7CyB v75d KndUBka-7:xN8o*k+~o.qxc5|P.eط�+ ݴ{b.*RRnaJ4d@pCi?((!V7"XR` Ip +l GÛBkd!5''I$t/hE49'4XN C3MUr8,|y,)twKN*%5[}OI(zxС19yň8g̪TZIN*9-;|LYo e. p<_p'r7lSl:O#{h %[p%r>Yi&0MJM5dTCR7rȖVh0 c83} vhU;Ѵܹs4w{̓<<48GIӍ( eu=# 6d}~I\fO$(5.srIa2W*zr2TJT(4CE%_U*YML̪Z);61)0 wўp0NO#C==:= th J=࠯*Y4DWUZ(l8e VJSJԢ2Me鄜OOi\EQ)*[|ןjtaJ)YZO&Ktp i_Xs2cl�wƷ/8m$emM`=rF,&ۚeUq `=< yv_,KZZU9e^5wpz$f)lEbn<?GD9~>vG>>"վ�?!u{VЪwJ\:)rK|9DWw7;D˯}TgG2פOo]fg[\j/i?N@ck4b܆IæaQ]=Rn5;.ҞcCŵͭ>,&Nl~Y['Powd??:Dw&IfKolGd"ocI2+pBxD P! Y^/2LfIwq c1 KBl(m(i@zSPV:jf-\{Ċ6RX ,-B-2&f1a-1 ̭'Q�ǰ[cI`wqF,⽄ D(2 #X7{G?Jk #{=bY|}뮭o.1{wNuDRO=|.x6|h}C}urSp~xu檩^C\_trE^!(+s88g<w}\eda[drp{Ci>ZcZЌdrjnKU(¾7fRLx{{綨66$S;ZNzOE;ѥy8qDZ<6w6[i ;6mѶd pކ%0ag,G.Wh2kE-JirQgc|', 1=3ғ 6;盡'QϪ(@]ET ϨMNQ *j"C 9|]l:}txZǢ`_;?8CO?ѾmOH-Mv-u$R A ݴ[`$# :Cꁍ::Mp5QӋMުwMituSD$@Nİ=TOi7toNԯ2e‡|uRRuجǖG*Γ=G o{Gnab_N#1t;ڃVǻS^S,3.[W0p5$\Le[FW{_Wϯkhtm)nnK 7"X�kнr@r,/Tf$j = 1P%x5rXl�ȳ1]h Ќ~Igc|Uga݀@wONK ^CAUe|av�ׅ빵ڳ#zfV{ֆ'$f(+릶`R/,])5g<qKѪ`2Kunt Z?�3 )۹j'ݸ>#! Kʴ h]Gpᕍype}<|G*MRZ<Yl8Ƈ^(rw F3Ő4{:+wRuAqs/n9L GweNGS,)ћ{iNn.Fb9;l]`t6&)`z6+ 1vh�ROzMo;,{h ӫh fzl&"OowVv11�vmxj & [WiLRw8#b8LjkdY&pb\&ovӲU ˌ\2-{O 1R@4SzYe),KXeKlm"HOG;|=82%çcH@DO| 싽C@&P&0Q\`8q|gu#0 T1*& fb^ ԒAYI?gʉ8qhFD:ޑҠIJ^/0ÏUq k03H3hlKtϚ` o#0ii?�Mǡ .T>+M+wG?y$O7y{nEk~m!p'Z7U2| އ_aIĦ%U׈@$5 б qq޺{7D {{Lۅl!q -`Wo"Kx^_]mŽ܀Â׍(֏:*KoyxYx&jisePca'hF!>71}(<%/,T^ endstream endobj 16 0 obj << /Type /FontDescriptor /FontName /77bad2+NotoSerif /FontFile2 15 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 17 0 obj << /Length 228 /Filter [/FlateDecode] >> stream x]n wd,,UMUpj@~$Jyx/?r4#p>،kܲApu7Z5N<ke.R _ HzRC,:Zӻ^xN%ߗDמd-פ ffdJ^93 %oUg$ AڎZܨ_G.LZ|\*T~oo endstream endobj 18 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 19 0000000000 65535 f 0000000015 00000 n 0000000248 00000 n 0000000449 00000 n 0000000506 00000 n 0000000557 00000 n 0000000829 00000 n 0000001041 00000 n 0000001338 00000 n 0000001380 00000 n 0000001428 00000 n 0000001480 00000 n 0000001645 00000 n 0000001719 00000 n 0000001844 00000 n 0000001889 00000 n 0000005580 00000 n 0000005794 00000 n 0000006097 00000 n trailer << /Size 19 /Root 2 0 R /Info 1 0 R >> startxref 7011 %%EOF �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/hyphens-word-break.pdf������������������������������������0000664�0000000�0000000�00000040605�14163570564�0024665�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20191111025743-07'00') /CreationDate (D:20191111025743-07'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 13 0 R /PageLabels 15 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 489 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN 1.4938 Tw BT 48.24 793.926 Td /F1.0 10.5 Tf <546869732073746f7279206368726f6e69636c65732074686520696e6578706c696361626c652068617a6172647320616e6420766963696f7573206265617374732061207465616d206d75737420636f6e7175657220616e642076616e> Tj /F1.1 10.5 Tf <21> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 778.146 Td /F1.0 10.5 Tf <71756973682e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R /F1.1 12 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /cc9664+NotoSerif /Subtype /TrueType /FontDescriptor 17 0 R /FirstChar 32 /LastChar 255 /Widths 19 0 R /ToUnicode 18 0 R >> endobj 12 0 obj << /Type /Font /BaseFont /ab48f4+NotoSerif /Subtype /TrueType /FontDescriptor 21 0 R /FirstChar 32 /LastChar 255 /Widths 23 0 R /ToUnicode 22 0 R >> endobj 13 0 obj << /Type /Outlines /Count 1 /First 14 0 R /Last 14 0 R >> endobj 14 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 13 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 15 0 obj << /Nums [0 << /P (1) >>] >> endobj 16 0 obj << /Length1 9968 /Length 6057 /Filter [/FlateDecode] >> stream xZ{t[řJlOҕoGl=?d[;~ɒ$M$[ĶK&Cn-inϞ,gK)mلn64,-=6ѕcv^7|f�aP 89 C1B8czviJax0#L\r Ч}@]sCmnT Aǁ. # У9?O,�u>fu.}fׄP>:BsqW~>5z !fdhџ}6aL�kMT"JTgܿHà)QK`8x:]nЧؚu33;}�P�߅(JdSĜT fMYOMkKKH]G,8Zf/VW0BQ*L}Pbb1Rd^\l|\%Qrw)PKKNr%cSsOEuؚ6qe!Zaju6'0UVQqm|%%B*KVR[S׊kkL 6;[]w-v>SoCTme<k>o>`-:-KppigzY7Xj{ن{'+S˻k KO~Ou^ػ$W##j#P-AV'[Xb;&KpKGۛ+ /1(r=MǏGj4mGm LpGKkpzm+zF8Rm-8}}*xPCCٹ/ցOm\c/[E/r,�~]XalSn?^)miꊱϪ[ϼSܳ'fj3T̾t?Ԛ\Z ta^uWhØ9%&܌%𰄓dLI>C.`Sv22KѲm�p5sEe%\UEq_ƳbHCObN .'ت b%Up" [4Wh'} ye=?{XZNt(w3|]WS){{?[Uݶ0wƓcnxnf-pEQKAsU@[_:f }!c}Ab,XsQdJ"sG%L)$eh_}&ߝ[۝ϠIlQn<2.69YkuJB0x0{m||wY_օ͘r{xH7^[8FhܝC!mζiڿ93]=<n$#zdu.g q`O0')$4&|T9:m¨;x{:a{:rqFw W7 HLun?f6b9hHM%m8ׂ≶Jm}jieJW?|aϽ MM/,,<nl ?OD̗zߞo-[;c#A6Sa0<-2Oevh<Q՚2v*i/L$pG(HbkyR:a-13!,볶D,c6bdx5"CRmTM1T3^}|vd\6<kD lFjTNYY_ ʽ%J\Tde*H_p7p0וd9ʻz=%ѯo۹d<#Dxł:'@¾;M1#R?ڠi\/z`'_y.(H߮#ԚẲz>PW^V\oⅶ~oGlO^cz!iWIXP>0a}-ٸ|Q։tΒ.Ղ뫳ٌ§쮬u Ƌr!ӭ''wGBq`@`a_%~ɽ5nWO=*dуUßqc> fU:ZlV,9p�z,4H�hd^H` =$9ZDH}f \4M`P~KBq6 O%r u+[~9OHǯF_N/вs,BN]c}m |)rj<{/Xʘ=Pq=@lZ, 3frK7SH}"6Mqapj2*`qX~]yBͽ|Zlˣ=UUZDFI()_sv͐I,ѦJ˖5/TB˕.SYe _#a=p2U'&i\fD8| c桹|}V[Ji9yRI}9ɇvVy[fW\I,_Ċ7 >v搘oaZq5wIfvu Jטk5$ƥfן_,05ѯwgn)S`aוj1cc,̧f9Q}F-IY BS~k~ʸKd`GǠ>uc2520瑙94 Q 5pO~ a_G6qty"Rp; u"Es"G? ؔ^@*5$T^FV87AAGej1I2q ]EV]]Ȋэ sG+oA!B@?7-<D>Q=y;R]gP?DCh ENXrqt�Dxbsfs$K*'{ཇ%>_ $YT^,;CJ#9z/CɸVP.nrR;$lW,|Y+nSLODLW""K|%? I$vW-[)Q;(Sp{V0qߗ(?aV⧢{:LTV]4m #gB(Bh -�F3(B8A"?P=hM"ڀ3 0PAq(}4y!0@O^OgO/zi ha_p>Y s4oh橦%:f }P9j?m˿Jp's 𨛜l)'1|dyo)@^O^@G X ðsL~-Fۨ+ɂG97giO,J}1Pj^H8CB`v6;"1;i& 5ͷvik Ι34FH!ft3x� 2Y4q(FՇ#@t00a!=3NEn.I&a@rq_#3~1@3*+MB`b|ăw/js="zFXHhў:qgV`= H�8O V'SI~;?蝆U s0Yy.F(=<_'a\\Alǖj6Q'>B/8pHm6 $4x[nkU3T{Ami�έB%e>ZGhҙ�"}1^ZAru6)M(bFum?G�a]P= |�d*Ct: Y;2Lm\.A8IUQpOt$ITg<=t;C9e#a ?9np̓K[6,J6Œq/j</'H̚ i# k!>уD~O鉎SӚ>DI zњH]%~7~֦Yh!"P288yJΓ36s XCNq Zwu|~ZmMX:|@4(1N*9q2$Q$'%V/J&^^v+@" '�/]EX2A1%Z[ PWeP+OPb+0#e.{^84ΏІ.vew|m=WӺb*Wqg5|׿;2oXLLN{Lxzd㏰aáO=%� L s_q^@Wi w~ɕ++W6Vdf%`Wǹμ ]/N㵍׬O)S:u~>C{ 4${ecY5b[+N ݥԕua TkYtTU9 u!iWҘִi :^D?ex ?:(/[Khp:_s*>wU)}а)h WQx8]qN<b-D 8A>x(01I0DL&,[NX\d}}=]v[G{iocÞJd(-)6\u*-5%IH8P ^,\m$w #R.#*oIkLҺ)U|j2Vvk5 s6aߣ}S"F/bo;,=6з:JcZU&A3 ZbZť-6R{*)dZ5ؽ>qhmiqcE*h*Ey@Ub::˯V| Mxʓ}{-^ڗ2&\X_lvhٜXT!dD޵đT"x;sٳ]85!*ay59y9dѐFmzV#v?.<3QZl':/p_ߣѧe>�`ד] S f%d5rSp/'^ A%^38_e� :�" YVQ"= LP7 vL.(bwymаz%W-f6>,DоOb=p!0Q!"Ϥ4J4mdf޾Lb/)]πa+zj r5A68bؾM:rwkuT n8 J@*։LǨ! wuuC@x w3vU;!7A)&9Kºw932IrަTFB;MNHѭяcn^F(]PCY\*¸0Ë!7YzDG6j X�Cw `嚭]$wtĻeX&I!{DDݺ']C3 a1C#fyj%B_z|˂D!ܩ̕ph_ Z~+*3K f:<㫻 r%LB FPPy+VN^2(= w6SyM11*cxV#x)w0\o}?YGـ"Z�e3dQ)$[ 5Ɨ~DƊ;Uv\#LЀ%e/ɾBy67˨:zGo|}~I./i{<yt/aapos 7cOEo_6y>-FLK3X@lLw>qo-=,(ĞL+m}(X@|PuEt': _MMҍϣzItz]fޤ:d.r!F(jy;`<Q:<ipa;w2esƱ d_;: endstream endobj 17 0 obj << /Type /FontDescriptor /FontName /cc9664+NotoSerif /FontFile2 16 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 18 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 19 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 500 500 250 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 612 500 500 500 500 500 500 500 500 500 500 500 500 562 613 492 613 535 500 500 634 319 500 500 310 944 645 577 613 613 471 451 352 634 579 500 578 564 511 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj 20 0 obj << /Length1 6476 /Length 3654 /Filter [/FlateDecode] >> stream xX}l[u?S)[0."%RTHJ4}I'$>~4GGJY]֠:s9GxJQl(B 2.l "w,=ws}�۠ DF�ٞNbCB .kS|]-##([S)YkF9|^'_EOQA >8wQsEfz�Y)#џYQ> PŅᓳ�!:_<w‰e &+o `:01P?g�p�l}8�F܋ n :0t5ЊKȮ|p7'U*E —QyR){sL]^emc$�2!0Xa7ϮZ\TK=XGLq_obB$GuAo ~ F~pCjjyVP 7'<>D~-.:Bj*eӝ=&kq1 AY 'k.翯4- n:8 ij. CkSnңF6tL!4 dQ$@Р5OأNhx-</:h:8&CnX÷og oGM�L_ dJ;\rR섓LN1UcrQ.Lq'A0 HCR`hau�k ؛C|d pbI*rIƻ\SX9Sr4( B HCbLN&JPx6)y49#%$XE,gF6epXXSwKNʅb:OIgsQ4~p␃qΘ.R*).g 4 3$, rK]zݰuG.YF{xX(قC(IHDS鬂it|ƫ :CBFBvQǙoCΔ䏺\Νs&{+)+.4$ Q<B\pHrߟNtF\(˨&΁kyF[/*x:+B0{B)L_.`. 2˗-'Kٸ\JJA ٪`UN`x%EM)K?vz詞coxPў( <TN9*wb 4OYeDb^H'tR&KRW t-J6ϤIr27%,s-!n!巖ĜLi]6aI^fx@9#o%lfYA#xnbЎȃ</]8ZhU9%^5wpz$f)l`�=x~a=|0"aD=|}>~Aa:[F)p<zwdX <!*^~ܦ v$sMʟ Ytev湅˵5ŵgZ؉tS|lvFm(i6UcwڹT(JYLO:sk7(ZXAVO❭>,&N,38kC Bͧq&4f!MnU,فvDnbM pB7p?6R rB:Y!re̬nbCG98P% քXPj0G:SPVZjf \L{bF 1!fE,:_#Ā<z-rN(-a87xC 4.Ȱ5E,X2 .t =G }3q%K1ȡ%b^_t. ]uol3}kZkB+&^zU׬f;菫֫BUJV %z9wss+s7-U LFJC;Z,Ot#;*&}ՈfLD6_쒅θ;z\!gk{؀f|nYsjnut9;/ÆЇ!A7_ۺ.[xgWsX.KX ~߰ܵ-e.&,?|(pLjyN%ն ݣUE§+л; Fh@c3ذ b8Eg(;EW|F}T:S$ggP"UU<eY`AGAEG H8zv0p?zz{Ǐ}9Ot9;=qqjiVW[c6 zz+bTS{Ł& ;۬W5ݨآj5vCwG;TG h۳1JxY6vA-)UIzUTyoOk;auRy a�mlZUhюv zxqJا8%M3oS`>.ƥ#N±e\PuKlj['pJڬ"-'bL͈!6>to+K qZ|}}9EHG-T~xɦ.GUk,Eja}. m>q~fo<~i (3/̶[v9c=wzìgfg}xLhoE/Όc>}B by{#=r]Vi[p)lHʅOl84+zcw*Ղ]pTC=[bt)!J{xTWx2`цM}*&Qa3SoW.GSŀ8y*KD=xg^o9O1[weFlvE,)ћ4;NB@P ֌v0:}w Ui0=UsF.Vbo7֪͌Ŋ(Kn6^٣1y^7`Gի]nM#,�k]6<5C-̫4"bTLQ=akcќ5I,tر{M`T}F\^t׺i,eF.jU`>h''a`)ϻ,[Xrв菗`ki%6v@y\wӑ7�b(rK B_7:8Eޤ�n e ( fo{ 0{q̼Xu W17؅QjI8ESX8DD<X֊rZ'28ÏWq#Md'hltϚ a ?g h+�j<}/Z-1j>%*o{y?Z,|~ b7~6^O"|!ӟw7:Gl^Y2�+O VH",mЇ�[m!'_Ǟ6> [�c\G ؕ_#[H^anmh,-,h|EkZ ]ش,�B`66?6\xYș&f@7 })a=abex endstream endobj 21 0 obj << /Type /FontDescriptor /FontName /ab48f4+NotoSerif /FontFile2 20 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 22 0 obj << /Length 225 /Filter [/FlateDecode] >> stream x]Mn bE,=�"M�9d0?ay_ Jv>DG,ŒK[U,$ӱ\h-'[N.$;98}_&ӞWpyѫofE ;P33_GFnalrecL\Ph 0Vfo R\jk\~NđZ"D|\*\~pS endstream endobj 23 0 obj [259 310 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 24 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000001379 00000 n 0000001689 00000 n 0000001731 00000 n 0000001779 00000 n 0000001831 00000 n 0000001996 00000 n 0000002161 00000 n 0000002235 00000 n 0000002360 00000 n 0000002405 00000 n 0000008552 00000 n 0000008766 00000 n 0000010128 00000 n 0000011042 00000 n 0000014786 00000 n 0000015000 00000 n 0000015300 00000 n trailer << /Size 24 /Root 2 0 R /Info 1 0 R >> startxref 16214 %%EOF ���������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/icon-fw.pdf�����������������������������������������������0000664�0000000�0000000�00000044702�14163570564�0022520�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.beta.5.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.5.dev, based on Prawn 2.2.2) /ModDate (D:20190910023028-06'00') /CreationDate (D:20190910023028-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 14 0 R /PageLabels 16 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 1096 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F3.0 10.5 Tf <7c> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 54.1095 793.926 Td /F1.0 10.5 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 56.829 793.926 Td /F2.1 10.5 Tf <21> Tj ET BT 56.829 793.926 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 67.329 793.926 Td /F1.0 10.5 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 70.0485 793.926 Td /F3.0 10.5 Tf <7c> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 75.918 793.926 Td /F1.0 10.5 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 81.2625 793.926 Td /F2.1 10.5 Tf <22> Tj ET BT 78.6375 793.926 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 89.1375 793.926 Td /F1.0 10.5 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 91.857 793.926 Td /F3.0 10.5 Tf <7c> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F3.0 11 0 R /F1.0 12 0 R /F2.1 13 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /216a93+NotoSerif-Bold /Subtype /TrueType /FontDescriptor 18 0 R /FirstChar 32 /LastChar 255 /Widths 20 0 R /ToUnicode 19 0 R >> endobj 12 0 obj << /Type /Font /BaseFont /77bad2+NotoSerif /Subtype /TrueType /FontDescriptor 22 0 R /FirstChar 32 /LastChar 255 /Widths 24 0 R /ToUnicode 23 0 R >> endobj 13 0 obj << /Type /Font /BaseFont /0b4628+FontAwesome5Free-Solid /Subtype /TrueType /FontDescriptor 26 0 R /FirstChar 32 /LastChar 255 /Widths 28 0 R /ToUnicode 27 0 R >> endobj 14 0 obj << /Type /Outlines /Count 1 /First 15 0 R /Last 15 0 R >> endobj 15 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 14 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 16 0 obj << /Nums [0 << /P (1) >>] >> endobj 17 0 obj << /Length1 6488 /Length 3542 /Filter [/FlateDecode] >> stream xY}l[GrGRd-ۊG+H+-lj}MI$-ZHڤ$|?ď#(j3h; S $h}(pr>Y)Z>"vѢIeMNbgOȽkP3]>@�;Vr@vD~ @%'g;~VD>b}1�i-ɴby7dRU-}?V^8l0:4׃䣹lA+ đ֌Vm�3?�rGry5ſE[3%~'�:8v^c񓣯�zm9p>׻C< Tloo~ I:m⩤_.!,7З- D/OM-7X+vb-=c Y.}淖O/a* ?;%v9\6&1(N'PVj2(5Z^kI`P\`J ȵ½b}Z.ym&1U<r@ \5p N?0p Vn셛.>0p7cͰ2p343n$cU|Щ[Q A >}kIc^7Zhap\[=MIב~{^G_77𭰻 |+no67O%;t!v2M̟sq6E6y5^B& )H@4L!b$J20NqduVAp**:} Y-j>ac)dcЃ8ĞfD=M+T&:؃Lh>ae=O!@& m|FR ;<py5 9trf;YJ啘V_cTY8%"`p]keCf y6NT"ÂdG':i),hX@|5F'تXŨFhCA|IV) 9`Wf[VIMs.\L:DziWB\H%*SCrqqtb0hʅ.c,O Z1>vz+FI,_6@6]P*Ԙ)`$gZRei6S3v4:bO1G 5 `^Yo0dgGF~o ?@Ǻ"?igj 3E|S(X6Rx@@U+g+;)ԱT<5ƕL$p95NFdbtJS4'|DgEGHVXID5q0! l13VD:&6 9H`f,#pPTų5qW_Ŧ"x  nk@q !9ߍ+"D#f]>�QumD'/12yq" ǼGQTKŕarRs 5y.qVENx\H_ZHB8/fV Ċ‡S2~K|*Ը3O}7\ yN:8'Psr*O)Vq|`{n5Եu0D&(َ6DcOUĂ [Elױ-`p7 Cz\,{,-lKKm%zwt!4[,"gǞʶBlŒոT5._ߪ*WA6-q GIȤݭFu{ L`+:#hq{_s(7^Xя;Cw;? c.N./xob\Ś:ݵQ4|KbQwHR}3zsk7oZ.^;+L77^qGlo5zK7|3K0MnMO460]d~i28=1Ե)"^%++ʞ+%Ic*SɂJ'&qw|(.zKsdžbc;̸&]$v,ɝ<#h0 tvv[i Q,#rk6z6o[IY `JId6 UGgurIo =|N\!t !D^zza='үǐpsb ) ZxxP M+/R+M|9I촊Z[?ZP, F�7#CϜ?;zz{'fW}#O<rv{qyosScCݶZe1$ ZWEMr__ee RYTnԌotW4ݫκye97FG0cA?#hS`inۘ0DWOQڛ{՚vE)}!A}c3:.x>4z͑vU W&YLҕ9;F۶\X[ҷ6}/sUo=^[Y]D7eVoȨG@,-O> o䓙-)sQ̖-# Ca5Ww%ۣIrج}aXRA'67_s(2p+mp":rɎLHVGef \M-_VQTv}gfuE.CͭvV R fgc.Z 㕽Q{>وXGVI} b;s3((]rNo{Va1Ř73f.̼%^[j&'1s%,w|o0sC l±uTYѬ#h""/J{ZNp@>~p"L- f䰣bSXY:*`>$.+6;&G{XW }?C댚yXp9#͕ +O@ߊHj[1fȣ²*G$Ca7#"?F^50A3WLX\Wپ brčˆA@>_fCbXIJr Ύx I/\qKsw�R06%7yewraF };nI!5 @csf] f_(b 0KI1^Hi1B-[Yk nxVI:_*ٽOm ̳ Y{Xh:UGorCzDNÞu|6Yp{寐UI'OmC6[@j x̳(5ayQ~f6PC zʃU0O^;6#$})Szy~r endstream endobj 18 0 obj << /Type /FontDescriptor /FontName /216a93+NotoSerif-Bold /FontFile2 17 0 R /FontBBox [-212 -250 1306 1058] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 19 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 20 0 obj [600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 559 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600] endobj 21 0 obj << /Length1 6408 /Length 3600 /Filter [/FlateDecode] >> stream xX}l[u?=>,R(a\]E]Jm96%h"iNfI|hď,"AGu1qu0쏠'phYQ`[1e,cE2]E$'YR{=w= �~0k9D؁o�tb6l܄ eS*^05Ce9RdL'QދcB^<2^ʓ(Z򞬜QCjE0|jO J/N8Q�|2[|ĔJw�Z~Gp >M|E>_%0׍@&{Sɞ_oĸw#m�HX3טgW^ ~g  ?|bCp E=`nB Z%$ꍂhJ@n5ZxׂمBU`kq2Ewqj>R'P:Nt\@ 7u\]p[E8 C:nfbq#4'tGM`%Q]IZשfIu _$x-4 :^ {:^Nᄎ36W:^DŽ^-_xt::Mx/:Lx#F_.?]H'S*=Aڟ%'N8i$c]E:”wB P4$!* JЏ9'AAY�'zzl}TK rMaPNѠRH'`yT)FcJ4)$P\6N䌜Lgn`9 Y4VWm$eЉ}-9\pNq8''ptT-q%#Fo)#"Qxn3ğ=J1Ґ"g3BBIGVeJgUL}t4^%Uԉ22%j538LcG|jpT5:3e\IEu!9?)D{t3rHBYA]>q\38}Q-ӹpg~X JazrYs \PXL'l=YƕUS p^V ^VpE/a(jY'Hݴ'vp8DO }C?< Ei?J)P>E+t&?f TJJye"HOI9,I\E^)dE+8?VeܔRȲΕ L,Չ97^ۗm6&@9#o%lfYA#X�f71nb@~V3V}UNp 6^.3q[!@X31,PF>v!bø.g |G kʟW>mI`G2פOo]fg[\HQ_\Hف0fiJ܆nS0VKʼnB:3WH}["<Nn$lIg1OtbyfK9KGPobPy\=d'f7فvDVf T+p?:R krB:Y!re̬nbCG8#8 P% XPj0i@zSPV:jf-\{+ČRX ,-B-2!F1`-1MQZ[X$;x8#t^�"y[![;Ÿ@-vc]r.1-T>pd]"F9DLw [~߈ptS}ګj۫B틯S$^zEkkk3 2нxĮ嫕*A^%ޘ܍;ss9#oЎ6ss9~xGPi3o$BD6_Rqw!>a#m@-EqYݧwr9%waHÐ ׵'&s?ynn"7,w,qˢe""`ϴ#Y ߞBMe,Ռ<KZ{33OG VY#ZlW4űflXwͷ@oX,~⹢(!EG->Q_-YT,jaQD*~r�;tEAQh$  c_ѧ~]ΎiLmokmnZ՚kLF^J4i`ɒi6h4fM7j&huMbA~93GR>ۆ=\؆ݎ#5QJ1I}J]gc[^)?O#!M^9FkwAL}Z if:\/-Xa<hKq&8,zojMm=^+\:$Ws0<{Snh#<coFd1[?{eD}XY^̌K*y/zF"8j6RTR䨾Xѧ#)Glȃ@l063l n# 1s{gg̬I@0R E_q̧PHVc]*ooO\Uxj=q�f Rrj 'Ӵ>%! JޘJ"Їp{yp=<|KkRz<Yt0‡ô> b(r돍 F/ESŀ4y*KD=sp'-2A#6"ET(Q}Kh[ }H (FDFW;ݻFت4L#MÆۍVnۊ(Kn6^ţ1y^7`GիCnO#,�k]b; H!VU)*1$mp ؽ&0gj>ms~.[kݴl2#tB@twie1M0gxƔn-,9hYR0͵y<k;H ف_D.λɥțV�z))/ "oR�7G2 i 3׷py8f^L,U̺ c(x{iϣr,rZ#%wcD05huҫK ?U B:;/[Gf C[4ryy 'o|W]<v-¿y ?bn ?Eg|S_zӟw-:Gl^Y2�+_~DY>[Ї�[/n!'Mdױzϴv_ ,"֑O vV&|tt ށE~>`i3VW�_ Ah̦fNL^r5f C7 } a}a\e/ endstream endobj 22 0 obj << /Type /FontDescriptor /FontName /77bad2+NotoSerif /FontFile2 21 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 23 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 24 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj 25 0 obj << /Length1 2164 /Length 948 /Filter [/FlateDecode] >> stream xUAoE}߮;U1 UQ n6Ȏ4@(B\ڍ @BK= .m +p@HB*Tͼ]i*Jz潙yߛ>!�@^a{Ḩ ,*Wϰպ[a RM6qؑYywlؗ<8EL=泹w~&m?: Gk gD\9 uE/c?b`n2ky#,tj2ȡT,+g/yyk$kbb͎ݽ?F=KS OK us;"Cl+3=߬ 7F5$AuYsYgcߠB[p'57XɐWBnocyܒ[V^(c=z&s 3r"ԽA=TnN{ܮխ`5ONo޾"$B3䰬yn�kC͛8O4o||9|OYGqZV4~q8^74'`'1h\|3EA{7~�5?i!c4ӈ֪-W}5ZSsnW:Nm8 khƳgFQ95C: 8[׫k9wv \�͓3`ln<^c#|5Pi:vmΨ,c<DxZwΘ CkX,榏tB~<tPuTY:V G(VvKJnS_Ͳ]~[X`pA%f@E. hӌRhGq gDe>,.r^{&СshFXN>%Q޿}0LYfvZDGewqKX{{FwA~wn^5.ׄ}ܟgS endstream endobj 26 0 obj << /Type /FontDescriptor /FontName /0b4628+FontAwesome5Free-Solid /FontFile2 25 0 R /FontBBox [-39 -148 1291 900] /Flags 4 /StemV 0 /ItalicAngle 0.0 /Ascent 875 /Descent -125 /CapHeight 421 /XHeight 314 >> endobj 27 0 obj << /Length 232 /Filter [/FlateDecode] >> stream x]P=o 7&Cv@t񐶪pj@=HJ8yx?R#fΛkؒFpv5-թ'�R2I&<2 &g8|G.3`RE7 j; xy_{Dh+nnet0F1)?#Bڞ7fdKB!hڐܥ%|QQo)QzZrG!Wyr endstream endobj 28 0 obj [1000 1000 500 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj xref 0 29 0000000000 65535 f 0000000015 00000 n 0000000262 00000 n 0000000463 00000 n 0000000520 00000 n 0000000571 00000 n 0000000843 00000 n 0000001991 00000 n 0000002314 00000 n 0000002356 00000 n 0000002404 00000 n 0000002456 00000 n 0000002626 00000 n 0000002791 00000 n 0000002969 00000 n 0000003043 00000 n 0000003168 00000 n 0000003213 00000 n 0000006845 00000 n 0000007064 00000 n 0000008426 00000 n 0000009340 00000 n 0000013030 00000 n 0000013244 00000 n 0000014606 00000 n 0000015520 00000 n 0000016557 00000 n 0000016779 00000 n 0000017086 00000 n trailer << /Size 29 /Root 2 0 R /Info 1 0 R >> startxref 18223 %%EOF ��������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/image-align-right.pdf�������������������������������������0000664�0000000�0000000�00000057372�14163570564�0024452�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.beta.3.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.3.dev, based on Prawn 2.2.2) /ModDate (D:20190825235129-06'00') /CreationDate (D:20190825235129-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 12 0 R /PageLabels 14 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 113 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN q 165.0 0.0 0.0 186.0 382.04 619.89 cm /I1 Do Q Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << >> /XObject << /I1 11 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /XObject /Subtype /Image /ColorSpace /DeviceRGB /BitsPerComponent 8 /Width 220 /Height 248 /Length 22060 /Filter [/DCTDecode] >> stream �JFIF������C�   %# , #&')*)-0-(0%()(�C   (((((((((((((((((((((((((((((((((((((((((((((((((((�������������������=����!1AQ"a2qB#3Rb$CrS���������������2�����!1AQ"aq2B#R3� ��?�$ Ipnƕ*C:AŰ�ZvܟO`/Lfee+]\}t[ڛK P(HOZ -0utb7>~g T ((bXk_Ԁ.ta( І@ۓɵ퇥`46~/;}07S [j@hv< &i 2Ik~B 9ga}vXYUyImŅ;a>rآq@�aũ'="v&ç\ (`V�c<P6D}d,Hۡ5ua<ieXq\h+*Vʧmh·rVS(%vi݇�#6MTHQv:cUɹV u^Fp) >csoFPI\8mCek�A\zlqP"}I&l o[Aua#Blc|%X$'7B\ @nv? m,PT}b5m'ߐ4 Z'?EL-h@,H6?_gH/wҬAV|+L>x* )hdnvg7�};QIw FklpzFkc#;<`r�[�MV$m;{`Z5 iPmnFg-:K!6F %*K2{[\ Qs{b)7'p_ ? %]$ bvjڜ�k{nj^8ѕn�0|II$"�+]jd[~VڞMuUhd 5 a< ۝7+7!fJShkn1Dk97b$F#kl#!^ ]Q}%O xɟ#Ikv ;k%QK`M-ۤ F;8Xx9Pf}|.wt@U)N5Ճt_P i~i'G @mc wS rHͨQ#r~U HqyM^kIҦ{�qE<5$>ͩkK"H#4]˵,YbNj[}; 5nZ + '2�HvQJ3m/'67or{ta P"ͽ)qR+KQ {-`U opnM:׶ E1-lJPԩz}6~0Ȳ EgV"~sӮ 6.D1P}7Nc{ �4{ JKܡ͏h;SbR]{,e �{7 �F5$I[) }j(UTt:\SupqVaXwa{p1Ic":"h+$GTViÝ`$0e&dF V[l7+hg\K0Am�j̰0Dk?d4+UlPb.=T0hQ#@ Гxvs7o5u4Xҁfm)p%.qJy�'Юuݑ+~PYsUiKf^!%t>sm$h>(JF6p{cxm_l~Aֆٲȫk_1Vd NttPKF nuaSQT6n{g-7 E<s2){/b^q fQZ+Il5& X (<X\{#4It A}qb'7;wĒ1}>b [|6,3 ̩o; F8 v?yǘQ)1 X:MWC&kԤR 7'\e:nzbOI&:mpB.TBi'[eJn$߸7tBs�)WAJ4p~*``,/r=DZƅ9Id $t UQfZGac{XrE8CebuIᣁJE߱ԝIiǗ. &KF[bk*Oru_P{}/:V* UѧPf"UAdRPץO"s�ce#L1/ʇ֏g]]RL-F~h ]9|T~U<�%t烿|<7�F d\lΛrm8�j4ޜrt5JqMN,F _8LU:tz|!,#˪YQEFI&k窕b+ef�/i1ؐ>^}Ͼ:_*J>ꍈ;فS R�XXHdeaeޣ$,@AP`*!7oǿ¤ٛѱ�~N!DO -"}?`[FQhFǴHJ~p &yd �xʦFZ'nM H/cē$ӁL,JJMi2in.$bFY7!MvIrg`%a}l A*H�29U3*GO"V]Z~F7$_Nwt aFu (4WO:Yf"R:CiqbHi(U}sIU%V">c NOS7:gVޝ=΀W O$RHǨ=F'�} '0RŇ`\ߐ8d=20 GOooVE~W͓ᧈǢ,= ,2)ʨM.v�Kw8clQE׃"k(+s6A :A%+,-2Ʊ+GY99m-h: -K @jؐhH)7R //nSUΔxNYK.bO%X t/%^ ho3SF6 ׷;j_A 5^rSo- l8VMxE` w~8-,X-RAo6SK/VcsmF\0DnvLORC(lZHRUFH"�WA oPgo#JHtH_SӇN݊ k'$2VV-3(g;|v,ހkk:T7�_ ȧGM,6};`5eNGlpgֺڅڴo$lcs,1ʠ͟SCUJ5Az4|Eh%@f� ګ) K:BMJw:qoQ8$zo>XGW~n]AnvzԤzR&HVo��|tUrJDRN7醍 |bX< j*�yl&^cPj3FeHClEv7pA~ݵ4*f2dپZZ@cBU*ޟuul/tg;LE�fЖ\8#R)n(QWWly;J+R5|ម>i,-HCHvǬUGdʍ.;)ӑ8`j%?j=) ;5mo5g",Sx`y| ,-6l�heJ cd H$l{ܪƋc=*8; Rl0JP�ŵun\"~eGo<KFK 3meRƞ9ƝVn4qxjd'JZ;ȉe}V.B<s09yp+#lll�:tq9EڏOIC<tu RBT([r6~r PfekSX) Q̼=�lq+s<Wt/[ᚸis<|sؒtw|*FB]*4ɭv7RrXu$Rw4^:*`3Y,ZJ@�]ѣZ{5D4i)j؎s() IQ$ډ"8\;oŸr*gtuT9ʥU+4qԬdGE)8׹߶ۑGiqb?k&_LV!- 4g9Ӎ/cA /cv>F;$,} p�7@SPSBEطXQmEHH:EqqT8ov# ΅a@?q(!CJI$Z|_-lXyao LP8:NR iZێ1T)) \oku4T) F$ũ@V7Y&<Uu1] s=vM #LwU Hy;XYɜa$>!X,ZB@7$n88+c$$|Y5-Mdx<zZ̥X5ГnXU#FU&yT?f̠-`C ~Ŷ;# =⟖Mȼa[PK5\p Vt�:n~-o)ռC'Fc;""2[k#uߐݮ~r.⒲L0I"�T7pn $PrX W5 CG);('?k[fnsWQ)-w)C CA z*c-⟚0'g4dTĎO^7 }Loa͆Mk3gg-=K U % ``٣";⵷Q>o?3<Pd2b7�X �:ROTzX$%NǦBTpGssn� Y�E`Mk{s]Y@a5 %X)ZlS8 kzj!K :X]V:ߦ kSri"nnmc* ]JmIbC^cFW L92:dɴ,5=5Tc*_HROտlOZN+tRo'nsMes CK9YD#dg^ۋg&>,g5)2Bjt/{ =X} oT #* Pr_{bZ*;}I84k'zO&&n־M_jHO'Ds`�o}$vpu~Ma^OO[P JZۋOsm�>RN|L+b9xHe}6eVH.Xg* < bZJMiYJ콍{\nSEזI1}4dI-lXIQv70<f7쒑EW,AUܟ{}۩'I3[4xv$9$-ͽ ؛\nQj+O)dK?/Q: 1W2 %lm-і!RfOY5#VtujG@6 } xuWJU|mΞ%s̑$)I=u,|U7^5хh22:hY#QpobJC&_W(u%iu*AecRH?! lgD~,PG}os*mo,?y,IM)Cڅb6�ӄSi ?9I8|XJi2|W""eݛXkxl~IittMMz~_&He*_oе@o6+ -׮X dzKv`77wW�*빵]FcSbw탛 erfh0 4uF=Vv8I- (ϔCvj+Q@c4.y BJF%<is(ٙ˲ 2<u37*X$Mj#~c!k6!I. **!+rcTyA,Y;^̤iy]Yhŕt44nWKO1;B~Vt{pE,%mFxk?W/dp-eS4uX]@O�;~v[d')֧)7Dc#f \�lEGWM':kPΪɨ) uK;k^{m8C+Kx( E5J.i]37|ʠ33h䞕\ Dlx":\_ZSLjr9|:VlfȪX˪0!I�r[?mqJs?:U$}^<}+%/Ӹоq*W42*%H7ۦ:4RLI2y`I'`-a}⻔Yx*3 v]܎nīX#TBRQ̥$]r9)gIe`~5|XjxΫ76&$[OM*ߋ/*Ihqtw{#=|iK/ةj�%J\筅1ء,2Z$ 2ŋ;~ؘ s"G&c v߿_�aMT%n�#aԣm,`z8WR|ۛ }0RbVB7kI5Cu0paI f"  0Ke- /Ċ <,H})ReE>c4]v:or1O^|/:X~ƴ5a)TJ&nڷTJ Z32/y",&i2M-OObaeXwqt �Ϩ�ѽ8`e|9_YQ6}Ջ1׸,C$n8au-J[gu%|k-nT# & CAp%WqjhgzDqR$[B_үn-~"ӷaMRWAt�pHFϤ q{k+= -d~!))yϟ:$1Unk}u+sċQiW_Ri!s29'KD\d}M@yvF$N R^jE+zzr,?hrr\ְ̫O0[PѝT+ܝ:;˓{'v*FT6!p6;5qY<)1őRo"�fb2[5abeIG5RβyH X @6w`th|S*³tK&PI}ga0zz+#*3B!;}'T'A+gIU\*`jD;5}9c�Oj;`#fzGQ+z}ߐw)靶bQ #pv/8.Ƞo`9 B*Y6`(%ê'uuuV'm#|fT$H\n1'ݡӥCy5=+ٜJq0IX[uj1w H>Y_o{a&JW5z"b[O:^6(qC>S?m== 7f̲̈[2C1)o01Uf�bC8?OYgH+<QO3(tc$=͈xbjE\Q]D%b;�͉TYAW@u+d(k/$R5|+/JMf.(AgLir´so2%kjEŹ Ote_TQR^efTJnefhf`}Hm:tᨓu1iC]&*wQ2@XC_ccEu7B2k2aI_5JиQh�A'Ԧc< 7Iig'Teyي:46HoF!=ŻiV{ث4\溦')<EIh(S6F+E?i5OO׹A-D;GrPHO'XF:eX\zO'j*P fm)K<96m&YBvOP #]H; ":b7$Ν*+cg, HU|,^x:w)2ᗉ筌fu9<F!4厲O`-|r']puH7P9OTlk_I 7`wsOR\q~do_EU&_T[R Y 6$8ӭ\ui<k𫣣\ʊ,iYRXT-PA P8YK*)ؑ5t�Y? XD<J6}G}:Y$><~eež,,ewmٷ$)PںܥlUV_ڨ@y4Œ 6,6w?ݏUXp!ЂwXa9uJzGknEs{߮FKvi]SPE`1 W#5NU+uA%a9(Ԣʍrd\l5SY_N{RY&e.zX#)|f4G,EKDo5T?g4aFz,fMO:hV"W1Q͉ 4|M"µϐPe:|HuI(($q(a FjsIW&dg-E"kL&]5t_SUBr<r|)j:XMd&Hn =q:҄z-^ A/ =82)Z\pѨO?6I3@ uʋ&_SBsO5$21�n oьr$gܕeYg2^ ,21dx-~-ؾ+x&'jmdΉ崑H7ۆzm NxX(a<U :oem<3fÉ=9tredyFh^M^T2ၰRԌ|ώ�ߥ'0њxki'1)mXZNnƗ&5>ןj\j$kJu)xd,v$v9'87Ls9*2:ԚKS0Vfy�^ bOܿ:UfmmvWVcZZSEptRp>!5[>|S!JqPyxΆ2HJmkzyzXNܿs|7O2˩"[4yM%:cgrͶ"U߿ϝP%}⎖J%Q±�Pt:*q[nK lCi:GBH=0hT$;�GocpVO3Zp80lb&r2cl�l>E]jz^l7Jb{�gٛS;p&g5ń%T`.^k5mJ?]b°sKl\3,* m+{2^NyG"1'=$^sQAE,yiA"jԷ�I^5hcJ%l2eU#1QbxxtpIUiFÃ'X|.sY;y .C +yC�AkܬVTjKl5lTjwVe1bH,\jһH! Fю99=WK<Y/e*r}:_ VSjr QURK\-d36* u;JXR}N]d5 VeUF OPbδoKFGmq'rqx)k8FX[KAm݈N&4ymU5$4ouQ2VI^l7I<?̲Zb*I)Y)y>XJ]F?( x m}QMA:C:Wh&6@nnqŭIKz aL=h!33m]iv(5)"8z)R_NRm?f(2q[LZaZn _:HKIMqS5ZIehZdPٚ{#{#[r9}߂}U|ҜQS ×dV054t^g2<K㧑cyΐ.7cv&-R$fttGhJLq{_(HeY@1J)bz[b> rG*$-ۿ `y).YEm#,�M7 kq}0Jͩd`1_/D}`řտrp0wUd$;q Q>c��>(|V9GNy %U! H`ᕵ-}''/ I[IR&# fVaumOЃqmu-[5'>/7ْ1OYIQO1x,)PWN|�^.|,1x�IUI%) ȹ-rJcPSffXj45s3D$O-ѾF$RQ;?8amحKA%E=$t1CQ̼jW:wwa*Gݗ0fs-DEvG To ,ROjn2)v4y-�.& +-^ 鎕$۶, AJ�f_NHd�uEv ok-M [#x55I$mM#$RqbYm}ihER9u4E୨J .,\0�07]D Ϊdz7Y5,,HqpK ܜ,5 &,QT}`+-}E<v8yeܖD^J]fMWY,f(BN 2 3PybIO&B7G25FO+t/q.�m-St%f[UD(pƴci5[�]}#+TB*hz!Gu8>ݰc2;h!2ASJcqܓ@Hoq)4 5X&rO8s KTp0S:Al5@u+by錢MvzXjBk~�2k&qib]�وH[M5!Gcm� /&NUCzA)Fl.wX(TK�o&W?ۼN$%.[ n][qɣ~ ZYcrp @1,%zh*I#A\UoP[~=[eJ3ś gQA,iGS*MD&V-+m&F41A:#q~SS}C$Fzr#U-!;̡EAt4`1+|%5F (CBkVmv�Z;nCː۲ixik4f�#0٬ \a]6I!πZ5G76,.GFۢ~}.u"L)cي{+PAm(wNя[C,bXb6X].y<DRHm9G ̨2ѭLR%#{iزߧb/mO+lv%Y&4+T#F`H s($X)Qr|xo*OI$fVmɷ፡%=6]83VeY ѓGQ=e Jw ci+f[nqH}C4'3:r.Ye){oHP0e8(EwJЌ˙ TG**9JS*>ɘyVq;Yok'=mrNk|q /O}*yalqKQjhTyjb hF*�]=f,uBU-GFFΣDw>Ὄ =k ;mq (xVL2`$.Բ [`NM6AuV#Fx3zH \ Rb"sn >Aaŗa_qˠĞ=Y gfyMu q|7= ~eJ3Ctbt܍͏t⒲Zw()$T6 +?u k ;M mI(Ϊ)T&�n{@ؑ�ۓQ^7GO˲J_554wň6;M%WLJ\HF4LԓeֱgR`4N5ަ9,[QSuY#nUHJZO1anHnl/ۥ͎-W IH}R""+iY ܅aOSbUu̧ȑ^4pv6[x:~TA>% X qp,۽'%&aVLDKUHW~Kuµ� U=ptzܲ1˪GS}tڕp9ܛn~{}_: ;*U;:t=-h*%,\xaZi_ePC-I vZ:s"jClGJ̪5O&fjpYig_UAtUx9Ċ%JeDf9ansxGEÜʴ+YSAhf[|I=tuc\?ᏥLUdSd[|[Gy ZMY3 2,Go3 ܘ47ZVR0!moʳ.BSQ|ZY�`Qw6N1ǖiHOkz~IV8㴆5HO�m~q+܆"BnaIdW�8+@+6銦/6PA^�j9Y.T{~x )kN^ nS iE{ H^p &"dY@@d :نǂQ})]QYr$y[6{X[- bSVR2=lI SA*KN)&a2YEaɹ#O'WS˩JFnm?ncF;7<YlJzQH ąerI�[%F\~&gNuSMi{8@zGm`m+58'25O)~$QT^w-cJQp/Ӗcrc[XA�ۚ5C2N<]b1F+]c`$b!A!O'nַ\5YK$I[o{$]GR-5okgѥ8D+ s橳[H׵O:t5"DuSX 湄5J)\F-{Ůo6bΎTs\&Uh؋5 [W'tm5Zipꦛ+E�n6xǦ"MuVٞcYWEU&]QYC#iDP�tMϨ;#~5*cR2D^LT_"GN)EԽ} 糗A틑NYK<:#̨tIoX GnrrYh`8Ir �-�O|gƍ ꚣQ:#mDpz>]B׾%+c*j> Xr bH.؜AI ]ktJr\편"~Ad,H7d؎=,Xf e?/ hgj 9oo3Pڦp겿mDbDi$pBӆ$�6 F'eZ hs�ixȕ,*N� bQyM[R,%~j�B]]D5ۍ7#2ۓepJ#UOTF+ =Ȳ38f1"0rXŎnq'p5 v} J5BSBQAߞq|IݰRњ8Pbኅb esEC%lc%0 %Kᄳ,@e%oacRtʤURֈZV&p[StWiKM%!t>_/a}EiSH+@ҒMDOfP: kz/̞ٙ5zhRF>zKXo׌bK??7QKdRTèFmiB6:ܿ\8a* .z5eD TI۞}Lnnzr W_ДɛNM4lTޡ7erdg&|rtΩ*MBeI$!O JFn6`ENM.Bn 3ٓ,pEB:*Sl X){ Y4ۣEK\Ln=@,:o T펍U6cacHL*\aKs؏* ;ٕJEKĥluOs vdS y"ݽ@rLOJ{:$!tw|j�i4hYTF%�wrnNU&9&_1�*/8Pl5� Ou:LL\\iڵl�ݷ]2 TVRfRIQ!D`Ee-,H�Rǩ8mzՔGUqm\* a!rw`@i&-uPbZی.qALg0QeRDXzA nzUH(*ic) PIk؝ Q ɸDRd d/ l{mUym1T>K dIu6=ʟ sњbu˱}9=6&?F71QNPw�Cro R\uTrMъGC&6abҧ1!zʙj*8 @.UOn8uSK$]gZiVx^Nn 77PwgMy']Hc )MD̠F$өقEȸmԎGhvISK'17$R ~FخducH낡吹db7G} ˳+ J ['~?:춢4Hu<6c/09*�_[,$L= a(_LIe$ۧ| RSSU[I$WC~pzܵDjI.K#r0c2�ࡘv7P@5 a6F@oqŰqolr.�A罰[ $Š|: -"TApTm,B=8 jF/(LMLIO̪" 7 ˒`1(y0%|K4c]om�3nycܡͲ*Vce6XOP-aQq Hx3oh3 U"]UX6~8o:q<"m|4*+B3rn>r}kɭ4M _>Q!U/eBߝ7?\$}1Km2 ZzXg@Uw#W&qQD:C;216 l{_c~m 6Uq$K5J;p4=֢jy2=AE  -}<A/I̧̧?iiUn\` 1wo[yEQdcJY$(<fD<Bw&WE50湥-~aU g*}3v;o;<4_bZ!H`Mr1ud Jpmd2-hm\ L|RH}6XoP5<)7 EMB}'IM&YE NǺǨ~g6y^5 mChqw=y$h*j@ q*Aw=^,$}Vc<~IuF]] OoFb&Ȍ#}x1w(ṣhIPiKv*x{r[ Q&Tx!C Z 7�1vnM;bs~X0p3RQ% wp( [`}D1�aZ?gDgK idO�} qϩ)"i$D 'xC`agT檬Y�ꠓΒ{n7hR֎Yb(:/k0P}7�b>e-MH;aQ{Q"*((hjJڒFH-W6|+Ը$hP7HCj%ob9GJPgYD5XL% rD[p߂Tzߟ�RԬiYʐ<�cn= y9%,P5A pLIb<&y 7bK{0RHOzD"2X)\Q Y>)QǠE-�, :\ȱm]cU%}$0ZMd؅22FV6N'F'G �[ mpP+.zqv!)�\u5ٸ$ 7Jv*LopV !c[ҧHzSз}&ֿ՘Sn{XY $̤26`9ƍ5kfR =c|>Qxh8kBk#{}B.o;WFzz:?SO%fIT�6Y�@$mkXcB[gq܋教t5QS="vSAn~붭7zT9@jO)¢TU#hw"��Q8I 'Y+ ([Ɋ&*H�J7C7RsD4F(yr skx02l*E4uO-ᖩ݄^[Iw}vvhf9xnXuXf6 Ԥsm2FczZ*3Mz|Nm2yUnx@%NM@P [ӪonG1ez'c4jdEFs4LVZNFYQԵ=q4#-7s'N$X;'ᬧBSvay_[[8nv=0+�XV@ō1yi&0ܒz}pS/e,ZrUJ %աVf`V褁muC]Wrn۱LVc57�72tՄ7+ploql03f*vǶ5 S=$m* orm/r2]G # Nz/;X3Y+N�/l ;t4]`ICEBU6ߟoQv#S6&ݶ�jjaJR-۵|ݪ|eφ^ ͩ*?GyK 4ā:NoM|<^*3Bg,<3(b5c5;KZA]IN*ؼeBG}Jp/k-OB4M<{E/Pe]^�"X\z2*/".<   mf!CLF�{�'o CP24?{H QƏFvJL%?k+)K1:/Ue.\4O2SHB8nOb:Sý73SX#O7Hrn.Tke;cUq#"f-Ii_%0"V\w`{Ptj]7:4%-K|%洫6zX_-[lR.f �mlQkME 6fĨ~gԭˑu2E 5XH *.aO=]6Mm $p$DQZ^׿^pWWePbAw ڡk$XuUk�LI64$l$R_S[o>�L PgFӠ05sU~7 1(6FЦGp.}ne 0@rxlnp#U� 7QH5Q$`px�|&(кX^1q2 �؃t+V#M#3vf3 dyWF#mJ* I k651$V2>s,gUO=?_A�)"n۩6]ڋ)H:9S̍Jg250ێ+ LY<mTsU-)_:`6؀m{~qh6&P$&uYU,/Ib4}7.+ [+qU?Y]@!+FUdmRm%U!/uq}J-KYxcïRO]̂_Zʼnߐlk[rߟw.Bc OfR=3N }dvsOgW1,Ht?;aĢE-i龟z\\6ii>DJI{uC%(P*nMƒc?Q � .0ZqePnGղv.-ۮ:#@,jxBݴ=,#]XԄ(l0�}R| 7ՊC:Ai>�5Y`WA] ׾$aF\@0tUb�m5*NX\-dkG ` ŹapQsTf~.Z剰<^^ax=w2of"!#h�'\f#/.Jx|ґv]U%~q$}q'ЦUM+jwqZ9֠Pqq#K7m"~Sj*Jj<pp�z0c)C8׉~Y&vW]Qǣa"̍`dFUSц!㥲CFw+UY|:ڮK&i%5 �`@9 WQt�arY|ieUٳ}L"eeh_m}luـtrz\T77ǑUTe9UYb.iLT"Q� Z=m~mp `hO] |+"v[ъ EӤr�PUvEH|2mk'$tB;1U|` �}0(;rs턦=ckRXn˫ka &fm:pρW" ۝+u=1R@&РqZo4bF-A Nz}p60S| V Pڔ;*[ T6nGc%HRae{C]ugCp{ #P[P Q~x1X2]QרMQ5 M}jtؑbEٍE2�c `|,G7qu&-ҷ"kyl>ތ(h*hਆHX߯;qQeYo2X(w0TUa0`bIms`;_59V6ߩ/(dz5�7'ª agh&k6t>J iͳ-v=%^CX/'VauV:ٕbxB]ܛq ݀$nN  [1�ۓDۨk@ajűu7<A4r!(7A}76`{&0Ul"J jӶjYm@XXc7?ZR18;jw %Zˋfx ."mm 킻3znTv0֘]rmsnY(j& ËF`U<GS:WW�©7m�= S?_\6́U^nX 1<1&`FzئY I.*yt2c!A`^B9O؎/ӬWm?L4FU:@0" AAvsnށz'�oakܜoc u$!6oQJPth�X ܳڛK6vuƻ�n,"/3]w'ߧ�Flw_9*<) tٿ{[iPڡ>f^K\0[,<JA7X�iy>^lvj|WMQ,oH? 1ԊT6aZH2)Fہl>LAU\ǵ^)+UX ktîtr? N`�rK2yh ]&Ì2XXM'Ya{}v[ uy(mDAH"0_qmpEf�[ampc4Ơq{a%t#U\`#0O�ŹW#rpqva`l |E`I#{} YJ؛ml* V(J c{)'g$-"P9�/̄ 6 ywT%o*y(1jl�^߈UTn؄:'r?/ Y+2iXR\ (0~p 'kcv;0jź Sj �l$2V<Lk6v Jѹ!�@nO˾0w;y`;v3,dpmqY5�`GA+=FfJ�(K#A mڐmhѬ-:? endstream endobj 12 0 obj << /Type /Outlines /Count 1 /First 13 0 R /Last 13 0 R >> endobj 13 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 12 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 14 0 obj << /Nums [0 << /P (1) >>] >> endobj xref 0 15 0000000000 65535 f 0000000015 00000 n 0000000262 00000 n 0000000463 00000 n 0000000520 00000 n 0000000571 00000 n 0000000843 00000 n 0000001007 00000 n 0000001317 00000 n 0000001359 00000 n 0000001407 00000 n 0000001459 00000 n 0000023691 00000 n 0000023765 00000 n 0000023890 00000 n trailer << /Size 15 /Root 2 0 R /Info 1 0 R >> startxref 23935 %%EOF ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/image-block-svg-with-image.pdf����������������������������0000664�0000000�0000000�00000013462�14163570564�0026155�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20191108235956-07'00') /CreationDate (D:20191108235956-07'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 14 0 R /PageLabels 16 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 381 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN q 48.24 784.6302 m 69.4998 784.6302 l 69.4998 805.89 l 48.24 805.89 l h W n 0.0 0.0 0.0 scn 4.25197 0.00000 0.00000 4.25197 -156.87496 -2620.72890 cm 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 cm q q 5.0 0.0 0.0 5.0 48.24 800.89 cm /I1 Do Q f Q q q /Tr1 gs 0.0 0.0 0.0 SCN 0.5 w 48.49 801.14 4.5 4.5 re B Q Q Q Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << >> /XObject << /I1 11 0 R >> /ExtGState << /Tr1 13 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /XObject /Subtype /Image /Height 64 /Width 64 /BitsPerComponent 8 /ColorSpace /DeviceRGB /SMask 12 0 R /Length 2456 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 3 /BitsPerComponent 8 /Columns 64 >>] >> stream xZkG>3+ Y bBH$HbL%UhY2V-�CH4وAŐ!}p;39=;wגּvgvfPA4þXoŒ F_~we^\WR%/O+xֳ}LCd`g>�5Q̭ G{`5@X`BBpN.bȱ �,70!3$c =ߟݯpS^df;2.[>Ըk>w\_2vqӀR "wȽ*u5@?dG#�.(Ӽͫi^YH7�)(>lE- xmY ?f)a@ "{ˆhs,3[ZR !�Pܻ[2I >B>~z02HGO}n-GOۼưP<H Y Esz]48}ۿ(+5q/QٸAn\a47�϶.wG]-0ɭpL 8!b"S6|jKJ"+g+�[d/$ұOŽCwM1a`ڇH!B]~L̶o${ɳ0C 2F |k 4߿ BuuwӫHmX P ~byH/2!xSreHxSk@AI[:ZpDӜU  / fǰ=<&A6m Oؕm,J+U :B�^=$W-8ٞĕ^e6WKVNK9Cu#OW_̱p;oC_;93 Xb<wFPhN��1/ŀze~+=*0‡"U"JRCU>H,*`s*'3HWRwJXCrf`0Nn&&,J//8PrqtUªJ9oWZldRA jڻYhT.uFӌ;ڕ TZ'?(i䷿p?.Y*) )ݭEsR\G^+/ FsGCHB߸i1s*E8hW.<C˭UX(�8! ? ^+i\жWWJf|dS++آ<UDy$fɊ{Q2g.FGD{Ⴉ?fWN^\u֕n(fq4Ħ,4&q_iBb :O=9~Yws;܍R{"$ef~W#^%1 IZ)�E-_VoXcrF�r/ a UX7NN"8Yj;Bw.-x,|˺_fͽЇQ,'Ku_ސ~Ę0t}qɕmQwEr:UH: b+hZV ͡p_Qu} 4&"ٗOgnAUh\�xH0\TB ݠ1~b42L&gkoG:1~ MeҮz|Gܴ>vG#Q`ڗZoD6h UᱭC+H<(:Ի{d?(p2PVsﻻm8U{6~EΖFT1QŁ [7Xd!$8wG<GO{_QsUIj^8/3RhF32^ܩGm]OqM\<&f v$5*c;AOTV9)ǒGIU*q\*$D*tYoĕYe6Nğҕ,ۻ:knW uj!@B]ttu s ej)tdG$;?(K>4EǵV9^*8&ߜ"荳6״FUu=ٰX^:?巜LA/(:)3G~<*ǒ0]cK,ͰB`U%,C勅Q9 +rjmj3(Ɗϵc~S aN}ULS( Sv2/bpyN͙||YM<'t4wUsԀ{`}(BV/%[:0U"%Z0ä<̄tHJX1zCq_i@7ah7<%'Eɉ{ Q-&qcN ʬr& WΩ+8\<uKWJK?!c>n; k{gK endstream endobj 12 0 obj << /Type /XObject /Subtype /Image /Height 64 /Width 64 /BitsPerComponent 8 /ColorSpace /DeviceGray /Decode [0 1] /Length 491 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 1 /BitsPerComponent 8 /Columns 64 >>] >> stream x1nZA݊S#A.‚ J� ȹ!<)9D Lv# o7R,hB(29p~٨/]ϲ۟u[Lz< ơ{OP!e[Pez?r5CGKXzX5{7??yq氒޿ 6RWr~&?Wp^MYK';rmL09u@/#  OUkeXkrP4)�#8z[p`S !~oߧxڻ7$E{Uw>A13j]&AhDt³̢qv]ǪKsp̧Pq̇0w|̛k 5pBX]eǃ n&/OK d0n k endstream endobj 13 0 obj << /Type /ExtGState /CA 1 /ca 0.0 >> endobj 14 0 obj << /Type /Outlines /Count 1 /First 15 0 R /Last 15 0 R >> endobj 15 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 14 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 16 0 obj << /Nums [0 << /P (1) >>] >> endobj xref 0 17 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000001271 00000 n 0000001610 00000 n 0000001652 00000 n 0000001700 00000 n 0000001752 00000 n 0000004470 00000 n 0000005223 00000 n 0000005276 00000 n 0000005350 00000 n 0000005475 00000 n trailer << /Size 17 /Root 2 0 R /Info 1 0 R >> startxref 5520 %%EOF ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/image-border-fit-page.pdf���������������������������������0000664�0000000�0000000�00000077177�14163570564�0025221�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.beta.3.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.3.dev, based on Prawn 2.2.2) /ModDate (D:20190819045327-06'00') /CreationDate (D:20190819045327-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 14 0 R /PageLabels 16 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 552 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN q 153.0 0.0 0.0 180.0 221.14 625.89 cm /I1 Do Q q 0.8667 0.8667 0.8667 SCN 0.5 w 50.24 805.89 m 545.04 805.89 l 546.1446 805.89 547.04 804.9946 547.04 803.89 c 547.04 627.89 l 547.04 626.7854 546.1446 625.89 545.04 625.89 c 50.24 625.89 l 49.1354 625.89 48.24 626.7854 48.24 627.89 c 48.24 803.89 l 48.24 804.9946 49.1354 805.89 50.24 805.89 c h S Q 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 610.5242 Td /F2.0 9.975 Tf <46696775726520312e20547578> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 13 0 R >> /XObject << /I1 11 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /XObject /Subtype /Image /Height 240 /Width 204 /BitsPerComponent 8 /ColorSpace /DeviceRGB /SMask 12 0 R /Length 19044 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 3 /BitsPerComponent 8 /Columns 204 >>] >> stream x e7U]}LLfr$rp�ASdA%x*ʺDPs<!#r $${&sOU9jjzyh:5u~>2)2)2)2)2)2)2)2)2)2)2)2)2)2)2)2)2zc}/]R|RVJӦeiBd$Z&A6NX[ i"˕ƥL/HQ\mýD$P ð, U7)Urx mjd R ' Ӵ@/Gd_ᕪz˚p~>'06Fiw4 <SX5~nc>\&" J+3[�k䩂)Yl6Xmۄ3X?TF9|@ `P( 3Xf3T*�<G=Qp6%aer$dp8F#0H0ӧ/g)elLJlT™8E"PZ+ Ɛ@N>8 3@*'>3g`0�`2s>p�CE]zyO4@aԀ\DeUf@VzS Ip@ ,@BU\&Ȁ/*{8\Ee\04FXY-2%TFxl6$ d2�8Vyc!6 rW Ni8 (KBeCQN@탬 �R�pLa2iߏ7ΥAiՕ`z�C@cj&ڀLU+#lo) XEHQ~�d96U?j/<[ ,a1=[U8ֲXxC ӕր>48AV[TKRqSU_2*蠎}6`ĵXjjJJ-5d? 1~Iʱ F"h Rʼt_*v9dvIFyM4 LGөDJEQZ-kdw򇩀Ȁl!J)=Bq@Jcy pVZKfY͂lv)^Ё @)-T3-k{@uꢹ\Q$gdǯFY#1 2 :#A\Qz#?1`/b sG\W.\1 RCWp-OqJ{{}&T _dBte@#pH'+^L�M&ScJԂYL6&ys<�k3C7sb|YN{? I+'on7p{Vr0+kjO׾ǁr4CC]{olڻwW34-[z�f xZ;vʫc/Y.&5'˗~\PX<^0A\.F:&/)Sp|HF.&E9s ݭ[lҗ+::첏RKxs4>ASN |߹䒏oOE$d}}pΜ9~P_bSN]ri]2FҠmԩM ,x뭷+#5.K,wSO=e@ B7) fV}}Cºx?ᏯlΜXg�vE{ 5ahI'.pk߸b6;;g}~uJ2z߅r(w|ZW‹iYrRP(mxo=Iv.N^:644N>c}uם{}[1:;;+_`(o5k…Ο�v{w7{饍ӧb_%7VRҲyqW H$ >i֝˯z[Yz݂Cꯏx 5 ChiӦz9nڴrѢE/*jE[.Lc ^z &Pg`0}|r}}Jvٲ� AkX`X]CC}"%|k}-ӥV0\Z2%A=,>d7; l9iӦ6446�hV>j֬Yw7{N+�롇e ei ^i^?�"/FAH hmme3Huww$a;*VX -[ *d˖v}sxoN%L2]{mo<9xэF25bZ+( [T�¼O?yw �|zC먐V۾}3H޽[cNl#f>k.H4&?@<�N0~{{耍wqrB* t4d0(; :qM0o~3\l,ZW>Rώ?kFf̘>l}ݏAly W6d ,}�ه>AشeoWV n*.]:2}rzĪ3EXaC]!ƀ8ygl^{-�\vITJq{Ц}IqGhf[)HV"ٝ9iGZ~#~xwGdFxDY/V^yURt$ol\u7Œ 8;֞ntMmxn~Y'{c>׸4#L𚥶A_H$z�gVog!H1dqC,[kj wڥ3˖-?'qw#ZY#%ʕ7ky]O30�'Nu\8Xcdi&Ki vߒ8x{J<ʜ߯v�O>dؔio?ȥ~bDP MO'�2;54`nJsf>WW<_ҠiMl;b̊ܬ6q!:XGvεQS5҅yk|UsYh-&5]hZa }RW�^ =BTPk_kZg?dvm淮߶}ln2D"GN\`$/�"Lj.@&aAAcǠG]*O.Z&9ז.49e$@VҶb<"rzkV.p@MRJ9 b9leHuљS{.մ�BA}grń$_�8 < r䔕l.μk?!:7< 2.<>xNl A>=*XrDOsHݞHw2T󘃊>0kY]R"HR̛*_1L (%hJI)e F2Ɇǻ|kj\LAzYlXmey4�]󁢐]�0$pb`Y�/2f20zs[ƘPP{?^F$ 2o"fh,�,JؘY S,Rәhj񨈘 .dkڰ P_c_r� `ei]XPjfȰiaXutM;obSs L[ c "��pR:a&0KaZw7"{*)Q1N2&9t _Lm,0a~rX בvƸN.2ȼkô;S{ JS@i8sN!)ͶVz2ִELASNɔzcgapP( fxrLwfB}ڎ{XPlA6JG24jE{. ^`Y>ٽnSdCTF#0i &mѝw ?LPD #@ Mo8AE-C`Jk[C̙d]|IHAfs/ȽEN8aaa긃>㉮?Ȃ`4mhh:iʔ)Di!K?g(rjd`IrJġk?\LtFec\ꃁ ӗeYַ^xftJCPf02#IQZ91kuK3gd`+E"a1;By%ZhsCh[(b.xCǞ^~S[|1~|joOٲ;Ւ5;d8 i(a=u\*/!P{ !{"Rt:F#8_ kdyL0{lTF]U9Ri GD @xXD ,PÀ1+di4 J9L:_jx9sv*.Іq#3<G?w6�2�XOOwggg<4V@oܷ{ ͜P Ci2uԍl*b2zi0|*ω1q1[練W:@}C,+عq xLZ,VY( Ң@~9N L8Eu 7Ms Im%:]Viɠ 8LrHj㵒o63c@Gf( 0-qmXN[<C9ˮH8cNA!�-[{S.p 07{Z*] `^q:sӷ]-~hT1M OvEq�Md ÷`\. ɌY-C7^Z]66$&2adxq"AZDR9~21m^u̝,L[b{|%tgg;5{|'>e?Af: Otdf�M6YQ45u9@ EJtѸ< {Mh~h{Ù~_@&gL vttn4_aW� �8V~͘!U=Sd_`.0ZZ` e'ӏbϑ@e2  ɼAN9Gsm d5XjO<cQ$01u c't;PZL2T𞴢ؑYgkj?+?Zc2Vdқe޼97<W7�dd pi+WRD[.` Ne{ʴKzH~anZ0 /ühO}͚cz\8"ـS͞={�J*Y:?iBgNor`; QdA?|Q^xY L>)K뮹 hf 2`m ;i I]>~C؀_V>zYd�~?+x7cMzE pC]-k^‹\ 0:w(/w֫Dj d!]}[n. {!b̿'jxfl9eѢEw_^(Y :Pj d&kINm>?{zp ]ḵ¼ّP  DˬY3e4L|\ 39".Y駟䎇\n Bd Zt3 oɟg~ ?Viv7Dj?\TUgkh,O󽏼 cg~~S~,ǹ|v#*g&bNo}W\egh M ]3$e<X 6cyi(o^^fdlA& pr,ߛdR͞g2/VƟ5aҭCU <gXێ;TLfj`⩧8}J歜O9=C(ͯNl?rg c0|+0RF3=8zAlْW_w8c"X]<Yh+ͲrknnyQeQm3Wu9rͿ^n]Nfd6@|J1E)q ,X=tņ o[UEjp˗شdSTΪD̡G rbqa3%SArǖpU5>O<ܛ빬Pfo\T 4mi`_ב2 >Xʄ0OKG}tI OeVx!lYU^OJ5o'ƖԩS.]<9T3(XaӢEoVH)x?y|yk?olDd̃gd`Fz<a;EM}u&p{hSW_1xLń9*QV1|pόfʅ g2/E@Pr!OK _GX9Կ?oW?IbellLٳgg2N{7d*mR9+/_Ÿ-uR-4ŏÿ0diHZ Pa^1CdyG|)d "̆[nit?;)D@BrS=%7ycV,~eyh-e!;uX !(DI9PL"co]57R0 ,)!]֫TRFQج6 c{XdEp8L#G3A mU,Ƙ`hѿ{E%-oiyn#_Sl`6lݺ p4 7dԊzT~IU' nDwo+X]jٲ7|huGr $q5}[ OxkVy(AkkQGk׮GQ0 3# Ktf+Fz_W͏>c ]x$;w섩A6{yn=enQ_ԷKrmy_6mj ` ENR(zA揍i4C <);/3<;G0 R Уwp,> dɒ%Hvuuw̘1=U40FG7Ut%〰H$s@ϝ;`5vEI^$(vn 3:ݻb~ qJg'zGww7m+d̬J P9lbu)S^}DO?}*XE aXK?~(yNsZ {䑿 7@RKK \2Pu,Z*ߠJ峢;i5rէ~a##ayܮ[ONz O3gjdym۶͉hg'C_H%LUd윻śx�6owΜX@$"}⏭+k�Fp`x{}y_ße#�^@pznukL&|1 $z^ZbxD'~J xT@9sPVcc̙`cXVXxzh {C*VjVL OQ`˯7OoS/XSsΧ1o}ONA/+FclgbX2X,L)ͣ1T9“>v̯BaWkGϗ^zy3x搀-{zzyg[4;Ğ<LN5 %sTG$缥e ŗ_AK.^v-o V>>{cmڴ ne9#p`qB2{Lp@]£omnݺ a#*H_4/]qy6-s �p�2SФ`[l%_!,TȨdcc`|itz=m`/}J/1AIғN:@O$p<``ЩB{w#n6 =ܰF/U2x!]iFH׻(F\kZV}WN6#!={w O`kkW> އ=XeGW]G6o{Ն!SNٰIQss eV]]fw: kٯژ] 7ily[qꩧ`^qO؜1sd={;DvX`RUL KV07Xj۶y}cTZ:@y`gMgg'W:[xJzRELitj_ь{w򒸠I/%<hud \͒9 wvv$76{/Rwpx޷`RORbŊB6K$z.µFsVCKhfe/(> aRft2VeT DoXbmi U akl򂘌OU8zU2nJ0a-5k455^, /d3.&^]ƛP +tA` 8uJ7.2)bɈdA)ooii 68҄>vȧzdQV?577o^ϭe}F$EJSdkI:$&}3pyzꊟ]ʬY3UnTnW05L֧Wƅʚ5JfY66D/npeX9YYred|=Fa;T,3Y'/gϝ;;ACYl1`Ced:̧3Ȭbu0*4es)#q-Ovҹc.]66 lj-گ|'3 (x"Ƙl^^c7}ݿ'4~p6l#x@_a0iҳ1(ZOc0 軽V`nȰ khh eYcR߂sLo>s!/ éKvH$vj47,WÆ!K`2dQ2JzT&%Jx{ͩ#2ko/˔)Vro˲H P&7n3fJ^C6ޥmq)2&$ ( H&D2JΚq ϭ c@W *%?W^CN �t:O^1A1(ȦNEL&3kI)a]]`s�{86=Ѥ5؎x<v/ iO'e Ǝ= wR#Xq,^eHG1coe]]h 0xD8M(tj)M<W*LOO0:L38e{t~_vZݛߪmH8d!x548EȀɛF@]/Pz4N^,kRL;fDGxy{[32κB#+:ɮ]O�tS TL.Ha O9@li immyf^4»j ;>Acgr? û}N(^ṚxRX9(,=7�x<6w={_}աC%J7&+Gj|Ҙ(MS"`H#hECY>mg(wdΝrr9~;'f۔D6lx3/O6Ͷ-00♼t߳<Y{onuuu|=+S1~ 㻗 Lx #( Yq$׬C;PI*p-9<A.!~? pC?i0G̅[�,Ӕ/Xt挰) \nx)ݐX#ujye /$}nḿ &ڹ ?={vOx$ӲJ<ԃHA9G4?Nk@[mY'b*`2Ƥ\V:aupDDB2hPH uU b̒9Ke3"|YVobd}y睋 8I|& gzlL"hj8MJx-3=LoySv#LLB&uǎjj!&?IiKfPSKhK/=͛w{~RŦ_[YC&M6# FFseј5sΪp`LlD`%:I=M{6S<+-e,kI|I`/æ>uNgGOҏ=$~O oo{&40$Fu%aI#gcM$<+-@-Hߣ{"i帢ʁcnt F8W-i/c_ǵox0gƟl2=w]Y1˖`GNsYFPYv[ŶeK�`]Dyw-Ѹ.C=_xnȞ.*q2d2v4uR0 U?|e4Um4*dVNZ`f֬&t%gE6m/:Vg%*,czީ:\z@C5oW?ޮXnJ*@֘RZ>$%E+CG,?:TK-c7Oo)J$)9[»-K-Ce5r#*\a`~{uttuu%ͷ9>l[^ǘ9$&EKAз#MZ8*h`H i U&}같Fi/#g5ۛnOCmdGؘYT@碔6E�cKSYNf 4ː2%H(?V N3B,kz\�LTaAKbL_W g:[J5˳B @axޜ%bQK|']֬9[o==sN ]5Zļ")|s164ʥݣ Ef#Gڹivgg [¶Ѓh8ӆ SpZϐAñ49xνh^pW}m 8O~| C1<&~&{02r譜Z2WQVug᫗<y4J= h*aMW&(2SLe* 2eȔ &FSb2In/U< / X\pWFc]28m&Gi8[ָ^4Zt.Ϊ#1!I Eb\_3?+@PLpX*VˆpH >  ,`"lr_2z x ,ue]}8!A<!ArEISP]]0CML A c;+'J97ƚR!� A ,$MzB( !-#`NV?>4/Si'�X]pҠw{Yr+VuUX<1(~YdGDJnj`o|p]~sycM")"%Ak1J)zwJyaQ?&+v�&|'�+$XE#1ÉbQVNn�~C0,.<E;mocY[@9Nd˸b+ g Ż]x\^ճBf ։򓧆n<~5uz0X�~ǯ)Wȵ�/%@X� T\ *)wY7K`r9nKhj4'un@ zꉲz!,H+�I}j}mo2<WeJٶ&0f`yMdFm߫kw7Qw\W/ C[4q.Tsz7&`T[w*p:Yfx~ S '-GG"?  XCJ;bz_?~5b+"wS2ciHdL�,CΛ}SnnPQZkCf ӎ9{SNrs@6(p)k SNVהNng<刟 3F8>XF።{rmmƭ~ lo8"jisCҪycLwv}qeq 9L##ȯBRIhm>V,fCHq6 4ZTI!}9"̒^]3DOҚ3CΘ1U{?ڵoֈ>δrЯVKDC0T�B pP�\~B@hؠм6a-#QcK/d&tBsClZ /e4"Q0ۆGmv 'mݺuR fȳs*+uѱfn8"`;10J`�3#z.f|9$I@)x}+XYShHN= p9f,์.Ȱ9#໕LDJu`%@ GHQ7"@,n@рFu `WtRʵ^uyohjk>#f<te 8)6y"+8:3sC@]8"짭;xg+{P\6R・;ZÎY@X;x7 `N?Qt9~ᐗ3r!3~yh8d\W]HdRaD:)Et8 DŧipAmٲYLmeފ,l ?3ߐCa�S8 cGePzm/"M|5 rT[V / `iCf^z; 2Ψ#ӧϞQf=ςe̩(/7Y5Mb lΘX[dZ~ E5gSƬ'y#e'096͞tuTEg�*"ܯr{oϱ Ƀ3GlSnf2>#ơ a#/BN2k+B6uMFvE,D̕/<L[ U9Fv!˯WPb-w.y-y',HKH7D5Ga4+ LTB.'- 7dƽ ЮʂqRah`#g,>w84vUq{;L6XX;sMAt],PBS{k%QnEsrwH#n#J!~b~k2)AnD�Pؘ5#uS%POms-]p3up#4K i6sJ _?z'>y[K;uM.j_wS]c �sUy&ek"UBiM3?n|"BhER9AaJ7U$\G2C i(5kVb#-J.b/쓛6m?æRG9)&ّTRPu^<GjǙCPoխC|J3d,f46.WE(&UjN`FY0"pe׿ P1Yss>voca'ܔL  _J@`bzXDALJ7R:xTFCW[QQЙF�7[58@ ӟްv1<a~۷&^U([\[[ʬНvPF+vW#a8s(lFi�ShW2Ρ\WWwg>Sk_a{Mgq[o&UǤ?/s@/^]GȁˆH[jmLF9AiZRuҲ?9{Qܳ~y2Y<g>5PL4N^\S J(V;9g,BE4Kל p kL.`i#ymGJPar]w}% wnsRtK+;5hbWŠ\×mY8D^08HJz5C ,8I7RT::hQS{864:|땦ԽjZЄgiys(,b* �O QrYEk`U Bnڛ1.:qѰc($##<3t&K./'>5X (Twjd $LYT@N6P*?GY';dLF2v^Y"&lTX A!cEa>,8qf@CBvsú*im۶?4h{4iN X*WÍ ,P\E.q te[Y  &TtZSv:8Si]VdsvbŁNT"(̵�3RXP,ֺv1EGqcmb8]8ed-*ZR 'MchE؂iC TNdNBY�%%?Ł ;aDNsѻ)x# /#aqPlXXOOW利vF#_b\n6 Ɉ+^vʅơآRpF&"J^);w+T0`LZ% 9ǹa$ցhOWjEr+8Y*l Pr _\j.2W8k+ 8U R,qq xB,.XdrB oEvQe$n�YI�J pK! ل- ^Ru=Ԁjq!Blk<Pٖ-[¿2u+̴<R/Š:]c[h# q%69帓68+t=lN`crJx.2ٟSn;͍JƔϜRNSjd8ڕIgggYOcƗ.xpQ8|R缤�Z}%sz+B͈ڐ-҆hFbꆅ+a=QRs@/)ape4yh*$[s Diu ~,ӟ/Zڃ[I'Ï馛'< zѮ^( /ܡJEY0gu4\P3TWBu!n Kډb;P\-Gq8 ]mI #(ҰCey�9UHu"g3HSq"E-!f7]?kŊ'x 'jyH$xos{5퇐)1{bL߶[tǕt{WQ GYXH92ʬD"cF.yٍ#lO.֝$<@ĕbѳ$܀bE@WB{h)iw:6 /lUW]p1,_XtK,M/tXF|drxkX׸:Qz qhb(ƙmJ*vA8HA>̢#,CQ{4rYҟa l2lTڗn,P qR 2V43ߘ]it{8HrHƹ?#҉WƒOSڜꔅs;HO`3fDX,7DQ+ c :CNA;1R{O*V-fJIFcD]  <-\&% 9z^ZA À, fYzFsq<Ùag9Cl(8{|8iM qoAZqu(r-isPso>ڳ)R(uHH:@!O#ؑZpgqU&lq$~Ae%r#b*AK05$Hl Ԥ--K-rb) d<lBe�Oq_n@i;CrkmLrJJvGsĀ]S"j*kJO[GI]o2Kr4c:RoL0JdAL}4U$cU0|OaTLdS fB"Db)ڕ(�Lp�|ەc?jȜ5ݭХ@i( W|GǤו.R[T!1 1МP;kg9H10T(9E#xBpɌ3_hwn*~g"T(NEm-K:s4R Eπ47#襃Nk*/ !_C4Wpbԍ>JrJ,f8 NNKmyپ�mOJŀ"xٔ KKq>oՍP}gSbV36̵ plP{,5%73B ğ&:7*ҤBqK5y!!nE�^-ݴ?΂Ӝ|n9U" vA\Ûghppo,搽pbdPQjFW < 4iTߗQ JxKSA)lRA)2:P-j 8[V<\% JPlSo7cМ2N^EG뢺j@) 9NQeEP%`7 BEUc XHĴ&amͰӌuܰ>pRK,C$x))vgB0A]&myխeoU\?zhxmiH t:i<�ӛFVOu~jye;S m25R^#Xj¢b|rxjsI[|vR1;=fN �^fVK,`JLT“Sn�6X29pHdm60q XgM NU*aQЛF%$w"U60IKhzl ꈰzx,[Fzƽf.^m%1D_ Igú7SV8&xuxM�&<6Y2`˜vcZ9"3oX<M>~n^Ho9L[WiT%%_] (y숮yN :XdrqSI'L gi*F䑥W\vQk �aX-Hѣ:SbsjWw!Ud9$`2%oO~򯫴UѐXPU]X0ZS39tTsS%{+8+AE EQՕ|ל-F3h�eJdI]ktw�қ΀ T)&Bᶐ9j794X)iԉ=IՓ у=+);⎧�vyUn!䔨 S󘺐 )x*b.!͝s'؎siO!{HZ"eNu1B k?&2*D+Gҹ:Ob3p !tjF/WpCJ7fk{x9"Ma]IW!3)qMZ:JсwG/f5H@8t4j#zê8Ci'c4n E* ԼX &\ĕF4l kmmNk UPSL^q~ps5'9V9rnHd7+%Ð`e2'1Y_ hpm>x<p2FH�eez9Cɩ9~mE 2>S/ߙrs̊ p hWE] >.c kRAFFI9)HceFtW5 Hpn8d0 H3BP@)t␬2M =okL`_TCe9A "i`ԃDaq&՝.M1p9L$Ӫ-ڼEɇ#yઃ4#bxU|$<}dUN-d\y~$CLEV'[a><%tgF҈dQYu C48j8 Ҙ{ b̛[:}77STvt _p2cQ2N;*M><F4OW)6piPl�n5zu%su uT%W/X\+c e 8;+9³K!"xUe]a,=ڠ #A0{9,Hi eBp7Kvyr٩AM Vm'nHQ"#@hy3r Y &C*|\kL9q<kM5d܀DH$En;өZ&XITjBR—K{x |rJXեf<9g-<E'l׍3TQ ΂ |e(P=o5z|u |+M۰m(i9+&eR&eR&eR&eR&eR&eR&eR&eR&eR&eR&%hx endstream endobj 12 0 obj << /Type /XObject /Subtype /Image /Height 240 /Width 204 /BitsPerComponent 8 /ColorSpace /DeviceGray /Decode [0 1] /Length 2902 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 1 /BitsPerComponent 8 /Columns 204 >>] >> stream x{P<rD*!yd4`Fkb)ZGmR(֦&4Q`'iLڤƷBѩ޽wϞs~]o_yYō7nܸqƍ7l:8jd~];Z[O]bz ș7ᗛ'8zC 'fS~oʛ:]R/1KWO|]>bb6Lggh^EL�<¯ڇy]ZT'ڡ|EOdBfk")"/Ͷ xq/n#.ᮎEB\-�ͬcmF]橛$`G񨑱n,�n2*�dP%i/`�/ih]?P#5cH̑LiӦdHEͲZ,&#u3}ǀp(g9"3!*�߯Hwl V2Ѵc XFC&&h&&h?LL}H1j2c y2a bGfOc3P2یGm,@1W�b`Y յdQ("Xf|@ɸŸ%;Q%s:'iDsgƀFc!oF͛{pbnRPަC_-iί u a~$Aqj81#:8Wjی\5g4L'pbQKw;#}3pbک+816d,ipbXw6\�&8Dlj8Gˤ3NB[S3@6[l N d7&ܥb({z281Ţ\E'&|yi['0n>-m j.UYSXY?ȯord|1%HLh}5˟4Ĉ&mVp&ٛ<3e_pWv9C/=C);C�/J�Zd%cݎ_`쉳Vyv م xA܈\2u9!(v5�\'&^sX֞~ۉvY_&3}O+ 6[dg͙bU%WbO{o` WpHny1fI %ۙ ϝ#w^Y103xy0N=DR<Z�iO*�ۋRfJ(7y@L| ކz+5ekM]sJ<dJQ #_)1"Cc@)\ 95cM]d+mȄ>Iќ*ngQd-'W[@K6V&2^LQD(�\3xhYwD47\$�Bi]D+谹4E>/OPh KfH6*%%!K@y3; .&8[H)�@YA쁱?]c&VJg3U@VoL�JLrj$�1{,bJ/-&)z(�ŬGY7,{;H,A=SLd"�̕!R gc% >1eģp0 gFs05 [&�t1mPg:WJFOU2m]zCjg2|qӈa'jA4J[=Xؼ=+&ii1fΎƌQWnRNev g!p g>\b6![M;�gy!&|i:3dF*cȚbƿ? o3Sig|Z^)eb}Gi.X榇'9=΢0jD'9Eݯ1EH�0!;Y tC? Og|(:  kGjI,^P�<ܨcAj�3LW=B)F$#Yޑ�;/C0k5J1_0wY)*Xpv_z�gM.Kp~s_CBoF'1/CD#$~T}I +b-?ă}>mQr129[I�C#`k652v/'1fqw=*DaïWɦ5Yj+Ŕ o<+& ]sM?W8 K&~h Q>_\1Z7,"`h\q;aLtԯbxek\T8;̎5ca1۟1ymvvu#ALKI/p 3ݱPپмZۓZ pY]_=X#67=V1d~F{}yɭFˈ҂ģo~|%o5ӛңTRu{'>Q@` £ěp?'/3A?Fa%$C[jXB'"hs9JgeOL},-ΌwJxy|ܬTxVX[*Y/ɹY$c6<G314O}/홯 KqU~dz%oE$ukUq#M]ly^[7]:m!/}RTp!|p1䧏);#7/,0 ?{BO�%﫛%e˭|4Af$Fh9pOŷpZFݹwnX62 rߗZ77nܸq/?oh"S endstream endobj 13 0 obj << /Type /Font /BaseFont /06d7b8+NotoSerif-Italic /Subtype /TrueType /FontDescriptor 18 0 R /FirstChar 32 /LastChar 255 /Widths 20 0 R /ToUnicode 19 0 R >> endobj 14 0 obj << /Type /Outlines /Count 1 /First 15 0 R /Last 15 0 R >> endobj 15 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 14 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 16 0 obj << /Nums [0 << /P (1) >>] >> endobj 17 0 obj << /Length1 7400 /Length 4489 /Filter [/FlateDecode] >> stream xY{pSWzνWl8(Gږe[-ȄdKDlH2lX; qH 暤y4M3i'fvmdنɦ+966!+s;+�,u#l}HWjHWkӔh7 H9ҝH ^Z=ғHZgNKē*~ih8<[tM;kx�iV. `8G#QDR 28:4@V�PN3/FӞCh 5� Zދ,�f\Jst%0x�߯zy }aL9j/? Úi HbRWXV\aceEA `sWCм D[LՕ6VK\\C a>)Wu:Z/}j7T|㛋NPJM\DzI4Lh}|yK"t<L$vn4$mh1M+r?P|\Ooڏ'Q_J!g9rG[Y:mYWaO?~47H{O`xgsw マDxUL8JIjm.tX+V\x慏X/I><w?pU~&">uM&9Gbj&/#-Bԣ64PLU~PlX*�W.^B M y߼dKc7WNw=F4zرSO=+ҊGwMZ$?4Ufڇ$3tuVi|o1q94孍8>'Rn29U:VYQo/m'KGl[%޶ܡ;Y6Z߱ɑ7qgP_^X`N!N :Q+ʭ)wX3YGtsZz&<*Voɟ{`I&o,uYzNj5lWMͭΫnؠVarZ_w%w5Udqw+=fZ'^ !D@ym$Se;wԟ$C]knSើuȼ`h&̓<baBubmUH.[JVWn6Ó@]-M5_J[l%uzޚɿYK~5.*$3sk[z.쬒ơ]I}(Ma_һ0&BO%N1ٔxng'V?` 0-w$vkk*-݋ KL iEt |͸>#J۠Y<[Σ3{ozfq;r B5@+lN>=X,i%<OaRi-)'( YSP˴^Qq}䐵*.A1Qq d*BPq-,#XO<:*Pq=@UE/Ԫ"X#tx*;S* E♰U4=owxԊU|1iϫb'Iŗrq_t/6G#@V[_Aa?u̴~xv(G}~! 0 )Rh0G!�3ƾ{nUS~(k>0caGH #W#w88RcEiAchw(oG)!.m-O5PB[ xDm߻!޼w;"̡03zF_uR& /O ڂQꥱF陧>ȣ;*I?0w!f43ߊq h;r6fxwR^yc^bXTz9 5 /+aVstQG&vK@,6Zc߿<kX1 j<p,(z<0 G^8 yGTǸhl L.?:Eh bF^t(Fr,Gh,N61\o7 Fc`"7D, Nip;껻{v'覍6G&ZG29?DQpn[`8It? aohh;^##(sJȇc+X$Bojƚ >481LHmw6!~tzñnVU= H(Cfgz^|ezy[G`')4pQ̎;pԃO|pnlۑv@⃠Q_\?ۡ6a<LJG'©ߑQnc1(f'O+$ sq\z6Ot.F#<ᾰ<;񵡹sr1nØjS0Y=h,jȐi F}a9U3z{γlssVSk W?zRZ}%={ocW -I EaJlؾ@E䧄e-Φ5CHkygb0EV!EHdgՙ r,A&.A aHЄX_NnEFjŖd7 -!H-AS'QIqE0A؋~FL"ϒͯ߆%o4]%8rl}z5.V~J ]sW ٧N 'OE'G8'1(k+:\nI떼TNJiqCd&50cqS>1b[\I6[hLAaӺ^kogXpt\'VҜQo&Hkie+d .`\tl.+bV<W@q\J4d<2,-mѥ] 98Ykڡh(q{MMAÊ6V<+l0ÊFc"RiR#l]X,66 e 66VbxLin_qvwuvohinu[oRySƪ,5WME9%33uZ$br*<Jni)gE;(Ʀ4-QхVӚq2jM3dGS6*_v>Vqb1&€*CJӾ@̌FџQ^8đF&k>k�X*bS:vd+/s(KdF.R6*:.pNh�,t+E{<~X)U6eݿ,DJl+Lj[*)14;"^і6lM2m{ޙdL r|:++>jCWͤ^>jTS �Qmӭ%M4Ed&)oL3VGBri|=5O<lٙ[1mNw\J>َ1>U&Te5I͖>K*/H* �+-8Zˆ V2arݣ �Z^S߃[چW͑}zWx=OȣJ0Of=t%2%QπJmL3= L>KJ�}6Ƽj= *Ew uM'}0Bk/:ר=6ֵýI5$=I%ncZ /S`р�mP+msjC-ukPRߦ1zP +ƖYiZFϔb\gAmK$@L@1b,d5Oݲ_Tvo,<<j0x\, &%X0R*͜#[nvNӸ^nsƙpYhCVM9F~qGZ^mtrn<Afr4a0-#]VrĹ}�@ Dh4M9y e #(#n$x 0g%pz�p8 i0 Ii1va c<sO_ c5K1"G"o[R2d)70ui\pVYJW|(vK 4/i[# p u9uz OW?x>q/w1~a;p ^|3CĀc[ w/<wi<<GSSա%Epsrn،,O)5qI_os 8k_u Ux]i^P`[}@3{7z ,o,5 ZmvM=-Vͫ3³<إOτ*aprR{SW_k_ endstream endobj 18 0 obj << /Type /FontDescriptor /FontName /06d7b8+NotoSerif-Italic /FontFile2 17 0 R /FontBBox [-254 -250 1238 1047] /Flags 70 /StemV 0 /ItalicAngle -12.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 19 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 20 0 obj [259 600 600 600 600 600 600 600 600 600 600 600 600 600 250 600 600 559 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 589 600 600 600 600 600 600 600 600 600 600 600 600 600 612 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 493 600 556 600 304 600 600 600 600 600 600 600 600 467 600 600 599 600 600 545 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600] endobj xref 0 21 0000000000 65535 f 0000000015 00000 n 0000000262 00000 n 0000000463 00000 n 0000000520 00000 n 0000000571 00000 n 0000000843 00000 n 0000001446 00000 n 0000001769 00000 n 0000001811 00000 n 0000001859 00000 n 0000001911 00000 n 0000021221 00000 n 0000024389 00000 n 0000024561 00000 n 0000024635 00000 n 0000024760 00000 n 0000024805 00000 n 0000029384 00000 n 0000029608 00000 n 0000030970 00000 n trailer << /Size 21 /Root 2 0 R /Info 1 0 R >> startxref 31884 %%EOF �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/image-border.pdf������������������������������������������0000664�0000000�0000000�00000077210�14163570564�0023513�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.beta.3.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.3.dev, based on Prawn 2.2.2) /ModDate (D:20190819044154-06'00') /CreationDate (D:20190819044154-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 14 0 R /PageLabels 16 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 561 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN q 0.8667 0.8667 0.8667 SCN 0.5 w 223.14 805.89 m 372.14 805.89 l 373.2446 805.89 374.14 804.9946 374.14 803.89 c 374.14 627.89 l 374.14 626.7854 373.2446 625.89 372.14 625.89 c 223.14 625.89 l 222.0354 625.89 221.14 626.7854 221.14 627.89 c 221.14 803.89 l 221.14 804.9946 222.0354 805.89 223.14 805.89 c h S Q q 153.0 0.0 0.0 180.0 221.14 625.89 cm /I1 Do Q 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 610.5242 Td /F2.0 9.975 Tf <46696775726520312e20547578> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 13 0 R >> /XObject << /I1 11 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /XObject /Subtype /Image /Height 240 /Width 204 /BitsPerComponent 8 /ColorSpace /DeviceRGB /SMask 12 0 R /Length 19044 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 3 /BitsPerComponent 8 /Columns 204 >>] >> stream x e7U]}LLfr$rp�ASdA%x*ʺDPs<!#r $${&sOU9jjzyh:5u~>2)2)2)2)2)2)2)2)2)2)2)2)2)2)2)2)2zc}/]R|RVJӦeiBd$Z&A6NX[ i"˕ƥL/HQ\mýD$P ð, U7)Urx mjd R ' Ӵ@/Gd_ᕪz˚p~>'06Fiw4 <SX5~nc>\&" J+3[�k䩂)Yl6Xmۄ3X?TF9|@ `P( 3Xf3T*�<G=Qp6%aer$dp8F#0H0ӧ/g)elLJlT™8E"PZ+ Ɛ@N>8 3@*'>3g`0�`2s>p�CE]zyO4@aԀ\DeUf@VzS Ip@ ,@BU\&Ȁ/*{8\Ee\04FXY-2%TFxl6$ d2�8Vyc!6 rW Ni8 (KBeCQN@탬 �R�pLa2iߏ7ΥAiՕ`z�C@cj&ڀLU+#lo) XEHQ~�d96U?j/<[ ,a1=[U8ֲXxC ӕր>48AV[TKRqSU_2*蠎}6`ĵXjjJJ-5d? 1~Iʱ F"h Rʼt_*v9dvIFyM4 LGөDJEQZ-kdw򇩀Ȁl!J)=Bq@Jcy pVZKfY͂lv)^Ё @)-T3-k{@uꢹ\Q$gdǯFY#1 2 :#A\Qz#?1`/b sG\W.\1 RCWp-OqJ{{}&T _dBte@#pH'+^L�M&ScJԂYL6&ys<�k3C7sb|YN{? I+'on7p{Vr0+kjO׾ǁr4CC]{olڻwW34-[z�f xZ;vʫc/Y.&5'˗~\PX<^0A\.F:&/)Sp|HF.&E9s ݭ[lҗ+::첏RKxs4>ASN |߹䒏oOE$d}}pΜ9~P_bSN]ri]2FҠmԩM ,x뭷+#5.K,wSO=e@ B7) fV}}Cºx?ᏯlΜXg�vE{ 5ahI'.pk߸b6;;g}~uJ2z߅r(w|ZW‹iYrRP(mxo=Iv.N^:644N>c}uם{}[1:;;+_`(o5k…Ο�v{w7{饍ӧb_%7VRҲyqW H$ >i֝˯z[Yz݂Cꯏx 5 ChiӦz9nڴrѢE/*jE[.Lc ^z &Pg`0}|r}}Jvٲ� AkX`X]CC}"%|k}-ӥV0\Z2%A=,>d7; l9iӦ6446�hV>j֬Yw7{N+�롇e ei ^i^?�"/FAH hmme3Huww$a;*VX -[ *d˖v}sxoN%L2]{mo<9xэF25bZ+( [T�¼O?yw �|zC먐V۾}3H޽[cNl#f>k.H4&?@<�N0~{{耍wqrB* t4d0(; :qM0o~3\l,ZW>Rώ?kFf̘>l}ݏAly W6d ,}�ه>AشeoWV n*.]:2}rzĪ3EXaC]!ƀ8ygl^{-�\vITJq{Ц}IqGhf[)HV"ٝ9iGZ~#~xwGdFxDY/V^yURt$ol\u7Œ 8;֞ntMmxn~Y'{c>׸4#L𚥶A_H$z�gVog!H1dqC,[kj wڥ3˖-?'qw#ZY#%ʕ7ky]O30�'Nu\8Xcdi&Ki vߒ8x{J<ʜ߯v�O>dؔio?ȥ~bDP MO'�2;54`nJsf>WW<_ҠiMl;b̊ܬ6q!:XGvεQS5҅yk|UsYh-&5]hZa }RW�^ =BTPk_kZg?dvm淮߶}ln2D"GN\`$/�"Lj.@&aAAcǠG]*O.Z&9ז.49e$@VҶb<"rzkV.p@MRJ9 b9leHuљS{.մ�BA}grń$_�8 < r䔕l.μk?!:7< 2.<>xNl A>=*XrDOsHݞHw2T󘃊>0kY]R"HR̛*_1L (%hJI)e F2Ɇǻ|kj\LAzYlXmey4�]󁢐]�0$pb`Y�/2f20zs[ƘPP{?^F$ 2o"fh,�,JؘY S,Rәhj񨈘 .dkڰ P_c_r� `ei]XPjfȰiaXutM;obSs L[ c "��pR:a&0KaZw7"{*)Q1N2&9t _Lm,0a~rX בvƸN.2ȼkô;S{ JS@i8sN!)ͶVz2ִELASNɔzcgapP( fxrLwfB}ڎ{XPlA6JG24jE{. ^`Y>ٽnSdCTF#0i &mѝw ?LPD #@ Mo8AE-C`Jk[C̙d]|IHAfs/ȽEN8aaa긃>㉮?Ȃ`4mhh:iʔ)Di!K?g(rjd`IrJġk?\LtFec\ꃁ ӗeYַ^xftJCPf02#IQZ91kuK3gd`+E"a1;By%ZhsCh[(b.xCǞ^~S[|1~|joOٲ;Ւ5;d8 i(a=u\*/!P{ !{"Rt:F#8_ kdyL0{lTF]U9Ri GD @xXD ,PÀ1+di4 J9L:_jx9sv*.Іq#3<G?w6�2�XOOwggg<4V@oܷ{ ͜P Ci2uԍl*b2zi0|*ω1q1[練W:@}C,+عq xLZ,VY( Ң@~9N L8Eu 7Ms Im%:]Viɠ 8LrHj㵒o63c@Gf( 0-qmXN[<C9ˮH8cNA!�-[{S.p 07{Z*] `^q:sӷ]-~hT1M OvEq�Md ÷`\. ɌY-C7^Z]66$&2adxq"AZDR9~21m^u̝,L[b{|%tgg;5{|'>e?Af: Otdf�M6YQ45u9@ EJtѸ< {Mh~h{Ù~_@&gL vttn4_aW� �8V~͘!U=Sd_`.0ZZ` e'ӏbϑ@e2  ɼAN9Gsm d5XjO<cQ$01u c't;PZL2T𞴢ؑYgkj?+?Zc2Vdқe޼97<W7�dd pi+WRD[.` Ne{ʴKzH~anZ0 /ühO}͚cz\8"ـS͞={�J*Y:?iBgNor`; QdA?|Q^xY L>)K뮹 hf 2`m ;i I]>~C؀_V>zYd�~?+x7cMzE pC]-k^‹\ 0:w(/w֫Dj d!]}[n. {!b̿'jxfl9eѢEw_^(Y :Pj d&kINm>?{zp ]ḵ¼ّP  DˬY3e4L|\ 39".Y駟䎇\n Bd Zt3 oɟg~ ?Viv7Dj?\TUgkh,O󽏼 cg~~S~,ǹ|v#*g&bNo}W\egh M ]3$e<X 6cyi(o^^fdlA& pr,ߛdR͞g2/VƟ5aҭCU <gXێ;TLfj`⩧8}J歜O9=C(ͯNl?rg c0|+0RF3=8zAlْW_w8c"X]<Yh+ͲrknnyQeQm3Wu9rͿ^n]Nfd6@|J1E)q ,X=tņ o[UEjp˗شdSTΪD̡G rbqa3%SArǖpU5>O<ܛ빬Pfo\T 4mi`_ב2 >Xʄ0OKG}tI OeVx!lYU^OJ5o'ƖԩS.]<9T3(XaӢEoVH)x?y|yk?olDd̃gd`Fz<a;EM}u&p{hSW_1xLń9*QV1|pόfʅ g2/E@Pr!OK _GX9Կ?oW?IbellLٳgg2N{7d*mR9+/_Ÿ-uR-4ŏÿ0diHZ Pa^1CdyG|)d "̆[nit?;)D@BrS=%7ycV,~eyh-e!;uX !(DI9PL"co]57R0 ,)!]֫TRFQج6 c{XdEp8L#G3A mU,Ƙ`hѿ{E%-oiyn#_Sl`6lݺ p4 7dԊzT~IU' nDwo+X]jٲ7|huGr $q5}[ OxkVy(AkkQGk׮GQ0 3# Ktf+Fz_W͏>c ]x$;w섩A6{yn=enQ_ԷKrmy_6mj ` ENR(zA揍i4C <);/3<;G0 R Уwp,> dɒ%Hvuuw̘1=U40FG7Ut%〰H$s@ϝ;`5vEI^$(vn 3:ݻb~ qJg'zGww7m+d̬J P9lbu)S^}DO?}*XE aXK?~(yNsZ {䑿 7@RKK \2Pu,Z*ߠJ峢;i5rէ~a##ayܮ[ONz O3gjdym۶͉hg'C_H%LUd윻śx�6owΜX@$"}⏭+k�Fp`x{}y_ße#�^@pznukL&|1 $z^ZbxD'~J xT@9sPVcc̙`cXVXxzh {C*VjVL OQ`˯7OoS/XSsΧ1o}ONA/+FclgbX2X,L)ͣ1T9“>v̯BaWkGϗ^zy3x搀-{zzyg[4;Ğ<LN5 %sTG$缥e ŗ_AK.^v-o V>>{cmڴ ne9#p`qB2{Lp@]£omnݺ a#*H_4/]qy6-s �p�2SФ`[l%_!,TȨdcc`|itz=m`/}J/1AIғN:@O$p<``ЩB{w#n6 =ܰF/U2x!]iFH׻(F\kZV}WN6#!={w O`kkW> އ=XeGW]G6o{Ն!SNٰIQss eV]]fw: kٯژ] 7ily[qꩧ`^qO؜1sd={;DvX`RUL KV07Xj۶y}cTZ:@y`gMgg'W:[xJzRELitj_ь{w򒸠I/%<hud \͒9 wvv$76{/Rwpx޷`RORbŊB6K$z.µFsVCKhfe/(> aRft2VeT DoXbmi U akl򂘌OU8zU2nJ0a-5k455^, /d3.&^]ƛP +tA` 8uJ7.2)bɈdA)ooii 68҄>vȧzdQV?577o^ϭe}F$EJSdkI:$&}3pyzꊟ]ʬY3UnTnW05L֧Wƅʚ5JfY66D/npeX9YYred|=Fa;T,3Y'/gϝ;;ACYl1`Ced:̧3Ȭbu0*4es)#q-Ovҹc.]66 lj-گ|'3 (x"Ƙl^^c7}ݿ'4~p6l#x@_a0iҳ1(ZOc0 軽V`nȰ khh eYcR߂sLo>s!/ éKvH$vj47,WÆ!K`2dQ2JzT&%Jx{ͩ#2ko/˔)Vro˲H P&7n3fJ^C6ޥmq)2&$ ( H&D2JΚq ϭ c@W *%?W^CN �t:O^1A1(ȦNEL&3kI)a]]`s�{86=Ѥ5؎x<v/ iO'e Ǝ= wR#Xq,^eHG1coe]]h 0xD8M(tj)M<W*LOO0:L38e{t~_vZݛߪmH8d!x548EȀɛF@]/Pz4N^,kRL;fDGxy{[32κB#+:ɮ]O�tS TL.Ha O9@li immyf^4»j ;>Acgr? û}N(^ṚxRX9(,=7�x<6w={_}աC%J7&+Gj|Ҙ(MS"`H#hECY>mg(wdΝrr9~;'f۔D6lx3/O6Ͷ-00♼t߳<Y{onuuu|=+S1~ 㻗 Lx #( Yq$׬C;PI*p-9<A.!~? pC?i0G̅[�,Ӕ/Xt挰) \nx)ݐX#ujye /$}nḿ &ڹ ?={vOx$ӲJ<ԃHA9G4?Nk@[mY'b*`2Ƥ\V:aupDDB2hPH uU b̒9Ke3"|YVobd}y睋 8I|& gzlL"hj8MJx-3=LoySv#LLB&uǎjj!&?IiKfPSKhK/=͛w{~RŦ_[YC&M6# FFseј5sΪp`LlD`%:I=M{6S<+-e,kI|I`/æ>uNgGOҏ=$~O oo{&40$Fu%aI#gcM$<+-@-Hߣ{"i帢ʁcnt F8W-i/c_ǵox0gƟl2=w]Y1˖`GNsYFPYv[ŶeK�`]Dyw-Ѹ.C=_xnȞ.*q2d2v4uR0 U?|e4Um4*dVNZ`f֬&t%gE6m/:Vg%*,czީ:\z@C5oW?ޮXnJ*@֘RZ>$%E+CG,?:TK-c7Oo)J$)9[»-K-Ce5r#*\a`~{uttuu%ͷ9>l[^ǘ9$&EKAз#MZ8*h`H i U&}같Fi/#g5ۛnOCmdGؘYT@碔6E�cKSYNf 4ː2%H(?V N3B,kz\�LTaAKbL_W g:[J5˳B @axޜ%bQK|']֬9[o==sN ]5Zļ")|s164ʥݣ Ef#Gڹivgg [¶Ѓh8ӆ SpZϐAñ49xνh^pW}m 8O~| C1<&~&{02r譜Z2WQVug᫗<y4J= h*aMW&(2SLe* 2eȔ &FSb2In/U< / X\pWFc]28m&Gi8[ָ^4Zt.Ϊ#1!I Eb\_3?+@PLpX*VˆpH >  ,`"lr_2z x ,ue]}8!A<!ArEISP]]0CML A c;+'J97ƚR!� A ,$MzB( !-#`NV?>4/Si'�X]pҠw{Yr+VuUX<1(~YdGDJnj`o|p]~sycM")"%Ak1J)zwJyaQ?&+v�&|'�+$XE#1ÉbQVNn�~C0,.<E;mocY[@9Nd˸b+ g Ż]x\^ճBf ։򓧆n<~5uz0X�~ǯ)Wȵ�/%@X� T\ *)wY7K`r9nKhj4'un@ zꉲz!,H+�I}j}mo2<WeJٶ&0f`yMdFm߫kw7Qw\W/ C[4q.Tsz7&`T[w*p:Yfx~ S '-GG"?  XCJ;bz_?~5b+"wS2ciHdL�,CΛ}SnnPQZkCf ӎ9{SNrs@6(p)k SNVהNng<刟 3F8>XF።{rmmƭ~ lo8"jisCҪycLwv}qeq 9L##ȯBRIhm>V,fCHq6 4ZTI!}9"̒^]3DOҚ3CΘ1U{?ڵoֈ>δrЯVKDC0T�B pP�\~B@hؠм6a-#QcK/d&tBsClZ /e4"Q0ۆGmv 'mݺuR fȳs*+uѱfn8"`;10J`�3#z.f|9$I@)x}+XYShHN= p9f,์.Ȱ9#໕LDJu`%@ GHQ7"@,n@рFu `WtRʵ^uyohjk>#f<te 8)6y"+8:3sC@]8"짭;xg+{P\6R・;ZÎY@X;x7 `N?Qt9~ᐗ3r!3~yh8d\W]HdRaD:)Et8 DŧipAmٲYLmeފ,l ?3ߐCa�S8 cGePzm/"M|5 rT[V / `iCf^z; 2Ψ#ӧϞQf=ςe̩(/7Y5Mb lΘX[dZ~ E5gSƬ'y#e'096͞tuTEg�*"ܯr{oϱ Ƀ3GlSnf2>#ơ a#/BN2k+B6uMFvE,D̕/<L[ U9Fv!˯WPb-w.y-y',HKH7D5Ga4+ LTB.'- 7dƽ ЮʂqRah`#g,>w84vUq{;L6XX;sMAt],PBS{k%QnEsrwH#n#J!~b~k2)AnD�Pؘ5#uS%POms-]p3up#4K i6sJ _?z'>y[K;uM.j_wS]c �sUy&ek"UBiM3?n|"BhER9AaJ7U$\G2C i(5kVb#-J.b/쓛6m?æRG9)&ّTRPu^<GjǙCPoխC|J3d,f46.WE(&UjN`FY0"pe׿ P1Yss>voca'ܔL  _J@`bzXDALJ7R:xTFCW[QQЙF�7[58@ ӟްv1<a~۷&^U([\[[ʬНvPF+vW#a8s(lFi�ShW2Ρ\WWwg>Sk_a{Mgq[o&UǤ?/s@/^]GȁˆH[jmLF9AiZRuҲ?9{Qܳ~y2Y<g>5PL4N^\S J(V;9g,BE4Kל p kL.`i#ymGJPar]w}% wnsRtK+;5hbWŠ\×mY8D^08HJz5C ,8I7RT::hQS{864:|땦ԽjZЄgiys(,b* �O QrYEk`U Bnڛ1.:qѰc($##<3t&K./'>5X (Twjd $LYT@N6P*?GY';dLF2v^Y"&lTX A!cEa>,8qf@CBvsú*im۶?4h{4iN X*WÍ ,P\E.q te[Y  &TtZSv:8Si]VdsvbŁNT"(̵�3RXP,ֺv1EGqcmb8]8ed-*ZR 'MchE؂iC TNdNBY�%%?Ł ;aDNsѻ)x# /#aqPlXXOOW利vF#_b\n6 Ɉ+^vʅơآRpF&"J^);w+T0`LZ% 9ǹa$ցhOWjEr+8Y*l Pr _\j.2W8k+ 8U R,qq xB,.XdrB oEvQe$n�YI�J pK! ل- ^Ru=Ԁjq!Blk<Pٖ-[¿2u+̴<R/Š:]c[h# q%69帓68+t=lN`crJx.2ٟSn;͍JƔϜRNSjd8ڕIgggYOcƗ.xpQ8|R缤�Z}%sz+B͈ڐ-҆hFbꆅ+a=QRs@/)ape4yh*$[s Diu ~,ӟ/Zڃ[I'Ï馛'< zѮ^( /ܡJEY0gu4\P3TWBu!n Kډb;P\-Gq8 ]mI #(ҰCey�9UHu"g3HSq"E-!f7]?kŊ'x 'jyH$xos{5퇐)1{bL߶[tǕt{WQ GYXH92ʬD"cF.yٍ#lO.֝$<@ĕbѳ$܀bE@WB{h)iw:6 /lUW]p1,_XtK,M/tXF|drxkX׸:Qz qhb(ƙmJ*vA8HA>̢#,CQ{4rYҟa l2lTڗn,P qR 2V43ߘ]it{8HrHƹ?#҉WƒOSڜꔅs;HO`3fDX,7DQ+ c :CNA;1R{O*V-fJIFcD]  <-\&% 9z^ZA À, fYzFsq<Ùag9Cl(8{|8iM qoAZqu(r-isPso>ڳ)R(uHH:@!O#ؑZpgqU&lq$~Ae%r#b*AK05$Hl Ԥ--K-rb) d<lBe�Oq_n@i;CrkmLrJJvGsĀ]S"j*kJO[GI]o2Kr4c:RoL0JdAL}4U$cU0|OaTLdS fB"Db)ڕ(�Lp�|ەc?jȜ5ݭХ@i( W|GǤו.R[T!1 1МP;kg9H10T(9E#xBpɌ3_hwn*~g"T(NEm-K:s4R Eπ47#襃Nk*/ !_C4Wpbԍ>JrJ,f8 NNKmyپ�mOJŀ"xٔ KKq>oՍP}gSbV36̵ plP{,5%73B ğ&:7*ҤBqK5y!!nE�^-ݴ?΂Ӝ|n9U" vA\Ûghppo,搽pbdPQjFW < 4iTߗQ JxKSA)lRA)2:P-j 8[V<\% JPlSo7cМ2N^EG뢺j@) 9NQeEP%`7 BEUc XHĴ&amͰӌuܰ>pRK,C$x))vgB0A]&myխeoU\?zhxmiH t:i<�ӛFVOu~jye;S m25R^#Xj¢b|rxjsI[|vR1;=fN �^fVK,`JLT“Sn�6X29pHdm60q XgM NU*aQЛF%$w"U60IKhzl ꈰzx,[Fzƽf.^m%1D_ Igú7SV8&xuxM�&<6Y2`˜vcZ9"3oX<M>~n^Ho9L[WiT%%_] (y숮yN :XdrqSI'L gi*F䑥W\vQk �aX-Hѣ:SbsjWw!Ud9$`2%oO~򯫴UѐXPU]X0ZS39tTsS%{+8+AE EQՕ|ל-F3h�eJdI]ktw�қ΀ T)&Bᶐ9j794X)iԉ=IՓ у=+);⎧�vyUn!䔨 S󘺐 )x*b.!͝s'؎siO!{HZ"eNu1B k?&2*D+Gҹ:Ob3p !tjF/WpCJ7fk{x9"Ma]IW!3)qMZ:JсwG/f5H@8t4j#zê8Ci'c4n E* ԼX &\ĕF4l kmmNk UPSL^q~ps5'9V9rnHd7+%Ð`e2'1Y_ hpm>x<p2FH�eez9Cɩ9~mE 2>S/ߙrs̊ p hWE] >.c kRAFFI9)HceFtW5 Hpn8d0 H3BP@)t␬2M =okL`_TCe9A "i`ԃDaq&՝.M1p9L$Ӫ-ڼEɇ#yઃ4#bxU|$<}dUN-d\y~$CLEV'[a><%tgF҈dQYu C48j8 Ҙ{ b̛[:}77STvt _p2cQ2N;*M><F4OW)6piPl�n5zu%su uT%W/X\+c e 8;+9³K!"xUe]a,=ڠ #A0{9,Hi eBp7Kvyr٩AM Vm'nHQ"#@hy3r Y &C*|\kL9q<kM5d܀DH$En;өZ&XITjBR—K{x |rJXեf<9g-<E'l׍3TQ ΂ |e(P=o5z|u |+M۰m(i9+&eR&eR&eR&eR&eR&eR&eR&eR&eR&eR&%hx endstream endobj 12 0 obj << /Type /XObject /Subtype /Image /Height 240 /Width 204 /BitsPerComponent 8 /ColorSpace /DeviceGray /Decode [0 1] /Length 2902 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 1 /BitsPerComponent 8 /Columns 204 >>] >> stream x{P<rD*!yd4`Fkb)ZGmR(֦&4Q`'iLڤƷBѩ޽wϞs~]o_yYō7nܸqƍ7l:8jd~];Z[O]bz ș7ᗛ'8zC 'fS~oʛ:]R/1KWO|]>bb6Lggh^EL�<¯ڇy]ZT'ڡ|EOdBfk")"/Ͷ xq/n#.ᮎEB\-�ͬcmF]橛$`G񨑱n,�n2*�dP%i/`�/ih]?P#5cH̑LiӦdHEͲZ,&#u3}ǀp(g9"3!*�߯Hwl V2Ѵc XFC&&h&&h?LL}H1j2c y2a bGfOc3P2یGm,@1W�b`Y յdQ("Xf|@ɸŸ%;Q%s:'iDsgƀFc!oF͛{pbnRPަC_-iί u a~$Aqj81#:8Wjی\5g4L'pbQKw;#}3pbک+816d,ipbXw6\�&8Dlj8Gˤ3NB[S3@6[l N d7&ܥb({z281Ţ\E'&|yi['0n>-m j.UYSXY?ȯord|1%HLh}5˟4Ĉ&mVp&ٛ<3e_pWv9C/=C);C�/J�Zd%cݎ_`쉳Vyv م xA܈\2u9!(v5�\'&^sX֞~ۉvY_&3}O+ 6[dg͙bU%WbO{o` WpHny1fI %ۙ ϝ#w^Y103xy0N=DR<Z�iO*�ۋRfJ(7y@L| ކz+5ekM]sJ<dJQ #_)1"Cc@)\ 95cM]d+mȄ>Iќ*ngQd-'W[@K6V&2^LQD(�\3xhYwD47\$�Bi]D+谹4E>/OPh KfH6*%%!K@y3; .&8[H)�@YA쁱?]c&VJg3U@VoL�JLrj$�1{,bJ/-&)z(�ŬGY7,{;H,A=SLd"�̕!R gc% >1eģp0 gFs05 [&�t1mPg:WJFOU2m]zCjg2|qӈa'jA4J[=Xؼ=+&ii1fΎƌQWnRNev g!p g>\b6![M;�gy!&|i:3dF*cȚbƿ? o3Sig|Z^)eb}Gi.X榇'9=΢0jD'9Eݯ1EH�0!;Y tC? Og|(:  kGjI,^P�<ܨcAj�3LW=B)F$#Yޑ�;/C0k5J1_0wY)*Xpv_z�gM.Kp~s_CBoF'1/CD#$~T}I +b-?ă}>mQr129[I�C#`k652v/'1fqw=*DaïWɦ5Yj+Ŕ o<+& ]sM?W8 K&~h Q>_\1Z7,"`h\q;aLtԯbxek\T8;̎5ca1۟1ymvvu#ALKI/p 3ݱPپмZۓZ pY]_=X#67=V1d~F{}yɭFˈ҂ģo~|%o5ӛңTRu{'>Q@` £ěp?'/3A?Fa%$C[jXB'"hs9JgeOL},-ΌwJxy|ܬTxVX[*Y/ɹY$c6<G314O}/홯 KqU~dz%oE$ukUq#M]ly^[7]:m!/}RTp!|p1䧏);#7/,0 ?{BO�%﫛%e˭|4Af$Fh9pOŷpZFݹwnX62 rߗZ77nܸq/?oh"S endstream endobj 13 0 obj << /Type /Font /BaseFont /06d7b8+NotoSerif-Italic /Subtype /TrueType /FontDescriptor 18 0 R /FirstChar 32 /LastChar 255 /Widths 20 0 R /ToUnicode 19 0 R >> endobj 14 0 obj << /Type /Outlines /Count 1 /First 15 0 R /Last 15 0 R >> endobj 15 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 14 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 16 0 obj << /Nums [0 << /P (1) >>] >> endobj 17 0 obj << /Length1 7400 /Length 4489 /Filter [/FlateDecode] >> stream xY{pSWzνWl8(Gږe[-ȄdKDlH2lX; qH 暤y4M3i'fvmdنɦ+966!+s;+�,u#l}HWjHWkӔh7 H9ҝH ^Z=ғHZgNKē*~ih8<[tM;kx�iV. `8G#QDR 28:4@V�PN3/FӞCh 5� Zދ,�f\Jst%0x�߯zy }aL9j/? Úi HbRWXV\aceEA `sWCм D[LՕ6VK\\C a>)Wu:Z/}j7T|㛋NPJM\DzI4Lh}|yK"t<L$vn4$mh1M+r?P|\Ooڏ'Q_J!g9rG[Y:mYWaO?~47H{O`xgsw マDxUL8JIjm.tX+V\x慏X/I><w?pU~&">uM&9Gbj&/#-Bԣ64PLU~PlX*�W.^B M y߼dKc7WNw=F4zرSO=+ҊGwMZ$?4Ufڇ$3tuVi|o1q94孍8>'Rn29U:VYQo/m'KGl[%޶ܡ;Y6Z߱ɑ7qgP_^X`N!N :Q+ʭ)wX3YGtsZz&<*Voɟ{`I&o,uYzNj5lWMͭΫnؠVarZ_w%w5Udqw+=fZ'^ !D@ym$Se;wԟ$C]knSើuȼ`h&̓<baBubmUH.[JVWn6Ó@]-M5_J[l%uzޚɿYK~5.*$3sk[z.쬒ơ]I}(Ma_һ0&BO%N1ٔxng'V?` 0-w$vkk*-݋ KL iEt |͸>#J۠Y<[Σ3{ozfq;r B5@+lN>=X,i%<OaRi-)'( YSP˴^Qq}䐵*.A1Qq d*BPq-,#XO<:*Pq=@UE/Ԫ"X#tx*;S* E♰U4=owxԊU|1iϫb'Iŗrq_t/6G#@V[_Aa?u̴~xv(G}~! 0 )Rh0G!�3ƾ{nUS~(k>0caGH #W#w88RcEiAchw(oG)!.m-O5PB[ xDm߻!޼w;"̡03zF_uR& /O ڂQꥱF陧>ȣ;*I?0w!f43ߊq h;r6fxwR^yc^bXTz9 5 /+aVstQG&vK@,6Zc߿<kX1 j<p,(z<0 G^8 yGTǸhl L.?:Eh bF^t(Fr,Gh,N61\o7 Fc`"7D, Nip;껻{v'覍6G&ZG29?DQpn[`8It? aohh;^##(sJȇc+X$Bojƚ >481LHmw6!~tzñnVU= H(Cfgz^|ezy[G`')4pQ̎;pԃO|pnlۑv@⃠Q_\?ۡ6a<LJG'©ߑQnc1(f'O+$ sq\z6Ot.F#<ᾰ<;񵡹sr1nØjS0Y=h,jȐi F}a9U3z{γlssVSk W?zRZ}%={ocW -I EaJlؾ@E䧄e-Φ5CHkygb0EV!EHdgՙ r,A&.A aHЄX_NnEFjŖd7 -!H-AS'QIqE0A؋~FL"ϒͯ߆%o4]%8rl}z5.V~J ]sW ٧N 'OE'G8'1(k+:\nI떼TNJiqCd&50cqS>1b[\I6[hLAaӺ^kogXpt\'VҜQo&Hkie+d .`\tl.+bV<W@q\J4d<2,-mѥ] 98Ykڡh(q{MMAÊ6V<+l0ÊFc"RiR#l]X,66 e 66VbxLin_qvwuvohinu[oRySƪ,5WME9%33uZ$br*<Jni)gE;(Ʀ4-QхVӚq2jM3dGS6*_v>Vqb1&€*CJӾ@̌FџQ^8đF&k>k�X*bS:vd+/s(KdF.R6*:.pNh�,t+E{<~X)U6eݿ,DJl+Lj[*)14;"^і6lM2m{ޙdL r|:++>jCWͤ^>jTS �Qmӭ%M4Ed&)oL3VGBri|=5O<lٙ[1mNw\J>َ1>U&Te5I͖>K*/H* �+-8Zˆ V2arݣ �Z^S߃[چW͑}zWx=OȣJ0Of=t%2%QπJmL3= L>KJ�}6Ƽj= *Ew uM'}0Bk/:ר=6ֵýI5$=I%ncZ /S`р�mP+msjC-ukPRߦ1zP +ƖYiZFϔb\gAmK$@L@1b,d5Oݲ_Tvo,<<j0x\, &%X0R*͜#[nvNӸ^nsƙpYhCVM9F~qGZ^mtrn<Afr4a0-#]VrĹ}�@ Dh4M9y e #(#n$x 0g%pz�p8 i0 Ii1va c<sO_ c5K1"G"o[R2d)70ui\pVYJW|(vK 4/i[# p u9uz OW?x>q/w1~a;p ^|3CĀc[ w/<wi<<GSSա%Epsrn،,O)5qI_os 8k_u Ux]i^P`[}@3{7z ,o,5 ZmvM=-Vͫ3³<إOτ*aprR{SW_k_ endstream endobj 18 0 obj << /Type /FontDescriptor /FontName /06d7b8+NotoSerif-Italic /FontFile2 17 0 R /FontBBox [-254 -250 1238 1047] /Flags 70 /StemV 0 /ItalicAngle -12.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 19 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 20 0 obj [259 600 600 600 600 600 600 600 600 600 600 600 600 600 250 600 600 559 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 589 600 600 600 600 600 600 600 600 600 600 600 600 600 612 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 493 600 556 600 304 600 600 600 600 600 600 600 600 467 600 600 599 600 600 545 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600] endobj xref 0 21 0000000000 65535 f 0000000015 00000 n 0000000262 00000 n 0000000463 00000 n 0000000520 00000 n 0000000571 00000 n 0000000843 00000 n 0000001455 00000 n 0000001778 00000 n 0000001820 00000 n 0000001868 00000 n 0000001920 00000 n 0000021230 00000 n 0000024398 00000 n 0000024570 00000 n 0000024644 00000 n 0000024769 00000 n 0000024814 00000 n 0000029393 00000 n 0000029617 00000 n 0000030979 00000 n trailer << /Size 21 /Root 2 0 R /Info 1 0 R >> startxref 31893 %%EOF ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/image-full-width.pdf��������������������������������������0000664�0000000�0000000�00000004457�14163570564�0024320�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.3 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.alpha.18.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.alpha.18.dev, based on Prawn 2.2.2) /ModDate (D:20190527023056-06'00') /CreationDate (D:20190527023059-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 12 0 R /PageLabels 14 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 842.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 112 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN q 595.28 0.0 0.0 595.28 0.0 210.61 cm /I1 Do Q Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << >> /XObject << /I1 11 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /XObject /Subtype /Image /Height 12 /Width 12 /BitsPerComponent 8 /ColorSpace /DeviceRGB /Length 21 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 3 /BitsPerComponent 8 /Columns 12 >>] >> stream xc\@0fT�<� endstream endobj 12 0 obj << /Type /Outlines /Count 1 /First 13 0 R /Last 13 0 R >> endobj 13 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 12 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 14 0 obj << /Nums [0 << /P (1) >>] >> endobj xref 0 15 0000000000 65535 f 0000000015 00000 n 0000000266 00000 n 0000000467 00000 n 0000000524 00000 n 0000000575 00000 n 0000000847 00000 n 0000001010 00000 n 0000001320 00000 n 0000001362 00000 n 0000001410 00000 n 0000001462 00000 n 0000001729 00000 n 0000001803 00000 n 0000001928 00000 n trailer << /Size 15 /Root 2 0 R /Info 1 0 R >> startxref 1973 %%EOF �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/image-inline-extends-line-height.pdf����������������������0000664�0000000�0000000�00000077241�14163570564�0027363�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20191001002010-06'00') /CreationDate (D:20191001002010-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 14 0 R /PageLabels 15 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 723 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf <736565207475782072756e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 5.1618 Tc 0.0 Tc 5.1618 Tc 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 612.426 Td /F1.0 10.5 Tf <73656520> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 5.1618 Tc q 153.0 0.0 0.0 180.0 66.93 609.36 cm /I1 Do Q BT 66.93 612.426 Td ET 0.0 Tc 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 219.93 612.426 Td /F1.0 10.5 Tf <2072756e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 596.646 Td /F1.0 10.5 Tf <736565207475782072756e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 13 0 R >> /XObject << /I1 11 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /XObject /Subtype /Image /Height 240 /Width 204 /BitsPerComponent 8 /ColorSpace /DeviceRGB /SMask 12 0 R /Length 19044 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 3 /BitsPerComponent 8 /Columns 204 >>] >> stream x e7U]}LLfr$rp�ASdA%x*ʺDPs<!#r $${&sOU9jjzyh:5u~>2)2)2)2)2)2)2)2)2)2)2)2)2)2)2)2)2zc}/]R|RVJӦeiBd$Z&A6NX[ i"˕ƥL/HQ\mýD$P ð, U7)Urx mjd R ' Ӵ@/Gd_ᕪz˚p~>'06Fiw4 <SX5~nc>\&" J+3[�k䩂)Yl6Xmۄ3X?TF9|@ `P( 3Xf3T*�<G=Qp6%aer$dp8F#0H0ӧ/g)elLJlT™8E"PZ+ Ɛ@N>8 3@*'>3g`0�`2s>p�CE]zyO4@aԀ\DeUf@VzS Ip@ ,@BU\&Ȁ/*{8\Ee\04FXY-2%TFxl6$ d2�8Vyc!6 rW Ni8 (KBeCQN@탬 �R�pLa2iߏ7ΥAiՕ`z�C@cj&ڀLU+#lo) XEHQ~�d96U?j/<[ ,a1=[U8ֲXxC ӕր>48AV[TKRqSU_2*蠎}6`ĵXjjJJ-5d? 1~Iʱ F"h Rʼt_*v9dvIFyM4 LGөDJEQZ-kdw򇩀Ȁl!J)=Bq@Jcy pVZKfY͂lv)^Ё @)-T3-k{@uꢹ\Q$gdǯFY#1 2 :#A\Qz#?1`/b sG\W.\1 RCWp-OqJ{{}&T _dBte@#pH'+^L�M&ScJԂYL6&ys<�k3C7sb|YN{? I+'on7p{Vr0+kjO׾ǁr4CC]{olڻwW34-[z�f xZ;vʫc/Y.&5'˗~\PX<^0A\.F:&/)Sp|HF.&E9s ݭ[lҗ+::첏RKxs4>ASN |߹䒏oOE$d}}pΜ9~P_bSN]ri]2FҠmԩM ,x뭷+#5.K,wSO=e@ B7) fV}}Cºx?ᏯlΜXg�vE{ 5ahI'.pk߸b6;;g}~uJ2z߅r(w|ZW‹iYrRP(mxo=Iv.N^:644N>c}uם{}[1:;;+_`(o5k…Ο�v{w7{饍ӧb_%7VRҲyqW H$ >i֝˯z[Yz݂Cꯏx 5 ChiӦz9nڴrѢE/*jE[.Lc ^z &Pg`0}|r}}Jvٲ� AkX`X]CC}"%|k}-ӥV0\Z2%A=,>d7; l9iӦ6446�hV>j֬Yw7{N+�롇e ei ^i^?�"/FAH hmme3Huww$a;*VX -[ *d˖v}sxoN%L2]{mo<9xэF25bZ+( [T�¼O?yw �|zC먐V۾}3H޽[cNl#f>k.H4&?@<�N0~{{耍wqrB* t4d0(; :qM0o~3\l,ZW>Rώ?kFf̘>l}ݏAly W6d ,}�ه>AشeoWV n*.]:2}rzĪ3EXaC]!ƀ8ygl^{-�\vITJq{Ц}IqGhf[)HV"ٝ9iGZ~#~xwGdFxDY/V^yURt$ol\u7Œ 8;֞ntMmxn~Y'{c>׸4#L𚥶A_H$z�gVog!H1dqC,[kj wڥ3˖-?'qw#ZY#%ʕ7ky]O30�'Nu\8Xcdi&Ki vߒ8x{J<ʜ߯v�O>dؔio?ȥ~bDP MO'�2;54`nJsf>WW<_ҠiMl;b̊ܬ6q!:XGvεQS5҅yk|UsYh-&5]hZa }RW�^ =BTPk_kZg?dvm淮߶}ln2D"GN\`$/�"Lj.@&aAAcǠG]*O.Z&9ז.49e$@VҶb<"rzkV.p@MRJ9 b9leHuљS{.մ�BA}grń$_�8 < r䔕l.μk?!:7< 2.<>xNl A>=*XrDOsHݞHw2T󘃊>0kY]R"HR̛*_1L (%hJI)e F2Ɇǻ|kj\LAzYlXmey4�]󁢐]�0$pb`Y�/2f20zs[ƘPP{?^F$ 2o"fh,�,JؘY S,Rәhj񨈘 .dkڰ P_c_r� `ei]XPjfȰiaXutM;obSs L[ c "��pR:a&0KaZw7"{*)Q1N2&9t _Lm,0a~rX בvƸN.2ȼkô;S{ JS@i8sN!)ͶVz2ִELASNɔzcgapP( fxrLwfB}ڎ{XPlA6JG24jE{. ^`Y>ٽnSdCTF#0i &mѝw ?LPD #@ Mo8AE-C`Jk[C̙d]|IHAfs/ȽEN8aaa긃>㉮?Ȃ`4mhh:iʔ)Di!K?g(rjd`IrJġk?\LtFec\ꃁ ӗeYַ^xftJCPf02#IQZ91kuK3gd`+E"a1;By%ZhsCh[(b.xCǞ^~S[|1~|joOٲ;Ւ5;d8 i(a=u\*/!P{ !{"Rt:F#8_ kdyL0{lTF]U9Ri GD @xXD ,PÀ1+di4 J9L:_jx9sv*.Іq#3<G?w6�2�XOOwggg<4V@oܷ{ ͜P Ci2uԍl*b2zi0|*ω1q1[練W:@}C,+عq xLZ,VY( Ң@~9N L8Eu 7Ms Im%:]Viɠ 8LrHj㵒o63c@Gf( 0-qmXN[<C9ˮH8cNA!�-[{S.p 07{Z*] `^q:sӷ]-~hT1M OvEq�Md ÷`\. ɌY-C7^Z]66$&2adxq"AZDR9~21m^u̝,L[b{|%tgg;5{|'>e?Af: Otdf�M6YQ45u9@ EJtѸ< {Mh~h{Ù~_@&gL vttn4_aW� �8V~͘!U=Sd_`.0ZZ` e'ӏbϑ@e2  ɼAN9Gsm d5XjO<cQ$01u c't;PZL2T𞴢ؑYgkj?+?Zc2Vdқe޼97<W7�dd pi+WRD[.` Ne{ʴKzH~anZ0 /ühO}͚cz\8"ـS͞={�J*Y:?iBgNor`; QdA?|Q^xY L>)K뮹 hf 2`m ;i I]>~C؀_V>zYd�~?+x7cMzE pC]-k^‹\ 0:w(/w֫Dj d!]}[n. {!b̿'jxfl9eѢEw_^(Y :Pj d&kINm>?{zp ]ḵ¼ّP  DˬY3e4L|\ 39".Y駟䎇\n Bd Zt3 oɟg~ ?Viv7Dj?\TUgkh,O󽏼 cg~~S~,ǹ|v#*g&bNo}W\egh M ]3$e<X 6cyi(o^^fdlA& pr,ߛdR͞g2/VƟ5aҭCU <gXێ;TLfj`⩧8}J歜O9=C(ͯNl?rg c0|+0RF3=8zAlْW_w8c"X]<Yh+ͲrknnyQeQm3Wu9rͿ^n]Nfd6@|J1E)q ,X=tņ o[UEjp˗شdSTΪD̡G rbqa3%SArǖpU5>O<ܛ빬Pfo\T 4mi`_ב2 >Xʄ0OKG}tI OeVx!lYU^OJ5o'ƖԩS.]<9T3(XaӢEoVH)x?y|yk?olDd̃gd`Fz<a;EM}u&p{hSW_1xLń9*QV1|pόfʅ g2/E@Pr!OK _GX9Կ?oW?IbellLٳgg2N{7d*mR9+/_Ÿ-uR-4ŏÿ0diHZ Pa^1CdyG|)d "̆[nit?;)D@BrS=%7ycV,~eyh-e!;uX !(DI9PL"co]57R0 ,)!]֫TRFQج6 c{XdEp8L#G3A mU,Ƙ`hѿ{E%-oiyn#_Sl`6lݺ p4 7dԊzT~IU' nDwo+X]jٲ7|huGr $q5}[ OxkVy(AkkQGk׮GQ0 3# Ktf+Fz_W͏>c ]x$;w섩A6{yn=enQ_ԷKrmy_6mj ` ENR(zA揍i4C <);/3<;G0 R Уwp,> dɒ%Hvuuw̘1=U40FG7Ut%〰H$s@ϝ;`5vEI^$(vn 3:ݻb~ qJg'zGww7m+d̬J P9lbu)S^}DO?}*XE aXK?~(yNsZ {䑿 7@RKK \2Pu,Z*ߠJ峢;i5rէ~a##ayܮ[ONz O3gjdym۶͉hg'C_H%LUd윻śx�6owΜX@$"}⏭+k�Fp`x{}y_ße#�^@pznukL&|1 $z^ZbxD'~J xT@9sPVcc̙`cXVXxzh {C*VjVL OQ`˯7OoS/XSsΧ1o}ONA/+FclgbX2X,L)ͣ1T9“>v̯BaWkGϗ^zy3x搀-{zzyg[4;Ğ<LN5 %sTG$缥e ŗ_AK.^v-o V>>{cmڴ ne9#p`qB2{Lp@]£omnݺ a#*H_4/]qy6-s �p�2SФ`[l%_!,TȨdcc`|itz=m`/}J/1AIғN:@O$p<``ЩB{w#n6 =ܰF/U2x!]iFH׻(F\kZV}WN6#!={w O`kkW> އ=XeGW]G6o{Ն!SNٰIQss eV]]fw: kٯژ] 7ily[qꩧ`^qO؜1sd={;DvX`RUL KV07Xj۶y}cTZ:@y`gMgg'W:[xJzRELitj_ь{w򒸠I/%<hud \͒9 wvv$76{/Rwpx޷`RORbŊB6K$z.µFsVCKhfe/(> aRft2VeT DoXbmi U akl򂘌OU8zU2nJ0a-5k455^, /d3.&^]ƛP +tA` 8uJ7.2)bɈdA)ooii 68҄>vȧzdQV?577o^ϭe}F$EJSdkI:$&}3pyzꊟ]ʬY3UnTnW05L֧Wƅʚ5JfY66D/npeX9YYred|=Fa;T,3Y'/gϝ;;ACYl1`Ced:̧3Ȭbu0*4es)#q-Ovҹc.]66 lj-گ|'3 (x"Ƙl^^c7}ݿ'4~p6l#x@_a0iҳ1(ZOc0 軽V`nȰ khh eYcR߂sLo>s!/ éKvH$vj47,WÆ!K`2dQ2JzT&%Jx{ͩ#2ko/˔)Vro˲H P&7n3fJ^C6ޥmq)2&$ ( H&D2JΚq ϭ c@W *%?W^CN �t:O^1A1(ȦNEL&3kI)a]]`s�{86=Ѥ5؎x<v/ iO'e Ǝ= wR#Xq,^eHG1coe]]h 0xD8M(tj)M<W*LOO0:L38e{t~_vZݛߪmH8d!x548EȀɛF@]/Pz4N^,kRL;fDGxy{[32κB#+:ɮ]O�tS TL.Ha O9@li immyf^4»j ;>Acgr? û}N(^ṚxRX9(,=7�x<6w={_}աC%J7&+Gj|Ҙ(MS"`H#hECY>mg(wdΝrr9~;'f۔D6lx3/O6Ͷ-00♼t߳<Y{onuuu|=+S1~ 㻗 Lx #( Yq$׬C;PI*p-9<A.!~? pC?i0G̅[�,Ӕ/Xt挰) \nx)ݐX#ujye /$}nḿ &ڹ ?={vOx$ӲJ<ԃHA9G4?Nk@[mY'b*`2Ƥ\V:aupDDB2hPH uU b̒9Ke3"|YVobd}y睋 8I|& gzlL"hj8MJx-3=LoySv#LLB&uǎjj!&?IiKfPSKhK/=͛w{~RŦ_[YC&M6# FFseј5sΪp`LlD`%:I=M{6S<+-e,kI|I`/æ>uNgGOҏ=$~O oo{&40$Fu%aI#gcM$<+-@-Hߣ{"i帢ʁcnt F8W-i/c_ǵox0gƟl2=w]Y1˖`GNsYFPYv[ŶeK�`]Dyw-Ѹ.C=_xnȞ.*q2d2v4uR0 U?|e4Um4*dVNZ`f֬&t%gE6m/:Vg%*,czީ:\z@C5oW?ޮXnJ*@֘RZ>$%E+CG,?:TK-c7Oo)J$)9[»-K-Ce5r#*\a`~{uttuu%ͷ9>l[^ǘ9$&EKAз#MZ8*h`H i U&}같Fi/#g5ۛnOCmdGؘYT@碔6E�cKSYNf 4ː2%H(?V N3B,kz\�LTaAKbL_W g:[J5˳B @axޜ%bQK|']֬9[o==sN ]5Zļ")|s164ʥݣ Ef#Gڹivgg [¶Ѓh8ӆ SpZϐAñ49xνh^pW}m 8O~| C1<&~&{02r譜Z2WQVug᫗<y4J= h*aMW&(2SLe* 2eȔ &FSb2In/U< / X\pWFc]28m&Gi8[ָ^4Zt.Ϊ#1!I Eb\_3?+@PLpX*VˆpH >  ,`"lr_2z x ,ue]}8!A<!ArEISP]]0CML A c;+'J97ƚR!� A ,$MzB( !-#`NV?>4/Si'�X]pҠw{Yr+VuUX<1(~YdGDJnj`o|p]~sycM")"%Ak1J)zwJyaQ?&+v�&|'�+$XE#1ÉbQVNn�~C0,.<E;mocY[@9Nd˸b+ g Ż]x\^ճBf ։򓧆n<~5uz0X�~ǯ)Wȵ�/%@X� T\ *)wY7K`r9nKhj4'un@ zꉲz!,H+�I}j}mo2<WeJٶ&0f`yMdFm߫kw7Qw\W/ C[4q.Tsz7&`T[w*p:Yfx~ S '-GG"?  XCJ;bz_?~5b+"wS2ciHdL�,CΛ}SnnPQZkCf ӎ9{SNrs@6(p)k SNVהNng<刟 3F8>XF።{rmmƭ~ lo8"jisCҪycLwv}qeq 9L##ȯBRIhm>V,fCHq6 4ZTI!}9"̒^]3DOҚ3CΘ1U{?ڵoֈ>δrЯVKDC0T�B pP�\~B@hؠм6a-#QcK/d&tBsClZ /e4"Q0ۆGmv 'mݺuR fȳs*+uѱfn8"`;10J`�3#z.f|9$I@)x}+XYShHN= p9f,์.Ȱ9#໕LDJu`%@ GHQ7"@,n@рFu `WtRʵ^uyohjk>#f<te 8)6y"+8:3sC@]8"짭;xg+{P\6R・;ZÎY@X;x7 `N?Qt9~ᐗ3r!3~yh8d\W]HdRaD:)Et8 DŧipAmٲYLmeފ,l ?3ߐCa�S8 cGePzm/"M|5 rT[V / `iCf^z; 2Ψ#ӧϞQf=ςe̩(/7Y5Mb lΘX[dZ~ E5gSƬ'y#e'096͞tuTEg�*"ܯr{oϱ Ƀ3GlSnf2>#ơ a#/BN2k+B6uMFvE,D̕/<L[ U9Fv!˯WPb-w.y-y',HKH7D5Ga4+ LTB.'- 7dƽ ЮʂqRah`#g,>w84vUq{;L6XX;sMAt],PBS{k%QnEsrwH#n#J!~b~k2)AnD�Pؘ5#uS%POms-]p3up#4K i6sJ _?z'>y[K;uM.j_wS]c �sUy&ek"UBiM3?n|"BhER9AaJ7U$\G2C i(5kVb#-J.b/쓛6m?æRG9)&ّTRPu^<GjǙCPoխC|J3d,f46.WE(&UjN`FY0"pe׿ P1Yss>voca'ܔL  _J@`bzXDALJ7R:xTFCW[QQЙF�7[58@ ӟްv1<a~۷&^U([\[[ʬНvPF+vW#a8s(lFi�ShW2Ρ\WWwg>Sk_a{Mgq[o&UǤ?/s@/^]GȁˆH[jmLF9AiZRuҲ?9{Qܳ~y2Y<g>5PL4N^\S J(V;9g,BE4Kל p kL.`i#ymGJPar]w}% wnsRtK+;5hbWŠ\×mY8D^08HJz5C ,8I7RT::hQS{864:|땦ԽjZЄgiys(,b* �O QrYEk`U Bnڛ1.:qѰc($##<3t&K./'>5X (Twjd $LYT@N6P*?GY';dLF2v^Y"&lTX A!cEa>,8qf@CBvsú*im۶?4h{4iN X*WÍ ,P\E.q te[Y  &TtZSv:8Si]VdsvbŁNT"(̵�3RXP,ֺv1EGqcmb8]8ed-*ZR 'MchE؂iC TNdNBY�%%?Ł ;aDNsѻ)x# /#aqPlXXOOW利vF#_b\n6 Ɉ+^vʅơآRpF&"J^);w+T0`LZ% 9ǹa$ցhOWjEr+8Y*l Pr _\j.2W8k+ 8U R,qq xB,.XdrB oEvQe$n�YI�J pK! ل- ^Ru=Ԁjq!Blk<Pٖ-[¿2u+̴<R/Š:]c[h# q%69帓68+t=lN`crJx.2ٟSn;͍JƔϜRNSjd8ڕIgggYOcƗ.xpQ8|R缤�Z}%sz+B͈ڐ-҆hFbꆅ+a=QRs@/)ape4yh*$[s Diu ~,ӟ/Zڃ[I'Ï馛'< zѮ^( /ܡJEY0gu4\P3TWBu!n Kډb;P\-Gq8 ]mI #(ҰCey�9UHu"g3HSq"E-!f7]?kŊ'x 'jyH$xos{5퇐)1{bL߶[tǕt{WQ GYXH92ʬD"cF.yٍ#lO.֝$<@ĕbѳ$܀bE@WB{h)iw:6 /lUW]p1,_XtK,M/tXF|drxkX׸:Qz qhb(ƙmJ*vA8HA>̢#,CQ{4rYҟa l2lTڗn,P qR 2V43ߘ]it{8HrHƹ?#҉WƒOSڜꔅs;HO`3fDX,7DQ+ c :CNA;1R{O*V-fJIFcD]  <-\&% 9z^ZA À, fYzFsq<Ùag9Cl(8{|8iM qoAZqu(r-isPso>ڳ)R(uHH:@!O#ؑZpgqU&lq$~Ae%r#b*AK05$Hl Ԥ--K-rb) d<lBe�Oq_n@i;CrkmLrJJvGsĀ]S"j*kJO[GI]o2Kr4c:RoL0JdAL}4U$cU0|OaTLdS fB"Db)ڕ(�Lp�|ەc?jȜ5ݭХ@i( W|GǤו.R[T!1 1МP;kg9H10T(9E#xBpɌ3_hwn*~g"T(NEm-K:s4R Eπ47#襃Nk*/ !_C4Wpbԍ>JrJ,f8 NNKmyپ�mOJŀ"xٔ KKq>oՍP}gSbV36̵ plP{,5%73B ğ&:7*ҤBqK5y!!nE�^-ݴ?΂Ӝ|n9U" vA\Ûghppo,搽pbdPQjFW < 4iTߗQ JxKSA)lRA)2:P-j 8[V<\% JPlSo7cМ2N^EG뢺j@) 9NQeEP%`7 BEUc XHĴ&amͰӌuܰ>pRK,C$x))vgB0A]&myխeoU\?zhxmiH t:i<�ӛFVOu~jye;S m25R^#Xj¢b|rxjsI[|vR1;=fN �^fVK,`JLT“Sn�6X29pHdm60q XgM NU*aQЛF%$w"U60IKhzl ꈰzx,[Fzƽf.^m%1D_ Igú7SV8&xuxM�&<6Y2`˜vcZ9"3oX<M>~n^Ho9L[WiT%%_] (y숮yN :XdrqSI'L gi*F䑥W\vQk �aX-Hѣ:SbsjWw!Ud9$`2%oO~򯫴UѐXPU]X0ZS39tTsS%{+8+AE EQՕ|ל-F3h�eJdI]ktw�қ΀ T)&Bᶐ9j794X)iԉ=IՓ у=+);⎧�vyUn!䔨 S󘺐 )x*b.!͝s'؎siO!{HZ"eNu1B k?&2*D+Gҹ:Ob3p !tjF/WpCJ7fk{x9"Ma]IW!3)qMZ:JсwG/f5H@8t4j#zê8Ci'c4n E* ԼX &\ĕF4l kmmNk UPSL^q~ps5'9V9rnHd7+%Ð`e2'1Y_ hpm>x<p2FH�eez9Cɩ9~mE 2>S/ߙrs̊ p hWE] >.c kRAFFI9)HceFtW5 Hpn8d0 H3BP@)t␬2M =okL`_TCe9A "i`ԃDaq&՝.M1p9L$Ӫ-ڼEɇ#yઃ4#bxU|$<}dUN-d\y~$CLEV'[a><%tgF҈dQYu C48j8 Ҙ{ b̛[:}77STvt _p2cQ2N;*M><F4OW)6piPl�n5zu%su uT%W/X\+c e 8;+9³K!"xUe]a,=ڠ #A0{9,Hi eBp7Kvyr٩AM Vm'nHQ"#@hy3r Y &C*|\kL9q<kM5d܀DH$En;өZ&XITjBR—K{x |rJXեf<9g-<E'l׍3TQ ΂ |e(P=o5z|u |+M۰m(i9+&eR&eR&eR&eR&eR&eR&eR&eR&eR&eR&%hx endstream endobj 12 0 obj << /Type /XObject /Subtype /Image /Height 240 /Width 204 /BitsPerComponent 8 /ColorSpace /DeviceGray /Decode [0 1] /Length 2902 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 1 /BitsPerComponent 8 /Columns 204 >>] >> stream x{P<rD*!yd4`Fkb)ZGmR(֦&4Q`'iLڤƷBѩ޽wϞs~]o_yYō7nܸqƍ7l:8jd~];Z[O]bz ș7ᗛ'8zC 'fS~oʛ:]R/1KWO|]>bb6Lggh^EL�<¯ڇy]ZT'ڡ|EOdBfk")"/Ͷ xq/n#.ᮎEB\-�ͬcmF]橛$`G񨑱n,�n2*�dP%i/`�/ih]?P#5cH̑LiӦdHEͲZ,&#u3}ǀp(g9"3!*�߯Hwl V2Ѵc XFC&&h&&h?LL}H1j2c y2a bGfOc3P2یGm,@1W�b`Y յdQ("Xf|@ɸŸ%;Q%s:'iDsgƀFc!oF͛{pbnRPަC_-iί u a~$Aqj81#:8Wjی\5g4L'pbQKw;#}3pbک+816d,ipbXw6\�&8Dlj8Gˤ3NB[S3@6[l N d7&ܥb({z281Ţ\E'&|yi['0n>-m j.UYSXY?ȯord|1%HLh}5˟4Ĉ&mVp&ٛ<3e_pWv9C/=C);C�/J�Zd%cݎ_`쉳Vyv م xA܈\2u9!(v5�\'&^sX֞~ۉvY_&3}O+ 6[dg͙bU%WbO{o` WpHny1fI %ۙ ϝ#w^Y103xy0N=DR<Z�iO*�ۋRfJ(7y@L| ކz+5ekM]sJ<dJQ #_)1"Cc@)\ 95cM]d+mȄ>Iќ*ngQd-'W[@K6V&2^LQD(�\3xhYwD47\$�Bi]D+谹4E>/OPh KfH6*%%!K@y3; .&8[H)�@YA쁱?]c&VJg3U@VoL�JLrj$�1{,bJ/-&)z(�ŬGY7,{;H,A=SLd"�̕!R gc% >1eģp0 gFs05 [&�t1mPg:WJFOU2m]zCjg2|qӈa'jA4J[=Xؼ=+&ii1fΎƌQWnRNev g!p g>\b6![M;�gy!&|i:3dF*cȚbƿ? o3Sig|Z^)eb}Gi.X榇'9=΢0jD'9Eݯ1EH�0!;Y tC? Og|(:  kGjI,^P�<ܨcAj�3LW=B)F$#Yޑ�;/C0k5J1_0wY)*Xpv_z�gM.Kp~s_CBoF'1/CD#$~T}I +b-?ă}>mQr129[I�C#`k652v/'1fqw=*DaïWɦ5Yj+Ŕ o<+& ]sM?W8 K&~h Q>_\1Z7,"`h\q;aLtԯbxek\T8;̎5ca1۟1ymvvu#ALKI/p 3ݱPپмZۓZ pY]_=X#67=V1d~F{}yɭFˈ҂ģo~|%o5ӛңTRu{'>Q@` £ěp?'/3A?Fa%$C[jXB'"hs9JgeOL},-ΌwJxy|ܬTxVX[*Y/ɹY$c6<G314O}/홯 KqU~dz%oE$ukUq#M]ly^[7]:m!/}RTp!|p1䧏);#7/,0 ?{BO�%﫛%e˭|4Af$Fh9pOŷpZFݹwnX62 rߗZ77nܸq/?oh"S endstream endobj 13 0 obj << /Type /Font /BaseFont /d3b1ca+NotoSerif /Subtype /TrueType /FontDescriptor 17 0 R /FirstChar 32 /LastChar 255 /Widths 19 0 R /ToUnicode 18 0 R >> endobj 14 0 obj << /Type /Outlines /Count 0 /First null /Last null >> endobj 15 0 obj << /Nums [0 << /P (1) >>] >> endobj 16 0 obj << /Length1 7500 /Length 4522 /Filter [/FlateDecode] >> stream xY P[Wv>= $gc$#̟$,ٮ-(IҬnrg:&Md;fvgMtt;ڞӭSgM& ^=0vfwgs{9$�h54k5 D~ @gOj|l:(g�N1-NH zPon.PA90KLG֖/ C(d O*ۢȧ[t!at9aw<'DL|v̛~:i>ٯ �r�>|lj /*_| J&x3�3hs<TTc*2͈mV!14ojfjK_R) J[h$%AhM<G-oĖOEXw(.xq7.?hO]OsTG}HwVhjWwd@}ckJLLЄT-2J :,*VT$52hyZvgv]Σۘ䤮I8mnM1X_h ^U4uV&}Dژ"mv+h[3@=i#R[-ڤR..kn@pރBe\5ul6o-{~j? ԭ}oÎ^aPȴu  "ryʠɚJRdod3y=eSCõ3OjV S:h0o[v76;kۛZ3sV:j&h2WTLND{27N˜n/)%fv nZbXJn#Ԡ?B~hjsզS>RmdՑ[37U?U (Q'OhA뀪Gdό*p&JJy!ktZ.EetyLa> V&*a׊00mXD[(U NB6Աk}V R\lmb6WoW\^ЬoRI5br4en[U+5emkPW=M>ҎZ2BLNӕJٓÀ NIP'j�VCԩ `U>#5�:H'9ds9 =|CL*赛"R7y{@]{! Z% d6S tk 9w!<ʉag=.D8xa!Lm5iA)8 x P�\pEE\:R*0!Rp5׀IDтU(!W<'?Q\0 ;jׁERpACσn6bC8[K<[gT];Ц}/?ΥhKSs ft0:m=tu%D8N ,1IH@faR|iƚB?0Ji`yOlJr)0r:X*FDdF'kD`f"<8LaAHEcq4y!8R3IJ$Zi"_k f,d2HFbQliڍ$l.?vZ pHi* hlf7 bI!w}v'!b>ןq'b7=NFf.c-؃RTE)Le|8DN P4"#["MFa g#t`KV-ܽ؂u6!1+ϿRtbcA3bHeE9VeX7/( b(L͟DlpƢ)ͤa/p4\ S0YB#zoP$JD1F5QZ㦃jt7Q虘 :tt=#(9iψG4As4|3$4|%;|[L,d<<L`tv18 $[h׿IS\ ',Otp >T 䜲)}Ia@F olyO˷ElfY5uݸG>yFDu(4U, {:ShUJ/u5nئe&1;`˃Q|z܃#(E>l#ǻ {UY$t=;2mLu, <!JG;bcّ5)&D!ȷ.3-\\HR_H_ ;n8'O"mXTlƩ_"Rr:ddKZGwI\ y?(-yb?0,]A^ϵ}?.L7@J`0#lXXbD^ÚyVr+do`x 9! Yr~,.bDu;.CkB Q*�/G<PVb\3NcE{yDb!hPW<*|xt\C:a"o}5"_" [׹d2#sKm[@*pou ~hV2^^?~mIu_[E{DXTW۪MK s/=O z^=sL^tꟍ?*A\_^$EvD/^^Pkn]\P3Y},lJacvRݶ5SUe4hkd%sn*l M![襐!GثFUh~xZ%%ΦIؤ;Uy>@hrIE[Z-"^}kW ~XxPWxVF yznhph3.Y;vH&O5nVʚ'd<[&)swKnqKaKX.^2L5$&�u$ِl xgO-.I## X* YcQ~.>6$40(P6'FG{_om_ޮ:;dw'U E‚-yFыrm@VJf&KANSӆ3wiڲ M]en?Kta]S}۪Z.lAdQ>g2 P<6vȷ:s#,򰙇-y_&; o;lab#}dλSʚ>Y)igr+z 4䇤PO86-:^~R+ˍ!70V<SY]h#<7D DN:Ӂtp%4%Q^Oaᨕwe~Y#b[dI炈>ɴh*}^7#S- P}Y_fmB\Y)񲞥 rҲf0$9gӃ,^.hE EE0Sؐ goqڢb!! qHwl QhȆރ{ގ [PcɊ# Q'[lz7rD>>D&dL+df4˭_6K/?(qКF m3>ZG3d)/gIެuܒkobtѩjwH>cSΩɡ>(QQ�ubCZ`cp8Һ9f+zLTRo`MD0en*.O {9*Ia/Q6ckcQsY&0a);+syC{ps$;%AXI2Fr1M0gxƤm6-,9hZ %ki\57׻,'Ɨm Az�wY B_׿|ޠ�6 e ( 9\ `8i|gX:F`zEbuL@LlcF|}gX|~?YC)zLnԽLM½r} ߗ5 bfRbn<;3u(Ecj p sfQ{mM>~kOޞE o{y? o(<e"~6_WM}aL_wg ,I8�/t%Tӷn*ǽ:ɿ#2'{ϴjdswv]߃Qxv)HO�J22|VtށF�i kQ%j BƠ)|_jv̂o _C; ꦰK!dLS$l endstream endobj 17 0 obj << /Type /FontDescriptor /FontName /d3b1ca+NotoSerif /FontFile2 16 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 18 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 19 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 535 500 500 500 500 500 500 500 500 645 500 500 500 471 451 352 634 500 500 578 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 20 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000001613 00000 n 0000001936 00000 n 0000001978 00000 n 0000002026 00000 n 0000002078 00000 n 0000021388 00000 n 0000024556 00000 n 0000024721 00000 n 0000024791 00000 n 0000024836 00000 n 0000029448 00000 n 0000029662 00000 n 0000031024 00000 n trailer << /Size 20 /Root 2 0 R /Info 1 0 R >> startxref 31938 %%EOF ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/image-inline-fit-line.pdf���������������������������������0000664�0000000�0000000�00000076544�14163570564�0025232�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20191212235449-07'00') /CreationDate (D:20191212235449-07'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 14 0 R /PageLabels 16 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 466 >> stream q 0.4095 Tc 0.0 Tc 0.4095 Tc 0.0 Tc /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf <53656520> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.4095 Tc q 12.138 0.0 0.0 14.28 67.896 790.86 cm /I1 Do Q BT 67.896 793.926 Td ET 0.0 Tc 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 80.034 793.926 Td /F1.0 10.5 Tf <2072756e2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 13 0 R >> /XObject << /I1 11 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /XObject /Subtype /Image /Height 240 /Width 204 /BitsPerComponent 8 /ColorSpace /DeviceRGB /SMask 12 0 R /Length 19044 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 3 /BitsPerComponent 8 /Columns 204 >>] >> stream x e7U]}LLfr$rp�ASdA%x*ʺDPs<!#r $${&sOU9jjzyh:5u~>2)2)2)2)2)2)2)2)2)2)2)2)2)2)2)2)2zc}/]R|RVJӦeiBd$Z&A6NX[ i"˕ƥL/HQ\mýD$P ð, U7)Urx mjd R ' Ӵ@/Gd_ᕪz˚p~>'06Fiw4 <SX5~nc>\&" J+3[�k䩂)Yl6Xmۄ3X?TF9|@ `P( 3Xf3T*�<G=Qp6%aer$dp8F#0H0ӧ/g)elLJlT™8E"PZ+ Ɛ@N>8 3@*'>3g`0�`2s>p�CE]zyO4@aԀ\DeUf@VzS Ip@ ,@BU\&Ȁ/*{8\Ee\04FXY-2%TFxl6$ d2�8Vyc!6 rW Ni8 (KBeCQN@탬 �R�pLa2iߏ7ΥAiՕ`z�C@cj&ڀLU+#lo) XEHQ~�d96U?j/<[ ,a1=[U8ֲXxC ӕր>48AV[TKRqSU_2*蠎}6`ĵXjjJJ-5d? 1~Iʱ F"h Rʼt_*v9dvIFyM4 LGөDJEQZ-kdw򇩀Ȁl!J)=Bq@Jcy pVZKfY͂lv)^Ё @)-T3-k{@uꢹ\Q$gdǯFY#1 2 :#A\Qz#?1`/b sG\W.\1 RCWp-OqJ{{}&T _dBte@#pH'+^L�M&ScJԂYL6&ys<�k3C7sb|YN{? I+'on7p{Vr0+kjO׾ǁr4CC]{olڻwW34-[z�f xZ;vʫc/Y.&5'˗~\PX<^0A\.F:&/)Sp|HF.&E9s ݭ[lҗ+::첏RKxs4>ASN |߹䒏oOE$d}}pΜ9~P_bSN]ri]2FҠmԩM ,x뭷+#5.K,wSO=e@ B7) fV}}Cºx?ᏯlΜXg�vE{ 5ahI'.pk߸b6;;g}~uJ2z߅r(w|ZW‹iYrRP(mxo=Iv.N^:644N>c}uם{}[1:;;+_`(o5k…Ο�v{w7{饍ӧb_%7VRҲyqW H$ >i֝˯z[Yz݂Cꯏx 5 ChiӦz9nڴrѢE/*jE[.Lc ^z &Pg`0}|r}}Jvٲ� AkX`X]CC}"%|k}-ӥV0\Z2%A=,>d7; l9iӦ6446�hV>j֬Yw7{N+�롇e ei ^i^?�"/FAH hmme3Huww$a;*VX -[ *d˖v}sxoN%L2]{mo<9xэF25bZ+( [T�¼O?yw �|zC먐V۾}3H޽[cNl#f>k.H4&?@<�N0~{{耍wqrB* t4d0(; :qM0o~3\l,ZW>Rώ?kFf̘>l}ݏAly W6d ,}�ه>AشeoWV n*.]:2}rzĪ3EXaC]!ƀ8ygl^{-�\vITJq{Ц}IqGhf[)HV"ٝ9iGZ~#~xwGdFxDY/V^yURt$ol\u7Œ 8;֞ntMmxn~Y'{c>׸4#L𚥶A_H$z�gVog!H1dqC,[kj wڥ3˖-?'qw#ZY#%ʕ7ky]O30�'Nu\8Xcdi&Ki vߒ8x{J<ʜ߯v�O>dؔio?ȥ~bDP MO'�2;54`nJsf>WW<_ҠiMl;b̊ܬ6q!:XGvεQS5҅yk|UsYh-&5]hZa }RW�^ =BTPk_kZg?dvm淮߶}ln2D"GN\`$/�"Lj.@&aAAcǠG]*O.Z&9ז.49e$@VҶb<"rzkV.p@MRJ9 b9leHuљS{.մ�BA}grń$_�8 < r䔕l.μk?!:7< 2.<>xNl A>=*XrDOsHݞHw2T󘃊>0kY]R"HR̛*_1L (%hJI)e F2Ɇǻ|kj\LAzYlXmey4�]󁢐]�0$pb`Y�/2f20zs[ƘPP{?^F$ 2o"fh,�,JؘY S,Rәhj񨈘 .dkڰ P_c_r� `ei]XPjfȰiaXutM;obSs L[ c "��pR:a&0KaZw7"{*)Q1N2&9t _Lm,0a~rX בvƸN.2ȼkô;S{ JS@i8sN!)ͶVz2ִELASNɔzcgapP( fxrLwfB}ڎ{XPlA6JG24jE{. ^`Y>ٽnSdCTF#0i &mѝw ?LPD #@ Mo8AE-C`Jk[C̙d]|IHAfs/ȽEN8aaa긃>㉮?Ȃ`4mhh:iʔ)Di!K?g(rjd`IrJġk?\LtFec\ꃁ ӗeYַ^xftJCPf02#IQZ91kuK3gd`+E"a1;By%ZhsCh[(b.xCǞ^~S[|1~|joOٲ;Ւ5;d8 i(a=u\*/!P{ !{"Rt:F#8_ kdyL0{lTF]U9Ri GD @xXD ,PÀ1+di4 J9L:_jx9sv*.Іq#3<G?w6�2�XOOwggg<4V@oܷ{ ͜P Ci2uԍl*b2zi0|*ω1q1[練W:@}C,+عq xLZ,VY( Ң@~9N L8Eu 7Ms Im%:]Viɠ 8LrHj㵒o63c@Gf( 0-qmXN[<C9ˮH8cNA!�-[{S.p 07{Z*] `^q:sӷ]-~hT1M OvEq�Md ÷`\. ɌY-C7^Z]66$&2adxq"AZDR9~21m^u̝,L[b{|%tgg;5{|'>e?Af: Otdf�M6YQ45u9@ EJtѸ< {Mh~h{Ù~_@&gL vttn4_aW� �8V~͘!U=Sd_`.0ZZ` e'ӏbϑ@e2  ɼAN9Gsm d5XjO<cQ$01u c't;PZL2T𞴢ؑYgkj?+?Zc2Vdқe޼97<W7�dd pi+WRD[.` Ne{ʴKzH~anZ0 /ühO}͚cz\8"ـS͞={�J*Y:?iBgNor`; QdA?|Q^xY L>)K뮹 hf 2`m ;i I]>~C؀_V>zYd�~?+x7cMzE pC]-k^‹\ 0:w(/w֫Dj d!]}[n. {!b̿'jxfl9eѢEw_^(Y :Pj d&kINm>?{zp ]ḵ¼ّP  DˬY3e4L|\ 39".Y駟䎇\n Bd Zt3 oɟg~ ?Viv7Dj?\TUgkh,O󽏼 cg~~S~,ǹ|v#*g&bNo}W\egh M ]3$e<X 6cyi(o^^fdlA& pr,ߛdR͞g2/VƟ5aҭCU <gXێ;TLfj`⩧8}J歜O9=C(ͯNl?rg c0|+0RF3=8zAlْW_w8c"X]<Yh+ͲrknnyQeQm3Wu9rͿ^n]Nfd6@|J1E)q ,X=tņ o[UEjp˗شdSTΪD̡G rbqa3%SArǖpU5>O<ܛ빬Pfo\T 4mi`_ב2 >Xʄ0OKG}tI OeVx!lYU^OJ5o'ƖԩS.]<9T3(XaӢEoVH)x?y|yk?olDd̃gd`Fz<a;EM}u&p{hSW_1xLń9*QV1|pόfʅ g2/E@Pr!OK _GX9Կ?oW?IbellLٳgg2N{7d*mR9+/_Ÿ-uR-4ŏÿ0diHZ Pa^1CdyG|)d "̆[nit?;)D@BrS=%7ycV,~eyh-e!;uX !(DI9PL"co]57R0 ,)!]֫TRFQج6 c{XdEp8L#G3A mU,Ƙ`hѿ{E%-oiyn#_Sl`6lݺ p4 7dԊzT~IU' nDwo+X]jٲ7|huGr $q5}[ OxkVy(AkkQGk׮GQ0 3# Ktf+Fz_W͏>c ]x$;w섩A6{yn=enQ_ԷKrmy_6mj ` ENR(zA揍i4C <);/3<;G0 R Уwp,> dɒ%Hvuuw̘1=U40FG7Ut%〰H$s@ϝ;`5vEI^$(vn 3:ݻb~ qJg'zGww7m+d̬J P9lbu)S^}DO?}*XE aXK?~(yNsZ {䑿 7@RKK \2Pu,Z*ߠJ峢;i5rէ~a##ayܮ[ONz O3gjdym۶͉hg'C_H%LUd윻śx�6owΜX@$"}⏭+k�Fp`x{}y_ße#�^@pznukL&|1 $z^ZbxD'~J xT@9sPVcc̙`cXVXxzh {C*VjVL OQ`˯7OoS/XSsΧ1o}ONA/+FclgbX2X,L)ͣ1T9“>v̯BaWkGϗ^zy3x搀-{zzyg[4;Ğ<LN5 %sTG$缥e ŗ_AK.^v-o V>>{cmڴ ne9#p`qB2{Lp@]£omnݺ a#*H_4/]qy6-s �p�2SФ`[l%_!,TȨdcc`|itz=m`/}J/1AIғN:@O$p<``ЩB{w#n6 =ܰF/U2x!]iFH׻(F\kZV}WN6#!={w O`kkW> އ=XeGW]G6o{Ն!SNٰIQss eV]]fw: kٯژ] 7ily[qꩧ`^qO؜1sd={;DvX`RUL KV07Xj۶y}cTZ:@y`gMgg'W:[xJzRELitj_ь{w򒸠I/%<hud \͒9 wvv$76{/Rwpx޷`RORbŊB6K$z.µFsVCKhfe/(> aRft2VeT DoXbmi U akl򂘌OU8zU2nJ0a-5k455^, /d3.&^]ƛP +tA` 8uJ7.2)bɈdA)ooii 68҄>vȧzdQV?577o^ϭe}F$EJSdkI:$&}3pyzꊟ]ʬY3UnTnW05L֧Wƅʚ5JfY66D/npeX9YYred|=Fa;T,3Y'/gϝ;;ACYl1`Ced:̧3Ȭbu0*4es)#q-Ovҹc.]66 lj-گ|'3 (x"Ƙl^^c7}ݿ'4~p6l#x@_a0iҳ1(ZOc0 軽V`nȰ khh eYcR߂sLo>s!/ éKvH$vj47,WÆ!K`2dQ2JzT&%Jx{ͩ#2ko/˔)Vro˲H P&7n3fJ^C6ޥmq)2&$ ( H&D2JΚq ϭ c@W *%?W^CN �t:O^1A1(ȦNEL&3kI)a]]`s�{86=Ѥ5؎x<v/ iO'e Ǝ= wR#Xq,^eHG1coe]]h 0xD8M(tj)M<W*LOO0:L38e{t~_vZݛߪmH8d!x548EȀɛF@]/Pz4N^,kRL;fDGxy{[32κB#+:ɮ]O�tS TL.Ha O9@li immyf^4»j ;>Acgr? û}N(^ṚxRX9(,=7�x<6w={_}աC%J7&+Gj|Ҙ(MS"`H#hECY>mg(wdΝrr9~;'f۔D6lx3/O6Ͷ-00♼t߳<Y{onuuu|=+S1~ 㻗 Lx #( Yq$׬C;PI*p-9<A.!~? pC?i0G̅[�,Ӕ/Xt挰) \nx)ݐX#ujye /$}nḿ &ڹ ?={vOx$ӲJ<ԃHA9G4?Nk@[mY'b*`2Ƥ\V:aupDDB2hPH uU b̒9Ke3"|YVobd}y睋 8I|& gzlL"hj8MJx-3=LoySv#LLB&uǎjj!&?IiKfPSKhK/=͛w{~RŦ_[YC&M6# FFseј5sΪp`LlD`%:I=M{6S<+-e,kI|I`/æ>uNgGOҏ=$~O oo{&40$Fu%aI#gcM$<+-@-Hߣ{"i帢ʁcnt F8W-i/c_ǵox0gƟl2=w]Y1˖`GNsYFPYv[ŶeK�`]Dyw-Ѹ.C=_xnȞ.*q2d2v4uR0 U?|e4Um4*dVNZ`f֬&t%gE6m/:Vg%*,czީ:\z@C5oW?ޮXnJ*@֘RZ>$%E+CG,?:TK-c7Oo)J$)9[»-K-Ce5r#*\a`~{uttuu%ͷ9>l[^ǘ9$&EKAз#MZ8*h`H i U&}같Fi/#g5ۛnOCmdGؘYT@碔6E�cKSYNf 4ː2%H(?V N3B,kz\�LTaAKbL_W g:[J5˳B @axޜ%bQK|']֬9[o==sN ]5Zļ")|s164ʥݣ Ef#Gڹivgg [¶Ѓh8ӆ SpZϐAñ49xνh^pW}m 8O~| C1<&~&{02r譜Z2WQVug᫗<y4J= h*aMW&(2SLe* 2eȔ &FSb2In/U< / X\pWFc]28m&Gi8[ָ^4Zt.Ϊ#1!I Eb\_3?+@PLpX*VˆpH >  ,`"lr_2z x ,ue]}8!A<!ArEISP]]0CML A c;+'J97ƚR!� A ,$MzB( !-#`NV?>4/Si'�X]pҠw{Yr+VuUX<1(~YdGDJnj`o|p]~sycM")"%Ak1J)zwJyaQ?&+v�&|'�+$XE#1ÉbQVNn�~C0,.<E;mocY[@9Nd˸b+ g Ż]x\^ճBf ։򓧆n<~5uz0X�~ǯ)Wȵ�/%@X� T\ *)wY7K`r9nKhj4'un@ zꉲz!,H+�I}j}mo2<WeJٶ&0f`yMdFm߫kw7Qw\W/ C[4q.Tsz7&`T[w*p:Yfx~ S '-GG"?  XCJ;bz_?~5b+"wS2ciHdL�,CΛ}SnnPQZkCf ӎ9{SNrs@6(p)k SNVהNng<刟 3F8>XF።{rmmƭ~ lo8"jisCҪycLwv}qeq 9L##ȯBRIhm>V,fCHq6 4ZTI!}9"̒^]3DOҚ3CΘ1U{?ڵoֈ>δrЯVKDC0T�B pP�\~B@hؠм6a-#QcK/d&tBsClZ /e4"Q0ۆGmv 'mݺuR fȳs*+uѱfn8"`;10J`�3#z.f|9$I@)x}+XYShHN= p9f,์.Ȱ9#໕LDJu`%@ GHQ7"@,n@рFu `WtRʵ^uyohjk>#f<te 8)6y"+8:3sC@]8"짭;xg+{P\6R・;ZÎY@X;x7 `N?Qt9~ᐗ3r!3~yh8d\W]HdRaD:)Et8 DŧipAmٲYLmeފ,l ?3ߐCa�S8 cGePzm/"M|5 rT[V / `iCf^z; 2Ψ#ӧϞQf=ςe̩(/7Y5Mb lΘX[dZ~ E5gSƬ'y#e'096͞tuTEg�*"ܯr{oϱ Ƀ3GlSnf2>#ơ a#/BN2k+B6uMFvE,D̕/<L[ U9Fv!˯WPb-w.y-y',HKH7D5Ga4+ LTB.'- 7dƽ ЮʂqRah`#g,>w84vUq{;L6XX;sMAt],PBS{k%QnEsrwH#n#J!~b~k2)AnD�Pؘ5#uS%POms-]p3up#4K i6sJ _?z'>y[K;uM.j_wS]c �sUy&ek"UBiM3?n|"BhER9AaJ7U$\G2C i(5kVb#-J.b/쓛6m?æRG9)&ّTRPu^<GjǙCPoխC|J3d,f46.WE(&UjN`FY0"pe׿ P1Yss>voca'ܔL  _J@`bzXDALJ7R:xTFCW[QQЙF�7[58@ ӟްv1<a~۷&^U([\[[ʬНvPF+vW#a8s(lFi�ShW2Ρ\WWwg>Sk_a{Mgq[o&UǤ?/s@/^]GȁˆH[jmLF9AiZRuҲ?9{Qܳ~y2Y<g>5PL4N^\S J(V;9g,BE4Kל p kL.`i#ymGJPar]w}% wnsRtK+;5hbWŠ\×mY8D^08HJz5C ,8I7RT::hQS{864:|땦ԽjZЄgiys(,b* �O QrYEk`U Bnڛ1.:qѰc($##<3t&K./'>5X (Twjd $LYT@N6P*?GY';dLF2v^Y"&lTX A!cEa>,8qf@CBvsú*im۶?4h{4iN X*WÍ ,P\E.q te[Y  &TtZSv:8Si]VdsvbŁNT"(̵�3RXP,ֺv1EGqcmb8]8ed-*ZR 'MchE؂iC TNdNBY�%%?Ł ;aDNsѻ)x# /#aqPlXXOOW利vF#_b\n6 Ɉ+^vʅơآRpF&"J^);w+T0`LZ% 9ǹa$ցhOWjEr+8Y*l Pr _\j.2W8k+ 8U R,qq xB,.XdrB oEvQe$n�YI�J pK! ل- ^Ru=Ԁjq!Blk<Pٖ-[¿2u+̴<R/Š:]c[h# q%69帓68+t=lN`crJx.2ٟSn;͍JƔϜRNSjd8ڕIgggYOcƗ.xpQ8|R缤�Z}%sz+B͈ڐ-҆hFbꆅ+a=QRs@/)ape4yh*$[s Diu ~,ӟ/Zڃ[I'Ï馛'< zѮ^( /ܡJEY0gu4\P3TWBu!n Kډb;P\-Gq8 ]mI #(ҰCey�9UHu"g3HSq"E-!f7]?kŊ'x 'jyH$xos{5퇐)1{bL߶[tǕt{WQ GYXH92ʬD"cF.yٍ#lO.֝$<@ĕbѳ$܀bE@WB{h)iw:6 /lUW]p1,_XtK,M/tXF|drxkX׸:Qz qhb(ƙmJ*vA8HA>̢#,CQ{4rYҟa l2lTڗn,P qR 2V43ߘ]it{8HrHƹ?#҉WƒOSڜꔅs;HO`3fDX,7DQ+ c :CNA;1R{O*V-fJIFcD]  <-\&% 9z^ZA À, fYzFsq<Ùag9Cl(8{|8iM qoAZqu(r-isPso>ڳ)R(uHH:@!O#ؑZpgqU&lq$~Ae%r#b*AK05$Hl Ԥ--K-rb) d<lBe�Oq_n@i;CrkmLrJJvGsĀ]S"j*kJO[GI]o2Kr4c:RoL0JdAL}4U$cU0|OaTLdS fB"Db)ڕ(�Lp�|ەc?jȜ5ݭХ@i( W|GǤו.R[T!1 1МP;kg9H10T(9E#xBpɌ3_hwn*~g"T(NEm-K:s4R Eπ47#襃Nk*/ !_C4Wpbԍ>JrJ,f8 NNKmyپ�mOJŀ"xٔ KKq>oՍP}gSbV36̵ plP{,5%73B ğ&:7*ҤBqK5y!!nE�^-ݴ?΂Ӝ|n9U" vA\Ûghppo,搽pbdPQjFW < 4iTߗQ JxKSA)lRA)2:P-j 8[V<\% JPlSo7cМ2N^EG뢺j@) 9NQeEP%`7 BEUc XHĴ&amͰӌuܰ>pRK,C$x))vgB0A]&myխeoU\?zhxmiH t:i<�ӛFVOu~jye;S m25R^#Xj¢b|rxjsI[|vR1;=fN �^fVK,`JLT“Sn�6X29pHdm60q XgM NU*aQЛF%$w"U60IKhzl ꈰzx,[Fzƽf.^m%1D_ Igú7SV8&xuxM�&<6Y2`˜vcZ9"3oX<M>~n^Ho9L[WiT%%_] (y숮yN :XdrqSI'L gi*F䑥W\vQk �aX-Hѣ:SbsjWw!Ud9$`2%oO~򯫴UѐXPU]X0ZS39tTsS%{+8+AE EQՕ|ל-F3h�eJdI]ktw�қ΀ T)&Bᶐ9j794X)iԉ=IՓ у=+);⎧�vyUn!䔨 S󘺐 )x*b.!͝s'؎siO!{HZ"eNu1B k?&2*D+Gҹ:Ob3p !tjF/WpCJ7fk{x9"Ma]IW!3)qMZ:JсwG/f5H@8t4j#zê8Ci'c4n E* ԼX &\ĕF4l kmmNk UPSL^q~ps5'9V9rnHd7+%Ð`e2'1Y_ hpm>x<p2FH�eez9Cɩ9~mE 2>S/ߙrs̊ p hWE] >.c kRAFFI9)HceFtW5 Hpn8d0 H3BP@)t␬2M =okL`_TCe9A "i`ԃDaq&՝.M1p9L$Ӫ-ڼEɇ#yઃ4#bxU|$<}dUN-d\y~$CLEV'[a><%tgF҈dQYu C48j8 Ҙ{ b̛[:}77STvt _p2cQ2N;*M><F4OW)6piPl�n5zu%su uT%W/X\+c e 8;+9³K!"xUe]a,=ڠ #A0{9,Hi eBp7Kvyr٩AM Vm'nHQ"#@hy3r Y &C*|\kL9q<kM5d܀DH$En;өZ&XITjBR—K{x |rJXեf<9g-<E'l׍3TQ ΂ |e(P=o5z|u |+M۰m(i9+&eR&eR&eR&eR&eR&eR&eR&eR&eR&eR&%hx endstream endobj 12 0 obj << /Type /XObject /Subtype /Image /Height 240 /Width 204 /BitsPerComponent 8 /ColorSpace /DeviceGray /Decode [0 1] /Length 2902 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 1 /BitsPerComponent 8 /Columns 204 >>] >> stream x{P<rD*!yd4`Fkb)ZGmR(֦&4Q`'iLڤƷBѩ޽wϞs~]o_yYō7nܸqƍ7l:8jd~];Z[O]bz ș7ᗛ'8zC 'fS~oʛ:]R/1KWO|]>bb6Lggh^EL�<¯ڇy]ZT'ڡ|EOdBfk")"/Ͷ xq/n#.ᮎEB\-�ͬcmF]橛$`G񨑱n,�n2*�dP%i/`�/ih]?P#5cH̑LiӦdHEͲZ,&#u3}ǀp(g9"3!*�߯Hwl V2Ѵc XFC&&h&&h?LL}H1j2c y2a bGfOc3P2یGm,@1W�b`Y յdQ("Xf|@ɸŸ%;Q%s:'iDsgƀFc!oF͛{pbnRPަC_-iί u a~$Aqj81#:8Wjی\5g4L'pbQKw;#}3pbک+816d,ipbXw6\�&8Dlj8Gˤ3NB[S3@6[l N d7&ܥb({z281Ţ\E'&|yi['0n>-m j.UYSXY?ȯord|1%HLh}5˟4Ĉ&mVp&ٛ<3e_pWv9C/=C);C�/J�Zd%cݎ_`쉳Vyv م xA܈\2u9!(v5�\'&^sX֞~ۉvY_&3}O+ 6[dg͙bU%WbO{o` WpHny1fI %ۙ ϝ#w^Y103xy0N=DR<Z�iO*�ۋRfJ(7y@L| ކz+5ekM]sJ<dJQ #_)1"Cc@)\ 95cM]d+mȄ>Iќ*ngQd-'W[@K6V&2^LQD(�\3xhYwD47\$�Bi]D+谹4E>/OPh KfH6*%%!K@y3; .&8[H)�@YA쁱?]c&VJg3U@VoL�JLrj$�1{,bJ/-&)z(�ŬGY7,{;H,A=SLd"�̕!R gc% >1eģp0 gFs05 [&�t1mPg:WJFOU2m]zCjg2|qӈa'jA4J[=Xؼ=+&ii1fΎƌQWnRNev g!p g>\b6![M;�gy!&|i:3dF*cȚbƿ? o3Sig|Z^)eb}Gi.X榇'9=΢0jD'9Eݯ1EH�0!;Y tC? Og|(:  kGjI,^P�<ܨcAj�3LW=B)F$#Yޑ�;/C0k5J1_0wY)*Xpv_z�gM.Kp~s_CBoF'1/CD#$~T}I +b-?ă}>mQr129[I�C#`k652v/'1fqw=*DaïWɦ5Yj+Ŕ o<+& ]sM?W8 K&~h Q>_\1Z7,"`h\q;aLtԯbxek\T8;̎5ca1۟1ymvvu#ALKI/p 3ݱPپмZۓZ pY]_=X#67=V1d~F{}yɭFˈ҂ģo~|%o5ӛңTRu{'>Q@` £ěp?'/3A?Fa%$C[jXB'"hs9JgeOL},-ΌwJxy|ܬTxVX[*Y/ɹY$c6<G314O}/홯 KqU~dz%oE$ukUq#M]ly^[7]:m!/}RTp!|p1䧏);#7/,0 ?{BO�%﫛%e˭|4Af$Fh9pOŷpZFݹwnX62 rߗZ77nܸq/?oh"S endstream endobj 13 0 obj << /Type /Font /BaseFont /780fc1+NotoSerif /Subtype /TrueType /FontDescriptor 18 0 R /FirstChar 32 /LastChar 255 /Widths 20 0 R /ToUnicode 19 0 R >> endobj 14 0 obj << /Type /Outlines /Count 1 /First 15 0 R /Last 15 0 R >> endobj 15 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 14 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 16 0 obj << /Nums [0 << /P (1) >>] >> endobj 17 0 obj << /Length1 7252 /Length 4313 /Filter [/FlateDecode] >> stream xXP[Wv>=IA`ˆ+^&m�I dKcK'$Ek['9$8IIwv2Npg$IiӝΎ73i3LuLd2i@=qt}|{= �lF‹fPȯȖɩql ڦA'�-%2>]$PCF"r΍r{B|'X۲ܟ9P$4R�&ƂӲioPD08:P6@[")'oF;h;>єk8gvl}�Ot _=�Ymhy_ F?}-G˚KL%զSXlY?ѾY#tŹGQ�Z:BYi UsŸ"IFTzvO+-*{v{sxp=cZ[ښ+m-faYl]IHUEجWlYɖ;ܗyώ|ǟo>ֿuku͏vk;vz1/srol:4zWϽ#c>ym9zEӫty&4IdV0#wSWAyBsou|L^P{4l{?|c;I%ƏgO$<TyfGeo6eV6Sk PGZMۛ;EtARf*YuJC FPw4|o~_{U季0тF\þї8k-ѕDێ^jط3m6ж&Zr7ӶhA4Qwwh̖.34vt4Tnճy4Kvy]uǃ+oaNV=[*Y<=B>n_ *]{9ڐ)^WI:&}<~9J|yؙ~RAtQ2'>,qN3>xX[ ķ- K- <+GV?#`7G```vå疀FiVi_B|$P4Z h]O;8 V(Xl > k 0;#a#rh>/85؉ܪ3*.` MWq *RbRq-l"*rҥ:0΃*UuF.U}*BJ ,xNx!T x!t T|t*ċ*YTvMx=O&4شS2u&̴kjSr2C!(LBҸ{߄5^#>2JNՅGF$]FSX<Oǩ[NF0<i,\# yrf*&a <ӳ 4y:8M(28,ZiM"_ k X2nɨLE1dnlQgsQѶocxqM M'!y:|n(OK۝_ppNƨGNeoJ`JAA&x9Dgi(GFR3r-1­HBvQǙ]m#̑t:n<#I^D|2)-hH/B,?8RYPQעN:iua> E_=}SB0z< G<x8H0)xNȱzr&4y&XNHNގ&3;Y(J'3G51ZNwr;7c]##]MGhq]~rEsT>Ω'it:1e/㹕D4SLpW[X?M\1ֳ$A&<B/,Ռ1Q>͏/;8ivc6 c<xvkU3r|cl`GnIGŲyGҪ}9 0 vcB78->OyrPvDbjDG8y; |�xwaa2ZNK3I~"S$_4ë%Q+E7I`)kRLC]fg[8}#)!uZXF)>6'g6̨6qkj^JM$tʜNIˠi#ka{J3z lw⎏Po=j o"WW))!]+ lEd "`M)VJKn`9*Yr.K Y2Z&e2L:9vp8Pb )FdrB 5[=Ek1C,b!e-h.1rͮ(]"a_&WkXDa:W¢܃ȼ۬[B2pom -e?|w:ZDw}4|1}.X_xyR|Bdr"<cx&3B.q \".e/ K%z\xeo.hZxa­삖cdf`kexo\AʽlVi:4I}D`RBcz1$pI,'lmբ4X<'E뱲rGuthT<^^j<zdgѻ[Bb@o}Zpjb1mDKӋw]k)/;RWj𘢻w~"!OC.S.% +kaðkqtST_$u2Uw:H"Z+|>~zfDH@eV9Md!'Qcul XRǠT]9X~8zum=]Ý:ؿbn߳^TY^Zb(.\Xi5"z.9T (R: ;ب�W5CӚӴi퀎zj Dذ6Ox(okj GP{yFvq*lȷXX# XPBl){"IxCco_@M`HmFPT$Nz<NItH<d@ݦ )bfD{&RRJ6oqR/Jcu=%Qf>ƌ> 1ݛ8$2ܸD RfqӦLŽ!Zʾ~Ѩ8+@u`oߧ "ÒiT_n@G;Ч&[%+ r20RW�yszV{ֆ$MۗQ4ΐdG_ *sO J'FRBX\UP*t Z?�# PI')BHHx=~OEʑ6+}uaTȾh�nQƷOH T^Of=!0G:Jmlfjϰ;9;K-W~#փ1XcBa2` SѤXH|%z:f)BrK1~\T| S`h@:!uw`Ups8º9f(.T=&o ղ[e1yz&)w5 MՉqm@jXY1i8^μJ},UC>6#3 s Lؽ*0g*:z*\^vvӌ^r3\R -w*ݺ30YZYHn_lsx͵\n׽( ËVr={�@/x|W"b5 `P221׬�sW.O;%!V11Mr]K1z; #$mHsMJ$w+R73p1<#l# g2qy`@*l_l3P@&p^)]럇_m?_mۣ>ex?]W73' "|Ý*#r= ?O;<0O`y>s|mBBp;u|OÞ6>Ӫͅ1C ؕ_Cw߇"P.ʲ TtU[U~>`1xt+pVxQRA+Օ~{O8+ty6 C7 * ?gǵ�@8 endstream endobj 18 0 obj << /Type /FontDescriptor /FontName /780fc1+NotoSerif /FontFile2 17 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 19 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 20 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 500 500 250 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 543 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 535 500 500 500 500 500 500 500 500 645 500 500 500 471 500 500 634 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 21 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000001356 00000 n 0000001679 00000 n 0000001721 00000 n 0000001769 00000 n 0000001821 00000 n 0000021131 00000 n 0000024299 00000 n 0000024464 00000 n 0000024538 00000 n 0000024663 00000 n 0000024708 00000 n 0000029111 00000 n 0000029325 00000 n 0000030687 00000 n trailer << /Size 21 /Root 2 0 R /Info 1 0 R >> startxref 31601 %%EOF ������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/image-inline-scale-down.pdf�������������������������������0000664�0000000�0000000�00000056222�14163570564�0025546�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20191003010220-06'00') /CreationDate (D:20191003010220-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 12 0 R /PageLabels 13 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 297.64] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 419.53 297.64] /CropBox [0 0 419.53 297.64] /BleedBox [0 0 419.53 297.64] /TrimBox [0 0 419.53 297.64] /ArtBox [0 0 419.53 297.64] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 231 >> stream q 11.0171 Tc 0.0 Tc 11.0171 Tc 0.0 Tc /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN 11.0171 Tc q 150.3216 0.0 0.0 212.65 48.24 48.24 cm /I1 Do Q BT 48.24 51.306 Td ET 0.0 Tc 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 419.53 297.64] /CropBox [0 0 419.53 297.64] /BleedBox [0 0 419.53 297.64] /TrimBox [0 0 419.53 297.64] /ArtBox [0 0 419.53 297.64] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << >> /XObject << /I1 11 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 297.64 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /XObject /Subtype /Image /ColorSpace /DeviceRGB /BitsPerComponent 8 /Width 287 /Height 406 /Length 21479 /Filter [/DCTDecode] >> stream �JFIF�^^���C�    $.' ",#(7),01444'9=82<.342�C  2!!22222222222222222222222222222222222222222222222222�����������������A����!1AQ"a2q#BR$3br%CSdᢲ�������������4������!1"AQ2aq#B$R� ��?�V|B-!L, hIمL$ Vf jƑЕC .#Y`tu!gIrT'dX-746+cB} 0$!=�`4ېVƘ=7D 11P7 $&!PYSLD=eBlK-be&) N7@IcC2B'@x<�f & V!,qIȖ l+Yt"G41 ԀF�eD4Ɛ}C`T +C` *edJ)=`Fub:)^Af9h '*%J 48V V жD0ªE�#E(`'%7:2Y,R!kVASHI2@ K�vPP.xiƭ *@ &y#�] ZIS4G00{c6į(LH{]4ҴL2[JlI9H jhcT{V!j=X)o$@ĺP<X!XHah8@!)�P0NYej(((bʼn5�;,R蘀:D=/ <ExvyR%isӲricÓഊa%j�10)lK@{o2B[e!Z0!�U�&0}Vl#y& L&!�/j�]B�. } ?`9e ܠnCCAb@7zLpuդ; DvD5hXC1-@ꡀ��W:X PT&"hC%B<9K>efp@ x@B�!! -@ 1�7@1'`U8F7eH@[%Z@6C ҴH*LJ\ 6V3En(lR `z4@q B~RR rBk*`eCx(Q`xX %M )X&R�iϺ拡 i#h :8)V�V*0ZKcJ/P =RLMS<iL�$ۤ^8K$ qUJ}6WҌoa6An<1rϬxF<1ݙnsj%2&՞K\R磨%9knv"?U͞<>W4E+rбG91P 2`xȱ�.! .PCw)baCU Lt8$*2aFcU$3r JMPRI@ Yhpv"Har�vQAw; sq�G=^!}eQ`wx}v[gx>aK�&@nPw&g%ɳ,{U4�,2~\\͈\\F,8c( � r4CȡQ: M!PACQAFT*0:ʒ ܆@W9inʴ0]3eNʢEϫo7bCvWtui4P_U<aY7 6kYĎ~xQG/ܟC3cGTSoG\c�6ApRQèWTɵ(x<ZYC0Œ=7eʦ#뚗;sQ;E4uG${nI'$Y_ArT."~,]Y)m�j7O:8X8 !{BiMTkR�"xCBPt:2 *  Tctr 2R@3ź=-Ȑ/IoTBn xzezQAsS&�WN>1 dtbuě AsHe;z=&J:!cK6Tq˭{iqlLȻ�mU1l t'$ަ|+S \ ~\} rpN}X g5x-8qixډ[3};1]GҚS0Qj&Za?E{x1|G5:z_⇓'lhcMVOT x=.L)ױeFBĠ@EašۢG9&@˒tU$лP4c=x>ʒ�N1Dr49:�QH lE!*9I_fy@t_�3 &#i4U̐�C]{sGtLE| g63x^^$,x> ܜ][{#RIukGuܔI"(#c/%ZsvVyib9;.6Sj$ILkfyh~`i<Q #<WL%+MkJ< 1.@0 `nR; hCvSZEYLĹHH$Khq9:%N3]Lnz*-s0vuǴm] �Q?*;z-g^( 9d'Eqg)u*}2n`R#'Ro#m4H`JΖ#HwJ{]# \`6�V8~Z!g}y9vwǢ;G0|dbw]˺5|+{/ٲ ޷S,ؾ&_NN.CDsԲA9!X'=;zLPn( q*V<hv900)h730f;Fьb(pvP߄�QH." Ah] sVM]S'ٲ3vØ╄r7r{:jO ydwgXAvF,it.l8/oTٌZ{ (}@P4( ,+! b*e3ҹ}Bmg/$Dᘅl4K", )nEZ(#�KUcl<]CNR&0.u!T�Q5o@ܐB]O~m}?ds�ᘉb�*Lo_Þ,J[Lds L?�ۉE?Sg>f8| AKmܤE!NI#].D{fnJdklf{zVK&\T" c(=HZFCuh� Fp hBQC@iE\Hx!P0]H(XڴZϼ.u#mBŪI.?o_l>C$�ͦEOP,G*U# u#A"3|=dY&'T,04]#H<P%n2ݺ<\5< Bjuh#NNGQ<ͳVtϓ< *IcgJ4駕Fny "ImG|zz5swjMGs;25qgG2ӔAAZ$;H"N41#�.TsE,nI40wR0ƚ@\6'* qRH l@2r1˧ˋ" Ӵa7P9>џN%Y=lu8}~E'q�4 6S#8i9L oɞV $k PH #xykGRfK$Sb@*!uc!.'L- =e>Os\WQ4Bʏ,ЕzȢYPi]QQ c�85駨/ss%I퍾?:^R>Iǧ?U<Z4;B~W(52|B*Er��wTItPMT1l�t"<IF=JddS8na|" }^xjx̙Io#Uɵhfkdow,z6~\i8�!iIBA0xE9%Hb Xl[ic t+C?̳ᒎK`AUU4 {W&t9m'\!^f<tLNӤ%(l c~iuvFLN_o̙dP8B* LG7uDy߲ϯY^?g$M{%OCqL:}[N"dps\^[|l/$;yO x?̟7 N%ma>.&۶�tn}l^MKѴy G[Pn.Ǜ\�bNLsIt~Cdpz[quv=;WբO{|%'HV �֋ mS29JmfgĚ;_lf�:iT�v4Vrbw4V\'ھYTje$to [$,8qjsZ2J}#tpu(#1ӂ{�Fy W7Ӹ^/<(EV>( )-԰섀sE@<Y�&kaT.֧ 1G=e` [w^lz#FPic{7#qN\#G#y񐡛.UVtR :SX0w~+zJ*ޟ6U_4aB[c/ ޚ﷗f+WmLzdrO%|ބ8 ŋTrnoW,lLEOlU 8m[JשϚkuMk8{WhmM<,Y3b,8ŹE~eŴunV `| %OLQ�/KդG[ƨ]h 6'�Y8%{Yoݙ*�M&ZIB7 gX |/A뿈s�ǩߓf4CM]6!4;OvSokwaA=^O]$TWq_q5laߠV]. +8F\*I ಕ4܌ʫe&)<G8R.v֋ɤěn%*u_Spui^;ş>Gz.\揕}FH<R) $v0ѿ)!wl$#c\A3׺@@pւy C$:sQ~N+]gߤӂ8dι+H#:s]jFMHa}Ӓ>|�Pu;4'- An \EFa4e>D$rJ,!K|)I:ͷTOUL+]ڎ 2+s勮kc{2d/gK|-VSn.�酖rWܟ$5nQ;tX#q`A8>e7c旽fPűǤEOQNcLo2\~+/X-s犪dc(ם_Mٟ>my5^BQOO(:J")6I{1$|~,O|޸/t69In,t34 Bc%q平_'6a%+H%- *B i5sfFnH@c= ǫ)=w_s~w-m!%5% f~J4wڦu f`dCB%R iȟ+IX%7HCZI%H5N]jMioGv%:Vqk+O:mƵ�5rgNMH(qeiLa vU`R.eAr g!6(6HŒ C ko>> ͅ0iB5G-_c\<3 ‰:�w#0=D] R6@Rc%Lq�ҹй&&0d˒Gev6eMG*$ :Y ff> '+,$fs YH׹6k6n/_=S?^2ڌ t¢Z�MtoH&l 8~v^%SKkQq-XCLbhٸ^saaaӷ(_4sDmVM_g;@Zzn|d/5;4Y o?J ? {Drn#` ܹ_ʣTNY;mi=Lt> 2M.̒l.zf2l[gM}62SgjT4e,gFZܓԻ ;=AOY!=AI|�HTTp2$ml�+fi <U  #IGG4&�3ujrn]쪀u@ aʄUnr . Je ,ܐ7@CR�Д bYEm$->4ÖXr,ZimOŒ9qS(sH-A-[3x$S?-͊ C- (13<6�G{)<ۗ&O8Khdp|S/cbE ˟Gm<okji\Z6hq&|m^?3�>KIp? V 8diORK]1mkߕ%m?y4qQfqp;m$`;x~^1ߪ|GqPJ&Ӹ3F#wH]Mdps7 [se uY~.n!QqEىV3[6�3-|�U&ttA=*&c 7;NE|)ZvrkjIH]@Ksl8ۄy�{ŏzm}^!))j"|IQU)kq.9ؓ٣F*ߢKbL8q^(z ѱ`v ;=Ola.stѴXnl;zE9>;<BZm_%*-4"SNɌ\+N."',hV)SM6hp}TJ+IdH&S [?+\F?)=$z?#>8+i!}Z$i~ L[tӢhv$Mz~*؃mX̗$K3e'c;"#*'/pN9b|WO yeҊ\5xҴ<mfR@cגyyU˂]{Ϫu-L׵= 7Ϩv{w1c=6<۞]EO)d|(BՔQ\E,YN͉;+{*ahc[Wn=o׿t2f߅ E{l`|=8Ã/y:̎^X'GK M:NCORGJ@7i`kA>| _v6yYiMd-qo9r+äᒒ/z:^@i5!9=53Yx4]c[EEMSDy.wĮyM-^.W7Ǣ$<#l$T7&QےD׎ *@y -$ASV9 |'N˽V8 ;_Z劫DesHk!6Ϗ Wö؜ᔟ5}sm^۲AOOQ٥gҺTpL.>3{)܏OxeE_"�Gi7#~Bb<p9�Nj*9Vrn0�8oTe>qT9&Vվ&?W<󊏻 )Ov]|PrKC J�,6WY1m:^._:&NtDw0I8`/Mr%:᪂�CCROWת.S=c{yqw+ٗAXW KzidY QӨڦKQI=[ yr<7 *H]mBw;~rc]g^M+JΆ: &Z袞Q#^Z0c=ӭ\z}ܲdV@umKB1UU-jpǒ;n G+~WOS.Ѹ:*Y8|.q^sti%Ê/T#8W}~m:Cg{1&^|Oj{8?GY'^y|+W/4Z 6|bnA#-�@Bcx3 %d"k%LP1 `dIN'p7IkRJ\ AumaB&*Q;DVkN_L�?n 鲂%֟|(QEޣ[; hm-]T<%2:Vnlgs}NEMUwR>GQp'h眛#=8 D;,h$oZ&9űh`zᨪm$N6|iv)d[`n6pViM<x}L 9伉hu::Qc5Q4Jhik$y3;7yn(6t߷:cG4PjMS%TA<l?X vd{}n]!QO}Fi$˃$Wэo4 if*X} r*]6PMsKTvDjZn 7Z<ܧEM5UBIkn{d<l:|>68lqKFk|2uՍ}O_'FKvdTnA;n0Xʱd: pdѩ“Vh"s~*\2̓uYbh5zƲ9PG#e,)o7=?+�R9PQꁎ3-tk!Ęʢˬ%SJn.H40? 6ֽUu**K07Qn 53+qa, [DبuN]4d?"FwǛJ Vi۳I* 5ՓjOs�*>bǍRD767`L!=�B2͗ 6:>sO{>#R%k8^ݕVl6ʙҫveѺVio�uY#'6<Xm>Vjۧ>AN0zI˶9d˒^WHAq)b&{< k^$4t6꼔aUPum&efUPro.~_PX&ܺ_ff6cXrjvo2#{݋Y疅I8I?xanQ~C$p=Xls�B Gl?+ ,+g ?U*cL�~T>.=R&ؗ>T D_`ݟNJmbEq3e8O.e/4{<?՚[񪗷}Hc<tϙ\[dRq)%9!~ %LVwqn5H'+GC �ۑN[3c.khY _r^dŗkpY9k7KopvI*es2pۑ?pBS�*>m33*cC  414dLz]; TC#dWܕKRr6dGW麌5Mc$t.ּ(Śx*)uD|~3^~W,jY^]*QGM%Ζ 9~etO9I�2Ђld澺ZQ:S,H.nmc6G1 Ȅp(֬S%ҀER\��h 㝕&M˭3\0 v-{Xÿ0,E21S/eDm6�Z9ǵ!c|i<u/+Yex(dYr@Y9/DX9ke&PUHZ *Ѣ&YQ/dQJ6fu dq�yrvZ:5 -5Ze kK@]tdB˓U-6CVctZu cj>fP>`FY3E͂ ۾E U{ q81}HM9U4|B+Xh##$ÀSE`>}POzzᡩ]F_kn;cO9B.J~! v1ߒvv{͢׸AG=h s퐝K7; p.֑p*I 7=UR!ƿqqs 78UDmE5^$|0~mo쌒4+zwCBe|clT4H s|^'C&2YӛPô!Wj`yeÛtΤG|pZ鮊 Ya3fG7kہSF_ Gۋ*dCV:m9q9k#n|U~ �:=R=:N@$yh$ᣪ{`9Ԡɫ`]03ۺA9敔zt%/Vc${ԄXl,Qd(S L邠r#t'6�D uFA5ōh-,=-0EXF r*4\#O2`u;dB ƒ5fEG J4m[ ,R3<d(c.z\ $c*kb-c,%岗 d )c7$n)2evB&"{hOIp0-1x+xP)`iƟkTKߪ=Y=/|=0IhsGW`~c_%0&ĵLdsHi ӣ4؎cvj$]Axv)Cr#KK +!I9&' <[_Hi hB q0&a<FTI{%֕e9]U9c/ؠt 7 qa�䒶\p}Yk> ?49SO+Sl<^6nMFKee9嵺\%$+(9I�BBHU8oR=V$#7ꕰYmrhֶq$lFяFֵ?j i>k̍!+x{{x6 Y .l X)JD:&$LVыG<EX:QTyc>7"\9*49T2ס<]R`)q&`n.<bv#A$� ' ڊYRo{糯sdΗ< wEy4]wĖjy^ݳ¸W+iP�j_Ad / ^4J ,Fx�/2\Ώ mh >bmmըH3"#\B�Z}5j~3+l6O,sZ.%C�)zv>0sJDŽc^r Y|b:VGN'0GeF\kL!ǢPuAB+0>PD'4[GCAאAs[y*j*#>6QQrQlon\nTmeRFgCڋnѤ=>P{VeJZ>#9{9RgVų[_}s/p]^QN_Ye$qg1hIG^r%qd֤G,Q:F'yj5<ϸ"9UL{$\2{'+F}DeY#gK MIZ>KǟY 3H,)-Ƚ82TN1c{{0U0xnߢCQ;#VPfpVnv×}RweXhէMI!oi BG6OK}g` kc`.J 4e|pBepllisy�Z!j#[]l\E�#3`y:R,T<I~<Ln{�+.X'nV\8f Y,ΑttLKLDfn8ԅ^ d|#L0lӸIfuƞ1,>.U~]-HǑqZ%dN{Q8j:xZ1;'&�yy,h%γX/A%k!y+.hHtM¢>3i\IUs!EUQBڨ-+C˸]d:gɂ[<1qI~Ws2=/'esI0gtonq 0F}y+HhdmЄ5QrDb):{&hSwǪt*{ $+#pUK]�v2C.C!u<dvu٩],p90*2)uLVh�Z!Wo >?lo7~5\ja>θn=n(W>赛5cdle\^ݢԐ?N'܆:  ESEnEzC4fOi.yzX(=J'ɝ�!|sIoUc|镔t4Y]`;-TEtf{n=M3ɹ٤kaWdn&Yجq]kFF9Tk7Cd%ɎEN06)CAe7M3Z󈯅hQ8rI$Gb$X7LD(>x`lo MtμZD~YڨÛs/7 [R= ''n<Ȓy%.kq�{,?bmiTˋU@\%D4,~JLn i ; ;H,c; "˞s]6�4  H8Y!q'*DH`+Dj>+]+ְ]ג)> k оY*vmsZ#mǼ-&uQTjH%#}9MEu<"Bd,x>!6�snre Gq8~$ԓGFڀ*lvDfM&3X-fZhhl>s|B,7Gv<ԩ>rkKGNQA.13{ П3-7ZҨ+uWlNv.y� $V Kiϵ]0; 괊Fpo8|QR�TeZ  {Y%[ڍeRpKV; Gz.Je'E1m,}I<m˰pD8 H[ڧ;Ķ@T4]qgM o5( { umR5j<ݣo'?`o|XqNǕwjT:{[ X<i.Rx3ÑO\+S&HWC$}x<?^3>vV︊:<p6 M S8$)g 髖-Jaac?wC޾}OXߝ7\>@c†�l`۩`u"Cw&1nk)8i2[GwkL|4ҵJw#]K_le. lqCFvA\?s{e?K] ;_@t1# ݒĭ~#́תKK>03Ɂ#sȄoF&ױ&B<xob9p-!V!#+K uows,cvcl؂;uvixKBv<g!9R+,D@65h\c2K1^,UͨVP^t1Ldn5.<DT詋A>;)HmmhmMrcu6]6{m�  }PXjy䥐><uS9Ak#Í,ZO$8Xn l%Q|uZN!+F$spՏqˉ>K,\_m1.ӥv�x}^�ĺ:VD[�}`VY|N)mĿ2ǥ~M:I@�`śz>NMo`V͈Cb𡱁!H ڀ<\DIcVʁ463v+6#h�/ f l5tִߟ4 T|rL^ qS]W%IIw6�?ukq7�d쩒YU-|p �| ,Jٺָ{CfGN�2+W.9+82O|df8L qJSNKD]c)y@ı%O8o@VB$@�Cnٴ!|*y4.rQ$4jEٓ'à*?pOEh*4GT[M"܆Lߢbh?qmeZRMV$u0(!HsF۬L6�ݥbXx$�^7e$` lb@+FV�25Aa~n.-H18>+7}$`i Lr 䤨㖝w;�vj $4"9<Z6~ܑ? vt^ ֍^g:r/\>Khn/e X/j`UaA 'aD\ox=d+ i!qIYIMž [MI=tt}zp\1V%"NS/!&4]4aN<dE2 2ޕ v4UW.|Ѫ*/?m1QE2C!$\Bc�v^ !qTq]/hF[p+40TJxBxo Ck�mm%-@ g;Y٧PQ%tz4[8#Rl\+;)89+7UgUQ=[w1#K]g=̵vQ9�Fw]tFj]v:f67<3E=Q6ng-M=K`8Xȱǎ-GYXƆrP@զ*�,tykaC,(՝B{$C9Y(c ʚ2FN@[F;2cQVt)00ֳapMBIsLk)a�ҹ~>2l+uαTaa㭥^9^W _:XP ƥaDzCpNˉ*)C\2flDFEÇipy.@̽v/huPrA3I  ZC+@mia<B6]1|2+e6*fԂZ*ayaP%HK}b�Iƨ p HkQ6̲1i /Ak]&Q;`fOeю5|q{+ \6ttj l70\3sgGku(,&' |j@v*\F_ȼ7z +tPi\kHӪG\ƭl)tH"`1qY\i4ZiboKd"Ip~�ZD$۽7HX뢢jY}#f.2#5ϊ@Vt45-uԐ;p7U8,TRبnHїL qEl0&@)5'C5{."lVc|MOubjBfF^[.JDHdtzRd8?5<e,|o۠]v^,q`Ը-|g`$:14m?z:`-֟G,vF)}Nx h80/0FnyC A'iH/OAqɻʌJ4D8lW"tsӧ VѱF@WăZdS-)gB1pɎ=if+<}>:in}@ύB6PqN|=?X0rΈc[gO4xidXmV$a)2O Y6@-2o D {qcZ` KdHn['NΡ 78_FzN'ap84HMSD>QmipSU#McM\M+ba DdEYFuԪdbhV\JpCCS' hH:YU\h `�VQ%Bht@e|ռ9O!t4lY2f/.:* B֭c>uS v4va;@v=;=y%wQB"k@`q~&=ok,DIzY# +fɺ=Qu(lH욒ԨOk�{wh}ՠ9p^D.}U]6L@dqto j s5hkv\x,$jxua>,A)SqmhxQio!%.Rd7qa8SqELO#eN\/mRŠjyE�0dR,GZϼ7߸N8E7eVs1�Œ`הO__ ]mWrWFJ0%mqȄrlZda(Hhȱ9 c. \A597(bvh H)L(3ZFVʉz(bߍu͔*6w^8͖кDįiϞ[`ι5i3_Mp<6rH)ə-SQew+@΄Qx+F[�깲'7`Yi⮅ٲ-ʄ՜cM :-1tY k]$lഄ4NWA|-6טӣݼUǓRͻK;qsuȥ,ι#^5Tc)A\6+c,@J4L f\UlKEh.:V)"ke,Q*6c&]Zscq!$A(8c)tXv׌9:~`hd`8[E\H&�Set 0چWHtwQ UvWN@ZXQ 'IHh-JY킷ěe؉hϪ:-īO;뮨ѯu8& |M&y/<UũRF'FOb.T+uiSST ZwW7HdMl%$)`{KO"'>)cp},2F%ch1*KY3Os Cٕ8cDŋՅoǢ!eՕN3c}TE9# Զgop38W�`E/ Dݷ_Zl 4}$IF@5�)WLLJzp{3UкmYˆHX+ .IeM^ '2s\dp& G;9Z:LM4EֲHsEW$ӽ} ^'.ʪlq {%KlӨS $yT6QeCLv 6HV] G0j*mEjc\ɣ)Eٕ<Pu ~MЦG8{]#)M2>jxٿ͞\6u֮}ďN(pJWkQHHR :<¬Pe�(_Rx8R,[FХƞS܍dU#}hm.s4t",;,13h6XK IiUzϡ((#,Vآ"q}^cFMQ4'SL{,v`:H2KԚ[qVd7KQXbhO hSq걩De;4[FKWӢ-JS< r5tcP]qPEJ2U8}[ZgYUFkyt}gh(Gw46]?K,8lzhix$vwҿ00Ĵ^nF۲l� y"I \,jZ Zr)$Kg6ֵMSeov/(]MNTn"yTU#yK�ɲ)Y$M #|7@ɑ EX(dxrQIme&&] +iW mvP/KE$e$F6Fֈ2Z#G%ϒ>g)L ei *ML*T,Xi6I%*f*Kᖟ69λJ G(X A^$ 6[sOm )j류 )ȩGHI' f탈왎ngLz65 .V5RFS,Z ׯpE%ɿ$~XCP&x2LQ ⥰*5sd.oM{' iT1cl~Sˑ|jmj `cX`ɞ|ѓXsUb%+u}AIʒs hU@6M@HY91 <e)2ac+9Bc#dIpmtat$X`^ŠuX\.�R4FJ-ؖK?i+H1s*B-V샔n&ͱT+G9L%uIY81eOSW`74Mxc8qddMudhI.N)2BB1}]RD3p'JQ㏫ₘfG!z�@G"MVa4@#SfEuHhyᵚ"3�$rwk1SD5Ǎɜ͒R6#l#R-i�YNOEU&"ž9'p�a4ti> kp|NEv }SωRk)8W˖%&Wy>\2S"WeZtPjYf�$z.9LQ, "vfMLF^ѐ B1R-w0m3NJd@p\vӕ(hk3GV4dh4j3Mr\sW3i:,Tˍɲ쟨x0;$؛9sĵRt#] !KysUElໝiS4YDx!c;H:"1tiXln~+tD`M иpqfOx=248pwGF893O<ڕARH%o(2Gi#kXJNO%hJ,h6HQr!hi�eD wTZA@�P9ZXH(0HMq#pdZ+6XZ v w.ZSG 2D]k(! ε:Ji͍b3~ɒk}7ZLn앝O%,}BTTHGo.e˲IL{Q_Q.\Q6yL@E,mCJд8qdVt%W +ݹ6ZEMi\]තYmq 8 :u Ii;+uUNi7�\JcTsvyӓ M+,).B˪/(-(M@ dYC0cA*0fТ5'<aOrM#y.Ifi:rO%'LM(H!9}⪑2��J4g$B.|IFBV RV=sMaefk p68S4G8(]G>儮Gk�pT=]nf"T2m)4lj$kc)C##ZD9#wM&9¨22V hNJgfFڕ#�.Y&og:dp+j u\dk"s N_i%Q.7<O;pI# y|F?1U<R"Ǘ02ETεlzCOD_X$D.Z]1-)!m6_E$˪1D24aX3$ym: -{(ۜrQD@9@\,h 6ra.IE4qN%!7%'"9){]jVM|, ЊJ/cjыdk5evfZ<9)DF͐LР@;.IKH5GU!3R%#ETѴ h-`pN):/x endstream endobj 12 0 obj << /Type /Outlines /Count 0 /First null /Last null >> endobj 13 0 obj << /Nums [0 << /P (1) >>] >> endobj xref 0 14 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000001121 00000 n 0000001431 00000 n 0000001473 00000 n 0000001521 00000 n 0000001573 00000 n 0000023224 00000 n 0000023294 00000 n trailer << /Size 14 /Root 2 0 R /Info 1 0 R >> startxref 23339 %%EOF ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/image-inline-svg-with-text.pdf����������������������������0000664�0000000�0000000�00000036447�14163570564�0026253�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.dev, based on Prawn 2.2.2) /ModDate (D:20200210093148+00'00') /CreationDate (D:20200210093148+00'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 13 0 R /PageLabels 15 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 775 >> stream q 150.0 Tc 0.0 Tc 150.0 Tc 0.0 Tc /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf <6265666f726520> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 150.0 Tc 0.0 Tc q 83.5095 790.5 m 233.5095 790.5 l 233.5095 805.5 l 83.5095 805.5 l h W n 0.0 0.0 0.0 scn 0.75000 0.00000 0.00000 0.75000 20.87738 201.37500 cm 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 cm q 0.6667 0.0 0.0 scn q BT 85.031 790.9385 Td /F3.0 12.0 Tf <5468697320746578742075736573206120646f63756d656e7420666f6e742e> Tj ET Q Q Q 150.0 Tc BT 83.5095 793.926 Td ET 0.0 Tc 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 233.5095 793.926 Td /F1.0 10.5 Tf <206166746572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R /F3.0 12 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /4d9883+NotoSerif /Subtype /TrueType /FontDescriptor 17 0 R /FirstChar 32 /LastChar 255 /Widths 19 0 R /ToUnicode 18 0 R >> endobj 12 0 obj << /Type /Font /BaseFont /28068b+mplus1mn-regular /Subtype /TrueType /FontDescriptor 21 0 R /FirstChar 32 /LastChar 255 /Widths 23 0 R /ToUnicode 22 0 R >> endobj 13 0 obj << /Type /Outlines /Count 1 /First 14 0 R /Last 14 0 R >> endobj 14 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 13 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 15 0 obj << /Nums [0 << /P (1) >>] >> endobj 16 0 obj << /Length1 7428 /Length 4501 /Filter [/FlateDecode] >> stream xY P[Wv>=g6`lp `"`c~�%ARㄤI$N2eq4IwӝLI4!;dݝvubO& ^=vv'޽|{ι= �@ O-l%'o�7f"V:Eӳ{MI?Fi9` +elި0EBe:y(Ep<QnfK2Η 邢{� yؿ+pqMFf~o�6]�7NLD_lg�a7!"_/AhW%QYWKIS@D㠩TXi*4MBx/CьA>G4}"_(jiv ŅEe^RlE"4OZ-tUJ&k;;V_X[--=G~Rގ>R?4‚}@}Iͻ+GsO~V.[%[銠:ZқZ-h tzCd4kf3^%XY2HF˾ o9޺wh<1l?o۶}zֶk9m ue٣+#w64l91̼9BtϞ~{f}wx5hwNoBCDGFfvb*e%4%6{*#u^ijˣBhoˑ{6o=x㍋Ï'y_tc鎦m;Xʷb><FUgI-MkeD$RlbnG=αGCa[ٖ}ʛkQ@L+u"&7W5m{-*lsehh+ρ4u,134u\(w~+sl'<޵eBt>Rǹ={%ޞ|%{9!p5ӣ$*Q&[M [Stl|S×-$'>i.+?kݖ ̎5[Z'wj-V7�T}^"Wv w6*HT*$a|f򲵦yGʤ8P"ɏgxO ExP=_C>Vͳp6؅wY_q d1# `f8K S&2/0I>@ F4W@H+䬤36dsEمO2Ivb1^Bd;_[K= 9R'TTqO̿Uqŋ*.vxSEhT\9dkT\ yEŵPJ:U\Sz !UGvrFų\R,JųHWl!TxX*G{U<ʅx.t=)FσvqP7>oVC[$: MM'ΆƝ;ioxB;gf9.NA Q` !݉/$XR3 a� :zdmTK22r2H"B]r,4 ȓk`rDJb|$0�p$1EgSX"C3͡fq򅱤[2*H6Zv(G㈳(z‚ܳ{wq�MAy6;A#nO�r72;' _ppM[f-؍R�fDN Lust4!M 9Ȗ8ͭHdRvQǙmdG"cXh[}=cLDfD=@6<B 3"HU_G>.`(ܳ$.=ጄL,_fBr8Lr&eQ9Q(/BoO xcDQ3.몠]^W-=ΑwEGmp@I;|w^KHf3!�.Yj[d$xTM&L < L*rl6g gC@Sr,z.$2J|iiu9|$m'PÈ[AYVMs]~y�71PF˂NCgJe8w $f!ly:OS7;r�^|ֺFa=va݇=LqhU;1.݋6:fe^(RQ䦘 v$sMʟ atr g/W#WT?N/فp s% Iզaz.'bh"nf,Tc#ka1[=5[':)8z /+hr3]zCVb.ٟe7)Œb-MlDU, <J"\LgLmCi&Đ&+C˞eRL_&ˤc+g݊ P*CP'<$l N{$ 5 1=\[lC]-h"fg5JW`? , DT2"ȰUKx_["قȼ&g._%DkJZR}W  iBt[y_qK~>`}.;Ӥ/ N^IÓ'7 K<~>}^'(« piAs /L!ɁM #zlJ5rYJi=;Y.BC|>(q1ԴѣE5h~xJ.CťΆQШ3o;貺ɶ&SH <@oyrR1U| ђ%Ģe6-#}~BN+.VZ+ x.sk{U}}JV֘džab tx/?7C U$nC3'ɱ82`AP &2dx!P0Mgq Ky=n=Ni߱}o۞ݭZ-u;**LE 9YzV#kO*zz, C*ΛujfM+jNޢihZ4C{]-uHT]K쒏*ATqa &i;U:oGdsja1'RvHEѶ(@6"V:AehM&_]m/y8)zNICt8CkL]2ߜ^E ؔHU JdWjU)\Vj%C13־y(JDS޿v3P]`M'7rJԙKqb^^*@ÐG-{ƨ8ubo>UJ' %nз3U݀@wOM&3KVGAfd|a6^k٧~jO̯ K>7h*{}|&̏c>g JFXH.Ez!h-8j�6$eB}#NPU8$_;9]V1gB=odž5ȱP#~ QçKQHZ'3ryuRdS?Rv63uXnH>x7Q쓆o@Sb35]4ΈKlU78Aܕk4)VR$cIެu`s{\RanLT:n UEQĆՎۀ(Kv6PlW|gMDM>S檫,.O {)*J䓦b1QIZ,t{U`Tfz*\^{n],ϕbJhy,ݭ `#9&3<cRV+4%Sεyxk#>wW]-|]9=h%]o�i@˷xyߠ�V e ( Y\`j8 |gX*F`bI`UL@LcFt}gY|7XC zBԱH]#]J ߟu cfRW{_>)c?A1 h_͐Ծ?j@<3\+WVn{-!~k5o{{ex?w]Ǽ? ?&?7Uᅯ~ _w75,< H,)t#D!'@ݭT{Wu|ߓLdOaOziև1B oC� Fخ">Ex TtT[%1~>`!Uqx@x^"!KW+Pv̂gH1"/ K~?N| endstream endobj 17 0 obj << /Type /FontDescriptor /FontName /4d9883+NotoSerif /FontFile2 16 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 18 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 19 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 562 613 500 500 535 369 500 500 500 500 500 500 500 500 577 500 500 471 500 352 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj 20 0 obj << /Length1 4228 /Length 2748 /Filter [/FlateDecode] >> stream xW}L[?`l0Ԕ^ WB|C01`C6Wl)]ڮlFi4iU7M5m/IUۺUUV6UQHݪeU*-ck0;AYk{9] �P S7QoCɟ�HY0rtV?PG>o N7N](^}JyyáP[p5g.'� tbԾj9Ӊx*M<7CS.䏡N#UW70gqߚHGZ!o\H7?Piݑ7 ^8$7>8 Qld*MHm.ƹcOH=湓;�ެsgWx .84[/w$oe5oW7$>ɝVB9s\h`{>_[gi":VeM*6B[i6sCBu؝N{hȩٻyftokaEJdxK:NFm6m!gځq{+V9Cޭ<LJJYmR7!m7i [1-eC$C{5ST9MV|D9gب?|[qƼ"%'=vR~f89}YlB@r;1cyrh^I^<0Xm5tgG 3d812\ш?_F.wWw^tUg=܍a^a>ۡ0[ڰȀD:|N.u///K@/yRj!'*Z;wXGz&gm;ue<0/,! |9CN|0͞!f]Mx&Y*u26_%/sj=fʎg;~d2{}v:t-yfMh<-hVlz#Y;Rl}s ]ss;yNJ ۆ:[>] <_vKg.͍F;κMSdgosg+aH[-s`a; +V6 ϓPLr-[}|=/ԩEnq)7^޺|(UT &8sp>%@$M~@^%sU#r&7%m8z&1yqa^+0Μ+r#$e0 FpTn I.ñoGs+-+( 9N׀+_(>㍔Blʮ*aVi&==e*{b50xA?v {wa0'iVpk%+7 je9d9ﱈ,簯e9%p\+,W /eq>J,σ'󠚔|Ben#N.ey1)S_)7:jW&a+Td (*0xh2 |;Ihx:v$u8'F\qHQH}|CVZqhy&.Dځg10.ldB.EIT  x,=Odh'͙!a276Eb[h0b :\ Zq~=@2hQBNaq E·".XR A4BtY7-`)c<RXNhOpTRُ! SP&/x#Ep:৉@2NIqZ01i:NR7p* /46#tƓ_Jh^i2�JIFI_eʱxlH]#RQGim$tf5<13Ng1bO),ZtOb1pgwV@eSA(4(KH<Zw~N7Tw� H^f4c:~6-<ꦥh?uDBHKK 8|#bY7 Y2Q0·;^,!$Ū o6\?q(^i:$m83I!&->H} Z-aqPx%o?GHS(Ă]O<-|# G/,:w,5M }0\<:";O߯@G0Ã3$,Oم;S z#-RK4_ᤛsyJw}EKGҷ;hُוL`;EHN˜Xp'{nZ'xn=@cN[=SIv%rcUH qscƜޣop{ifvGz<:^/5iA<C&1p@ľ}:Fe8M e$kCEʺQL 㥌h]F99ܔNS@/Kl6fQt.R7 ^1ie|fx@ 0mJ$OT:z%e@fJM/xzEvSؤN/; fF2L$1a�#ʾ@-wLi<63*:ܻtpzHF^TK.Lyfy۰=N>ĭ5_XoO'L %s7 endstream endobj 21 0 obj << /Type /FontDescriptor /FontName /28068b+mplus1mn-regular /FontFile2 20 0 R /FontBBox [0 -270 1000 1025] /Flags 4 /StemV 0 /ItalicAngle 0.0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 22 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 23 0 obj [500 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 500 364 500 500 500 500 364 500 500 364 364 364 500 500 500 364 364 364 500 500 500 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj xref 0 24 0000000000 65535 f 0000000015 00000 n 0000000248 00000 n 0000000449 00000 n 0000000506 00000 n 0000000557 00000 n 0000000829 00000 n 0000001655 00000 n 0000001965 00000 n 0000002007 00000 n 0000002055 00000 n 0000002107 00000 n 0000002272 00000 n 0000002444 00000 n 0000002518 00000 n 0000002643 00000 n 0000002688 00000 n 0000007279 00000 n 0000007493 00000 n 0000008855 00000 n 0000009769 00000 n 0000012607 00000 n 0000012820 00000 n 0000014182 00000 n trailer << /Size 24 /Root 2 0 R /Info 1 0 R >> startxref 15096 %%EOF �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/image-inline.pdf������������������������������������������0000664�0000000�0000000�00000045557�14163570564�0023525�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.3 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.alpha.18.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.alpha.18.dev, based on Prawn 2.2.2) /ModDate (D:20190531024030-06'00') /CreationDate (D:20190531024053-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 13 0 R /PageLabels 15 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 842.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 403 >> stream q 0.375 Tc 0.0 Tc 0.375 Tc 0.0 Tc /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN 0.375 Tc q 9.0 0.0 0.0 10.0332 48.24 792.9834 cm /I1 Do Q BT 48.24 793.926 Td ET 0.0 Tc 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 57.24 793.926 Td /F1.0 10.5 Tf [<2041> 20.0195 <434d452070726f64756374732061726520746865206265737421>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 12 0 R >> /XObject << /I1 11 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /XObject /Subtype /Image /ColorSpace /DeviceRGB /BitsPerComponent 8 /Width 331 /Height 369 /Length 10696 /Filter [/DCTDecode] >> stream �JFIF��`�`���C�    $.' ",#(7),01444'9=82<.342�C  2!!22222222222222222222222222222222222222222222222222�qK"������������ ����}�!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�������� ���w�!1AQaq"2B #3Rbr $4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz� ��?�( ( ( ( ( ( ( ( ( ( Jm#O;Z0h"֣�Gl|п? g.^khO2((((�(�(�(�(�(�(�(�(�(�(�(�(�(�(�(�(�(�JhtsQ՛�'W_:֥&?d!ݿ¶IԕO׳7r}J)dU'du9VS>E{KC{փM̽ŽG  HeYNA -'\Ѧk/Orv:E-`o i#{R=xYQo"y9=+Δ\]:Z(Š(((((((((((((((waOVbJu)j;�מԓM%4ZI fbz֣j%N68*M(Ԁ(� 98+|uqeR qA(ڸ+:QZHem[,u=>ׇڥr'naGzmƶz/1mtx?#ck̭=Ve-H@c`(�(�(�(�(�(�(�(�(�(�()j&[$W7Gż<8TC V"wY1Y|}o3m`=� rDXY1h89gIpF 3WԺ bOo�s[?blL;~\ezXJ\RQ]8QE�QE�QE�Qx�t/^;aͨi?2OG5-^δ?ExMkwqepLJO5[ UsEh><ॾz ov謌H#6ti#3RuQPPQE�QE�QE�QE�QE�QE�QE4VfiJspFq:/.wG`g˟?Zų_Zw;CU#wpOu5?Mycz\tKq!i^IVcQֱ[' :S-,j(^1QV+ռ#�ji $9OCtb6s%ܟCTM]~gnSkaؼ?pwo+cR`4o'oݢ玬{k=BmSPs;O GJd|UjJI9$E!EPEPEPEPEPEP^ {ȴ%f%``F=�H?Ҹ h-jA\k S>뱢E(UP�*4 &<t+:(((()y'ހu51tѣaH�u_jz x"<;mze_iP+$I�֮#U~Z;lZz +'z0HMZV9rřrM6*Q+lQE ( >WK �ꗿi3i#n�7e"hs[__O-^Hd'\zah#Qȸ?>F= 5(X9 (`(�X|Ceo2,|L䢛}FNA{pv/TxH;s�UW}4W7t:l LUe�vB*6OEz|>я7+�ms:?r>5KO oSͨ^Ekn啶Ow/ MNL�hvk%]T1_Ց(msuZ6k$ nk|IA AlUk͕*ݣb(kYXWqSR f�tS}Q~tOΤx�SHeJ`6"SЊ,ʺ:LZC (+m&.5产5-X48=s^@9zOV g)2dkâ+sB(aEPEPE`O�7mz>mR+H>?z:6+H Ԛ𞂺EejtvZ Pce,-r{^X'Kg;~5XzwxaǨ `(�)v\�kn#7`cX?˧#ԨO@(�J(חIinҿnPnR)kZ١clJ�=k'&id9f<JJ4"x8ά( ( 0=PӧCN8?FE+'Х&ds:}٤F5 /K節E'ж/E`\�3"{1"�:J(ū#NRaX,?ty6.guB=zW:vTt?Qj+~ƤAqOc~|5JwW>YVQL(�(�+Nne3?}~+AѤֵ$A+=ۤ1(X�t<<cܘt+B��\Ƹ,=keΏ5hoG?edrYN=zJU%Q]F!]Ôαw&:A͇W]dڋ,cϊv)/}EWwQ@ $($#ߛی)p޴C`$M\z\v}yXE�wQEvhQE�QE�QE�QE�QEoL]ڔ�ZцuX};/ݿP+1<Q_G$O#�q^FA0GQ^Fk|igjp.rٻVrlW,7EV҅Q@Q@=6CfYbf%y5܃xH$zkkuuŸ1>wNRuiߡU; JRMk2ȇUՉJ..j-Q@0֏P_D'ϯ^Y=c{ Of kBfu#-E:H9*#6 ?;9E�מW;MÑˌvkG;(J_-~xQjԲ,Q@U$z׷-!AA[P/#_CM#fiQ^<&QE(�(�(�(�(�:}5W3?Q]5y EV`=(jD�<>:~}?פM;; IJ;™Y{J<m}T\c7''.akԔQE΀(�(͕֝p'q؎mB{}c63Z{0K^OxI+=�lyQJx|iA##p\;:((84mEuW,uG:Ycմ޿)au%C($lUG`G8B莽SI(<߮?y]z߂glscF50: 3Efj z/y:g53;\< g_}ObI''ӂlWR|((gp[߰O*_q)ք7ޖM 2"fpO݆M"T牓hzT0Ք$MB"pq%,m 2]s t}{SUjVorqtEWyEPEP2NށG󮊰|6H�yuwE EV'PQIZ�ތ:W4r4n]I =u59>ǩ WU9t=?c.'EVӅQ@Q@Q@Koq54r)e8beZJ/$mP vʒx2A^Z?oi�̐B= g*}Q2u+ʇ{ yǏ"=N%MK:WYYP#.p2b>STgeB3{T3єo 3+|0_ }[yԉ#b {F>msllrVn囙CQ\e<Fe,=.U ewR\(ejaV妅o\~nxC͙RԩC*3�M( dol*��;SxERӆV68% G`)֕(bTW0-Ż! KE M]Y,дRO>oݨ�`}kե>x|"(QEQEpbC!B+3A]`?bjWU28ɦhp%D 'ֿZ<z<'t?QXTvgf*uգΓ:td'̠�J@n�މ¹+:Hý>"kپG4CzZ^[b12<+E\qUWR?pF+}+]M9:,Ƒ�v^@U#j_Iə!~ν Q#1X^-\gkڰ�|PIi3ݐsZg" 뉜1P?xͧ.{%b[xiZ}ajn#J!;AHQOU{CUxWJ+ѩU糁O#EWtw~PI-ؠ�t?hVyOO%Gx])ʲkмs$`3$}2;74FnƩ+By`X�sS*&%rԋnc\d@VNy.?*KicX�hqr$wQȤd+O?:oMN$ﶰQsgtCi\Ji[5qݺ9j? ?*/� s9?drS��1KXKS)?ƥ_X+{L5t�Ҥ]Z�cqZ,Uٷݹ�J.!o*joi %{KTUp"%Ukzs)}=ϭtarÍe9(# (u"J'5U4MVǟϣq^>{ v5MM|gkM_lT4QEx'Q@ttB B^a}c 9T0Aqi4̐�^Yr>9_Q^aEPEPR~iQ/ncv~&Wce'v_ח|&kANد?>$K&质<?E&o:y&WnA\uq՞$SZN�XnJo/ {SQnO$eB�.GHΦ"|:8lfއ<5?w4eoN8Qu'orrrr?*֛f9�gF"2̫[N$xtr62Za~K Hc 8Ev7kyiCcޖ L⺱e,D}<ӿg%X@~_;ZJ2QE&=JZ(kf+IN*As:٥G#TU[6^2�:j�TXi04[_oskGH?Ekv"-Z`ՎEIpu z\?WMɶcIN+xZO7%V�r?b]>hTG#ȷbҤ\S++!kξ(7rvBtԬbl߯�ZzRgpQEx܅QH%/;Ơvw&QSN/S޴F-WMAּζaHI3$9q^^ �-%&p:XZNjtrK8a�,ߍ\)ҝIr]ݫ'U)]‡Dk¼X^\?ܻ;I'9䴁ar9ެeӣ4]7 [ZYydnQ\+NϡթŠ*k[YnBT{i]ntNJ)kx_@}TExi״EpBFQ K>_H�n浻W|>ex_ Dԁ]g[nAke|J^GV^tM7'+t;Fduu8`r>ik{f`<g<=G.>,RCC2C<k^PZ<W<󃹵_.d*C5of9P:ƹC@ [$}vkL^T@cQA8#WkhER�(�(Q]NH o $u# \=lh nr�zlI袊׭> /BMzxɗƻR=|7|QEfQE�QE�Kmq%W0bp}zy\`O+^T5*;][UX �W 9[1\99Ԕ߼VQEfnQE�mFt/�U+ÇXW nrr8w>z�` t?䏙α��!QEzG͘'l[B�\t^)??2-~lzȺ6~Iz}kXS\xLCUjjY蝨zuིIA{r@5R q|Ţ+A[%~^X\Xٔ㳎d$RE /StEo+-9LgV+#e*êFiEW0Q@*V r=(kp;}:^Y$Ō7h7gX}�Jk0^}VQEw�xx^={Ik<HOjM�0J?ݣW2袊O ( ( ( ( ( sVvs7e^ Y%{|84M;͝G'�;-tIXՅ6: .;uk}I)kI%d|DŠ(#;f\[$;%=|i+} Z (?$�?ҺH 2)!?8oc_WbKǏQ嗴]KåQ_DyEP\߈thGPıi@=OqrHv95fjEQE�QE�(8 M.^$\Ujhwfܼ}c?*2Wf`uQڊҼV/dZ[llރ57Wcן~>͌+>(�(�(�(�(9˯jnXS 3/.m%j9ßijH|nvMV 5 @*j(Td|&3,MWRBEQHiWz*̫nէ9`~B=ǻfϣëR (Mt߳^Lw/C+*H A զAŞ(MཱG'_4F>rQqn,)�2ik,g{GXЦ3uKrX/ 4Q_V]@((({uQM;ji^ $rs"hd c}k˱>ފ}P <?1^csR9б#vAǽz!F5~# m{D�uԷ]ffE`T瘕ٞ ד9jM?ʽ*^>{ ~7TM q1_Bm1h~QњLj'�"AG^}}-T^MI}_݊}$h=a&+z$7\w\R3Z9YKsqyd`iօ$f7W1hMU#�zM|E|8>Y+cͩjE*jPxbu"P>ku?FŝaSx*ݎG{V�E<@Y%=RQ��EbTϟBf4O�)j-R9�TIO$#{G_ ^\%%՟AMZ QYQE�iwer?ֻs^wWaj.f1 9WxԢM<d,mN9A\s1f,$V/~;*�tUjqoSMQ^pQ@Q@T[r!v%'h"#B{[~' t��܂djڽ|6ORMrt�`u-l%<<y`(�(�(�(�(+]Ծ~N�~;+gA}+KCcx?Sp~;pxi.ilשQ@Q@Q@Q@Q@Q@zևK\e?0@~۝,}Ov;nq_AeG/ysTOS:'NnyAEV@QV4۫ q? ҝ)|WXlC0�k8ic¶*(P:�+dW`0;a?^�^b8$hi+ݣEZEWHQ@Q@Q@Q@Q@Q@ne$j^$*:WsYdsz_;3'Vz8Lbh泗dɴ#T(Kj%%x* ( ( ( ( Y;8]vH< w)bۢT_K;d 9>֬QڊAB*1m/\Uu.G+A U}+05RרM" O?G�~MhQz 2+[l36Aݺµ�WJ:JV�+` ( ( ( ( ( ( ( ( (!+re=kPK\ȟ"+mJ;ŞtA#=CH/ZN|JC crgu=UʴQEyXQE�QE�QEY{륉rVoAWJB:LtߴKWh~P{𮲣%5T` } -%SugŢ+(�(�(�(�(�(�(�(�(�(�(�(�(�(�*9#IPe=A))4|=e`:4nQԫ z%Rm.taWaR(cvz7$U j*Q$ՏZHW (,URFK] P̭˟Jȼ?κ:̛{6;#QE} Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@ e # 2Zv?[W6# KYJueM,顖CQb*ޓ>RYx&0E:8Dp^%<wwKNԙ"P�� uWѤ<Т)QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�P( ( ( ( ( ( ( ( ( ( (? endstream endobj 12 0 obj << /Type /Font /BaseFont /8e0e1c+NotoSerif /Subtype /TrueType /FontDescriptor 17 0 R /FirstChar 32 /LastChar 255 /Widths 19 0 R /ToUnicode 18 0 R >> endobj 13 0 obj << /Type /Outlines /Count 1 /First 14 0 R /Last 14 0 R >> endobj 14 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 13 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 15 0 obj << /Nums [0 << /P (1) >>] >> endobj 16 0 obj << /Length1 4812 /Length 3003 /Filter [/FlateDecode] >> stream xWkpww%˲X,;-$KK+ْX+c+&6Nd[=HRhK`HtBxIS� 2BP( 0L`ZB`R)7=Z;qs|;ܽF!$E$B/VX�)pthve2'9prϰM ~__c ryط'qA7m1]yen EI14rWJnB"M%#2F^�btˆ[L ;OeH2Y;К\yޭ޾~#:{)D(JH[3aS 2::ج+(ЙUfBt'GvZ&zA̓rd3d@lp`+Vh̘dQFf|/Sn7Fu,}%{FZx<)|eI ٹ"fzsʛkUk^︼c]Mv/⢞~#Zܙ]MX0&춼fLN[U6چw)xrWwb],WC'̓ǿk XyؗDZmmؿ:t+u+Fx,}Q'#Bz 8nV2M]]32N#h@m;S,Ȯ)ֺU1SN)UXư'%6oJŸaofD^8ˤ^07¤7 ~!JB,X,ĚaXTlu+5X8m|:ṢfUԆ.Z{MK׷&:{5LJ˜k%X: FPr\?d>Dk/"dNFriշ`; Ǧf'[SeW7Vʆns7fk紜ni,~tvE7ܱkg 1k%j,{Y;E:Lu?7xhxq[xwV@&M׊QJB!ΰ6v,8ԬcFeN9Be)ų4IgGN۸yUjlw|}b'x*.Z>Hjxk|!v<><u"\ uʳX% AxN}ֻZGGrn[vOϏoPFQE}<<6;o&tܒ]Q۰NR|A|ߋaE`d a'͑#g+%if6)Iq<VniB;>yͳrpCwI~컑4SQ3v|iGc k�BrXs8X&5>نglH゗mt5lK~s]}ୟ2m{~v,dZ"6u4Ups} lO!o"QJ,me>IGںwRTZ8Rd6RsޛU.HM('wSo:n69J2RLM1ƹ| 􈖥92}s1\?/q=ۻs}z=߫ #{dÃ�)E9?jjJO%)ΟUP/uq1nԠPMUOB߬((|R)JCx/#OܨH,&ɯ,/brfr6Z@P\|=p}8{ERL=J2qpY"1n4JUmXY M| 7uƂQ#{!BFSl<X*|n:" MOpآ2򔶡f`akSzpXch*Ov;w>P9+tNXGѺ{ChAmm7sONjjʍ Sv}x=x"h*S@8@:;Ha-Ϧ\$tNUm}Q_SwDVW;ٯ%mLaԀZgnZ }3TR7O hQA9SI˺G5c-U&N#8'kGs>D .,[',71*P|_!l>Ϥ/Qސp7bihNP2F}h d=.):*U!Q-dK/]:}Wki^%>݋EEVH1u'DS2,A(>DV:wlԁZ O ?~ .pd{J. Lq>!R_c@ ze_ z" z= gBR\()A/Bk]Ћ{.a@Zd >$%�THA,DD"3EKqBjCAv5٨9! 4JQP24Huxp:,utG4:#  P'; r(YH F0?QFAB~6@ &Ҫ/;9h2JoǃSpō¬(t*˦Q P7&gc�9FiJ/XfuSM<iЫHx"еF$`sG Pb [՜E o:}t2}::e.<Q>%HEj 7|k>V.«b!VKT$$!c Iz|^2;̬%=LL' F^j`di6OD'4O13 cf�5󩘄N8M̰(o78ex}c1 ẅ́md0n+7a;x N# `,dO| #5b1k&V/II>'9<;mkj@2^GƧ͡4goKC~}˼2`9sv-4g;5MYae?O?|m(d?mN endstream endobj 17 0 obj << /Type /FontDescriptor /FontName /8e0e1c+NotoSerif /FontFile2 16 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 18 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 19 0 obj [259 333 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 705 1000 613 1000 623 1000 1000 1000 1000 1000 1000 1000 937 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 562 613 492 613 535 1000 1000 634 1000 1000 1000 1000 1000 1000 577 613 1000 471 451 352 634 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj xref 0 20 0000000000 65535 f 0000000015 00000 n 0000000266 00000 n 0000000467 00000 n 0000000524 00000 n 0000000575 00000 n 0000000847 00000 n 0000001301 00000 n 0000001624 00000 n 0000001666 00000 n 0000001714 00000 n 0000001766 00000 n 0000012634 00000 n 0000012799 00000 n 0000012873 00000 n 0000012998 00000 n 0000013043 00000 n 0000016136 00000 n 0000016350 00000 n 0000017712 00000 n trailer << /Size 20 /Root 2 0 R /Info 1 0 R >> startxref 18832 %%EOF �������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/image-multiple-inline.pdf���������������������������������0000664�0000000�0000000�00000106430�14163570564�0025342�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20190915004554-06'00') /CreationDate (D:20190915004554-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 16 0 R /PageLabels 17 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 671 >> stream q 0.375 Tc 0.0 Tc 0.375 Tc 0.0 Tc 0.375 Tc 0.0 Tc 0.375 Tc 0.0 Tc /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN 0.375 Tc q 9.0 0.0 0.0 9.0 48.24 793.5 cm /I1 Do Q BT 48.24 793.926 Td ET 0.0 Tc 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 57.24 793.926 Td /F1.0 10.5 Tf <20697320646576656c6f706564206f6e20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.375 Tc q 9.0 0.0 0.0 10.5882 140.589 792.7059 cm /I2 Do Q BT 140.589 793.926 Td ET 0.0 Tc 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 149.589 793.926 Td /F1.0 10.5 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 15 0 R >> /XObject << /I1 11 0 R /I2 13 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /XObject /Subtype /Image /Height 64 /Width 64 /BitsPerComponent 8 /ColorSpace /DeviceRGB /SMask 12 0 R /Length 2456 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 3 /BitsPerComponent 8 /Columns 64 >>] >> stream xZkG>3+ Y bBH$HbL%UhY2V-�CH4وAŐ!}p;39=;wגּvgvfPA4þXoŒ F_~we^\WR%/O+xֳ}LCd`g>�5Q̭ G{`5@X`BBpN.bȱ �,70!3$c =ߟݯpS^df;2.[>Ըk>w\_2vqӀR "wȽ*u5@?dG#�.(Ӽͫi^YH7�)(>lE- xmY ?f)a@ "{ˆhs,3[ZR !�Pܻ[2I >B>~z02HGO}n-GOۼưP<H Y Esz]48}ۿ(+5q/QٸAn\a47�϶.wG]-0ɭpL 8!b"S6|jKJ"+g+�[d/$ұOŽCwM1a`ڇH!B]~L̶o${ɳ0C 2F |k 4߿ BuuwӫHmX P ~byH/2!xSreHxSk@AI[:ZpDӜU  / fǰ=<&A6m Oؕm,J+U :B�^=$W-8ٞĕ^e6WKVNK9Cu#OW_̱p;oC_;93 Xb<wFPhN��1/ŀze~+=*0‡"U"JRCU>H,*`s*'3HWRwJXCrf`0Nn&&,J//8PrqtUªJ9oWZldRA jڻYhT.uFӌ;ڕ TZ'?(i䷿p?.Y*) )ݭEsR\G^+/ FsGCHB߸i1s*E8hW.<C˭UX(�8! ? ^+i\жWWJf|dS++آ<UDy$fɊ{Q2g.FGD{Ⴉ?fWN^\u֕n(fq4Ħ,4&q_iBb :O=9~Yws;܍R{"$ef~W#^%1 IZ)�E-_VoXcrF�r/ a UX7NN"8Yj;Bw.-x,|˺_fͽЇQ,'Ku_ސ~Ę0t}qɕmQwEr:UH: b+hZV ͡p_Qu} 4&"ٗOgnAUh\�xH0\TB ݠ1~b42L&gkoG:1~ MeҮz|Gܴ>vG#Q`ڗZoD6h UᱭC+H<(:Ի{d?(p2PVsﻻm8U{6~EΖFT1QŁ [7Xd!$8wG<GO{_QsUIj^8/3RhF32^ܩGm]OqM\<&f v$5*c;AOTV9)ǒGIU*q\*$D*tYoĕYe6Nğҕ,ۻ:knW uj!@B]ttu s ej)tdG$;?(K>4EǵV9^*8&ߜ"荳6״FUu=ٰX^:?巜LA/(:)3G~<*ǒ0]cK,ͰB`U%,C勅Q9 +rjmj3(Ɗϵc~S aN}ULS( Sv2/bpyN͙||YM<'t4wUsԀ{`}(BV/%[:0U"%Z0ä<̄tHJX1zCq_i@7ah7<%'Eɉ{ Q-&qcN ʬr& WΩ+8\<uKWJK?!c>n; k{gK endstream endobj 12 0 obj << /Type /XObject /Subtype /Image /Height 64 /Width 64 /BitsPerComponent 8 /ColorSpace /DeviceGray /Decode [0 1] /Length 491 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 1 /BitsPerComponent 8 /Columns 64 >>] >> stream x1nZA݊S#A.‚ J� ȹ!<)9D Lv# o7R,hB(29p~٨/]ϲ۟u[Lz< ơ{OP!e[Pez?r5CGKXzX5{7??yq氒޿ 6RWr~&?Wp^MYK';rmL09u@/#  OUkeXkrP4)�#8z[p`S !~oߧxڻ7$E{Uw>A13j]&AhDt³̢qv]ǪKsp̧Pq̇0w|̛k 5pBX]eǃ n&/OK d0n k endstream endobj 13 0 obj << /Type /XObject /Subtype /Image /Height 240 /Width 204 /BitsPerComponent 8 /ColorSpace /DeviceRGB /SMask 14 0 R /Length 19044 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 3 /BitsPerComponent 8 /Columns 204 >>] >> stream x e7U]}LLfr$rp�ASdA%x*ʺDPs<!#r $${&sOU9jjzyh:5u~>2)2)2)2)2)2)2)2)2)2)2)2)2)2)2)2)2zc}/]R|RVJӦeiBd$Z&A6NX[ i"˕ƥL/HQ\mýD$P ð, U7)Urx mjd R ' Ӵ@/Gd_ᕪz˚p~>'06Fiw4 <SX5~nc>\&" J+3[�k䩂)Yl6Xmۄ3X?TF9|@ `P( 3Xf3T*�<G=Qp6%aer$dp8F#0H0ӧ/g)elLJlT™8E"PZ+ Ɛ@N>8 3@*'>3g`0�`2s>p�CE]zyO4@aԀ\DeUf@VzS Ip@ ,@BU\&Ȁ/*{8\Ee\04FXY-2%TFxl6$ d2�8Vyc!6 rW Ni8 (KBeCQN@탬 �R�pLa2iߏ7ΥAiՕ`z�C@cj&ڀLU+#lo) XEHQ~�d96U?j/<[ ,a1=[U8ֲXxC ӕր>48AV[TKRqSU_2*蠎}6`ĵXjjJJ-5d? 1~Iʱ F"h Rʼt_*v9dvIFyM4 LGөDJEQZ-kdw򇩀Ȁl!J)=Bq@Jcy pVZKfY͂lv)^Ё @)-T3-k{@uꢹ\Q$gdǯFY#1 2 :#A\Qz#?1`/b sG\W.\1 RCWp-OqJ{{}&T _dBte@#pH'+^L�M&ScJԂYL6&ys<�k3C7sb|YN{? I+'on7p{Vr0+kjO׾ǁr4CC]{olڻwW34-[z�f xZ;vʫc/Y.&5'˗~\PX<^0A\.F:&/)Sp|HF.&E9s ݭ[lҗ+::첏RKxs4>ASN |߹䒏oOE$d}}pΜ9~P_bSN]ri]2FҠmԩM ,x뭷+#5.K,wSO=e@ B7) fV}}Cºx?ᏯlΜXg�vE{ 5ahI'.pk߸b6;;g}~uJ2z߅r(w|ZW‹iYrRP(mxo=Iv.N^:644N>c}uם{}[1:;;+_`(o5k…Ο�v{w7{饍ӧb_%7VRҲyqW H$ >i֝˯z[Yz݂Cꯏx 5 ChiӦz9nڴrѢE/*jE[.Lc ^z &Pg`0}|r}}Jvٲ� AkX`X]CC}"%|k}-ӥV0\Z2%A=,>d7; l9iӦ6446�hV>j֬Yw7{N+�롇e ei ^i^?�"/FAH hmme3Huww$a;*VX -[ *d˖v}sxoN%L2]{mo<9xэF25bZ+( [T�¼O?yw �|zC먐V۾}3H޽[cNl#f>k.H4&?@<�N0~{{耍wqrB* t4d0(; :qM0o~3\l,ZW>Rώ?kFf̘>l}ݏAly W6d ,}�ه>AشeoWV n*.]:2}rzĪ3EXaC]!ƀ8ygl^{-�\vITJq{Ц}IqGhf[)HV"ٝ9iGZ~#~xwGdFxDY/V^yURt$ol\u7Œ 8;֞ntMmxn~Y'{c>׸4#L𚥶A_H$z�gVog!H1dqC,[kj wڥ3˖-?'qw#ZY#%ʕ7ky]O30�'Nu\8Xcdi&Ki vߒ8x{J<ʜ߯v�O>dؔio?ȥ~bDP MO'�2;54`nJsf>WW<_ҠiMl;b̊ܬ6q!:XGvεQS5҅yk|UsYh-&5]hZa }RW�^ =BTPk_kZg?dvm淮߶}ln2D"GN\`$/�"Lj.@&aAAcǠG]*O.Z&9ז.49e$@VҶb<"rzkV.p@MRJ9 b9leHuљS{.մ�BA}grń$_�8 < r䔕l.μk?!:7< 2.<>xNl A>=*XrDOsHݞHw2T󘃊>0kY]R"HR̛*_1L (%hJI)e F2Ɇǻ|kj\LAzYlXmey4�]󁢐]�0$pb`Y�/2f20zs[ƘPP{?^F$ 2o"fh,�,JؘY S,Rәhj񨈘 .dkڰ P_c_r� `ei]XPjfȰiaXutM;obSs L[ c "��pR:a&0KaZw7"{*)Q1N2&9t _Lm,0a~rX בvƸN.2ȼkô;S{ JS@i8sN!)ͶVz2ִELASNɔzcgapP( fxrLwfB}ڎ{XPlA6JG24jE{. ^`Y>ٽnSdCTF#0i &mѝw ?LPD #@ Mo8AE-C`Jk[C̙d]|IHAfs/ȽEN8aaa긃>㉮?Ȃ`4mhh:iʔ)Di!K?g(rjd`IrJġk?\LtFec\ꃁ ӗeYַ^xftJCPf02#IQZ91kuK3gd`+E"a1;By%ZhsCh[(b.xCǞ^~S[|1~|joOٲ;Ւ5;d8 i(a=u\*/!P{ !{"Rt:F#8_ kdyL0{lTF]U9Ri GD @xXD ,PÀ1+di4 J9L:_jx9sv*.Іq#3<G?w6�2�XOOwggg<4V@oܷ{ ͜P Ci2uԍl*b2zi0|*ω1q1[練W:@}C,+عq xLZ,VY( Ң@~9N L8Eu 7Ms Im%:]Viɠ 8LrHj㵒o63c@Gf( 0-qmXN[<C9ˮH8cNA!�-[{S.p 07{Z*] `^q:sӷ]-~hT1M OvEq�Md ÷`\. ɌY-C7^Z]66$&2adxq"AZDR9~21m^u̝,L[b{|%tgg;5{|'>e?Af: Otdf�M6YQ45u9@ EJtѸ< {Mh~h{Ù~_@&gL vttn4_aW� �8V~͘!U=Sd_`.0ZZ` e'ӏbϑ@e2  ɼAN9Gsm d5XjO<cQ$01u c't;PZL2T𞴢ؑYgkj?+?Zc2Vdқe޼97<W7�dd pi+WRD[.` Ne{ʴKzH~anZ0 /ühO}͚cz\8"ـS͞={�J*Y:?iBgNor`; QdA?|Q^xY L>)K뮹 hf 2`m ;i I]>~C؀_V>zYd�~?+x7cMzE pC]-k^‹\ 0:w(/w֫Dj d!]}[n. {!b̿'jxfl9eѢEw_^(Y :Pj d&kINm>?{zp ]ḵ¼ّP  DˬY3e4L|\ 39".Y駟䎇\n Bd Zt3 oɟg~ ?Viv7Dj?\TUgkh,O󽏼 cg~~S~,ǹ|v#*g&bNo}W\egh M ]3$e<X 6cyi(o^^fdlA& pr,ߛdR͞g2/VƟ5aҭCU <gXێ;TLfj`⩧8}J歜O9=C(ͯNl?rg c0|+0RF3=8zAlْW_w8c"X]<Yh+ͲrknnyQeQm3Wu9rͿ^n]Nfd6@|J1E)q ,X=tņ o[UEjp˗شdSTΪD̡G rbqa3%SArǖpU5>O<ܛ빬Pfo\T 4mi`_ב2 >Xʄ0OKG}tI OeVx!lYU^OJ5o'ƖԩS.]<9T3(XaӢEoVH)x?y|yk?olDd̃gd`Fz<a;EM}u&p{hSW_1xLń9*QV1|pόfʅ g2/E@Pr!OK _GX9Կ?oW?IbellLٳgg2N{7d*mR9+/_Ÿ-uR-4ŏÿ0diHZ Pa^1CdyG|)d "̆[nit?;)D@BrS=%7ycV,~eyh-e!;uX !(DI9PL"co]57R0 ,)!]֫TRFQج6 c{XdEp8L#G3A mU,Ƙ`hѿ{E%-oiyn#_Sl`6lݺ p4 7dԊzT~IU' nDwo+X]jٲ7|huGr $q5}[ OxkVy(AkkQGk׮GQ0 3# Ktf+Fz_W͏>c ]x$;w섩A6{yn=enQ_ԷKrmy_6mj ` ENR(zA揍i4C <);/3<;G0 R Уwp,> dɒ%Hvuuw̘1=U40FG7Ut%〰H$s@ϝ;`5vEI^$(vn 3:ݻb~ qJg'zGww7m+d̬J P9lbu)S^}DO?}*XE aXK?~(yNsZ {䑿 7@RKK \2Pu,Z*ߠJ峢;i5rէ~a##ayܮ[ONz O3gjdym۶͉hg'C_H%LUd윻śx�6owΜX@$"}⏭+k�Fp`x{}y_ße#�^@pznukL&|1 $z^ZbxD'~J xT@9sPVcc̙`cXVXxzh {C*VjVL OQ`˯7OoS/XSsΧ1o}ONA/+FclgbX2X,L)ͣ1T9“>v̯BaWkGϗ^zy3x搀-{zzyg[4;Ğ<LN5 %sTG$缥e ŗ_AK.^v-o V>>{cmڴ ne9#p`qB2{Lp@]£omnݺ a#*H_4/]qy6-s �p�2SФ`[l%_!,TȨdcc`|itz=m`/}J/1AIғN:@O$p<``ЩB{w#n6 =ܰF/U2x!]iFH׻(F\kZV}WN6#!={w O`kkW> އ=XeGW]G6o{Ն!SNٰIQss eV]]fw: kٯژ] 7ily[qꩧ`^qO؜1sd={;DvX`RUL KV07Xj۶y}cTZ:@y`gMgg'W:[xJzRELitj_ь{w򒸠I/%<hud \͒9 wvv$76{/Rwpx޷`RORbŊB6K$z.µFsVCKhfe/(> aRft2VeT DoXbmi U akl򂘌OU8zU2nJ0a-5k455^, /d3.&^]ƛP +tA` 8uJ7.2)bɈdA)ooii 68҄>vȧzdQV?577o^ϭe}F$EJSdkI:$&}3pyzꊟ]ʬY3UnTnW05L֧Wƅʚ5JfY66D/npeX9YYred|=Fa;T,3Y'/gϝ;;ACYl1`Ced:̧3Ȭbu0*4es)#q-Ovҹc.]66 lj-گ|'3 (x"Ƙl^^c7}ݿ'4~p6l#x@_a0iҳ1(ZOc0 軽V`nȰ khh eYcR߂sLo>s!/ éKvH$vj47,WÆ!K`2dQ2JzT&%Jx{ͩ#2ko/˔)Vro˲H P&7n3fJ^C6ޥmq)2&$ ( H&D2JΚq ϭ c@W *%?W^CN �t:O^1A1(ȦNEL&3kI)a]]`s�{86=Ѥ5؎x<v/ iO'e Ǝ= wR#Xq,^eHG1coe]]h 0xD8M(tj)M<W*LOO0:L38e{t~_vZݛߪmH8d!x548EȀɛF@]/Pz4N^,kRL;fDGxy{[32κB#+:ɮ]O�tS TL.Ha O9@li immyf^4»j ;>Acgr? û}N(^ṚxRX9(,=7�x<6w={_}աC%J7&+Gj|Ҙ(MS"`H#hECY>mg(wdΝrr9~;'f۔D6lx3/O6Ͷ-00♼t߳<Y{onuuu|=+S1~ 㻗 Lx #( Yq$׬C;PI*p-9<A.!~? pC?i0G̅[�,Ӕ/Xt挰) \nx)ݐX#ujye /$}nḿ &ڹ ?={vOx$ӲJ<ԃHA9G4?Nk@[mY'b*`2Ƥ\V:aupDDB2hPH uU b̒9Ke3"|YVobd}y睋 8I|& gzlL"hj8MJx-3=LoySv#LLB&uǎjj!&?IiKfPSKhK/=͛w{~RŦ_[YC&M6# FFseј5sΪp`LlD`%:I=M{6S<+-e,kI|I`/æ>uNgGOҏ=$~O oo{&40$Fu%aI#gcM$<+-@-Hߣ{"i帢ʁcnt F8W-i/c_ǵox0gƟl2=w]Y1˖`GNsYFPYv[ŶeK�`]Dyw-Ѹ.C=_xnȞ.*q2d2v4uR0 U?|e4Um4*dVNZ`f֬&t%gE6m/:Vg%*,czީ:\z@C5oW?ޮXnJ*@֘RZ>$%E+CG,?:TK-c7Oo)J$)9[»-K-Ce5r#*\a`~{uttuu%ͷ9>l[^ǘ9$&EKAз#MZ8*h`H i U&}같Fi/#g5ۛnOCmdGؘYT@碔6E�cKSYNf 4ː2%H(?V N3B,kz\�LTaAKbL_W g:[J5˳B @axޜ%bQK|']֬9[o==sN ]5Zļ")|s164ʥݣ Ef#Gڹivgg [¶Ѓh8ӆ SpZϐAñ49xνh^pW}m 8O~| C1<&~&{02r譜Z2WQVug᫗<y4J= h*aMW&(2SLe* 2eȔ &FSb2In/U< / X\pWFc]28m&Gi8[ָ^4Zt.Ϊ#1!I Eb\_3?+@PLpX*VˆpH >  ,`"lr_2z x ,ue]}8!A<!ArEISP]]0CML A c;+'J97ƚR!� A ,$MzB( !-#`NV?>4/Si'�X]pҠw{Yr+VuUX<1(~YdGDJnj`o|p]~sycM")"%Ak1J)zwJyaQ?&+v�&|'�+$XE#1ÉbQVNn�~C0,.<E;mocY[@9Nd˸b+ g Ż]x\^ճBf ։򓧆n<~5uz0X�~ǯ)Wȵ�/%@X� T\ *)wY7K`r9nKhj4'un@ zꉲz!,H+�I}j}mo2<WeJٶ&0f`yMdFm߫kw7Qw\W/ C[4q.Tsz7&`T[w*p:Yfx~ S '-GG"?  XCJ;bz_?~5b+"wS2ciHdL�,CΛ}SnnPQZkCf ӎ9{SNrs@6(p)k SNVהNng<刟 3F8>XF።{rmmƭ~ lo8"jisCҪycLwv}qeq 9L##ȯBRIhm>V,fCHq6 4ZTI!}9"̒^]3DOҚ3CΘ1U{?ڵoֈ>δrЯVKDC0T�B pP�\~B@hؠм6a-#QcK/d&tBsClZ /e4"Q0ۆGmv 'mݺuR fȳs*+uѱfn8"`;10J`�3#z.f|9$I@)x}+XYShHN= p9f,์.Ȱ9#໕LDJu`%@ GHQ7"@,n@рFu `WtRʵ^uyohjk>#f<te 8)6y"+8:3sC@]8"짭;xg+{P\6R・;ZÎY@X;x7 `N?Qt9~ᐗ3r!3~yh8d\W]HdRaD:)Et8 DŧipAmٲYLmeފ,l ?3ߐCa�S8 cGePzm/"M|5 rT[V / `iCf^z; 2Ψ#ӧϞQf=ςe̩(/7Y5Mb lΘX[dZ~ E5gSƬ'y#e'096͞tuTEg�*"ܯr{oϱ Ƀ3GlSnf2>#ơ a#/BN2k+B6uMFvE,D̕/<L[ U9Fv!˯WPb-w.y-y',HKH7D5Ga4+ LTB.'- 7dƽ ЮʂqRah`#g,>w84vUq{;L6XX;sMAt],PBS{k%QnEsrwH#n#J!~b~k2)AnD�Pؘ5#uS%POms-]p3up#4K i6sJ _?z'>y[K;uM.j_wS]c �sUy&ek"UBiM3?n|"BhER9AaJ7U$\G2C i(5kVb#-J.b/쓛6m?æRG9)&ّTRPu^<GjǙCPoխC|J3d,f46.WE(&UjN`FY0"pe׿ P1Yss>voca'ܔL  _J@`bzXDALJ7R:xTFCW[QQЙF�7[58@ ӟްv1<a~۷&^U([\[[ʬНvPF+vW#a8s(lFi�ShW2Ρ\WWwg>Sk_a{Mgq[o&UǤ?/s@/^]GȁˆH[jmLF9AiZRuҲ?9{Qܳ~y2Y<g>5PL4N^\S J(V;9g,BE4Kל p kL.`i#ymGJPar]w}% wnsRtK+;5hbWŠ\×mY8D^08HJz5C ,8I7RT::hQS{864:|땦ԽjZЄgiys(,b* �O QrYEk`U Bnڛ1.:qѰc($##<3t&K./'>5X (Twjd $LYT@N6P*?GY';dLF2v^Y"&lTX A!cEa>,8qf@CBvsú*im۶?4h{4iN X*WÍ ,P\E.q te[Y  &TtZSv:8Si]VdsvbŁNT"(̵�3RXP,ֺv1EGqcmb8]8ed-*ZR 'MchE؂iC TNdNBY�%%?Ł ;aDNsѻ)x# /#aqPlXXOOW利vF#_b\n6 Ɉ+^vʅơآRpF&"J^);w+T0`LZ% 9ǹa$ցhOWjEr+8Y*l Pr _\j.2W8k+ 8U R,qq xB,.XdrB oEvQe$n�YI�J pK! ل- ^Ru=Ԁjq!Blk<Pٖ-[¿2u+̴<R/Š:]c[h# q%69帓68+t=lN`crJx.2ٟSn;͍JƔϜRNSjd8ڕIgggYOcƗ.xpQ8|R缤�Z}%sz+B͈ڐ-҆hFbꆅ+a=QRs@/)ape4yh*$[s Diu ~,ӟ/Zڃ[I'Ï馛'< zѮ^( /ܡJEY0gu4\P3TWBu!n Kډb;P\-Gq8 ]mI #(ҰCey�9UHu"g3HSq"E-!f7]?kŊ'x 'jyH$xos{5퇐)1{bL߶[tǕt{WQ GYXH92ʬD"cF.yٍ#lO.֝$<@ĕbѳ$܀bE@WB{h)iw:6 /lUW]p1,_XtK,M/tXF|drxkX׸:Qz qhb(ƙmJ*vA8HA>̢#,CQ{4rYҟa l2lTڗn,P qR 2V43ߘ]it{8HrHƹ?#҉WƒOSڜꔅs;HO`3fDX,7DQ+ c :CNA;1R{O*V-fJIFcD]  <-\&% 9z^ZA À, fYzFsq<Ùag9Cl(8{|8iM qoAZqu(r-isPso>ڳ)R(uHH:@!O#ؑZpgqU&lq$~Ae%r#b*AK05$Hl Ԥ--K-rb) d<lBe�Oq_n@i;CrkmLrJJvGsĀ]S"j*kJO[GI]o2Kr4c:RoL0JdAL}4U$cU0|OaTLdS fB"Db)ڕ(�Lp�|ەc?jȜ5ݭХ@i( W|GǤו.R[T!1 1МP;kg9H10T(9E#xBpɌ3_hwn*~g"T(NEm-K:s4R Eπ47#襃Nk*/ !_C4Wpbԍ>JrJ,f8 NNKmyپ�mOJŀ"xٔ KKq>oՍP}gSbV36̵ plP{,5%73B ğ&:7*ҤBqK5y!!nE�^-ݴ?΂Ӝ|n9U" vA\Ûghppo,搽pbdPQjFW < 4iTߗQ JxKSA)lRA)2:P-j 8[V<\% JPlSo7cМ2N^EG뢺j@) 9NQeEP%`7 BEUc XHĴ&amͰӌuܰ>pRK,C$x))vgB0A]&myխeoU\?zhxmiH t:i<�ӛFVOu~jye;S m25R^#Xj¢b|rxjsI[|vR1;=fN �^fVK,`JLT“Sn�6X29pHdm60q XgM NU*aQЛF%$w"U60IKhzl ꈰzx,[Fzƽf.^m%1D_ Igú7SV8&xuxM�&<6Y2`˜vcZ9"3oX<M>~n^Ho9L[WiT%%_] (y숮yN :XdrqSI'L gi*F䑥W\vQk �aX-Hѣ:SbsjWw!Ud9$`2%oO~򯫴UѐXPU]X0ZS39tTsS%{+8+AE EQՕ|ל-F3h�eJdI]ktw�қ΀ T)&Bᶐ9j794X)iԉ=IՓ у=+);⎧�vyUn!䔨 S󘺐 )x*b.!͝s'؎siO!{HZ"eNu1B k?&2*D+Gҹ:Ob3p !tjF/WpCJ7fk{x9"Ma]IW!3)qMZ:JсwG/f5H@8t4j#zê8Ci'c4n E* ԼX &\ĕF4l kmmNk UPSL^q~ps5'9V9rnHd7+%Ð`e2'1Y_ hpm>x<p2FH�eez9Cɩ9~mE 2>S/ߙrs̊ p hWE] >.c kRAFFI9)HceFtW5 Hpn8d0 H3BP@)t␬2M =okL`_TCe9A "i`ԃDaq&՝.M1p9L$Ӫ-ڼEɇ#yઃ4#bxU|$<}dUN-d\y~$CLEV'[a><%tgF҈dQYu C48j8 Ҙ{ b̛[:}77STvt _p2cQ2N;*M><F4OW)6piPl�n5zu%su uT%W/X\+c e 8;+9³K!"xUe]a,=ڠ #A0{9,Hi eBp7Kvyr٩AM Vm'nHQ"#@hy3r Y &C*|\kL9q<kM5d܀DH$En;өZ&XITjBR—K{x |rJXեf<9g-<E'l׍3TQ ΂ |e(P=o5z|u |+M۰m(i9+&eR&eR&eR&eR&eR&eR&eR&eR&eR&eR&%hx endstream endobj 14 0 obj << /Type /XObject /Subtype /Image /Height 240 /Width 204 /BitsPerComponent 8 /ColorSpace /DeviceGray /Decode [0 1] /Length 2902 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 1 /BitsPerComponent 8 /Columns 204 >>] >> stream x{P<rD*!yd4`Fkb)ZGmR(֦&4Q`'iLڤƷBѩ޽wϞs~]o_yYō7nܸqƍ7l:8jd~];Z[O]bz ș7ᗛ'8zC 'fS~oʛ:]R/1KWO|]>bb6Lggh^EL�<¯ڇy]ZT'ڡ|EOdBfk")"/Ͷ xq/n#.ᮎEB\-�ͬcmF]橛$`G񨑱n,�n2*�dP%i/`�/ih]?P#5cH̑LiӦdHEͲZ,&#u3}ǀp(g9"3!*�߯Hwl V2Ѵc XFC&&h&&h?LL}H1j2c y2a bGfOc3P2یGm,@1W�b`Y յdQ("Xf|@ɸŸ%;Q%s:'iDsgƀFc!oF͛{pbnRPަC_-iί u a~$Aqj81#:8Wjی\5g4L'pbQKw;#}3pbک+816d,ipbXw6\�&8Dlj8Gˤ3NB[S3@6[l N d7&ܥb({z281Ţ\E'&|yi['0n>-m j.UYSXY?ȯord|1%HLh}5˟4Ĉ&mVp&ٛ<3e_pWv9C/=C);C�/J�Zd%cݎ_`쉳Vyv م xA܈\2u9!(v5�\'&^sX֞~ۉvY_&3}O+ 6[dg͙bU%WbO{o` WpHny1fI %ۙ ϝ#w^Y103xy0N=DR<Z�iO*�ۋRfJ(7y@L| ކz+5ekM]sJ<dJQ #_)1"Cc@)\ 95cM]d+mȄ>Iќ*ngQd-'W[@K6V&2^LQD(�\3xhYwD47\$�Bi]D+谹4E>/OPh KfH6*%%!K@y3; .&8[H)�@YA쁱?]c&VJg3U@VoL�JLrj$�1{,bJ/-&)z(�ŬGY7,{;H,A=SLd"�̕!R gc% >1eģp0 gFs05 [&�t1mPg:WJFOU2m]zCjg2|qӈa'jA4J[=Xؼ=+&ii1fΎƌQWnRNev g!p g>\b6![M;�gy!&|i:3dF*cȚbƿ? o3Sig|Z^)eb}Gi.X榇'9=΢0jD'9Eݯ1EH�0!;Y tC? Og|(:  kGjI,^P�<ܨcAj�3LW=B)F$#Yޑ�;/C0k5J1_0wY)*Xpv_z�gM.Kp~s_CBoF'1/CD#$~T}I +b-?ă}>mQr129[I�C#`k652v/'1fqw=*DaïWɦ5Yj+Ŕ o<+& ]sM?W8 K&~h Q>_\1Z7,"`h\q;aLtԯbxek\T8;̎5ca1۟1ymvvu#ALKI/p 3ݱPپмZۓZ pY]_=X#67=V1d~F{}yɭFˈ҂ģo~|%o5ӛңTRu{'>Q@` £ěp?'/3A?Fa%$C[jXB'"hs9JgeOL},-ΌwJxy|ܬTxVX[*Y/ɹY$c6<G314O}/홯 KqU~dz%oE$ukUq#M]ly^[7]:m!/}RTp!|p1䧏);#7/,0 ?{BO�%﫛%e˭|4Af$Fh9pOŷpZFݹwnX62 rߗZ77nܸq/?oh"S endstream endobj 15 0 obj << /Type /Font /BaseFont /1078f0+NotoSerif /Subtype /TrueType /FontDescriptor 19 0 R /FirstChar 32 /LastChar 255 /Widths 21 0 R /ToUnicode 20 0 R >> endobj 16 0 obj << /Type /Outlines /Count 0 /First null /Last null >> endobj 17 0 obj << /Nums [0 << /P (1) >>] >> endobj 18 0 obj << /Length1 7852 /Length 4755 /Filter [/FlateDecode] >> stream xX P[Wv>=ILj `c@g0$͟lז@d$K1ɺ&$qgz&8&;m&y;ntӝifnj{L2:d2A=ꁱn;'=s}�H*PË3>CȯH܄:??Pk:0j5iɝ%6| 媩)[s^Q<>PF>6C6ʮ` !q2�M~7Gz �yHF�!o{(mə> @9ǏEhsFa!U |EopKTa@6  O@U_�jҊJҊ&_+{T+NF?'-d�4Զ5 L} zd5I)`'єZuK={ֳqFov $h"2:1t"F-dARp,U8m,m>WtiJEAjVuzݵ+؍ʆeSo]~_,~gsڶn(M}nMM1{2̄bM\"2[u|RT ֠ 9B =H>ȩn;WF==)*=)~v{BRs3U&OS[ټ˄,+*iWe]Fs -ņ7NmVQ-g6>P)%:aŪ„QysUARRAf|&'T7.>FvUrc]RG T=1#g\�ЗKgFOb8m- \+!9:4eok*[}.nP&0:MN},[>URx`eC^<e%ږ TBflHAU7#-+W ڏs-? -VXϾtBWMMWxUjˀW,BHn |zL3f!ˡ]yyцjؙwʇ;f7No66_վQg(ۜIeC~<s*a+>X\iSVVl1u)jK%e87='U-YƂƱپ҆vJtprH\Pm-+mN>w{twiAtGd(yƪʼ1hyU[[uERw!Ֆ2g2CD eV{:9o^/LYLo76l+.X[\Q ~t&M^=yHonVrn1jt4ysKW'qE&v_=~j I"<Y cJ AϜᨪ $<u4^@c0wq^xTiϮjjW^#| t#< 07: R<* bO_a|.Tj H90 fHXlОkLzl4:Μ\x*)}0�C0 6'o'cs2qMb+ J1zV zd; .)𖂋) H@O\ INՐCZ\:TqPL|NXiB&ZF~R< �+x+x" ?WDh~FS V+x4 Lz ,|G O\|k)PD{ 8MNE3nNOaް7t1B; sLD0űK! gR7aXkEd\Ӌ\ǰ? P7䛀~M1|a;ĻM,!'Dh{矤tds9:f vD>?_K-¾V1QFEFG}uUÎrFy8/L4r{3 #xGۍrCp�. vxþI?gB&<f,NLC:'FAR#rMq[= 0#ˎH0NE"&顇2Nr3IoĄL<"Hф[ #@*^5)|FGf=g1YfGGD!we7ѓ~7D#S^jA?SwHO#!,ƈO[mVLZmݶ {k>Bt[mt`[GQ꠭No^,},l^mLAo7NY$" l"V/py2p򳴞 ̆,2TS"ஏNw}Mse?ߌXb×5˪)k5҇@]}w1T rMg2F3VEbn^j+؆u m\fc/F\�;>܊0(w@>X[<Ћ-Lq{ѪwB\: 6<fe^[lI~]1 >lK暔 ~~:ev3ܗk +(sa;ҝv!}b܆YŦf#/C`$l Фim#sa1ȭ'$8|C_@o?[9{~8Ҏ7=UO2a1#Xx $tD^ǒ9VR˄`(9%(Y\rn̯fb@\Κ�PJŒTRNP'$8$x'E{9nSIbqpouȣ§H[[P�kaI qD\*&dAl|f3_Aunu ph_9tIuVkDGDZMoz{`s$/ ]3gQ%wu<u>z^0'(xuQun[E5'lFa-@g@%9M8UPf>IoL$$wzM^c]ΨIl*oyofNGըytpTm__߲G>Į΄²Nv=&ӞFRT@o`z-U؝z5V:F>2yziV^޻\bcyh9%}~!O9?{{6wYe+,hsH9HP^CaՀx>~dv` De1Md!Pw(/gl0 XƻA0[mxhpO_oOwWgjݲygS㎆*bҒRqQa>MӨU"z*u\URWW%%7 KwHn[ӌhcuM\YAߵHtr`ErRS^R.$PT=5gBeVԂeAĄvݛPYK XMĚU .-W֦%lXY,=j19++›Sʚv9SR3Nӥ,`U<YtcѺV.I̽rd匵wx};CY]#OoލDSXݻ!юׂ{9:?&QaЁo6g5Ev`g wBIr#RCQsMgÀ@wOO/a y~p ̦r,X[k-v2ֲ%a4{mYU푬ny~ 0 S4I i.E`0SXR=>5�iQBc.{l* heU y Vn%F֥*p0D> l^j['39xo5MV ZXnH>z9Q앆W&z}jiaY혃gB.t<*'P$H^'KJfu4[' #^;ϱC1:T%{h$!F)kK!D'*XښJx08eiLxNirz-"UkZc0yڻ E΢UY!`3UZ&w {*uH^)MQ<`scQu.iMPksQn\b=ktA+Z-Kw4)XHnL1 Kf3tA,H6G3a6V:ޑ ږ$rjhLN9�%6fls\�f e (0 Zob*py8]/ 1L bc(LqRϷS .'qBDjAH-KD$ MNcq$TV<J_T ː wSPz8;\/WOkc^YxW#x1 w?>q0A|ރOS9xΒ.XY&",-KhGN{/olhxߓBdbKzϴbdϢ {H ߅p6+HoCf\òãJ=*]{C_ E՗jVdj~@8!4q̂wW.B,Ī) e?տd endstream endobj 19 0 obj << /Type /FontDescriptor /FontName /1078f0+NotoSerif /FontFile2 18 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 20 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 21 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 500 500 250 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 613 535 500 500 500 319 500 500 310 500 645 577 613 500 500 451 500 500 579 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 22 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000001561 00000 n 0000001895 00000 n 0000001937 00000 n 0000001985 00000 n 0000002037 00000 n 0000004755 00000 n 0000005508 00000 n 0000024818 00000 n 0000027986 00000 n 0000028151 00000 n 0000028221 00000 n 0000028266 00000 n 0000033111 00000 n 0000033325 00000 n 0000034687 00000 n trailer << /Size 22 /Root 2 0 R /Info 1 0 R >> startxref 35601 %%EOF ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/image-numeric-fallback-width.pdf��������������������������0000664�0000000�0000000�00000060177�14163570564�0026556�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.beta.2.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.2.dev, based on Prawn 2.2.2) /ModDate (D:20190710001251-06'00') /CreationDate (D:20190710001251-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 13 0 R /PageLabels 15 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 842.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 214 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN q 153.0 0.0 0.0 180.0 48.24 625.89 cm /I1 Do Q q 72.0 0.0 0.0 84.7059 48.24 529.1841 cm /I2 Do Q q 72.0 0.0 0.0 84.7059 48.24 432.4782 cm /I3 Do Q Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << >> /XObject << /I1 11 0 R /I2 11 0 R /I3 11 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /XObject /Subtype /Image /Height 240 /Width 204 /BitsPerComponent 8 /ColorSpace /DeviceRGB /SMask 12 0 R /Length 19044 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 3 /BitsPerComponent 8 /Columns 204 >>] >> stream x e7U]}LLfr$rp�ASdA%x*ʺDPs<!#r $${&sOU9jjzyh:5u~>2)2)2)2)2)2)2)2)2)2)2)2)2)2)2)2)2zc}/]R|RVJӦeiBd$Z&A6NX[ i"˕ƥL/HQ\mýD$P ð, U7)Urx mjd R ' Ӵ@/Gd_ᕪz˚p~>'06Fiw4 <SX5~nc>\&" J+3[�k䩂)Yl6Xmۄ3X?TF9|@ `P( 3Xf3T*�<G=Qp6%aer$dp8F#0H0ӧ/g)elLJlT™8E"PZ+ Ɛ@N>8 3@*'>3g`0�`2s>p�CE]zyO4@aԀ\DeUf@VzS Ip@ ,@BU\&Ȁ/*{8\Ee\04FXY-2%TFxl6$ d2�8Vyc!6 rW Ni8 (KBeCQN@탬 �R�pLa2iߏ7ΥAiՕ`z�C@cj&ڀLU+#lo) XEHQ~�d96U?j/<[ ,a1=[U8ֲXxC ӕր>48AV[TKRqSU_2*蠎}6`ĵXjjJJ-5d? 1~Iʱ F"h Rʼt_*v9dvIFyM4 LGөDJEQZ-kdw򇩀Ȁl!J)=Bq@Jcy pVZKfY͂lv)^Ё @)-T3-k{@uꢹ\Q$gdǯFY#1 2 :#A\Qz#?1`/b sG\W.\1 RCWp-OqJ{{}&T _dBte@#pH'+^L�M&ScJԂYL6&ys<�k3C7sb|YN{? I+'on7p{Vr0+kjO׾ǁr4CC]{olڻwW34-[z�f xZ;vʫc/Y.&5'˗~\PX<^0A\.F:&/)Sp|HF.&E9s ݭ[lҗ+::첏RKxs4>ASN |߹䒏oOE$d}}pΜ9~P_bSN]ri]2FҠmԩM ,x뭷+#5.K,wSO=e@ B7) fV}}Cºx?ᏯlΜXg�vE{ 5ahI'.pk߸b6;;g}~uJ2z߅r(w|ZW‹iYrRP(mxo=Iv.N^:644N>c}uם{}[1:;;+_`(o5k…Ο�v{w7{饍ӧb_%7VRҲyqW H$ >i֝˯z[Yz݂Cꯏx 5 ChiӦz9nڴrѢE/*jE[.Lc ^z &Pg`0}|r}}Jvٲ� AkX`X]CC}"%|k}-ӥV0\Z2%A=,>d7; l9iӦ6446�hV>j֬Yw7{N+�롇e ei ^i^?�"/FAH hmme3Huww$a;*VX -[ *d˖v}sxoN%L2]{mo<9xэF25bZ+( [T�¼O?yw �|zC먐V۾}3H޽[cNl#f>k.H4&?@<�N0~{{耍wqrB* t4d0(; :qM0o~3\l,ZW>Rώ?kFf̘>l}ݏAly W6d ,}�ه>AشeoWV n*.]:2}rzĪ3EXaC]!ƀ8ygl^{-�\vITJq{Ц}IqGhf[)HV"ٝ9iGZ~#~xwGdFxDY/V^yURt$ol\u7Œ 8;֞ntMmxn~Y'{c>׸4#L𚥶A_H$z�gVog!H1dqC,[kj wڥ3˖-?'qw#ZY#%ʕ7ky]O30�'Nu\8Xcdi&Ki vߒ8x{J<ʜ߯v�O>dؔio?ȥ~bDP MO'�2;54`nJsf>WW<_ҠiMl;b̊ܬ6q!:XGvεQS5҅yk|UsYh-&5]hZa }RW�^ =BTPk_kZg?dvm淮߶}ln2D"GN\`$/�"Lj.@&aAAcǠG]*O.Z&9ז.49e$@VҶb<"rzkV.p@MRJ9 b9leHuљS{.մ�BA}grń$_�8 < r䔕l.μk?!:7< 2.<>xNl A>=*XrDOsHݞHw2T󘃊>0kY]R"HR̛*_1L (%hJI)e F2Ɇǻ|kj\LAzYlXmey4�]󁢐]�0$pb`Y�/2f20zs[ƘPP{?^F$ 2o"fh,�,JؘY S,Rәhj񨈘 .dkڰ P_c_r� `ei]XPjfȰiaXutM;obSs L[ c "��pR:a&0KaZw7"{*)Q1N2&9t _Lm,0a~rX בvƸN.2ȼkô;S{ JS@i8sN!)ͶVz2ִELASNɔzcgapP( fxrLwfB}ڎ{XPlA6JG24jE{. ^`Y>ٽnSdCTF#0i &mѝw ?LPD #@ Mo8AE-C`Jk[C̙d]|IHAfs/ȽEN8aaa긃>㉮?Ȃ`4mhh:iʔ)Di!K?g(rjd`IrJġk?\LtFec\ꃁ ӗeYַ^xftJCPf02#IQZ91kuK3gd`+E"a1;By%ZhsCh[(b.xCǞ^~S[|1~|joOٲ;Ւ5;d8 i(a=u\*/!P{ !{"Rt:F#8_ kdyL0{lTF]U9Ri GD @xXD ,PÀ1+di4 J9L:_jx9sv*.Іq#3<G?w6�2�XOOwggg<4V@oܷ{ ͜P Ci2uԍl*b2zi0|*ω1q1[練W:@}C,+عq xLZ,VY( Ң@~9N L8Eu 7Ms Im%:]Viɠ 8LrHj㵒o63c@Gf( 0-qmXN[<C9ˮH8cNA!�-[{S.p 07{Z*] `^q:sӷ]-~hT1M OvEq�Md ÷`\. ɌY-C7^Z]66$&2adxq"AZDR9~21m^u̝,L[b{|%tgg;5{|'>e?Af: Otdf�M6YQ45u9@ EJtѸ< {Mh~h{Ù~_@&gL vttn4_aW� �8V~͘!U=Sd_`.0ZZ` e'ӏbϑ@e2  ɼAN9Gsm d5XjO<cQ$01u c't;PZL2T𞴢ؑYgkj?+?Zc2Vdқe޼97<W7�dd pi+WRD[.` Ne{ʴKzH~anZ0 /ühO}͚cz\8"ـS͞={�J*Y:?iBgNor`; QdA?|Q^xY L>)K뮹 hf 2`m ;i I]>~C؀_V>zYd�~?+x7cMzE pC]-k^‹\ 0:w(/w֫Dj d!]}[n. {!b̿'jxfl9eѢEw_^(Y :Pj d&kINm>?{zp ]ḵ¼ّP  DˬY3e4L|\ 39".Y駟䎇\n Bd Zt3 oɟg~ ?Viv7Dj?\TUgkh,O󽏼 cg~~S~,ǹ|v#*g&bNo}W\egh M ]3$e<X 6cyi(o^^fdlA& pr,ߛdR͞g2/VƟ5aҭCU <gXێ;TLfj`⩧8}J歜O9=C(ͯNl?rg c0|+0RF3=8zAlْW_w8c"X]<Yh+ͲrknnyQeQm3Wu9rͿ^n]Nfd6@|J1E)q ,X=tņ o[UEjp˗شdSTΪD̡G rbqa3%SArǖpU5>O<ܛ빬Pfo\T 4mi`_ב2 >Xʄ0OKG}tI OeVx!lYU^OJ5o'ƖԩS.]<9T3(XaӢEoVH)x?y|yk?olDd̃gd`Fz<a;EM}u&p{hSW_1xLń9*QV1|pόfʅ g2/E@Pr!OK _GX9Կ?oW?IbellLٳgg2N{7d*mR9+/_Ÿ-uR-4ŏÿ0diHZ Pa^1CdyG|)d "̆[nit?;)D@BrS=%7ycV,~eyh-e!;uX !(DI9PL"co]57R0 ,)!]֫TRFQج6 c{XdEp8L#G3A mU,Ƙ`hѿ{E%-oiyn#_Sl`6lݺ p4 7dԊzT~IU' nDwo+X]jٲ7|huGr $q5}[ OxkVy(AkkQGk׮GQ0 3# Ktf+Fz_W͏>c ]x$;w섩A6{yn=enQ_ԷKrmy_6mj ` ENR(zA揍i4C <);/3<;G0 R Уwp,> dɒ%Hvuuw̘1=U40FG7Ut%〰H$s@ϝ;`5vEI^$(vn 3:ݻb~ qJg'zGww7m+d̬J P9lbu)S^}DO?}*XE aXK?~(yNsZ {䑿 7@RKK \2Pu,Z*ߠJ峢;i5rէ~a##ayܮ[ONz O3gjdym۶͉hg'C_H%LUd윻śx�6owΜX@$"}⏭+k�Fp`x{}y_ße#�^@pznukL&|1 $z^ZbxD'~J xT@9sPVcc̙`cXVXxzh {C*VjVL OQ`˯7OoS/XSsΧ1o}ONA/+FclgbX2X,L)ͣ1T9“>v̯BaWkGϗ^zy3x搀-{zzyg[4;Ğ<LN5 %sTG$缥e ŗ_AK.^v-o V>>{cmڴ ne9#p`qB2{Lp@]£omnݺ a#*H_4/]qy6-s �p�2SФ`[l%_!,TȨdcc`|itz=m`/}J/1AIғN:@O$p<``ЩB{w#n6 =ܰF/U2x!]iFH׻(F\kZV}WN6#!={w O`kkW> އ=XeGW]G6o{Ն!SNٰIQss eV]]fw: kٯژ] 7ily[qꩧ`^qO؜1sd={;DvX`RUL KV07Xj۶y}cTZ:@y`gMgg'W:[xJzRELitj_ь{w򒸠I/%<hud \͒9 wvv$76{/Rwpx޷`RORbŊB6K$z.µFsVCKhfe/(> aRft2VeT DoXbmi U akl򂘌OU8zU2nJ0a-5k455^, /d3.&^]ƛP +tA` 8uJ7.2)bɈdA)ooii 68҄>vȧzdQV?577o^ϭe}F$EJSdkI:$&}3pyzꊟ]ʬY3UnTnW05L֧Wƅʚ5JfY66D/npeX9YYred|=Fa;T,3Y'/gϝ;;ACYl1`Ced:̧3Ȭbu0*4es)#q-Ovҹc.]66 lj-گ|'3 (x"Ƙl^^c7}ݿ'4~p6l#x@_a0iҳ1(ZOc0 軽V`nȰ khh eYcR߂sLo>s!/ éKvH$vj47,WÆ!K`2dQ2JzT&%Jx{ͩ#2ko/˔)Vro˲H P&7n3fJ^C6ޥmq)2&$ ( H&D2JΚq ϭ c@W *%?W^CN �t:O^1A1(ȦNEL&3kI)a]]`s�{86=Ѥ5؎x<v/ iO'e Ǝ= wR#Xq,^eHG1coe]]h 0xD8M(tj)M<W*LOO0:L38e{t~_vZݛߪmH8d!x548EȀɛF@]/Pz4N^,kRL;fDGxy{[32κB#+:ɮ]O�tS TL.Ha O9@li immyf^4»j ;>Acgr? û}N(^ṚxRX9(,=7�x<6w={_}աC%J7&+Gj|Ҙ(MS"`H#hECY>mg(wdΝrr9~;'f۔D6lx3/O6Ͷ-00♼t߳<Y{onuuu|=+S1~ 㻗 Lx #( Yq$׬C;PI*p-9<A.!~? pC?i0G̅[�,Ӕ/Xt挰) \nx)ݐX#ujye /$}nḿ &ڹ ?={vOx$ӲJ<ԃHA9G4?Nk@[mY'b*`2Ƥ\V:aupDDB2hPH uU b̒9Ke3"|YVobd}y睋 8I|& gzlL"hj8MJx-3=LoySv#LLB&uǎjj!&?IiKfPSKhK/=͛w{~RŦ_[YC&M6# FFseј5sΪp`LlD`%:I=M{6S<+-e,kI|I`/æ>uNgGOҏ=$~O oo{&40$Fu%aI#gcM$<+-@-Hߣ{"i帢ʁcnt F8W-i/c_ǵox0gƟl2=w]Y1˖`GNsYFPYv[ŶeK�`]Dyw-Ѹ.C=_xnȞ.*q2d2v4uR0 U?|e4Um4*dVNZ`f֬&t%gE6m/:Vg%*,czީ:\z@C5oW?ޮXnJ*@֘RZ>$%E+CG,?:TK-c7Oo)J$)9[»-K-Ce5r#*\a`~{uttuu%ͷ9>l[^ǘ9$&EKAз#MZ8*h`H i U&}같Fi/#g5ۛnOCmdGؘYT@碔6E�cKSYNf 4ː2%H(?V N3B,kz\�LTaAKbL_W g:[J5˳B @axޜ%bQK|']֬9[o==sN ]5Zļ")|s164ʥݣ Ef#Gڹivgg [¶Ѓh8ӆ SpZϐAñ49xνh^pW}m 8O~| C1<&~&{02r譜Z2WQVug᫗<y4J= h*aMW&(2SLe* 2eȔ &FSb2In/U< / X\pWFc]28m&Gi8[ָ^4Zt.Ϊ#1!I Eb\_3?+@PLpX*VˆpH >  ,`"lr_2z x ,ue]}8!A<!ArEISP]]0CML A c;+'J97ƚR!� A ,$MzB( !-#`NV?>4/Si'�X]pҠw{Yr+VuUX<1(~YdGDJnj`o|p]~sycM")"%Ak1J)zwJyaQ?&+v�&|'�+$XE#1ÉbQVNn�~C0,.<E;mocY[@9Nd˸b+ g Ż]x\^ճBf ։򓧆n<~5uz0X�~ǯ)Wȵ�/%@X� T\ *)wY7K`r9nKhj4'un@ zꉲz!,H+�I}j}mo2<WeJٶ&0f`yMdFm߫kw7Qw\W/ C[4q.Tsz7&`T[w*p:Yfx~ S '-GG"?  XCJ;bz_?~5b+"wS2ciHdL�,CΛ}SnnPQZkCf ӎ9{SNrs@6(p)k SNVהNng<刟 3F8>XF።{rmmƭ~ lo8"jisCҪycLwv}qeq 9L##ȯBRIhm>V,fCHq6 4ZTI!}9"̒^]3DOҚ3CΘ1U{?ڵoֈ>δrЯVKDC0T�B pP�\~B@hؠм6a-#QcK/d&tBsClZ /e4"Q0ۆGmv 'mݺuR fȳs*+uѱfn8"`;10J`�3#z.f|9$I@)x}+XYShHN= p9f,์.Ȱ9#໕LDJu`%@ GHQ7"@,n@рFu `WtRʵ^uyohjk>#f<te 8)6y"+8:3sC@]8"짭;xg+{P\6R・;ZÎY@X;x7 `N?Qt9~ᐗ3r!3~yh8d\W]HdRaD:)Et8 DŧipAmٲYLmeފ,l ?3ߐCa�S8 cGePzm/"M|5 rT[V / `iCf^z; 2Ψ#ӧϞQf=ςe̩(/7Y5Mb lΘX[dZ~ E5gSƬ'y#e'096͞tuTEg�*"ܯr{oϱ Ƀ3GlSnf2>#ơ a#/BN2k+B6uMFvE,D̕/<L[ U9Fv!˯WPb-w.y-y',HKH7D5Ga4+ LTB.'- 7dƽ ЮʂqRah`#g,>w84vUq{;L6XX;sMAt],PBS{k%QnEsrwH#n#J!~b~k2)AnD�Pؘ5#uS%POms-]p3up#4K i6sJ _?z'>y[K;uM.j_wS]c �sUy&ek"UBiM3?n|"BhER9AaJ7U$\G2C i(5kVb#-J.b/쓛6m?æRG9)&ّTRPu^<GjǙCPoխC|J3d,f46.WE(&UjN`FY0"pe׿ P1Yss>voca'ܔL  _J@`bzXDALJ7R:xTFCW[QQЙF�7[58@ ӟްv1<a~۷&^U([\[[ʬНvPF+vW#a8s(lFi�ShW2Ρ\WWwg>Sk_a{Mgq[o&UǤ?/s@/^]GȁˆH[jmLF9AiZRuҲ?9{Qܳ~y2Y<g>5PL4N^\S J(V;9g,BE4Kל p kL.`i#ymGJPar]w}% wnsRtK+;5hbWŠ\×mY8D^08HJz5C ,8I7RT::hQS{864:|땦ԽjZЄgiys(,b* �O QrYEk`U Bnڛ1.:qѰc($##<3t&K./'>5X (Twjd $LYT@N6P*?GY';dLF2v^Y"&lTX A!cEa>,8qf@CBvsú*im۶?4h{4iN X*WÍ ,P\E.q te[Y  &TtZSv:8Si]VdsvbŁNT"(̵�3RXP,ֺv1EGqcmb8]8ed-*ZR 'MchE؂iC TNdNBY�%%?Ł ;aDNsѻ)x# /#aqPlXXOOW利vF#_b\n6 Ɉ+^vʅơآRpF&"J^);w+T0`LZ% 9ǹa$ցhOWjEr+8Y*l Pr _\j.2W8k+ 8U R,qq xB,.XdrB oEvQe$n�YI�J pK! ل- ^Ru=Ԁjq!Blk<Pٖ-[¿2u+̴<R/Š:]c[h# q%69帓68+t=lN`crJx.2ٟSn;͍JƔϜRNSjd8ڕIgggYOcƗ.xpQ8|R缤�Z}%sz+B͈ڐ-҆hFbꆅ+a=QRs@/)ape4yh*$[s Diu ~,ӟ/Zڃ[I'Ï馛'< zѮ^( /ܡJEY0gu4\P3TWBu!n Kډb;P\-Gq8 ]mI #(ҰCey�9UHu"g3HSq"E-!f7]?kŊ'x 'jyH$xos{5퇐)1{bL߶[tǕt{WQ GYXH92ʬD"cF.yٍ#lO.֝$<@ĕbѳ$܀bE@WB{h)iw:6 /lUW]p1,_XtK,M/tXF|drxkX׸:Qz qhb(ƙmJ*vA8HA>̢#,CQ{4rYҟa l2lTڗn,P qR 2V43ߘ]it{8HrHƹ?#҉WƒOSڜꔅs;HO`3fDX,7DQ+ c :CNA;1R{O*V-fJIFcD]  <-\&% 9z^ZA À, fYzFsq<Ùag9Cl(8{|8iM qoAZqu(r-isPso>ڳ)R(uHH:@!O#ؑZpgqU&lq$~Ae%r#b*AK05$Hl Ԥ--K-rb) d<lBe�Oq_n@i;CrkmLrJJvGsĀ]S"j*kJO[GI]o2Kr4c:RoL0JdAL}4U$cU0|OaTLdS fB"Db)ڕ(�Lp�|ەc?jȜ5ݭХ@i( W|GǤו.R[T!1 1МP;kg9H10T(9E#xBpɌ3_hwn*~g"T(NEm-K:s4R Eπ47#襃Nk*/ !_C4Wpbԍ>JrJ,f8 NNKmyپ�mOJŀ"xٔ KKq>oՍP}gSbV36̵ plP{,5%73B ğ&:7*ҤBqK5y!!nE�^-ݴ?΂Ӝ|n9U" vA\Ûghppo,搽pbdPQjFW < 4iTߗQ JxKSA)lRA)2:P-j 8[V<\% JPlSo7cМ2N^EG뢺j@) 9NQeEP%`7 BEUc XHĴ&amͰӌuܰ>pRK,C$x))vgB0A]&myխeoU\?zhxmiH t:i<�ӛFVOu~jye;S m25R^#Xj¢b|rxjsI[|vR1;=fN �^fVK,`JLT“Sn�6X29pHdm60q XgM NU*aQЛF%$w"U60IKhzl ꈰzx,[Fzƽf.^m%1D_ Igú7SV8&xuxM�&<6Y2`˜vcZ9"3oX<M>~n^Ho9L[WiT%%_] (y숮yN :XdrqSI'L gi*F䑥W\vQk �aX-Hѣ:SbsjWw!Ud9$`2%oO~򯫴UѐXPU]X0ZS39tTsS%{+8+AE EQՕ|ל-F3h�eJdI]ktw�қ΀ T)&Bᶐ9j794X)iԉ=IՓ у=+);⎧�vyUn!䔨 S󘺐 )x*b.!͝s'؎siO!{HZ"eNu1B k?&2*D+Gҹ:Ob3p !tjF/WpCJ7fk{x9"Ma]IW!3)qMZ:JсwG/f5H@8t4j#zê8Ci'c4n E* ԼX &\ĕF4l kmmNk UPSL^q~ps5'9V9rnHd7+%Ð`e2'1Y_ hpm>x<p2FH�eez9Cɩ9~mE 2>S/ߙrs̊ p hWE] >.c kRAFFI9)HceFtW5 Hpn8d0 H3BP@)t␬2M =okL`_TCe9A "i`ԃDaq&՝.M1p9L$Ӫ-ڼEɇ#yઃ4#bxU|$<}dUN-d\y~$CLEV'[a><%tgF҈dQYu C48j8 Ҙ{ b̛[:}77STvt _p2cQ2N;*M><F4OW)6piPl�n5zu%su uT%W/X\+c e 8;+9³K!"xUe]a,=ڠ #A0{9,Hi eBp7Kvyr٩AM Vm'nHQ"#@hy3r Y &C*|\kL9q<kM5d܀DH$En;өZ&XITjBR—K{x |rJXեf<9g-<E'l׍3TQ ΂ |e(P=o5z|u |+M۰m(i9+&eR&eR&eR&eR&eR&eR&eR&eR&eR&eR&%hx endstream endobj 12 0 obj << /Type /XObject /Subtype /Image /Height 240 /Width 204 /BitsPerComponent 8 /ColorSpace /DeviceGray /Decode [0 1] /Length 2902 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 1 /BitsPerComponent 8 /Columns 204 >>] >> stream x{P<rD*!yd4`Fkb)ZGmR(֦&4Q`'iLڤƷBѩ޽wϞs~]o_yYō7nܸqƍ7l:8jd~];Z[O]bz ș7ᗛ'8zC 'fS~oʛ:]R/1KWO|]>bb6Lggh^EL�<¯ڇy]ZT'ڡ|EOdBfk")"/Ͷ xq/n#.ᮎEB\-�ͬcmF]橛$`G񨑱n,�n2*�dP%i/`�/ih]?P#5cH̑LiӦdHEͲZ,&#u3}ǀp(g9"3!*�߯Hwl V2Ѵc XFC&&h&&h?LL}H1j2c y2a bGfOc3P2یGm,@1W�b`Y յdQ("Xf|@ɸŸ%;Q%s:'iDsgƀFc!oF͛{pbnRPަC_-iί u a~$Aqj81#:8Wjی\5g4L'pbQKw;#}3pbک+816d,ipbXw6\�&8Dlj8Gˤ3NB[S3@6[l N d7&ܥb({z281Ţ\E'&|yi['0n>-m j.UYSXY?ȯord|1%HLh}5˟4Ĉ&mVp&ٛ<3e_pWv9C/=C);C�/J�Zd%cݎ_`쉳Vyv م xA܈\2u9!(v5�\'&^sX֞~ۉvY_&3}O+ 6[dg͙bU%WbO{o` WpHny1fI %ۙ ϝ#w^Y103xy0N=DR<Z�iO*�ۋRfJ(7y@L| ކz+5ekM]sJ<dJQ #_)1"Cc@)\ 95cM]d+mȄ>Iќ*ngQd-'W[@K6V&2^LQD(�\3xhYwD47\$�Bi]D+谹4E>/OPh KfH6*%%!K@y3; .&8[H)�@YA쁱?]c&VJg3U@VoL�JLrj$�1{,bJ/-&)z(�ŬGY7,{;H,A=SLd"�̕!R gc% >1eģp0 gFs05 [&�t1mPg:WJFOU2m]zCjg2|qӈa'jA4J[=Xؼ=+&ii1fΎƌQWnRNev g!p g>\b6![M;�gy!&|i:3dF*cȚbƿ? o3Sig|Z^)eb}Gi.X榇'9=΢0jD'9Eݯ1EH�0!;Y tC? Og|(:  kGjI,^P�<ܨcAj�3LW=B)F$#Yޑ�;/C0k5J1_0wY)*Xpv_z�gM.Kp~s_CBoF'1/CD#$~T}I +b-?ă}>mQr129[I�C#`k652v/'1fqw=*DaïWɦ5Yj+Ŕ o<+& ]sM?W8 K&~h Q>_\1Z7,"`h\q;aLtԯbxek\T8;̎5ca1۟1ymvvu#ALKI/p 3ݱPپмZۓZ pY]_=X#67=V1d~F{}yɭFˈ҂ģo~|%o5ӛңTRu{'>Q@` £ěp?'/3A?Fa%$C[jXB'"hs9JgeOL},-ΌwJxy|ܬTxVX[*Y/ɹY$c6<G314O}/홯 KqU~dz%oE$ukUq#M]ly^[7]:m!/}RTp!|p1䧏);#7/,0 ?{BO�%﫛%e˭|4Af$Fh9pOŷpZFݹwnX62 rߗZ77nܸq/?oh"S endstream endobj 13 0 obj << /Type /Outlines /Count 1 /First 14 0 R /Last 14 0 R >> endobj 14 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 13 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 15 0 obj << /Nums [0 << /P (1) >>] >> endobj xref 0 16 0000000000 65535 f 0000000015 00000 n 0000000262 00000 n 0000000463 00000 n 0000000520 00000 n 0000000571 00000 n 0000000843 00000 n 0000001108 00000 n 0000001440 00000 n 0000001482 00000 n 0000001530 00000 n 0000001582 00000 n 0000020892 00000 n 0000024060 00000 n 0000024134 00000 n 0000024259 00000 n trailer << /Size 16 /Root 2 0 R /Info 1 0 R >> startxref 24304 %%EOF �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/image-pdfwidth-percentage.pdf�����������������������������0000664�0000000�0000000�00000057372�14163570564�0026171�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20191026001826-06'00') /CreationDate (D:20191026001826-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 12 0 R /PageLabels 14 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 117 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN q 124.7 0.0 0.0 140.5709 48.24 665.3191 cm /I1 Do Q Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << >> /XObject << /I1 11 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /XObject /Subtype /Image /ColorSpace /DeviceRGB /BitsPerComponent 8 /Width 220 /Height 248 /Length 22060 /Filter [/DCTDecode] >> stream �JFIF������C�   %# , #&')*)-0-(0%()(�C   (((((((((((((((((((((((((((((((((((((((((((((((((((�������������������=����!1AQ"a2qB#3Rb$CrS���������������2�����!1AQ"aq2B#R3� ��?�$ Ipnƕ*C:AŰ�ZvܟO`/Lfee+]\}t[ڛK P(HOZ -0utb7>~g T ((bXk_Ԁ.ta( І@ۓɵ퇥`46~/;}07S [j@hv< &i 2Ik~B 9ga}vXYUyImŅ;a>rآq@�aũ'="v&ç\ (`V�c<P6D}d,Hۡ5ua<ieXq\h+*Vʧmh·rVS(%vi݇�#6MTHQv:cUɹV u^Fp) >csoFPI\8mCek�A\zlqP"}I&l o[Aua#Blc|%X$'7B\ @nv? m,PT}b5m'ߐ4 Z'?EL-h@,H6?_gH/wҬAV|+L>x* )hdnvg7�};QIw FklpzFkc#;<`r�[�MV$m;{`Z5 iPmnFg-:K!6F %*K2{[\ Qs{b)7'p_ ? %]$ bvjڜ�k{nj^8ѕn�0|II$"�+]jd[~VڞMuUhd 5 a< ۝7+7!fJShkn1Dk97b$F#kl#!^ ]Q}%O xɟ#Ikv ;k%QK`M-ۤ F;8Xx9Pf}|.wt@U)N5Ճt_P i~i'G @mc wS rHͨQ#r~U HqyM^kIҦ{�qE<5$>ͩkK"H#4]˵,YbNj[}; 5nZ + '2�HvQJ3m/'67or{ta P"ͽ)qR+KQ {-`U opnM:׶ E1-lJPԩz}6~0Ȳ EgV"~sӮ 6.D1P}7Nc{ �4{ JKܡ͏h;SbR]{,e �{7 �F5$I[) }j(UTt:\SupqVaXwa{p1Ic":"h+$GTViÝ`$0e&dF V[l7+hg\K0Am�j̰0Dk?d4+UlPb.=T0hQ#@ Гxvs7o5u4Xҁfm)p%.qJy�'Юuݑ+~PYsUiKf^!%t>sm$h>(JF6p{cxm_l~Aֆٲȫk_1Vd NttPKF nuaSQT6n{g-7 E<s2){/b^q fQZ+Il5& X (<X\{#4It A}qb'7;wĒ1}>b [|6,3 ̩o; F8 v?yǘQ)1 X:MWC&kԤR 7'\e:nzbOI&:mpB.TBi'[eJn$߸7tBs�)WAJ4p~*``,/r=DZƅ9Id $t UQfZGac{XrE8CebuIᣁJE߱ԝIiǗ. &KF[bk*Oru_P{}/:V* UѧPf"UAdRPץO"s�ce#L1/ʇ֏g]]RL-F~h ]9|T~U<�%t烿|<7�F d\lΛrm8�j4ޜrt5JqMN,F _8LU:tz|!,#˪YQEFI&k窕b+ef�/i1ؐ>^}Ͼ:_*J>ꍈ;فS R�XXHdeaeޣ$,@AP`*!7oǿ¤ٛѱ�~N!DO -"}?`[FQhFǴHJ~p &yd �xʦFZ'nM H/cē$ӁL,JJMi2in.$bFY7!MvIrg`%a}l A*H�29U3*GO"V]Z~F7$_Nwt aFu (4WO:Yf"R:CiqbHi(U}sIU%V">c NOS7:gVޝ=΀W O$RHǨ=F'�} '0RŇ`\ߐ8d=20 GOooVE~W͓ᧈǢ,= ,2)ʨM.v�Kw8clQE׃"k(+s6A :A%+,-2Ʊ+GY99m-h: -K @jؐhH)7R //nSUΔxNYK.bO%X t/%^ ho3SF6 ׷;j_A 5^rSo- l8VMxE` w~8-,X-RAo6SK/VcsmF\0DnvLORC(lZHRUFH"�WA oPgo#JHtH_SӇN݊ k'$2VV-3(g;|v,ހkk:T7�_ ȧGM,6};`5eNGlpgֺڅڴo$lcs,1ʠ͟SCUJ5Az4|Eh%@f� ګ) K:BMJw:qoQ8$zo>XGW~n]AnvzԤzR&HVo��|tUrJDRN7醍 |bX< j*�yl&^cPj3FeHClEv7pA~ݵ4*f2dپZZ@cBU*ޟuul/tg;LE�fЖ\8#R)n(QWWly;J+R5|ម>i,-HCHvǬUGdʍ.;)ӑ8`j%?j=) ;5mo5g",Sx`y| ,-6l�heJ cd H$l{ܪƋc=*8; Rl0JP�ŵun\"~eGo<KFK 3meRƞ9ƝVn4qxjd'JZ;ȉe}V.B<s09yp+#lll�:tq9EڏOIC<tu RBT([r6~r PfekSX) Q̼=�lq+s<Wt/[ᚸis<|sؒtw|*FB]*4ɭv7RrXu$Rw4^:*`3Y,ZJ@�]ѣZ{5D4i)j؎s() IQ$ډ"8\;oŸr*gtuT9ʥU+4qԬdGE)8׹߶ۑGiqb?k&_LV!- 4g9Ӎ/cA /cv>F;$,} p�7@SPSBEطXQmEHH:EqqT8ov# ΅a@?q(!CJI$Z|_-lXyao LP8:NR iZێ1T)) \oku4T) F$ũ@V7Y&<Uu1] s=vM #LwU Hy;XYɜa$>!X,ZB@7$n88+c$$|Y5-Mdx<zZ̥X5ГnXU#FU&yT?f̠-`C ~Ŷ;# =⟖Mȼa[PK5\p Vt�:n~-o)ռC'Fc;""2[k#uߐݮ~r.⒲L0I"�T7pn $PrX W5 CG);('?k[fnsWQ)-w)C CA z*c-⟚0'g4dTĎO^7 }Loa͆Mk3gg-=K U % ``٣";⵷Q>o?3<Pd2b7�X �:ROTzX$%NǦBTpGssn� Y�E`Mk{s]Y@a5 %X)ZlS8 kzj!K :X]V:ߦ kSri"nnmc* ]JmIbC^cFW L92:dɴ,5=5Tc*_HROտlOZN+tRo'nsMes CK9YD#dg^ۋg&>,g5)2Bjt/{ =X} oT #* Pr_{bZ*;}I84k'zO&&n־M_jHO'Ds`�o}$vpu~Ma^OO[P JZۋOsm�>RN|L+b9xHe}6eVH.Xg* < bZJMiYJ콍{\nSEזI1}4dI-lXIQv70<f7쒑EW,AUܟ{}۩'I3[4xv$9$-ͽ ؛\nQj+O)dK?/Q: 1W2 %lm-і!RfOY5#VtujG@6 } xuWJU|mΞ%s̑$)I=u,|U7^5хh22:hY#QpobJC&_W(u%iu*AecRH?! lgD~,PG}os*mo,?y,IM)Cڅb6�ӄSi ?9I8|XJi2|W""eݛXkxl~IittMMz~_&He*_oе@o6+ -׮X dzKv`77wW�*빵]FcSbw탛 erfh0 4uF=Vv8I- (ϔCvj+Q@c4.y BJF%<is(ٙ˲ 2<u37*X$Mj#~c!k6!I. **!+rcTyA,Y;^̤iy]Yhŕt44nWKO1;B~Vt{pE,%mFxk?W/dp-eS4uX]@O�;~v[d')֧)7Dc#f \�lEGWM':kPΪɨ) uK;k^{m8C+Kx( E5J.i]37|ʠ33h䞕\ Dlx":\_ZSLjr9|:VlfȪX˪0!I�r[?mqJs?:U$}^<}+%/Ӹоq*W42*%H7ۦ:4RLI2y`I'`-a}⻔Yx*3 v]܎nīX#TBRQ̥$]r9)gIe`~5|XjxΫ76&$[OM*ߋ/*Ihqtw{#=|iK/ةj�%J\筅1ء,2Z$ 2ŋ;~ؘ s"G&c v߿_�aMT%n�#aԣm,`z8WR|ۛ }0RbVB7kI5Cu0paI f"  0Ke- /Ċ <,H})ReE>c4]v:or1O^|/:X~ƴ5a)TJ&nڷTJ Z32/y",&i2M-OObaeXwqt �Ϩ�ѽ8`e|9_YQ6}Ջ1׸,C$n8au-J[gu%|k-nT# & CAp%WqjhgzDqR$[B_үn-~"ӷaMRWAt�pHFϤ q{k+= -d~!))yϟ:$1Unk}u+sċQiW_Ri!s29'KD\d}M@yvF$N R^jE+zzr,?hrr\ְ̫O0[PѝT+ܝ:;˓{'v*FT6!p6;5qY<)1őRo"�fb2[5abeIG5RβyH X @6w`th|S*³tK&PI}ga0zz+#*3B!;}'T'A+gIU\*`jD;5}9c�Oj;`#fzGQ+z}ߐw)靶bQ #pv/8.Ƞo`9 B*Y6`(%ê'uuuV'm#|fT$H\n1'ݡӥCy5=+ٜJq0IX[uj1w H>Y_o{a&JW5z"b[O:^6(qC>S?m== 7f̲̈[2C1)o01Uf�bC8?OYgH+<QO3(tc$=͈xbjE\Q]D%b;�͉TYAW@u+d(k/$R5|+/JMf.(AgLir´so2%kjEŹ Ote_TQR^efTJnefhf`}Hm:tᨓu1iC]&*wQ2@XC_ccEu7B2k2aI_5JиQh�A'Ԧc< 7Iig'Teyي:46HoF!=ŻiV{ث4\溦')<EIh(S6F+E?i5OO׹A-D;GrPHO'XF:eX\zO'j*P fm)K<96m&YBvOP #]H; ":b7$Ν*+cg, HU|,^x:w)2ᗉ筌fu9<F!4厲O`-|r']puH7P9OTlk_I 7`wsOR\q~do_EU&_T[R Y 6$8ӭ\ui<k𫣣\ʊ,iYRXT-PA P8YK*)ؑ5t�Y? XD<J6}G}:Y$><~eež,,ewmٷ$)PںܥlUV_ڨ@y4Œ 6,6w?ݏUXp!ЂwXa9uJzGknEs{߮FKvi]SPE`1 W#5NU+uA%a9(Ԣʍrd\l5SY_N{RY&e.zX#)|f4G,EKDo5T?g4aFz,fMO:hV"W1Q͉ 4|M"µϐPe:|HuI(($q(a FjsIW&dg-E"kL&]5t_SUBr<r|)j:XMd&Hn =q:҄z-^ A/ =82)Z\pѨO?6I3@ uʋ&_SBsO5$21�n oьr$gܕeYg2^ ,21dx-~-ؾ+x&'jmdΉ崑H7ۆzm NxX(a<U :oem<3fÉ=9tredyFh^M^T2ၰRԌ|ώ�ߥ'0њxki'1)mXZNnƗ&5>ןj\j$kJu)xd,v$v9'87Ls9*2:ԚKS0Vfy�^ bOܿ:UfmmvWVcZZSEptRp>!5[>|S!JqPyxΆ2HJmkzyzXNܿs|7O2˩"[4yM%:cgrͶ"U߿ϝP%}⎖J%Q±�Pt:*q[nK lCi:GBH=0hT$;�GocpVO3Zp80lb&r2cl�l>E]jz^l7Jb{�gٛS;p&g5ń%T`.^k5mJ?]b°sKl\3,* m+{2^NyG"1'=$^sQAE,yiA"jԷ�I^5hcJ%l2eU#1QbxxtpIUiFÃ'X|.sY;y .C +yC�AkܬVTjKl5lTjwVe1bH,\jһH! Fю99=WK<Y/e*r}:_ VSjr QURK\-d36* u;JXR}N]d5 VeUF OPbδoKFGmq'rqx)k8FX[KAm݈N&4ymU5$4ouQ2VI^l7I<?̲Zb*I)Y)y>XJ]F?( x m}QMA:C:Wh&6@nnqŭIKz aL=h!33m]iv(5)"8z)R_NRm?f(2q[LZaZn _:HKIMqS5ZIehZdPٚ{#{#[r9}߂}U|ҜQS ×dV054t^g2<K㧑cyΐ.7cv&-R$fttGhJLq{_(HeY@1J)bz[b> rG*$-ۿ `y).YEm#,�M7 kq}0Jͩd`1_/D}`řտrp0wUd$;q Q>c��>(|V9GNy %U! H`ᕵ-}''/ I[IR&# fVaumOЃqmu-[5'>/7ْ1OYIQO1x,)PWN|�^.|,1x�IUI%) ȹ-rJcPSffXj45s3D$O-ѾF$RQ;?8amحKA%E=$t1CQ̼jW:wwa*Gݗ0fs-DEvG To ,ROjn2)v4y-�.& +-^ 鎕$۶, AJ�f_NHd�uEv ok-M [#x55I$mM#$RqbYm}ihER9u4E୨J .,\0�07]D Ϊdz7Y5,,HqpK ܜ,5 &,QT}`+-}E<v8yeܖD^J]fMWY,f(BN 2 3PybIO&B7G25FO+t/q.�m-St%f[UD(pƴci5[�]}#+TB*hz!Gu8>ݰc2;h!2ASJcqܓ@Hoq)4 5X&rO8s KTp0S:Al5@u+by錢MvzXjBk~�2k&qib]�وH[M5!Gcm� /&NUCzA)Fl.wX(TK�o&W?ۼN$%.[ n][qɣ~ ZYcrp @1,%zh*I#A\UoP[~=[eJ3ś gQA,iGS*MD&V-+m&F41A:#q~SS}C$Fzr#U-!;̡EAt4`1+|%5F (CBkVmv�Z;nCː۲ixik4f�#0٬ \a]6I!πZ5G76,.GFۢ~}.u"L)cي{+PAm(wNя[C,bXb6X].y<DRHm9G ̨2ѭLR%#{iزߧb/mO+lv%Y&4+T#F`H s($X)Qr|xo*OI$fVmɷ፡%=6]83VeY ѓGQ=e Jw ci+f[nqH}C4'3:r.Ye){oHP0e8(EwJЌ˙ TG**9JS*>ɘyVq;Yok'=mrNk|q /O}*yalqKQjhTyjb hF*�]=f,uBU-GFFΣDw>Ὄ =k ;mq (xVL2`$.Բ [`NM6AuV#Fx3zH \ Rb"sn >Aaŗa_qˠĞ=Y gfyMu q|7= ~eJ3Ctbt܍͏t⒲Zw()$T6 +?u k ;M mI(Ϊ)T&�n{@ؑ�ۓQ^7GO˲J_554wň6;M%WLJ\HF4LԓeֱgR`4N5ަ9,[QSuY#nUHJZO1anHnl/ۥ͎-W IH}R""+iY ܅aOSbUu̧ȑ^4pv6[x:~TA>% X qp,۽'%&aVLDKUHW~Kuµ� U=ptzܲ1˪GS}tڕp9ܛn~{}_: ;*U;:t=-h*%,\xaZi_ePC-I vZ:s"jClGJ̪5O&fjpYig_UAtUx9Ċ%JeDf9ansxGEÜʴ+YSAhf[|I=tuc\?ᏥLUdSd[|[Gy ZMY3 2,Go3 ܘ47ZVR0!moʳ.BSQ|ZY�`Qw6N1ǖiHOkz~IV8㴆5HO�m~q+܆"BnaIdW�8+@+6銦/6PA^�j9Y.T{~x )kN^ nS iE{ H^p &"dY@@d :نǂQ})]QYr$y[6{X[- bSVR2=lI SA*KN)&a2YEaɹ#O'WS˩JFnm?ncF;7<YlJzQH ąerI�[%F\~&gNuSMi{8@zGm`m+58'25O)~$QT^w-cJQp/Ӗcrc[XA�ۚ5C2N<]b1F+]c`$b!A!O'nַ\5YK$I[o{$]GR-5okgѥ8D+ s橳[H׵O:t5"DuSX 湄5J)\F-{Ůo6bΎTs\&Uh؋5 [W'tm5Zipꦛ+E�n6xǦ"MuVٞcYWEU&]QYC#iDP�tMϨ;#~5*cR2D^LT_"GN)EԽ} 糗A틑NYK<:#̨tIoX GnrrYh`8Ir �-�O|gƍ ꚣQ:#mDpz>]B׾%+c*j> Xr bH.؜AI ]ktJr\편"~Ad,H7d؎=,Xf e?/ hgj 9oo3Pڦp겿mDbDi$pBӆ$�6 F'eZ hs�ixȕ,*N� bQyM[R,%~j�B]]D5ۍ7#2ۓepJ#UOTF+ =Ȳ38f1"0rXŎnq'p5 v} J5BSBQAߞq|IݰRњ8Pbኅb esEC%lc%0 %Kᄳ,@e%oacRtʤURֈZV&p[StWiKM%!t>_/a}EiSH+@ҒMDOfP: kz/̞ٙ5zhRF>zKXo׌bK??7QKdRTèFmiB6:ܿ\8a* .z5eD TI۞}Lnnzr W_ДɛNM4lTޡ7erdg&|rtΩ*MBeI$!O JFn6`ENM.Bn 3ٓ,pEB:*Sl X){ Y4ۣEK\Ln=@,:o T펍U6cacHL*\aKs؏* ;ٕJEKĥluOs vdS y"ݽ@rLOJ{:$!tw|j�i4hYTF%�wrnNU&9&_1�*/8Pl5� Ou:LL\\iڵl�ݷ]2 TVRfRIQ!D`Ee-,H�Rǩ8mzՔGUqm\* a!rw`@i&-uPbZی.qALg0QeRDXzA nzUH(*ic) PIk؝ Q ɸDRd d/ l{mUym1T>K dIu6=ʟ sњbu˱}9=6&?F71QNPw�Cro R\uTrMъGC&6abҧ1!zʙj*8 @.UOn8uSK$]gZiVx^Nn 77PwgMy']Hc )MD̠F$өقEȸmԎGhvISK'17$R ~FخducH낡吹db7G} ˳+ J ['~?:춢4Hu<6c/09*�_[,$L= a(_LIe$ۧ| RSSU[I$WC~pzܵDjI.K#r0c2�ࡘv7P@5 a6F@oqŰqolr.�A罰[ $Š|: -"TApTm,B=8 jF/(LMLIO̪" 7 ˒`1(y0%|K4c]om�3nycܡͲ*Vce6XOP-aQq Hx3oh3 U"]UX6~8o:q<"m|4*+B3rn>r}kɭ4M _>Q!U/eBߝ7?\$}1Km2 ZzXg@Uw#W&qQD:C;216 l{_c~m 6Uq$K5J;p4=֢jy2=AE  -}<A/I̧̧?iiUn\` 1wo[yEQdcJY$(<fD<Bw&WE50湥-~aU g*}3v;o;<4_bZ!H`Mr1ud Jpmd2-hm\ L|RH}6XoP5<)7 EMB}'IM&YE NǺǨ~g6y^5 mChqw=y$h*j@ q*Aw=^,$}Vc<~IuF]] OoFb&Ȍ#}x1w(ṣhIPiKv*x{r[ Q&Tx!C Z 7�1vnM;bs~X0p3RQ% wp( [`}D1�aZ?gDgK idO�} qϩ)"i$D 'xC`agT檬Y�ꠓΒ{n7hR֎Yb(:/k0P}7�b>e-MH;aQ{Q"*((hjJڒFH-W6|+Ը$hP7HCj%ob9GJPgYD5XL% rD[p߂Tzߟ�RԬiYʐ<�cn= y9%,P5A pLIb<&y 7bK{0RHOzD"2X)\Q Y>)QǠE-�, :\ȱm]cU%}$0ZMd؅22FV6N'F'G �[ mpP+.zqv!)�\u5ٸ$ 7Jv*LopV !c[ҧHzSз}&ֿ՘Sn{XY $̤26`9ƍ5kfR =c|>Qxh8kBk#{}B.o;WFzz:?SO%fIT�6Y�@$mkXcB[gq܋教t5QS="vSAn~붭7zT9@jO)¢TU#hw"��Q8I 'Y+ ([Ɋ&*H�J7C7RsD4F(yr skx02l*E4uO-ᖩ݄^[Iw}vvhf9xnXuXf6 Ԥsm2FczZ*3Mz|Nm2yUnx@%NM@P [ӪonG1ez'c4jdEFs4LVZNFYQԵ=q4#-7s'N$X;'ᬧBSvay_[[8nv=0+�XV@ō1yi&0ܒz}pS/e,ZrUJ %աVf`V褁muC]Wrn۱LVc57�72tՄ7+ploql03f*vǶ5 S=$m* orm/r2]G # Nz/;X3Y+N�/l ;t4]`ICEBU6ߟoQv#S6&ݶ�jjaJR-۵|ݪ|eφ^ ͩ*?GyK 4ā:NoM|<^*3Bg,<3(b5c5;KZA]IN*ؼeBG}Jp/k-OB4M<{E/Pe]^�"X\z2*/".<   mf!CLF�{�'o CP24?{H QƏFvJL%?k+)K1:/Ue.\4O2SHB8nOb:Sý73SX#O7Hrn.Tke;cUq#"f-Ii_%0"V\w`{Ptj]7:4%-K|%洫6zX_-[lR.f �mlQkME 6fĨ~gԭˑu2E 5XH *.aO=]6Mm $p$DQZ^׿^pWWePbAw ڡk$XuUk�LI64$l$R_S[o>�L PgFӠ05sU~7 1(6FЦGp.}ne 0@rxlnp#U� 7QH5Q$`px�|&(кX^1q2 �؃t+V#M#3vf3 dyWF#mJ* I k651$V2>s,gUO=?_A�)"n۩6]ڋ)H:9S̍Jg250ێ+ LY<mTsU-)_:`6؀m{~qh6&P$&uYU,/Ib4}7.+ [+qU?Y]@!+FUdmRm%U!/uq}J-KYxcïRO]̂_Zʼnߐlk[rߟw.Bc OfR=3N }dvsOgW1,Ht?;aĢE-i龟z\\6ii>DJI{uC%(P*nMƒc?Q � .0ZqePnGղv.-ۮ:#@,jxBݴ=,#]XԄ(l0�}R| 7ՊC:Ai>�5Y`WA] ׾$aF\@0tUb�m5*NX\-dkG ` ŹapQsTf~.Z剰<^^ax=w2of"!#h�'\f#/.Jx|ґv]U%~q$}q'ЦUM+jwqZ9֠Pqq#K7m"~Sj*Jj<pp�z0c)C8׉~Y&vW]Qǣa"̍`dFUSц!㥲CFw+UY|:ڮK&i%5 �`@9 WQt�arY|ieUٳ}L"eeh_m}luـtrz\T77ǑUTe9UYb.iLT"Q� Z=m~mp `hO] |+"v[ъ EӤr�PUvEH|2mk'$tB;1U|` �}0(;rs턦=ckRXn˫ka &fm:pρW" ۝+u=1R@&РqZo4bF-A Nz}p60S| V Pڔ;*[ T6nGc%HRae{C]ugCp{ #P[P Q~x1X2]QרMQ5 M}jtؑbEٍE2�c `|,G7qu&-ҷ"kyl>ތ(h*hਆHX߯;qQeYo2X(w0TUa0`bIms`;_59V6ߩ/(dz5�7'ª agh&k6t>J iͳ-v=%^CX/'VauV:ٕbxB]ܛq ݀$nN  [1�ۓDۨk@ajűu7<A4r!(7A}76`{&0Ul"J jӶjYm@XXc7?ZR18;jw %Zˋfx ."mm 킻3znTv0֘]rmsnY(j& ËF`U<GS:WW�©7m�= S?_\6́U^nX 1<1&`FzئY I.*yt2c!A`^B9O؎/ӬWm?L4FU:@0" AAvsnށz'�oakܜoc u$!6oQJPth�X ܳڛK6vuƻ�n,"/3]w'ߧ�Flw_9*<) tٿ{[iPڡ>f^K\0[,<JA7X�iy>^lvj|WMQ,oH? 1ԊT6aZH2)Fہl>LAU\ǵ^)+UX ktîtr? N`�rK2yh ]&Ì2XXM'Ya{}v[ uy(mDAH"0_qmpEf�[ampc4Ơq{a%t#U\`#0O�ŹW#rpqva`l |E`I#{} YJ؛ml* V(J c{)'g$-"P9�/̄ 6 ywT%o*y(1jl�^߈UTn؄:'r?/ Y+2iXR\ (0~p 'kcv;0jź Sj �l$2V<Lk6v Jѹ!�@nO˾0w;y`;v3,dpmqY5�`GA+=FfJ�(K#A mڐmhѬ-:? endstream endobj 12 0 obj << /Type /Outlines /Count 1 /First 13 0 R /Last 13 0 R >> endobj 13 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 12 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 14 0 obj << /Nums [0 << /P (1) >>] >> endobj xref 0 15 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000001007 00000 n 0000001317 00000 n 0000001359 00000 n 0000001407 00000 n 0000001459 00000 n 0000023691 00000 n 0000023765 00000 n 0000023890 00000 n trailer << /Size 15 /Root 2 0 R /Info 1 0 R >> startxref 23935 %%EOF ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/image-percentage-fallback-width.pdf�����������������������0000664�0000000�0000000�00000060010�14163570564�0027213�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.beta.2.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.2.dev, based on Prawn 2.2.2) /ModDate (D:20190710002331-06'00') /CreationDate (D:20190710002331-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 13 0 R /PageLabels 15 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 842.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 117 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN q 249.4 0.0 0.0 293.4118 48.24 512.4782 cm /I1 Do Q Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << >> /XObject << /I1 11 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /XObject /Subtype /Image /Height 240 /Width 204 /BitsPerComponent 8 /ColorSpace /DeviceRGB /SMask 12 0 R /Length 19044 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 3 /BitsPerComponent 8 /Columns 204 >>] >> stream x e7U]}LLfr$rp�ASdA%x*ʺDPs<!#r $${&sOU9jjzyh:5u~>2)2)2)2)2)2)2)2)2)2)2)2)2)2)2)2)2zc}/]R|RVJӦeiBd$Z&A6NX[ i"˕ƥL/HQ\mýD$P ð, U7)Urx mjd R ' Ӵ@/Gd_ᕪz˚p~>'06Fiw4 <SX5~nc>\&" J+3[�k䩂)Yl6Xmۄ3X?TF9|@ `P( 3Xf3T*�<G=Qp6%aer$dp8F#0H0ӧ/g)elLJlT™8E"PZ+ Ɛ@N>8 3@*'>3g`0�`2s>p�CE]zyO4@aԀ\DeUf@VzS Ip@ ,@BU\&Ȁ/*{8\Ee\04FXY-2%TFxl6$ d2�8Vyc!6 rW Ni8 (KBeCQN@탬 �R�pLa2iߏ7ΥAiՕ`z�C@cj&ڀLU+#lo) XEHQ~�d96U?j/<[ ,a1=[U8ֲXxC ӕր>48AV[TKRqSU_2*蠎}6`ĵXjjJJ-5d? 1~Iʱ F"h Rʼt_*v9dvIFyM4 LGөDJEQZ-kdw򇩀Ȁl!J)=Bq@Jcy pVZKfY͂lv)^Ё @)-T3-k{@uꢹ\Q$gdǯFY#1 2 :#A\Qz#?1`/b sG\W.\1 RCWp-OqJ{{}&T _dBte@#pH'+^L�M&ScJԂYL6&ys<�k3C7sb|YN{? I+'on7p{Vr0+kjO׾ǁr4CC]{olڻwW34-[z�f xZ;vʫc/Y.&5'˗~\PX<^0A\.F:&/)Sp|HF.&E9s ݭ[lҗ+::첏RKxs4>ASN |߹䒏oOE$d}}pΜ9~P_bSN]ri]2FҠmԩM ,x뭷+#5.K,wSO=e@ B7) fV}}Cºx?ᏯlΜXg�vE{ 5ahI'.pk߸b6;;g}~uJ2z߅r(w|ZW‹iYrRP(mxo=Iv.N^:644N>c}uם{}[1:;;+_`(o5k…Ο�v{w7{饍ӧb_%7VRҲyqW H$ >i֝˯z[Yz݂Cꯏx 5 ChiӦz9nڴrѢE/*jE[.Lc ^z &Pg`0}|r}}Jvٲ� AkX`X]CC}"%|k}-ӥV0\Z2%A=,>d7; l9iӦ6446�hV>j֬Yw7{N+�롇e ei ^i^?�"/FAH hmme3Huww$a;*VX -[ *d˖v}sxoN%L2]{mo<9xэF25bZ+( [T�¼O?yw �|zC먐V۾}3H޽[cNl#f>k.H4&?@<�N0~{{耍wqrB* t4d0(; :qM0o~3\l,ZW>Rώ?kFf̘>l}ݏAly W6d ,}�ه>AشeoWV n*.]:2}rzĪ3EXaC]!ƀ8ygl^{-�\vITJq{Ц}IqGhf[)HV"ٝ9iGZ~#~xwGdFxDY/V^yURt$ol\u7Œ 8;֞ntMmxn~Y'{c>׸4#L𚥶A_H$z�gVog!H1dqC,[kj wڥ3˖-?'qw#ZY#%ʕ7ky]O30�'Nu\8Xcdi&Ki vߒ8x{J<ʜ߯v�O>dؔio?ȥ~bDP MO'�2;54`nJsf>WW<_ҠiMl;b̊ܬ6q!:XGvεQS5҅yk|UsYh-&5]hZa }RW�^ =BTPk_kZg?dvm淮߶}ln2D"GN\`$/�"Lj.@&aAAcǠG]*O.Z&9ז.49e$@VҶb<"rzkV.p@MRJ9 b9leHuљS{.մ�BA}grń$_�8 < r䔕l.μk?!:7< 2.<>xNl A>=*XrDOsHݞHw2T󘃊>0kY]R"HR̛*_1L (%hJI)e F2Ɇǻ|kj\LAzYlXmey4�]󁢐]�0$pb`Y�/2f20zs[ƘPP{?^F$ 2o"fh,�,JؘY S,Rәhj񨈘 .dkڰ P_c_r� `ei]XPjfȰiaXutM;obSs L[ c "��pR:a&0KaZw7"{*)Q1N2&9t _Lm,0a~rX בvƸN.2ȼkô;S{ JS@i8sN!)ͶVz2ִELASNɔzcgapP( fxrLwfB}ڎ{XPlA6JG24jE{. ^`Y>ٽnSdCTF#0i &mѝw ?LPD #@ Mo8AE-C`Jk[C̙d]|IHAfs/ȽEN8aaa긃>㉮?Ȃ`4mhh:iʔ)Di!K?g(rjd`IrJġk?\LtFec\ꃁ ӗeYַ^xftJCPf02#IQZ91kuK3gd`+E"a1;By%ZhsCh[(b.xCǞ^~S[|1~|joOٲ;Ւ5;d8 i(a=u\*/!P{ !{"Rt:F#8_ kdyL0{lTF]U9Ri GD @xXD ,PÀ1+di4 J9L:_jx9sv*.Іq#3<G?w6�2�XOOwggg<4V@oܷ{ ͜P Ci2uԍl*b2zi0|*ω1q1[練W:@}C,+عq xLZ,VY( Ң@~9N L8Eu 7Ms Im%:]Viɠ 8LrHj㵒o63c@Gf( 0-qmXN[<C9ˮH8cNA!�-[{S.p 07{Z*] `^q:sӷ]-~hT1M OvEq�Md ÷`\. ɌY-C7^Z]66$&2adxq"AZDR9~21m^u̝,L[b{|%tgg;5{|'>e?Af: Otdf�M6YQ45u9@ EJtѸ< {Mh~h{Ù~_@&gL vttn4_aW� �8V~͘!U=Sd_`.0ZZ` e'ӏbϑ@e2  ɼAN9Gsm d5XjO<cQ$01u c't;PZL2T𞴢ؑYgkj?+?Zc2Vdқe޼97<W7�dd pi+WRD[.` Ne{ʴKzH~anZ0 /ühO}͚cz\8"ـS͞={�J*Y:?iBgNor`; QdA?|Q^xY L>)K뮹 hf 2`m ;i I]>~C؀_V>zYd�~?+x7cMzE pC]-k^‹\ 0:w(/w֫Dj d!]}[n. {!b̿'jxfl9eѢEw_^(Y :Pj d&kINm>?{zp ]ḵ¼ّP  DˬY3e4L|\ 39".Y駟䎇\n Bd Zt3 oɟg~ ?Viv7Dj?\TUgkh,O󽏼 cg~~S~,ǹ|v#*g&bNo}W\egh M ]3$e<X 6cyi(o^^fdlA& pr,ߛdR͞g2/VƟ5aҭCU <gXێ;TLfj`⩧8}J歜O9=C(ͯNl?rg c0|+0RF3=8zAlْW_w8c"X]<Yh+ͲrknnyQeQm3Wu9rͿ^n]Nfd6@|J1E)q ,X=tņ o[UEjp˗شdSTΪD̡G rbqa3%SArǖpU5>O<ܛ빬Pfo\T 4mi`_ב2 >Xʄ0OKG}tI OeVx!lYU^OJ5o'ƖԩS.]<9T3(XaӢEoVH)x?y|yk?olDd̃gd`Fz<a;EM}u&p{hSW_1xLń9*QV1|pόfʅ g2/E@Pr!OK _GX9Կ?oW?IbellLٳgg2N{7d*mR9+/_Ÿ-uR-4ŏÿ0diHZ Pa^1CdyG|)d "̆[nit?;)D@BrS=%7ycV,~eyh-e!;uX !(DI9PL"co]57R0 ,)!]֫TRFQج6 c{XdEp8L#G3A mU,Ƙ`hѿ{E%-oiyn#_Sl`6lݺ p4 7dԊzT~IU' nDwo+X]jٲ7|huGr $q5}[ OxkVy(AkkQGk׮GQ0 3# Ktf+Fz_W͏>c ]x$;w섩A6{yn=enQ_ԷKrmy_6mj ` ENR(zA揍i4C <);/3<;G0 R Уwp,> dɒ%Hvuuw̘1=U40FG7Ut%〰H$s@ϝ;`5vEI^$(vn 3:ݻb~ qJg'zGww7m+d̬J P9lbu)S^}DO?}*XE aXK?~(yNsZ {䑿 7@RKK \2Pu,Z*ߠJ峢;i5rէ~a##ayܮ[ONz O3gjdym۶͉hg'C_H%LUd윻śx�6owΜX@$"}⏭+k�Fp`x{}y_ße#�^@pznukL&|1 $z^ZbxD'~J xT@9sPVcc̙`cXVXxzh {C*VjVL OQ`˯7OoS/XSsΧ1o}ONA/+FclgbX2X,L)ͣ1T9“>v̯BaWkGϗ^zy3x搀-{zzyg[4;Ğ<LN5 %sTG$缥e ŗ_AK.^v-o V>>{cmڴ ne9#p`qB2{Lp@]£omnݺ a#*H_4/]qy6-s �p�2SФ`[l%_!,TȨdcc`|itz=m`/}J/1AIғN:@O$p<``ЩB{w#n6 =ܰF/U2x!]iFH׻(F\kZV}WN6#!={w O`kkW> އ=XeGW]G6o{Ն!SNٰIQss eV]]fw: kٯژ] 7ily[qꩧ`^qO؜1sd={;DvX`RUL KV07Xj۶y}cTZ:@y`gMgg'W:[xJzRELitj_ь{w򒸠I/%<hud \͒9 wvv$76{/Rwpx޷`RORbŊB6K$z.µFsVCKhfe/(> aRft2VeT DoXbmi U akl򂘌OU8zU2nJ0a-5k455^, /d3.&^]ƛP +tA` 8uJ7.2)bɈdA)ooii 68҄>vȧzdQV?577o^ϭe}F$EJSdkI:$&}3pyzꊟ]ʬY3UnTnW05L֧Wƅʚ5JfY66D/npeX9YYred|=Fa;T,3Y'/gϝ;;ACYl1`Ced:̧3Ȭbu0*4es)#q-Ovҹc.]66 lj-گ|'3 (x"Ƙl^^c7}ݿ'4~p6l#x@_a0iҳ1(ZOc0 軽V`nȰ khh eYcR߂sLo>s!/ éKvH$vj47,WÆ!K`2dQ2JzT&%Jx{ͩ#2ko/˔)Vro˲H P&7n3fJ^C6ޥmq)2&$ ( H&D2JΚq ϭ c@W *%?W^CN �t:O^1A1(ȦNEL&3kI)a]]`s�{86=Ѥ5؎x<v/ iO'e Ǝ= wR#Xq,^eHG1coe]]h 0xD8M(tj)M<W*LOO0:L38e{t~_vZݛߪmH8d!x548EȀɛF@]/Pz4N^,kRL;fDGxy{[32κB#+:ɮ]O�tS TL.Ha O9@li immyf^4»j ;>Acgr? û}N(^ṚxRX9(,=7�x<6w={_}աC%J7&+Gj|Ҙ(MS"`H#hECY>mg(wdΝrr9~;'f۔D6lx3/O6Ͷ-00♼t߳<Y{onuuu|=+S1~ 㻗 Lx #( Yq$׬C;PI*p-9<A.!~? pC?i0G̅[�,Ӕ/Xt挰) \nx)ݐX#ujye /$}nḿ &ڹ ?={vOx$ӲJ<ԃHA9G4?Nk@[mY'b*`2Ƥ\V:aupDDB2hPH uU b̒9Ke3"|YVobd}y睋 8I|& gzlL"hj8MJx-3=LoySv#LLB&uǎjj!&?IiKfPSKhK/=͛w{~RŦ_[YC&M6# FFseј5sΪp`LlD`%:I=M{6S<+-e,kI|I`/æ>uNgGOҏ=$~O oo{&40$Fu%aI#gcM$<+-@-Hߣ{"i帢ʁcnt F8W-i/c_ǵox0gƟl2=w]Y1˖`GNsYFPYv[ŶeK�`]Dyw-Ѹ.C=_xnȞ.*q2d2v4uR0 U?|e4Um4*dVNZ`f֬&t%gE6m/:Vg%*,czީ:\z@C5oW?ޮXnJ*@֘RZ>$%E+CG,?:TK-c7Oo)J$)9[»-K-Ce5r#*\a`~{uttuu%ͷ9>l[^ǘ9$&EKAз#MZ8*h`H i U&}같Fi/#g5ۛnOCmdGؘYT@碔6E�cKSYNf 4ː2%H(?V N3B,kz\�LTaAKbL_W g:[J5˳B @axޜ%bQK|']֬9[o==sN ]5Zļ")|s164ʥݣ Ef#Gڹivgg [¶Ѓh8ӆ SpZϐAñ49xνh^pW}m 8O~| C1<&~&{02r譜Z2WQVug᫗<y4J= h*aMW&(2SLe* 2eȔ &FSb2In/U< / X\pWFc]28m&Gi8[ָ^4Zt.Ϊ#1!I Eb\_3?+@PLpX*VˆpH >  ,`"lr_2z x ,ue]}8!A<!ArEISP]]0CML A c;+'J97ƚR!� A ,$MzB( !-#`NV?>4/Si'�X]pҠw{Yr+VuUX<1(~YdGDJnj`o|p]~sycM")"%Ak1J)zwJyaQ?&+v�&|'�+$XE#1ÉbQVNn�~C0,.<E;mocY[@9Nd˸b+ g Ż]x\^ճBf ։򓧆n<~5uz0X�~ǯ)Wȵ�/%@X� T\ *)wY7K`r9nKhj4'un@ zꉲz!,H+�I}j}mo2<WeJٶ&0f`yMdFm߫kw7Qw\W/ C[4q.Tsz7&`T[w*p:Yfx~ S '-GG"?  XCJ;bz_?~5b+"wS2ciHdL�,CΛ}SnnPQZkCf ӎ9{SNrs@6(p)k SNVהNng<刟 3F8>XF።{rmmƭ~ lo8"jisCҪycLwv}qeq 9L##ȯBRIhm>V,fCHq6 4ZTI!}9"̒^]3DOҚ3CΘ1U{?ڵoֈ>δrЯVKDC0T�B pP�\~B@hؠм6a-#QcK/d&tBsClZ /e4"Q0ۆGmv 'mݺuR fȳs*+uѱfn8"`;10J`�3#z.f|9$I@)x}+XYShHN= p9f,์.Ȱ9#໕LDJu`%@ GHQ7"@,n@рFu `WtRʵ^uyohjk>#f<te 8)6y"+8:3sC@]8"짭;xg+{P\6R・;ZÎY@X;x7 `N?Qt9~ᐗ3r!3~yh8d\W]HdRaD:)Et8 DŧipAmٲYLmeފ,l ?3ߐCa�S8 cGePzm/"M|5 rT[V / `iCf^z; 2Ψ#ӧϞQf=ςe̩(/7Y5Mb lΘX[dZ~ E5gSƬ'y#e'096͞tuTEg�*"ܯr{oϱ Ƀ3GlSnf2>#ơ a#/BN2k+B6uMFvE,D̕/<L[ U9Fv!˯WPb-w.y-y',HKH7D5Ga4+ LTB.'- 7dƽ ЮʂqRah`#g,>w84vUq{;L6XX;sMAt],PBS{k%QnEsrwH#n#J!~b~k2)AnD�Pؘ5#uS%POms-]p3up#4K i6sJ _?z'>y[K;uM.j_wS]c �sUy&ek"UBiM3?n|"BhER9AaJ7U$\G2C i(5kVb#-J.b/쓛6m?æRG9)&ّTRPu^<GjǙCPoխC|J3d,f46.WE(&UjN`FY0"pe׿ P1Yss>voca'ܔL  _J@`bzXDALJ7R:xTFCW[QQЙF�7[58@ ӟްv1<a~۷&^U([\[[ʬНvPF+vW#a8s(lFi�ShW2Ρ\WWwg>Sk_a{Mgq[o&UǤ?/s@/^]GȁˆH[jmLF9AiZRuҲ?9{Qܳ~y2Y<g>5PL4N^\S J(V;9g,BE4Kל p kL.`i#ymGJPar]w}% wnsRtK+;5hbWŠ\×mY8D^08HJz5C ,8I7RT::hQS{864:|땦ԽjZЄgiys(,b* �O QrYEk`U Bnڛ1.:qѰc($##<3t&K./'>5X (Twjd $LYT@N6P*?GY';dLF2v^Y"&lTX A!cEa>,8qf@CBvsú*im۶?4h{4iN X*WÍ ,P\E.q te[Y  &TtZSv:8Si]VdsvbŁNT"(̵�3RXP,ֺv1EGqcmb8]8ed-*ZR 'MchE؂iC TNdNBY�%%?Ł ;aDNsѻ)x# /#aqPlXXOOW利vF#_b\n6 Ɉ+^vʅơآRpF&"J^);w+T0`LZ% 9ǹa$ցhOWjEr+8Y*l Pr _\j.2W8k+ 8U R,qq xB,.XdrB oEvQe$n�YI�J pK! ل- ^Ru=Ԁjq!Blk<Pٖ-[¿2u+̴<R/Š:]c[h# q%69帓68+t=lN`crJx.2ٟSn;͍JƔϜRNSjd8ڕIgggYOcƗ.xpQ8|R缤�Z}%sz+B͈ڐ-҆hFbꆅ+a=QRs@/)ape4yh*$[s Diu ~,ӟ/Zڃ[I'Ï馛'< zѮ^( /ܡJEY0gu4\P3TWBu!n Kډb;P\-Gq8 ]mI #(ҰCey�9UHu"g3HSq"E-!f7]?kŊ'x 'jyH$xos{5퇐)1{bL߶[tǕt{WQ GYXH92ʬD"cF.yٍ#lO.֝$<@ĕbѳ$܀bE@WB{h)iw:6 /lUW]p1,_XtK,M/tXF|drxkX׸:Qz qhb(ƙmJ*vA8HA>̢#,CQ{4rYҟa l2lTڗn,P qR 2V43ߘ]it{8HrHƹ?#҉WƒOSڜꔅs;HO`3fDX,7DQ+ c :CNA;1R{O*V-fJIFcD]  <-\&% 9z^ZA À, fYzFsq<Ùag9Cl(8{|8iM qoAZqu(r-isPso>ڳ)R(uHH:@!O#ؑZpgqU&lq$~Ae%r#b*AK05$Hl Ԥ--K-rb) d<lBe�Oq_n@i;CrkmLrJJvGsĀ]S"j*kJO[GI]o2Kr4c:RoL0JdAL}4U$cU0|OaTLdS fB"Db)ڕ(�Lp�|ەc?jȜ5ݭХ@i( W|GǤו.R[T!1 1МP;kg9H10T(9E#xBpɌ3_hwn*~g"T(NEm-K:s4R Eπ47#襃Nk*/ !_C4Wpbԍ>JrJ,f8 NNKmyپ�mOJŀ"xٔ KKq>oՍP}gSbV36̵ plP{,5%73B ğ&:7*ҤBqK5y!!nE�^-ݴ?΂Ӝ|n9U" vA\Ûghppo,搽pbdPQjFW < 4iTߗQ JxKSA)lRA)2:P-j 8[V<\% JPlSo7cМ2N^EG뢺j@) 9NQeEP%`7 BEUc XHĴ&amͰӌuܰ>pRK,C$x))vgB0A]&myխeoU\?zhxmiH t:i<�ӛFVOu~jye;S m25R^#Xj¢b|rxjsI[|vR1;=fN �^fVK,`JLT“Sn�6X29pHdm60q XgM NU*aQЛF%$w"U60IKhzl ꈰzx,[Fzƽf.^m%1D_ Igú7SV8&xuxM�&<6Y2`˜vcZ9"3oX<M>~n^Ho9L[WiT%%_] (y숮yN :XdrqSI'L gi*F䑥W\vQk �aX-Hѣ:SbsjWw!Ud9$`2%oO~򯫴UѐXPU]X0ZS39tTsS%{+8+AE EQՕ|ל-F3h�eJdI]ktw�қ΀ T)&Bᶐ9j794X)iԉ=IՓ у=+);⎧�vyUn!䔨 S󘺐 )x*b.!͝s'؎siO!{HZ"eNu1B k?&2*D+Gҹ:Ob3p !tjF/WpCJ7fk{x9"Ma]IW!3)qMZ:JсwG/f5H@8t4j#zê8Ci'c4n E* ԼX &\ĕF4l kmmNk UPSL^q~ps5'9V9rnHd7+%Ð`e2'1Y_ hpm>x<p2FH�eez9Cɩ9~mE 2>S/ߙrs̊ p hWE] >.c kRAFFI9)HceFtW5 Hpn8d0 H3BP@)t␬2M =okL`_TCe9A "i`ԃDaq&՝.M1p9L$Ӫ-ڼEɇ#yઃ4#bxU|$<}dUN-d\y~$CLEV'[a><%tgF҈dQYu C48j8 Ҙ{ b̛[:}77STvt _p2cQ2N;*M><F4OW)6piPl�n5zu%su uT%W/X\+c e 8;+9³K!"xUe]a,=ڠ #A0{9,Hi eBp7Kvyr٩AM Vm'nHQ"#@hy3r Y &C*|\kL9q<kM5d܀DH$En;өZ&XITjBR—K{x |rJXեf<9g-<E'l׍3TQ ΂ |e(P=o5z|u |+M۰m(i9+&eR&eR&eR&eR&eR&eR&eR&eR&eR&eR&%hx endstream endobj 12 0 obj << /Type /XObject /Subtype /Image /Height 240 /Width 204 /BitsPerComponent 8 /ColorSpace /DeviceGray /Decode [0 1] /Length 2902 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 1 /BitsPerComponent 8 /Columns 204 >>] >> stream x{P<rD*!yd4`Fkb)ZGmR(֦&4Q`'iLڤƷBѩ޽wϞs~]o_yYō7nܸqƍ7l:8jd~];Z[O]bz ș7ᗛ'8zC 'fS~oʛ:]R/1KWO|]>bb6Lggh^EL�<¯ڇy]ZT'ڡ|EOdBfk")"/Ͷ xq/n#.ᮎEB\-�ͬcmF]橛$`G񨑱n,�n2*�dP%i/`�/ih]?P#5cH̑LiӦdHEͲZ,&#u3}ǀp(g9"3!*�߯Hwl V2Ѵc XFC&&h&&h?LL}H1j2c y2a bGfOc3P2یGm,@1W�b`Y յdQ("Xf|@ɸŸ%;Q%s:'iDsgƀFc!oF͛{pbnRPަC_-iί u a~$Aqj81#:8Wjی\5g4L'pbQKw;#}3pbک+816d,ipbXw6\�&8Dlj8Gˤ3NB[S3@6[l N d7&ܥb({z281Ţ\E'&|yi['0n>-m j.UYSXY?ȯord|1%HLh}5˟4Ĉ&mVp&ٛ<3e_pWv9C/=C);C�/J�Zd%cݎ_`쉳Vyv م xA܈\2u9!(v5�\'&^sX֞~ۉvY_&3}O+ 6[dg͙bU%WbO{o` WpHny1fI %ۙ ϝ#w^Y103xy0N=DR<Z�iO*�ۋRfJ(7y@L| ކz+5ekM]sJ<dJQ #_)1"Cc@)\ 95cM]d+mȄ>Iќ*ngQd-'W[@K6V&2^LQD(�\3xhYwD47\$�Bi]D+谹4E>/OPh KfH6*%%!K@y3; .&8[H)�@YA쁱?]c&VJg3U@VoL�JLrj$�1{,bJ/-&)z(�ŬGY7,{;H,A=SLd"�̕!R gc% >1eģp0 gFs05 [&�t1mPg:WJFOU2m]zCjg2|qӈa'jA4J[=Xؼ=+&ii1fΎƌQWnRNev g!p g>\b6![M;�gy!&|i:3dF*cȚbƿ? o3Sig|Z^)eb}Gi.X榇'9=΢0jD'9Eݯ1EH�0!;Y tC? Og|(:  kGjI,^P�<ܨcAj�3LW=B)F$#Yޑ�;/C0k5J1_0wY)*Xpv_z�gM.Kp~s_CBoF'1/CD#$~T}I +b-?ă}>mQr129[I�C#`k652v/'1fqw=*DaïWɦ5Yj+Ŕ o<+& ]sM?W8 K&~h Q>_\1Z7,"`h\q;aLtԯbxek\T8;̎5ca1۟1ymvvu#ALKI/p 3ݱPپмZۓZ pY]_=X#67=V1d~F{}yɭFˈ҂ģo~|%o5ӛңTRu{'>Q@` £ěp?'/3A?Fa%$C[jXB'"hs9JgeOL},-ΌwJxy|ܬTxVX[*Y/ɹY$c6<G314O}/홯 KqU~dz%oE$ukUq#M]ly^[7]:m!/}RTp!|p1䧏);#7/,0 ?{BO�%﫛%e˭|4Af$Fh9pOŷpZFݹwnX62 rߗZ77nܸq/?oh"S endstream endobj 13 0 obj << /Type /Outlines /Count 1 /First 14 0 R /Last 14 0 R >> endobj 14 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 13 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 15 0 obj << /Nums [0 << /P (1) >>] >> endobj xref 0 16 0000000000 65535 f 0000000015 00000 n 0000000262 00000 n 0000000463 00000 n 0000000520 00000 n 0000000571 00000 n 0000000843 00000 n 0000001011 00000 n 0000001321 00000 n 0000001363 00000 n 0000001411 00000 n 0000001463 00000 n 0000020773 00000 n 0000023941 00000 n 0000024015 00000 n 0000024140 00000 n trailer << /Size 16 /Root 2 0 R /Info 1 0 R >> startxref 24185 %%EOF ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/image-png-implicit-width.pdf������������������������������0000664�0000000�0000000�00000057777�14163570564�0025767�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20191026002226-06'00') /CreationDate (D:20191026002226-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 13 0 R /PageLabels 15 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 112 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN q 153.0 0.0 0.0 180.0 48.24 625.89 cm /I1 Do Q Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << >> /XObject << /I1 11 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /XObject /Subtype /Image /Height 240 /Width 204 /BitsPerComponent 8 /ColorSpace /DeviceRGB /SMask 12 0 R /Length 19044 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 3 /BitsPerComponent 8 /Columns 204 >>] >> stream x e7U]}LLfr$rp�ASdA%x*ʺDPs<!#r $${&sOU9jjzyh:5u~>2)2)2)2)2)2)2)2)2)2)2)2)2)2)2)2)2zc}/]R|RVJӦeiBd$Z&A6NX[ i"˕ƥL/HQ\mýD$P ð, U7)Urx mjd R ' Ӵ@/Gd_ᕪz˚p~>'06Fiw4 <SX5~nc>\&" J+3[�k䩂)Yl6Xmۄ3X?TF9|@ `P( 3Xf3T*�<G=Qp6%aer$dp8F#0H0ӧ/g)elLJlT™8E"PZ+ Ɛ@N>8 3@*'>3g`0�`2s>p�CE]zyO4@aԀ\DeUf@VzS Ip@ ,@BU\&Ȁ/*{8\Ee\04FXY-2%TFxl6$ d2�8Vyc!6 rW Ni8 (KBeCQN@탬 �R�pLa2iߏ7ΥAiՕ`z�C@cj&ڀLU+#lo) XEHQ~�d96U?j/<[ ,a1=[U8ֲXxC ӕր>48AV[TKRqSU_2*蠎}6`ĵXjjJJ-5d? 1~Iʱ F"h Rʼt_*v9dvIFyM4 LGөDJEQZ-kdw򇩀Ȁl!J)=Bq@Jcy pVZKfY͂lv)^Ё @)-T3-k{@uꢹ\Q$gdǯFY#1 2 :#A\Qz#?1`/b sG\W.\1 RCWp-OqJ{{}&T _dBte@#pH'+^L�M&ScJԂYL6&ys<�k3C7sb|YN{? I+'on7p{Vr0+kjO׾ǁr4CC]{olڻwW34-[z�f xZ;vʫc/Y.&5'˗~\PX<^0A\.F:&/)Sp|HF.&E9s ݭ[lҗ+::첏RKxs4>ASN |߹䒏oOE$d}}pΜ9~P_bSN]ri]2FҠmԩM ,x뭷+#5.K,wSO=e@ B7) fV}}Cºx?ᏯlΜXg�vE{ 5ahI'.pk߸b6;;g}~uJ2z߅r(w|ZW‹iYrRP(mxo=Iv.N^:644N>c}uם{}[1:;;+_`(o5k…Ο�v{w7{饍ӧb_%7VRҲyqW H$ >i֝˯z[Yz݂Cꯏx 5 ChiӦz9nڴrѢE/*jE[.Lc ^z &Pg`0}|r}}Jvٲ� AkX`X]CC}"%|k}-ӥV0\Z2%A=,>d7; l9iӦ6446�hV>j֬Yw7{N+�롇e ei ^i^?�"/FAH hmme3Huww$a;*VX -[ *d˖v}sxoN%L2]{mo<9xэF25bZ+( [T�¼O?yw �|zC먐V۾}3H޽[cNl#f>k.H4&?@<�N0~{{耍wqrB* t4d0(; :qM0o~3\l,ZW>Rώ?kFf̘>l}ݏAly W6d ,}�ه>AشeoWV n*.]:2}rzĪ3EXaC]!ƀ8ygl^{-�\vITJq{Ц}IqGhf[)HV"ٝ9iGZ~#~xwGdFxDY/V^yURt$ol\u7Œ 8;֞ntMmxn~Y'{c>׸4#L𚥶A_H$z�gVog!H1dqC,[kj wڥ3˖-?'qw#ZY#%ʕ7ky]O30�'Nu\8Xcdi&Ki vߒ8x{J<ʜ߯v�O>dؔio?ȥ~bDP MO'�2;54`nJsf>WW<_ҠiMl;b̊ܬ6q!:XGvεQS5҅yk|UsYh-&5]hZa }RW�^ =BTPk_kZg?dvm淮߶}ln2D"GN\`$/�"Lj.@&aAAcǠG]*O.Z&9ז.49e$@VҶb<"rzkV.p@MRJ9 b9leHuљS{.մ�BA}grń$_�8 < r䔕l.μk?!:7< 2.<>xNl A>=*XrDOsHݞHw2T󘃊>0kY]R"HR̛*_1L (%hJI)e F2Ɇǻ|kj\LAzYlXmey4�]󁢐]�0$pb`Y�/2f20zs[ƘPP{?^F$ 2o"fh,�,JؘY S,Rәhj񨈘 .dkڰ P_c_r� `ei]XPjfȰiaXutM;obSs L[ c "��pR:a&0KaZw7"{*)Q1N2&9t _Lm,0a~rX בvƸN.2ȼkô;S{ JS@i8sN!)ͶVz2ִELASNɔzcgapP( fxrLwfB}ڎ{XPlA6JG24jE{. ^`Y>ٽnSdCTF#0i &mѝw ?LPD #@ Mo8AE-C`Jk[C̙d]|IHAfs/ȽEN8aaa긃>㉮?Ȃ`4mhh:iʔ)Di!K?g(rjd`IrJġk?\LtFec\ꃁ ӗeYַ^xftJCPf02#IQZ91kuK3gd`+E"a1;By%ZhsCh[(b.xCǞ^~S[|1~|joOٲ;Ւ5;d8 i(a=u\*/!P{ !{"Rt:F#8_ kdyL0{lTF]U9Ri GD @xXD ,PÀ1+di4 J9L:_jx9sv*.Іq#3<G?w6�2�XOOwggg<4V@oܷ{ ͜P Ci2uԍl*b2zi0|*ω1q1[練W:@}C,+عq xLZ,VY( Ң@~9N L8Eu 7Ms Im%:]Viɠ 8LrHj㵒o63c@Gf( 0-qmXN[<C9ˮH8cNA!�-[{S.p 07{Z*] `^q:sӷ]-~hT1M OvEq�Md ÷`\. ɌY-C7^Z]66$&2adxq"AZDR9~21m^u̝,L[b{|%tgg;5{|'>e?Af: Otdf�M6YQ45u9@ EJtѸ< {Mh~h{Ù~_@&gL vttn4_aW� �8V~͘!U=Sd_`.0ZZ` e'ӏbϑ@e2  ɼAN9Gsm d5XjO<cQ$01u c't;PZL2T𞴢ؑYgkj?+?Zc2Vdқe޼97<W7�dd pi+WRD[.` Ne{ʴKzH~anZ0 /ühO}͚cz\8"ـS͞={�J*Y:?iBgNor`; QdA?|Q^xY L>)K뮹 hf 2`m ;i I]>~C؀_V>zYd�~?+x7cMzE pC]-k^‹\ 0:w(/w֫Dj d!]}[n. {!b̿'jxfl9eѢEw_^(Y :Pj d&kINm>?{zp ]ḵ¼ّP  DˬY3e4L|\ 39".Y駟䎇\n Bd Zt3 oɟg~ ?Viv7Dj?\TUgkh,O󽏼 cg~~S~,ǹ|v#*g&bNo}W\egh M ]3$e<X 6cyi(o^^fdlA& pr,ߛdR͞g2/VƟ5aҭCU <gXێ;TLfj`⩧8}J歜O9=C(ͯNl?rg c0|+0RF3=8zAlْW_w8c"X]<Yh+ͲrknnyQeQm3Wu9rͿ^n]Nfd6@|J1E)q ,X=tņ o[UEjp˗شdSTΪD̡G rbqa3%SArǖpU5>O<ܛ빬Pfo\T 4mi`_ב2 >Xʄ0OKG}tI OeVx!lYU^OJ5o'ƖԩS.]<9T3(XaӢEoVH)x?y|yk?olDd̃gd`Fz<a;EM}u&p{hSW_1xLń9*QV1|pόfʅ g2/E@Pr!OK _GX9Կ?oW?IbellLٳgg2N{7d*mR9+/_Ÿ-uR-4ŏÿ0diHZ Pa^1CdyG|)d "̆[nit?;)D@BrS=%7ycV,~eyh-e!;uX !(DI9PL"co]57R0 ,)!]֫TRFQج6 c{XdEp8L#G3A mU,Ƙ`hѿ{E%-oiyn#_Sl`6lݺ p4 7dԊzT~IU' nDwo+X]jٲ7|huGr $q5}[ OxkVy(AkkQGk׮GQ0 3# Ktf+Fz_W͏>c ]x$;w섩A6{yn=enQ_ԷKrmy_6mj ` ENR(zA揍i4C <);/3<;G0 R Уwp,> dɒ%Hvuuw̘1=U40FG7Ut%〰H$s@ϝ;`5vEI^$(vn 3:ݻb~ qJg'zGww7m+d̬J P9lbu)S^}DO?}*XE aXK?~(yNsZ {䑿 7@RKK \2Pu,Z*ߠJ峢;i5rէ~a##ayܮ[ONz O3gjdym۶͉hg'C_H%LUd윻śx�6owΜX@$"}⏭+k�Fp`x{}y_ße#�^@pznukL&|1 $z^ZbxD'~J xT@9sPVcc̙`cXVXxzh {C*VjVL OQ`˯7OoS/XSsΧ1o}ONA/+FclgbX2X,L)ͣ1T9“>v̯BaWkGϗ^zy3x搀-{zzyg[4;Ğ<LN5 %sTG$缥e ŗ_AK.^v-o V>>{cmڴ ne9#p`qB2{Lp@]£omnݺ a#*H_4/]qy6-s �p�2SФ`[l%_!,TȨdcc`|itz=m`/}J/1AIғN:@O$p<``ЩB{w#n6 =ܰF/U2x!]iFH׻(F\kZV}WN6#!={w O`kkW> އ=XeGW]G6o{Ն!SNٰIQss eV]]fw: kٯژ] 7ily[qꩧ`^qO؜1sd={;DvX`RUL KV07Xj۶y}cTZ:@y`gMgg'W:[xJzRELitj_ь{w򒸠I/%<hud \͒9 wvv$76{/Rwpx޷`RORbŊB6K$z.µFsVCKhfe/(> aRft2VeT DoXbmi U akl򂘌OU8zU2nJ0a-5k455^, /d3.&^]ƛP +tA` 8uJ7.2)bɈdA)ooii 68҄>vȧzdQV?577o^ϭe}F$EJSdkI:$&}3pyzꊟ]ʬY3UnTnW05L֧Wƅʚ5JfY66D/npeX9YYred|=Fa;T,3Y'/gϝ;;ACYl1`Ced:̧3Ȭbu0*4es)#q-Ovҹc.]66 lj-گ|'3 (x"Ƙl^^c7}ݿ'4~p6l#x@_a0iҳ1(ZOc0 軽V`nȰ khh eYcR߂sLo>s!/ éKvH$vj47,WÆ!K`2dQ2JzT&%Jx{ͩ#2ko/˔)Vro˲H P&7n3fJ^C6ޥmq)2&$ ( H&D2JΚq ϭ c@W *%?W^CN �t:O^1A1(ȦNEL&3kI)a]]`s�{86=Ѥ5؎x<v/ iO'e Ǝ= wR#Xq,^eHG1coe]]h 0xD8M(tj)M<W*LOO0:L38e{t~_vZݛߪmH8d!x548EȀɛF@]/Pz4N^,kRL;fDGxy{[32κB#+:ɮ]O�tS TL.Ha O9@li immyf^4»j ;>Acgr? û}N(^ṚxRX9(,=7�x<6w={_}աC%J7&+Gj|Ҙ(MS"`H#hECY>mg(wdΝrr9~;'f۔D6lx3/O6Ͷ-00♼t߳<Y{onuuu|=+S1~ 㻗 Lx #( Yq$׬C;PI*p-9<A.!~? pC?i0G̅[�,Ӕ/Xt挰) \nx)ݐX#ujye /$}nḿ &ڹ ?={vOx$ӲJ<ԃHA9G4?Nk@[mY'b*`2Ƥ\V:aupDDB2hPH uU b̒9Ke3"|YVobd}y睋 8I|& gzlL"hj8MJx-3=LoySv#LLB&uǎjj!&?IiKfPSKhK/=͛w{~RŦ_[YC&M6# FFseј5sΪp`LlD`%:I=M{6S<+-e,kI|I`/æ>uNgGOҏ=$~O oo{&40$Fu%aI#gcM$<+-@-Hߣ{"i帢ʁcnt F8W-i/c_ǵox0gƟl2=w]Y1˖`GNsYFPYv[ŶeK�`]Dyw-Ѹ.C=_xnȞ.*q2d2v4uR0 U?|e4Um4*dVNZ`f֬&t%gE6m/:Vg%*,czީ:\z@C5oW?ޮXnJ*@֘RZ>$%E+CG,?:TK-c7Oo)J$)9[»-K-Ce5r#*\a`~{uttuu%ͷ9>l[^ǘ9$&EKAз#MZ8*h`H i U&}같Fi/#g5ۛnOCmdGؘYT@碔6E�cKSYNf 4ː2%H(?V N3B,kz\�LTaAKbL_W g:[J5˳B @axޜ%bQK|']֬9[o==sN ]5Zļ")|s164ʥݣ Ef#Gڹivgg [¶Ѓh8ӆ SpZϐAñ49xνh^pW}m 8O~| C1<&~&{02r譜Z2WQVug᫗<y4J= h*aMW&(2SLe* 2eȔ &FSb2In/U< / X\pWFc]28m&Gi8[ָ^4Zt.Ϊ#1!I Eb\_3?+@PLpX*VˆpH >  ,`"lr_2z x ,ue]}8!A<!ArEISP]]0CML A c;+'J97ƚR!� A ,$MzB( !-#`NV?>4/Si'�X]pҠw{Yr+VuUX<1(~YdGDJnj`o|p]~sycM")"%Ak1J)zwJyaQ?&+v�&|'�+$XE#1ÉbQVNn�~C0,.<E;mocY[@9Nd˸b+ g Ż]x\^ճBf ։򓧆n<~5uz0X�~ǯ)Wȵ�/%@X� T\ *)wY7K`r9nKhj4'un@ zꉲz!,H+�I}j}mo2<WeJٶ&0f`yMdFm߫kw7Qw\W/ C[4q.Tsz7&`T[w*p:Yfx~ S '-GG"?  XCJ;bz_?~5b+"wS2ciHdL�,CΛ}SnnPQZkCf ӎ9{SNrs@6(p)k SNVהNng<刟 3F8>XF።{rmmƭ~ lo8"jisCҪycLwv}qeq 9L##ȯBRIhm>V,fCHq6 4ZTI!}9"̒^]3DOҚ3CΘ1U{?ڵoֈ>δrЯVKDC0T�B pP�\~B@hؠм6a-#QcK/d&tBsClZ /e4"Q0ۆGmv 'mݺuR fȳs*+uѱfn8"`;10J`�3#z.f|9$I@)x}+XYShHN= p9f,์.Ȱ9#໕LDJu`%@ GHQ7"@,n@рFu `WtRʵ^uyohjk>#f<te 8)6y"+8:3sC@]8"짭;xg+{P\6R・;ZÎY@X;x7 `N?Qt9~ᐗ3r!3~yh8d\W]HdRaD:)Et8 DŧipAmٲYLmeފ,l ?3ߐCa�S8 cGePzm/"M|5 rT[V / `iCf^z; 2Ψ#ӧϞQf=ςe̩(/7Y5Mb lΘX[dZ~ E5gSƬ'y#e'096͞tuTEg�*"ܯr{oϱ Ƀ3GlSnf2>#ơ a#/BN2k+B6uMFvE,D̕/<L[ U9Fv!˯WPb-w.y-y',HKH7D5Ga4+ LTB.'- 7dƽ ЮʂqRah`#g,>w84vUq{;L6XX;sMAt],PBS{k%QnEsrwH#n#J!~b~k2)AnD�Pؘ5#uS%POms-]p3up#4K i6sJ _?z'>y[K;uM.j_wS]c �sUy&ek"UBiM3?n|"BhER9AaJ7U$\G2C i(5kVb#-J.b/쓛6m?æRG9)&ّTRPu^<GjǙCPoխC|J3d,f46.WE(&UjN`FY0"pe׿ P1Yss>voca'ܔL  _J@`bzXDALJ7R:xTFCW[QQЙF�7[58@ ӟްv1<a~۷&^U([\[[ʬНvPF+vW#a8s(lFi�ShW2Ρ\WWwg>Sk_a{Mgq[o&UǤ?/s@/^]GȁˆH[jmLF9AiZRuҲ?9{Qܳ~y2Y<g>5PL4N^\S J(V;9g,BE4Kל p kL.`i#ymGJPar]w}% wnsRtK+;5hbWŠ\×mY8D^08HJz5C ,8I7RT::hQS{864:|땦ԽjZЄgiys(,b* �O QrYEk`U Bnڛ1.:qѰc($##<3t&K./'>5X (Twjd $LYT@N6P*?GY';dLF2v^Y"&lTX A!cEa>,8qf@CBvsú*im۶?4h{4iN X*WÍ ,P\E.q te[Y  &TtZSv:8Si]VdsvbŁNT"(̵�3RXP,ֺv1EGqcmb8]8ed-*ZR 'MchE؂iC TNdNBY�%%?Ł ;aDNsѻ)x# /#aqPlXXOOW利vF#_b\n6 Ɉ+^vʅơآRpF&"J^);w+T0`LZ% 9ǹa$ցhOWjEr+8Y*l Pr _\j.2W8k+ 8U R,qq xB,.XdrB oEvQe$n�YI�J pK! ل- ^Ru=Ԁjq!Blk<Pٖ-[¿2u+̴<R/Š:]c[h# q%69帓68+t=lN`crJx.2ٟSn;͍JƔϜRNSjd8ڕIgggYOcƗ.xpQ8|R缤�Z}%sz+B͈ڐ-҆hFbꆅ+a=QRs@/)ape4yh*$[s Diu ~,ӟ/Zڃ[I'Ï馛'< zѮ^( /ܡJEY0gu4\P3TWBu!n Kډb;P\-Gq8 ]mI #(ҰCey�9UHu"g3HSq"E-!f7]?kŊ'x 'jyH$xos{5퇐)1{bL߶[tǕt{WQ GYXH92ʬD"cF.yٍ#lO.֝$<@ĕbѳ$܀bE@WB{h)iw:6 /lUW]p1,_XtK,M/tXF|drxkX׸:Qz qhb(ƙmJ*vA8HA>̢#,CQ{4rYҟa l2lTڗn,P qR 2V43ߘ]it{8HrHƹ?#҉WƒOSڜꔅs;HO`3fDX,7DQ+ c :CNA;1R{O*V-fJIFcD]  <-\&% 9z^ZA À, fYzFsq<Ùag9Cl(8{|8iM qoAZqu(r-isPso>ڳ)R(uHH:@!O#ؑZpgqU&lq$~Ae%r#b*AK05$Hl Ԥ--K-rb) d<lBe�Oq_n@i;CrkmLrJJvGsĀ]S"j*kJO[GI]o2Kr4c:RoL0JdAL}4U$cU0|OaTLdS fB"Db)ڕ(�Lp�|ەc?jȜ5ݭХ@i( W|GǤו.R[T!1 1МP;kg9H10T(9E#xBpɌ3_hwn*~g"T(NEm-K:s4R Eπ47#襃Nk*/ !_C4Wpbԍ>JrJ,f8 NNKmyپ�mOJŀ"xٔ KKq>oՍP}gSbV36̵ plP{,5%73B ğ&:7*ҤBqK5y!!nE�^-ݴ?΂Ӝ|n9U" vA\Ûghppo,搽pbdPQjFW < 4iTߗQ JxKSA)lRA)2:P-j 8[V<\% JPlSo7cМ2N^EG뢺j@) 9NQeEP%`7 BEUc XHĴ&amͰӌuܰ>pRK,C$x))vgB0A]&myխeoU\?zhxmiH t:i<�ӛFVOu~jye;S m25R^#Xj¢b|rxjsI[|vR1;=fN �^fVK,`JLT“Sn�6X29pHdm60q XgM NU*aQЛF%$w"U60IKhzl ꈰzx,[Fzƽf.^m%1D_ Igú7SV8&xuxM�&<6Y2`˜vcZ9"3oX<M>~n^Ho9L[WiT%%_] (y숮yN :XdrqSI'L gi*F䑥W\vQk �aX-Hѣ:SbsjWw!Ud9$`2%oO~򯫴UѐXPU]X0ZS39tTsS%{+8+AE EQՕ|ל-F3h�eJdI]ktw�қ΀ T)&Bᶐ9j794X)iԉ=IՓ у=+);⎧�vyUn!䔨 S󘺐 )x*b.!͝s'؎siO!{HZ"eNu1B k?&2*D+Gҹ:Ob3p !tjF/WpCJ7fk{x9"Ma]IW!3)qMZ:JсwG/f5H@8t4j#zê8Ci'c4n E* ԼX &\ĕF4l kmmNk UPSL^q~ps5'9V9rnHd7+%Ð`e2'1Y_ hpm>x<p2FH�eez9Cɩ9~mE 2>S/ߙrs̊ p hWE] >.c kRAFFI9)HceFtW5 Hpn8d0 H3BP@)t␬2M =okL`_TCe9A "i`ԃDaq&՝.M1p9L$Ӫ-ڼEɇ#yઃ4#bxU|$<}dUN-d\y~$CLEV'[a><%tgF҈dQYu C48j8 Ҙ{ b̛[:}77STvt _p2cQ2N;*M><F4OW)6piPl�n5zu%su uT%W/X\+c e 8;+9³K!"xUe]a,=ڠ #A0{9,Hi eBp7Kvyr٩AM Vm'nHQ"#@hy3r Y &C*|\kL9q<kM5d܀DH$En;өZ&XITjBR—K{x |rJXեf<9g-<E'l׍3TQ ΂ |e(P=o5z|u |+M۰m(i9+&eR&eR&eR&eR&eR&eR&eR&eR&eR&eR&%hx endstream endobj 12 0 obj << /Type /XObject /Subtype /Image /Height 240 /Width 204 /BitsPerComponent 8 /ColorSpace /DeviceGray /Decode [0 1] /Length 2902 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 1 /BitsPerComponent 8 /Columns 204 >>] >> stream x{P<rD*!yd4`Fkb)ZGmR(֦&4Q`'iLڤƷBѩ޽wϞs~]o_yYō7nܸqƍ7l:8jd~];Z[O]bz ș7ᗛ'8zC 'fS~oʛ:]R/1KWO|]>bb6Lggh^EL�<¯ڇy]ZT'ڡ|EOdBfk")"/Ͷ xq/n#.ᮎEB\-�ͬcmF]橛$`G񨑱n,�n2*�dP%i/`�/ih]?P#5cH̑LiӦdHEͲZ,&#u3}ǀp(g9"3!*�߯Hwl V2Ѵc XFC&&h&&h?LL}H1j2c y2a bGfOc3P2یGm,@1W�b`Y յdQ("Xf|@ɸŸ%;Q%s:'iDsgƀFc!oF͛{pbnRPަC_-iί u a~$Aqj81#:8Wjی\5g4L'pbQKw;#}3pbک+816d,ipbXw6\�&8Dlj8Gˤ3NB[S3@6[l N d7&ܥb({z281Ţ\E'&|yi['0n>-m j.UYSXY?ȯord|1%HLh}5˟4Ĉ&mVp&ٛ<3e_pWv9C/=C);C�/J�Zd%cݎ_`쉳Vyv م xA܈\2u9!(v5�\'&^sX֞~ۉvY_&3}O+ 6[dg͙bU%WbO{o` WpHny1fI %ۙ ϝ#w^Y103xy0N=DR<Z�iO*�ۋRfJ(7y@L| ކz+5ekM]sJ<dJQ #_)1"Cc@)\ 95cM]d+mȄ>Iќ*ngQd-'W[@K6V&2^LQD(�\3xhYwD47\$�Bi]D+谹4E>/OPh KfH6*%%!K@y3; .&8[H)�@YA쁱?]c&VJg3U@VoL�JLrj$�1{,bJ/-&)z(�ŬGY7,{;H,A=SLd"�̕!R gc% >1eģp0 gFs05 [&�t1mPg:WJFOU2m]zCjg2|qӈa'jA4J[=Xؼ=+&ii1fΎƌQWnRNev g!p g>\b6![M;�gy!&|i:3dF*cȚbƿ? o3Sig|Z^)eb}Gi.X榇'9=΢0jD'9Eݯ1EH�0!;Y tC? Og|(:  kGjI,^P�<ܨcAj�3LW=B)F$#Yޑ�;/C0k5J1_0wY)*Xpv_z�gM.Kp~s_CBoF'1/CD#$~T}I +b-?ă}>mQr129[I�C#`k652v/'1fqw=*DaïWɦ5Yj+Ŕ o<+& ]sM?W8 K&~h Q>_\1Z7,"`h\q;aLtԯbxek\T8;̎5ca1۟1ymvvu#ALKI/p 3ݱPپмZۓZ pY]_=X#67=V1d~F{}yɭFˈ҂ģo~|%o5ӛңTRu{'>Q@` £ěp?'/3A?Fa%$C[jXB'"hs9JgeOL},-ΌwJxy|ܬTxVX[*Y/ɹY$c6<G314O}/홯 KqU~dz%oE$ukUq#M]ly^[7]:m!/}RTp!|p1䧏);#7/,0 ?{BO�%﫛%e˭|4Af$Fh9pOŷpZFݹwnX62 rߗZ77nܸq/?oh"S endstream endobj 13 0 obj << /Type /Outlines /Count 1 /First 14 0 R /Last 14 0 R >> endobj 14 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 13 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 15 0 obj << /Nums [0 << /P (1) >>] >> endobj xref 0 16 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000001002 00000 n 0000001312 00000 n 0000001354 00000 n 0000001402 00000 n 0000001454 00000 n 0000020764 00000 n 0000023932 00000 n 0000024006 00000 n 0000024131 00000 n trailer << /Size 16 /Root 2 0 R /Info 1 0 R >> startxref 24176 %%EOF �ruby-asciidoctor-pdf-1.6.2/spec/reference/image-png-scale-to-fit.pdf��������������������������������0000664�0000000�0000000�00000057554�14163570564�0025320�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20190924000834-06'00') /CreationDate (D:20190924000834-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 13 0 R /PageLabels 14 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 595.28] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 841.89 595.28] /CropBox [0 0 841.89 595.28] /BleedBox [0 0 841.89 595.28] /TrimBox [0 0 841.89 595.28] /ArtBox [0 0 841.89 595.28] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 114 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN q 434.384 0.0 0.0 511.04 48.24 48.24 cm /I1 Do Q Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 841.89 595.28] /CropBox [0 0 841.89 595.28] /BleedBox [0 0 841.89 595.28] /TrimBox [0 0 841.89 595.28] /ArtBox [0 0 841.89 595.28] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << >> /XObject << /I1 11 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 595.28 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /XObject /Subtype /Image /Height 240 /Width 204 /BitsPerComponent 8 /ColorSpace /DeviceRGB /SMask 12 0 R /Length 19044 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 3 /BitsPerComponent 8 /Columns 204 >>] >> stream x e7U]}LLfr$rp�ASdA%x*ʺDPs<!#r $${&sOU9jjzyh:5u~>2)2)2)2)2)2)2)2)2)2)2)2)2)2)2)2)2zc}/]R|RVJӦeiBd$Z&A6NX[ i"˕ƥL/HQ\mýD$P ð, U7)Urx mjd R ' Ӵ@/Gd_ᕪz˚p~>'06Fiw4 <SX5~nc>\&" J+3[�k䩂)Yl6Xmۄ3X?TF9|@ `P( 3Xf3T*�<G=Qp6%aer$dp8F#0H0ӧ/g)elLJlT™8E"PZ+ Ɛ@N>8 3@*'>3g`0�`2s>p�CE]zyO4@aԀ\DeUf@VzS Ip@ ,@BU\&Ȁ/*{8\Ee\04FXY-2%TFxl6$ d2�8Vyc!6 rW Ni8 (KBeCQN@탬 �R�pLa2iߏ7ΥAiՕ`z�C@cj&ڀLU+#lo) XEHQ~�d96U?j/<[ ,a1=[U8ֲXxC ӕր>48AV[TKRqSU_2*蠎}6`ĵXjjJJ-5d? 1~Iʱ F"h Rʼt_*v9dvIFyM4 LGөDJEQZ-kdw򇩀Ȁl!J)=Bq@Jcy pVZKfY͂lv)^Ё @)-T3-k{@uꢹ\Q$gdǯFY#1 2 :#A\Qz#?1`/b sG\W.\1 RCWp-OqJ{{}&T _dBte@#pH'+^L�M&ScJԂYL6&ys<�k3C7sb|YN{? I+'on7p{Vr0+kjO׾ǁr4CC]{olڻwW34-[z�f xZ;vʫc/Y.&5'˗~\PX<^0A\.F:&/)Sp|HF.&E9s ݭ[lҗ+::첏RKxs4>ASN |߹䒏oOE$d}}pΜ9~P_bSN]ri]2FҠmԩM ,x뭷+#5.K,wSO=e@ B7) fV}}Cºx?ᏯlΜXg�vE{ 5ahI'.pk߸b6;;g}~uJ2z߅r(w|ZW‹iYrRP(mxo=Iv.N^:644N>c}uם{}[1:;;+_`(o5k…Ο�v{w7{饍ӧb_%7VRҲyqW H$ >i֝˯z[Yz݂Cꯏx 5 ChiӦz9nڴrѢE/*jE[.Lc ^z &Pg`0}|r}}Jvٲ� AkX`X]CC}"%|k}-ӥV0\Z2%A=,>d7; l9iӦ6446�hV>j֬Yw7{N+�롇e ei ^i^?�"/FAH hmme3Huww$a;*VX -[ *d˖v}sxoN%L2]{mo<9xэF25bZ+( [T�¼O?yw �|zC먐V۾}3H޽[cNl#f>k.H4&?@<�N0~{{耍wqrB* t4d0(; :qM0o~3\l,ZW>Rώ?kFf̘>l}ݏAly W6d ,}�ه>AشeoWV n*.]:2}rzĪ3EXaC]!ƀ8ygl^{-�\vITJq{Ц}IqGhf[)HV"ٝ9iGZ~#~xwGdFxDY/V^yURt$ol\u7Œ 8;֞ntMmxn~Y'{c>׸4#L𚥶A_H$z�gVog!H1dqC,[kj wڥ3˖-?'qw#ZY#%ʕ7ky]O30�'Nu\8Xcdi&Ki vߒ8x{J<ʜ߯v�O>dؔio?ȥ~bDP MO'�2;54`nJsf>WW<_ҠiMl;b̊ܬ6q!:XGvεQS5҅yk|UsYh-&5]hZa }RW�^ =BTPk_kZg?dvm淮߶}ln2D"GN\`$/�"Lj.@&aAAcǠG]*O.Z&9ז.49e$@VҶb<"rzkV.p@MRJ9 b9leHuљS{.մ�BA}grń$_�8 < r䔕l.μk?!:7< 2.<>xNl A>=*XrDOsHݞHw2T󘃊>0kY]R"HR̛*_1L (%hJI)e F2Ɇǻ|kj\LAzYlXmey4�]󁢐]�0$pb`Y�/2f20zs[ƘPP{?^F$ 2o"fh,�,JؘY S,Rәhj񨈘 .dkڰ P_c_r� `ei]XPjfȰiaXutM;obSs L[ c "��pR:a&0KaZw7"{*)Q1N2&9t _Lm,0a~rX בvƸN.2ȼkô;S{ JS@i8sN!)ͶVz2ִELASNɔzcgapP( fxrLwfB}ڎ{XPlA6JG24jE{. ^`Y>ٽnSdCTF#0i &mѝw ?LPD #@ Mo8AE-C`Jk[C̙d]|IHAfs/ȽEN8aaa긃>㉮?Ȃ`4mhh:iʔ)Di!K?g(rjd`IrJġk?\LtFec\ꃁ ӗeYַ^xftJCPf02#IQZ91kuK3gd`+E"a1;By%ZhsCh[(b.xCǞ^~S[|1~|joOٲ;Ւ5;d8 i(a=u\*/!P{ !{"Rt:F#8_ kdyL0{lTF]U9Ri GD @xXD ,PÀ1+di4 J9L:_jx9sv*.Іq#3<G?w6�2�XOOwggg<4V@oܷ{ ͜P Ci2uԍl*b2zi0|*ω1q1[練W:@}C,+عq xLZ,VY( Ң@~9N L8Eu 7Ms Im%:]Viɠ 8LrHj㵒o63c@Gf( 0-qmXN[<C9ˮH8cNA!�-[{S.p 07{Z*] `^q:sӷ]-~hT1M OvEq�Md ÷`\. ɌY-C7^Z]66$&2adxq"AZDR9~21m^u̝,L[b{|%tgg;5{|'>e?Af: Otdf�M6YQ45u9@ EJtѸ< {Mh~h{Ù~_@&gL vttn4_aW� �8V~͘!U=Sd_`.0ZZ` e'ӏbϑ@e2  ɼAN9Gsm d5XjO<cQ$01u c't;PZL2T𞴢ؑYgkj?+?Zc2Vdқe޼97<W7�dd pi+WRD[.` Ne{ʴKzH~anZ0 /ühO}͚cz\8"ـS͞={�J*Y:?iBgNor`; QdA?|Q^xY L>)K뮹 hf 2`m ;i I]>~C؀_V>zYd�~?+x7cMzE pC]-k^‹\ 0:w(/w֫Dj d!]}[n. {!b̿'jxfl9eѢEw_^(Y :Pj d&kINm>?{zp ]ḵ¼ّP  DˬY3e4L|\ 39".Y駟䎇\n Bd Zt3 oɟg~ ?Viv7Dj?\TUgkh,O󽏼 cg~~S~,ǹ|v#*g&bNo}W\egh M ]3$e<X 6cyi(o^^fdlA& pr,ߛdR͞g2/VƟ5aҭCU <gXێ;TLfj`⩧8}J歜O9=C(ͯNl?rg c0|+0RF3=8zAlْW_w8c"X]<Yh+ͲrknnyQeQm3Wu9rͿ^n]Nfd6@|J1E)q ,X=tņ o[UEjp˗شdSTΪD̡G rbqa3%SArǖpU5>O<ܛ빬Pfo\T 4mi`_ב2 >Xʄ0OKG}tI OeVx!lYU^OJ5o'ƖԩS.]<9T3(XaӢEoVH)x?y|yk?olDd̃gd`Fz<a;EM}u&p{hSW_1xLń9*QV1|pόfʅ g2/E@Pr!OK _GX9Կ?oW?IbellLٳgg2N{7d*mR9+/_Ÿ-uR-4ŏÿ0diHZ Pa^1CdyG|)d "̆[nit?;)D@BrS=%7ycV,~eyh-e!;uX !(DI9PL"co]57R0 ,)!]֫TRFQج6 c{XdEp8L#G3A mU,Ƙ`hѿ{E%-oiyn#_Sl`6lݺ p4 7dԊzT~IU' nDwo+X]jٲ7|huGr $q5}[ OxkVy(AkkQGk׮GQ0 3# Ktf+Fz_W͏>c ]x$;w섩A6{yn=enQ_ԷKrmy_6mj ` ENR(zA揍i4C <);/3<;G0 R Уwp,> dɒ%Hvuuw̘1=U40FG7Ut%〰H$s@ϝ;`5vEI^$(vn 3:ݻb~ qJg'zGww7m+d̬J P9lbu)S^}DO?}*XE aXK?~(yNsZ {䑿 7@RKK \2Pu,Z*ߠJ峢;i5rէ~a##ayܮ[ONz O3gjdym۶͉hg'C_H%LUd윻śx�6owΜX@$"}⏭+k�Fp`x{}y_ße#�^@pznukL&|1 $z^ZbxD'~J xT@9sPVcc̙`cXVXxzh {C*VjVL OQ`˯7OoS/XSsΧ1o}ONA/+FclgbX2X,L)ͣ1T9“>v̯BaWkGϗ^zy3x搀-{zzyg[4;Ğ<LN5 %sTG$缥e ŗ_AK.^v-o V>>{cmڴ ne9#p`qB2{Lp@]£omnݺ a#*H_4/]qy6-s �p�2SФ`[l%_!,TȨdcc`|itz=m`/}J/1AIғN:@O$p<``ЩB{w#n6 =ܰF/U2x!]iFH׻(F\kZV}WN6#!={w O`kkW> އ=XeGW]G6o{Ն!SNٰIQss eV]]fw: kٯژ] 7ily[qꩧ`^qO؜1sd={;DvX`RUL KV07Xj۶y}cTZ:@y`gMgg'W:[xJzRELitj_ь{w򒸠I/%<hud \͒9 wvv$76{/Rwpx޷`RORbŊB6K$z.µFsVCKhfe/(> aRft2VeT DoXbmi U akl򂘌OU8zU2nJ0a-5k455^, /d3.&^]ƛP +tA` 8uJ7.2)bɈdA)ooii 68҄>vȧzdQV?577o^ϭe}F$EJSdkI:$&}3pyzꊟ]ʬY3UnTnW05L֧Wƅʚ5JfY66D/npeX9YYred|=Fa;T,3Y'/gϝ;;ACYl1`Ced:̧3Ȭbu0*4es)#q-Ovҹc.]66 lj-گ|'3 (x"Ƙl^^c7}ݿ'4~p6l#x@_a0iҳ1(ZOc0 軽V`nȰ khh eYcR߂sLo>s!/ éKvH$vj47,WÆ!K`2dQ2JzT&%Jx{ͩ#2ko/˔)Vro˲H P&7n3fJ^C6ޥmq)2&$ ( H&D2JΚq ϭ c@W *%?W^CN �t:O^1A1(ȦNEL&3kI)a]]`s�{86=Ѥ5؎x<v/ iO'e Ǝ= wR#Xq,^eHG1coe]]h 0xD8M(tj)M<W*LOO0:L38e{t~_vZݛߪmH8d!x548EȀɛF@]/Pz4N^,kRL;fDGxy{[32κB#+:ɮ]O�tS TL.Ha O9@li immyf^4»j ;>Acgr? û}N(^ṚxRX9(,=7�x<6w={_}աC%J7&+Gj|Ҙ(MS"`H#hECY>mg(wdΝrr9~;'f۔D6lx3/O6Ͷ-00♼t߳<Y{onuuu|=+S1~ 㻗 Lx #( Yq$׬C;PI*p-9<A.!~? pC?i0G̅[�,Ӕ/Xt挰) \nx)ݐX#ujye /$}nḿ &ڹ ?={vOx$ӲJ<ԃHA9G4?Nk@[mY'b*`2Ƥ\V:aupDDB2hPH uU b̒9Ke3"|YVobd}y睋 8I|& gzlL"hj8MJx-3=LoySv#LLB&uǎjj!&?IiKfPSKhK/=͛w{~RŦ_[YC&M6# FFseј5sΪp`LlD`%:I=M{6S<+-e,kI|I`/æ>uNgGOҏ=$~O oo{&40$Fu%aI#gcM$<+-@-Hߣ{"i帢ʁcnt F8W-i/c_ǵox0gƟl2=w]Y1˖`GNsYFPYv[ŶeK�`]Dyw-Ѹ.C=_xnȞ.*q2d2v4uR0 U?|e4Um4*dVNZ`f֬&t%gE6m/:Vg%*,czީ:\z@C5oW?ޮXnJ*@֘RZ>$%E+CG,?:TK-c7Oo)J$)9[»-K-Ce5r#*\a`~{uttuu%ͷ9>l[^ǘ9$&EKAз#MZ8*h`H i U&}같Fi/#g5ۛnOCmdGؘYT@碔6E�cKSYNf 4ː2%H(?V N3B,kz\�LTaAKbL_W g:[J5˳B @axޜ%bQK|']֬9[o==sN ]5Zļ")|s164ʥݣ Ef#Gڹivgg [¶Ѓh8ӆ SpZϐAñ49xνh^pW}m 8O~| C1<&~&{02r譜Z2WQVug᫗<y4J= h*aMW&(2SLe* 2eȔ &FSb2In/U< / X\pWFc]28m&Gi8[ָ^4Zt.Ϊ#1!I Eb\_3?+@PLpX*VˆpH >  ,`"lr_2z x ,ue]}8!A<!ArEISP]]0CML A c;+'J97ƚR!� A ,$MzB( !-#`NV?>4/Si'�X]pҠw{Yr+VuUX<1(~YdGDJnj`o|p]~sycM")"%Ak1J)zwJyaQ?&+v�&|'�+$XE#1ÉbQVNn�~C0,.<E;mocY[@9Nd˸b+ g Ż]x\^ճBf ։򓧆n<~5uz0X�~ǯ)Wȵ�/%@X� T\ *)wY7K`r9nKhj4'un@ zꉲz!,H+�I}j}mo2<WeJٶ&0f`yMdFm߫kw7Qw\W/ C[4q.Tsz7&`T[w*p:Yfx~ S '-GG"?  XCJ;bz_?~5b+"wS2ciHdL�,CΛ}SnnPQZkCf ӎ9{SNrs@6(p)k SNVהNng<刟 3F8>XF።{rmmƭ~ lo8"jisCҪycLwv}qeq 9L##ȯBRIhm>V,fCHq6 4ZTI!}9"̒^]3DOҚ3CΘ1U{?ڵoֈ>δrЯVKDC0T�B pP�\~B@hؠм6a-#QcK/d&tBsClZ /e4"Q0ۆGmv 'mݺuR fȳs*+uѱfn8"`;10J`�3#z.f|9$I@)x}+XYShHN= p9f,์.Ȱ9#໕LDJu`%@ GHQ7"@,n@рFu `WtRʵ^uyohjk>#f<te 8)6y"+8:3sC@]8"짭;xg+{P\6R・;ZÎY@X;x7 `N?Qt9~ᐗ3r!3~yh8d\W]HdRaD:)Et8 DŧipAmٲYLmeފ,l ?3ߐCa�S8 cGePzm/"M|5 rT[V / `iCf^z; 2Ψ#ӧϞQf=ςe̩(/7Y5Mb lΘX[dZ~ E5gSƬ'y#e'096͞tuTEg�*"ܯr{oϱ Ƀ3GlSnf2>#ơ a#/BN2k+B6uMFvE,D̕/<L[ U9Fv!˯WPb-w.y-y',HKH7D5Ga4+ LTB.'- 7dƽ ЮʂqRah`#g,>w84vUq{;L6XX;sMAt],PBS{k%QnEsrwH#n#J!~b~k2)AnD�Pؘ5#uS%POms-]p3up#4K i6sJ _?z'>y[K;uM.j_wS]c �sUy&ek"UBiM3?n|"BhER9AaJ7U$\G2C i(5kVb#-J.b/쓛6m?æRG9)&ّTRPu^<GjǙCPoխC|J3d,f46.WE(&UjN`FY0"pe׿ P1Yss>voca'ܔL  _J@`bzXDALJ7R:xTFCW[QQЙF�7[58@ ӟްv1<a~۷&^U([\[[ʬНvPF+vW#a8s(lFi�ShW2Ρ\WWwg>Sk_a{Mgq[o&UǤ?/s@/^]GȁˆH[jmLF9AiZRuҲ?9{Qܳ~y2Y<g>5PL4N^\S J(V;9g,BE4Kל p kL.`i#ymGJPar]w}% wnsRtK+;5hbWŠ\×mY8D^08HJz5C ,8I7RT::hQS{864:|땦ԽjZЄgiys(,b* �O QrYEk`U Bnڛ1.:qѰc($##<3t&K./'>5X (Twjd $LYT@N6P*?GY';dLF2v^Y"&lTX A!cEa>,8qf@CBvsú*im۶?4h{4iN X*WÍ ,P\E.q te[Y  &TtZSv:8Si]VdsvbŁNT"(̵�3RXP,ֺv1EGqcmb8]8ed-*ZR 'MchE؂iC TNdNBY�%%?Ł ;aDNsѻ)x# /#aqPlXXOOW利vF#_b\n6 Ɉ+^vʅơآRpF&"J^);w+T0`LZ% 9ǹa$ցhOWjEr+8Y*l Pr _\j.2W8k+ 8U R,qq xB,.XdrB oEvQe$n�YI�J pK! ل- ^Ru=Ԁjq!Blk<Pٖ-[¿2u+̴<R/Š:]c[h# q%69帓68+t=lN`crJx.2ٟSn;͍JƔϜRNSjd8ڕIgggYOcƗ.xpQ8|R缤�Z}%sz+B͈ڐ-҆hFbꆅ+a=QRs@/)ape4yh*$[s Diu ~,ӟ/Zڃ[I'Ï馛'< zѮ^( /ܡJEY0gu4\P3TWBu!n Kډb;P\-Gq8 ]mI #(ҰCey�9UHu"g3HSq"E-!f7]?kŊ'x 'jyH$xos{5퇐)1{bL߶[tǕt{WQ GYXH92ʬD"cF.yٍ#lO.֝$<@ĕbѳ$܀bE@WB{h)iw:6 /lUW]p1,_XtK,M/tXF|drxkX׸:Qz qhb(ƙmJ*vA8HA>̢#,CQ{4rYҟa l2lTڗn,P qR 2V43ߘ]it{8HrHƹ?#҉WƒOSڜꔅs;HO`3fDX,7DQ+ c :CNA;1R{O*V-fJIFcD]  <-\&% 9z^ZA À, fYzFsq<Ùag9Cl(8{|8iM qoAZqu(r-isPso>ڳ)R(uHH:@!O#ؑZpgqU&lq$~Ae%r#b*AK05$Hl Ԥ--K-rb) d<lBe�Oq_n@i;CrkmLrJJvGsĀ]S"j*kJO[GI]o2Kr4c:RoL0JdAL}4U$cU0|OaTLdS fB"Db)ڕ(�Lp�|ەc?jȜ5ݭХ@i( W|GǤו.R[T!1 1МP;kg9H10T(9E#xBpɌ3_hwn*~g"T(NEm-K:s4R Eπ47#襃Nk*/ !_C4Wpbԍ>JrJ,f8 NNKmyپ�mOJŀ"xٔ KKq>oՍP}gSbV36̵ plP{,5%73B ğ&:7*ҤBqK5y!!nE�^-ݴ?΂Ӝ|n9U" vA\Ûghppo,搽pbdPQjFW < 4iTߗQ JxKSA)lRA)2:P-j 8[V<\% JPlSo7cМ2N^EG뢺j@) 9NQeEP%`7 BEUc XHĴ&amͰӌuܰ>pRK,C$x))vgB0A]&myխeoU\?zhxmiH t:i<�ӛFVOu~jye;S m25R^#Xj¢b|rxjsI[|vR1;=fN �^fVK,`JLT“Sn�6X29pHdm60q XgM NU*aQЛF%$w"U60IKhzl ꈰzx,[Fzƽf.^m%1D_ Igú7SV8&xuxM�&<6Y2`˜vcZ9"3oX<M>~n^Ho9L[WiT%%_] (y숮yN :XdrqSI'L gi*F䑥W\vQk �aX-Hѣ:SbsjWw!Ud9$`2%oO~򯫴UѐXPU]X0ZS39tTsS%{+8+AE EQՕ|ל-F3h�eJdI]ktw�қ΀ T)&Bᶐ9j794X)iԉ=IՓ у=+);⎧�vyUn!䔨 S󘺐 )x*b.!͝s'؎siO!{HZ"eNu1B k?&2*D+Gҹ:Ob3p !tjF/WpCJ7fk{x9"Ma]IW!3)qMZ:JсwG/f5H@8t4j#zê8Ci'c4n E* ԼX &\ĕF4l kmmNk UPSL^q~ps5'9V9rnHd7+%Ð`e2'1Y_ hpm>x<p2FH�eez9Cɩ9~mE 2>S/ߙrs̊ p hWE] >.c kRAFFI9)HceFtW5 Hpn8d0 H3BP@)t␬2M =okL`_TCe9A "i`ԃDaq&՝.M1p9L$Ӫ-ڼEɇ#yઃ4#bxU|$<}dUN-d\y~$CLEV'[a><%tgF҈dQYu C48j8 Ҙ{ b̛[:}77STvt _p2cQ2N;*M><F4OW)6piPl�n5zu%su uT%W/X\+c e 8;+9³K!"xUe]a,=ڠ #A0{9,Hi eBp7Kvyr٩AM Vm'nHQ"#@hy3r Y &C*|\kL9q<kM5d܀DH$En;өZ&XITjBR—K{x |rJXեf<9g-<E'l׍3TQ ΂ |e(P=o5z|u |+M۰m(i9+&eR&eR&eR&eR&eR&eR&eR&eR&eR&eR&%hx endstream endobj 12 0 obj << /Type /XObject /Subtype /Image /Height 240 /Width 204 /BitsPerComponent 8 /ColorSpace /DeviceGray /Decode [0 1] /Length 2902 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 1 /BitsPerComponent 8 /Columns 204 >>] >> stream x{P<rD*!yd4`Fkb)ZGmR(֦&4Q`'iLڤƷBѩ޽wϞs~]o_yYō7nܸqƍ7l:8jd~];Z[O]bz ș7ᗛ'8zC 'fS~oʛ:]R/1KWO|]>bb6Lggh^EL�<¯ڇy]ZT'ڡ|EOdBfk")"/Ͷ xq/n#.ᮎEB\-�ͬcmF]橛$`G񨑱n,�n2*�dP%i/`�/ih]?P#5cH̑LiӦdHEͲZ,&#u3}ǀp(g9"3!*�߯Hwl V2Ѵc XFC&&h&&h?LL}H1j2c y2a bGfOc3P2یGm,@1W�b`Y յdQ("Xf|@ɸŸ%;Q%s:'iDsgƀFc!oF͛{pbnRPަC_-iί u a~$Aqj81#:8Wjی\5g4L'pbQKw;#}3pbک+816d,ipbXw6\�&8Dlj8Gˤ3NB[S3@6[l N d7&ܥb({z281Ţ\E'&|yi['0n>-m j.UYSXY?ȯord|1%HLh}5˟4Ĉ&mVp&ٛ<3e_pWv9C/=C);C�/J�Zd%cݎ_`쉳Vyv م xA܈\2u9!(v5�\'&^sX֞~ۉvY_&3}O+ 6[dg͙bU%WbO{o` WpHny1fI %ۙ ϝ#w^Y103xy0N=DR<Z�iO*�ۋRfJ(7y@L| ކz+5ekM]sJ<dJQ #_)1"Cc@)\ 95cM]d+mȄ>Iќ*ngQd-'W[@K6V&2^LQD(�\3xhYwD47\$�Bi]D+谹4E>/OPh KfH6*%%!K@y3; .&8[H)�@YA쁱?]c&VJg3U@VoL�JLrj$�1{,bJ/-&)z(�ŬGY7,{;H,A=SLd"�̕!R gc% >1eģp0 gFs05 [&�t1mPg:WJFOU2m]zCjg2|qӈa'jA4J[=Xؼ=+&ii1fΎƌQWnRNev g!p g>\b6![M;�gy!&|i:3dF*cȚbƿ? o3Sig|Z^)eb}Gi.X榇'9=΢0jD'9Eݯ1EH�0!;Y tC? Og|(:  kGjI,^P�<ܨcAj�3LW=B)F$#Yޑ�;/C0k5J1_0wY)*Xpv_z�gM.Kp~s_CBoF'1/CD#$~T}I +b-?ă}>mQr129[I�C#`k652v/'1fqw=*DaïWɦ5Yj+Ŕ o<+& ]sM?W8 K&~h Q>_\1Z7,"`h\q;aLtԯbxek\T8;̎5ca1۟1ymvvu#ALKI/p 3ݱPپмZۓZ pY]_=X#67=V1d~F{}yɭFˈ҂ģo~|%o5ӛңTRu{'>Q@` £ěp?'/3A?Fa%$C[jXB'"hs9JgeOL},-ΌwJxy|ܬTxVX[*Y/ɹY$c6<G314O}/홯 KqU~dz%oE$ukUq#M]ly^[7]:m!/}RTp!|p1䧏);#7/,0 ?{BO�%﫛%e˭|4Af$Fh9pOŷpZFݹwnX62 rߗZ77nܸq/?oh"S endstream endobj 13 0 obj << /Type /Outlines /Count 0 /First null /Last null >> endobj 14 0 obj << /Nums [0 << /P (1) >>] >> endobj xref 0 15 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000001004 00000 n 0000001314 00000 n 0000001356 00000 n 0000001404 00000 n 0000001456 00000 n 0000020766 00000 n 0000023934 00000 n 0000024004 00000 n trailer << /Size 15 /Root 2 0 R /Info 1 0 R >> startxref 24049 %%EOF ����������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/image-svg-border-fit-page.pdf�����������������������������0000664�0000000�0000000�00000023644�14163570564�0026004�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.beta.3.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.3.dev, based on Prawn 2.2.2) /ModDate (D:20190819045213-06'00') /CreationDate (D:20190819045213-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 12 0 R /PageLabels 14 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 728 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN q 235.29 681.19 m 359.99 681.19 l 359.99 805.89 l 235.29 805.89 l h W n 0.0 0.0 0.0 scn 0.62350 0.00000 0.00000 0.62350 88.58668 303.41758 cm 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 cm q 1.0 0.0 0.0 scn 235.29 605.89 200.0 200.0 re f Q Q q 0.0 0.0 0.0 SCN 1 w 48.24 805.89 m 547.04 805.89 l 547.04 805.89 547.04 805.89 547.04 805.89 c 547.04 681.19 l 547.04 681.19 547.04 681.19 547.04 681.19 c 48.24 681.19 l 48.24 681.19 48.24 681.19 48.24 681.19 c 48.24 805.89 l 48.24 805.89 48.24 805.89 48.24 805.89 c h S Q 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 665.8242 Td /F2.0 9.975 Tf <46696775726520312e20537175617265> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 11 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /85018d+NotoSerif-Italic /Subtype /TrueType /FontDescriptor 16 0 R /FirstChar 32 /LastChar 255 /Widths 18 0 R /ToUnicode 17 0 R >> endobj 12 0 obj << /Type /Outlines /Count 1 /First 13 0 R /Last 13 0 R >> endobj 13 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 12 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 14 0 obj << /Nums [0 << /P (1) >>] >> endobj 15 0 obj << /Length1 7568 /Length 4623 /Filter [/FlateDecode] >> stream xYktSוޫe[~| /𓇃e[-%ɑ lؒdbA!CdYiH&aRf&i0L4+d:&m& ҆fji966!++s>{>@�`!vRzD iC{ �N.g�D=]eH =^�Ya�g!*ې;ecO!=t_ Ó俐 5>;Ѭ;,hAq.nTWf(C�ے GU' ?H¦!(0P:4 t?z883HPs�R -:F^#|Hy TƮu$'+,C~a̲~̢ԳkGWyTm7Я#CuyYUuzULʪZ{_hMuNGqi{볪WG*H鱴p=_ޞm(7:8 mXWYQH T]Um4^јgKEinpѨ<F~Mߤ9ܠ~N5E.MO[дn0" �t}&j(XVB*+ef襊)ef-!zA+@|#|1:Ϯ{n{'yxסC;7~cMxLoͰ u`(˪.+/R+Q?GjG=H{c% k7?zCC>oRR=$YD>hLx*kv?Wǽm))y^˿zo&8Cfl $o:CW^F'p|el$DRZ~.?I`aA^#I׹F?!?=GcSQpAg(JCm,$A] QU\"^ZQUM}K @ }dt>5(F.MѺm~蕑#&ÔG / <Rj|2<!#sD߱%+ֱ?GN\>p"jH_޷Wc+\: ׂϮ7B$!s4?kZ?msIf*+Pױ}gh' ϶Cːb~jc1YzB:2ҫrȜTן9D3aURh6i"5=zGk &/ղP}{ΗHrth|xԝ:+_O-o8w2RɶŒNOG#Wj*83N<A`^?'):&w eu'{py߰%A?e~g2};ғ$:{S\*Mguq2ص2-c&5 S.›pӳRva*!0&܃+QxFѠ>[z| .Ș.Y::sRYԣГ |@'ꨪ%) 8Up%bsE7ut4h,nvs@s[pqB1<c0p˽!#m`;8g1:{�-98sx}_9<& ~Yy JV(�yd lRpd!+m ?hD*2ȴk[\/�=W `9ש PR=s y b E߫ I+VrU 4G<*4/4A',\U&6Cn/놆n!wpU �B0c K׏[u a=;*(7nK~z# sۏRDi^ãw9 ¿Q<n0JD >,E(笮 !=`JVV㊧<!ĩ9":VrծB* / gڼ!)N{[ ^M'aTDO p7b~f-#1찛!O÷mba!a3=^_Jv[GY0 -ANWZ'M)&V,<;q;֖ܹd?\:!Ra7R>%(?K~UyK~(#|X =|7`<~_X;A7L/A1qVKpmq"Fr*o- ޭ##9>1*Zyb}b-ؚ;6κvl;ņvfhGQk[-"Es{~c DP4n*3 o8 8qwpsagу$($\BLsң,F0[t1 t!g[HEm.iVyH,yI(BV{*\h+ZVt2b+[VlPhJQ;Ė O<{mMv-`fc; @FXX;ȶvź{(F 2jz&VddFzxfuӝUD$}rX:َ6vx,a˙F?v}rfÈbS|3QٗBAo * yJҎƶ΅<ftOcHsiKJ琨eWֿz(,XKZzoObmIN:k=f H:"i|;AZt S+0w/=14Ft1AD;$e&ӤvnZ(4$$uH`IH RhJ$"JKB^x?揘 9yǟ&k^[%|9IֺFدAd [^%N ^,r3p)'jOpǏcǸ?8;$2Ҟwlm\USd*Q?1]V.^OЃ;b94 6hLFvcOg_kﰿehjWuڮ8J~BrM$d33$Ů+Os'S.p)o\Mk1s\y<yxf-,lĺ[eM]29 [ii(`xcý&&~q\fu}{[e61 L BBP!4@!BV! !@P8ٌX҂J) m <0{ ۬]Z[,MfSC}v5֮Y]]UjeiIqeK<Cn>U01aVV <,5rA,HŔ8�}2<F4rX5EY7M8E6v9=azESB#"a0ќ12rOgBy R;&-y$N|%wv9̦"'K& Ln5L襦Aqȡ)l+LrI.&;ql7G"BydWM6-I&\HviȪ|$F>SAρ6ѽH$6F"ΩVIIɤHNt0Gn<+<d2FL2(z_dXcHn@G;Ч)#lEBriciaўWgz2g|gvxl:"oqIfA<i HZheUGBDtH>Ai P9fܧd�Hn.ކKڄ Syre)pa&>T z~6,`CaA~e\j6Q͢9g@eI]P4Y!<_k̙ W5 p l�Jw/M4ЊK4\jZ6:V+;8!|ɑ)'k󵢃{Q؈ KYWg(MсG 7!nGyBU4g)rs S\a(Z.>w8 lCrKG:7eJl9B7gL0gs&Fϒ7u[fňVjFpIhEթ9l,5:qf92i4ҵ6"Y\aܸMuA+ifV?)]FrqV 9Nsk\}" (JAJ2Fq+0xav#?1 !&1#Qq6.=H_/qD#$:INrTOZq55$*=d@EȂՋ7'�Į( L<oX6vc?�q�^F3y ށ w;<57 >!g1b(}4G5Ʌ,[(ʢ=˝bOy )VQ>~yWi wզzOAFpm%Z8K~g8NϩUosp44-WT?Nr0fzb>*eIHm]U endstream endobj 16 0 obj << /Type /FontDescriptor /FontName /85018d+NotoSerif-Italic /FontFile2 15 0 R /FontBBox [-254 -250 1238 1047] /Flags 70 /StemV 0 /ItalicAngle -12.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 17 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 18 0 obj [259 600 600 600 600 600 600 600 600 600 600 600 600 600 250 600 600 559 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 589 600 600 600 600 600 600 600 600 600 600 600 600 543 600 600 600 600 600 600 600 600 600 600 600 600 600 579 600 600 600 493 600 556 600 304 600 600 600 600 600 600 600 560 467 600 600 599 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600] endobj xref 0 19 0000000000 65535 f 0000000015 00000 n 0000000262 00000 n 0000000463 00000 n 0000000520 00000 n 0000000571 00000 n 0000000843 00000 n 0000001622 00000 n 0000001919 00000 n 0000001961 00000 n 0000002009 00000 n 0000002061 00000 n 0000002233 00000 n 0000002307 00000 n 0000002432 00000 n 0000002477 00000 n 0000007190 00000 n 0000007414 00000 n 0000008776 00000 n trailer << /Size 19 /Root 2 0 R /Info 1 0 R >> startxref 9690 %%EOF ��������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/image-svg-border.pdf��������������������������������������0000664�0000000�0000000�00000023655�14163570564�0024314�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.beta.3.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.3.dev, based on Prawn 2.2.2) /ModDate (D:20190819045250-06'00') /CreationDate (D:20190819045250-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 12 0 R /PageLabels 14 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 737 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN q 235.29 681.19 m 359.99 681.19 l 359.99 805.89 l 235.29 805.89 l h W n 0.0 0.0 0.0 scn 0.62350 0.00000 0.00000 0.62350 88.58668 303.41758 cm 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 cm q 1.0 0.0 0.0 scn 235.29 605.89 200.0 200.0 re f Q Q q 0.0 0.0 0.0 SCN 1 w 235.29 805.89 m 359.99 805.89 l 359.99 805.89 359.99 805.89 359.99 805.89 c 359.99 681.19 l 359.99 681.19 359.99 681.19 359.99 681.19 c 235.29 681.19 l 235.29 681.19 235.29 681.19 235.29 681.19 c 235.29 805.89 l 235.29 805.89 235.29 805.89 235.29 805.89 c h S Q 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 665.8242 Td /F2.0 9.975 Tf <46696775726520312e20537175617265> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 11 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /85018d+NotoSerif-Italic /Subtype /TrueType /FontDescriptor 16 0 R /FirstChar 32 /LastChar 255 /Widths 18 0 R /ToUnicode 17 0 R >> endobj 12 0 obj << /Type /Outlines /Count 1 /First 13 0 R /Last 13 0 R >> endobj 13 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 12 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 14 0 obj << /Nums [0 << /P (1) >>] >> endobj 15 0 obj << /Length1 7568 /Length 4623 /Filter [/FlateDecode] >> stream xYktSוޫe[~| /𓇃e[-%ɑ lؒdbA!CdYiH&aRf&i0L4+d:&m& ҆fji966!++s>{>@�`!vRzD iC{ �N.g�D=]eH =^�Ya�g!*ې;ecO!=t_ Ó俐 5>;Ѭ;,hAq.nTWf(C�ے GU' ?H¦!(0P:4 t?z883HPs�R -:F^#|Hy TƮu$'+,C~a̲~̢ԳkGWyTm7Я#CuyYUuzULʪZ{_hMuNGqi{볪WG*H鱴p=_ޞm(7:8 mXWYQH T]Um4^јgKEinpѨ<F~Mߤ9ܠ~N5E.MO[дn0" �t}&j(XVB*+ef襊)ef-!zA+@|#|1:Ϯ{n{'yxסC;7~cMxLoͰ u`(˪.+/R+Q?GjG=H{c% k7?zCC>oRR=$YD>hLx*kv?Wǽm))y^˿zo&8Cfl $o:CW^F'p|el$DRZ~.?I`aA^#I׹F?!?=GcSQpAg(JCm,$A] QU\"^ZQUM}K @ }dt>5(F.MѺm~蕑#&ÔG / <Rj|2<!#sD߱%+ֱ?GN\>p"jH_޷Wc+\: ׂϮ7B$!s4?kZ?msIf*+Pױ}gh' ϶Cːb~jc1YzB:2ҫrȜTן9D3aURh6i"5=zGk &/ղP}{ΗHrth|xԝ:+_O-o8w2RɶŒNOG#Wj*83N<A`^?'):&w eu'{py߰%A?e~g2};ғ$:{S\*Mguq2ص2-c&5 S.›pӳRva*!0&܃+QxFѠ>[z| .Ș.Y::sRYԣГ |@'ꨪ%) 8Up%bsE7ut4h,nvs@s[pqB1<c0p˽!#m`;8g1:{�-98sx}_9<& ~Yy JV(�yd lRpd!+m ?hD*2ȴk[\/�=W `9ש PR=s y b E߫ I+VrU 4G<*4/4A',\U&6Cn/놆n!wpU �B0c K׏[u a=;*(7nK~z# sۏRDi^ãw9 ¿Q<n0JD >,E(笮 !=`JVV㊧<!ĩ9":VrծB* / gڼ!)N{[ ^M'aTDO p7b~f-#1찛!O÷mba!a3=^_Jv[GY0 -ANWZ'M)&V,<;q;֖ܹd?\:!Ra7R>%(?K~UyK~(#|X =|7`<~_X;A7L/A1qVKpmq"Fr*o- ޭ##9>1*Zyb}b-ؚ;6κvl;ņvfhGQk[-"Es{~c DP4n*3 o8 8qwpsagу$($\BLsң,F0[t1 t!g[HEm.iVyH,yI(BV{*\h+ZVt2b+[VlPhJQ;Ė O<{mMv-`fc; @FXX;ȶvź{(F 2jz&VddFzxfuӝUD$}rX:َ6vx,a˙F?v}rfÈbS|3QٗBAo * yJҎƶ΅<ftOcHsiKJ琨eWֿz(,XKZzoObmIN:k=f H:"i|;AZt S+0w/=14Ft1AD;$e&ӤvnZ(4$$uH`IH RhJ$"JKB^x?揘 9yǟ&k^[%|9IֺFدAd [^%N ^,r3p)'jOpǏcǸ?8;$2Ҟwlm\USd*Q?1]V.^OЃ;b94 6hLFvcOg_kﰿehjWuڮ8J~BrM$d33$Ů+Os'S.p)o\Mk1s\y<yxf-,lĺ[eM]29 [ii(`xcý&&~q\fu}{[e61 L BBP!4@!BV! !@P8ٌX҂J) m <0{ ۬]Z[,MfSC}v5֮Y]]UjeiIqeK<Cn>U01aVV <,5rA,HŔ8�}2<F4rX5EY7M8E6v9=azESB#"a0ќ12rOgBy R;&-y$N|%wv9̦"'K& Ln5L襦Aqȡ)l+LrI.&;ql7G"BydWM6-I&\HviȪ|$F>SAρ6ѽH$6F"ΩVIIɤHNt0Gn<+<d2FL2(z_dXcHn@G;Ч)#lEBriciaўWgz2g|gvxl:"oqIfA<i HZheUGBDtH>Ai P9fܧd�Hn.ކKڄ Syre)pa&>T z~6,`CaA~e\j6Q͢9g@eI]P4Y!<_k̙ W5 p l�Jw/M4ЊK4\jZ6:V+;8!|ɑ)'k󵢃{Q؈ KYWg(MсG 7!nGyBU4g)rs S\a(Z.>w8 lCrKG:7eJl9B7gL0gs&Fϒ7u[fňVjFpIhEթ9l,5:qf92i4ҵ6"Y\aܸMuA+ifV?)]FrqV 9Nsk\}" (JAJ2Fq+0xav#?1 !&1#Qq6.=H_/qD#$:INrTOZq55$*=d@EȂՋ7'�Į( L<oX6vc?�q�^F3y ށ w;<57 >!g1b(}4G5Ʌ,[(ʢ=˝bOy )VQ>~yWi wզzOAFpm%Z8K~g8NϩUosp44-WT?Nr0fzb>*eIHm]U endstream endobj 16 0 obj << /Type /FontDescriptor /FontName /85018d+NotoSerif-Italic /FontFile2 15 0 R /FontBBox [-254 -250 1238 1047] /Flags 70 /StemV 0 /ItalicAngle -12.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 17 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 18 0 obj [259 600 600 600 600 600 600 600 600 600 600 600 600 600 250 600 600 559 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 589 600 600 600 600 600 600 600 600 600 600 600 600 543 600 600 600 600 600 600 600 600 600 600 600 600 600 579 600 600 600 493 600 556 600 304 600 600 600 600 600 600 600 560 467 600 600 599 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600] endobj xref 0 19 0000000000 65535 f 0000000015 00000 n 0000000262 00000 n 0000000463 00000 n 0000000520 00000 n 0000000571 00000 n 0000000843 00000 n 0000001631 00000 n 0000001928 00000 n 0000001970 00000 n 0000002018 00000 n 0000002070 00000 n 0000002242 00000 n 0000002316 00000 n 0000002441 00000 n 0000002486 00000 n 0000007199 00000 n 0000007423 00000 n 0000008785 00000 n trailer << /Size 19 /Root 2 0 R /Info 1 0 R >> startxref 9699 %%EOF �����������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/image-svg-fixed-precision.pdf�����������������������������0000664�0000000�0000000�00000065643�14163570564�0026132�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.6.2.dev, based on Prawn 2.4.0) /Producer (Asciidoctor PDF 1.6.2.dev, based on Prawn 2.4.0) /ModDate (D:20211114131949+01'00') /CreationDate (D:20211114131949+01'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 12 0 R /PageLabels 14 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 25542 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN q 48.24 790.89 m 123.4372 790.89 l 123.4372 805.89 l 48.24 805.89 l h W n 0.0 0.0 0.0 scn 0.75 0.0 0.0 0.75 12.06002 201.4728 cm 1.0 0.0 0.0 1.0 0.00003 0.0 cm q Q q q q 1.0 1.0 1.0 scn 51.24 805.89 m 145.24 805.89 l 146.8969 805.89 148.24 804.5469 148.24 802.89 c 148.24 788.89 l 148.24 787.2331 146.8969 785.89 145.24 785.89 c 51.24 785.89 l 49.5831 785.89 48.24 787.2331 48.24 788.89 c 48.24 802.89 l 48.24 804.5469 49.5831 805.89 51.24 805.89 c h Q W n q 0.3333 0.3333 0.3333 scn 2 j 48.24 805.89 m 85.24 805.89 l 85.24 785.89 l 48.24 785.89 l h f Q q 0.2667 0.8 0.0667 scn 2 j 85.24 805.89 m 148.24 805.89 l 148.24 785.89 l 85.24 785.89 l h f Q Q Q q 1.0 1.0 1.0 scn q q 0.1 0.0 0.0 0.1 43.416 725.301 cm q /Tr1 gs 0.0039 0.0039 0.0039 scn q 2 j 128.228 733.126 m 128.228 716.046 l 148.584 716.046 l 148.584 708.3653 l 128.228 708.3653 l 128.228 675.7093 l 128.228 670.8037 128.8904 667.6527 130.2153 666.2562 c 131.576 664.8597 134.3152 664.1615 138.4331 664.1615 c 148.5841 664.1615 l 148.5841 655.89 l 138.4331 655.89 l 130.8064 655.89 125.5428 657.3044 122.6421 660.1332 c 119.7417 662.9978 118.2915 668.1898 118.2915 675.7092 c 118.2915 708.3652 l 111.0405 708.3652 l 111.0405 716.0459 l 118.2915 716.0459 l 118.2915 733.1259 l h f Q q 2 j 213.4 688.44 m 213.4 683.606 l 167.961 683.606 l 168.3907 676.8027 170.4317 671.6107 174.084 668.03 c 177.7721 664.4851 182.8925 662.7126 189.445 662.7126 c 193.2406 662.7126 196.9109 663.1781 200.456 664.1091 c 204.0367 665.0401 207.5817 666.4366 211.091 668.2986 c 211.091 658.9529 l 207.5461 657.449 203.9117 656.3031 200.188 655.5154 c 196.4643 654.7277 192.6866 654.3338 188.855 654.3338 c 179.2583 654.3338 171.6493 657.1268 166.028 662.7127 c 160.4421 668.2986 157.6491 675.854 157.6491 685.3787 c 157.6491 695.226 160.2988 703.032 165.5983 708.7967 c 170.9336 714.5975 178.1129 717.4979 187.1363 717.4979 c 195.229 717.4979 201.6206 714.884 206.3113 709.6561 c 211.0378 704.464 213.4011 697.392 213.4011 688.4401 c h 203.5172 691.3404 m 203.4456 696.7473 201.9238 701.062 198.9518 704.2844 c 196.0156 707.5071 192.1126 709.1184 187.2428 709.1184 c 181.7285 709.1184 177.3061 707.5608 173.9758 704.4456 c 170.6815 701.3304 168.7837 696.9441 168.2824 691.2866 c h f Q q 2 j 268.28 714.274 m 268.28 704.9283 l 265.4871 706.3606 262.5867 707.4348 259.5788 708.151 c 256.5709 708.8672 253.4557 709.2253 250.2331 709.2252 c 245.3275 709.2252 241.6395 708.4732 239.1691 706.9693 c 236.7342 705.4654 235.5168 703.2095 235.5168 700.2017 c 235.5168 697.91 236.3941 696.1018 238.1486 694.7769 c 239.9031 693.4878 243.4301 692.2525 248.7296 691.0708 c 252.1134 690.3188 l 259.1314 688.8149 264.1087 686.6844 267.0454 683.9272 c 270.0174 681.2059 271.5034 677.3926 271.5034 672.4872 c 271.5034 666.9013 269.2833 662.479 264.8432 659.2202 c 260.4389 655.9618 254.3696 654.3326 246.6352 654.3326 c 243.4125 654.3326 240.0465 654.6548 236.5372 655.2994 c 233.0639 655.9081 229.3935 656.8391 225.5262 658.0924 c 225.5262 668.2974 l 229.1785 666.3996 232.7772 664.9672 236.3222 664.0004 c 239.8671 663.0694 243.3761 662.604 246.8492 662.604 c 251.5041 662.604 255.0848 663.3917 257.5912 664.9672 c 260.0977 666.5786 261.351 668.8344 261.351 671.7348 c 261.351 674.4204 260.4379 676.4793 258.6117 677.9116 c 256.8214 679.3439 252.8647 680.7225 246.7417 682.0474 c 243.3042 682.8531 l 237.1811 684.1422 232.7588 686.1116 230.0372 688.7613 c 227.3159 691.4468 225.9552 695.1172 225.9552 699.7723 c 225.9552 705.4298 227.9604 709.7982 231.9708 712.8773 c 235.9812 715.9567 241.6745 717.4964 249.0508 717.4964 c 252.7031 717.4964 256.1405 717.2279 259.3628 716.6908 c 262.5855 716.1536 265.5575 715.348 268.2788 714.2738 c h f Q q 2 j 297.37 733.126 m 297.37 716.046 l 317.726 716.046 l 317.726 708.3653 l 297.37 708.3653 l 297.37 675.7093 l 297.37 670.8037 298.0324 667.6527 299.3573 666.2562 c 300.718 664.8597 303.4572 664.1615 307.5751 664.1615 c 317.7261 664.1615 l 317.7261 655.89 l 307.5751 655.89 l 299.9484 655.89 294.6848 657.3044 291.7841 660.1332 c 288.8837 662.9978 287.4335 668.1898 287.4335 675.7092 c 287.4335 708.3652 l 280.1825 708.3652 l 280.1825 716.0459 l 287.4335 716.0459 l 287.4335 733.1259 l h f Q q 2 j 369.44 714.274 m 369.44 704.9283 l 366.6471 706.3606 363.7467 707.4348 360.7388 708.151 c 357.7309 708.8672 354.6157 709.2253 351.3931 709.2252 c 346.4875 709.2252 342.7995 708.4732 340.3291 706.9693 c 337.8942 705.4654 336.6768 703.2095 336.6768 700.2017 c 336.6768 697.91 337.5541 696.1018 339.3086 694.7769 c 341.0631 693.4878 344.5901 692.2525 349.8896 691.0708 c 353.2734 690.3188 l 360.2914 688.8149 365.2687 686.6844 368.2054 683.9272 c 371.1774 681.2059 372.6634 677.3926 372.6634 672.4872 c 372.6634 666.9013 370.4433 662.479 366.0032 659.2202 c 361.5989 655.9618 355.5296 654.3326 347.7952 654.3326 c 344.5725 654.3326 341.2065 654.6548 337.6972 655.2994 c 334.2239 655.9081 330.5535 656.8391 326.6862 658.0924 c 326.6862 668.2974 l 330.3385 666.3996 333.9372 664.9672 337.4822 664.0004 c 341.0271 663.0694 344.5361 662.604 348.0092 662.604 c 352.6641 662.604 356.2448 663.3917 358.7512 664.9672 c 361.2577 666.5786 362.511 668.8344 362.511 671.7348 c 362.511 674.4204 361.5979 676.4793 359.7717 677.9116 c 357.9813 679.3439 354.0246 680.7225 347.9017 682.0474 c 344.4642 682.8531 l 338.3411 684.1422 333.9188 686.1116 331.1972 688.7613 c 328.4759 691.4468 327.1152 695.1172 327.1152 699.7723 c 327.1152 705.4298 329.1204 709.7982 333.1308 712.8773 c 337.1412 715.9567 342.8345 717.4964 350.2108 717.4964 c 353.8631 717.4964 357.3005 717.2279 360.5228 716.6908 c 363.7455 716.1536 366.7175 715.348 369.4388 714.2738 c h f Q Q Q Q q q 0.1 0.0 0.0 0.1 43.416 725.301 cm q 2 j 128.228 743.126 m 128.228 726.046 l 148.584 726.046 l 148.584 718.3653 l 128.228 718.3653 l 128.228 685.7093 l 128.228 680.8037 128.8904 677.6527 130.2153 676.2562 c 131.576 674.8597 134.3152 674.1615 138.4331 674.1615 c 148.5841 674.1615 l 148.5841 665.89 l 138.4331 665.89 l 130.8064 665.89 125.5428 667.3044 122.6421 670.1332 c 119.7417 672.9978 118.2915 678.1898 118.2915 685.7092 c 118.2915 718.3652 l 111.0405 718.3652 l 111.0405 726.0459 l 118.2915 726.0459 l 118.2915 743.1259 l h f Q q 2 j 213.4 698.44 m 213.4 693.606 l 167.961 693.606 l 168.3907 686.8027 170.4317 681.6107 174.084 678.03 c 177.7721 674.4851 182.8925 672.7126 189.445 672.7126 c 193.2406 672.7126 196.9109 673.1781 200.456 674.1091 c 204.0367 675.0401 207.5817 676.4366 211.091 678.2986 c 211.091 668.9529 l 207.5461 667.449 203.9117 666.3031 200.188 665.5154 c 196.4643 664.7277 192.6866 664.3338 188.855 664.3338 c 179.2583 664.3338 171.6493 667.1268 166.028 672.7127 c 160.4421 678.2986 157.6491 685.854 157.6491 695.3787 c 157.6491 705.226 160.2988 713.032 165.5983 718.7967 c 170.9336 724.5975 178.1129 727.4979 187.1363 727.4979 c 195.229 727.4979 201.6206 724.884 206.3113 719.6561 c 211.0378 714.464 213.4011 707.392 213.4011 698.4401 c h 203.5172 701.3404 m 203.4456 706.7473 201.9238 711.062 198.9518 714.2844 c 196.0156 717.5071 192.1126 719.1184 187.2428 719.1184 c 181.7285 719.1184 177.3061 717.5608 173.9758 714.4455 c 170.6815 711.3302 168.7837 706.9439 168.2824 701.2865 c h f Q q 2 j 268.28 724.274 m 268.28 714.9283 l 265.4871 716.3606 262.5867 717.4348 259.5788 718.151 c 256.5709 718.8672 253.4557 719.2253 250.2331 719.2252 c 245.3275 719.2252 241.6395 718.4732 239.1691 716.9693 c 236.7342 715.4654 235.5168 713.2095 235.5168 710.2017 c 235.5168 707.91 236.3941 706.1018 238.1486 704.7769 c 239.9031 703.4878 243.4301 702.2525 248.7296 701.0708 c 252.1134 700.3188 l 259.1314 698.8149 264.1087 696.6844 267.0454 693.9272 c 270.0174 691.2059 271.5034 687.3926 271.5034 682.4872 c 271.5034 676.9013 269.2833 672.479 264.8432 669.2202 c 260.4389 665.9618 254.3696 664.3326 246.6352 664.3326 c 243.4125 664.3326 240.0465 664.6548 236.5372 665.2994 c 233.0639 665.9081 229.3935 666.8391 225.5262 668.0924 c 225.5262 678.2974 l 229.1785 676.3996 232.7772 674.9672 236.3222 674.0004 c 239.8671 673.0694 243.3761 672.604 246.8492 672.604 c 251.5041 672.604 255.0848 673.3917 257.5912 674.9672 c 260.0977 676.5786 261.351 678.8344 261.351 681.7348 c 261.351 684.4204 260.4379 686.4793 258.6117 687.9116 c 256.8214 689.3439 252.8647 690.7225 246.7417 692.0474 c 243.3042 692.8531 l 237.1811 694.1422 232.7588 696.1116 230.0372 698.7613 c 227.3159 701.4468 225.9552 705.1172 225.9552 709.7723 c 225.9552 715.4298 227.9604 719.7982 231.9708 722.8773 c 235.9812 725.9567 241.6745 727.4964 249.0508 727.4964 c 252.7031 727.4964 256.1405 727.2279 259.3628 726.6908 c 262.5855 726.1536 265.5575 725.348 268.2788 724.2738 c h f Q q 2 j 297.37 743.126 m 297.37 726.046 l 317.726 726.046 l 317.726 718.3653 l 297.37 718.3653 l 297.37 685.7093 l 297.37 680.8037 298.0324 677.6527 299.3573 676.2562 c 300.718 674.8597 303.4572 674.1615 307.5751 674.1615 c 317.7261 674.1615 l 317.7261 665.89 l 307.5751 665.89 l 299.9484 665.89 294.6848 667.3044 291.7841 670.1332 c 288.8837 672.9978 287.4335 678.1898 287.4335 685.7092 c 287.4335 718.3652 l 280.1825 718.3652 l 280.1825 726.0459 l 287.4335 726.0459 l 287.4335 743.1259 l h f Q q 2 j 369.44 724.274 m 369.44 714.9283 l 366.6471 716.3606 363.7467 717.4348 360.7388 718.151 c 357.7309 718.8672 354.6157 719.2253 351.3931 719.2252 c 346.4875 719.2252 342.7995 718.4732 340.3291 716.9693 c 337.8942 715.4654 336.6768 713.2095 336.6768 710.2017 c 336.6768 707.91 337.5541 706.1018 339.3086 704.7769 c 341.0631 703.4878 344.5901 702.2525 349.8896 701.0708 c 353.2734 700.3188 l 360.2914 698.8149 365.2687 696.6844 368.2054 693.9272 c 371.1774 691.2059 372.6634 687.3926 372.6634 682.4872 c 372.6634 676.9013 370.4433 672.479 366.0032 669.2202 c 361.5989 665.9618 355.5296 664.3326 347.7952 664.3326 c 344.5725 664.3326 341.2065 664.6548 337.6972 665.2994 c 334.2239 665.9081 330.5535 666.8391 326.6862 668.0924 c 326.6862 678.2974 l 330.3385 676.3996 333.9372 674.9672 337.4822 674.0004 c 341.0271 673.0694 344.5361 672.604 348.0092 672.604 c 352.6641 672.604 356.2448 673.3917 358.7512 674.9672 c 361.2577 676.5786 362.511 678.8344 362.511 681.7348 c 362.511 684.4204 361.5979 686.4793 359.7717 687.9116 c 357.9813 689.3439 354.0246 690.7225 347.9017 692.0474 c 344.4642 692.8531 l 338.3411 694.1422 333.9188 696.1116 331.1972 698.7613 c 328.4759 701.4468 327.1152 705.1172 327.1152 709.7723 c 327.1152 715.4298 329.1204 719.7982 333.1308 722.8773 c 337.1412 725.9567 342.8345 727.4964 350.2108 727.4964 c 353.8631 727.4964 357.3005 727.2279 360.5228 726.6908 c 363.7455 726.1536 366.7175 725.348 369.4388 724.2738 c h f Q Q Q q q 0.1 0.0 0.0 0.1 43.416 725.301 cm q /Tr1 gs 0.0039 0.0039 0.0039 scn q 2 j 508.54 686.67 m 508.54 693.8313 507.054 699.3813 504.082 703.32 c 501.1458 707.2588 497.0101 709.2282 491.675 709.2282 c 486.3755 709.2282 482.2399 707.2588 479.268 703.32 c 476.3318 699.3812 474.8637 693.8312 474.8637 686.67 c 474.8637 679.5447 476.3318 674.0123 479.268 670.073 c 482.24 666.1342 486.3757 664.1648 491.675 664.1648 c 497.0103 664.1648 501.1459 666.1342 504.082 670.073 c 507.054 674.0118 508.54 679.5441 508.54 686.67 c h 518.4228 663.359 m 518.4228 653.1183 516.149 645.5093 511.6015 640.532 c 507.054 635.519 500.0893 633.0125 490.7075 633.0125 c 487.2342 633.0125 483.9578 633.2811 480.8784 633.8182 c 477.799 634.3195 474.8091 635.1072 471.9087 636.1815 c 471.9087 645.7957 l 474.8091 644.2201 477.6737 643.0564 480.5025 642.3045 c 483.3313 641.5525 486.2138 641.1766 489.15 641.1766 c 495.6311 641.1766 500.4831 642.8774 503.706 646.2791 c 506.9287 649.6449 508.54 654.7476 508.54 661.5871 c 508.54 666.4748 l 506.499 662.9298 503.8851 660.2801 500.6982 658.5256 c 497.5113 656.771 493.698 655.8938 489.2582 655.8938 c 481.8822 655.8938 475.9382 658.7046 471.4262 664.3264 c 466.9145 669.9481 464.6586 677.3961 464.6586 686.6704 c 464.6586 695.9804 466.9145 703.446 471.4262 709.0674 c 475.9379 714.6891 481.8819 717.5 489.2582 717.5 c 493.6983 717.5 497.5117 716.6227 500.6982 714.8682 c 503.8851 713.1136 506.499 710.4639 508.54 706.919 c 508.54 716.0499 l 518.4228 716.0499 l h f Q q 2 j 572.94 706.808 m 571.83 707.4525 570.6125 707.918 569.2876 708.2045 c 567.9985 708.5268 566.5662 708.6879 564.9907 708.6879 c 559.4048 708.6879 555.1078 706.8617 552.0997 703.2094 c 549.1277 699.5929 547.6417 694.3829 547.6417 687.5794 c 547.6417 655.8904 l 537.7052 655.8904 l 537.7052 716.0464 l 547.6417 716.0464 l 547.6417 706.7007 l 549.7185 710.353 552.422 713.0565 555.7521 714.8111 c 559.0822 716.6014 563.1285 717.4966 567.8911 717.4966 c 568.5714 717.4966 569.3234 717.4429 570.147 717.3355 c 570.9706 717.2639 571.8837 717.1385 572.8863 716.9595 c h f Q q 2 j 631.8 688.44 m 631.8 683.606 l 586.361 683.606 l 586.7907 676.8027 588.8317 671.6107 592.484 668.03 c 596.1721 664.4851 601.2925 662.7126 607.845 662.7126 c 611.6406 662.7126 615.3109 663.1781 618.856 664.1091 c 622.4367 665.0401 625.9817 666.4366 629.491 668.2986 c 629.491 658.9529 l 625.9461 657.449 622.3117 656.3031 618.588 655.5154 c 614.8643 654.7277 611.0866 654.3338 607.255 654.3338 c 597.6583 654.3338 590.0493 657.1268 584.428 662.7127 c 578.8421 668.2986 576.0491 675.854 576.0491 685.3787 c 576.0491 695.226 578.6988 703.032 583.9983 708.7967 c 589.3336 714.5975 596.5129 717.4979 605.5363 717.4979 c 613.629 717.4979 620.0206 714.884 624.7113 709.6561 c 629.4378 704.464 631.8011 697.392 631.8011 688.4401 c h 621.9172 691.3404 m 621.8456 696.7473 620.3238 701.062 617.3518 704.2844 c 614.4156 707.5071 610.5126 709.1184 605.6428 709.1184 c 600.1285 709.1184 595.7061 707.5608 592.3758 704.4456 c 589.0815 701.3304 587.1837 696.9441 586.6824 691.2866 c h f Q q 2 j 698.78 688.44 m 698.78 683.606 l 653.341 683.606 l 653.7707 676.8027 655.8117 671.6107 659.464 668.03 c 663.1521 664.4851 668.2725 662.7126 674.825 662.7126 c 678.6206 662.7126 682.2909 663.1781 685.836 664.1091 c 689.4167 665.0401 692.9617 666.4366 696.471 668.2986 c 696.471 658.9529 l 692.9261 657.449 689.2917 656.3031 685.568 655.5154 c 681.8443 654.7277 678.0666 654.3338 674.235 654.3338 c 664.6383 654.3338 657.0293 657.1268 651.408 662.7127 c 645.8221 668.2986 643.0291 675.854 643.0291 685.3787 c 643.0291 695.226 645.6788 703.032 650.9783 708.7967 c 656.3136 714.5975 663.4929 717.4979 672.5163 717.4979 c 680.609 717.4979 687.0006 714.884 691.6913 709.6561 c 696.4178 704.464 698.7811 697.392 698.7811 688.4401 c h 688.8972 691.3404 m 688.8256 696.7473 687.3038 701.062 684.3318 704.2844 c 681.3956 707.5071 677.4926 709.1184 672.6228 709.1184 c 667.1085 709.1184 662.6861 707.5608 659.3558 704.4456 c 656.0615 701.3304 654.1637 696.9441 653.6624 691.2866 c h f Q q 2 j 764.3 692.2 m 764.3 655.891 l 754.4172 655.891 l 754.4172 691.877 l 754.4172 697.5703 753.3072 701.8313 751.0871 704.66 c 748.867 707.4888 745.537 708.9032 741.0969 708.9032 c 735.7616 708.9032 731.5543 707.2024 728.4749 703.8007 c 725.3955 700.399 723.8558 695.762 723.8558 689.8897 c 723.8558 655.8907 l 713.9193 655.8907 l 713.9193 716.0467 l 723.8558 716.0467 l 723.8558 706.701 l 726.2191 710.3175 728.9941 713.021 732.181 714.8114 c 735.4037 716.6017 739.1097 717.4969 743.299 717.4969 c 750.2097 717.4969 755.4377 715.3485 758.983 711.0516 c 762.5279 706.7905 764.3004 700.5062 764.3004 692.1986 c h f Q q 2 j 860.92 685.91 m 860.92 693.1787 859.4161 698.872 856.4083 702.99 c 853.4363 707.1437 849.3363 709.2205 844.1083 709.2205 c 838.8804 709.2205 834.7624 707.1437 831.7543 702.99 c 828.7823 698.8721 827.2963 693.1788 827.2963 685.91 c 827.2963 678.6412 828.7823 672.9299 831.7543 668.776 c 834.7621 664.6581 838.8801 662.5992 844.1083 662.5992 c 849.3362 662.5992 853.4362 664.6581 856.4083 668.776 c 859.4161 672.9297 860.92 678.641 860.92 685.91 c h 827.297 706.911 m 829.3738 710.4917 831.9877 713.1415 835.1388 714.8602 c 838.3257 716.6147 842.1213 717.492 846.5258 717.492 c 853.8305 717.492 859.7565 714.5916 864.3038 708.7908 c 868.8871 702.99 871.1788 695.363 871.1788 685.9098 c 871.1788 676.4565 868.8871 668.8295 864.3038 663.0288 c 859.7563 657.228 853.8303 654.3276 846.5258 654.3276 c 842.1215 654.3276 838.3259 655.187 835.1388 656.9057 c 831.9877 658.6602 829.3738 661.3279 827.297 664.9086 c 827.297 655.8852 l 817.3605 655.8852 l 817.3605 739.4592 l 827.297 739.4592 l h f Q q 2 j 914.2 686.13 m 906.2147 686.13 900.6823 685.2169 897.603 683.3907 c 894.5235 681.5645 892.9838 678.4493 892.9838 674.045 c 892.9838 670.5359 894.1296 667.7429 896.4213 665.6661 c 898.7488 663.6251 901.8998 662.6046 905.8744 662.6046 c 911.3529 662.6046 915.7393 664.5382 919.0334 668.4054 c 922.3635 672.3084 924.0285 677.4824 924.0285 683.9274 c 924.0285 686.1296 l h 933.912 690.212 m 933.912 655.891 l 924.0292 655.891 l 924.0292 665.0219 l 921.7733 661.3696 918.9625 658.6661 915.5966 656.9115 c 912.2307 655.1928 908.1127 654.3334 903.2426 654.3334 c 897.0837 654.3334 892.1781 656.0521 888.5256 659.4896 c 884.9091 662.9629 883.1008 667.5999 883.1008 673.4006 c 883.1008 680.1679 885.3567 685.2706 889.8684 688.7086 c 894.4159 692.1461 901.1836 693.8648 910.1714 693.8648 c 924.0284 693.8648 l 924.0284 694.8316 l 924.0284 699.3791 922.5245 702.8881 919.5167 705.3586 c 916.5447 707.8651 912.3554 709.1184 906.9487 709.1184 c 903.5112 709.1184 900.1632 708.7066 896.9047 707.883 c 893.6462 707.0594 890.5131 705.824 887.5053 704.1769 c 887.5053 713.3078 l 891.1218 714.7043 894.6308 715.7427 898.0323 716.423 c 901.434 717.1391 904.7461 717.4972 907.9688 717.4972 c 916.6701 717.4972 923.1691 715.2413 927.4658 710.7296 c 931.7627 706.2179 933.9111 699.3785 933.9111 690.2116 c h f Q q 2 j 988.48 706.808 m 987.37 707.4525 986.1526 707.918 984.8277 708.2045 c 983.5386 708.5268 982.1063 708.6879 980.5308 708.6879 c 974.9449 708.6879 970.6479 706.8617 967.6398 703.2094 c 964.6678 699.5929 963.1818 694.3829 963.1818 687.5794 c 963.1818 655.8904 l 953.2453 655.8904 l 953.2453 716.0464 l 963.1818 716.0464 l 963.1818 706.7007 l 965.2586 710.353 967.9621 713.0565 971.2922 714.8111 c 974.6223 716.6014 978.6686 717.4966 983.4312 717.4966 c 984.1115 717.4966 984.8635 717.4429 985.6871 717.3355 c 986.5107 717.2639 987.4238 717.1385 988.4264 716.9595 c h f Q Q Q Q q q 0.1 0.0 0.0 0.1 43.416 725.301 cm q 2 j 508.54 696.67 m 508.54 703.8313 507.054 709.3813 504.082 713.32 c 501.1458 717.2588 497.0101 719.2282 491.675 719.2282 c 486.3755 719.2282 482.2399 717.2588 479.268 713.32 c 476.3318 709.3812 474.8637 703.8312 474.8637 696.67 c 474.8637 689.5447 476.3318 684.0123 479.268 680.073 c 482.24 676.1342 486.3757 674.1648 491.675 674.1648 c 497.0103 674.1648 501.1459 676.1342 504.082 680.073 c 507.054 684.0118 508.54 689.5441 508.54 696.67 c h 518.4228 673.359 m 518.4228 663.1183 516.149 655.5093 511.6015 650.532 c 507.054 645.519 500.0893 643.0125 490.7075 643.0125 c 487.2342 643.0125 483.9578 643.2811 480.8784 643.8182 c 477.799 644.3195 474.8091 645.1072 471.9087 646.1815 c 471.9087 655.7957 l 474.8091 654.2201 477.6737 653.0564 480.5025 652.3045 c 483.3313 651.5525 486.2138 651.1766 489.15 651.1766 c 495.6311 651.1766 500.4831 652.8774 503.706 656.2791 c 506.9287 659.6449 508.54 664.7476 508.54 671.5871 c 508.54 676.4748 l 506.499 672.9298 503.8851 670.2801 500.6982 668.5256 c 497.5113 666.771 493.698 665.8938 489.2582 665.8938 c 481.8822 665.8938 475.9382 668.7046 471.4262 674.3264 c 466.9145 679.9481 464.6586 687.3961 464.6586 696.6704 c 464.6586 705.9804 466.9145 713.446 471.4262 719.0674 c 475.9379 724.6891 481.8819 727.5 489.2582 727.5 c 493.6983 727.5 497.5117 726.6227 500.6982 724.8682 c 503.8851 723.1136 506.499 720.4639 508.54 716.919 c 508.54 726.0499 l 518.4228 726.0499 l h f Q q 2 j 572.94 716.808 m 571.83 717.4525 570.6125 717.918 569.2876 718.2045 c 567.9985 718.5268 566.5662 718.6879 564.9907 718.6879 c 559.4048 718.6879 555.1078 716.8617 552.0997 713.2094 c 549.1277 709.5929 547.6417 704.3829 547.6417 697.5794 c 547.6417 665.8904 l 537.7052 665.8904 l 537.7052 726.0464 l 547.6417 726.0464 l 547.6417 716.7007 l 549.7185 720.353 552.422 723.0565 555.7521 724.8111 c 559.0822 726.6014 563.1285 727.4966 567.8911 727.4966 c 568.5714 727.4966 569.3234 727.4429 570.147 727.3355 c 570.9706 727.2639 571.8837 727.1385 572.8863 726.9595 c h f Q q 2 j 631.8 698.44 m 631.8 693.606 l 586.361 693.606 l 586.7907 686.8027 588.8317 681.6107 592.484 678.03 c 596.1721 674.4851 601.2925 672.7126 607.845 672.7126 c 611.6406 672.7126 615.3109 673.1781 618.856 674.1091 c 622.4367 675.0401 625.9817 676.4366 629.491 678.2986 c 629.491 668.9529 l 625.9461 667.449 622.3117 666.3031 618.588 665.5154 c 614.8643 664.7277 611.0866 664.3338 607.255 664.3338 c 597.6583 664.3338 590.0493 667.1268 584.428 672.7127 c 578.8421 678.2986 576.0491 685.854 576.0491 695.3787 c 576.0491 705.226 578.6988 713.032 583.9983 718.7967 c 589.3336 724.5975 596.5129 727.4979 605.5363 727.4979 c 613.629 727.4979 620.0206 724.884 624.7113 719.6561 c 629.4378 714.464 631.8011 707.392 631.8011 698.4401 c h 621.9172 701.3404 m 621.8456 706.7473 620.3238 711.062 617.3518 714.2844 c 614.4156 717.5071 610.5126 719.1184 605.6428 719.1184 c 600.1285 719.1184 595.7061 717.5608 592.3758 714.4455 c 589.0815 711.3302 587.1837 706.9439 586.6824 701.2865 c h f Q q 2 j 698.78 698.44 m 698.78 693.606 l 653.341 693.606 l 653.7707 686.8027 655.8117 681.6107 659.464 678.03 c 663.1521 674.4851 668.2725 672.7126 674.825 672.7126 c 678.6206 672.7126 682.2909 673.1781 685.836 674.1091 c 689.4167 675.0401 692.9617 676.4366 696.471 678.2986 c 696.471 668.9529 l 692.9261 667.449 689.2917 666.3031 685.568 665.5154 c 681.8443 664.7277 678.0666 664.3338 674.235 664.3338 c 664.6383 664.3338 657.0293 667.1268 651.408 672.7127 c 645.8221 678.2986 643.0291 685.854 643.0291 695.3787 c 643.0291 705.226 645.6788 713.032 650.9783 718.7967 c 656.3136 724.5975 663.4929 727.4979 672.5163 727.4979 c 680.609 727.4979 687.0006 724.884 691.6913 719.6561 c 696.4178 714.464 698.7811 707.392 698.7811 698.4401 c h 688.8972 701.3404 m 688.8256 706.7473 687.3038 711.062 684.3318 714.2844 c 681.3956 717.5071 677.4926 719.1184 672.6228 719.1184 c 667.1085 719.1184 662.6861 717.5608 659.3558 714.4455 c 656.0615 711.3302 654.1637 706.9439 653.6624 701.2865 c h f Q q 2 j 764.3 702.2 m 764.3 665.891 l 754.4172 665.891 l 754.4172 701.877 l 754.4172 707.5703 753.3072 711.8313 751.0871 714.66 c 748.867 717.4887 745.537 718.9031 741.0969 718.9032 c 735.7616 718.9032 731.5543 717.2024 728.4749 713.8007 c 725.3955 710.399 723.8558 705.762 723.8558 699.8897 c 723.8558 665.8907 l 713.9193 665.8907 l 713.9193 726.0467 l 723.8558 726.0467 l 723.8558 716.701 l 726.2191 720.3175 728.9941 723.021 732.181 724.8114 c 735.4037 726.6017 739.1097 727.4969 743.299 727.4969 c 750.2097 727.4969 755.4377 725.3485 758.983 721.0516 c 762.5279 716.7905 764.3004 710.5062 764.3004 702.1986 c h f Q q 2 j 860.92 695.91 m 860.92 703.1787 859.4161 708.872 856.4083 712.99 c 853.4363 717.1437 849.3363 719.2205 844.1083 719.2205 c 838.8804 719.2205 834.7624 717.1437 831.7543 712.99 c 828.7823 708.8721 827.2963 703.1788 827.2963 695.91 c 827.2963 688.6413 828.7823 682.93 831.7543 678.776 c 834.7621 674.6581 838.8801 672.5992 844.1083 672.5992 c 849.3362 672.5992 853.4362 674.6581 856.4083 678.776 c 859.4161 682.9297 860.92 688.641 860.92 695.91 c h 827.297 716.911 m 829.3738 720.4917 831.9877 723.1415 835.1388 724.8602 c 838.3257 726.6147 842.1213 727.492 846.5258 727.492 c 853.8305 727.492 859.7565 724.5916 864.3038 718.7908 c 868.8871 712.99 871.1788 705.363 871.1788 695.9098 c 871.1788 686.4565 868.8871 678.8295 864.3038 673.0288 c 859.7563 667.228 853.8303 664.3276 846.5258 664.3276 c 842.1215 664.3276 838.3259 665.187 835.1388 666.9057 c 831.9877 668.6602 829.3738 671.3279 827.297 674.9086 c 827.297 665.8852 l 817.3605 665.8852 l 817.3605 749.4592 l 827.297 749.4592 l h f Q q 2 j 914.2 696.13 m 906.2147 696.13 900.6823 695.2169 897.603 693.3907 c 894.5235 691.5645 892.9838 688.4493 892.9838 684.045 c 892.9838 680.5359 894.1296 677.7429 896.4213 675.6661 c 898.7488 673.6251 901.8998 672.6046 905.8744 672.6046 c 911.3529 672.6046 915.7393 674.5382 919.0334 678.4054 c 922.3635 682.3084 924.0285 687.4824 924.0285 693.9274 c 924.0285 696.1296 l h 933.912 700.212 m 933.912 665.891 l 924.0292 665.891 l 924.0292 675.0219 l 921.7733 671.3696 918.9625 668.6661 915.5966 666.9115 c 912.2307 665.1928 908.1127 664.3334 903.2426 664.3334 c 897.0837 664.3334 892.1781 666.0521 888.5256 669.4896 c 884.9091 672.9629 883.1008 677.5999 883.1008 683.4006 c 883.1008 690.1679 885.3567 695.2706 889.8684 698.7086 c 894.4159 702.1461 901.1836 703.8648 910.1714 703.8648 c 924.0284 703.8648 l 924.0284 704.8316 l 924.0284 709.3791 922.5245 712.8881 919.5167 715.3586 c 916.5447 717.8651 912.3554 719.1184 906.9487 719.1184 c 903.5112 719.1184 900.1632 718.7066 896.9047 717.883 c 893.6462 717.0594 890.5131 715.824 887.5053 714.1769 c 887.5053 723.3078 l 891.1218 724.7043 894.6308 725.7427 898.0323 726.423 c 901.434 727.1391 904.7461 727.4972 907.9688 727.4972 c 916.6701 727.4972 923.1691 725.2413 927.4658 720.7296 c 931.7627 716.2179 933.9111 709.3785 933.9111 700.2116 c h f Q q 2 j 988.48 716.808 m 987.37 717.4525 986.1526 717.918 984.8277 718.2045 c 983.5386 718.5268 982.1063 718.6879 980.5308 718.6879 c 974.9449 718.6879 970.6479 716.8617 967.6398 713.2094 c 964.6678 709.5929 963.1818 704.3829 963.1818 697.5794 c 963.1818 665.8904 l 953.2453 665.8904 l 953.2453 726.0464 l 963.1818 726.0464 l 963.1818 716.7007 l 965.2586 720.353 967.9621 723.0565 971.2922 724.8111 c 974.6223 726.6014 978.6686 727.4966 983.4312 727.4966 c 984.1115 727.4966 984.8635 727.4429 985.6871 727.3355 c 986.5107 727.2639 987.4238 727.1385 988.4264 726.9595 c h f Q Q Q Q Q Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << >> /ExtGState << /Tr1 11 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /ExtGState /CA 1 /ca 0.3 >> endobj 12 0 obj << /Type /Outlines /Count 1 /First 13 0 R /Last 13 0 R >> endobj 13 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 12 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 14 0 obj << /Nums [0 << /P (1) >>] >> endobj xref 0 15 0000000000 65535 f 0000000015 00000 n 0000000248 00000 n 0000000449 00000 n 0000000506 00000 n 0000000557 00000 n 0000000829 00000 n 0000026424 00000 n 0000026737 00000 n 0000026779 00000 n 0000026827 00000 n 0000026879 00000 n 0000026932 00000 n 0000027006 00000 n 0000027131 00000 n trailer << /Size 15 /Root 2 0 R /Info 1 0 R >> startxref 27176 %%EOF ���������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/image-svg-scale-to-fit-bounds.pdf�������������������������0000664�0000000�0000000�00000065621�14163570564�0026615�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20191004000904-06'00') /CreationDate (D:20191004000904-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 12 0 R /PageLabels 13 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 25663 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN q 48.24 706.13 m 547.04 706.13 l 547.04 805.89 l 48.24 805.89 l h W n 0.0 0.0 0.0 scn 4.98800 0.00000 0.00000 4.98800 -192.38112 -3213.88932 cm 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 cm q Q q q q 1.0 1.0 1.0 scn 51.24 805.89 m 145.24 805.89 l 146.8969 805.89 148.24 804.5469 148.24 802.89 c 148.24 788.89 l 148.24 787.2331 146.8969 785.89 145.24 785.89 c 51.24 785.89 l 49.5831 785.89 48.24 787.2331 48.24 788.89 c 48.24 802.89 l 48.24 804.5469 49.5831 805.89 51.24 805.89 c h Q W n q 0.3333 0.3333 0.3333 scn 2 j 48.24 805.89 m 85.24 805.89 l 85.24 785.89 l 48.24 785.89 l h f Q q 0.2667 0.8 0.0667 scn 2 j 85.24 805.89 m 148.24 805.89 l 148.24 785.89 l 85.24 785.89 l h f Q Q Q q 1.0 1.0 1.0 scn q q 0.10000 0.00000 0.00000 0.10000 43.41600 725.30100 cm q /Tr1 gs 0.0039 0.0039 0.0039 scn q 2 j 128.228 733.126 m 128.228 716.046 l 148.584 716.046 l 148.584 708.3653 l 128.228 708.3653 l 128.228 675.7093 l 128.228 670.8037 128.8904 667.6527 130.2153 666.2562 c 131.576 664.8597 134.3152 664.1615 138.4331 664.1615 c 148.5841 664.1615 l 148.5841 655.89 l 138.4331 655.89 l 130.8064 655.89 125.5428 657.3044 122.6421 660.1332 c 119.7417 662.9978 118.2915 668.1898 118.2915 675.7092 c 118.2915 708.3652 l 111.0405 708.3652 l 111.0405 716.0459 l 118.2915 716.0459 l 118.2915 733.1259 l h f Q q 2 j 213.4 688.44 m 213.4 683.606 l 167.961 683.606 l 168.3907 676.8027 170.4317 671.6107 174.084 668.03 c 177.7721 664.4851 182.8925 662.7126 189.445 662.7126 c 193.2406 662.7126 196.9109 663.1781 200.456 664.1091 c 204.0367 665.0401 207.5817 666.4366 211.091 668.2986 c 211.091 658.9529 l 207.5461 657.449 203.9117 656.3031 200.188 655.5154 c 196.4643 654.7277 192.6866 654.3338 188.855 654.3338 c 179.2583 654.3338 171.6493 657.1268 166.028 662.7127 c 160.4421 668.2986 157.6491 675.854 157.6491 685.3787 c 157.6491 695.226 160.2988 703.032 165.5983 708.7967 c 170.9336 714.5975 178.1129 717.4979 187.1363 717.4979 c 195.229 717.4979 201.6206 714.884 206.3113 709.6561 c 211.0378 704.464 213.4011 697.392 213.4011 688.4401 c h 203.5172 691.3404 m 203.4456 696.7473 201.9238 701.062 198.9518 704.2844 c 196.0156 707.5071 192.1126 709.1184 187.2428 709.1184 c 181.7285 709.1184 177.3061 707.5608 173.9758 704.4456 c 170.6815 701.3304 168.7837 696.9441 168.2824 691.2866 c h f Q q 2 j 268.28 714.274 m 268.28 704.9283 l 265.4871 706.3606 262.5867 707.4348 259.5788 708.151 c 256.5709 708.8672 253.4557 709.2253 250.2331 709.2252 c 245.3275 709.2252 241.6395 708.4732 239.1691 706.9693 c 236.7342 705.4654 235.5168 703.2095 235.5168 700.2017 c 235.5168 697.91 236.3941 696.1018 238.1486 694.7769 c 239.9031 693.4878 243.4301 692.2525 248.7296 691.0708 c 252.1134 690.3189 l 259.1314 688.8149 264.1087 686.6844 267.0454 683.9273 c 270.0174 681.2059 271.5034 677.3926 271.5034 672.4873 c 271.5034 666.9013 269.2833 662.479 264.8432 659.2203 c 260.4389 655.9618 254.3696 654.3326 246.6352 654.3326 c 243.4125 654.3326 240.0465 654.6548 236.5372 655.2994 c 233.0639 655.9081 229.3935 656.8391 225.5262 658.0924 c 225.5262 668.2974 l 229.1785 666.3996 232.7772 664.9673 236.3222 664.0005 c 239.8671 663.0695 243.3761 662.604 246.8492 662.604 c 251.5041 662.604 255.0848 663.3917 257.5912 664.9673 c 260.0977 666.5786 261.351 668.8345 261.351 671.7349 c 261.351 674.4204 260.4379 676.4793 258.6117 677.9117 c 256.8214 679.3439 252.8647 680.7225 246.7417 682.0475 c 243.3042 682.8531 l 237.1811 684.1422 232.7588 686.1116 230.0372 688.7613 c 227.3159 691.4468 225.9552 695.1172 225.9552 699.7723 c 225.9552 705.4298 227.9604 709.7982 231.9708 712.8773 c 235.9812 715.9567 241.6745 717.4964 249.0508 717.4964 c 252.7031 717.4964 256.1405 717.2279 259.3628 716.6908 c 262.5855 716.1536 265.5575 715.348 268.2788 714.2738 c h f Q q 2 j 297.37 733.126 m 297.37 716.046 l 317.726 716.046 l 317.726 708.3653 l 297.37 708.3653 l 297.37 675.7093 l 297.37 670.8037 298.0324 667.6527 299.3573 666.2562 c 300.718 664.8597 303.4572 664.1615 307.5751 664.1615 c 317.7261 664.1615 l 317.7261 655.89 l 307.5751 655.89 l 299.9484 655.89 294.6848 657.3044 291.7841 660.1332 c 288.8837 662.9978 287.4335 668.1898 287.4335 675.7092 c 287.4335 708.3652 l 280.1825 708.3652 l 280.1825 716.0459 l 287.4335 716.0459 l 287.4335 733.1259 l h f Q q 2 j 369.44 714.274 m 369.44 704.9283 l 366.6471 706.3606 363.7467 707.4348 360.7388 708.151 c 357.7309 708.8672 354.6157 709.2253 351.3931 709.2252 c 346.4875 709.2252 342.7995 708.4732 340.3291 706.9693 c 337.8942 705.4654 336.6768 703.2095 336.6768 700.2017 c 336.6768 697.91 337.5541 696.1018 339.3086 694.7769 c 341.0631 693.4878 344.5901 692.2525 349.8896 691.0708 c 353.2734 690.3189 l 360.2914 688.8149 365.2687 686.6844 368.2054 683.9273 c 371.1774 681.2059 372.6634 677.3926 372.6634 672.4873 c 372.6634 666.9013 370.4433 662.479 366.0032 659.2203 c 361.5989 655.9618 355.5296 654.3326 347.7952 654.3326 c 344.5725 654.3326 341.2065 654.6548 337.6972 655.2994 c 334.2239 655.9081 330.5535 656.8391 326.6862 658.0924 c 326.6862 668.2974 l 330.3385 666.3996 333.9372 664.9673 337.4822 664.0005 c 341.0271 663.0695 344.5361 662.604 348.0092 662.604 c 352.6641 662.604 356.2448 663.3917 358.7512 664.9673 c 361.2577 666.5786 362.511 668.8345 362.511 671.7349 c 362.511 674.4204 361.5979 676.4793 359.7717 677.9117 c 357.9813 679.3439 354.0246 680.7225 347.9017 682.0475 c 344.4642 682.8531 l 338.3411 684.1422 333.9188 686.1116 331.1972 688.7613 c 328.4759 691.4468 327.1152 695.1172 327.1152 699.7723 c 327.1152 705.4298 329.1204 709.7982 333.1308 712.8773 c 337.1412 715.9567 342.8345 717.4964 350.2108 717.4964 c 353.8631 717.4964 357.3005 717.2279 360.5228 716.6908 c 363.7455 716.1536 366.7175 715.348 369.4388 714.2738 c h f Q Q Q Q q q 0.10000 0.00000 0.00000 0.10000 43.41600 725.30100 cm q 2 j 128.228 743.126 m 128.228 726.046 l 148.584 726.046 l 148.584 718.3653 l 128.228 718.3653 l 128.228 685.7093 l 128.228 680.8037 128.8904 677.6527 130.2153 676.2562 c 131.576 674.8597 134.3152 674.1615 138.4331 674.1615 c 148.5841 674.1615 l 148.5841 665.89 l 138.4331 665.89 l 130.8064 665.89 125.5428 667.3044 122.6421 670.1332 c 119.7417 672.9978 118.2915 678.1898 118.2915 685.7092 c 118.2915 718.3652 l 111.0405 718.3652 l 111.0405 726.0459 l 118.2915 726.0459 l 118.2915 743.1259 l h f Q q 2 j 213.4 698.44 m 213.4 693.606 l 167.961 693.606 l 168.3907 686.8027 170.4317 681.6107 174.084 678.03 c 177.7721 674.4851 182.8925 672.7126 189.445 672.7126 c 193.2406 672.7126 196.9109 673.1781 200.456 674.1091 c 204.0367 675.0401 207.5817 676.4366 211.091 678.2986 c 211.091 668.9529 l 207.5461 667.449 203.9117 666.3031 200.188 665.5154 c 196.4643 664.7277 192.6866 664.3338 188.855 664.3338 c 179.2583 664.3338 171.6493 667.1268 166.028 672.7127 c 160.4421 678.2986 157.6491 685.854 157.6491 695.3787 c 157.6491 705.226 160.2988 713.032 165.5983 718.7967 c 170.9336 724.5975 178.1129 727.4979 187.1363 727.4979 c 195.229 727.4979 201.6206 724.884 206.3113 719.6561 c 211.0378 714.464 213.4011 707.392 213.4011 698.4401 c h 203.5172 701.3404 m 203.4456 706.7473 201.9238 711.062 198.9518 714.2844 c 196.0156 717.5071 192.1126 719.1184 187.2428 719.1184 c 181.7285 719.1184 177.3061 717.5608 173.9758 714.4455 c 170.6815 711.3302 168.7837 706.9439 168.2824 701.2865 c h f Q q 2 j 268.28 724.274 m 268.28 714.9283 l 265.4871 716.3606 262.5867 717.4348 259.5788 718.151 c 256.5709 718.8672 253.4557 719.2253 250.2331 719.2252 c 245.3275 719.2252 241.6395 718.4732 239.1691 716.9693 c 236.7342 715.4654 235.5168 713.2095 235.5168 710.2017 c 235.5168 707.91 236.3941 706.1018 238.1486 704.7769 c 239.9031 703.4878 243.4301 702.2525 248.7296 701.0708 c 252.1134 700.3189 l 259.1314 698.8149 264.1087 696.6844 267.0454 693.9273 c 270.0174 691.2059 271.5034 687.3926 271.5034 682.4873 c 271.5034 676.9013 269.2833 672.479 264.8432 669.2203 c 260.4389 665.9618 254.3696 664.3326 246.6352 664.3326 c 243.4125 664.3326 240.0465 664.6548 236.5372 665.2994 c 233.0639 665.9081 229.3935 666.8391 225.5262 668.0924 c 225.5262 678.2974 l 229.1785 676.3996 232.7772 674.9673 236.3222 674.0005 c 239.8671 673.0695 243.3761 672.6039 246.8492 672.6039 c 251.5041 672.6039 255.0848 673.3917 257.5912 674.9673 c 260.0977 676.5786 261.351 678.8345 261.351 681.7349 c 261.351 684.4204 260.4379 686.4793 258.6117 687.9117 c 256.8214 689.3439 252.8647 690.7225 246.7417 692.0475 c 243.3042 692.8531 l 237.1811 694.1422 232.7588 696.1116 230.0372 698.7613 c 227.3159 701.4468 225.9552 705.1172 225.9552 709.7723 c 225.9552 715.4298 227.9604 719.7982 231.9708 722.8773 c 235.9812 725.9567 241.6745 727.4964 249.0508 727.4964 c 252.7031 727.4964 256.1405 727.2279 259.3628 726.6908 c 262.5855 726.1536 265.5575 725.348 268.2788 724.2738 c h f Q q 2 j 297.37 743.126 m 297.37 726.046 l 317.726 726.046 l 317.726 718.3653 l 297.37 718.3653 l 297.37 685.7093 l 297.37 680.8037 298.0324 677.6527 299.3573 676.2562 c 300.718 674.8597 303.4572 674.1615 307.5751 674.1615 c 317.7261 674.1615 l 317.7261 665.89 l 307.5751 665.89 l 299.9484 665.89 294.6848 667.3044 291.7841 670.1332 c 288.8837 672.9978 287.4335 678.1898 287.4335 685.7092 c 287.4335 718.3652 l 280.1825 718.3652 l 280.1825 726.0459 l 287.4335 726.0459 l 287.4335 743.1259 l h f Q q 2 j 369.44 724.274 m 369.44 714.9283 l 366.6471 716.3606 363.7467 717.4348 360.7388 718.151 c 357.7309 718.8672 354.6157 719.2253 351.3931 719.2252 c 346.4875 719.2252 342.7995 718.4732 340.3291 716.9693 c 337.8942 715.4654 336.6768 713.2095 336.6768 710.2017 c 336.6768 707.91 337.5541 706.1018 339.3086 704.7769 c 341.0631 703.4878 344.5901 702.2525 349.8896 701.0708 c 353.2734 700.3189 l 360.2914 698.8149 365.2687 696.6844 368.2054 693.9273 c 371.1774 691.2059 372.6634 687.3926 372.6634 682.4873 c 372.6634 676.9013 370.4433 672.479 366.0032 669.2203 c 361.5989 665.9618 355.5296 664.3326 347.7952 664.3326 c 344.5725 664.3326 341.2065 664.6548 337.6972 665.2994 c 334.2239 665.9081 330.5535 666.8391 326.6862 668.0924 c 326.6862 678.2974 l 330.3385 676.3996 333.9372 674.9673 337.4822 674.0005 c 341.0271 673.0695 344.5361 672.6039 348.0092 672.6039 c 352.6641 672.6039 356.2448 673.3917 358.7512 674.9673 c 361.2577 676.5786 362.511 678.8345 362.511 681.7349 c 362.511 684.4204 361.5979 686.4793 359.7717 687.9117 c 357.9813 689.3439 354.0246 690.7225 347.9017 692.0475 c 344.4642 692.8531 l 338.3411 694.1422 333.9188 696.1116 331.1972 698.7613 c 328.4759 701.4468 327.1152 705.1172 327.1152 709.7723 c 327.1152 715.4298 329.1204 719.7982 333.1308 722.8773 c 337.1412 725.9567 342.8345 727.4964 350.2108 727.4964 c 353.8631 727.4964 357.3005 727.2279 360.5228 726.6908 c 363.7455 726.1536 366.7175 725.348 369.4388 724.2738 c h f Q Q Q q q 0.10000 0.00000 0.00000 0.10000 43.41600 725.30100 cm q /Tr1 gs 0.0039 0.0039 0.0039 scn q 2 j 508.54 686.67 m 508.54 693.8313 507.054 699.3813 504.082 703.32 c 501.1458 707.2588 497.0101 709.2282 491.675 709.2282 c 486.3755 709.2282 482.2399 707.2588 479.268 703.32 c 476.3318 699.3812 474.8637 693.8312 474.8637 686.67 c 474.8637 679.5447 476.3318 674.0123 479.268 670.073 c 482.24 666.1342 486.3757 664.1648 491.675 664.1648 c 497.0103 664.1648 501.1459 666.1342 504.082 670.073 c 507.054 674.0118 508.54 679.5441 508.54 686.67 c h 518.4228 663.359 m 518.4228 653.1183 516.149 645.5093 511.6015 640.532 c 507.054 635.519 500.0893 633.0125 490.7075 633.0125 c 487.2342 633.0125 483.9578 633.2811 480.8784 633.8182 c 477.799 634.3195 474.8091 635.1072 471.9087 636.1815 c 471.9087 645.7957 l 474.8091 644.2201 477.6737 643.0564 480.5025 642.3045 c 483.3313 641.5525 486.2138 641.1766 489.15 641.1766 c 495.6311 641.1766 500.4831 642.8774 503.706 646.2791 c 506.9287 649.6449 508.54 654.7476 508.54 661.5871 c 508.54 666.4748 l 506.499 662.9298 503.8851 660.2801 500.6982 658.5256 c 497.5113 656.771 493.698 655.8938 489.2582 655.8938 c 481.8822 655.8938 475.9382 658.7046 471.4262 664.3264 c 466.9145 669.9481 464.6586 677.3961 464.6586 686.6704 c 464.6586 695.9804 466.9145 703.446 471.4262 709.0674 c 475.9379 714.6891 481.8819 717.5 489.2582 717.5 c 493.6983 717.5 497.5117 716.6227 500.6982 714.8682 c 503.8851 713.1136 506.499 710.4639 508.54 706.919 c 508.54 716.0499 l 518.4228 716.0499 l h f Q q 2 j 572.94 706.808 m 571.83 707.4525 570.6125 707.918 569.2876 708.2045 c 567.9985 708.5268 566.5662 708.6879 564.9907 708.6879 c 559.4048 708.6879 555.1078 706.8617 552.0997 703.2094 c 549.1277 699.5929 547.6417 694.3829 547.6417 687.5794 c 547.6417 655.8904 l 537.7052 655.8904 l 537.7052 716.0464 l 547.6417 716.0464 l 547.6417 706.7007 l 549.7185 710.353 552.422 713.0565 555.7521 714.8111 c 559.0822 716.6014 563.1285 717.4966 567.8911 717.4966 c 568.5714 717.4966 569.3234 717.4429 570.147 717.3355 c 570.9706 717.2639 571.8837 717.1385 572.8863 716.9595 c h f Q q 2 j 631.8 688.44 m 631.8 683.606 l 586.361 683.606 l 586.7907 676.8027 588.8317 671.6107 592.484 668.03 c 596.1721 664.4851 601.2925 662.7126 607.845 662.7126 c 611.6406 662.7126 615.3109 663.1781 618.856 664.1091 c 622.4367 665.0401 625.9817 666.4366 629.491 668.2986 c 629.491 658.9529 l 625.9461 657.449 622.3117 656.3031 618.588 655.5154 c 614.8643 654.7277 611.0866 654.3338 607.255 654.3338 c 597.6583 654.3338 590.0493 657.1268 584.428 662.7127 c 578.8421 668.2986 576.0491 675.854 576.0491 685.3787 c 576.0491 695.226 578.6988 703.032 583.9983 708.7967 c 589.3336 714.5975 596.5129 717.4979 605.5363 717.4979 c 613.629 717.4979 620.0206 714.884 624.7113 709.6561 c 629.4378 704.464 631.8011 697.392 631.8011 688.4401 c h 621.9172 691.3404 m 621.8456 696.7473 620.3238 701.062 617.3518 704.2844 c 614.4156 707.5071 610.5126 709.1184 605.6428 709.1184 c 600.1285 709.1184 595.7061 707.5608 592.3758 704.4456 c 589.0815 701.3304 587.1837 696.9441 586.6824 691.2866 c h f Q q 2 j 698.78 688.44 m 698.78 683.606 l 653.341 683.606 l 653.7707 676.8027 655.8117 671.6107 659.464 668.03 c 663.1521 664.4851 668.2725 662.7126 674.825 662.7126 c 678.6206 662.7126 682.2909 663.1781 685.836 664.1091 c 689.4167 665.0401 692.9617 666.4366 696.471 668.2986 c 696.471 658.9529 l 692.9261 657.449 689.2917 656.3031 685.568 655.5154 c 681.8443 654.7277 678.0666 654.3338 674.235 654.3338 c 664.6383 654.3338 657.0293 657.1268 651.408 662.7127 c 645.8221 668.2986 643.0291 675.854 643.0291 685.3787 c 643.0291 695.226 645.6788 703.032 650.9783 708.7967 c 656.3136 714.5975 663.4929 717.4979 672.5163 717.4979 c 680.609 717.4979 687.0006 714.884 691.6913 709.6561 c 696.4178 704.464 698.7811 697.392 698.7811 688.4401 c h 688.8972 691.3404 m 688.8256 696.7473 687.3038 701.062 684.3318 704.2844 c 681.3956 707.5071 677.4926 709.1184 672.6228 709.1184 c 667.1085 709.1184 662.6861 707.5608 659.3558 704.4456 c 656.0615 701.3304 654.1637 696.9441 653.6624 691.2866 c h f Q q 2 j 764.3 692.2 m 764.3 655.891 l 754.4172 655.891 l 754.4172 691.877 l 754.4172 697.5703 753.3072 701.8313 751.0871 704.66 c 748.867 707.4888 745.537 708.9032 741.0969 708.9032 c 735.7616 708.9032 731.5543 707.2024 728.4749 703.8007 c 725.3955 700.399 723.8558 695.762 723.8558 689.8897 c 723.8558 655.8907 l 713.9193 655.8907 l 713.9193 716.0467 l 723.8558 716.0467 l 723.8558 706.701 l 726.2191 710.3175 728.9941 713.021 732.181 714.8114 c 735.4037 716.6017 739.1097 717.4969 743.299 717.4969 c 750.2097 717.4969 755.4377 715.3485 758.983 711.0516 c 762.5279 706.7905 764.3004 700.5062 764.3004 692.1986 c h f Q q 2 j 860.92 685.91 m 860.92 693.1787 859.4161 698.872 856.4083 702.99 c 853.4363 707.1437 849.3363 709.2205 844.1083 709.2205 c 838.8804 709.2205 834.7624 707.1437 831.7543 702.99 c 828.7823 698.8721 827.2963 693.1788 827.2963 685.91 c 827.2963 678.6412 828.7823 672.9299 831.7543 668.776 c 834.7621 664.6581 838.8801 662.5992 844.1083 662.5992 c 849.3362 662.5992 853.4362 664.6581 856.4083 668.776 c 859.4161 672.9297 860.92 678.641 860.92 685.91 c h 827.297 706.911 m 829.3738 710.4917 831.9877 713.1415 835.1388 714.8602 c 838.3257 716.6147 842.1213 717.492 846.5258 717.492 c 853.8305 717.492 859.7565 714.5916 864.3038 708.7908 c 868.8871 702.99 871.1788 695.363 871.1788 685.9098 c 871.1788 676.4565 868.8871 668.8295 864.3038 663.0288 c 859.7563 657.228 853.8303 654.3276 846.5258 654.3276 c 842.1215 654.3276 838.3259 655.187 835.1388 656.9057 c 831.9877 658.6602 829.3738 661.3279 827.297 664.9086 c 827.297 655.8852 l 817.3605 655.8852 l 817.3605 739.4592 l 827.297 739.4592 l h f Q q 2 j 914.2 686.13 m 906.2147 686.13 900.6823 685.2169 897.603 683.3907 c 894.5235 681.5645 892.9838 678.4493 892.9838 674.045 c 892.9838 670.5359 894.1296 667.7429 896.4213 665.6661 c 898.7488 663.6251 901.8998 662.6046 905.8744 662.6046 c 911.3529 662.6046 915.7393 664.5382 919.0334 668.4054 c 922.3635 672.3084 924.0285 677.4824 924.0285 683.9274 c 924.0285 686.1296 l h 933.912 690.212 m 933.912 655.891 l 924.0292 655.891 l 924.0292 665.0219 l 921.7733 661.3696 918.9625 658.6661 915.5966 656.9115 c 912.2307 655.1928 908.1127 654.3334 903.2426 654.3334 c 897.0837 654.3334 892.1781 656.0521 888.5256 659.4896 c 884.9091 662.9629 883.1008 667.5999 883.1008 673.4006 c 883.1008 680.1679 885.3567 685.2706 889.8684 688.7086 c 894.4159 692.1461 901.1836 693.8648 910.1714 693.8648 c 924.0284 693.8648 l 924.0284 694.8316 l 924.0284 699.3791 922.5245 702.8881 919.5167 705.3586 c 916.5447 707.8651 912.3554 709.1184 906.9487 709.1184 c 903.5112 709.1184 900.1632 708.7066 896.9047 707.883 c 893.6462 707.0594 890.5131 705.824 887.5053 704.1769 c 887.5053 713.3078 l 891.1218 714.7043 894.6308 715.7427 898.0323 716.423 c 901.434 717.1391 904.7461 717.4972 907.9688 717.4972 c 916.6701 717.4972 923.1691 715.2413 927.4658 710.7296 c 931.7627 706.2179 933.9111 699.3785 933.9111 690.2116 c h f Q q 2 j 988.48 706.808 m 987.37 707.4525 986.1526 707.918 984.8277 708.2045 c 983.5386 708.5268 982.1063 708.6879 980.5308 708.6879 c 974.9449 708.6879 970.6479 706.8617 967.6398 703.2094 c 964.6678 699.5929 963.1818 694.3829 963.1818 687.5794 c 963.1818 655.8904 l 953.2453 655.8904 l 953.2453 716.0464 l 963.1818 716.0464 l 963.1818 706.7007 l 965.2586 710.353 967.9621 713.0565 971.2922 714.8111 c 974.6223 716.6014 978.6686 717.4966 983.4312 717.4966 c 984.1115 717.4966 984.8635 717.4429 985.6871 717.3355 c 986.5107 717.2639 987.4238 717.1385 988.4264 716.9595 c h f Q Q Q Q q q 0.10000 0.00000 0.00000 0.10000 43.41600 725.30100 cm q 2 j 508.54 696.67 m 508.54 703.8313 507.054 709.3813 504.082 713.32 c 501.1458 717.2588 497.0101 719.2282 491.675 719.2282 c 486.3755 719.2282 482.2399 717.2588 479.268 713.32 c 476.3318 709.3812 474.8637 703.8312 474.8637 696.67 c 474.8637 689.5447 476.3318 684.0123 479.268 680.073 c 482.24 676.1342 486.3757 674.1648 491.675 674.1648 c 497.0103 674.1648 501.1459 676.1342 504.082 680.073 c 507.054 684.0118 508.54 689.5441 508.54 696.67 c h 518.4228 673.359 m 518.4228 663.1183 516.149 655.5093 511.6015 650.532 c 507.054 645.519 500.0893 643.0125 490.7075 643.0125 c 487.2342 643.0125 483.9578 643.2811 480.8784 643.8182 c 477.799 644.3195 474.8091 645.1072 471.9087 646.1815 c 471.9087 655.7957 l 474.8091 654.2201 477.6737 653.0564 480.5025 652.3045 c 483.3313 651.5525 486.2138 651.1766 489.15 651.1766 c 495.6311 651.1766 500.4831 652.8774 503.706 656.2791 c 506.9287 659.6449 508.54 664.7476 508.54 671.5871 c 508.54 676.4748 l 506.499 672.9298 503.8851 670.2801 500.6982 668.5256 c 497.5113 666.771 493.698 665.8938 489.2582 665.8938 c 481.8822 665.8938 475.9382 668.7046 471.4262 674.3264 c 466.9145 679.9481 464.6586 687.3961 464.6586 696.6704 c 464.6586 705.9804 466.9145 713.446 471.4262 719.0674 c 475.9379 724.6891 481.8819 727.5 489.2582 727.5 c 493.6983 727.5 497.5117 726.6227 500.6982 724.8682 c 503.8851 723.1136 506.499 720.4639 508.54 716.919 c 508.54 726.0499 l 518.4228 726.0499 l h f Q q 2 j 572.94 716.808 m 571.83 717.4525 570.6125 717.918 569.2876 718.2045 c 567.9985 718.5268 566.5662 718.6879 564.9907 718.6879 c 559.4048 718.6879 555.1078 716.8617 552.0997 713.2094 c 549.1277 709.5929 547.6417 704.3829 547.6417 697.5794 c 547.6417 665.8904 l 537.7052 665.8904 l 537.7052 726.0464 l 547.6417 726.0464 l 547.6417 716.7007 l 549.7185 720.353 552.422 723.0565 555.7521 724.8111 c 559.0822 726.6014 563.1285 727.4966 567.8911 727.4966 c 568.5714 727.4966 569.3234 727.4429 570.147 727.3355 c 570.9706 727.2639 571.8837 727.1385 572.8863 726.9595 c h f Q q 2 j 631.8 698.44 m 631.8 693.606 l 586.361 693.606 l 586.7907 686.8027 588.8317 681.6107 592.484 678.03 c 596.1721 674.4851 601.2925 672.7126 607.845 672.7126 c 611.6406 672.7126 615.3109 673.1781 618.856 674.1091 c 622.4367 675.0401 625.9817 676.4366 629.491 678.2986 c 629.491 668.9529 l 625.9461 667.449 622.3117 666.3031 618.588 665.5154 c 614.8643 664.7277 611.0866 664.3338 607.255 664.3338 c 597.6583 664.3338 590.0493 667.1268 584.428 672.7127 c 578.8421 678.2986 576.0491 685.854 576.0491 695.3787 c 576.0491 705.226 578.6988 713.032 583.9983 718.7967 c 589.3336 724.5975 596.5129 727.4979 605.5363 727.4979 c 613.629 727.4979 620.0206 724.884 624.7113 719.6561 c 629.4378 714.464 631.8011 707.392 631.8011 698.4401 c h 621.9172 701.3404 m 621.8456 706.7473 620.3238 711.062 617.3518 714.2844 c 614.4156 717.5071 610.5126 719.1184 605.6428 719.1184 c 600.1285 719.1184 595.7061 717.5608 592.3758 714.4455 c 589.0815 711.3302 587.1837 706.9439 586.6824 701.2865 c h f Q q 2 j 698.78 698.44 m 698.78 693.606 l 653.341 693.606 l 653.7707 686.8027 655.8117 681.6107 659.464 678.03 c 663.1521 674.4851 668.2725 672.7126 674.825 672.7126 c 678.6206 672.7126 682.2909 673.1781 685.836 674.1091 c 689.4167 675.0401 692.9617 676.4366 696.471 678.2986 c 696.471 668.9529 l 692.9261 667.449 689.2917 666.3031 685.568 665.5154 c 681.8443 664.7277 678.0666 664.3338 674.235 664.3338 c 664.6383 664.3338 657.0293 667.1268 651.408 672.7127 c 645.8221 678.2986 643.0291 685.854 643.0291 695.3787 c 643.0291 705.226 645.6788 713.032 650.9783 718.7967 c 656.3136 724.5975 663.4929 727.4979 672.5163 727.4979 c 680.609 727.4979 687.0006 724.884 691.6913 719.6561 c 696.4178 714.464 698.7811 707.392 698.7811 698.4401 c h 688.8972 701.3404 m 688.8256 706.7473 687.3038 711.062 684.3318 714.2844 c 681.3956 717.5071 677.4926 719.1184 672.6228 719.1184 c 667.1085 719.1184 662.6861 717.5608 659.3558 714.4455 c 656.0615 711.3302 654.1637 706.9439 653.6624 701.2865 c h f Q q 2 j 764.3 702.2 m 764.3 665.891 l 754.4172 665.891 l 754.4172 701.877 l 754.4172 707.5703 753.3072 711.8313 751.0871 714.66 c 748.867 717.4887 745.537 718.9031 741.0969 718.9032 c 735.7616 718.9032 731.5543 717.2024 728.4749 713.8007 c 725.3955 710.399 723.8558 705.762 723.8558 699.8897 c 723.8558 665.8907 l 713.9193 665.8907 l 713.9193 726.0467 l 723.8558 726.0467 l 723.8558 716.701 l 726.2191 720.3175 728.9941 723.021 732.181 724.8114 c 735.4037 726.6017 739.1097 727.4969 743.299 727.4969 c 750.2097 727.4969 755.4377 725.3485 758.983 721.0516 c 762.5279 716.7905 764.3004 710.5062 764.3004 702.1986 c h f Q q 2 j 860.92 695.91 m 860.92 703.1787 859.4161 708.872 856.4083 712.99 c 853.4363 717.1437 849.3363 719.2205 844.1083 719.2205 c 838.8804 719.2205 834.7624 717.1437 831.7543 712.99 c 828.7823 708.8721 827.2963 703.1788 827.2963 695.91 c 827.2963 688.6413 828.7823 682.93 831.7543 678.776 c 834.7621 674.6581 838.8801 672.5992 844.1083 672.5992 c 849.3362 672.5992 853.4362 674.6581 856.4083 678.776 c 859.4161 682.9297 860.92 688.641 860.92 695.91 c h 827.297 716.911 m 829.3738 720.4917 831.9877 723.1415 835.1388 724.8602 c 838.3257 726.6147 842.1213 727.492 846.5258 727.492 c 853.8305 727.492 859.7565 724.5916 864.3038 718.7908 c 868.8871 712.99 871.1788 705.363 871.1788 695.9098 c 871.1788 686.4565 868.8871 678.8295 864.3038 673.0288 c 859.7563 667.228 853.8303 664.3276 846.5258 664.3276 c 842.1215 664.3276 838.3259 665.187 835.1388 666.9057 c 831.9877 668.6602 829.3738 671.3279 827.297 674.9086 c 827.297 665.8852 l 817.3605 665.8852 l 817.3605 749.4592 l 827.297 749.4592 l h f Q q 2 j 914.2 696.13 m 906.2147 696.13 900.6823 695.2169 897.603 693.3907 c 894.5235 691.5645 892.9838 688.4493 892.9838 684.045 c 892.9838 680.5359 894.1296 677.7429 896.4213 675.6661 c 898.7488 673.6251 901.8998 672.6046 905.8744 672.6046 c 911.3529 672.6046 915.7393 674.5382 919.0334 678.4054 c 922.3635 682.3084 924.0285 687.4824 924.0285 693.9274 c 924.0285 696.1296 l h 933.912 700.212 m 933.912 665.891 l 924.0292 665.891 l 924.0292 675.0219 l 921.7733 671.3696 918.9625 668.6661 915.5966 666.9115 c 912.2307 665.1928 908.1127 664.3334 903.2426 664.3334 c 897.0837 664.3334 892.1781 666.0521 888.5256 669.4896 c 884.9091 672.9629 883.1008 677.5999 883.1008 683.4006 c 883.1008 690.1679 885.3567 695.2706 889.8684 698.7086 c 894.4159 702.1461 901.1836 703.8648 910.1714 703.8648 c 924.0284 703.8648 l 924.0284 704.8316 l 924.0284 709.3791 922.5245 712.8881 919.5167 715.3586 c 916.5447 717.8651 912.3554 719.1184 906.9487 719.1184 c 903.5112 719.1184 900.1632 718.7066 896.9047 717.883 c 893.6462 717.0594 890.5131 715.824 887.5053 714.1769 c 887.5053 723.3078 l 891.1218 724.7043 894.6308 725.7427 898.0323 726.423 c 901.434 727.1391 904.7461 727.4972 907.9688 727.4972 c 916.6701 727.4972 923.1691 725.2413 927.4658 720.7296 c 931.7627 716.2179 933.9111 709.3785 933.9111 700.2116 c h f Q q 2 j 988.48 716.808 m 987.37 717.4525 986.1526 717.918 984.8277 718.2045 c 983.5386 718.5268 982.1063 718.6879 980.5308 718.6879 c 974.9449 718.6879 970.6479 716.8617 967.6398 713.2094 c 964.6678 709.5929 963.1818 704.3829 963.1818 697.5794 c 963.1818 665.8904 l 953.2453 665.8904 l 953.2453 726.0464 l 963.1818 726.0464 l 963.1818 716.7007 l 965.2586 720.353 967.9621 723.0565 971.2922 724.8111 c 974.6223 726.6014 978.6686 727.4966 983.4312 727.4966 c 984.1115 727.4966 984.8635 727.4429 985.6871 727.3355 c 986.5107 727.2639 987.4238 727.1385 988.4264 726.9595 c h f Q Q Q Q Q Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << >> /ExtGState << /Tr1 11 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /ExtGState /CA 1 /ca 0.3 >> endobj 12 0 obj << /Type /Outlines /Count 0 /First null /Last null >> endobj 13 0 obj << /Nums [0 << /P (1) >>] >> endobj xref 0 14 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000026555 00000 n 0000026868 00000 n 0000026910 00000 n 0000026958 00000 n 0000027010 00000 n 0000027063 00000 n 0000027133 00000 n trailer << /Size 14 /Root 2 0 R /Info 1 0 R >> startxref 27178 %%EOF ���������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/image-svg-with-caption-scale-to-fit-page.pdf��������������0000664�0000000�0000000�00000027454�14163570564�0030645�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.4.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.4.dev, based on Prawn 2.2.2) /ModDate (D:20210108020008-07'00') /CreationDate (D:20210108020008-07'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 13 0 R /PageLabels 15 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 792.0] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 612.0 792.0] /CropBox [0 0 612.0 792.0] /BleedBox [0 0 612.0 792.0] /TrimBox [0 0 612.0 792.0] /ArtBox [0 0 612.0 792.0] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 2672 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN q 48.24 82.222 m 524.6487 82.222 l 524.6487 756.0 l 48.24 756.0 l h W n 0.0 0.0 0.0 scn 2.26861 0.00000 0.00000 2.26861 -61.19788 -959.07127 cm 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 cm q q 0.70711 0.70711 -0.70711 0.70711 552.60446 187.31643 cm q /Tr1 gs 0.26458 w q 2 j -60.16 558.69 m -60.16 594.806 l -49.023 594.806 l -44.1613 594.806 -40.2009 593.2185 -37.142 590.0435 c -34.0662 586.8685 -32.5283 582.7012 -32.5283 577.5415 c -32.5283 575.9292 l -32.5283 570.7698 -34.0662 566.6025 -37.142 563.4272 c -40.2013 560.2687 -44.1949 558.6895 -49.123 558.6895 c h -49.023 588.778 m -52.6941 588.778 l -52.6941 564.693 l -49.1222 564.693 l -46.1622 564.693 -43.9215 565.6604 -42.4001 567.5952 c -40.8622 569.5465 -40.0933 572.3247 -40.0933 575.9296 c -40.0933 577.5915 l -40.0933 585.0495 -43.0699 588.7785 -49.023 588.7785 c h f Q q 2 j -6.977 558.69 m -13.7239 571.936 l -19.6522 571.936 l -19.6522 558.69 l -27.1184 558.69 l -27.1184 594.806 l -13.6744 594.806 l -9.5237 594.806 -6.2661 593.8717 -3.9014 592.0031 c -1.5201 590.151 -0.3295 587.4473 -0.3295 583.892 c -0.3295 581.2793 -0.9083 579.1709 -2.0658 577.5668 c -3.2233 575.9627 -4.7943 574.7142 -6.7787 573.8213 c 1.0348 559.0373 l 1.0348 558.69 l h -19.652 588.778 m -19.652 577.938 l -13.6741 577.938 l -11.7228 577.938 -10.2593 578.4258 -9.2837 579.4015 c -8.2915 580.3937 -7.7954 581.7001 -7.7954 583.3206 c -7.7954 584.9908 -8.275 586.3137 -9.2341 587.2894 c -10.1932 588.2816 -11.6732 588.7777 -13.6741 588.7777 c h f Q q 2 j 2.3 558.69 m 15.744 594.806 l 22.6397 594.806 l 36.1587 558.69 l 28.2212 558.69 l 25.7407 566.1314 l 12.6687 566.1314 l 10.1882 558.69 l h 14.678 572.159 m 23.7317 572.159 l 19.2172 585.727 l h f Q q 2 j 39.557 558.69 m 39.557 594.806 l 63.097 594.806 l 63.097 588.7785 l 47.024 588.7785 l 47.024 579.4519 l 61.311 579.4519 l 61.311 573.4492 l 47.024 573.4492 l 47.024 558.6902 l h f Q q 2 j 65.726 588.78 m 65.726 594.8075 l 95.12 594.8075 l 95.12 588.78 l 84.082 588.78 l 84.082 558.692 l 76.6406 558.692 l 76.6406 588.78 l h f Q Q Q Q Q 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 66.8562 Td /F2.0 9.975 Tf <46696775726520312e207469746c652074657874207469746c652074657874207469746c652074657874207469746c652074657874207469746c652074657874207469746c652074657874207469746c652074657874207469746c652074657874207469746c652074657874207469746c652074657874207469746c652074657874207469746c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 51.8652 Td /F2.0 9.975 Tf <74657874207469746c652074657874207469746c652074657874207469746c652074657874> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 612.0 792.0] /CropBox [0 0 612.0 792.0] /BleedBox [0 0 612.0 792.0] /TrimBox [0 0 612.0 792.0] /ArtBox [0 0 612.0 792.0] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 12 0 R >> /ExtGState << /Tr1 11 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 792.0 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /ExtGState /CA 1 /ca 0.25 >> endobj 12 0 obj << /Type /Font /BaseFont /bcd7b0+NotoSerif-Italic /Subtype /TrueType /FontDescriptor 17 0 R /FirstChar 32 /LastChar 255 /Widths 19 0 R /ToUnicode 18 0 R >> endobj 13 0 obj << /Type /Outlines /Count 1 /First 14 0 R /Last 14 0 R >> endobj 14 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 13 0 R /Count 0 /Dest [7 0 R /XYZ 0 792.0 null] >> endobj 15 0 obj << /Nums [0 << /P (1) >>] >> endobj 16 0 obj << /Length1 7472 /Length 4539 /Filter [/FlateDecode] >> stream xY}t[Evޓq,%&&xcĎqbٖdN%K!M$[`K$'1Kp6MP0$r('iy!.Rá ۞mIْòHѳcPO~3sswܹ3�ٰ4prpJD> y#C Gؾ  zQvhlqQ^<j&G=ÂhP2'Z [;Q_cP> b8}8 &*V�G @>4{ct>zC�-|EIx+-&рt�\X�YK 8L872ߐkh08yvkK6ul"8 XRZn}Mua ۖ @@#׉km8c-,DtuED.]HDˌǃy ~9)}{)+{N[sOO8F<`ev]93r:lѠ3bw_/͓2 O*7[ͭuf)y|y~ni śfs;ӱqoK;qh,ʥ+j`ƶTNJWj 5}AZ³/~H%;9/_Ⴟt+z vou'䯕dPЄxpedա-"]]nEm�/,_Y ;<qd=cc-/M/sh䕱c'eΏvKJ9n4<Hd,,IVkUŸ?=r:i_=Y&RW^ f[tn :h2y;ڲ!jIޗGBGK̛\e޺Kw@$ԵjK^t&?6kPdj �}#|rq#?Xqz>6vӷp}t<R5[XһmYdwyaݧg+ɣbFL+?|Mo_i<kt5:9Ks/oFǷ\ݶK%%_%ևh,uEz^jUlg4ZodVvveC/;^jOx$G{ `_$YS�.%ba'&N̿m&Kn5s)'Z҆&4듟JN]�yY=y%';ghq1~Nx~N"+,;pA(o4t}spIԴ vsކ1i'Gwd >/;!;zSIKXF$WqM wk`|.$@.KՊ3yi;_~P L!ٜȅX m[ p'.YFfPƴ˰4dyR|"D|MUG*.A.YzBC5PD*%֡䜊g@!Ix|OSP 4X%tx&T U<vT< JDAų`h}!R Pl!Sl `/uZBH`kVPhxGm*42B{YW^ Z a`%XRh#CA*l5!2u(|Xk/^ BBjٹF�l1H`YcA� n C0;i%AAUmlyگQdF *=9k9D ][w<Ӊ"ܡ* [n`M9cirn-xQOn<sx4=xЄ#3݈[\oďwnnEAb/3[x6><0j<0>/4i IJ1yt0 h<?bi?}U V Fþ yƐ#*$* F(Pרq:1NyoQp"D}~Lk(Pl'c F1cA/Bc~۶Ү/VޚV7sm57EcF5=AZd6{)mnN[_[giW/m4l](YiSg?u+/Do?~Fi(B�K�ҡPz&Ѱo00#ggEFQ6+A/4ĸ<YZ"t p ž1*I<1ƉႰf|gG˷1l{fYv#[ ǼuC":xuDUL/e)vئe&1?V>MxHbى ,|l"]o~;0nzNK12#(,3?(c&Q>fLhctKE{8c9"Q5~^uG\؉t{99aL)}:s.E#p,Z T".֛(΅y?V#Xc?[Or]9 _@Vkr^g R{ocW2mMA`B 0KX@C'e%Φ1MHSewR|?E>EHdwѝ 9 r,A&Hc@B ܎Hj’\Tף%!9(-BWN$,: `?f5%E'%_ox ޺F+qH/-،λx_%NKH\qTW"n<-<ArNyš'Hc$Q2֙_{e."m*tuSPfg k&IX@0KM{SŎ<Ih6GLauv.ǻKMwߵ>A7I[kfIF+YB k $ǡq gr.9\1s& DC#S}i]Cuߥ#Jwy$4/P.ŽCb_6h_$Z; PQaPUuB)+v7`lcc](VL5Y]>{oOwW維VdjܲaS uk׮1VUVZl\j()*,\j$Tanp+ ɲbP7W5M9t)i$z� "SL'r?U>m-B6 "*M-u?nqo*+EneVVTf6Sd*K�̬"Y<^e1 6el])m4\tCzp/^"zpl\㇕relVVoE8sR!-J9c蝵q$Q4ezƿ�ٕGEe/5x*SkLT/ǧ.-avO+ևOZ1{r)B=_lPln@`80i qe|=-> &cy"Y3=spgv[찻TfQrp�i7[ Y,^lytR PEÂLaCz.,>+F+rFiEտ"$J[yzpKakdZc7.Q̗O1a@n]O%`w!0E:J1Z2 KquXfj%)%b/!*6(~\~gZ}EEhsu厞 #F'Yn]iL9%,bP+6,]Yz 8GY67P>f e5̪jX:Ͱi<-mņ~CqD jLX'bpŲ<u>_SbscQVcU<iN0L`S YnL7g8#UB@m 6m-滟gM;m۸lek rf+:HG_sefS293e"G]�H@wsrsP221ϙ�^\7e`4Ĥ4fpc<-~rcD(DނёLAPɔ}JF7q-ud1'_Pa i^ּ3pR;1ԕ%@ yWLox ;v ~_R/g~\ۉoa8H7׻>vN|9 g1/b>I?TZRyk)s%bX9Sk'>ؓmq=`W_uDzp\k~ S<LcFL޺�oڅɯ*u Zmv {ݺMvy/3s<XBR8=Ϳko endstream endobj 17 0 obj << /Type /FontDescriptor /FontName /bcd7b0+NotoSerif-Italic /FontFile2 16 0 R /FontBBox [-254 -250 1238 1047] /Flags 70 /StemV 0 /ItalicAngle -12.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 18 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 19 0 obj [259 600 600 600 600 600 600 600 600 600 600 600 600 600 250 600 600 559 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 589 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 493 600 556 600 304 600 600 304 600 600 600 600 600 467 600 368 599 600 600 545 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600] endobj xref 0 20 0000000000 65535 f 0000000015 00000 n 0000000248 00000 n 0000000448 00000 n 0000000505 00000 n 0000000556 00000 n 0000000818 00000 n 0000003542 00000 n 0000003858 00000 n 0000003899 00000 n 0000003947 00000 n 0000003999 00000 n 0000004053 00000 n 0000004225 00000 n 0000004299 00000 n 0000004423 00000 n 0000004468 00000 n 0000009097 00000 n 0000009321 00000 n 0000010683 00000 n trailer << /Size 20 /Root 2 0 R /Info 1 0 R >> startxref 11597 %%EOF ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/image-svg-with-gradient.pdf�������������������������������0000664�0000000�0000000�00000005243�14163570564�0025576�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 2.0.0.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 2.0.0.dev, based on Prawn 2.2.2) /ModDate (D:20200226071158+00'00') /CreationDate (D:20200226071158+00'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 14 0 R /PageLabels 16 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 363 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN q 48.24 307.09 m 547.04 307.09 l 547.04 805.89 l 48.24 805.89 l h W n 0.0 0.0 0.0 scn 12.47000 0.00000 0.00000 12.47000 -553.31280 -9243.55830 cm 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 cm q Q q q /Pattern cs /SPd6b75a44db6873acf62d32426021e8ad5b34b887 scn 48.24 765.89 40.0 40.0 re f Q Q Q Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << >> /Pattern << /SPd6b75a44db6873acf62d32426021e8ad5b34b887 13 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /FunctionType 2 /Domain [0.0 1.0] /C0 [1.0 1.0 1.0] /C1 [0.3922 0.3176 0.6275] /N 1.0 >> endobj 12 0 obj << /ShadingType 2 /ColorSpace /DeviceRGB /Coords [0 0 40.0 -40.0] /Function 11 0 R /Extend [true true] >> endobj 13 0 obj << /PatternType 2 /Shading 12 0 R /Matrix [12.47 0.0 0.0 12.47 48.24 805.89] >> endobj 14 0 obj << /Type /Outlines /Count 1 /First 15 0 R /Last 15 0 R >> endobj 15 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 14 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 16 0 obj << /Nums [0 << /P (1) >>] >> endobj xref 0 17 0000000000 65535 f 0000000015 00000 n 0000000248 00000 n 0000000449 00000 n 0000000506 00000 n 0000000557 00000 n 0000000829 00000 n 0000001243 00000 n 0000001593 00000 n 0000001635 00000 n 0000001683 00000 n 0000001735 00000 n 0000001843 00000 n 0000001965 00000 n 0000002061 00000 n 0000002135 00000 n 0000002260 00000 n trailer << /Size 17 /Root 2 0 R /Info 1 0 R >> startxref 2305 %%EOF �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/image-svg-with-image.pdf����������������������������������0000664�0000000�0000000�00000027705�14163570564�0025072�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /ModDate (D:20190630040820-06'00') /CreationDate (D:20190630040820-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 15 0 R /PageLabels 17 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 842.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 665 >> stream q 0.0325 Tc 0.0 Tc 0.0325 Tc 0.0 Tc /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf <41207369676e206f66206120676f6f64207772697465723a20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0325 Tc q 167.1 787.3701 m 188.3598 787.3701 l 188.3598 808.6299 l 167.1 808.6299 l h W n 0.0 0.0 0.0 scn 4.25197 0.00000 0.00000 4.25197 -543.40394 -2629.63904 cm 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 cm q q 5.0 0.0 0.0 5.0 167.1 803.6299 cm /I1 Do Q f Q q q /Tr1 gs 0.0 0.0 0.0 SCN 0.5 w 167.35 803.8799 4.5 4.5 re B Q Q Q BT 167.1 793.926 Td ET 0.0 Tc 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R >> /XObject << /I1 12 0 R >> /ExtGState << /Tr1 14 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /62a811+NotoSerif /Subtype /TrueType /FontDescriptor 19 0 R /FirstChar 32 /LastChar 255 /Widths 21 0 R /ToUnicode 20 0 R >> endobj 12 0 obj << /Type /XObject /Subtype /Image /Height 64 /Width 64 /BitsPerComponent 8 /ColorSpace /DeviceRGB /SMask 13 0 R /Length 2456 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 3 /BitsPerComponent 8 /Columns 64 >>] >> stream xZkG>3+ Y bBH$HbL%UhY2V-�CH4وAŐ!}p;39=;wגּvgvfPA4þXoŒ F_~we^\WR%/O+xֳ}LCd`g>�5Q̭ G{`5@X`BBpN.bȱ �,70!3$c =ߟݯpS^df;2.[>Ըk>w\_2vqӀR "wȽ*u5@?dG#�.(Ӽͫi^YH7�)(>lE- xmY ?f)a@ "{ˆhs,3[ZR !�Pܻ[2I >B>~z02HGO}n-GOۼưP<H Y Esz]48}ۿ(+5q/QٸAn\a47�϶.wG]-0ɭpL 8!b"S6|jKJ"+g+�[d/$ұOŽCwM1a`ڇH!B]~L̶o${ɳ0C 2F |k 4߿ BuuwӫHmX P ~byH/2!xSreHxSk@AI[:ZpDӜU  / fǰ=<&A6m Oؕm,J+U :B�^=$W-8ٞĕ^e6WKVNK9Cu#OW_̱p;oC_;93 Xb<wFPhN��1/ŀze~+=*0‡"U"JRCU>H,*`s*'3HWRwJXCrf`0Nn&&,J//8PrqtUªJ9oWZldRA jڻYhT.uFӌ;ڕ TZ'?(i䷿p?.Y*) )ݭEsR\G^+/ FsGCHB߸i1s*E8hW.<C˭UX(�8! ? ^+i\жWWJf|dS++آ<UDy$fɊ{Q2g.FGD{Ⴉ?fWN^\u֕n(fq4Ħ,4&q_iBb :O=9~Yws;܍R{"$ef~W#^%1 IZ)�E-_VoXcrF�r/ a UX7NN"8Yj;Bw.-x,|˺_fͽЇQ,'Ku_ސ~Ę0t}qɕmQwEr:UH: b+hZV ͡p_Qu} 4&"ٗOgnAUh\�xH0\TB ݠ1~b42L&gkoG:1~ MeҮz|Gܴ>vG#Q`ڗZoD6h UᱭC+H<(:Ի{d?(p2PVsﻻm8U{6~EΖFT1QŁ [7Xd!$8wG<GO{_QsUIj^8/3RhF32^ܩGm]OqM\<&f v$5*c;AOTV9)ǒGIU*q\*$D*tYoĕYe6Nğҕ,ۻ:knW uj!@B]ttu s ej)tdG$;?(K>4EǵV9^*8&ߜ"荳6״FUu=ٰX^:?巜LA/(:)3G~<*ǒ0]cK,ͰB`U%,C勅Q9 +rjmj3(Ɗϵc~S aN}ULS( Sv2/bpyN͙||YM<'t4wUsԀ{`}(BV/%[:0U"%Z0ä<̄tHJX1zCq_i@7ah7<%'Eɉ{ Q-&qcN ʬr& WΩ+8\<uKWJK?!c>n; k{gK endstream endobj 13 0 obj << /Type /XObject /Subtype /Image /Height 64 /Width 64 /BitsPerComponent 8 /ColorSpace /DeviceGray /Decode [0 1] /Length 491 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 1 /BitsPerComponent 8 /Columns 64 >>] >> stream x1nZA݊S#A.‚ J� ȹ!<)9D Lv# o7R,hB(29p~٨/]ϲ۟u[Lz< ơ{OP!e[Pez?r5CGKXzX5{7??yq氒޿ 6RWr~&?Wp^MYK';rmL09u@/#  OUkeXkrP4)�#8z[p`S !~oߧxڻ7$E{Uw>A13j]&AhDt³̢qv]ǪKsp̧Pq̇0w|̛k 5pBX]eǃ n&/OK d0n k endstream endobj 14 0 obj << /Type /ExtGState /CA 1 /ca 0.0 >> endobj 15 0 obj << /Type /Outlines /Count 1 /First 16 0 R /Last 16 0 R >> endobj 16 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 15 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 17 0 obj << /Nums [0 << /P (1) >>] >> endobj 18 0 obj << /Length1 4540 /Length 2935 /Filter [/FlateDecode] >> stream xX{l[ν8vۉ:~6ΣI4Ѥ6!IGخBZ>uRU[U06&ؘ4MC�mL0 C]*h} ս~sw~{�98A ٕp"r/,9t.߯[͆Uj0c+Pmp[ q<Tơ,w١oȗ<%S<s|4y �T7GWQ eC OG6 O,'xA ( Gk)( RnCi5JdtP[/LZ+s&ͭ}5^Vd5VMJh< KP Z9GI&] Cc V%CWy`QXѠ&}(33ܑܾW.(>H@>>Tg(TP yV&fTեOzk%)PF)ᩴ 7ZmTRZ{* C&%m$^"HmÕZ@dԡ)N4eOX3֙s~O5I5};O$ԣU#@+1YnQzSi79}f!Ӏk,R -o=LM4%bTe+-mn<ih.Q4%jvˮv}y88Rqv?z |. ;;j\ŧ/''bNs޽K(˩B"4ϵZIZ?Cp܉}3fpowgGBT@;X,q/|uus#blթ3 wRnnSُZbyU&ۻ>E mg7Ů- Sfo1<BRyOoo5B!!!<?yhAku&G18Ӿ^g +Ha,ý|]_V8? w'ğAc oѿ4:PgJrmMc;&ޥ`\MHmM~gܾw޲uO5mS}W>64ָ;Sxi]`Q;]F˞mzPbT)tEA]z)/!4Ki:ww?ܼ&/Zۊ7OuE֪U+}pkq-&e~^5Cu +A=-b_OPglq(5/NcM j+š zXPHVd YmAǓȠԝˍZt٠^,z9=a\-`P n;Pc_t `)S!~\1&vdym`Gn`BE4 ^3];;*e(k?69Ku3Dt2HG=tb`0jLQ.FD4 Fh5l4 \qn1 v>vls]dxښyU7I1Ihz\_jdY:g $gwX)mJ[G-c,-5zk ]ŚM˽e\HꛫN{cpmkvzV C._+o,K([+ԡ`ne l >`t̼h+"\"OZw8uz1YfP?IM Wae]巟CL! _MyVi|n~KI^*gMLaʉ_\V,#_[ZeuT&U-\{<,+oRy0VZWOS\=EȞ.4s<khLqC Cg!)25IIyU3 *p''0#yǰ[1pZhIIXe}{xF3+߸ Hxz?A"9= }RFK3ٖ#̓KPRJ"P}k8%CP7<s-!05y>̓]J2sEA$|FL 8 <!OE»ϋ"NC%&4/".9)q hHKxE\ qF@'yLsAK.x.ȧ"ZyPCՉ}U0E}W|h27n q4"^�1/IuWMˆF%=X|5b]-,G謃m_^fG$;IFDa )t Hj7 C|"(Bf_,c;rcVR"FP=`,cFK0zRU#r8!L[4* Cb VHy%]`:-!*hZEYN+8mEZI(H.ŢlaӋ:/Ǣ1h~a ohh5 KI6̦J8ͯ%CI a4RD@v!ì.;靑BME+)xiTA]+TMG)QCdYeo['=Q͢@% [1fpy6dnGf18n66q,&vV8Db)jciS`NԼgNJ-Au2[ݢyρZ$bi\ci6MѹHM-Fxx.q, 4'qNIuq0J_Sȭ1cxG,-gY$`.; [ՁhS~$"xAߊo{vu7Ї.lد\ l+3=2hS endstream endobj 19 0 obj << /Type /FontDescriptor /FontName /62a811+NotoSerif /FontFile2 18 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 20 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 21 0 obj [259 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 286 1000 1000 1000 1000 1000 1000 705 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 562 1000 1000 613 535 369 538 1000 319 1000 1000 1000 1000 645 577 1000 1000 471 451 352 1000 1000 861 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj xref 0 22 0000000000 65535 f 0000000015 00000 n 0000000262 00000 n 0000000463 00000 n 0000000520 00000 n 0000000571 00000 n 0000000843 00000 n 0000001559 00000 n 0000001911 00000 n 0000001953 00000 n 0000002001 00000 n 0000002053 00000 n 0000002218 00000 n 0000004936 00000 n 0000005689 00000 n 0000005742 00000 n 0000005816 00000 n 0000005941 00000 n 0000005986 00000 n 0000009011 00000 n 0000009225 00000 n 0000010587 00000 n trailer << /Size 22 /Root 2 0 R /Info 1 0 R >> startxref 11710 %%EOF �����������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/image-svg-with-missing-image.pdf��������������������������0000664�0000000�0000000�00000020703�14163570564�0026530�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /ModDate (D:20190630040912-06'00') /CreationDate (D:20190630040912-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 13 0 R /PageLabels 15 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 842.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 617 >> stream q 0.0325 Tc 0.0 Tc 0.0325 Tc 0.0 Tc /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf <41207369676e206f66206120676f6f64207772697465723a20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0325 Tc q 167.1 787.3701 m 188.3598 787.3701 l 188.3598 808.6299 l 167.1 808.6299 l h W n 0.0 0.0 0.0 scn 4.25197 0.00000 0.00000 4.25197 -543.40394 -2629.63904 cm 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 cm q Q q q /Tr1 gs 0.0 0.0 0.0 SCN 0.5 w 167.35 803.8799 4.5 4.5 re B Q Q Q BT 167.1 793.926 Td ET 0.0 Tc 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R >> /ExtGState << /Tr1 12 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /62a811+NotoSerif /Subtype /TrueType /FontDescriptor 17 0 R /FirstChar 32 /LastChar 255 /Widths 19 0 R /ToUnicode 18 0 R >> endobj 12 0 obj << /Type /ExtGState /CA 1 /ca 0.0 >> endobj 13 0 obj << /Type /Outlines /Count 1 /First 14 0 R /Last 14 0 R >> endobj 14 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 13 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 15 0 obj << /Nums [0 << /P (1) >>] >> endobj 16 0 obj << /Length1 4540 /Length 2935 /Filter [/FlateDecode] >> stream xX{l[ν8vۉ:~6ΣI4Ѥ6!IGخBZ>uRU[U06&ؘ4MC�mL0 C]*h} ս~sw~{�98A ٕp"r/,9t.߯[͆Uj0c+Pmp[ q<Tơ,w١oȗ<%S<s|4y �T7GWQ eC OG6 O,'xA ( Gk)( RnCi5JdtP[/LZ+s&ͭ}5^Vd5VMJh< KP Z9GI&] Cc V%CWy`QXѠ&}(33ܑܾW.(>H@>>Tg(TP yV&fTեOzk%)PF)ᩴ 7ZmTRZ{* C&%m$^"HmÕZ@dԡ)N4eOX3֙s~O5I5};O$ԣU#@+1YnQzSi79}f!Ӏk,R -o=LM4%bTe+-mn<ih.Q4%jvˮv}y88Rqv?z |. ;;j\ŧ/''bNs޽K(˩B"4ϵZIZ?Cp܉}3fpowgGBT@;X,q/|uus#blթ3 wRnnSُZbyU&ۻ>E mg7Ů- Sfo1<BRyOoo5B!!!<?yhAku&G18Ӿ^g +Ha,ý|]_V8? w'ğAc oѿ4:PgJrmMc;&ޥ`\MHmM~gܾw޲uO5mS}W>64ָ;Sxi]`Q;]F˞mzPbT)tEA]z)/!4Ki:ww?ܼ&/Zۊ7OuE֪U+}pkq-&e~^5Cu +A=-b_OPglq(5/NcM j+š zXPHVd YmAǓȠԝˍZt٠^,z9=a\-`P n;Pc_t `)S!~\1&vdym`Gn`BE4 ^3];;*e(k?69Ku3Dt2HG=tb`0jLQ.FD4 Fh5l4 \qn1 v>vls]dxښyU7I1Ihz\_jdY:g $gwX)mJ[G-c,-5zk ]ŚM˽e\HꛫN{cpmkvzV C._+o,K([+ԡ`ne l >`t̼h+"\"OZw8uz1YfP?IM Wae]巟CL! _MyVi|n~KI^*gMLaʉ_\V,#_[ZeuT&U-\{<,+oRy0VZWOS\=EȞ.4s<khLqC Cg!)25IIyU3 *p''0#yǰ[1pZhIIXe}{xF3+߸ Hxz?A"9= }RFK3ٖ#̓KPRJ"P}k8%CP7<s-!05y>̓]J2sEA$|FL 8 <!OE»ϋ"NC%&4/".9)q hHKxE\ qF@'yLsAK.x.ȧ"ZyPCՉ}U0E}W|h27n q4"^�1/IuWMˆF%=X|5b]-,G謃m_^fG$;IFDa )t Hj7 C|"(Bf_,c;rcVR"FP=`,cFK0zRU#r8!L[4* Cb VHy%]`:-!*hZEYN+8mEZI(H.ŢlaӋ:/Ǣ1h~a ohh5 KI6̦J8ͯ%CI a4RD@v!ì.;靑BME+)xiTA]+TMG)QCdYeo['=Q͢@% [1fpy6dnGf18n66q,&vV8Db)jciS`NԼgNJ-Au2[ݢyρZ$bi\ci6MѹHM-Fxx.q, 4'qNIuq0J_Sȭ1cxG,-gY$`.; [ՁhS~$"xAߊo{vu7Ї.lد\ l+3=2hS endstream endobj 17 0 obj << /Type /FontDescriptor /FontName /62a811+NotoSerif /FontFile2 16 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 18 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 19 0 obj [259 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 286 1000 1000 1000 1000 1000 1000 705 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 562 1000 1000 613 535 369 538 1000 319 1000 1000 1000 1000 645 577 1000 1000 471 451 352 1000 1000 861 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj xref 0 20 0000000000 65535 f 0000000015 00000 n 0000000262 00000 n 0000000463 00000 n 0000000520 00000 n 0000000571 00000 n 0000000843 00000 n 0000001511 00000 n 0000001837 00000 n 0000001879 00000 n 0000001927 00000 n 0000001979 00000 n 0000002144 00000 n 0000002197 00000 n 0000002271 00000 n 0000002396 00000 n 0000002441 00000 n 0000005466 00000 n 0000005680 00000 n 0000007042 00000 n trailer << /Size 20 /Root 2 0 R /Info 1 0 R >> startxref 8165 %%EOF �������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/image-width-percentage.pdf��������������������������������0000664�0000000�0000000�00000057372�14163570564�0025477�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20191026001826-06'00') /CreationDate (D:20191026001826-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 12 0 R /PageLabels 14 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 117 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN q 124.7 0.0 0.0 140.5709 48.24 665.3191 cm /I1 Do Q Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << >> /XObject << /I1 11 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /XObject /Subtype /Image /ColorSpace /DeviceRGB /BitsPerComponent 8 /Width 220 /Height 248 /Length 22060 /Filter [/DCTDecode] >> stream �JFIF������C�   %# , #&')*)-0-(0%()(�C   (((((((((((((((((((((((((((((((((((((((((((((((((((�������������������=����!1AQ"a2qB#3Rb$CrS���������������2�����!1AQ"aq2B#R3� ��?�$ Ipnƕ*C:AŰ�ZvܟO`/Lfee+]\}t[ڛK P(HOZ -0utb7>~g T ((bXk_Ԁ.ta( І@ۓɵ퇥`46~/;}07S [j@hv< &i 2Ik~B 9ga}vXYUyImŅ;a>rآq@�aũ'="v&ç\ (`V�c<P6D}d,Hۡ5ua<ieXq\h+*Vʧmh·rVS(%vi݇�#6MTHQv:cUɹV u^Fp) >csoFPI\8mCek�A\zlqP"}I&l o[Aua#Blc|%X$'7B\ @nv? m,PT}b5m'ߐ4 Z'?EL-h@,H6?_gH/wҬAV|+L>x* )hdnvg7�};QIw FklpzFkc#;<`r�[�MV$m;{`Z5 iPmnFg-:K!6F %*K2{[\ Qs{b)7'p_ ? %]$ bvjڜ�k{nj^8ѕn�0|II$"�+]jd[~VڞMuUhd 5 a< ۝7+7!fJShkn1Dk97b$F#kl#!^ ]Q}%O xɟ#Ikv ;k%QK`M-ۤ F;8Xx9Pf}|.wt@U)N5Ճt_P i~i'G @mc wS rHͨQ#r~U HqyM^kIҦ{�qE<5$>ͩkK"H#4]˵,YbNj[}; 5nZ + '2�HvQJ3m/'67or{ta P"ͽ)qR+KQ {-`U opnM:׶ E1-lJPԩz}6~0Ȳ EgV"~sӮ 6.D1P}7Nc{ �4{ JKܡ͏h;SbR]{,e �{7 �F5$I[) }j(UTt:\SupqVaXwa{p1Ic":"h+$GTViÝ`$0e&dF V[l7+hg\K0Am�j̰0Dk?d4+UlPb.=T0hQ#@ Гxvs7o5u4Xҁfm)p%.qJy�'Юuݑ+~PYsUiKf^!%t>sm$h>(JF6p{cxm_l~Aֆٲȫk_1Vd NttPKF nuaSQT6n{g-7 E<s2){/b^q fQZ+Il5& X (<X\{#4It A}qb'7;wĒ1}>b [|6,3 ̩o; F8 v?yǘQ)1 X:MWC&kԤR 7'\e:nzbOI&:mpB.TBi'[eJn$߸7tBs�)WAJ4p~*``,/r=DZƅ9Id $t UQfZGac{XrE8CebuIᣁJE߱ԝIiǗ. &KF[bk*Oru_P{}/:V* UѧPf"UAdRPץO"s�ce#L1/ʇ֏g]]RL-F~h ]9|T~U<�%t烿|<7�F d\lΛrm8�j4ޜrt5JqMN,F _8LU:tz|!,#˪YQEFI&k窕b+ef�/i1ؐ>^}Ͼ:_*J>ꍈ;فS R�XXHdeaeޣ$,@AP`*!7oǿ¤ٛѱ�~N!DO -"}?`[FQhFǴHJ~p &yd �xʦFZ'nM H/cē$ӁL,JJMi2in.$bFY7!MvIrg`%a}l A*H�29U3*GO"V]Z~F7$_Nwt aFu (4WO:Yf"R:CiqbHi(U}sIU%V">c NOS7:gVޝ=΀W O$RHǨ=F'�} '0RŇ`\ߐ8d=20 GOooVE~W͓ᧈǢ,= ,2)ʨM.v�Kw8clQE׃"k(+s6A :A%+,-2Ʊ+GY99m-h: -K @jؐhH)7R //nSUΔxNYK.bO%X t/%^ ho3SF6 ׷;j_A 5^rSo- l8VMxE` w~8-,X-RAo6SK/VcsmF\0DnvLORC(lZHRUFH"�WA oPgo#JHtH_SӇN݊ k'$2VV-3(g;|v,ހkk:T7�_ ȧGM,6};`5eNGlpgֺڅڴo$lcs,1ʠ͟SCUJ5Az4|Eh%@f� ګ) K:BMJw:qoQ8$zo>XGW~n]AnvzԤzR&HVo��|tUrJDRN7醍 |bX< j*�yl&^cPj3FeHClEv7pA~ݵ4*f2dپZZ@cBU*ޟuul/tg;LE�fЖ\8#R)n(QWWly;J+R5|ម>i,-HCHvǬUGdʍ.;)ӑ8`j%?j=) ;5mo5g",Sx`y| ,-6l�heJ cd H$l{ܪƋc=*8; Rl0JP�ŵun\"~eGo<KFK 3meRƞ9ƝVn4qxjd'JZ;ȉe}V.B<s09yp+#lll�:tq9EڏOIC<tu RBT([r6~r PfekSX) Q̼=�lq+s<Wt/[ᚸis<|sؒtw|*FB]*4ɭv7RrXu$Rw4^:*`3Y,ZJ@�]ѣZ{5D4i)j؎s() IQ$ډ"8\;oŸr*gtuT9ʥU+4qԬdGE)8׹߶ۑGiqb?k&_LV!- 4g9Ӎ/cA /cv>F;$,} p�7@SPSBEطXQmEHH:EqqT8ov# ΅a@?q(!CJI$Z|_-lXyao LP8:NR iZێ1T)) \oku4T) F$ũ@V7Y&<Uu1] s=vM #LwU Hy;XYɜa$>!X,ZB@7$n88+c$$|Y5-Mdx<zZ̥X5ГnXU#FU&yT?f̠-`C ~Ŷ;# =⟖Mȼa[PK5\p Vt�:n~-o)ռC'Fc;""2[k#uߐݮ~r.⒲L0I"�T7pn $PrX W5 CG);('?k[fnsWQ)-w)C CA z*c-⟚0'g4dTĎO^7 }Loa͆Mk3gg-=K U % ``٣";⵷Q>o?3<Pd2b7�X �:ROTzX$%NǦBTpGssn� Y�E`Mk{s]Y@a5 %X)ZlS8 kzj!K :X]V:ߦ kSri"nnmc* ]JmIbC^cFW L92:dɴ,5=5Tc*_HROտlOZN+tRo'nsMes CK9YD#dg^ۋg&>,g5)2Bjt/{ =X} oT #* Pr_{bZ*;}I84k'zO&&n־M_jHO'Ds`�o}$vpu~Ma^OO[P JZۋOsm�>RN|L+b9xHe}6eVH.Xg* < bZJMiYJ콍{\nSEזI1}4dI-lXIQv70<f7쒑EW,AUܟ{}۩'I3[4xv$9$-ͽ ؛\nQj+O)dK?/Q: 1W2 %lm-і!RfOY5#VtujG@6 } xuWJU|mΞ%s̑$)I=u,|U7^5хh22:hY#QpobJC&_W(u%iu*AecRH?! lgD~,PG}os*mo,?y,IM)Cڅb6�ӄSi ?9I8|XJi2|W""eݛXkxl~IittMMz~_&He*_oе@o6+ -׮X dzKv`77wW�*빵]FcSbw탛 erfh0 4uF=Vv8I- (ϔCvj+Q@c4.y BJF%<is(ٙ˲ 2<u37*X$Mj#~c!k6!I. **!+rcTyA,Y;^̤iy]Yhŕt44nWKO1;B~Vt{pE,%mFxk?W/dp-eS4uX]@O�;~v[d')֧)7Dc#f \�lEGWM':kPΪɨ) uK;k^{m8C+Kx( E5J.i]37|ʠ33h䞕\ Dlx":\_ZSLjr9|:VlfȪX˪0!I�r[?mqJs?:U$}^<}+%/Ӹоq*W42*%H7ۦ:4RLI2y`I'`-a}⻔Yx*3 v]܎nīX#TBRQ̥$]r9)gIe`~5|XjxΫ76&$[OM*ߋ/*Ihqtw{#=|iK/ةj�%J\筅1ء,2Z$ 2ŋ;~ؘ s"G&c v߿_�aMT%n�#aԣm,`z8WR|ۛ }0RbVB7kI5Cu0paI f"  0Ke- /Ċ <,H})ReE>c4]v:or1O^|/:X~ƴ5a)TJ&nڷTJ Z32/y",&i2M-OObaeXwqt �Ϩ�ѽ8`e|9_YQ6}Ջ1׸,C$n8au-J[gu%|k-nT# & CAp%WqjhgzDqR$[B_үn-~"ӷaMRWAt�pHFϤ q{k+= -d~!))yϟ:$1Unk}u+sċQiW_Ri!s29'KD\d}M@yvF$N R^jE+zzr,?hrr\ְ̫O0[PѝT+ܝ:;˓{'v*FT6!p6;5qY<)1őRo"�fb2[5abeIG5RβyH X @6w`th|S*³tK&PI}ga0zz+#*3B!;}'T'A+gIU\*`jD;5}9c�Oj;`#fzGQ+z}ߐw)靶bQ #pv/8.Ƞo`9 B*Y6`(%ê'uuuV'm#|fT$H\n1'ݡӥCy5=+ٜJq0IX[uj1w H>Y_o{a&JW5z"b[O:^6(qC>S?m== 7f̲̈[2C1)o01Uf�bC8?OYgH+<QO3(tc$=͈xbjE\Q]D%b;�͉TYAW@u+d(k/$R5|+/JMf.(AgLir´so2%kjEŹ Ote_TQR^efTJnefhf`}Hm:tᨓu1iC]&*wQ2@XC_ccEu7B2k2aI_5JиQh�A'Ԧc< 7Iig'Teyي:46HoF!=ŻiV{ث4\溦')<EIh(S6F+E?i5OO׹A-D;GrPHO'XF:eX\zO'j*P fm)K<96m&YBvOP #]H; ":b7$Ν*+cg, HU|,^x:w)2ᗉ筌fu9<F!4厲O`-|r']puH7P9OTlk_I 7`wsOR\q~do_EU&_T[R Y 6$8ӭ\ui<k𫣣\ʊ,iYRXT-PA P8YK*)ؑ5t�Y? XD<J6}G}:Y$><~eež,,ewmٷ$)PںܥlUV_ڨ@y4Œ 6,6w?ݏUXp!ЂwXa9uJzGknEs{߮FKvi]SPE`1 W#5NU+uA%a9(Ԣʍrd\l5SY_N{RY&e.zX#)|f4G,EKDo5T?g4aFz,fMO:hV"W1Q͉ 4|M"µϐPe:|HuI(($q(a FjsIW&dg-E"kL&]5t_SUBr<r|)j:XMd&Hn =q:҄z-^ A/ =82)Z\pѨO?6I3@ uʋ&_SBsO5$21�n oьr$gܕeYg2^ ,21dx-~-ؾ+x&'jmdΉ崑H7ۆzm NxX(a<U :oem<3fÉ=9tredyFh^M^T2ၰRԌ|ώ�ߥ'0њxki'1)mXZNnƗ&5>ןj\j$kJu)xd,v$v9'87Ls9*2:ԚKS0Vfy�^ bOܿ:UfmmvWVcZZSEptRp>!5[>|S!JqPyxΆ2HJmkzyzXNܿs|7O2˩"[4yM%:cgrͶ"U߿ϝP%}⎖J%Q±�Pt:*q[nK lCi:GBH=0hT$;�GocpVO3Zp80lb&r2cl�l>E]jz^l7Jb{�gٛS;p&g5ń%T`.^k5mJ?]b°sKl\3,* m+{2^NyG"1'=$^sQAE,yiA"jԷ�I^5hcJ%l2eU#1QbxxtpIUiFÃ'X|.sY;y .C +yC�AkܬVTjKl5lTjwVe1bH,\jһH! Fю99=WK<Y/e*r}:_ VSjr QURK\-d36* u;JXR}N]d5 VeUF OPbδoKFGmq'rqx)k8FX[KAm݈N&4ymU5$4ouQ2VI^l7I<?̲Zb*I)Y)y>XJ]F?( x m}QMA:C:Wh&6@nnqŭIKz aL=h!33m]iv(5)"8z)R_NRm?f(2q[LZaZn _:HKIMqS5ZIehZdPٚ{#{#[r9}߂}U|ҜQS ×dV054t^g2<K㧑cyΐ.7cv&-R$fttGhJLq{_(HeY@1J)bz[b> rG*$-ۿ `y).YEm#,�M7 kq}0Jͩd`1_/D}`řտrp0wUd$;q Q>c��>(|V9GNy %U! H`ᕵ-}''/ I[IR&# fVaumOЃqmu-[5'>/7ْ1OYIQO1x,)PWN|�^.|,1x�IUI%) ȹ-rJcPSffXj45s3D$O-ѾF$RQ;?8amحKA%E=$t1CQ̼jW:wwa*Gݗ0fs-DEvG To ,ROjn2)v4y-�.& +-^ 鎕$۶, AJ�f_NHd�uEv ok-M [#x55I$mM#$RqbYm}ihER9u4E୨J .,\0�07]D Ϊdz7Y5,,HqpK ܜ,5 &,QT}`+-}E<v8yeܖD^J]fMWY,f(BN 2 3PybIO&B7G25FO+t/q.�m-St%f[UD(pƴci5[�]}#+TB*hz!Gu8>ݰc2;h!2ASJcqܓ@Hoq)4 5X&rO8s KTp0S:Al5@u+by錢MvzXjBk~�2k&qib]�وH[M5!Gcm� /&NUCzA)Fl.wX(TK�o&W?ۼN$%.[ n][qɣ~ ZYcrp @1,%zh*I#A\UoP[~=[eJ3ś gQA,iGS*MD&V-+m&F41A:#q~SS}C$Fzr#U-!;̡EAt4`1+|%5F (CBkVmv�Z;nCː۲ixik4f�#0٬ \a]6I!πZ5G76,.GFۢ~}.u"L)cي{+PAm(wNя[C,bXb6X].y<DRHm9G ̨2ѭLR%#{iزߧb/mO+lv%Y&4+T#F`H s($X)Qr|xo*OI$fVmɷ፡%=6]83VeY ѓGQ=e Jw ci+f[nqH}C4'3:r.Ye){oHP0e8(EwJЌ˙ TG**9JS*>ɘyVq;Yok'=mrNk|q /O}*yalqKQjhTyjb hF*�]=f,uBU-GFFΣDw>Ὄ =k ;mq (xVL2`$.Բ [`NM6AuV#Fx3zH \ Rb"sn >Aaŗa_qˠĞ=Y gfyMu q|7= ~eJ3Ctbt܍͏t⒲Zw()$T6 +?u k ;M mI(Ϊ)T&�n{@ؑ�ۓQ^7GO˲J_554wň6;M%WLJ\HF4LԓeֱgR`4N5ަ9,[QSuY#nUHJZO1anHnl/ۥ͎-W IH}R""+iY ܅aOSbUu̧ȑ^4pv6[x:~TA>% X qp,۽'%&aVLDKUHW~Kuµ� U=ptzܲ1˪GS}tڕp9ܛn~{}_: ;*U;:t=-h*%,\xaZi_ePC-I vZ:s"jClGJ̪5O&fjpYig_UAtUx9Ċ%JeDf9ansxGEÜʴ+YSAhf[|I=tuc\?ᏥLUdSd[|[Gy ZMY3 2,Go3 ܘ47ZVR0!moʳ.BSQ|ZY�`Qw6N1ǖiHOkz~IV8㴆5HO�m~q+܆"BnaIdW�8+@+6銦/6PA^�j9Y.T{~x )kN^ nS iE{ H^p &"dY@@d :نǂQ})]QYr$y[6{X[- bSVR2=lI SA*KN)&a2YEaɹ#O'WS˩JFnm?ncF;7<YlJzQH ąerI�[%F\~&gNuSMi{8@zGm`m+58'25O)~$QT^w-cJQp/Ӗcrc[XA�ۚ5C2N<]b1F+]c`$b!A!O'nַ\5YK$I[o{$]GR-5okgѥ8D+ s橳[H׵O:t5"DuSX 湄5J)\F-{Ůo6bΎTs\&Uh؋5 [W'tm5Zipꦛ+E�n6xǦ"MuVٞcYWEU&]QYC#iDP�tMϨ;#~5*cR2D^LT_"GN)EԽ} 糗A틑NYK<:#̨tIoX GnrrYh`8Ir �-�O|gƍ ꚣQ:#mDpz>]B׾%+c*j> Xr bH.؜AI ]ktJr\편"~Ad,H7d؎=,Xf e?/ hgj 9oo3Pڦp겿mDbDi$pBӆ$�6 F'eZ hs�ixȕ,*N� bQyM[R,%~j�B]]D5ۍ7#2ۓepJ#UOTF+ =Ȳ38f1"0rXŎnq'p5 v} J5BSBQAߞq|IݰRњ8Pbኅb esEC%lc%0 %Kᄳ,@e%oacRtʤURֈZV&p[StWiKM%!t>_/a}EiSH+@ҒMDOfP: kz/̞ٙ5zhRF>zKXo׌bK??7QKdRTèFmiB6:ܿ\8a* .z5eD TI۞}Lnnzr W_ДɛNM4lTޡ7erdg&|rtΩ*MBeI$!O JFn6`ENM.Bn 3ٓ,pEB:*Sl X){ Y4ۣEK\Ln=@,:o T펍U6cacHL*\aKs؏* ;ٕJEKĥluOs vdS y"ݽ@rLOJ{:$!tw|j�i4hYTF%�wrnNU&9&_1�*/8Pl5� Ou:LL\\iڵl�ݷ]2 TVRfRIQ!D`Ee-,H�Rǩ8mzՔGUqm\* a!rw`@i&-uPbZی.qALg0QeRDXzA nzUH(*ic) PIk؝ Q ɸDRd d/ l{mUym1T>K dIu6=ʟ sњbu˱}9=6&?F71QNPw�Cro R\uTrMъGC&6abҧ1!zʙj*8 @.UOn8uSK$]gZiVx^Nn 77PwgMy']Hc )MD̠F$өقEȸmԎGhvISK'17$R ~FخducH낡吹db7G} ˳+ J ['~?:춢4Hu<6c/09*�_[,$L= a(_LIe$ۧ| RSSU[I$WC~pzܵDjI.K#r0c2�ࡘv7P@5 a6F@oqŰqolr.�A罰[ $Š|: -"TApTm,B=8 jF/(LMLIO̪" 7 ˒`1(y0%|K4c]om�3nycܡͲ*Vce6XOP-aQq Hx3oh3 U"]UX6~8o:q<"m|4*+B3rn>r}kɭ4M _>Q!U/eBߝ7?\$}1Km2 ZzXg@Uw#W&qQD:C;216 l{_c~m 6Uq$K5J;p4=֢jy2=AE  -}<A/I̧̧?iiUn\` 1wo[yEQdcJY$(<fD<Bw&WE50湥-~aU g*}3v;o;<4_bZ!H`Mr1ud Jpmd2-hm\ L|RH}6XoP5<)7 EMB}'IM&YE NǺǨ~g6y^5 mChqw=y$h*j@ q*Aw=^,$}Vc<~IuF]] OoFb&Ȍ#}x1w(ṣhIPiKv*x{r[ Q&Tx!C Z 7�1vnM;bs~X0p3RQ% wp( [`}D1�aZ?gDgK idO�} qϩ)"i$D 'xC`agT檬Y�ꠓΒ{n7hR֎Yb(:/k0P}7�b>e-MH;aQ{Q"*((hjJڒFH-W6|+Ը$hP7HCj%ob9GJPgYD5XL% rD[p߂Tzߟ�RԬiYʐ<�cn= y9%,P5A pLIb<&y 7bK{0RHOzD"2X)\Q Y>)QǠE-�, :\ȱm]cU%}$0ZMd؅22FV6N'F'G �[ mpP+.zqv!)�\u5ٸ$ 7Jv*LopV !c[ҧHzSз}&ֿ՘Sn{XY $̤26`9ƍ5kfR =c|>Qxh8kBk#{}B.o;WFzz:?SO%fIT�6Y�@$mkXcB[gq܋教t5QS="vSAn~붭7zT9@jO)¢TU#hw"��Q8I 'Y+ ([Ɋ&*H�J7C7RsD4F(yr skx02l*E4uO-ᖩ݄^[Iw}vvhf9xnXuXf6 Ԥsm2FczZ*3Mz|Nm2yUnx@%NM@P [ӪonG1ez'c4jdEFs4LVZNFYQԵ=q4#-7s'N$X;'ᬧBSvay_[[8nv=0+�XV@ō1yi&0ܒz}pS/e,ZrUJ %աVf`V褁muC]Wrn۱LVc57�72tՄ7+ploql03f*vǶ5 S=$m* orm/r2]G # Nz/;X3Y+N�/l ;t4]`ICEBU6ߟoQv#S6&ݶ�jjaJR-۵|ݪ|eφ^ ͩ*?GyK 4ā:NoM|<^*3Bg,<3(b5c5;KZA]IN*ؼeBG}Jp/k-OB4M<{E/Pe]^�"X\z2*/".<   mf!CLF�{�'o CP24?{H QƏFvJL%?k+)K1:/Ue.\4O2SHB8nOb:Sý73SX#O7Hrn.Tke;cUq#"f-Ii_%0"V\w`{Ptj]7:4%-K|%洫6zX_-[lR.f �mlQkME 6fĨ~gԭˑu2E 5XH *.aO=]6Mm $p$DQZ^׿^pWWePbAw ڡk$XuUk�LI64$l$R_S[o>�L PgFӠ05sU~7 1(6FЦGp.}ne 0@rxlnp#U� 7QH5Q$`px�|&(кX^1q2 �؃t+V#M#3vf3 dyWF#mJ* I k651$V2>s,gUO=?_A�)"n۩6]ڋ)H:9S̍Jg250ێ+ LY<mTsU-)_:`6؀m{~qh6&P$&uYU,/Ib4}7.+ [+qU?Y]@!+FUdmRm%U!/uq}J-KYxcïRO]̂_Zʼnߐlk[rߟw.Bc OfR=3N }dvsOgW1,Ht?;aĢE-i龟z\\6ii>DJI{uC%(P*nMƒc?Q � .0ZqePnGղv.-ۮ:#@,jxBݴ=,#]XԄ(l0�}R| 7ՊC:Ai>�5Y`WA] ׾$aF\@0tUb�m5*NX\-dkG ` ŹapQsTf~.Z剰<^^ax=w2of"!#h�'\f#/.Jx|ґv]U%~q$}q'ЦUM+jwqZ9֠Pqq#K7m"~Sj*Jj<pp�z0c)C8׉~Y&vW]Qǣa"̍`dFUSц!㥲CFw+UY|:ڮK&i%5 �`@9 WQt�arY|ieUٳ}L"eeh_m}luـtrz\T77ǑUTe9UYb.iLT"Q� Z=m~mp `hO] |+"v[ъ EӤr�PUvEH|2mk'$tB;1U|` �}0(;rs턦=ckRXn˫ka &fm:pρW" ۝+u=1R@&РqZo4bF-A Nz}p60S| V Pڔ;*[ T6nGc%HRae{C]ugCp{ #P[P Q~x1X2]QרMQ5 M}jtؑbEٍE2�c `|,G7qu&-ҷ"kyl>ތ(h*hਆHX߯;qQeYo2X(w0TUa0`bIms`;_59V6ߩ/(dz5�7'ª agh&k6t>J iͳ-v=%^CX/'VauV:ٕbxB]ܛq ݀$nN  [1�ۓDۨk@ajűu7<A4r!(7A}76`{&0Ul"J jӶjYm@XXc7?ZR18;jw %Zˋfx ."mm 킻3znTv0֘]rmsnY(j& ËF`U<GS:WW�©7m�= S?_\6́U^nX 1<1&`FzئY I.*yt2c!A`^B9O؎/ӬWm?L4FU:@0" AAvsnށz'�oakܜoc u$!6oQJPth�X ܳڛK6vuƻ�n,"/3]w'ߧ�Flw_9*<) tٿ{[iPڡ>f^K\0[,<JA7X�iy>^lvj|WMQ,oH? 1ԊT6aZH2)Fہl>LAU\ǵ^)+UX ktîtr? N`�rK2yh ]&Ì2XXM'Ya{}v[ uy(mDAH"0_qmpEf�[ampc4Ơq{a%t#U\`#0O�ŹW#rpqva`l |E`I#{} YJ؛ml* V(J c{)'g$-"P9�/̄ 6 ywT%o*y(1jl�^߈UTn؄:'r?/ Y+2iXR\ (0~p 'kcv;0jź Sj �l$2V<Lk6v Jѹ!�@nO˾0w;y`;v3,dpmqY5�`GA+=FfJ�(K#A mڐmhѬ-:? endstream endobj 12 0 obj << /Type /Outlines /Count 1 /First 13 0 R /Last 13 0 R >> endobj 13 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 12 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 14 0 obj << /Nums [0 << /P (1) >>] >> endobj xref 0 15 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000001007 00000 n 0000001317 00000 n 0000001359 00000 n 0000001407 00000 n 0000001459 00000 n 0000023691 00000 n 0000023765 00000 n 0000023890 00000 n trailer << /Size 15 /Root 2 0 R /Info 1 0 R >> startxref 23935 %%EOF ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/image-wolpertinger.pdf������������������������������������0000664�0000000�0000000�00000057372�14163570564�0024766�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20191026001226-06'00') /CreationDate (D:20191026001226-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 12 0 R /PageLabels 14 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 117 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN q 108.0 0.0 0.0 121.7455 48.24 684.1445 cm /I1 Do Q Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << >> /XObject << /I1 11 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /XObject /Subtype /Image /ColorSpace /DeviceRGB /BitsPerComponent 8 /Width 220 /Height 248 /Length 22060 /Filter [/DCTDecode] >> stream �JFIF������C�   %# , #&')*)-0-(0%()(�C   (((((((((((((((((((((((((((((((((((((((((((((((((((�������������������=����!1AQ"a2qB#3Rb$CrS���������������2�����!1AQ"aq2B#R3� ��?�$ Ipnƕ*C:AŰ�ZvܟO`/Lfee+]\}t[ڛK P(HOZ -0utb7>~g T ((bXk_Ԁ.ta( І@ۓɵ퇥`46~/;}07S [j@hv< &i 2Ik~B 9ga}vXYUyImŅ;a>rآq@�aũ'="v&ç\ (`V�c<P6D}d,Hۡ5ua<ieXq\h+*Vʧmh·rVS(%vi݇�#6MTHQv:cUɹV u^Fp) >csoFPI\8mCek�A\zlqP"}I&l o[Aua#Blc|%X$'7B\ @nv? m,PT}b5m'ߐ4 Z'?EL-h@,H6?_gH/wҬAV|+L>x* )hdnvg7�};QIw FklpzFkc#;<`r�[�MV$m;{`Z5 iPmnFg-:K!6F %*K2{[\ Qs{b)7'p_ ? %]$ bvjڜ�k{nj^8ѕn�0|II$"�+]jd[~VڞMuUhd 5 a< ۝7+7!fJShkn1Dk97b$F#kl#!^ ]Q}%O xɟ#Ikv ;k%QK`M-ۤ F;8Xx9Pf}|.wt@U)N5Ճt_P i~i'G @mc wS rHͨQ#r~U HqyM^kIҦ{�qE<5$>ͩkK"H#4]˵,YbNj[}; 5nZ + '2�HvQJ3m/'67or{ta P"ͽ)qR+KQ {-`U opnM:׶ E1-lJPԩz}6~0Ȳ EgV"~sӮ 6.D1P}7Nc{ �4{ JKܡ͏h;SbR]{,e �{7 �F5$I[) }j(UTt:\SupqVaXwa{p1Ic":"h+$GTViÝ`$0e&dF V[l7+hg\K0Am�j̰0Dk?d4+UlPb.=T0hQ#@ Гxvs7o5u4Xҁfm)p%.qJy�'Юuݑ+~PYsUiKf^!%t>sm$h>(JF6p{cxm_l~Aֆٲȫk_1Vd NttPKF nuaSQT6n{g-7 E<s2){/b^q fQZ+Il5& X (<X\{#4It A}qb'7;wĒ1}>b [|6,3 ̩o; F8 v?yǘQ)1 X:MWC&kԤR 7'\e:nzbOI&:mpB.TBi'[eJn$߸7tBs�)WAJ4p~*``,/r=DZƅ9Id $t UQfZGac{XrE8CebuIᣁJE߱ԝIiǗ. &KF[bk*Oru_P{}/:V* UѧPf"UAdRPץO"s�ce#L1/ʇ֏g]]RL-F~h ]9|T~U<�%t烿|<7�F d\lΛrm8�j4ޜrt5JqMN,F _8LU:tz|!,#˪YQEFI&k窕b+ef�/i1ؐ>^}Ͼ:_*J>ꍈ;فS R�XXHdeaeޣ$,@AP`*!7oǿ¤ٛѱ�~N!DO -"}?`[FQhFǴHJ~p &yd �xʦFZ'nM H/cē$ӁL,JJMi2in.$bFY7!MvIrg`%a}l A*H�29U3*GO"V]Z~F7$_Nwt aFu (4WO:Yf"R:CiqbHi(U}sIU%V">c NOS7:gVޝ=΀W O$RHǨ=F'�} '0RŇ`\ߐ8d=20 GOooVE~W͓ᧈǢ,= ,2)ʨM.v�Kw8clQE׃"k(+s6A :A%+,-2Ʊ+GY99m-h: -K @jؐhH)7R //nSUΔxNYK.bO%X t/%^ ho3SF6 ׷;j_A 5^rSo- l8VMxE` w~8-,X-RAo6SK/VcsmF\0DnvLORC(lZHRUFH"�WA oPgo#JHtH_SӇN݊ k'$2VV-3(g;|v,ހkk:T7�_ ȧGM,6};`5eNGlpgֺڅڴo$lcs,1ʠ͟SCUJ5Az4|Eh%@f� ګ) K:BMJw:qoQ8$zo>XGW~n]AnvzԤzR&HVo��|tUrJDRN7醍 |bX< j*�yl&^cPj3FeHClEv7pA~ݵ4*f2dپZZ@cBU*ޟuul/tg;LE�fЖ\8#R)n(QWWly;J+R5|ម>i,-HCHvǬUGdʍ.;)ӑ8`j%?j=) ;5mo5g",Sx`y| ,-6l�heJ cd H$l{ܪƋc=*8; Rl0JP�ŵun\"~eGo<KFK 3meRƞ9ƝVn4qxjd'JZ;ȉe}V.B<s09yp+#lll�:tq9EڏOIC<tu RBT([r6~r PfekSX) Q̼=�lq+s<Wt/[ᚸis<|sؒtw|*FB]*4ɭv7RrXu$Rw4^:*`3Y,ZJ@�]ѣZ{5D4i)j؎s() IQ$ډ"8\;oŸr*gtuT9ʥU+4qԬdGE)8׹߶ۑGiqb?k&_LV!- 4g9Ӎ/cA /cv>F;$,} p�7@SPSBEطXQmEHH:EqqT8ov# ΅a@?q(!CJI$Z|_-lXyao LP8:NR iZێ1T)) \oku4T) F$ũ@V7Y&<Uu1] s=vM #LwU Hy;XYɜa$>!X,ZB@7$n88+c$$|Y5-Mdx<zZ̥X5ГnXU#FU&yT?f̠-`C ~Ŷ;# =⟖Mȼa[PK5\p Vt�:n~-o)ռC'Fc;""2[k#uߐݮ~r.⒲L0I"�T7pn $PrX W5 CG);('?k[fnsWQ)-w)C CA z*c-⟚0'g4dTĎO^7 }Loa͆Mk3gg-=K U % ``٣";⵷Q>o?3<Pd2b7�X �:ROTzX$%NǦBTpGssn� Y�E`Mk{s]Y@a5 %X)ZlS8 kzj!K :X]V:ߦ kSri"nnmc* ]JmIbC^cFW L92:dɴ,5=5Tc*_HROտlOZN+tRo'nsMes CK9YD#dg^ۋg&>,g5)2Bjt/{ =X} oT #* Pr_{bZ*;}I84k'zO&&n־M_jHO'Ds`�o}$vpu~Ma^OO[P JZۋOsm�>RN|L+b9xHe}6eVH.Xg* < bZJMiYJ콍{\nSEזI1}4dI-lXIQv70<f7쒑EW,AUܟ{}۩'I3[4xv$9$-ͽ ؛\nQj+O)dK?/Q: 1W2 %lm-і!RfOY5#VtujG@6 } xuWJU|mΞ%s̑$)I=u,|U7^5хh22:hY#QpobJC&_W(u%iu*AecRH?! lgD~,PG}os*mo,?y,IM)Cڅb6�ӄSi ?9I8|XJi2|W""eݛXkxl~IittMMz~_&He*_oе@o6+ -׮X dzKv`77wW�*빵]FcSbw탛 erfh0 4uF=Vv8I- (ϔCvj+Q@c4.y BJF%<is(ٙ˲ 2<u37*X$Mj#~c!k6!I. **!+rcTyA,Y;^̤iy]Yhŕt44nWKO1;B~Vt{pE,%mFxk?W/dp-eS4uX]@O�;~v[d')֧)7Dc#f \�lEGWM':kPΪɨ) uK;k^{m8C+Kx( E5J.i]37|ʠ33h䞕\ Dlx":\_ZSLjr9|:VlfȪX˪0!I�r[?mqJs?:U$}^<}+%/Ӹоq*W42*%H7ۦ:4RLI2y`I'`-a}⻔Yx*3 v]܎nīX#TBRQ̥$]r9)gIe`~5|XjxΫ76&$[OM*ߋ/*Ihqtw{#=|iK/ةj�%J\筅1ء,2Z$ 2ŋ;~ؘ s"G&c v߿_�aMT%n�#aԣm,`z8WR|ۛ }0RbVB7kI5Cu0paI f"  0Ke- /Ċ <,H})ReE>c4]v:or1O^|/:X~ƴ5a)TJ&nڷTJ Z32/y",&i2M-OObaeXwqt �Ϩ�ѽ8`e|9_YQ6}Ջ1׸,C$n8au-J[gu%|k-nT# & CAp%WqjhgzDqR$[B_үn-~"ӷaMRWAt�pHFϤ q{k+= -d~!))yϟ:$1Unk}u+sċQiW_Ri!s29'KD\d}M@yvF$N R^jE+zzr,?hrr\ְ̫O0[PѝT+ܝ:;˓{'v*FT6!p6;5qY<)1őRo"�fb2[5abeIG5RβyH X @6w`th|S*³tK&PI}ga0zz+#*3B!;}'T'A+gIU\*`jD;5}9c�Oj;`#fzGQ+z}ߐw)靶bQ #pv/8.Ƞo`9 B*Y6`(%ê'uuuV'm#|fT$H\n1'ݡӥCy5=+ٜJq0IX[uj1w H>Y_o{a&JW5z"b[O:^6(qC>S?m== 7f̲̈[2C1)o01Uf�bC8?OYgH+<QO3(tc$=͈xbjE\Q]D%b;�͉TYAW@u+d(k/$R5|+/JMf.(AgLir´so2%kjEŹ Ote_TQR^efTJnefhf`}Hm:tᨓu1iC]&*wQ2@XC_ccEu7B2k2aI_5JиQh�A'Ԧc< 7Iig'Teyي:46HoF!=ŻiV{ث4\溦')<EIh(S6F+E?i5OO׹A-D;GrPHO'XF:eX\zO'j*P fm)K<96m&YBvOP #]H; ":b7$Ν*+cg, HU|,^x:w)2ᗉ筌fu9<F!4厲O`-|r']puH7P9OTlk_I 7`wsOR\q~do_EU&_T[R Y 6$8ӭ\ui<k𫣣\ʊ,iYRXT-PA P8YK*)ؑ5t�Y? XD<J6}G}:Y$><~eež,,ewmٷ$)PںܥlUV_ڨ@y4Œ 6,6w?ݏUXp!ЂwXa9uJzGknEs{߮FKvi]SPE`1 W#5NU+uA%a9(Ԣʍrd\l5SY_N{RY&e.zX#)|f4G,EKDo5T?g4aFz,fMO:hV"W1Q͉ 4|M"µϐPe:|HuI(($q(a FjsIW&dg-E"kL&]5t_SUBr<r|)j:XMd&Hn =q:҄z-^ A/ =82)Z\pѨO?6I3@ uʋ&_SBsO5$21�n oьr$gܕeYg2^ ,21dx-~-ؾ+x&'jmdΉ崑H7ۆzm NxX(a<U :oem<3fÉ=9tredyFh^M^T2ၰRԌ|ώ�ߥ'0њxki'1)mXZNnƗ&5>ןj\j$kJu)xd,v$v9'87Ls9*2:ԚKS0Vfy�^ bOܿ:UfmmvWVcZZSEptRp>!5[>|S!JqPyxΆ2HJmkzyzXNܿs|7O2˩"[4yM%:cgrͶ"U߿ϝP%}⎖J%Q±�Pt:*q[nK lCi:GBH=0hT$;�GocpVO3Zp80lb&r2cl�l>E]jz^l7Jb{�gٛS;p&g5ń%T`.^k5mJ?]b°sKl\3,* m+{2^NyG"1'=$^sQAE,yiA"jԷ�I^5hcJ%l2eU#1QbxxtpIUiFÃ'X|.sY;y .C +yC�AkܬVTjKl5lTjwVe1bH,\jһH! Fю99=WK<Y/e*r}:_ VSjr QURK\-d36* u;JXR}N]d5 VeUF OPbδoKFGmq'rqx)k8FX[KAm݈N&4ymU5$4ouQ2VI^l7I<?̲Zb*I)Y)y>XJ]F?( x m}QMA:C:Wh&6@nnqŭIKz aL=h!33m]iv(5)"8z)R_NRm?f(2q[LZaZn _:HKIMqS5ZIehZdPٚ{#{#[r9}߂}U|ҜQS ×dV054t^g2<K㧑cyΐ.7cv&-R$fttGhJLq{_(HeY@1J)bz[b> rG*$-ۿ `y).YEm#,�M7 kq}0Jͩd`1_/D}`řտrp0wUd$;q Q>c��>(|V9GNy %U! H`ᕵ-}''/ I[IR&# fVaumOЃqmu-[5'>/7ْ1OYIQO1x,)PWN|�^.|,1x�IUI%) ȹ-rJcPSffXj45s3D$O-ѾF$RQ;?8amحKA%E=$t1CQ̼jW:wwa*Gݗ0fs-DEvG To ,ROjn2)v4y-�.& +-^ 鎕$۶, AJ�f_NHd�uEv ok-M [#x55I$mM#$RqbYm}ihER9u4E୨J .,\0�07]D Ϊdz7Y5,,HqpK ܜ,5 &,QT}`+-}E<v8yeܖD^J]fMWY,f(BN 2 3PybIO&B7G25FO+t/q.�m-St%f[UD(pƴci5[�]}#+TB*hz!Gu8>ݰc2;h!2ASJcqܓ@Hoq)4 5X&rO8s KTp0S:Al5@u+by錢MvzXjBk~�2k&qib]�وH[M5!Gcm� /&NUCzA)Fl.wX(TK�o&W?ۼN$%.[ n][qɣ~ ZYcrp @1,%zh*I#A\UoP[~=[eJ3ś gQA,iGS*MD&V-+m&F41A:#q~SS}C$Fzr#U-!;̡EAt4`1+|%5F (CBkVmv�Z;nCː۲ixik4f�#0٬ \a]6I!πZ5G76,.GFۢ~}.u"L)cي{+PAm(wNя[C,bXb6X].y<DRHm9G ̨2ѭLR%#{iزߧb/mO+lv%Y&4+T#F`H s($X)Qr|xo*OI$fVmɷ፡%=6]83VeY ѓGQ=e Jw ci+f[nqH}C4'3:r.Ye){oHP0e8(EwJЌ˙ TG**9JS*>ɘyVq;Yok'=mrNk|q /O}*yalqKQjhTyjb hF*�]=f,uBU-GFFΣDw>Ὄ =k ;mq (xVL2`$.Բ [`NM6AuV#Fx3zH \ Rb"sn >Aaŗa_qˠĞ=Y gfyMu q|7= ~eJ3Ctbt܍͏t⒲Zw()$T6 +?u k ;M mI(Ϊ)T&�n{@ؑ�ۓQ^7GO˲J_554wň6;M%WLJ\HF4LԓeֱgR`4N5ަ9,[QSuY#nUHJZO1anHnl/ۥ͎-W IH}R""+iY ܅aOSbUu̧ȑ^4pv6[x:~TA>% X qp,۽'%&aVLDKUHW~Kuµ� U=ptzܲ1˪GS}tڕp9ܛn~{}_: ;*U;:t=-h*%,\xaZi_ePC-I vZ:s"jClGJ̪5O&fjpYig_UAtUx9Ċ%JeDf9ansxGEÜʴ+YSAhf[|I=tuc\?ᏥLUdSd[|[Gy ZMY3 2,Go3 ܘ47ZVR0!moʳ.BSQ|ZY�`Qw6N1ǖiHOkz~IV8㴆5HO�m~q+܆"BnaIdW�8+@+6銦/6PA^�j9Y.T{~x )kN^ nS iE{ H^p &"dY@@d :نǂQ})]QYr$y[6{X[- bSVR2=lI SA*KN)&a2YEaɹ#O'WS˩JFnm?ncF;7<YlJzQH ąerI�[%F\~&gNuSMi{8@zGm`m+58'25O)~$QT^w-cJQp/Ӗcrc[XA�ۚ5C2N<]b1F+]c`$b!A!O'nַ\5YK$I[o{$]GR-5okgѥ8D+ s橳[H׵O:t5"DuSX 湄5J)\F-{Ůo6bΎTs\&Uh؋5 [W'tm5Zipꦛ+E�n6xǦ"MuVٞcYWEU&]QYC#iDP�tMϨ;#~5*cR2D^LT_"GN)EԽ} 糗A틑NYK<:#̨tIoX GnrrYh`8Ir �-�O|gƍ ꚣQ:#mDpz>]B׾%+c*j> Xr bH.؜AI ]ktJr\편"~Ad,H7d؎=,Xf e?/ hgj 9oo3Pڦp겿mDbDi$pBӆ$�6 F'eZ hs�ixȕ,*N� bQyM[R,%~j�B]]D5ۍ7#2ۓepJ#UOTF+ =Ȳ38f1"0rXŎnq'p5 v} J5BSBQAߞq|IݰRњ8Pbኅb esEC%lc%0 %Kᄳ,@e%oacRtʤURֈZV&p[StWiKM%!t>_/a}EiSH+@ҒMDOfP: kz/̞ٙ5zhRF>zKXo׌bK??7QKdRTèFmiB6:ܿ\8a* .z5eD TI۞}Lnnzr W_ДɛNM4lTޡ7erdg&|rtΩ*MBeI$!O JFn6`ENM.Bn 3ٓ,pEB:*Sl X){ Y4ۣEK\Ln=@,:o T펍U6cacHL*\aKs؏* ;ٕJEKĥluOs vdS y"ݽ@rLOJ{:$!tw|j�i4hYTF%�wrnNU&9&_1�*/8Pl5� Ou:LL\\iڵl�ݷ]2 TVRfRIQ!D`Ee-,H�Rǩ8mzՔGUqm\* a!rw`@i&-uPbZی.qALg0QeRDXzA nzUH(*ic) PIk؝ Q ɸDRd d/ l{mUym1T>K dIu6=ʟ sњbu˱}9=6&?F71QNPw�Cro R\uTrMъGC&6abҧ1!zʙj*8 @.UOn8uSK$]gZiVx^Nn 77PwgMy']Hc )MD̠F$өقEȸmԎGhvISK'17$R ~FخducH낡吹db7G} ˳+ J ['~?:춢4Hu<6c/09*�_[,$L= a(_LIe$ۧ| RSSU[I$WC~pzܵDjI.K#r0c2�ࡘv7P@5 a6F@oqŰqolr.�A罰[ $Š|: -"TApTm,B=8 jF/(LMLIO̪" 7 ˒`1(y0%|K4c]om�3nycܡͲ*Vce6XOP-aQq Hx3oh3 U"]UX6~8o:q<"m|4*+B3rn>r}kɭ4M _>Q!U/eBߝ7?\$}1Km2 ZzXg@Uw#W&qQD:C;216 l{_c~m 6Uq$K5J;p4=֢jy2=AE  -}<A/I̧̧?iiUn\` 1wo[yEQdcJY$(<fD<Bw&WE50湥-~aU g*}3v;o;<4_bZ!H`Mr1ud Jpmd2-hm\ L|RH}6XoP5<)7 EMB}'IM&YE NǺǨ~g6y^5 mChqw=y$h*j@ q*Aw=^,$}Vc<~IuF]] OoFb&Ȍ#}x1w(ṣhIPiKv*x{r[ Q&Tx!C Z 7�1vnM;bs~X0p3RQ% wp( [`}D1�aZ?gDgK idO�} qϩ)"i$D 'xC`agT檬Y�ꠓΒ{n7hR֎Yb(:/k0P}7�b>e-MH;aQ{Q"*((hjJڒFH-W6|+Ը$hP7HCj%ob9GJPgYD5XL% rD[p߂Tzߟ�RԬiYʐ<�cn= y9%,P5A pLIb<&y 7bK{0RHOzD"2X)\Q Y>)QǠE-�, :\ȱm]cU%}$0ZMd؅22FV6N'F'G �[ mpP+.zqv!)�\u5ٸ$ 7Jv*LopV !c[ҧHzSз}&ֿ՘Sn{XY $̤26`9ƍ5kfR =c|>Qxh8kBk#{}B.o;WFzz:?SO%fIT�6Y�@$mkXcB[gq܋教t5QS="vSAn~붭7zT9@jO)¢TU#hw"��Q8I 'Y+ ([Ɋ&*H�J7C7RsD4F(yr skx02l*E4uO-ᖩ݄^[Iw}vvhf9xnXuXf6 Ԥsm2FczZ*3Mz|Nm2yUnx@%NM@P [ӪonG1ez'c4jdEFs4LVZNFYQԵ=q4#-7s'N$X;'ᬧBSvay_[[8nv=0+�XV@ō1yi&0ܒz}pS/e,ZrUJ %աVf`V褁muC]Wrn۱LVc57�72tՄ7+ploql03f*vǶ5 S=$m* orm/r2]G # Nz/;X3Y+N�/l ;t4]`ICEBU6ߟoQv#S6&ݶ�jjaJR-۵|ݪ|eφ^ ͩ*?GyK 4ā:NoM|<^*3Bg,<3(b5c5;KZA]IN*ؼeBG}Jp/k-OB4M<{E/Pe]^�"X\z2*/".<   mf!CLF�{�'o CP24?{H QƏFvJL%?k+)K1:/Ue.\4O2SHB8nOb:Sý73SX#O7Hrn.Tke;cUq#"f-Ii_%0"V\w`{Ptj]7:4%-K|%洫6zX_-[lR.f �mlQkME 6fĨ~gԭˑu2E 5XH *.aO=]6Mm $p$DQZ^׿^pWWePbAw ڡk$XuUk�LI64$l$R_S[o>�L PgFӠ05sU~7 1(6FЦGp.}ne 0@rxlnp#U� 7QH5Q$`px�|&(кX^1q2 �؃t+V#M#3vf3 dyWF#mJ* I k651$V2>s,gUO=?_A�)"n۩6]ڋ)H:9S̍Jg250ێ+ LY<mTsU-)_:`6؀m{~qh6&P$&uYU,/Ib4}7.+ [+qU?Y]@!+FUdmRm%U!/uq}J-KYxcïRO]̂_Zʼnߐlk[rߟw.Bc OfR=3N }dvsOgW1,Ht?;aĢE-i龟z\\6ii>DJI{uC%(P*nMƒc?Q � .0ZqePnGղv.-ۮ:#@,jxBݴ=,#]XԄ(l0�}R| 7ՊC:Ai>�5Y`WA] ׾$aF\@0tUb�m5*NX\-dkG ` ŹapQsTf~.Z剰<^^ax=w2of"!#h�'\f#/.Jx|ґv]U%~q$}q'ЦUM+jwqZ9֠Pqq#K7m"~Sj*Jj<pp�z0c)C8׉~Y&vW]Qǣa"̍`dFUSц!㥲CFw+UY|:ڮK&i%5 �`@9 WQt�arY|ieUٳ}L"eeh_m}luـtrz\T77ǑUTe9UYb.iLT"Q� Z=m~mp `hO] |+"v[ъ EӤr�PUvEH|2mk'$tB;1U|` �}0(;rs턦=ckRXn˫ka &fm:pρW" ۝+u=1R@&РqZo4bF-A Nz}p60S| V Pڔ;*[ T6nGc%HRae{C]ugCp{ #P[P Q~x1X2]QרMQ5 M}jtؑbEٍE2�c `|,G7qu&-ҷ"kyl>ތ(h*hਆHX߯;qQeYo2X(w0TUa0`bIms`;_59V6ߩ/(dz5�7'ª agh&k6t>J iͳ-v=%^CX/'VauV:ٕbxB]ܛq ݀$nN  [1�ۓDۨk@ajűu7<A4r!(7A}76`{&0Ul"J jӶjYm@XXc7?ZR18;jw %Zˋfx ."mm 킻3znTv0֘]rmsnY(j& ËF`U<GS:WW�©7m�= S?_\6́U^nX 1<1&`FzئY I.*yt2c!A`^B9O؎/ӬWm?L4FU:@0" AAvsnށz'�oakܜoc u$!6oQJPth�X ܳڛK6vuƻ�n,"/3]w'ߧ�Flw_9*<) tٿ{[iPڡ>f^K\0[,<JA7X�iy>^lvj|WMQ,oH? 1ԊT6aZH2)Fہl>LAU\ǵ^)+UX ktîtr? N`�rK2yh ]&Ì2XXM'Ya{}v[ uy(mDAH"0_qmpEf�[ampc4Ơq{a%t#U\`#0O�ŹW#rpqva`l |E`I#{} YJ؛ml* V(J c{)'g$-"P9�/̄ 6 ywT%o*y(1jl�^߈UTn؄:'r?/ Y+2iXR\ (0~p 'kcv;0jź Sj �l$2V<Lk6v Jѹ!�@nO˾0w;y`;v3,dpmqY5�`GA+=FfJ�(K#A mڐmhѬ-:? endstream endobj 12 0 obj << /Type /Outlines /Count 1 /First 13 0 R /Last 13 0 R >> endobj 13 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 12 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 14 0 obj << /Nums [0 << /P (1) >>] >> endobj xref 0 15 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000001007 00000 n 0000001317 00000 n 0000001359 00000 n 0000001407 00000 n 0000001459 00000 n 0000023691 00000 n 0000023765 00000 n 0000023890 00000 n trailer << /Size 15 /Root 2 0 R /Info 1 0 R >> startxref 23935 %%EOF ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/image-wrap-inline-legacy.pdf������������������������������0000664�0000000�0000000�00000220274�14163570564�0025725�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.3.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.3.dev, based on Prawn 2.2.2) /ModDate (D:20200126014948-07'00') /CreationDate (D:20200126014948-07'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 15 0 R /PageLabels 17 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 47306 >> stream q 88.5 Tc 0.0 Tc 88.5 Tc 0.0 Tc 8.25 Tc 0.0 Tc 4.5 Tc 0.0 Tc 88.5 Tc 0.0 Tc 8.25 Tc 0.0 Tc 4.5 Tc 0.0 Tc 88.5 Tc 0.0 Tc 8.25 Tc 0.0 Tc 4.5 Tc 0.0 Tc /DeviceRGB cs 1.0 1.0 1.0 scn 48.24 752.55 112.23 53.34 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 160.47 752.55 213.237 53.34 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 373.707 752.55 48.633 53.34 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 48.24 683.43 112.23 69.12 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 160.47 683.43 213.237 69.12 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 373.707 683.43 48.633 69.12 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 48.24 602.3099 112.23 81.1201 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 160.47 602.3099 213.237 81.1201 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 373.707 602.3099 48.633 81.1201 re f 0.0 0.0 0.0 scn 0.5 w /DeviceRGB CS 0.8667 0.8667 0.8667 SCN 48.24 805.89 m 160.47 805.89 l S [] 0 d 1.25 w 0.8667 0.8667 0.8667 SCN 48.24 752.55 m 160.47 752.55 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 806.14 m 48.24 751.925 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 160.47 806.14 m 160.47 751.925 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 51.24 790.926 Td /F2.0 10.5 Tf <4e616d65> Tj ET 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 160.47 805.89 m 373.707 805.89 l S [] 0 d 1.25 w 0.8667 0.8667 0.8667 SCN 160.47 752.55 m 373.707 752.55 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 160.47 806.14 m 160.47 751.925 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 373.707 806.14 m 373.707 751.925 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 163.47 790.926 Td /F2.0 10.5 Tf <4465736372697074696f6e> Tj ET 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 373.707 805.89 m 422.34 805.89 l S [] 0 d 1.25 w 0.8667 0.8667 0.8667 SCN 373.707 752.55 m 422.34 752.55 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 373.707 806.14 m 373.707 751.925 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 422.34 806.14 m 422.34 751.925 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 376.707 790.926 Td /F2.0 10.5 Tf <4d696e2023> Tj ET BT 376.707 775.146 Td /F2.0 10.5 Tf <64617461> Tj ET BT 376.707 759.366 Td /F2.0 10.5 Tf <706f696e7473> Tj ET 0.0 0.0 0.0 scn 1.25 w 0.8667 0.8667 0.8667 SCN 48.24 752.55 m 160.47 752.55 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 683.43 m 160.47 683.43 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 753.175 m 48.24 683.18 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 160.47 753.175 m 160.47 683.18 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 51.24 737.586 Td /F3.0 10.5 Tf <436f6e666964656e636520696e74657276616c206f66> Tj ET BT 51.24 721.806 Td /F3.0 10.5 Tf <746865206d65616e> Tj ET 0.0 0.0 0.0 scn 1.25 w 0.8667 0.8667 0.8667 SCN 160.47 752.55 m 373.707 752.55 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 160.47 683.43 m 373.707 683.43 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 160.47 753.175 m 160.47 683.18 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 373.707 753.175 m 373.707 683.18 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn 88.5 Tc 0.0 Tc BT 163.47 737.586 Td /F1.0 10.5 Tf <54686520636f6e666964656e636520696e74657276616c206f6620746865206d65616e206973> Tj ET 88.5 Tc 0.0 Tc 8.25 Tc 0.0 Tc 4.5 Tc 0.0 Tc 88.5 Tc 0.0 Tc 8.25 Tc 0.0 Tc 4.5 Tc 0.0 Tc 88.5 Tc q 163.47 718.7712 m 251.97 718.7712 l 251.97 732.9888 l 163.47 732.9888 l h W n 0.0 0.0 0.0 scn 0.74599 0.00000 0.00000 0.74599 41.52300 186.18644 cm 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 cm q Q q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 -1.05859 -1.82241 cm q q 2 j 165.2044 721.3951 m 165.2044 733.3951 l 166.845 733.3951 l 166.845 732.9888 l 165.5325 732.9888 l 165.5325 721.8013 l 166.845 721.8013 l 166.845 721.3951 l h 165.2044 721.3951 m f Q Q Q Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 2.79688 -11.18555 cm q q 2 j 170.0325 738.0044 m 170.3333 738.4615 170.6653 738.8052 171.0325 739.0357 c 171.3958 739.274 171.7981 739.3951 172.2356 739.3951 c 172.8802 739.3951 173.3294 739.1919 173.5794 738.7857 c 173.7122 738.5357 173.7825 738.2115 173.7825 737.8169 c 173.7825 737.5669 173.7512 737.2779 173.6887 736.9576 c 173.0481 733.6138 l 174.0169 733.6138 l 173.9075 732.9888 l 171.845 732.9888 l 172.595 736.8326 l 172.6575 737.1333 172.6887 737.3951 172.6887 737.6138 c 172.6887 737.8521 172.6497 738.0435 172.5794 738.1919 c 172.4427 738.4615 172.1575 738.5982 171.72 738.5982 c 171.2395 738.5982 170.8372 738.4146 170.5169 738.0513 c 170.1927 737.6841 169.9622 737.1529 169.8294 736.4576 c 169.1575 732.9888 l 168.0794 732.9888 l 168.845 736.8638 l 168.8958 737.1529 168.9231 737.4107 168.9231 737.6294 c 168.9231 737.8677 168.8841 738.0552 168.8137 738.1919 c 168.677 738.4615 168.3919 738.5982 167.9544 738.5982 c 167.4739 738.5982 167.0716 738.4146 166.7512 738.0513 c 166.427 737.6841 166.1966 737.1529 166.0637 736.4576 c 165.3919 732.9888 l 164.3137 732.9888 l 165.4075 738.5982 l 164.3762 738.5982 l 164.4856 739.2232 l 166.595 739.2232 l 166.3919 738.1138 l 166.6614 738.5279 166.9739 738.8482 167.3294 739.0669 c 167.6809 739.2857 168.052 739.3951 168.4387 739.3951 c 168.927 739.3951 169.3059 739.2701 169.5794 739.0201 c 169.8606 738.7779 170.0091 738.4419 170.0325 738.0044 c h 170.0325 738.0044 m f Q Q Q Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 16.07031 -11.18555 cm q q 2 j 164.7356 737.2232 m 172.2512 737.2232 l 172.2512 736.2701 l 164.7356 736.2701 l h 164.7356 737.2232 m f Q Q Q Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 28.19922 -11.18555 cm q q 2 j 165.0794 738.5982 m 164.1262 738.5982 l 164.2512 739.2232 l 165.2044 739.2232 l 165.5794 741.1451 l 166.6575 741.1451 l 166.2825 739.2232 l 168.3137 739.2232 l 168.1887 738.5982 l 166.1575 738.5982 l 165.3919 734.6294 l 165.3294 734.3247 165.2981 734.0865 165.2981 733.9107 c 165.2981 733.7857 165.3137 733.6919 165.345 733.6294 c 165.4153 733.4732 165.5872 733.3951 165.8606 733.3951 c 166.1419 733.3951 166.3645 733.4771 166.5325 733.6451 c 166.6966 733.8091 166.8177 734.0826 166.8919 734.4576 c 167.7044 734.4576 l 167.5677 733.8833 167.3333 733.4654 167.0012 733.2076 c 166.677 732.9497 166.2278 732.8169 165.6575 732.8169 c 165.0403 732.8169 164.6302 732.9576 164.4231 733.2388 c 164.2981 733.4029 164.2356 733.6451 164.2356 733.9576 c 164.2356 734.1529 164.2591 734.3794 164.3137 734.6294 c h 165.0794 738.5982 m f Q Q Q Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 33.82031 -12.51758 cm q q 2 j 166.9231 734.0826 m 166.6731 733.6138 l 166.5364 733.3833 166.3216 733.1919 166.0325 733.0357 c 165.845 732.9341 165.6028 732.8794 165.3137 732.8794 c 165.302 732.8794 165.2981 732.8794 165.2981 732.8794 c 164.7434 732.8912 164.3372 733.106 164.0794 733.5357 c 163.9114 733.8169 163.8294 734.1529 163.8294 734.5513 c 163.8294 734.7583 163.8489 734.981 163.8919 735.2232 c 164.0247 735.899 164.3059 736.4576 164.7356 736.8951 c 165.1419 737.3091 165.6809 737.5201 166.3606 737.5201 c 166.8372 737.5201 167.177 737.4302 167.3762 737.2544 c 167.5637 737.0865 167.6614 736.8208 167.6731 736.4576 c 167.6731 736.3169 l 167.9231 736.7701 l 168.0794 737.0591 168.3137 737.2779 168.6262 737.4263 c 169.0481 737.4263 l 169.0012 737.1763 l 168.72 737.0904 168.5052 736.9185 168.3606 736.6607 c 167.7044 735.4888 l 167.7512 734.2076 l 167.7591 733.7701 167.8137 733.5279 167.9075 733.4888 c 167.9387 733.4654 167.9778 733.4576 168.0325 733.4576 c 168.1887 733.4576 168.4114 733.5357 168.7044 733.6919 c 168.595 733.1919 l 168.2903 733.0357 168.0208 732.9576 167.7825 732.9576 c 167.5403 732.9576 167.3372 733.0396 167.1731 733.2076 c 167.0169 733.3638 166.9387 733.5552 166.9387 733.7857 c h 166.9075 734.8951 m 166.8762 736.1138 l 166.8645 736.7583 166.6653 737.0865 166.2825 737.0982 c 165.97 737.0982 165.6614 736.9263 165.3606 736.5826 c 165.0989 736.3013 164.9075 735.8404 164.7825 735.2076 c 164.7278 734.9263 164.7044 734.6763 164.7044 734.4576 c 164.7044 734.1958 164.7395 733.981 164.8137 733.8169 c 164.9583 733.5044 165.1966 733.3482 165.5325 733.3482 c 165.8958 733.3482 166.2669 733.6958 166.6419 734.3951 c h 166.9075 734.8951 m f Q Q Q Q Q Q q q 1.00000 0.00000 0.00000 1.00000 0.00000 -11.18480 cm q /Tr1 gs 0.0 0.0 0.0 SCN 1.2 w 0 J 2 j 204.6809 736.7517 m 217.6731 736.7517 l S Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 45.61719 -4.54102 cm q q 2 j 163.7669 734.2701 m 164.2044 734.2701 l 164.1927 734.1841 164.1887 734.106 164.1887 734.0357 c 164.1887 733.5357 164.5325 733.2857 165.22 733.2857 c 165.9075 733.2857 166.2981 733.5357 166.3919 734.0357 c 166.3997 734.0865 166.4075 734.1529 166.4075 734.2388 c 166.4075 734.3326 166.3606 734.4302 166.2669 734.5357 c 166.1731 734.6372 165.927 734.7583 165.5325 734.8951 c 165.0169 735.0826 l 164.6614 735.1958 164.427 735.3326 164.3137 735.4888 c 164.1966 735.6451 164.1419 735.8169 164.1419 736.0044 c 164.1419 736.0747 164.1458 736.1529 164.1575 736.2388 c 164.2395 736.6333 164.4466 736.9458 164.7825 737.1763 c 165.1262 737.4146 165.5403 737.5357 166.0325 737.5357 c 166.5325 737.5357 167.0364 737.4146 167.5481 737.1763 c 167.3606 736.2076 l 166.9231 736.2076 l 166.9309 736.2701 166.9387 736.3247 166.9387 736.3794 c 166.9387 736.5865 166.8645 736.7583 166.72 736.8951 c 166.5833 737.0396 166.3528 737.1138 166.0325 737.1138 c 165.3762 737.1138 165.0052 736.8872 164.9231 736.4419 c 164.9114 736.3872 164.9075 736.3208 164.9075 736.2388 c 164.9075 736.1529 164.9466 736.0591 165.0325 735.9576 c 165.1262 735.8638 165.3489 735.7583 165.7044 735.6451 c 166.2669 735.4576 l 166.6614 735.3326 166.9309 735.1685 167.0794 734.9732 c 167.1809 734.8247 167.2356 734.6841 167.2356 734.5513 c 167.2356 733.9654 167.0012 733.524 166.5325 733.2232 c 166.1653 732.9849 165.7044 732.8638 165.1419 732.8638 c 164.5872 732.8638 164.0637 732.9888 163.5637 733.2388 c h 163.7669 734.2701 m f Q Q Q Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 40.27344 -9.67807 cm q q 2 j 167.0794 723.6138 m 165.1575 727.8638 l 164.5637 727.4263 l 164.4075 727.5669 l 165.6262 728.4576 l 167.4231 724.5044 l 171.845 733.2388 l 171.8645 733.2896 171.9114 733.3169 171.9856 733.3169 c 172.0364 733.3169 172.0794 733.3013 172.1106 733.2701 c 172.1419 733.2388 172.1575 733.1958 172.1575 733.1451 c 172.1575 733.1216 172.1497 733.106 172.1419 733.0982 c 167.3919 723.6919 l 167.3684 723.6412 167.3294 723.6138 167.2669 723.6138 c h 167.0794 723.6138 m f Q Q Q Q Q Q q q 1.00000 0.00000 0.00000 1.00000 0.00000 -11.18480 cm q /Tr1 gs 0.0 0.0 0.0 SCN 0.426 w 1 J 2 j 212.22 734.6033 m 217.4622 734.6033 l S Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 48.83984 -16.69336 cm q q 2 j 164.0637 732.9888 m 164.845 736.9576 l 164.1106 736.9576 l 164.1887 737.4107 l 165.6887 737.4107 l 165.5481 736.6294 l 165.7434 736.9185 165.97 737.1451 166.22 737.3013 c 166.4778 737.4576 166.7552 737.5357 167.0481 737.5357 c 167.5364 737.5357 167.8684 737.3951 168.0481 737.1138 c 168.1497 736.9341 168.2044 736.7076 168.2044 736.4263 c 168.2044 736.2466 168.1809 736.0396 168.1419 735.8013 c 167.6731 733.4263 l 168.3606 733.4263 l 168.2825 732.9888 l 166.8294 732.9888 l 167.3294 735.5513 l 167.3802 735.8404 167.4075 736.0826 167.4075 736.2701 c 167.4075 736.4341 167.3841 736.5708 167.345 736.6763 c 167.2512 736.8716 167.0364 736.9732 166.7044 736.9732 c 166.3372 736.9732 166.0364 736.8404 165.7981 736.5826 c 165.5677 736.3208 165.4075 735.9458 165.3137 735.4576 c 164.8294 732.9888 l h 164.0637 732.9888 m f Q Q Q Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 55.76953 -11.18555 cm q q 2 j 163.9075 731.8169 m 164.2708 732.0904 164.5364 732.4068 164.7044 732.7701 c 164.8802 733.1333 164.97 733.5747 164.97 734.0982 c 164.97 734.3169 l 166.1262 734.3169 l 166.095 733.649 165.9387 733.0747 165.6575 732.5982 c 165.3762 732.1216 164.9466 731.7037 164.3762 731.3482 c h 163.9075 731.8169 m f Q Q Q Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 62.91406 -11.18555 cm q q 2 j 170.0325 738.0044 m 170.3333 738.4615 170.6653 738.8052 171.0325 739.0357 c 171.3958 739.274 171.7981 739.3951 172.2356 739.3951 c 172.8802 739.3951 173.3294 739.1919 173.5794 738.7857 c 173.7122 738.5357 173.7825 738.2115 173.7825 737.8169 c 173.7825 737.5669 173.7512 737.2779 173.6887 736.9576 c 173.0481 733.6138 l 174.0169 733.6138 l 173.9075 732.9888 l 171.845 732.9888 l 172.595 736.8326 l 172.6575 737.1333 172.6887 737.3951 172.6887 737.6138 c 172.6887 737.8521 172.6497 738.0435 172.5794 738.1919 c 172.4427 738.4615 172.1575 738.5982 171.72 738.5982 c 171.2395 738.5982 170.8372 738.4146 170.5169 738.0513 c 170.1927 737.6841 169.9622 737.1529 169.8294 736.4576 c 169.1575 732.9888 l 168.0794 732.9888 l 168.845 736.8638 l 168.8958 737.1529 168.9231 737.4107 168.9231 737.6294 c 168.9231 737.8677 168.8841 738.0552 168.8137 738.1919 c 168.677 738.4615 168.3919 738.5982 167.9544 738.5982 c 167.4739 738.5982 167.0716 738.4146 166.7512 738.0513 c 166.427 737.6841 166.1966 737.1529 166.0637 736.4576 c 165.3919 732.9888 l 164.3137 732.9888 l 165.4075 738.5982 l 164.3762 738.5982 l 164.4856 739.2232 l 166.595 739.2232 l 166.3919 738.1138 l 166.6614 738.5279 166.9739 738.8482 167.3294 739.0669 c 167.6809 739.2857 168.052 739.3951 168.4387 739.3951 c 168.927 739.3951 169.3059 739.2701 169.5794 739.0201 c 169.8606 738.7779 170.0091 738.4419 170.0325 738.0044 c h 170.0325 738.0044 m f Q Q Q Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 76.18750 -11.18164 cm q q 2 j 168.97 740.5201 m 168.97 737.2232 l 172.2512 737.2232 l 172.2512 736.2701 l 168.97 736.2701 l 168.97 732.9888 l 168.0325 732.9888 l 168.0325 736.2701 l 164.7356 736.2701 l 164.7356 737.2232 l 168.0325 737.2232 l 168.0325 740.5201 l h 168.97 740.5201 m f Q Q Q Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 88.31641 -11.18555 cm q q 2 j 165.0794 738.5982 m 164.1262 738.5982 l 164.2512 739.2232 l 165.2044 739.2232 l 165.5794 741.1451 l 166.6575 741.1451 l 166.2825 739.2232 l 168.3137 739.2232 l 168.1887 738.5982 l 166.1575 738.5982 l 165.3919 734.6294 l 165.3294 734.3247 165.2981 734.0865 165.2981 733.9107 c 165.2981 733.7857 165.3137 733.6919 165.345 733.6294 c 165.4153 733.4732 165.5872 733.3951 165.8606 733.3951 c 166.1419 733.3951 166.3645 733.4771 166.5325 733.6451 c 166.6966 733.8091 166.8177 734.0826 166.8919 734.4576 c 167.7044 734.4576 l 167.5677 733.8833 167.3333 733.4654 167.0012 733.2076 c 166.677 732.9497 166.2278 732.8169 165.6575 732.8169 c 165.0403 732.8169 164.6302 732.9576 164.4231 733.2388 c 164.2981 733.4029 164.2356 733.6451 164.2356 733.9576 c 164.2356 734.1529 164.2591 734.3794 164.3137 734.6294 c h 165.0794 738.5982 m f Q Q Q Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 93.93750 -12.51758 cm q q 2 j 166.9231 734.0826 m 166.6731 733.6138 l 166.5364 733.3833 166.3216 733.1919 166.0325 733.0357 c 165.845 732.9341 165.6028 732.8794 165.3137 732.8794 c 165.302 732.8794 165.2981 732.8794 165.2981 732.8794 c 164.7434 732.8912 164.3372 733.106 164.0794 733.5357 c 163.9114 733.8169 163.8294 734.1529 163.8294 734.5513 c 163.8294 734.7583 163.8489 734.981 163.8919 735.2232 c 164.0247 735.899 164.3059 736.4576 164.7356 736.8951 c 165.1419 737.3091 165.6809 737.5201 166.3606 737.5201 c 166.8372 737.5201 167.177 737.4302 167.3762 737.2544 c 167.5637 737.0865 167.6614 736.8208 167.6731 736.4576 c 167.6731 736.3169 l 167.9231 736.7701 l 168.0794 737.0591 168.3137 737.2779 168.6262 737.4263 c 169.0481 737.4263 l 169.0012 737.1763 l 168.72 737.0904 168.5052 736.9185 168.3606 736.6607 c 167.7044 735.4888 l 167.7512 734.2076 l 167.7591 733.7701 167.8137 733.5279 167.9075 733.4888 c 167.9387 733.4654 167.9778 733.4576 168.0325 733.4576 c 168.1887 733.4576 168.4114 733.5357 168.7044 733.6919 c 168.595 733.1919 l 168.2903 733.0357 168.0208 732.9576 167.7825 732.9576 c 167.5403 732.9576 167.3372 733.0396 167.1731 733.2076 c 167.0169 733.3638 166.9387 733.5552 166.9387 733.7857 c h 166.9075 734.8951 m 166.8762 736.1138 l 166.8645 736.7583 166.6653 737.0865 166.2825 737.0982 c 165.97 737.0982 165.6614 736.9263 165.3606 736.5826 c 165.0989 736.3013 164.9075 735.8404 164.7825 735.2076 c 164.7278 734.9263 164.7044 734.6763 164.7044 734.4576 c 164.7044 734.1958 164.7395 733.981 164.8137 733.8169 c 164.9583 733.5044 165.1966 733.3482 165.5325 733.3482 c 165.8958 733.3482 166.2669 733.6958 166.6419 734.3951 c h 166.9075 734.8951 m f Q Q Q Q Q Q q q 1.00000 0.00000 0.00000 1.00000 0.00000 -11.18480 cm q /Tr1 gs 0.0 0.0 0.0 SCN 1.2 w 0 J 2 j 264.7981 736.7517 m 277.7903 736.7517 l S Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 105.73438 -4.54102 cm q q 2 j 163.7669 734.2701 m 164.2044 734.2701 l 164.1927 734.1841 164.1887 734.106 164.1887 734.0357 c 164.1887 733.5357 164.5325 733.2857 165.22 733.2857 c 165.9075 733.2857 166.2981 733.5357 166.3919 734.0357 c 166.3997 734.0865 166.4075 734.1529 166.4075 734.2388 c 166.4075 734.3326 166.3606 734.4302 166.2669 734.5357 c 166.1731 734.6372 165.927 734.7583 165.5325 734.8951 c 165.0169 735.0826 l 164.6614 735.1958 164.427 735.3326 164.3137 735.4888 c 164.1966 735.6451 164.1419 735.8169 164.1419 736.0044 c 164.1419 736.0747 164.1458 736.1529 164.1575 736.2388 c 164.2395 736.6333 164.4466 736.9458 164.7825 737.1763 c 165.1262 737.4146 165.5403 737.5357 166.0325 737.5357 c 166.5325 737.5357 167.0364 737.4146 167.5481 737.1763 c 167.3606 736.2076 l 166.9231 736.2076 l 166.9309 736.2701 166.9387 736.3247 166.9387 736.3794 c 166.9387 736.5865 166.8645 736.7583 166.72 736.8951 c 166.5833 737.0396 166.3528 737.1138 166.0325 737.1138 c 165.3762 737.1138 165.0052 736.8872 164.9231 736.4419 c 164.9114 736.3872 164.9075 736.3208 164.9075 736.2388 c 164.9075 736.1529 164.9466 736.0591 165.0325 735.9576 c 165.1262 735.8638 165.3489 735.7583 165.7044 735.6451 c 166.2669 735.4576 l 166.6614 735.3326 166.9309 735.1685 167.0794 734.9732 c 167.1809 734.8247 167.2356 734.6841 167.2356 734.5513 c 167.2356 733.9654 167.0012 733.524 166.5325 733.2232 c 166.1653 732.9849 165.7044 732.8638 165.1419 732.8638 c 164.5872 732.8638 164.0637 732.9888 163.5637 733.2388 c h 163.7669 734.2701 m f Q Q Q Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 100.39062 -9.67807 cm q q 2 j 167.0794 723.6138 m 165.1575 727.8638 l 164.5637 727.4263 l 164.4075 727.5669 l 165.6262 728.4576 l 167.4231 724.5044 l 171.845 733.2388 l 171.8645 733.2896 171.9114 733.3169 171.9856 733.3169 c 172.0364 733.3169 172.0794 733.3013 172.1106 733.2701 c 172.1419 733.2388 172.1575 733.1958 172.1575 733.1451 c 172.1575 733.1216 172.1497 733.106 172.1419 733.0982 c 167.3919 723.6919 l 167.3684 723.6412 167.3294 723.6138 167.2669 723.6138 c h 167.0794 723.6138 m f Q Q Q Q Q Q q q 1.00000 0.00000 0.00000 1.00000 0.00000 -11.18480 cm q /Tr1 gs 0.0 0.0 0.0 SCN 0.426 w 1 J 2 j 272.3372 734.6033 m 277.5794 734.6033 l S Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 108.95703 -16.69336 cm q q 2 j 164.0637 732.9888 m 164.845 736.9576 l 164.1106 736.9576 l 164.1887 737.4107 l 165.6887 737.4107 l 165.5481 736.6294 l 165.7434 736.9185 165.97 737.1451 166.22 737.3013 c 166.4778 737.4576 166.7552 737.5357 167.0481 737.5357 c 167.5364 737.5357 167.8684 737.3951 168.0481 737.1138 c 168.1497 736.9341 168.2044 736.7076 168.2044 736.4263 c 168.2044 736.2466 168.1809 736.0396 168.1419 735.8013 c 167.6731 733.4263 l 168.3606 733.4263 l 168.2825 732.9888 l 166.8294 732.9888 l 167.3294 735.5513 l 167.3802 735.8404 167.4075 736.0826 167.4075 736.2701 c 167.4075 736.4341 167.3841 736.5708 167.345 736.6763 c 167.2512 736.8716 167.0364 736.9732 166.7044 736.9732 c 166.3372 736.9732 166.0364 736.8404 165.7981 736.5826 c 165.5677 736.3208 165.4075 735.9458 165.3137 735.4576 c 164.8294 732.9888 l h 164.0637 732.9888 m f Q Q Q Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 116.13281 -1.82241 cm q q 2 j 163.6575 721.3951 m 163.6575 721.8013 l 164.9544 721.8013 l 164.9544 732.9888 l 163.6575 732.9888 l 163.6575 733.3951 l 165.2981 733.3951 l 165.2981 721.3951 l h 163.6575 721.3951 m f Q Q Q Q Q Q Q Q BT 163.47 721.806 Td ET 0.0 Tc BT 251.97 721.806 Td /F1.0 10.5 Tf <2c20776865726520> Tj ET 8.25 Tc q 291.912 723.4885 m 300.162 723.4885 l 300.162 728.2715 l 291.912 728.2715 l h W n 0.0 0.0 0.0 scn 0.74752 0.00000 0.00000 0.74752 73.70121 183.87216 cm 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 cm q Q q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 -0.17578 -6.39648 cm q q 2 j 298.4745 733.2871 m 298.7753 733.7441 299.1073 734.0879 299.4745 734.3184 c 299.8378 734.5566 300.2401 734.6777 300.6776 734.6777 c 301.3222 734.6777 301.7714 734.4746 302.0214 734.0684 c 302.1542 733.8184 302.2245 733.4941 302.2245 733.0996 c 302.2245 732.8496 302.1933 732.5606 302.1308 732.2402 c 301.4901 728.8965 l 302.4589 728.8965 l 302.3495 728.2715 l 300.287 728.2715 l 301.037 732.1152 l 301.0995 732.416 301.1308 732.6777 301.1308 732.8965 c 301.1308 733.1348 301.0917 733.3262 301.0214 733.4746 c 300.8847 733.7441 300.5995 733.8809 300.162 733.8809 c 299.6815 733.8809 299.2792 733.6973 298.9589 733.334 c 298.6347 732.9668 298.4042 732.4356 298.2714 731.7402 c 297.5995 728.2715 l 296.5214 728.2715 l 297.287 732.1465 l 297.3378 732.4356 297.3651 732.6934 297.3651 732.9121 c 297.3651 733.1504 297.3261 733.3379 297.2558 733.4746 c 297.119 733.7441 296.8339 733.8809 296.3964 733.8809 c 295.9159 733.8809 295.5136 733.6973 295.1933 733.334 c 294.869 732.9668 294.6386 732.4356 294.5058 731.7402 c 293.8339 728.2715 l 292.7558 728.2715 l 293.8495 733.8809 l 292.8183 733.8809 l 292.9276 734.5059 l 295.037 734.5059 l 294.8339 733.3965 l 295.1034 733.8106 295.4159 734.1309 295.7714 734.3496 c 296.1229 734.5684 296.494 734.6777 296.8808 734.6777 c 297.369 734.6777 297.7479 734.5527 298.0214 734.3027 c 298.3026 734.0606 298.4511 733.7246 298.4745 733.2871 c h 298.4745 733.2871 m f Q Q Q Q Q Q Q Q BT 291.912 721.806 Td ET 0.0 Tc BT 300.162 721.806 Td /F1.0 10.5 Tf <20697320746865206d65616e2c20> Tj ET 4.5 Tc q 365.9235 723.7525 m 370.4235 723.7525 l 370.4235 728.0075 l 365.9235 728.0075 l h W n 0.0 0.0 0.0 scn 0.64780 0.00000 0.00000 0.64780 128.87909 256.40590 cm 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 cm q Q q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 0.53125 -6.39648 cm q q 2 j 366.3454 729.8044 m 366.9548 729.8044 l 366.943 729.6872 366.9391 729.5856 366.9391 729.4919 c 366.9391 728.7731 367.4235 728.4137 368.3923 728.4137 c 369.361 728.4137 369.9118 728.7731 370.0485 729.4919 c 370.0563 729.5544 370.0641 729.6481 370.0641 729.7731 c 370.0641 729.8981 369.9938 730.0309 369.861 730.1794 c 369.736 730.3239 369.3923 730.4919 368.8298 730.6794 c 368.0954 730.945 l 367.5954 731.1208 367.2594 731.32 367.0954 731.5387 c 366.9391 731.7575 366.861 731.9958 366.861 732.2575 c 366.861 732.3512 366.8688 732.4606 366.8923 732.5856 c 367.0055 733.1481 367.3024 733.5895 367.7829 733.9137 c 368.2594 734.2458 368.8493 734.4137 369.5485 734.4137 c 370.236 734.4137 370.943 734.2419 371.6735 733.8981 c 371.4079 732.5387 l 370.7829 732.5387 l 370.8024 732.6325 370.8141 732.7145 370.8141 732.7887 c 370.8141 733.0778 370.7126 733.3239 370.5173 733.5231 c 370.318 733.7184 369.9899 733.82 369.5329 733.82 c 368.6149 733.82 368.0954 733.4997 367.9704 732.8669 c 367.9469 732.8044 367.9391 732.7106 367.9391 732.5856 c 367.9391 732.4684 368.0016 732.3395 368.1266 732.195 c 368.2594 732.0583 368.5719 731.9137 369.0641 731.7575 c 369.8766 731.4919 l 370.4274 731.3044 370.8063 731.0739 371.0173 730.8044 c 371.1618 730.6051 371.236 730.4059 371.236 730.2106 c 371.236 729.3981 370.9079 728.777 370.2516 728.3512 c 369.7282 728.0075 369.0719 727.8356 368.2829 727.8356 c 367.5016 727.8356 366.7594 728.0075 366.0641 728.3512 c h 366.3454 729.8044 m f Q Q Q Q Q Q Q Q BT 365.9235 721.806 Td ET 0.0 Tc BT 163.47 706.026 Td /F1.0 10.5 Tf <69732074686520657374696d617465642073616d706c65207374616e64617264> Tj ET BT 163.47 690.246 Td /F1.0 10.5 Tf <646576696174696f6e2c20616e6420736f206f6e2e> Tj ET 0.0 0.0 0.0 scn 1.25 w 0.8667 0.8667 0.8667 SCN 373.707 752.55 m 422.34 752.55 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 373.707 683.43 m 422.34 683.43 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 373.707 753.175 m 373.707 683.18 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 422.34 753.175 m 422.34 683.18 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 376.707 737.586 Td /F1.0 10.5 Tf <32> Tj ET 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 683.43 m 160.47 683.43 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 602.3099 m 160.47 602.3099 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 683.68 m 48.24 602.0599 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 160.47 683.68 m 160.47 602.0599 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 51.24 668.466 Td /F3.0 10.5 Tf <436f6e666964656e636520696e74657276616c206f66> Tj ET BT 51.24 652.686 Td /F3.0 10.5 Tf <746865206d65616e> Tj ET 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 160.47 683.43 m 373.707 683.43 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 160.47 602.3099 m 373.707 602.3099 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 160.47 683.68 m 160.47 602.0599 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 373.707 683.68 m 373.707 602.0599 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 88.5 Tc 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 2.5967 Tw BT 163.47 668.466 Td /F1.0 10.5 Tf <54686520636f6e666964656e636520696e74657276616c206f6620746865206d65616e206973> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 88.5 Tc 0.0 Tc 8.25 Tc 0.0 Tc 4.5 Tc 0.0 Tc 88.5 Tc 0.0 Tc 8.25 Tc 0.0 Tc 4.5 Tc 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 88.5 Tc q 163.47 649.6512 m 251.97 649.6512 l 251.97 663.8688 l 163.47 663.8688 l h W n 0.0 0.0 0.0 scn 0.74599 0.00000 0.00000 0.74599 41.52300 168.62927 cm 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 cm q Q q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 -1.05859 -1.82241 cm q q 2 j 165.2044 652.2751 m 165.2044 664.2751 l 166.845 664.2751 l 166.845 663.8688 l 165.5325 663.8688 l 165.5325 652.6813 l 166.845 652.6813 l 166.845 652.2751 l h 165.2044 652.2751 m f Q Q Q Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 2.79688 -11.18555 cm q q 2 j 170.0325 668.8844 m 170.3333 669.3415 170.6653 669.6852 171.0325 669.9157 c 171.3958 670.154 171.7981 670.2751 172.2356 670.2751 c 172.8802 670.2751 173.3294 670.0719 173.5794 669.6657 c 173.7122 669.4157 173.7825 669.0915 173.7825 668.6969 c 173.7825 668.4469 173.7512 668.1579 173.6887 667.8376 c 173.0481 664.4938 l 174.0169 664.4938 l 173.9075 663.8688 l 171.845 663.8688 l 172.595 667.7126 l 172.6575 668.0133 172.6887 668.2751 172.6887 668.4938 c 172.6887 668.7321 172.6497 668.9235 172.5794 669.0719 c 172.4427 669.3415 172.1575 669.4782 171.72 669.4782 c 171.2395 669.4782 170.8372 669.2946 170.5169 668.9313 c 170.1927 668.5641 169.9622 668.0329 169.8294 667.3376 c 169.1575 663.8688 l 168.0794 663.8688 l 168.845 667.7438 l 168.8958 668.0329 168.9231 668.2907 168.9231 668.5094 c 168.9231 668.7477 168.8841 668.9352 168.8137 669.0719 c 168.677 669.3415 168.3919 669.4782 167.9544 669.4782 c 167.4739 669.4782 167.0716 669.2946 166.7512 668.9313 c 166.427 668.5641 166.1966 668.0329 166.0637 667.3376 c 165.3919 663.8688 l 164.3137 663.8688 l 165.4075 669.4782 l 164.3762 669.4782 l 164.4856 670.1032 l 166.595 670.1032 l 166.3919 668.9938 l 166.6614 669.4079 166.9739 669.7282 167.3294 669.9469 c 167.6809 670.1657 168.052 670.2751 168.4387 670.2751 c 168.927 670.2751 169.3059 670.1501 169.5794 669.9001 c 169.8606 669.6579 170.0091 669.3219 170.0325 668.8844 c h 170.0325 668.8844 m f Q Q Q Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 16.07031 -11.18555 cm q q 2 j 164.7356 668.1032 m 172.2512 668.1032 l 172.2512 667.1501 l 164.7356 667.1501 l h 164.7356 668.1032 m f Q Q Q Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 28.19922 -11.18555 cm q q 2 j 165.0794 669.4782 m 164.1262 669.4782 l 164.2512 670.1032 l 165.2044 670.1032 l 165.5794 672.0251 l 166.6575 672.0251 l 166.2825 670.1032 l 168.3137 670.1032 l 168.1887 669.4782 l 166.1575 669.4782 l 165.3919 665.5094 l 165.3294 665.2047 165.2981 664.9665 165.2981 664.7907 c 165.2981 664.6657 165.3137 664.5719 165.345 664.5094 c 165.4153 664.3532 165.5872 664.2751 165.8606 664.2751 c 166.1419 664.2751 166.3645 664.3571 166.5325 664.5251 c 166.6966 664.6891 166.8177 664.9626 166.8919 665.3376 c 167.7044 665.3376 l 167.5677 664.7633 167.3333 664.3454 167.0012 664.0876 c 166.677 663.8297 166.2278 663.6969 165.6575 663.6969 c 165.0403 663.6969 164.6302 663.8376 164.4231 664.1188 c 164.2981 664.2829 164.2356 664.5251 164.2356 664.8376 c 164.2356 665.0329 164.2591 665.2594 164.3137 665.5094 c h 165.0794 669.4782 m f Q Q Q Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 33.82031 -12.51758 cm q q 2 j 166.9231 664.9626 m 166.6731 664.4938 l 166.5364 664.2633 166.3216 664.0719 166.0325 663.9157 c 165.845 663.8141 165.6028 663.7594 165.3137 663.7594 c 165.302 663.7594 165.2981 663.7594 165.2981 663.7594 c 164.7434 663.7712 164.3372 663.986 164.0794 664.4157 c 163.9114 664.6969 163.8294 665.0329 163.8294 665.4313 c 163.8294 665.6383 163.8489 665.861 163.8919 666.1032 c 164.0247 666.779 164.3059 667.3376 164.7356 667.7751 c 165.1419 668.1891 165.6809 668.4001 166.3606 668.4001 c 166.8372 668.4001 167.177 668.3102 167.3762 668.1344 c 167.5637 667.9665 167.6614 667.7008 167.6731 667.3376 c 167.6731 667.1969 l 167.9231 667.6501 l 168.0794 667.9391 168.3137 668.1579 168.6262 668.3063 c 169.0481 668.3063 l 169.0012 668.0563 l 168.72 667.9704 168.5052 667.7985 168.3606 667.5407 c 167.7044 666.3688 l 167.7512 665.0876 l 167.7591 664.6501 167.8137 664.4079 167.9075 664.3688 c 167.9387 664.3454 167.9778 664.3376 168.0325 664.3376 c 168.1887 664.3376 168.4114 664.4157 168.7044 664.5719 c 168.595 664.0719 l 168.2903 663.9157 168.0208 663.8376 167.7825 663.8376 c 167.5403 663.8376 167.3372 663.9196 167.1731 664.0876 c 167.0169 664.2438 166.9387 664.4352 166.9387 664.6657 c h 166.9075 665.7751 m 166.8762 666.9938 l 166.8645 667.6383 166.6653 667.9665 166.2825 667.9782 c 165.97 667.9782 165.6614 667.8063 165.3606 667.4626 c 165.0989 667.1813 164.9075 666.7204 164.7825 666.0876 c 164.7278 665.8063 164.7044 665.5563 164.7044 665.3376 c 164.7044 665.0758 164.7395 664.861 164.8137 664.6969 c 164.9583 664.3844 165.1966 664.2282 165.5325 664.2282 c 165.8958 664.2282 166.2669 664.5758 166.6419 665.2751 c h 166.9075 665.7751 m f Q Q Q Q Q Q q q 1.00000 0.00000 0.00000 1.00000 0.00000 -11.18480 cm q /Tr1 gs 0.0 0.0 0.0 SCN 1.2 w 0 J 2 j 204.6809 667.6317 m 217.6731 667.6317 l S Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 45.61719 -4.54102 cm q q 2 j 163.7669 665.1501 m 164.2044 665.1501 l 164.1927 665.0641 164.1887 664.986 164.1887 664.9157 c 164.1887 664.4157 164.5325 664.1657 165.22 664.1657 c 165.9075 664.1657 166.2981 664.4157 166.3919 664.9157 c 166.3997 664.9665 166.4075 665.0329 166.4075 665.1188 c 166.4075 665.2126 166.3606 665.3102 166.2669 665.4157 c 166.1731 665.5172 165.927 665.6383 165.5325 665.7751 c 165.0169 665.9626 l 164.6614 666.0758 164.427 666.2126 164.3137 666.3688 c 164.1966 666.5251 164.1419 666.6969 164.1419 666.8844 c 164.1419 666.9547 164.1458 667.0329 164.1575 667.1188 c 164.2395 667.5133 164.4466 667.8258 164.7825 668.0563 c 165.1262 668.2946 165.5403 668.4157 166.0325 668.4157 c 166.5325 668.4157 167.0364 668.2946 167.5481 668.0563 c 167.3606 667.0876 l 166.9231 667.0876 l 166.9309 667.1501 166.9387 667.2047 166.9387 667.2594 c 166.9387 667.4665 166.8645 667.6383 166.72 667.7751 c 166.5833 667.9196 166.3528 667.9938 166.0325 667.9938 c 165.3762 667.9938 165.0052 667.7672 164.9231 667.3219 c 164.9114 667.2672 164.9075 667.2008 164.9075 667.1188 c 164.9075 667.0329 164.9466 666.9391 165.0325 666.8376 c 165.1262 666.7438 165.3489 666.6383 165.7044 666.5251 c 166.2669 666.3376 l 166.6614 666.2126 166.9309 666.0485 167.0794 665.8532 c 167.1809 665.7047 167.2356 665.5641 167.2356 665.4313 c 167.2356 664.8454 167.0012 664.404 166.5325 664.1032 c 166.1653 663.8649 165.7044 663.7438 165.1419 663.7438 c 164.5872 663.7438 164.0637 663.8688 163.5637 664.1188 c h 163.7669 665.1501 m f Q Q Q Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 40.27344 -9.67807 cm q q 2 j 167.0794 654.4938 m 165.1575 658.7438 l 164.5637 658.3063 l 164.4075 658.4469 l 165.6262 659.3376 l 167.4231 655.3844 l 171.845 664.1188 l 171.8645 664.1696 171.9114 664.1969 171.9856 664.1969 c 172.0364 664.1969 172.0794 664.1813 172.1106 664.1501 c 172.1419 664.1188 172.1575 664.0758 172.1575 664.0251 c 172.1575 664.0016 172.1497 663.986 172.1419 663.9782 c 167.3919 654.5719 l 167.3684 654.5212 167.3294 654.4938 167.2669 654.4938 c h 167.0794 654.4938 m f Q Q Q Q Q Q q q 1.00000 0.00000 0.00000 1.00000 0.00000 -11.18480 cm q /Tr1 gs 0.0 0.0 0.0 SCN 0.426 w 1 J 2 j 212.22 665.4833 m 217.4622 665.4833 l S Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 48.83984 -16.69336 cm q q 2 j 164.0637 663.8688 m 164.845 667.8376 l 164.1106 667.8376 l 164.1887 668.2907 l 165.6887 668.2907 l 165.5481 667.5094 l 165.7434 667.7985 165.97 668.0251 166.22 668.1813 c 166.4778 668.3376 166.7552 668.4157 167.0481 668.4157 c 167.5364 668.4157 167.8684 668.2751 168.0481 667.9938 c 168.1497 667.8141 168.2044 667.5876 168.2044 667.3063 c 168.2044 667.1266 168.1809 666.9196 168.1419 666.6813 c 167.6731 664.3063 l 168.3606 664.3063 l 168.2825 663.8688 l 166.8294 663.8688 l 167.3294 666.4313 l 167.3802 666.7204 167.4075 666.9626 167.4075 667.1501 c 167.4075 667.3141 167.3841 667.4508 167.345 667.5563 c 167.2512 667.7516 167.0364 667.8532 166.7044 667.8532 c 166.3372 667.8532 166.0364 667.7204 165.7981 667.4626 c 165.5677 667.2008 165.4075 666.8258 165.3137 666.3376 c 164.8294 663.8688 l h 164.0637 663.8688 m f Q Q Q Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 55.76953 -11.18555 cm q q 2 j 163.9075 662.6969 m 164.2708 662.9704 164.5364 663.2868 164.7044 663.6501 c 164.8802 664.0133 164.97 664.4547 164.97 664.9782 c 164.97 665.1969 l 166.1262 665.1969 l 166.095 664.529 165.9387 663.9547 165.6575 663.4782 c 165.3762 663.0016 164.9466 662.5837 164.3762 662.2282 c h 163.9075 662.6969 m f Q Q Q Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 62.91406 -11.18555 cm q q 2 j 170.0325 668.8844 m 170.3333 669.3415 170.6653 669.6852 171.0325 669.9157 c 171.3958 670.154 171.7981 670.2751 172.2356 670.2751 c 172.8802 670.2751 173.3294 670.0719 173.5794 669.6657 c 173.7122 669.4157 173.7825 669.0915 173.7825 668.6969 c 173.7825 668.4469 173.7512 668.1579 173.6887 667.8376 c 173.0481 664.4938 l 174.0169 664.4938 l 173.9075 663.8688 l 171.845 663.8688 l 172.595 667.7126 l 172.6575 668.0133 172.6887 668.2751 172.6887 668.4938 c 172.6887 668.7321 172.6497 668.9235 172.5794 669.0719 c 172.4427 669.3415 172.1575 669.4782 171.72 669.4782 c 171.2395 669.4782 170.8372 669.2946 170.5169 668.9313 c 170.1927 668.5641 169.9622 668.0329 169.8294 667.3376 c 169.1575 663.8688 l 168.0794 663.8688 l 168.845 667.7438 l 168.8958 668.0329 168.9231 668.2907 168.9231 668.5094 c 168.9231 668.7477 168.8841 668.9352 168.8137 669.0719 c 168.677 669.3415 168.3919 669.4782 167.9544 669.4782 c 167.4739 669.4782 167.0716 669.2946 166.7512 668.9313 c 166.427 668.5641 166.1966 668.0329 166.0637 667.3376 c 165.3919 663.8688 l 164.3137 663.8688 l 165.4075 669.4782 l 164.3762 669.4782 l 164.4856 670.1032 l 166.595 670.1032 l 166.3919 668.9938 l 166.6614 669.4079 166.9739 669.7282 167.3294 669.9469 c 167.6809 670.1657 168.052 670.2751 168.4387 670.2751 c 168.927 670.2751 169.3059 670.1501 169.5794 669.9001 c 169.8606 669.6579 170.0091 669.3219 170.0325 668.8844 c h 170.0325 668.8844 m f Q Q Q Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 76.18750 -11.18164 cm q q 2 j 168.97 671.4001 m 168.97 668.1032 l 172.2512 668.1032 l 172.2512 667.1501 l 168.97 667.1501 l 168.97 663.8688 l 168.0325 663.8688 l 168.0325 667.1501 l 164.7356 667.1501 l 164.7356 668.1032 l 168.0325 668.1032 l 168.0325 671.4001 l h 168.97 671.4001 m f Q Q Q Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 88.31641 -11.18555 cm q q 2 j 165.0794 669.4782 m 164.1262 669.4782 l 164.2512 670.1032 l 165.2044 670.1032 l 165.5794 672.0251 l 166.6575 672.0251 l 166.2825 670.1032 l 168.3137 670.1032 l 168.1887 669.4782 l 166.1575 669.4782 l 165.3919 665.5094 l 165.3294 665.2047 165.2981 664.9665 165.2981 664.7907 c 165.2981 664.6657 165.3137 664.5719 165.345 664.5094 c 165.4153 664.3532 165.5872 664.2751 165.8606 664.2751 c 166.1419 664.2751 166.3645 664.3571 166.5325 664.5251 c 166.6966 664.6891 166.8177 664.9626 166.8919 665.3376 c 167.7044 665.3376 l 167.5677 664.7633 167.3333 664.3454 167.0012 664.0876 c 166.677 663.8297 166.2278 663.6969 165.6575 663.6969 c 165.0403 663.6969 164.6302 663.8376 164.4231 664.1188 c 164.2981 664.2829 164.2356 664.5251 164.2356 664.8376 c 164.2356 665.0329 164.2591 665.2594 164.3137 665.5094 c h 165.0794 669.4782 m f Q Q Q Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 93.93750 -12.51758 cm q q 2 j 166.9231 664.9626 m 166.6731 664.4938 l 166.5364 664.2633 166.3216 664.0719 166.0325 663.9157 c 165.845 663.8141 165.6028 663.7594 165.3137 663.7594 c 165.302 663.7594 165.2981 663.7594 165.2981 663.7594 c 164.7434 663.7712 164.3372 663.986 164.0794 664.4157 c 163.9114 664.6969 163.8294 665.0329 163.8294 665.4313 c 163.8294 665.6383 163.8489 665.861 163.8919 666.1032 c 164.0247 666.779 164.3059 667.3376 164.7356 667.7751 c 165.1419 668.1891 165.6809 668.4001 166.3606 668.4001 c 166.8372 668.4001 167.177 668.3102 167.3762 668.1344 c 167.5637 667.9665 167.6614 667.7008 167.6731 667.3376 c 167.6731 667.1969 l 167.9231 667.6501 l 168.0794 667.9391 168.3137 668.1579 168.6262 668.3063 c 169.0481 668.3063 l 169.0012 668.0563 l 168.72 667.9704 168.5052 667.7985 168.3606 667.5407 c 167.7044 666.3688 l 167.7512 665.0876 l 167.7591 664.6501 167.8137 664.4079 167.9075 664.3688 c 167.9387 664.3454 167.9778 664.3376 168.0325 664.3376 c 168.1887 664.3376 168.4114 664.4157 168.7044 664.5719 c 168.595 664.0719 l 168.2903 663.9157 168.0208 663.8376 167.7825 663.8376 c 167.5403 663.8376 167.3372 663.9196 167.1731 664.0876 c 167.0169 664.2438 166.9387 664.4352 166.9387 664.6657 c h 166.9075 665.7751 m 166.8762 666.9938 l 166.8645 667.6383 166.6653 667.9665 166.2825 667.9782 c 165.97 667.9782 165.6614 667.8063 165.3606 667.4626 c 165.0989 667.1813 164.9075 666.7204 164.7825 666.0876 c 164.7278 665.8063 164.7044 665.5563 164.7044 665.3376 c 164.7044 665.0758 164.7395 664.861 164.8137 664.6969 c 164.9583 664.3844 165.1966 664.2282 165.5325 664.2282 c 165.8958 664.2282 166.2669 664.5758 166.6419 665.2751 c h 166.9075 665.7751 m f Q Q Q Q Q Q q q 1.00000 0.00000 0.00000 1.00000 0.00000 -11.18480 cm q /Tr1 gs 0.0 0.0 0.0 SCN 1.2 w 0 J 2 j 264.7981 667.6317 m 277.7903 667.6317 l S Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 105.73438 -4.54102 cm q q 2 j 163.7669 665.1501 m 164.2044 665.1501 l 164.1927 665.0641 164.1887 664.986 164.1887 664.9157 c 164.1887 664.4157 164.5325 664.1657 165.22 664.1657 c 165.9075 664.1657 166.2981 664.4157 166.3919 664.9157 c 166.3997 664.9665 166.4075 665.0329 166.4075 665.1188 c 166.4075 665.2126 166.3606 665.3102 166.2669 665.4157 c 166.1731 665.5172 165.927 665.6383 165.5325 665.7751 c 165.0169 665.9626 l 164.6614 666.0758 164.427 666.2126 164.3137 666.3688 c 164.1966 666.5251 164.1419 666.6969 164.1419 666.8844 c 164.1419 666.9547 164.1458 667.0329 164.1575 667.1188 c 164.2395 667.5133 164.4466 667.8258 164.7825 668.0563 c 165.1262 668.2946 165.5403 668.4157 166.0325 668.4157 c 166.5325 668.4157 167.0364 668.2946 167.5481 668.0563 c 167.3606 667.0876 l 166.9231 667.0876 l 166.9309 667.1501 166.9387 667.2047 166.9387 667.2594 c 166.9387 667.4665 166.8645 667.6383 166.72 667.7751 c 166.5833 667.9196 166.3528 667.9938 166.0325 667.9938 c 165.3762 667.9938 165.0052 667.7672 164.9231 667.3219 c 164.9114 667.2672 164.9075 667.2008 164.9075 667.1188 c 164.9075 667.0329 164.9466 666.9391 165.0325 666.8376 c 165.1262 666.7438 165.3489 666.6383 165.7044 666.5251 c 166.2669 666.3376 l 166.6614 666.2126 166.9309 666.0485 167.0794 665.8532 c 167.1809 665.7047 167.2356 665.5641 167.2356 665.4313 c 167.2356 664.8454 167.0012 664.404 166.5325 664.1032 c 166.1653 663.8649 165.7044 663.7438 165.1419 663.7438 c 164.5872 663.7438 164.0637 663.8688 163.5637 664.1188 c h 163.7669 665.1501 m f Q Q Q Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 100.39062 -9.67807 cm q q 2 j 167.0794 654.4938 m 165.1575 658.7438 l 164.5637 658.3063 l 164.4075 658.4469 l 165.6262 659.3376 l 167.4231 655.3844 l 171.845 664.1188 l 171.8645 664.1696 171.9114 664.1969 171.9856 664.1969 c 172.0364 664.1969 172.0794 664.1813 172.1106 664.1501 c 172.1419 664.1188 172.1575 664.0758 172.1575 664.0251 c 172.1575 664.0016 172.1497 663.986 172.1419 663.9782 c 167.3919 654.5719 l 167.3684 654.5212 167.3294 654.4938 167.2669 654.4938 c h 167.0794 654.4938 m f Q Q Q Q Q Q q q 1.00000 0.00000 0.00000 1.00000 0.00000 -11.18480 cm q /Tr1 gs 0.0 0.0 0.0 SCN 0.426 w 1 J 2 j 272.3372 665.4833 m 277.5794 665.4833 l S Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 108.95703 -16.69336 cm q q 2 j 164.0637 663.8688 m 164.845 667.8376 l 164.1106 667.8376 l 164.1887 668.2907 l 165.6887 668.2907 l 165.5481 667.5094 l 165.7434 667.7985 165.97 668.0251 166.22 668.1813 c 166.4778 668.3376 166.7552 668.4157 167.0481 668.4157 c 167.5364 668.4157 167.8684 668.2751 168.0481 667.9938 c 168.1497 667.8141 168.2044 667.5876 168.2044 667.3063 c 168.2044 667.1266 168.1809 666.9196 168.1419 666.6813 c 167.6731 664.3063 l 168.3606 664.3063 l 168.2825 663.8688 l 166.8294 663.8688 l 167.3294 666.4313 l 167.3802 666.7204 167.4075 666.9626 167.4075 667.1501 c 167.4075 667.3141 167.3841 667.4508 167.345 667.5563 c 167.2512 667.7516 167.0364 667.8532 166.7044 667.8532 c 166.3372 667.8532 166.0364 667.7204 165.7981 667.4626 c 165.5677 667.2008 165.4075 666.8258 165.3137 666.3376 c 164.8294 663.8688 l h 164.0637 663.8688 m f Q Q Q Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 116.13281 -1.82241 cm q q 2 j 163.6575 652.2751 m 163.6575 652.6813 l 164.9544 652.6813 l 164.9544 663.8688 l 163.6575 663.8688 l 163.6575 664.2751 l 165.2981 664.2751 l 165.2981 652.2751 l h 163.6575 652.2751 m f Q Q Q Q Q Q Q Q 0.0472 Tw BT 163.47 652.686 Td ET 0.0 Tw 0.0 Tc 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0472 Tw BT 251.97 652.686 Td /F1.0 10.5 Tf <2c20776865726520> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 8.25 Tc q 292.0065 654.3685 m 300.2565 654.3685 l 300.2565 659.1515 l 292.0065 659.1515 l h W n 0.0 0.0 0.0 scn 0.74752 0.00000 0.00000 0.74752 73.72507 166.42092 cm 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 cm q Q q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 -0.17578 -6.39648 cm q q 2 j 298.569 664.1671 m 298.8698 664.6241 299.2018 664.9679 299.569 665.1984 c 299.9323 665.4366 300.3346 665.5577 300.7721 665.5577 c 301.4167 665.5577 301.8659 665.3546 302.1159 664.9484 c 302.2487 664.6984 302.319 664.3741 302.319 663.9796 c 302.319 663.7296 302.2877 663.4406 302.2252 663.1202 c 301.5846 659.7765 l 302.5534 659.7765 l 302.444 659.1515 l 300.3815 659.1515 l 301.1315 662.9952 l 301.194 663.296 301.2252 663.5577 301.2252 663.7765 c 301.2252 664.0148 301.1862 664.2062 301.1159 664.3546 c 300.9792 664.6241 300.694 664.7609 300.2565 664.7609 c 299.776 664.7609 299.3737 664.5773 299.0534 664.214 c 298.7292 663.8468 298.4987 663.3156 298.3659 662.6202 c 297.694 659.1515 l 296.6159 659.1515 l 297.3815 663.0265 l 297.4323 663.3156 297.4596 663.5734 297.4596 663.7921 c 297.4596 664.0304 297.4206 664.2179 297.3502 664.3546 c 297.2135 664.6241 296.9284 664.7609 296.4909 664.7609 c 296.0104 664.7609 295.6081 664.5773 295.2877 664.214 c 294.9635 663.8468 294.7331 663.3156 294.6002 662.6202 c 293.9284 659.1515 l 292.8502 659.1515 l 293.944 664.7609 l 292.9127 664.7609 l 293.0221 665.3859 l 295.1315 665.3859 l 294.9284 664.2765 l 295.1979 664.6906 295.5104 665.0109 295.8659 665.2296 c 296.2174 665.4484 296.5885 665.5577 296.9752 665.5577 c 297.4635 665.5577 297.8424 665.4327 298.1159 665.1827 c 298.3971 664.9406 298.5456 664.6046 298.569 664.1671 c h 298.569 664.1671 m f Q Q Q Q Q Q Q Q 0.0472 Tw BT 292.0065 652.686 Td ET 0.0 Tw 0.0 Tc 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0472 Tw BT 300.2565 652.686 Td /F1.0 10.5 Tf <20697320746865206d65616e2c20> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 4.5 Tc q 366.207 654.6325 m 370.707 654.6325 l 370.707 658.8875 l 366.207 658.8875 l h W n 0.0 0.0 0.0 scn 0.64780 0.00000 0.00000 0.64780 128.97894 232.06168 cm 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 cm q Q q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 0.53125 -6.39648 cm q q 2 j 366.6289 660.6844 m 367.2382 660.6844 l 367.2265 660.5672 367.2226 660.4656 367.2226 660.3719 c 367.2226 659.6531 367.707 659.2937 368.6757 659.2937 c 369.6445 659.2937 370.1953 659.6531 370.332 660.3719 c 370.3398 660.4344 370.3476 660.5281 370.3476 660.6531 c 370.3476 660.7781 370.2773 660.9109 370.1445 661.0594 c 370.0195 661.2039 369.6757 661.3719 369.1132 661.5594 c 368.3789 661.825 l 367.8789 662.0008 367.5429 662.2 367.3789 662.4187 c 367.2226 662.6375 367.1445 662.8758 367.1445 663.1375 c 367.1445 663.2312 367.1523 663.3406 367.1757 663.4656 c 367.289 664.0281 367.5859 664.4695 368.0664 664.7937 c 368.5429 665.1258 369.1328 665.2937 369.832 665.2937 c 370.5195 665.2937 371.2265 665.1219 371.957 664.7781 c 371.6914 663.4187 l 371.0664 663.4187 l 371.0859 663.5125 371.0976 663.5945 371.0976 663.6687 c 371.0976 663.9578 370.9961 664.2039 370.8007 664.4031 c 370.6015 664.5984 370.2734 664.7 369.8164 664.7 c 368.8984 664.7 368.3789 664.3797 368.2539 663.7469 c 368.2304 663.6844 368.2226 663.5906 368.2226 663.4656 c 368.2226 663.3484 368.2851 663.2195 368.4101 663.075 c 368.5429 662.9383 368.8554 662.7937 369.3476 662.6375 c 370.1601 662.3719 l 370.7109 662.1844 371.0898 661.9539 371.3007 661.6844 c 371.4453 661.4851 371.5195 661.2859 371.5195 661.0906 c 371.5195 660.2781 371.1914 659.657 370.5351 659.2312 c 370.0117 658.8875 369.3554 658.7156 368.5664 658.7156 c 367.7851 658.7156 367.0429 658.8875 366.3476 659.2312 c h 366.6289 660.6844 m f Q Q Q Q Q Q Q Q 0.0472 Tw BT 366.207 652.686 Td ET 0.0 Tw 0.0 Tc 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 10.665 Tw BT 163.47 636.906 Td /F1.0 10.5 Tf <69732074686520657374696d617465642073616d706c65207374616e64617264> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 163.47 621.126 Td /F1.0 10.5 Tf <646576696174696f6e2c20616e6420736f206f6e2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 373.707 683.43 m 422.34 683.43 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 373.707 602.3099 m 422.34 602.3099 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 373.707 683.68 m 373.707 602.0599 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 422.34 683.68 m 422.34 602.0599 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 376.707 668.466 Td /F1.0 10.5 Tf <32> Tj ET 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 11 0 R /F3.0 12 0 R /F1.0 13 0 R >> /ExtGState << /Tr1 14 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /150bae+NotoSerif-Bold /Subtype /TrueType /FontDescriptor 19 0 R /FirstChar 32 /LastChar 255 /Widths 21 0 R /ToUnicode 20 0 R >> endobj 12 0 obj << /Type /Font /BaseFont /f59e4f+NotoSerif-Italic /Subtype /TrueType /FontDescriptor 23 0 R /FirstChar 32 /LastChar 255 /Widths 25 0 R /ToUnicode 24 0 R >> endobj 13 0 obj << /Type /Font /BaseFont /b8a464+NotoSerif /Subtype /TrueType /FontDescriptor 27 0 R /FirstChar 32 /LastChar 255 /Widths 29 0 R /ToUnicode 28 0 R >> endobj 14 0 obj << /Type /ExtGState /CA 1 /ca 1 >> endobj 15 0 obj << /Type /Outlines /Count 1 /First 16 0 R /Last 16 0 R >> endobj 16 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 15 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 17 0 obj << /Nums [0 << /P (1) >>] >> endobj 18 0 obj << /Length1 8920 /Length 5376 /Filter [/FlateDecode] >> stream xZ P[ו'!B`'#@d0G]W $!, 'NiZ&v׭S'Lͦ;vwfY'&i:v͌NOiϽz`M'|s=ܫ Tdx=5spމ_�cn3^G(d|>ׁ 3#?+ #x iw'ثuG#A(̯ yg' Bj!vlbf2u>*DαԷb`Fd}H9/a NA9JP$B-yMJ*JSχAIjӵ^cm7/K..nqփl jP>D'S kҪMдkMLFc牞{aEoy5wa4i8|Gä%�֣Bb䜠6Unbӫ Wk+9uL d:e_KGr" 8{s5Ux>Ĝ2g OBYBn l 8]4Šo k3T&SV2:~(ڗY\aMQJ!�Pd Tܵ򲪜@@ ?E<cq: |KxěL)Y[9%L�9͹UɰN|9=yP*j!9Q8!]KlUWmbLy+ P``jZp5xO5u4ۛ*CoN定E]FAe2;Zy^ބ+B鴜6 1_6o*k:mj`dm+u6A4�]cz%**j0Aw`G/<S=\u)UÁwϜŁzmC^RW|y_雅4SNqk)kGL%W!#jEs1{e**6x9$rpڬ-&Ϸw<=T,5%hF@JU1l3Gog7׵[6Wf%hZZm=:Lu|q39.'hvXҘi\#^(n^X{j[rqsV[mFm}hp3['O $fye}M#뼼%Uvuvul�Qcl)幹fŨ2rsLl\]:{iVvNHOꊋ6ddl[\"eLVhjyXXrײL xӫVbMҌ̢!NhegyMRw|Œ|}[yWG UhmkEF3ϴMvV[{uUd'5X6$ l#o/ZX^gQch&صI|;(}G{J#J%ؗyӪ-=]|1NÊ1RViq`)^wb-^;Gfg~ԙ&ہ*Q]NXPg\&\YS-%FJ-Д(LTm8-2ؠ,WgR̅I<XRG&uhI[wOxpۨ/WOkw<3I9@ߵ3Urt1o/ ɅY|=U*oֲ7tĬ UR8uQu^[ )% ]SڜDZKp?ZWrGڭY XVK 7i-]}3#%mNm^ejCTSesAyH]l)6wY(Xkn%oU>oUɺPĕ5!.TWSkUGJlֶ:ӻt/%,.<"#-IUAcK4IӃ`5dnmC\ច̽^cTEr'<}/~s%@;'y BTRጨ-jf\MKpNz0M K7[OE2yD}pYh+.Frn ʋhd8>@LlξNģh,bq?}XfKw3Ȃ:P'40AT2HgaT8;cBߔpq;wڋ΢tIYs( J8pYe(HeiN@I&Ys�%UqT)DT4Ix]“v昄'|?%<mbSV~c%| jb$<9},h} OEU gۃ3{CI_,;)/o7SS  ް71vD3h/ !?D>tW$V A8F�T+ S S t큷z oDP ^jm-8;<[4OOzdJnie/x'`$zhwdNPx |A8Cx 1WGRzZy7 =ހ;NN*~97pCԼtU! uY\Ĩ/ҝ-ްrwm)%I&΍w( iÏWzJ#�:ܠ,GċX6?"q?4wa0 '#84ʌ8\>1[4@0d 2RFՇ#w~KYXАʣ#8}˔;HN{!>v[7㝎 [YaGBYi|[f/GmC]}Ch`kj^m \m2wB7!{W'{zr= 0Yi?# IY ΆY[(&}&ꠡL6NB6weMA?4=H{Ta@G8}4rV♇zWɿN7}k;49Zv(PCߵCoy޽ېCP at| }7 ^ţݑac#�(&gϊ+1 ޖ03NOh"Ir',=⹘h,3k!'ҭqr sWɽRf%qg"aC?e&}=waX 5P'qz'uo_Nk%+k>#{�()dB j oȋ+7f�À-m]&Ȝcx_ +c8ڿ4o)Ħ-Yb.5멱4(pJxcch>$D0f-+�Oxʇ|9`2A11OScxXSlY 8e,OQ,xG3Uÿ0îG7?Xx1r՗R:lM9. s1>6͗\_:zI%/^zU-VzK=.?\99̓@>|ʓlک+Dt7rIu?}I|_93-Ǐ8+ǙyI9{z=nm,?W&L^d',7[x1{=z֚2e�Vclh(?v c4r 4jSp:NV҆(#iGO]McZҮ]OchׯïWc. u n1v6lE4ucǝߘGmb!rݢ3!]P6g8胁` 8(;P^GHxEb:!Ȭ.<;K)xe#d:C-=ݛm]VK{[eSsScC}]mMuEѠ/+).* hUʴԔDE\Ʊ2" ]]z n�ܫ�JvwQ1vI3HN!iKW$oBM2*8N^[(Q&fl{|sV-$' $}ZHJ2(DY%0%kB̊lVFulb`CbUPJ4ҭvȺak{TL׉E,}ٰrX&Xh\}$eJNHѵ Bv@x:c5?&Jana͚+D;`҈ b;lsLas?-NMw.kA S,e3F?p\@f)2.2H0ٿ<2%@69+y+[?BP74Za.#7:,^<~^AX` P)dʜ27G0P VǗ x}إ~6[ʑu3.HB'Q%䓸et4MT5.V [Hm|Y/#S샅*^]BN Qn,9<bK]9;4ZNuh~�iw"> [u+ޡFphj<EEw0 J� &x hJHEIY5^7RHrM^{ײ69aAO{F}üdf(HB85�c@ HܳITy6)4?R^nV „0̐`:_a-s >G BC7nPf4 6Ϝ`w4ih 2P7jӗ׶  f|о!vWsa9^{ A H0D 0 *yٌ~:Q1bh2ǔ#d)1{H~r\NRH ,baAش1IB[Oj/{`Ni>֓?P&]DYhVvQL6Bko+*N_=/ sSϟ],v-.ZDqh'µwaBw32י_2WI,_Gvٌ2c> 6JD"Eq>eT\k?| $T'X 0O1S"6*g5)f^`^펍~%qB U< endstream endobj 19 0 obj << /Type /FontDescriptor /FontName /150bae+NotoSerif-Bold /FontFile2 18 0 R /FontBBox [-212 -250 1306 1058] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 20 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 21 0 obj [259 600 600 559 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 767 600 600 600 600 600 600 600 600 952 788 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 599 600 526 648 570 600 600 600 352 600 600 600 985 666 612 645 600 522 487 404 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600] endobj 22 0 obj << /Length1 7984 /Length 4729 /Filter [/FlateDecode] >> stream xY{TSW9y  e GPZ+H@y%@$>Vg˶kjֵzNEgM[]ۇ}N;Zv:%9 mg{{oH��Ip(_�$o'd�h<}ng[9g?xR' mxN$_ea5Q#1ҴZRUe�THwyH89e#HķŹsw~v[a@Z!@oIHUwo o>DljG,Rk7 >!=1ARN/ZdNJN%'Ew<؃ꗾ>eG/KկL$2Brx['"S*בc97"ϓK q2hB=^K{/r<r/zLfAJ)7ɞQY.je34RnŢ|)W`tjp1iŭd5ϩ]֑pޞsIEة2|Xh,SC…H/&Wϫؤۋd2"G'$n/g/%ߺS$h&9C.MgqY\T vtZݺT2W64H:8JUɝaF2LLݑ".yP?n><-g ?YCыh�eVӉ;2WIUB*Qbs$ŗg+ղ =x*~CkfG?/մ-֡lo*/K'̯XĽ.Պukɻ~9dw+vO Oü<H#\gMWocv(rzWmo^Z53`)Zԥ2B^. "Jy<jmqvzFim̷Eg[)ٜl݇VZTr%Ef_ly ޞݩMZU�9ҢInJwS9܊ >Rx8e=g^-6zIr oK%g[$q8U<޽K"'`"ި| ~_)j˹49o<>p$@:ˆ/ |;r$rۤN[Vrd=9׫g_ߵȧ1[h82g qWfݺlj_SOG#Ê{`דL.̏of&//j,K+זkX)>dkV|3-3Wu]^Nhl% n\RKUoLS+p;8$S)[:Rnnͷ G>hT|m?ܿ<VHgz&5?F*O֐_$6apBPބU^48O#TCm@Uaˈ_]Fؑk kc}.IO ?SP=Q3XDi`'6C{@_]X- =�BZPUyEljZ#јqԹw3o=؏w(H=s39둏2J 4*hfhVЎI$ .'G\� <ޅF\kq @UK)WC&(fJ[*<Z0 dLBO\|YXجFxV [<V979:OVO" qOa0K_"틵Ѐe KJM-bZG[YWnW1Ԃ0^@C]R,)я^L87RA7c>['F9ڍ6bFOo4 =ۍRCDi^^CCԷ"z]UW6G (%ŋ |sb6@⅕y3u(:VSԽI‹bl uЀwE=3iz/NDOpb~-#sw؍ÍGmng-FyY6ot0nB]1!Z2ܯi% F g5EPL(Be%%6m*-C%gkE, 6O1 btE Feb?LޯC.{dߠuAL"p|qA=@C7ZVѦc^c(דZ x1F9>[mk.ZnwTV7,&+mjMFԈV7K�uoo Pov$pw{{ݴt@7 sސ3^Fp$\BL-Ɯ(]k--$2+iߺX bW7*YuoUS$"rgߣ!uV!EL'/sq+l6N3qlx"6kt5nҭX6"mۄŃ Q#aXoxvS<-vV1 pj3zf qя(f;+E$t}qX:6wX,\~s[؎tmX>9 aP)Ko ,z%MU7lA<bu^g1YyHŒ խK^5$++jb{-9?v->Ro>ճA$3d:t%F,_W i"<awaVH죄*05G/F=Q27JtQ"@Dc$y#H1OPh 5`IH Jƒd*ȓ(+ zM#ȩZ}9HW*,+] }_(y{;T@4\)~1!`A$'=xTX4$ 6eH}fZ4[fkp d4Adv.KԓT,h=<ծT8mM,2m6d?c?glW7ۮJ^'u+V$ݞQnO!v]y] 藕`*\P|&rX ^ˠF?o j2Jج hkmS&;<++ -f ;#<Ҿc. Yrم kldžnHԴPH�WA�  X c`O0 E_,Y X1S`jwm֖ի-u+&cmMjo[tI҅%E͕rs3)I JD7$s';eUTWWhɉs)M6Oi'gS9 s!i$:RD7%-l2JT۫y[ω$$rrp5ezT&$7z¦N#IjE0l0ߴl7$6,晜.a2fZ钑wA-)kje-ILu#AWgAKr98dщcâ)~PN)HFygnP2&ubSYhk@sK"N4{aDΰs4K:)<QYvY!c͘i-w:d!L=NDJY>}݀@wOsrãBBx=:vYd=YF˪<K2.̧,N~-+G Х%휗V|t <�3 81Z䧤ҥarLSDP+ކKڈ Sida pvbF>D zf"L-CaVne\b2)idI-P=?f-EndW#gwfpPGVlh�Kw;K4Ђ8]QjmX(`TyHL99./:,uP36Xڼ8|upTYNxtsjr>FOfT[7.MHS[Ӟ{ 8"9nKÝ�1p2<uHn]P`1p/+>WbeBMr r{`ΔY+YwCek [d`)lXW?[ϒىW4_e[a KVr΍;֬\@l5EՌHdgˈv8�N@Κ8NP22IjE"g7�l*po8t 1L7 bc(ezǸgK'r2#Gd"@H+FI%w 0U1\p-f Ewu&"sҡQ̀AK7=^_/"ȭI8kN;Kـ8�;b�|kns~_G&0bC(}?(shH6Y\&ො!JqRdz+`~=bj@;  OVklꗾH!ɢwȷb<oӼv6ƢiJ54뵷i/+>M'5Ĥ@P!CJtCrDL @]N endstream endobj 23 0 obj << /Type /FontDescriptor /FontName /f59e4f+NotoSerif-Italic /FontFile2 22 0 R /FontBBox [-254 -250 1238 1047] /Flags 70 /StemV 0 /ItalicAngle -12.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 24 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 25 0 obj [259 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 626 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 579 600 486 579 493 317 600 599 304 600 600 304 895 599 574 600 600 467 600 368 600 538 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600] endobj 26 0 obj << /Length1 9516 /Length 5883 /Filter [/FlateDecode] >> stream xZ}p[Օ?=IXXO~?b[3%ۖ,%i"ٖm%%$9`RPBBMl`R`.N]N2SJI Cð^='vw={ι1�H (y_m_�-3sKӓ?~s��$?;>m% 彳~' "}Er]( G;,P0tЂo_Cԗs$棺)nu BakzL(ӡw��&Eh�~1�R/Ȇ:</( A8_jZ&dj!+g8F(�3 FCaY5s <iτC%9AԐ`Ԧq ƤQEGef7;+nչZ]6LԚSiJ둵ɝ+ PXhhE.,fe<YQZ+ %uYGcR(P[aG+TZʣY*Buz^2 Ǟ!Ԯ'k$h/Z=X1cjUkP,v{'vgc}iøcl%E_])| #{ȡH)HM͠v1Ӑ)r½l-4e.l1^l)T$HRܙZI.Wb~}Mcgܴ{_ke}<-$!dK.^_qVlIƋ]ev;_]4w>sZAU*{!Chc/:-樂2ҞmϨ⮽)C󈥱ǜm;6~4TUdطKP͈ܲvEU~/ 48s_u8zdںwVӴ^WO_LV]޷z{vnlڌsgOv;EΫxCJʓ3\ĭȩ..1Z>n"{:[m?z&osv s NbeCta%ХD9so6YKwTny}v%IM"S[5[ۈ^':|8[4Wnoc M.?]aK֊^~qo\}ͻ~ii_[U<}gs)zSwʠ ٺյ7 ڒeUItbKWwglhVŘ)h*J'.+Ih7>oUVq_-]d/M-V=È{ƍvЪT u;caqVPk4d+iZr7bl?[j~vR0Z[ b=}mh?OL;"ژ 6[(oZtJYV_yf}kv}f~{o-IZd)HI)35B9Ly3{:y<Sƅ~V\9Հg n&|Tmޜ8Nlܞ('m$iٱ%3C5 |eS=d 䙆2�U-vm�~ilp;`_uFUW$tzx9htBS~џ1vm\UhX^I ؐ_JZ&hVΞ\IB?;칎o=~~ypHcc9:.U,|Cs Mvg!rĖ96@1Z1oo;)[q/FچMG9|Z< C =W[O̲m+%RR,ԗ},R1o=kUFnfdv<s#{ ܩu6$i춇L]5J}5ltM-@PW-ľw-bnW셶 Vt215<ۢ+ܒ]lk(i\+;WS.l58ו u:tUzAl:溋 ;m3܊梒Ke~auRd2͒FL(,9UH^U;5z r>VvRs#bq`@`q=衹2֐%D,W3c1uR%"ċjZ[[e6}کD=`{>3^J+(?r,bN쎢޼!#9ՔQkqRZ> ? oMq+MK%2dRtZ*T?N9ټ =Sc|23ME>յ&IٙJ¾-s'$kbfW<vٸ.Wю KNY{//18b7u-3q7< ?#2G^\w{>3«xJqUY*)Ӝnuhb fe;a�nQ.Z0r']IhPA1GǿvQ˽ %'A "gb}O6}(+!9<hIv#Y#P<@?gՈğa|J).Qu`'X!)A}s @6[eZ77+x! ] 00j9l#if}(qIpB z!demd\I$G%WB q%6Wxz'丌!q5l'Dri2\'x6O=OV׾ *Of~PSI/\S?4K4I -3Qaj I67'Ц0ÇS&ABa ~F;ubk9 0 &!2ϑk"Lӏa9`4(Ái@=Q ?mz?8 a3 }.K!4y7X* ZQӴVma3oK?SŖH T,u N Q7WSWSN1=Lc "h7 鍄o)E>AĂ>9 7#ah;su%]J>>a60%ҩ(*5jKeVD!pv 03 7cjѸ`FCfja&Ԍ,Sne?&TrODUf,O˜Htq*7~]E\F,GGp!*~/sIB\\_Cxx zTV+ D"HmT-FG+A06260G{{p�m#v+� Ba$"B`>40t0H?L sE ""t!Wp/!xRp1,,&B,Մ19+oF}m_q׶>'Q^`Ɉ"֧ضQ5 s&}4T rPŢb{FYҙ@}q>Vbre;x3JԎq ;g0`9r78ADL탈وnVu>籀t7CuѪ8;a&َ݆̄0lRw7MW9 nI)ؙNۺpqߔyӄp]'[d6,6œqz^Lh ̙`G i#k>Ĭ'] S=!Y͎>׋'؛n֦%Y0DV,%9D^IZ5p#$�kКSZ#GֈfĆVC$}\%GWI[3ѡ<5Gg�C)KBQJ'I>ɬO2#В$!z&^vG:I@,C"Qa_%QgcIkm%(]ě]X>j`I (qF9153ۚKdQ.KDun};/"HTswGx/5o}W^嬏't<IDxÇ!C>HӚ\{\9v&( S/SO)NzԅSWNRR,dx냝A>:fkz 9,S֩'x/ُ>38hOWx:aqY]C.~syyyũ`:eD$:gvu3;5N o|<B:+|t>G l$+cFz=W2:[R+s !{>qڷJ;FݒwWŠVbEm%=H$Z.)ߏr9D֑Hy5`?/BEag`/,=QC\Rd?gir:] XB\:<n@_oOwWgnkojminjlY_W[e1*+JKEbAФ&'%TJ,V8 {%EUIeчoRG{Ni֓hfh . a7OE (fB* vA"^!u]vxo%9&IdIbhVJ+Sotaî3<RhgM`c*%MJ`*�5 +-wN)qʷ->;IRhnu./UvTN\DR51fD͈OFTF@Hr(t,{}֎NF\^IIY9arskIy$w4ʋ8c0Cw:Cg5t ]sV@A::¬{ryik-YNrtpu/K c@O+D'A\ޒ!4=VuOIY਍0Re  3 "z+EBeUwy;V>GG袀O2!I+_'5u!0Ik;);Yp,s=y=y}Yb8~.ةl`c=5-齺)ܕӂ[gT~ Jd"f`Im;*v7Pu 5[W)jxv t`EloRJ0֠sJúYp9͐.&Jzum**[1į ybZo⍘5P (﹔U-E8+H!7]yD&G&iYHy]dJ庍JL&vܽ,,e\Z- w 4b F aYZGͬ7f;tӹ@/k׾"{W5�½c9ټ힕"ls,�XQT@5fu/[V<l Sc&qqLq)☕aB/"ǘW=^qFFHDlEv©R$.%E]q\E M*+n_8ďs+ϴʳʳmCp`2{2^|~_meu/] -C+w־�"|]ğyx uO}Yx~GM!w \kpDllΆ:*oTXB]|O:Oi1Π JOpeMy7!k ߁s2:wʵ7<<ŞPic{B'%pZNҪT?PT v7W,b'e+Ý[emBG 4( endstream endobj 27 0 obj << /Type /FontDescriptor /FontName /b8a464+NotoSerif /FontFile2 26 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 28 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 29 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 250 500 250 500 500 500 559 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 612 500 500 500 500 500 500 500 500 500 500 500 500 562 500 492 613 535 369 500 634 319 500 500 310 944 645 577 613 500 471 451 352 500 579 861 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 30 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000048198 00000 n 0000048550 00000 n 0000048592 00000 n 0000048640 00000 n 0000048692 00000 n 0000048862 00000 n 0000049034 00000 n 0000049199 00000 n 0000049250 00000 n 0000049324 00000 n 0000049449 00000 n 0000049494 00000 n 0000054960 00000 n 0000055179 00000 n 0000056541 00000 n 0000057455 00000 n 0000062274 00000 n 0000062498 00000 n 0000063860 00000 n 0000064774 00000 n 0000070747 00000 n 0000070961 00000 n 0000072323 00000 n trailer << /Size 30 /Root 2 0 R /Info 1 0 R >> startxref 73237 %%EOF ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/image-wrap-inline.pdf�������������������������������������0000664�0000000�0000000�00000220506�14163570564�0024461�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.3.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.3.dev, based on Prawn 2.2.2) /ModDate (D:20200126062220+00'00') /CreationDate (D:20200126062220+00'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 15 0 R /PageLabels 17 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 47444 >> stream q 88.5 Tc 0.0 Tc 88.5 Tc 0.0 Tc 8.25 Tc 0.0 Tc 4.5 Tc 0.0 Tc 88.5 Tc 0.0 Tc 8.25 Tc 0.0 Tc 4.5 Tc 0.0 Tc 88.5 Tc 0.0 Tc 8.25 Tc 0.0 Tc 4.5 Tc 0.0 Tc /DeviceRGB cs 1.0 1.0 1.0 scn 48.24 752.55 112.23 53.34 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 160.47 752.55 216.978 53.34 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 377.448 752.55 44.892 53.34 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 48.24 683.43 112.23 69.12 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 160.47 683.43 216.978 69.12 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 377.448 683.43 44.892 69.12 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 48.24 602.3099 112.23 81.1201 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 160.47 602.3099 216.978 81.1201 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 377.448 602.3099 44.892 81.1201 re f 0.0 0.0 0.0 scn 0.5 w /DeviceRGB CS 0.8667 0.8667 0.8667 SCN 48.24 805.89 m 160.47 805.89 l S [] 0 d 1.25 w 0.8667 0.8667 0.8667 SCN 48.24 752.55 m 160.47 752.55 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 806.14 m 48.24 751.925 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 160.47 806.14 m 160.47 751.925 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 51.24 790.926 Td /F2.0 10.5 Tf <4e616d65> Tj ET 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 160.47 805.89 m 377.448 805.89 l S [] 0 d 1.25 w 0.8667 0.8667 0.8667 SCN 160.47 752.55 m 377.448 752.55 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 160.47 806.14 m 160.47 751.925 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 377.448 806.14 m 377.448 751.925 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 163.47 790.926 Td /F2.0 10.5 Tf <4465736372697074696f6e> Tj ET 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 377.448 805.89 m 422.34 805.89 l S [] 0 d 1.25 w 0.8667 0.8667 0.8667 SCN 377.448 752.55 m 422.34 752.55 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 377.448 806.14 m 377.448 751.925 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 422.34 806.14 m 422.34 751.925 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 380.448 790.926 Td /F2.0 10.5 Tf <4d696e2023> Tj ET BT 380.448 775.146 Td /F2.0 10.5 Tf <64617461> Tj ET BT 380.448 759.366 Td /F2.0 10.5 Tf <706f696e7473> Tj ET 0.0 0.0 0.0 scn 1.25 w 0.8667 0.8667 0.8667 SCN 48.24 752.55 m 160.47 752.55 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 683.43 m 160.47 683.43 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 753.175 m 48.24 683.18 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 160.47 753.175 m 160.47 683.18 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 51.24 737.586 Td /F3.0 10.5 Tf <436f6e666964656e636520696e74657276616c206f66> Tj ET BT 51.24 721.806 Td /F3.0 10.5 Tf <746865206d65616e> Tj ET 0.0 0.0 0.0 scn 1.25 w 0.8667 0.8667 0.8667 SCN 160.47 752.55 m 377.448 752.55 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 160.47 683.43 m 377.448 683.43 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 160.47 753.175 m 160.47 683.18 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 377.448 753.175 m 377.448 683.18 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn 88.5 Tc 0.0 Tc BT 163.47 737.586 Td /F1.0 10.5 Tf <54686520636f6e666964656e636520696e74657276616c206f6620746865206d65616e206973> Tj ET 88.5 Tc 0.0 Tc 8.25 Tc 0.0 Tc 4.5 Tc 0.0 Tc 88.5 Tc 0.0 Tc 8.25 Tc 0.0 Tc 4.5 Tc 0.0 Tc 88.5 Tc q 163.47 718.7712 m 251.97 718.7712 l 251.97 732.9888 l 163.47 732.9888 l h W n 0.0 0.0 0.0 scn 0.74599 0.00000 0.00000 0.74599 41.52300 186.18644 cm 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 cm q Q q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 -1.05859 -1.82241 cm q q 2 j 165.2044 721.3951 m 165.2044 733.3951 l 166.845 733.3951 l 166.845 732.9888 l 165.5325 732.9888 l 165.5325 721.8013 l 166.845 721.8013 l 166.845 721.3951 l h 165.2044 721.3951 m f Q Q Q Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 2.79688 -11.18555 cm q q 2 j 170.0325 738.0044 m 170.3333 738.4615 170.6653 738.8052 171.0325 739.0357 c 171.3958 739.274 171.7981 739.3951 172.2356 739.3951 c 172.8802 739.3951 173.3294 739.1919 173.5794 738.7857 c 173.7122 738.5357 173.7825 738.2115 173.7825 737.8169 c 173.7825 737.5669 173.7512 737.2779 173.6887 736.9576 c 173.0481 733.6138 l 174.0169 733.6138 l 173.9075 732.9888 l 171.845 732.9888 l 172.595 736.8326 l 172.6575 737.1333 172.6887 737.3951 172.6887 737.6138 c 172.6887 737.8521 172.6497 738.0435 172.5794 738.1919 c 172.4427 738.4615 172.1575 738.5982 171.72 738.5982 c 171.2395 738.5982 170.8372 738.4146 170.5169 738.0513 c 170.1927 737.6841 169.9622 737.1529 169.8294 736.4576 c 169.1575 732.9888 l 168.0794 732.9888 l 168.845 736.8638 l 168.8958 737.1529 168.9231 737.4107 168.9231 737.6294 c 168.9231 737.8677 168.8841 738.0552 168.8137 738.1919 c 168.677 738.4615 168.3919 738.5982 167.9544 738.5982 c 167.4739 738.5982 167.0716 738.4146 166.7512 738.0513 c 166.427 737.6841 166.1966 737.1529 166.0637 736.4576 c 165.3919 732.9888 l 164.3137 732.9888 l 165.4075 738.5982 l 164.3762 738.5982 l 164.4856 739.2232 l 166.595 739.2232 l 166.3919 738.1138 l 166.6614 738.5279 166.9739 738.8482 167.3294 739.0669 c 167.6809 739.2857 168.052 739.3951 168.4387 739.3951 c 168.927 739.3951 169.3059 739.2701 169.5794 739.0201 c 169.8606 738.7779 170.0091 738.4419 170.0325 738.0044 c h 170.0325 738.0044 m f Q Q Q Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 16.07031 -11.18555 cm q q 2 j 164.7356 737.2232 m 172.2512 737.2232 l 172.2512 736.2701 l 164.7356 736.2701 l h 164.7356 737.2232 m f Q Q Q Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 28.19922 -11.18555 cm q q 2 j 165.0794 738.5982 m 164.1262 738.5982 l 164.2512 739.2232 l 165.2044 739.2232 l 165.5794 741.1451 l 166.6575 741.1451 l 166.2825 739.2232 l 168.3137 739.2232 l 168.1887 738.5982 l 166.1575 738.5982 l 165.3919 734.6294 l 165.3294 734.3247 165.2981 734.0865 165.2981 733.9107 c 165.2981 733.7857 165.3137 733.6919 165.345 733.6294 c 165.4153 733.4732 165.5872 733.3951 165.8606 733.3951 c 166.1419 733.3951 166.3645 733.4771 166.5325 733.6451 c 166.6966 733.8091 166.8177 734.0826 166.8919 734.4576 c 167.7044 734.4576 l 167.5677 733.8833 167.3333 733.4654 167.0012 733.2076 c 166.677 732.9497 166.2278 732.8169 165.6575 732.8169 c 165.0403 732.8169 164.6302 732.9576 164.4231 733.2388 c 164.2981 733.4029 164.2356 733.6451 164.2356 733.9576 c 164.2356 734.1529 164.2591 734.3794 164.3137 734.6294 c h 165.0794 738.5982 m f Q Q Q Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 33.82031 -12.51758 cm q q 2 j 166.9231 734.0826 m 166.6731 733.6138 l 166.5364 733.3833 166.3216 733.1919 166.0325 733.0357 c 165.845 732.9341 165.6028 732.8794 165.3137 732.8794 c 165.302 732.8794 165.2981 732.8794 165.2981 732.8794 c 164.7434 732.8912 164.3372 733.106 164.0794 733.5357 c 163.9114 733.8169 163.8294 734.1529 163.8294 734.5513 c 163.8294 734.7583 163.8489 734.981 163.8919 735.2232 c 164.0247 735.899 164.3059 736.4576 164.7356 736.8951 c 165.1419 737.3091 165.6809 737.5201 166.3606 737.5201 c 166.8372 737.5201 167.177 737.4302 167.3762 737.2544 c 167.5637 737.0865 167.6614 736.8208 167.6731 736.4576 c 167.6731 736.3169 l 167.9231 736.7701 l 168.0794 737.0591 168.3137 737.2779 168.6262 737.4263 c 169.0481 737.4263 l 169.0012 737.1763 l 168.72 737.0904 168.5052 736.9185 168.3606 736.6607 c 167.7044 735.4888 l 167.7512 734.2076 l 167.7591 733.7701 167.8137 733.5279 167.9075 733.4888 c 167.9387 733.4654 167.9778 733.4576 168.0325 733.4576 c 168.1887 733.4576 168.4114 733.5357 168.7044 733.6919 c 168.595 733.1919 l 168.2903 733.0357 168.0208 732.9576 167.7825 732.9576 c 167.5403 732.9576 167.3372 733.0396 167.1731 733.2076 c 167.0169 733.3638 166.9387 733.5552 166.9387 733.7857 c h 166.9075 734.8951 m 166.8762 736.1138 l 166.8645 736.7583 166.6653 737.0865 166.2825 737.0982 c 165.97 737.0982 165.6614 736.9263 165.3606 736.5826 c 165.0989 736.3013 164.9075 735.8404 164.7825 735.2076 c 164.7278 734.9263 164.7044 734.6763 164.7044 734.4576 c 164.7044 734.1958 164.7395 733.981 164.8137 733.8169 c 164.9583 733.5044 165.1966 733.3482 165.5325 733.3482 c 165.8958 733.3482 166.2669 733.6958 166.6419 734.3951 c h 166.9075 734.8951 m f Q Q Q Q Q Q q q 1.00000 0.00000 0.00000 1.00000 0.00000 -11.18480 cm q /Tr1 gs 0.0 0.0 0.0 SCN 1.2 w 0 J 2 j 204.6809 736.7517 m 217.6731 736.7517 l S Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 45.61719 -4.54102 cm q q 2 j 163.7669 734.2701 m 164.2044 734.2701 l 164.1927 734.1841 164.1887 734.106 164.1887 734.0357 c 164.1887 733.5357 164.5325 733.2857 165.22 733.2857 c 165.9075 733.2857 166.2981 733.5357 166.3919 734.0357 c 166.3997 734.0865 166.4075 734.1529 166.4075 734.2388 c 166.4075 734.3326 166.3606 734.4302 166.2669 734.5357 c 166.1731 734.6372 165.927 734.7583 165.5325 734.8951 c 165.0169 735.0826 l 164.6614 735.1958 164.427 735.3326 164.3137 735.4888 c 164.1966 735.6451 164.1419 735.8169 164.1419 736.0044 c 164.1419 736.0747 164.1458 736.1529 164.1575 736.2388 c 164.2395 736.6333 164.4466 736.9458 164.7825 737.1763 c 165.1262 737.4146 165.5403 737.5357 166.0325 737.5357 c 166.5325 737.5357 167.0364 737.4146 167.5481 737.1763 c 167.3606 736.2076 l 166.9231 736.2076 l 166.9309 736.2701 166.9387 736.3247 166.9387 736.3794 c 166.9387 736.5865 166.8645 736.7583 166.72 736.8951 c 166.5833 737.0396 166.3528 737.1138 166.0325 737.1138 c 165.3762 737.1138 165.0052 736.8872 164.9231 736.4419 c 164.9114 736.3872 164.9075 736.3208 164.9075 736.2388 c 164.9075 736.1529 164.9466 736.0591 165.0325 735.9576 c 165.1262 735.8638 165.3489 735.7583 165.7044 735.6451 c 166.2669 735.4576 l 166.6614 735.3326 166.9309 735.1685 167.0794 734.9732 c 167.1809 734.8247 167.2356 734.6841 167.2356 734.5513 c 167.2356 733.9654 167.0012 733.524 166.5325 733.2232 c 166.1653 732.9849 165.7044 732.8638 165.1419 732.8638 c 164.5872 732.8638 164.0637 732.9888 163.5637 733.2388 c h 163.7669 734.2701 m f Q Q Q Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 40.27344 -9.67807 cm q q 2 j 167.0794 723.6138 m 165.1575 727.8638 l 164.5637 727.4263 l 164.4075 727.5669 l 165.6262 728.4576 l 167.4231 724.5044 l 171.845 733.2388 l 171.8645 733.2896 171.9114 733.3169 171.9856 733.3169 c 172.0364 733.3169 172.0794 733.3013 172.1106 733.2701 c 172.1419 733.2388 172.1575 733.1958 172.1575 733.1451 c 172.1575 733.1216 172.1497 733.106 172.1419 733.0982 c 167.3919 723.6919 l 167.3684 723.6412 167.3294 723.6138 167.2669 723.6138 c h 167.0794 723.6138 m f Q Q Q Q Q Q q q 1.00000 0.00000 0.00000 1.00000 0.00000 -11.18480 cm q /Tr1 gs 0.0 0.0 0.0 SCN 0.426 w 1 J 2 j 212.22 734.6033 m 217.4622 734.6033 l S Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 48.83984 -16.69336 cm q q 2 j 164.0637 732.9888 m 164.845 736.9576 l 164.1106 736.9576 l 164.1887 737.4107 l 165.6887 737.4107 l 165.5481 736.6294 l 165.7434 736.9185 165.97 737.1451 166.22 737.3013 c 166.4778 737.4576 166.7552 737.5357 167.0481 737.5357 c 167.5364 737.5357 167.8684 737.3951 168.0481 737.1138 c 168.1497 736.9341 168.2044 736.7076 168.2044 736.4263 c 168.2044 736.2466 168.1809 736.0396 168.1419 735.8013 c 167.6731 733.4263 l 168.3606 733.4263 l 168.2825 732.9888 l 166.8294 732.9888 l 167.3294 735.5513 l 167.3802 735.8404 167.4075 736.0826 167.4075 736.2701 c 167.4075 736.4341 167.3841 736.5708 167.345 736.6763 c 167.2512 736.8716 167.0364 736.9732 166.7044 736.9732 c 166.3372 736.9732 166.0364 736.8404 165.7981 736.5826 c 165.5677 736.3208 165.4075 735.9458 165.3137 735.4576 c 164.8294 732.9888 l h 164.0637 732.9888 m f Q Q Q Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 55.76953 -11.18555 cm q q 2 j 163.9075 731.8169 m 164.2708 732.0904 164.5364 732.4068 164.7044 732.7701 c 164.8802 733.1333 164.97 733.5747 164.97 734.0982 c 164.97 734.3169 l 166.1262 734.3169 l 166.095 733.649 165.9387 733.0747 165.6575 732.5982 c 165.3762 732.1216 164.9466 731.7037 164.3762 731.3482 c h 163.9075 731.8169 m f Q Q Q Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 62.91406 -11.18555 cm q q 2 j 170.0325 738.0044 m 170.3333 738.4615 170.6653 738.8052 171.0325 739.0357 c 171.3958 739.274 171.7981 739.3951 172.2356 739.3951 c 172.8802 739.3951 173.3294 739.1919 173.5794 738.7857 c 173.7122 738.5357 173.7825 738.2115 173.7825 737.8169 c 173.7825 737.5669 173.7512 737.2779 173.6887 736.9576 c 173.0481 733.6138 l 174.0169 733.6138 l 173.9075 732.9888 l 171.845 732.9888 l 172.595 736.8326 l 172.6575 737.1333 172.6887 737.3951 172.6887 737.6138 c 172.6887 737.8521 172.6497 738.0435 172.5794 738.1919 c 172.4427 738.4615 172.1575 738.5982 171.72 738.5982 c 171.2395 738.5982 170.8372 738.4146 170.5169 738.0513 c 170.1927 737.6841 169.9622 737.1529 169.8294 736.4576 c 169.1575 732.9888 l 168.0794 732.9888 l 168.845 736.8638 l 168.8958 737.1529 168.9231 737.4107 168.9231 737.6294 c 168.9231 737.8677 168.8841 738.0552 168.8137 738.1919 c 168.677 738.4615 168.3919 738.5982 167.9544 738.5982 c 167.4739 738.5982 167.0716 738.4146 166.7512 738.0513 c 166.427 737.6841 166.1966 737.1529 166.0637 736.4576 c 165.3919 732.9888 l 164.3137 732.9888 l 165.4075 738.5982 l 164.3762 738.5982 l 164.4856 739.2232 l 166.595 739.2232 l 166.3919 738.1138 l 166.6614 738.5279 166.9739 738.8482 167.3294 739.0669 c 167.6809 739.2857 168.052 739.3951 168.4387 739.3951 c 168.927 739.3951 169.3059 739.2701 169.5794 739.0201 c 169.8606 738.7779 170.0091 738.4419 170.0325 738.0044 c h 170.0325 738.0044 m f Q Q Q Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 76.18750 -11.18164 cm q q 2 j 168.97 740.5201 m 168.97 737.2232 l 172.2512 737.2232 l 172.2512 736.2701 l 168.97 736.2701 l 168.97 732.9888 l 168.0325 732.9888 l 168.0325 736.2701 l 164.7356 736.2701 l 164.7356 737.2232 l 168.0325 737.2232 l 168.0325 740.5201 l h 168.97 740.5201 m f Q Q Q Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 88.31641 -11.18555 cm q q 2 j 165.0794 738.5982 m 164.1262 738.5982 l 164.2512 739.2232 l 165.2044 739.2232 l 165.5794 741.1451 l 166.6575 741.1451 l 166.2825 739.2232 l 168.3137 739.2232 l 168.1887 738.5982 l 166.1575 738.5982 l 165.3919 734.6294 l 165.3294 734.3247 165.2981 734.0865 165.2981 733.9107 c 165.2981 733.7857 165.3137 733.6919 165.345 733.6294 c 165.4153 733.4732 165.5872 733.3951 165.8606 733.3951 c 166.1419 733.3951 166.3645 733.4771 166.5325 733.6451 c 166.6966 733.8091 166.8177 734.0826 166.8919 734.4576 c 167.7044 734.4576 l 167.5677 733.8833 167.3333 733.4654 167.0012 733.2076 c 166.677 732.9497 166.2278 732.8169 165.6575 732.8169 c 165.0403 732.8169 164.6302 732.9576 164.4231 733.2388 c 164.2981 733.4029 164.2356 733.6451 164.2356 733.9576 c 164.2356 734.1529 164.2591 734.3794 164.3137 734.6294 c h 165.0794 738.5982 m f Q Q Q Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 93.93750 -12.51758 cm q q 2 j 166.9231 734.0826 m 166.6731 733.6138 l 166.5364 733.3833 166.3216 733.1919 166.0325 733.0357 c 165.845 732.9341 165.6028 732.8794 165.3137 732.8794 c 165.302 732.8794 165.2981 732.8794 165.2981 732.8794 c 164.7434 732.8912 164.3372 733.106 164.0794 733.5357 c 163.9114 733.8169 163.8294 734.1529 163.8294 734.5513 c 163.8294 734.7583 163.8489 734.981 163.8919 735.2232 c 164.0247 735.899 164.3059 736.4576 164.7356 736.8951 c 165.1419 737.3091 165.6809 737.5201 166.3606 737.5201 c 166.8372 737.5201 167.177 737.4302 167.3762 737.2544 c 167.5637 737.0865 167.6614 736.8208 167.6731 736.4576 c 167.6731 736.3169 l 167.9231 736.7701 l 168.0794 737.0591 168.3137 737.2779 168.6262 737.4263 c 169.0481 737.4263 l 169.0012 737.1763 l 168.72 737.0904 168.5052 736.9185 168.3606 736.6607 c 167.7044 735.4888 l 167.7512 734.2076 l 167.7591 733.7701 167.8137 733.5279 167.9075 733.4888 c 167.9387 733.4654 167.9778 733.4576 168.0325 733.4576 c 168.1887 733.4576 168.4114 733.5357 168.7044 733.6919 c 168.595 733.1919 l 168.2903 733.0357 168.0208 732.9576 167.7825 732.9576 c 167.5403 732.9576 167.3372 733.0396 167.1731 733.2076 c 167.0169 733.3638 166.9387 733.5552 166.9387 733.7857 c h 166.9075 734.8951 m 166.8762 736.1138 l 166.8645 736.7583 166.6653 737.0865 166.2825 737.0982 c 165.97 737.0982 165.6614 736.9263 165.3606 736.5826 c 165.0989 736.3013 164.9075 735.8404 164.7825 735.2076 c 164.7278 734.9263 164.7044 734.6763 164.7044 734.4576 c 164.7044 734.1958 164.7395 733.981 164.8137 733.8169 c 164.9583 733.5044 165.1966 733.3482 165.5325 733.3482 c 165.8958 733.3482 166.2669 733.6958 166.6419 734.3951 c h 166.9075 734.8951 m f Q Q Q Q Q Q q q 1.00000 0.00000 0.00000 1.00000 0.00000 -11.18480 cm q /Tr1 gs 0.0 0.0 0.0 SCN 1.2 w 0 J 2 j 264.7981 736.7517 m 277.7903 736.7517 l S Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 105.73438 -4.54102 cm q q 2 j 163.7669 734.2701 m 164.2044 734.2701 l 164.1927 734.1841 164.1887 734.106 164.1887 734.0357 c 164.1887 733.5357 164.5325 733.2857 165.22 733.2857 c 165.9075 733.2857 166.2981 733.5357 166.3919 734.0357 c 166.3997 734.0865 166.4075 734.1529 166.4075 734.2388 c 166.4075 734.3326 166.3606 734.4302 166.2669 734.5357 c 166.1731 734.6372 165.927 734.7583 165.5325 734.8951 c 165.0169 735.0826 l 164.6614 735.1958 164.427 735.3326 164.3137 735.4888 c 164.1966 735.6451 164.1419 735.8169 164.1419 736.0044 c 164.1419 736.0747 164.1458 736.1529 164.1575 736.2388 c 164.2395 736.6333 164.4466 736.9458 164.7825 737.1763 c 165.1262 737.4146 165.5403 737.5357 166.0325 737.5357 c 166.5325 737.5357 167.0364 737.4146 167.5481 737.1763 c 167.3606 736.2076 l 166.9231 736.2076 l 166.9309 736.2701 166.9387 736.3247 166.9387 736.3794 c 166.9387 736.5865 166.8645 736.7583 166.72 736.8951 c 166.5833 737.0396 166.3528 737.1138 166.0325 737.1138 c 165.3762 737.1138 165.0052 736.8872 164.9231 736.4419 c 164.9114 736.3872 164.9075 736.3208 164.9075 736.2388 c 164.9075 736.1529 164.9466 736.0591 165.0325 735.9576 c 165.1262 735.8638 165.3489 735.7583 165.7044 735.6451 c 166.2669 735.4576 l 166.6614 735.3326 166.9309 735.1685 167.0794 734.9732 c 167.1809 734.8247 167.2356 734.6841 167.2356 734.5513 c 167.2356 733.9654 167.0012 733.524 166.5325 733.2232 c 166.1653 732.9849 165.7044 732.8638 165.1419 732.8638 c 164.5872 732.8638 164.0637 732.9888 163.5637 733.2388 c h 163.7669 734.2701 m f Q Q Q Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 100.39062 -9.67807 cm q q 2 j 167.0794 723.6138 m 165.1575 727.8638 l 164.5637 727.4263 l 164.4075 727.5669 l 165.6262 728.4576 l 167.4231 724.5044 l 171.845 733.2388 l 171.8645 733.2896 171.9114 733.3169 171.9856 733.3169 c 172.0364 733.3169 172.0794 733.3013 172.1106 733.2701 c 172.1419 733.2388 172.1575 733.1958 172.1575 733.1451 c 172.1575 733.1216 172.1497 733.106 172.1419 733.0982 c 167.3919 723.6919 l 167.3684 723.6412 167.3294 723.6138 167.2669 723.6138 c h 167.0794 723.6138 m f Q Q Q Q Q Q q q 1.00000 0.00000 0.00000 1.00000 0.00000 -11.18480 cm q /Tr1 gs 0.0 0.0 0.0 SCN 0.426 w 1 J 2 j 272.3372 734.6033 m 277.5794 734.6033 l S Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 108.95703 -16.69336 cm q q 2 j 164.0637 732.9888 m 164.845 736.9576 l 164.1106 736.9576 l 164.1887 737.4107 l 165.6887 737.4107 l 165.5481 736.6294 l 165.7434 736.9185 165.97 737.1451 166.22 737.3013 c 166.4778 737.4576 166.7552 737.5357 167.0481 737.5357 c 167.5364 737.5357 167.8684 737.3951 168.0481 737.1138 c 168.1497 736.9341 168.2044 736.7076 168.2044 736.4263 c 168.2044 736.2466 168.1809 736.0396 168.1419 735.8013 c 167.6731 733.4263 l 168.3606 733.4263 l 168.2825 732.9888 l 166.8294 732.9888 l 167.3294 735.5513 l 167.3802 735.8404 167.4075 736.0826 167.4075 736.2701 c 167.4075 736.4341 167.3841 736.5708 167.345 736.6763 c 167.2512 736.8716 167.0364 736.9732 166.7044 736.9732 c 166.3372 736.9732 166.0364 736.8404 165.7981 736.5826 c 165.5677 736.3208 165.4075 735.9458 165.3137 735.4576 c 164.8294 732.9888 l h 164.0637 732.9888 m f Q Q Q Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 116.13281 -1.82241 cm q q 2 j 163.6575 721.3951 m 163.6575 721.8013 l 164.9544 721.8013 l 164.9544 732.9888 l 163.6575 732.9888 l 163.6575 733.3951 l 165.2981 733.3951 l 165.2981 721.3951 l h 163.6575 721.3951 m f Q Q Q Q Q Q Q Q BT 163.47 721.806 Td ET 0.0 Tc BT 251.97 721.806 Td /F1.0 10.5 Tf <2c20776865726520> Tj ET 8.25 Tc q 291.912 723.4885 m 300.162 723.4885 l 300.162 728.2715 l 291.912 728.2715 l h W n 0.0 0.0 0.0 scn 0.74752 0.00000 0.00000 0.74752 73.70121 183.87216 cm 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 cm q Q q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 -0.17578 -6.39648 cm q q 2 j 298.4745 733.2871 m 298.7753 733.7441 299.1073 734.0879 299.4745 734.3184 c 299.8378 734.5566 300.2401 734.6777 300.6776 734.6777 c 301.3222 734.6777 301.7714 734.4746 302.0214 734.0684 c 302.1542 733.8184 302.2245 733.4941 302.2245 733.0996 c 302.2245 732.8496 302.1933 732.5606 302.1308 732.2402 c 301.4901 728.8965 l 302.4589 728.8965 l 302.3495 728.2715 l 300.287 728.2715 l 301.037 732.1152 l 301.0995 732.416 301.1308 732.6777 301.1308 732.8965 c 301.1308 733.1348 301.0917 733.3262 301.0214 733.4746 c 300.8847 733.7441 300.5995 733.8809 300.162 733.8809 c 299.6815 733.8809 299.2792 733.6973 298.9589 733.334 c 298.6347 732.9668 298.4042 732.4356 298.2714 731.7402 c 297.5995 728.2715 l 296.5214 728.2715 l 297.287 732.1465 l 297.3378 732.4356 297.3651 732.6934 297.3651 732.9121 c 297.3651 733.1504 297.3261 733.3379 297.2558 733.4746 c 297.119 733.7441 296.8339 733.8809 296.3964 733.8809 c 295.9159 733.8809 295.5136 733.6973 295.1933 733.334 c 294.869 732.9668 294.6386 732.4356 294.5058 731.7402 c 293.8339 728.2715 l 292.7558 728.2715 l 293.8495 733.8809 l 292.8183 733.8809 l 292.9276 734.5059 l 295.037 734.5059 l 294.8339 733.3965 l 295.1034 733.8106 295.4159 734.1309 295.7714 734.3496 c 296.1229 734.5684 296.494 734.6777 296.8808 734.6777 c 297.369 734.6777 297.7479 734.5527 298.0214 734.3027 c 298.3026 734.0606 298.4511 733.7246 298.4745 733.2871 c h 298.4745 733.2871 m f Q Q Q Q Q Q Q Q BT 291.912 721.806 Td ET 0.0 Tc BT 300.162 721.806 Td /F1.0 10.5 Tf <20697320746865206d65616e2c20> Tj ET 4.5 Tc q 365.9235 723.7525 m 370.4235 723.7525 l 370.4235 728.0075 l 365.9235 728.0075 l h W n 0.0 0.0 0.0 scn 0.64780 0.00000 0.00000 0.64780 128.87909 256.40590 cm 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 cm q Q q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 0.53125 -6.39648 cm q q 2 j 366.3454 729.8044 m 366.9548 729.8044 l 366.943 729.6872 366.9391 729.5856 366.9391 729.4919 c 366.9391 728.7731 367.4235 728.4137 368.3923 728.4137 c 369.361 728.4137 369.9118 728.7731 370.0485 729.4919 c 370.0563 729.5544 370.0641 729.6481 370.0641 729.7731 c 370.0641 729.8981 369.9938 730.0309 369.861 730.1794 c 369.736 730.3239 369.3923 730.4919 368.8298 730.6794 c 368.0954 730.945 l 367.5954 731.1208 367.2594 731.32 367.0954 731.5387 c 366.9391 731.7575 366.861 731.9958 366.861 732.2575 c 366.861 732.3512 366.8688 732.4606 366.8923 732.5856 c 367.0055 733.1481 367.3024 733.5895 367.7829 733.9137 c 368.2594 734.2458 368.8493 734.4137 369.5485 734.4137 c 370.236 734.4137 370.943 734.2419 371.6735 733.8981 c 371.4079 732.5387 l 370.7829 732.5387 l 370.8024 732.6325 370.8141 732.7145 370.8141 732.7887 c 370.8141 733.0778 370.7126 733.3239 370.5173 733.5231 c 370.318 733.7184 369.9899 733.82 369.5329 733.82 c 368.6149 733.82 368.0954 733.4997 367.9704 732.8669 c 367.9469 732.8044 367.9391 732.7106 367.9391 732.5856 c 367.9391 732.4684 368.0016 732.3395 368.1266 732.195 c 368.2594 732.0583 368.5719 731.9137 369.0641 731.7575 c 369.8766 731.4919 l 370.4274 731.3044 370.8063 731.0739 371.0173 730.8044 c 371.1618 730.6051 371.236 730.4059 371.236 730.2106 c 371.236 729.3981 370.9079 728.777 370.2516 728.3512 c 369.7282 728.0075 369.0719 727.8356 368.2829 727.8356 c 367.5016 727.8356 366.7594 728.0075 366.0641 728.3512 c h 366.3454 729.8044 m f Q Q Q Q Q Q Q Q BT 365.9235 721.806 Td ET 0.0 Tc BT 370.4235 721.806 Td ET BT 163.47 706.026 Td /F1.0 10.5 Tf <69732074686520657374696d617465642073616d706c65207374616e64617264> Tj ET BT 163.47 690.246 Td /F1.0 10.5 Tf <646576696174696f6e2c20616e6420736f206f6e2e> Tj ET 0.0 0.0 0.0 scn 1.25 w 0.8667 0.8667 0.8667 SCN 377.448 752.55 m 422.34 752.55 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 377.448 683.43 m 422.34 683.43 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 377.448 753.175 m 377.448 683.18 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 422.34 753.175 m 422.34 683.18 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 380.448 737.586 Td /F1.0 10.5 Tf <32> Tj ET 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 683.43 m 160.47 683.43 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 602.3099 m 160.47 602.3099 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 683.68 m 48.24 602.0599 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 160.47 683.68 m 160.47 602.0599 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 51.24 668.466 Td /F3.0 10.5 Tf <436f6e666964656e636520696e74657276616c206f66> Tj ET BT 51.24 652.686 Td /F3.0 10.5 Tf <746865206d65616e> Tj ET 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 160.47 683.43 m 377.448 683.43 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 160.47 602.3099 m 377.448 602.3099 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 160.47 683.68 m 160.47 602.0599 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 377.448 683.68 m 377.448 602.0599 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 88.5 Tc 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 3.2202 Tw BT 163.47 668.466 Td /F1.0 10.5 Tf <54686520636f6e666964656e636520696e74657276616c206f6620746865206d65616e206973> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 88.5 Tc 0.0 Tc 8.25 Tc 0.0 Tc 4.5 Tc 0.0 Tc 88.5 Tc 0.0 Tc 8.25 Tc 0.0 Tc 4.5 Tc 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 88.5 Tc q 163.47 649.6512 m 251.97 649.6512 l 251.97 663.8688 l 163.47 663.8688 l h W n 0.0 0.0 0.0 scn 0.74599 0.00000 0.00000 0.74599 41.52300 168.62927 cm 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 cm q Q q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 -1.05859 -1.82241 cm q q 2 j 165.2044 652.2751 m 165.2044 664.2751 l 166.845 664.2751 l 166.845 663.8688 l 165.5325 663.8688 l 165.5325 652.6813 l 166.845 652.6813 l 166.845 652.2751 l h 165.2044 652.2751 m f Q Q Q Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 2.79688 -11.18555 cm q q 2 j 170.0325 668.8844 m 170.3333 669.3415 170.6653 669.6852 171.0325 669.9157 c 171.3958 670.154 171.7981 670.2751 172.2356 670.2751 c 172.8802 670.2751 173.3294 670.0719 173.5794 669.6657 c 173.7122 669.4157 173.7825 669.0915 173.7825 668.6969 c 173.7825 668.4469 173.7512 668.1579 173.6887 667.8376 c 173.0481 664.4938 l 174.0169 664.4938 l 173.9075 663.8688 l 171.845 663.8688 l 172.595 667.7126 l 172.6575 668.0133 172.6887 668.2751 172.6887 668.4938 c 172.6887 668.7321 172.6497 668.9235 172.5794 669.0719 c 172.4427 669.3415 172.1575 669.4782 171.72 669.4782 c 171.2395 669.4782 170.8372 669.2946 170.5169 668.9313 c 170.1927 668.5641 169.9622 668.0329 169.8294 667.3376 c 169.1575 663.8688 l 168.0794 663.8688 l 168.845 667.7438 l 168.8958 668.0329 168.9231 668.2907 168.9231 668.5094 c 168.9231 668.7477 168.8841 668.9352 168.8137 669.0719 c 168.677 669.3415 168.3919 669.4782 167.9544 669.4782 c 167.4739 669.4782 167.0716 669.2946 166.7512 668.9313 c 166.427 668.5641 166.1966 668.0329 166.0637 667.3376 c 165.3919 663.8688 l 164.3137 663.8688 l 165.4075 669.4782 l 164.3762 669.4782 l 164.4856 670.1032 l 166.595 670.1032 l 166.3919 668.9938 l 166.6614 669.4079 166.9739 669.7282 167.3294 669.9469 c 167.6809 670.1657 168.052 670.2751 168.4387 670.2751 c 168.927 670.2751 169.3059 670.1501 169.5794 669.9001 c 169.8606 669.6579 170.0091 669.3219 170.0325 668.8844 c h 170.0325 668.8844 m f Q Q Q Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 16.07031 -11.18555 cm q q 2 j 164.7356 668.1032 m 172.2512 668.1032 l 172.2512 667.1501 l 164.7356 667.1501 l h 164.7356 668.1032 m f Q Q Q Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 28.19922 -11.18555 cm q q 2 j 165.0794 669.4782 m 164.1262 669.4782 l 164.2512 670.1032 l 165.2044 670.1032 l 165.5794 672.0251 l 166.6575 672.0251 l 166.2825 670.1032 l 168.3137 670.1032 l 168.1887 669.4782 l 166.1575 669.4782 l 165.3919 665.5094 l 165.3294 665.2047 165.2981 664.9665 165.2981 664.7907 c 165.2981 664.6657 165.3137 664.5719 165.345 664.5094 c 165.4153 664.3532 165.5872 664.2751 165.8606 664.2751 c 166.1419 664.2751 166.3645 664.3571 166.5325 664.5251 c 166.6966 664.6891 166.8177 664.9626 166.8919 665.3376 c 167.7044 665.3376 l 167.5677 664.7633 167.3333 664.3454 167.0012 664.0876 c 166.677 663.8297 166.2278 663.6969 165.6575 663.6969 c 165.0403 663.6969 164.6302 663.8376 164.4231 664.1188 c 164.2981 664.2829 164.2356 664.5251 164.2356 664.8376 c 164.2356 665.0329 164.2591 665.2594 164.3137 665.5094 c h 165.0794 669.4782 m f Q Q Q Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 33.82031 -12.51758 cm q q 2 j 166.9231 664.9626 m 166.6731 664.4938 l 166.5364 664.2633 166.3216 664.0719 166.0325 663.9157 c 165.845 663.8141 165.6028 663.7594 165.3137 663.7594 c 165.302 663.7594 165.2981 663.7594 165.2981 663.7594 c 164.7434 663.7712 164.3372 663.986 164.0794 664.4157 c 163.9114 664.6969 163.8294 665.0329 163.8294 665.4313 c 163.8294 665.6383 163.8489 665.861 163.8919 666.1032 c 164.0247 666.779 164.3059 667.3376 164.7356 667.7751 c 165.1419 668.1891 165.6809 668.4001 166.3606 668.4001 c 166.8372 668.4001 167.177 668.3102 167.3762 668.1344 c 167.5637 667.9665 167.6614 667.7008 167.6731 667.3376 c 167.6731 667.1969 l 167.9231 667.6501 l 168.0794 667.9391 168.3137 668.1579 168.6262 668.3063 c 169.0481 668.3063 l 169.0012 668.0563 l 168.72 667.9704 168.5052 667.7985 168.3606 667.5407 c 167.7044 666.3688 l 167.7512 665.0876 l 167.7591 664.6501 167.8137 664.4079 167.9075 664.3688 c 167.9387 664.3454 167.9778 664.3376 168.0325 664.3376 c 168.1887 664.3376 168.4114 664.4157 168.7044 664.5719 c 168.595 664.0719 l 168.2903 663.9157 168.0208 663.8376 167.7825 663.8376 c 167.5403 663.8376 167.3372 663.9196 167.1731 664.0876 c 167.0169 664.2438 166.9387 664.4352 166.9387 664.6657 c h 166.9075 665.7751 m 166.8762 666.9938 l 166.8645 667.6383 166.6653 667.9665 166.2825 667.9782 c 165.97 667.9782 165.6614 667.8063 165.3606 667.4626 c 165.0989 667.1813 164.9075 666.7204 164.7825 666.0876 c 164.7278 665.8063 164.7044 665.5563 164.7044 665.3376 c 164.7044 665.0758 164.7395 664.861 164.8137 664.6969 c 164.9583 664.3844 165.1966 664.2282 165.5325 664.2282 c 165.8958 664.2282 166.2669 664.5758 166.6419 665.2751 c h 166.9075 665.7751 m f Q Q Q Q Q Q q q 1.00000 0.00000 0.00000 1.00000 0.00000 -11.18480 cm q /Tr1 gs 0.0 0.0 0.0 SCN 1.2 w 0 J 2 j 204.6809 667.6317 m 217.6731 667.6317 l S Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 45.61719 -4.54102 cm q q 2 j 163.7669 665.1501 m 164.2044 665.1501 l 164.1927 665.0641 164.1887 664.986 164.1887 664.9157 c 164.1887 664.4157 164.5325 664.1657 165.22 664.1657 c 165.9075 664.1657 166.2981 664.4157 166.3919 664.9157 c 166.3997 664.9665 166.4075 665.0329 166.4075 665.1188 c 166.4075 665.2126 166.3606 665.3102 166.2669 665.4157 c 166.1731 665.5172 165.927 665.6383 165.5325 665.7751 c 165.0169 665.9626 l 164.6614 666.0758 164.427 666.2126 164.3137 666.3688 c 164.1966 666.5251 164.1419 666.6969 164.1419 666.8844 c 164.1419 666.9547 164.1458 667.0329 164.1575 667.1188 c 164.2395 667.5133 164.4466 667.8258 164.7825 668.0563 c 165.1262 668.2946 165.5403 668.4157 166.0325 668.4157 c 166.5325 668.4157 167.0364 668.2946 167.5481 668.0563 c 167.3606 667.0876 l 166.9231 667.0876 l 166.9309 667.1501 166.9387 667.2047 166.9387 667.2594 c 166.9387 667.4665 166.8645 667.6383 166.72 667.7751 c 166.5833 667.9196 166.3528 667.9938 166.0325 667.9938 c 165.3762 667.9938 165.0052 667.7672 164.9231 667.3219 c 164.9114 667.2672 164.9075 667.2008 164.9075 667.1188 c 164.9075 667.0329 164.9466 666.9391 165.0325 666.8376 c 165.1262 666.7438 165.3489 666.6383 165.7044 666.5251 c 166.2669 666.3376 l 166.6614 666.2126 166.9309 666.0485 167.0794 665.8532 c 167.1809 665.7047 167.2356 665.5641 167.2356 665.4313 c 167.2356 664.8454 167.0012 664.404 166.5325 664.1032 c 166.1653 663.8649 165.7044 663.7438 165.1419 663.7438 c 164.5872 663.7438 164.0637 663.8688 163.5637 664.1188 c h 163.7669 665.1501 m f Q Q Q Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 40.27344 -9.67807 cm q q 2 j 167.0794 654.4938 m 165.1575 658.7438 l 164.5637 658.3063 l 164.4075 658.4469 l 165.6262 659.3376 l 167.4231 655.3844 l 171.845 664.1188 l 171.8645 664.1696 171.9114 664.1969 171.9856 664.1969 c 172.0364 664.1969 172.0794 664.1813 172.1106 664.1501 c 172.1419 664.1188 172.1575 664.0758 172.1575 664.0251 c 172.1575 664.0016 172.1497 663.986 172.1419 663.9782 c 167.3919 654.5719 l 167.3684 654.5212 167.3294 654.4938 167.2669 654.4938 c h 167.0794 654.4938 m f Q Q Q Q Q Q q q 1.00000 0.00000 0.00000 1.00000 0.00000 -11.18480 cm q /Tr1 gs 0.0 0.0 0.0 SCN 0.426 w 1 J 2 j 212.22 665.4833 m 217.4622 665.4833 l S Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 48.83984 -16.69336 cm q q 2 j 164.0637 663.8688 m 164.845 667.8376 l 164.1106 667.8376 l 164.1887 668.2907 l 165.6887 668.2907 l 165.5481 667.5094 l 165.7434 667.7985 165.97 668.0251 166.22 668.1813 c 166.4778 668.3376 166.7552 668.4157 167.0481 668.4157 c 167.5364 668.4157 167.8684 668.2751 168.0481 667.9938 c 168.1497 667.8141 168.2044 667.5876 168.2044 667.3063 c 168.2044 667.1266 168.1809 666.9196 168.1419 666.6813 c 167.6731 664.3063 l 168.3606 664.3063 l 168.2825 663.8688 l 166.8294 663.8688 l 167.3294 666.4313 l 167.3802 666.7204 167.4075 666.9626 167.4075 667.1501 c 167.4075 667.3141 167.3841 667.4508 167.345 667.5563 c 167.2512 667.7516 167.0364 667.8532 166.7044 667.8532 c 166.3372 667.8532 166.0364 667.7204 165.7981 667.4626 c 165.5677 667.2008 165.4075 666.8258 165.3137 666.3376 c 164.8294 663.8688 l h 164.0637 663.8688 m f Q Q Q Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 55.76953 -11.18555 cm q q 2 j 163.9075 662.6969 m 164.2708 662.9704 164.5364 663.2868 164.7044 663.6501 c 164.8802 664.0133 164.97 664.4547 164.97 664.9782 c 164.97 665.1969 l 166.1262 665.1969 l 166.095 664.529 165.9387 663.9547 165.6575 663.4782 c 165.3762 663.0016 164.9466 662.5837 164.3762 662.2282 c h 163.9075 662.6969 m f Q Q Q Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 62.91406 -11.18555 cm q q 2 j 170.0325 668.8844 m 170.3333 669.3415 170.6653 669.6852 171.0325 669.9157 c 171.3958 670.154 171.7981 670.2751 172.2356 670.2751 c 172.8802 670.2751 173.3294 670.0719 173.5794 669.6657 c 173.7122 669.4157 173.7825 669.0915 173.7825 668.6969 c 173.7825 668.4469 173.7512 668.1579 173.6887 667.8376 c 173.0481 664.4938 l 174.0169 664.4938 l 173.9075 663.8688 l 171.845 663.8688 l 172.595 667.7126 l 172.6575 668.0133 172.6887 668.2751 172.6887 668.4938 c 172.6887 668.7321 172.6497 668.9235 172.5794 669.0719 c 172.4427 669.3415 172.1575 669.4782 171.72 669.4782 c 171.2395 669.4782 170.8372 669.2946 170.5169 668.9313 c 170.1927 668.5641 169.9622 668.0329 169.8294 667.3376 c 169.1575 663.8688 l 168.0794 663.8688 l 168.845 667.7438 l 168.8958 668.0329 168.9231 668.2907 168.9231 668.5094 c 168.9231 668.7477 168.8841 668.9352 168.8137 669.0719 c 168.677 669.3415 168.3919 669.4782 167.9544 669.4782 c 167.4739 669.4782 167.0716 669.2946 166.7512 668.9313 c 166.427 668.5641 166.1966 668.0329 166.0637 667.3376 c 165.3919 663.8688 l 164.3137 663.8688 l 165.4075 669.4782 l 164.3762 669.4782 l 164.4856 670.1032 l 166.595 670.1032 l 166.3919 668.9938 l 166.6614 669.4079 166.9739 669.7282 167.3294 669.9469 c 167.6809 670.1657 168.052 670.2751 168.4387 670.2751 c 168.927 670.2751 169.3059 670.1501 169.5794 669.9001 c 169.8606 669.6579 170.0091 669.3219 170.0325 668.8844 c h 170.0325 668.8844 m f Q Q Q Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 76.18750 -11.18164 cm q q 2 j 168.97 671.4001 m 168.97 668.1032 l 172.2512 668.1032 l 172.2512 667.1501 l 168.97 667.1501 l 168.97 663.8688 l 168.0325 663.8688 l 168.0325 667.1501 l 164.7356 667.1501 l 164.7356 668.1032 l 168.0325 668.1032 l 168.0325 671.4001 l h 168.97 671.4001 m f Q Q Q Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 88.31641 -11.18555 cm q q 2 j 165.0794 669.4782 m 164.1262 669.4782 l 164.2512 670.1032 l 165.2044 670.1032 l 165.5794 672.0251 l 166.6575 672.0251 l 166.2825 670.1032 l 168.3137 670.1032 l 168.1887 669.4782 l 166.1575 669.4782 l 165.3919 665.5094 l 165.3294 665.2047 165.2981 664.9665 165.2981 664.7907 c 165.2981 664.6657 165.3137 664.5719 165.345 664.5094 c 165.4153 664.3532 165.5872 664.2751 165.8606 664.2751 c 166.1419 664.2751 166.3645 664.3571 166.5325 664.5251 c 166.6966 664.6891 166.8177 664.9626 166.8919 665.3376 c 167.7044 665.3376 l 167.5677 664.7633 167.3333 664.3454 167.0012 664.0876 c 166.677 663.8297 166.2278 663.6969 165.6575 663.6969 c 165.0403 663.6969 164.6302 663.8376 164.4231 664.1188 c 164.2981 664.2829 164.2356 664.5251 164.2356 664.8376 c 164.2356 665.0329 164.2591 665.2594 164.3137 665.5094 c h 165.0794 669.4782 m f Q Q Q Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 93.93750 -12.51758 cm q q 2 j 166.9231 664.9626 m 166.6731 664.4938 l 166.5364 664.2633 166.3216 664.0719 166.0325 663.9157 c 165.845 663.8141 165.6028 663.7594 165.3137 663.7594 c 165.302 663.7594 165.2981 663.7594 165.2981 663.7594 c 164.7434 663.7712 164.3372 663.986 164.0794 664.4157 c 163.9114 664.6969 163.8294 665.0329 163.8294 665.4313 c 163.8294 665.6383 163.8489 665.861 163.8919 666.1032 c 164.0247 666.779 164.3059 667.3376 164.7356 667.7751 c 165.1419 668.1891 165.6809 668.4001 166.3606 668.4001 c 166.8372 668.4001 167.177 668.3102 167.3762 668.1344 c 167.5637 667.9665 167.6614 667.7008 167.6731 667.3376 c 167.6731 667.1969 l 167.9231 667.6501 l 168.0794 667.9391 168.3137 668.1579 168.6262 668.3063 c 169.0481 668.3063 l 169.0012 668.0563 l 168.72 667.9704 168.5052 667.7985 168.3606 667.5407 c 167.7044 666.3688 l 167.7512 665.0876 l 167.7591 664.6501 167.8137 664.4079 167.9075 664.3688 c 167.9387 664.3454 167.9778 664.3376 168.0325 664.3376 c 168.1887 664.3376 168.4114 664.4157 168.7044 664.5719 c 168.595 664.0719 l 168.2903 663.9157 168.0208 663.8376 167.7825 663.8376 c 167.5403 663.8376 167.3372 663.9196 167.1731 664.0876 c 167.0169 664.2438 166.9387 664.4352 166.9387 664.6657 c h 166.9075 665.7751 m 166.8762 666.9938 l 166.8645 667.6383 166.6653 667.9665 166.2825 667.9782 c 165.97 667.9782 165.6614 667.8063 165.3606 667.4626 c 165.0989 667.1813 164.9075 666.7204 164.7825 666.0876 c 164.7278 665.8063 164.7044 665.5563 164.7044 665.3376 c 164.7044 665.0758 164.7395 664.861 164.8137 664.6969 c 164.9583 664.3844 165.1966 664.2282 165.5325 664.2282 c 165.8958 664.2282 166.2669 664.5758 166.6419 665.2751 c h 166.9075 665.7751 m f Q Q Q Q Q Q q q 1.00000 0.00000 0.00000 1.00000 0.00000 -11.18480 cm q /Tr1 gs 0.0 0.0 0.0 SCN 1.2 w 0 J 2 j 264.7981 667.6317 m 277.7903 667.6317 l S Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 105.73438 -4.54102 cm q q 2 j 163.7669 665.1501 m 164.2044 665.1501 l 164.1927 665.0641 164.1887 664.986 164.1887 664.9157 c 164.1887 664.4157 164.5325 664.1657 165.22 664.1657 c 165.9075 664.1657 166.2981 664.4157 166.3919 664.9157 c 166.3997 664.9665 166.4075 665.0329 166.4075 665.1188 c 166.4075 665.2126 166.3606 665.3102 166.2669 665.4157 c 166.1731 665.5172 165.927 665.6383 165.5325 665.7751 c 165.0169 665.9626 l 164.6614 666.0758 164.427 666.2126 164.3137 666.3688 c 164.1966 666.5251 164.1419 666.6969 164.1419 666.8844 c 164.1419 666.9547 164.1458 667.0329 164.1575 667.1188 c 164.2395 667.5133 164.4466 667.8258 164.7825 668.0563 c 165.1262 668.2946 165.5403 668.4157 166.0325 668.4157 c 166.5325 668.4157 167.0364 668.2946 167.5481 668.0563 c 167.3606 667.0876 l 166.9231 667.0876 l 166.9309 667.1501 166.9387 667.2047 166.9387 667.2594 c 166.9387 667.4665 166.8645 667.6383 166.72 667.7751 c 166.5833 667.9196 166.3528 667.9938 166.0325 667.9938 c 165.3762 667.9938 165.0052 667.7672 164.9231 667.3219 c 164.9114 667.2672 164.9075 667.2008 164.9075 667.1188 c 164.9075 667.0329 164.9466 666.9391 165.0325 666.8376 c 165.1262 666.7438 165.3489 666.6383 165.7044 666.5251 c 166.2669 666.3376 l 166.6614 666.2126 166.9309 666.0485 167.0794 665.8532 c 167.1809 665.7047 167.2356 665.5641 167.2356 665.4313 c 167.2356 664.8454 167.0012 664.404 166.5325 664.1032 c 166.1653 663.8649 165.7044 663.7438 165.1419 663.7438 c 164.5872 663.7438 164.0637 663.8688 163.5637 664.1188 c h 163.7669 665.1501 m f Q Q Q Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 100.39062 -9.67807 cm q q 2 j 167.0794 654.4938 m 165.1575 658.7438 l 164.5637 658.3063 l 164.4075 658.4469 l 165.6262 659.3376 l 167.4231 655.3844 l 171.845 664.1188 l 171.8645 664.1696 171.9114 664.1969 171.9856 664.1969 c 172.0364 664.1969 172.0794 664.1813 172.1106 664.1501 c 172.1419 664.1188 172.1575 664.0758 172.1575 664.0251 c 172.1575 664.0016 172.1497 663.986 172.1419 663.9782 c 167.3919 654.5719 l 167.3684 654.5212 167.3294 654.4938 167.2669 654.4938 c h 167.0794 654.4938 m f Q Q Q Q Q Q q q 1.00000 0.00000 0.00000 1.00000 0.00000 -11.18480 cm q /Tr1 gs 0.0 0.0 0.0 SCN 0.426 w 1 J 2 j 272.3372 665.4833 m 277.5794 665.4833 l S Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 108.95703 -16.69336 cm q q 2 j 164.0637 663.8688 m 164.845 667.8376 l 164.1106 667.8376 l 164.1887 668.2907 l 165.6887 668.2907 l 165.5481 667.5094 l 165.7434 667.7985 165.97 668.0251 166.22 668.1813 c 166.4778 668.3376 166.7552 668.4157 167.0481 668.4157 c 167.5364 668.4157 167.8684 668.2751 168.0481 667.9938 c 168.1497 667.8141 168.2044 667.5876 168.2044 667.3063 c 168.2044 667.1266 168.1809 666.9196 168.1419 666.6813 c 167.6731 664.3063 l 168.3606 664.3063 l 168.2825 663.8688 l 166.8294 663.8688 l 167.3294 666.4313 l 167.3802 666.7204 167.4075 666.9626 167.4075 667.1501 c 167.4075 667.3141 167.3841 667.4508 167.345 667.5563 c 167.2512 667.7516 167.0364 667.8532 166.7044 667.8532 c 166.3372 667.8532 166.0364 667.7204 165.7981 667.4626 c 165.5677 667.2008 165.4075 666.8258 165.3137 666.3376 c 164.8294 663.8688 l h 164.0637 663.8688 m f Q Q Q Q Q Q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 116.13281 -1.82241 cm q q 2 j 163.6575 652.2751 m 163.6575 652.6813 l 164.9544 652.6813 l 164.9544 663.8688 l 163.6575 663.8688 l 163.6575 664.2751 l 165.2981 664.2751 l 165.2981 652.2751 l h 163.6575 652.2751 m f Q Q Q Q Q Q Q Q 0.6707 Tw BT 163.47 652.686 Td ET 0.0 Tw 0.0 Tc 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.6707 Tw BT 251.97 652.686 Td /F1.0 10.5 Tf <2c20776865726520> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 8.25 Tc q 293.2535 654.3685 m 301.5035 654.3685 l 301.5035 659.1515 l 293.2535 659.1515 l h W n 0.0 0.0 0.0 scn 0.74752 0.00000 0.00000 0.74752 74.03991 166.42092 cm 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 cm q Q q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 -0.17578 -6.39648 cm q q 2 j 299.816 664.1671 m 300.1168 664.6241 300.4488 664.9679 300.816 665.1984 c 301.1793 665.4366 301.5816 665.5577 302.0191 665.5577 c 302.6637 665.5577 303.1129 665.3546 303.3629 664.9484 c 303.4957 664.6984 303.566 664.3741 303.566 663.9796 c 303.566 663.7296 303.5348 663.4406 303.4723 663.1202 c 302.8316 659.7765 l 303.8004 659.7765 l 303.691 659.1515 l 301.6285 659.1515 l 302.3785 662.9952 l 302.441 663.296 302.4723 663.5577 302.4723 663.7765 c 302.4723 664.0148 302.4332 664.2062 302.3629 664.3546 c 302.2262 664.6241 301.941 664.7609 301.5035 664.7609 c 301.023 664.7609 300.6207 664.5773 300.3004 664.214 c 299.9762 663.8468 299.7457 663.3156 299.6129 662.6202 c 298.941 659.1515 l 297.8629 659.1515 l 298.6285 663.0265 l 298.6793 663.3156 298.7066 663.5734 298.7066 663.7921 c 298.7066 664.0304 298.6676 664.2179 298.5973 664.3546 c 298.4605 664.6241 298.1754 664.7609 297.7379 664.7609 c 297.2574 664.7609 296.8551 664.5773 296.5348 664.214 c 296.2105 663.8468 295.9801 663.3156 295.8473 662.6202 c 295.1754 659.1515 l 294.0973 659.1515 l 295.191 664.7609 l 294.1598 664.7609 l 294.2691 665.3859 l 296.3785 665.3859 l 296.1754 664.2765 l 296.4449 664.6906 296.7574 665.0109 297.1129 665.2296 c 297.4644 665.4484 297.8355 665.5577 298.2223 665.5577 c 298.7105 665.5577 299.0894 665.4327 299.3629 665.1827 c 299.6441 664.9406 299.7926 664.6046 299.816 664.1671 c h 299.816 664.1671 m f Q Q Q Q Q Q Q Q 0.6707 Tw BT 293.2535 652.686 Td ET 0.0 Tw 0.0 Tc 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.6707 Tw BT 301.5035 652.686 Td /F1.0 10.5 Tf <20697320746865206d65616e2c20> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 4.5 Tc q 369.948 654.6325 m 374.448 654.6325 l 374.448 658.8875 l 369.948 658.8875 l h W n 0.0 0.0 0.0 scn 0.64780 0.00000 0.00000 0.64780 130.29653 232.06168 cm 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 cm q Q q q q /Tr1 gs 0.0 0.0 0.0 scn q q 1.00000 0.00000 0.00000 1.00000 0.53125 -6.39648 cm q q 2 j 370.3699 660.6844 m 370.9793 660.6844 l 370.9675 660.5672 370.9636 660.4656 370.9636 660.3719 c 370.9636 659.6531 371.448 659.2937 372.4168 659.2937 c 373.3855 659.2937 373.9363 659.6531 374.073 660.3719 c 374.0808 660.4344 374.0886 660.5281 374.0886 660.6531 c 374.0886 660.7781 374.0183 660.9109 373.8855 661.0594 c 373.7605 661.2039 373.4168 661.3719 372.8543 661.5594 c 372.1199 661.825 l 371.6199 662.0008 371.2839 662.2 371.1199 662.4187 c 370.9636 662.6375 370.8855 662.8758 370.8855 663.1375 c 370.8855 663.2312 370.8933 663.3406 370.9168 663.4656 c 371.03 664.0281 371.3269 664.4695 371.8074 664.7937 c 372.2839 665.1258 372.8738 665.2937 373.573 665.2937 c 374.2605 665.2937 374.9675 665.1219 375.698 664.7781 c 375.4324 663.4187 l 374.8074 663.4187 l 374.8269 663.5125 374.8386 663.5945 374.8386 663.6687 c 374.8386 663.9578 374.7371 664.2039 374.5418 664.4031 c 374.3425 664.5984 374.0144 664.7 373.5574 664.7 c 372.6394 664.7 372.1199 664.3797 371.9949 663.7469 c 371.9714 663.6844 371.9636 663.5906 371.9636 663.4656 c 371.9636 663.3484 372.0261 663.2195 372.1511 663.075 c 372.2839 662.9383 372.5964 662.7937 373.0886 662.6375 c 373.9011 662.3719 l 374.4519 662.1844 374.8308 661.9539 375.0418 661.6844 c 375.1863 661.4851 375.2605 661.2859 375.2605 661.0906 c 375.2605 660.2781 374.9324 659.657 374.2761 659.2312 c 373.7527 658.8875 373.0964 658.7156 372.3074 658.7156 c 371.5261 658.7156 370.7839 658.8875 370.0886 659.2312 c h 370.3699 660.6844 m f Q Q Q Q Q Q Q Q 0.6707 Tw BT 369.948 652.686 Td ET 0.0 Tw 0.0 Tc 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.6707 Tw BT 374.448 652.686 Td ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 11.6002 Tw BT 163.47 636.906 Td /F1.0 10.5 Tf <69732074686520657374696d617465642073616d706c65207374616e64617264> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 163.47 621.126 Td /F1.0 10.5 Tf <646576696174696f6e2c20616e6420736f206f6e2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 377.448 683.43 m 422.34 683.43 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 377.448 602.3099 m 422.34 602.3099 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 377.448 683.68 m 377.448 602.0599 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 422.34 683.68 m 422.34 602.0599 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 380.448 668.466 Td /F1.0 10.5 Tf <32> Tj ET 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 11 0 R /F3.0 12 0 R /F1.0 13 0 R >> /ExtGState << /Tr1 14 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /150bae+NotoSerif-Bold /Subtype /TrueType /FontDescriptor 19 0 R /FirstChar 32 /LastChar 255 /Widths 21 0 R /ToUnicode 20 0 R >> endobj 12 0 obj << /Type /Font /BaseFont /f59e4f+NotoSerif-Italic /Subtype /TrueType /FontDescriptor 23 0 R /FirstChar 32 /LastChar 255 /Widths 25 0 R /ToUnicode 24 0 R >> endobj 13 0 obj << /Type /Font /BaseFont /b8a464+NotoSerif /Subtype /TrueType /FontDescriptor 27 0 R /FirstChar 32 /LastChar 255 /Widths 29 0 R /ToUnicode 28 0 R >> endobj 14 0 obj << /Type /ExtGState /CA 1 /ca 1 >> endobj 15 0 obj << /Type /Outlines /Count 1 /First 16 0 R /Last 16 0 R >> endobj 16 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 15 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 17 0 obj << /Nums [0 << /P (1) >>] >> endobj 18 0 obj << /Length1 8920 /Length 5376 /Filter [/FlateDecode] >> stream xZ P[ו'!B`'#@d0G]W $!, 'NiZ&v׭S'Lͦ;vwfY'&i:v͌NOiϽz`M'|s=ܫ Tdx=5spމ_�cn3^G(d|>ׁ 3#?+ #x iw'ثuG#A(̯ yg' Bj!vlbf2u>*DαԷb`Fd}H9/a NA9JP$B-yMJ*JSχAIjӵ^cm7/K..nqփl jP>D'S kҪMдkMLFc牞{aEoy5wa4i8|Gä%�֣Bb䜠6Unbӫ Wk+9uL d:e_KGr" 8{s5Ux>Ĝ2g OBYBn l 8]4Šo k3T&SV2:~(ڗY\aMQJ!�Pd Tܵ򲪜@@ ?E<cq: |KxěL)Y[9%L�9͹UɰN|9=yP*j!9Q8!]KlUWmbLy+ P``jZp5xO5u4ۛ*CoN定E]FAe2;Zy^ބ+B鴜6 1_6o*k:mj`dm+u6A4�]cz%**j0Aw`G/<S=\u)UÁwϜŁzmC^RW|y_雅4SNqk)kGL%W!#jEs1{e**6x9$rpڬ-&Ϸw<=T,5%hF@JU1l3Gog7׵[6Wf%hZZm=:Lu|q39.'hvXҘi\#^(n^X{j[rqsV[mFm}hp3['O $fye}M#뼼%Uvuvul�Qcl)幹fŨ2rsLl\]:{iVvNHOꊋ6ddl[\"eLVhjyXXrײL xӫVbMҌ̢!NhegyMRw|Œ|}[yWG UhmkEF3ϴMvV[{uUd'5X6$ l#o/ZX^gQch&صI|;(}G{J#J%ؗyӪ-=]|1NÊ1RViq`)^wb-^;Gfg~ԙ&ہ*Q]NXPg\&\YS-%FJ-Д(LTm8-2ؠ,WgR̅I<XRG&uhI[wOxpۨ/WOkw<3I9@ߵ3Urt1o/ ɅY|=U*oֲ7tĬ UR8uQu^[ )% ]SڜDZKp?ZWrGڭY XVK 7i-]}3#%mNm^ejCTSesAyH]l)6wY(Xkn%oU>oUɺPĕ5!.TWSkUGJlֶ:ӻt/%,.<"#-IUAcK4IӃ`5dnmC\ច̽^cTEr'<}/~s%@;'y BTRጨ-jf\MKpNz0M K7[OE2yD}pYh+.Frn ʋhd8>@LlξNģh,bq?}XfKw3Ȃ:P'40AT2HgaT8;cBߔpq;wڋ΢tIYs( J8pYe(HeiN@I&Ys�%UqT)DT4Ix]“v昄'|?%<mbSV~c%| jb$<9},h} OEU gۃ3{CI_,;)/o7SS  ް71vD3h/ !?D>tW$V A8F�T+ S S t큷z oDP ^jm-8;<[4OOzdJnie/x'`$zhwdNPx |A8Cx 1WGRzZy7 =ހ;NN*~97pCԼtU! uY\Ĩ/ҝ-ްrwm)%I&΍w( iÏWzJ#�:ܠ,GċX6?"q?4wa0 '#84ʌ8\>1[4@0d 2RFՇ#w~KYXАʣ#8}˔;HN{!>v[7㝎 [YaGBYi|[f/GmC]}Ch`kj^m \m2wB7!{W'{zr= 0Yi?# IY ΆY[(&}&ꠡL6NB6weMA?4=H{Ta@G8}4rV♇zWɿN7}k;49Zv(PCߵCoy޽ېCP at| }7 ^ţݑac#�(&gϊ+1 ޖ03NOh"Ir',=⹘h,3k!'ҭqr sWɽRf%qg"aC?e&}=waX 5P'qz'uo_Nk%+k>#{�()dB j oȋ+7f�À-m]&Ȝcx_ +c8ڿ4o)Ħ-Yb.5멱4(pJxcch>$D0f-+�Oxʇ|9`2A11OScxXSlY 8e,OQ,xG3Uÿ0îG7?Xx1r՗R:lM9. s1>6͗\_:zI%/^zU-VzK=.?\99̓@>|ʓlک+Dt7rIu?}I|_93-Ǐ8+ǙyI9{z=nm,?W&L^d',7[x1{=z֚2e�Vclh(?v c4r 4jSp:NV҆(#iGO]McZҮ]OchׯïWc. u n1v6lE4ucǝߘGmb!rݢ3!]P6g8胁` 8(;P^GHxEb:!Ȭ.<;K)xe#d:C-=ݛm]VK{[eSsScC}]mMuEѠ/+).* hUʴԔDE\Ʊ2" ]]z n�ܫ�JvwQ1vI3HN!iKW$oBM2*8N^[(Q&fl{|sV-$' $}ZHJ2(DY%0%kB̊lVFulb`CbUPJ4ҭvȺak{TL׉E,}ٰrX&Xh\}$eJNHѵ Bv@x:c5?&Jana͚+D;`҈ b;lsLas?-NMw.kA S,e3F?p\@f)2.2H0ٿ<2%@69+y+[?BP74Za.#7:,^<~^AX` P)dʜ27G0P VǗ x}إ~6[ʑu3.HB'Q%䓸et4MT5.V [Hm|Y/#S샅*^]BN Qn,9<bK]9;4ZNuh~�iw"> [u+ޡFphj<EEw0 J� &x hJHEIY5^7RHrM^{ײ69aAO{F}üdf(HB85�c@ HܳITy6)4?R^nV „0̐`:_a-s >G BC7nPf4 6Ϝ`w4ih 2P7jӗ׶  f|о!vWsa9^{ A H0D 0 *yٌ~:Q1bh2ǔ#d)1{H~r\NRH ,baAش1IB[Oj/{`Ni>֓?P&]DYhVvQL6Bko+*N_=/ sSϟ],v-.ZDqh'µwaBw32י_2WI,_Gvٌ2c> 6JD"Eq>eT\k?| $T'X 0O1S"6*g5)f^`^펍~%qB U< endstream endobj 19 0 obj << /Type /FontDescriptor /FontName /150bae+NotoSerif-Bold /FontFile2 18 0 R /FontBBox [-212 -250 1306 1058] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 20 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 21 0 obj [259 600 600 559 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 767 600 600 600 600 600 600 600 600 952 788 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 599 600 526 648 570 600 600 600 352 600 600 600 985 666 612 645 600 522 487 404 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600] endobj 22 0 obj << /Length1 7984 /Length 4729 /Filter [/FlateDecode] >> stream xY{TSW9y  e GPZ+H@y%@$>Vg˶kjֵzNEgM[]ۇ}N;Zv:%9 mg{{oH��Ip(_�$o'd�h<}ng[9g?xR' mxN$_ea5Q#1ҴZRUe�THwyH89e#HķŹsw~v[a@Z!@oIHUwo o>DljG,Rk7 >!=1ARN/ZdNJN%'Ew<؃ꗾ>eG/KկL$2Brx['"S*בc97"ϓK q2hB=^K{/r<r/zLfAJ)7ɞQY.je34RnŢ|)W`tjp1iŭd5ϩ]֑pޞsIEة2|Xh,SC…H/&Wϫؤۋd2"G'$n/g/%ߺS$h&9C.MgqY\T vtZݺT2W64H:8JUɝaF2LLݑ".yP?n><-g ?YCыh�eVӉ;2WIUB*Qbs$ŗg+ղ =x*~CkfG?/մ-֡lo*/K'̯XĽ.Պukɻ~9dw+vO Oü<H#\gMWocv(rzWmo^Z53`)Zԥ2B^. "Jy<jmqvzFim̷Eg[)ٜl݇VZTr%Ef_ly ޞݩMZU�9ҢInJwS9܊ >Rx8e=g^-6zIr oK%g[$q8U<޽K"'`"ި| ~_)j˹49o<>p$@:ˆ/ |;r$rۤN[Vrd=9׫g_ߵȧ1[h82g qWfݺlj_SOG#Ê{`דL.̏of&//j,K+זkX)>dkV|3-3Wu]^Nhl% n\RKUoLS+p;8$S)[:Rnnͷ G>hT|m?ܿ<VHgz&5?F*O֐_$6apBPބU^48O#TCm@Uaˈ_]Fؑk kc}.IO ?SP=Q3XDi`'6C{@_]X- =�BZPUyEljZ#јqԹw3o=؏w(H=s39둏2J 4*hfhVЎI$ .'G\� <ޅF\kq @UK)WC&(fJ[*<Z0 dLBO\|YXجFxV [<V979:OVO" qOa0K_"틵Ѐe KJM-bZG[YWnW1Ԃ0^@C]R,)я^L87RA7c>['F9ڍ6bFOo4 =ۍRCDi^^CCԷ"z]UW6G (%ŋ |sb6@⅕y3u(:VSԽI‹bl uЀwE=3iz/NDOpb~-#sw؍ÍGmng-FyY6ot0nB]1!Z2ܯi% F g5EPL(Be%%6m*-C%gkE, 6O1 btE Feb?LޯC.{dߠuAL"p|qA=@C7ZVѦc^c(דZ x1F9>[mk.ZnwTV7,&+mjMFԈV7K�uoo Pov$pw{{ݴt@7 sސ3^Fp$\BL-Ɯ(]k--$2+iߺX bW7*YuoUS$"rgߣ!uV!EL'/sq+l6N3qlx"6kt5nҭX6"mۄŃ Q#aXoxvS<-vV1 pj3zf qя(f;+E$t}qX:6wX,\~s[؎tmX>9 aP)Ko ,z%MU7lA<bu^g1YyHŒ խK^5$++jb{-9?v->Ro>ճA$3d:t%F,_W i"<awaVH죄*05G/F=Q27JtQ"@Dc$y#H1OPh 5`IH Jƒd*ȓ(+ zM#ȩZ}9HW*,+] }_(y{;T@4\)~1!`A$'=xTX4$ 6eH}fZ4[fkp d4Adv.KԓT,h=<ծT8mM,2m6d?c?glW7ۮJ^'u+V$ݞQnO!v]y] 藕`*\P|&rX ^ˠF?o j2Jج hkmS&;<++ -f ;#<Ҿc. Yrم kldžnHԴPH�WA�  X c`O0 E_,Y X1S`jwm֖ի-u+&cmMjo[tI҅%E͕rs3)I JD7$s';eUTWWhɉs)M6Oi'gS9 s!i$:RD7%-l2JT۫y[ω$$rrp5ezT&$7z¦N#IjE0l0ߴl7$6,晜.a2fZ钑wA-)kje-ILu#AWgAKr98dщcâ)~PN)HFygnP2&ubSYhk@sK"N4{aDΰs4K:)<QYvY!c͘i-w:d!L=NDJY>}݀@wOsrãBBx=:vYd=YF˪<K2.̧,N~-+G Х%휗V|t <�3 81Z䧤ҥarLSDP+ކKڈ Sida pvbF>D zf"L-CaVne\b2)idI-P=?f-EndW#gwfpPGVlh�Kw;K4Ђ8]QjmX(`TyHL99./:,uP36Xڼ8|upTYNxtsjr>FOfT[7.MHS[Ӟ{ 8"9nKÝ�1p2<uHn]P`1p/+>WbeBMr r{`ΔY+YwCek [d`)lXW?[ϒىW4_e[a KVr΍;֬\@l5EՌHdgˈv8�N@Κ8NP22IjE"g7�l*po8t 1L7 bc(ezǸgK'r2#Gd"@H+FI%w 0U1\p-f Ewu&"sҡQ̀AK7=^_/"ȭI8kN;Kـ8�;b�|kns~_G&0bC(}?(shH6Y\&ො!JqRdz+`~=bj@;  OVklꗾH!ɢwȷb<oӼv6ƢiJ54뵷i/+>M'5Ĥ@P!CJtCrDL @]N endstream endobj 23 0 obj << /Type /FontDescriptor /FontName /f59e4f+NotoSerif-Italic /FontFile2 22 0 R /FontBBox [-254 -250 1238 1047] /Flags 70 /StemV 0 /ItalicAngle -12.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 24 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 25 0 obj [259 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 626 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 579 600 486 579 493 317 600 599 304 600 600 304 895 599 574 600 600 467 600 368 600 538 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600] endobj 26 0 obj << /Length1 9516 /Length 5883 /Filter [/FlateDecode] >> stream xZ}p[Օ?=IXXO~?b[3%ۖ,%i"ٖm%%$9`RPBBMl`R`.N]N2SJI Cð^='vw={ι1�H (y_m_�-3sKӓ?~s��$?;>m% 彳~' "}Er]( G;,P0tЂo_Cԗs$棺)nu BakzL(ӡw��&Eh�~1�R/Ȇ:</( A8_jZ&dj!+g8F(�3 FCaY5s <iτC%9AԐ`Ԧq ƤQEGef7;+nչZ]6LԚSiJ둵ɝ+ PXhhE.,fe<YQZ+ %uYGcR(P[aG+TZʣY*Buz^2 Ǟ!Ԯ'k$h/Z=X1cjUkP,v{'vgc}iøcl%E_])| #{ȡH)HM͠v1Ӑ)r½l-4e.l1^l)T$HRܙZI.Wb~}Mcgܴ{_ke}<-$!dK.^_qVlIƋ]ev;_]4w>sZAU*{!Chc/:-樂2ҞmϨ⮽)C󈥱ǜm;6~4TUdطKP͈ܲvEU~/ 48s_u8zdںwVӴ^WO_LV]޷z{vnlڌsgOv;EΫxCJʓ3\ĭȩ..1Z>n"{:[m?z&osv s NbeCta%ХD9so6YKwTny}v%IM"S[5[ۈ^':|8[4Wnoc M.?]aK֊^~qo\}ͻ~ii_[U<}gs)zSwʠ ٺյ7 ڒeUItbKWwglhVŘ)h*J'.+Ih7>oUVq_-]d/M-V=È{ƍvЪT u;caqVPk4d+iZr7bl?[j~vR0Z[ b=}mh?OL;"ژ 6[(oZtJYV_yf}kv}f~{o-IZd)HI)35B9Ly3{:y<Sƅ~V\9Հg n&|Tmޜ8Nlܞ('m$iٱ%3C5 |eS=d 䙆2�U-vm�~ilp;`_uFUW$tzx9htBS~џ1vm\UhX^I ؐ_JZ&hVΞ\IB?;칎o=~~ypHcc9:.U,|Cs Mvg!rĖ96@1Z1oo;)[q/FچMG9|Z< C =W[O̲m+%RR,ԗ},R1o=kUFnfdv<s#{ ܩu6$i춇L]5J}5ltM-@PW-ľw-bnW셶 Vt215<ۢ+ܒ]lk(i\+;WS.l58ו u:tUzAl:溋 ;m3܊梒Ke~auRd2͒FL(,9UH^U;5z r>VvRs#bq`@`q=衹2֐%D,W3c1uR%"ċjZ[[e6}کD=`{>3^J+(?r,bN쎢޼!#9ՔQkqRZ> ? oMq+MK%2dRtZ*T?N9ټ =Sc|23ME>յ&IٙJ¾-s'$kbfW<vٸ.Wю KNY{//18b7u-3q7< ?#2G^\w{>3«xJqUY*)Ӝnuhb fe;a�nQ.Z0r']IhPA1GǿvQ˽ %'A "gb}O6}(+!9<hIv#Y#P<@?gՈğa|J).Qu`'X!)A}s @6[eZ77+x! ] 00j9l#if}(qIpB z!demd\I$G%WB q%6Wxz'丌!q5l'Dri2\'x6O=OV׾ *Of~PSI/\S?4K4I -3Qaj I67'Ц0ÇS&ABa ~F;ubk9 0 &!2ϑk"Lӏa9`4(Ái@=Q ?mz?8 a3 }.K!4y7X* ZQӴVma3oK?SŖH T,u N Q7WSWSN1=Lc "h7 鍄o)E>AĂ>9 7#ah;su%]J>>a60%ҩ(*5jKeVD!pv 03 7cjѸ`FCfja&Ԍ,Sne?&TrODUf,O˜Htq*7~]E\F,GGp!*~/sIB\\_Cxx zTV+ D"HmT-FG+A06260G{{p�m#v+� Ba$"B`>40t0H?L sE ""t!Wp/!xRp1,,&B,Մ19+oF}m_q׶>'Q^`Ɉ"֧ضQ5 s&}4T rPŢb{FYҙ@}q>Vbre;x3JԎq ;g0`9r78ADL탈وnVu>籀t7CuѪ8;a&َ݆̄0lRw7MW9 nI)ؙNۺpqߔyӄp]'[d6,6œqz^Lh ̙`G i#k>Ĭ'] S=!Y͎>׋'؛n֦%Y0DV,%9D^IZ5p#$�kКSZ#GֈfĆVC$}\%GWI[3ѡ<5Gg�C)KBQJ'I>ɬO2#В$!z&^vG:I@,C"Qa_%QgcIkm%(]ě]X>j`I (qF9153ۚKdQ.KDun};/"HTswGx/5o}W^嬏't<IDxÇ!C>HӚ\{\9v&( S/SO)NzԅSWNRR,dx냝A>:fkz 9,S֩'x/ُ>38hOWx:aqY]C.~syyyũ`:eD$:gvu3;5N o|<B:+|t>G l$+cFz=W2:[R+s !{>qڷJ;FݒwWŠVbEm%=H$Z.)ߏr9D֑Hy5`?/BEag`/,=QC\Rd?gir:] XB\:<n@_oOwWgnkojminjlY_W[e1*+JKEbAФ&'%TJ,V8 {%EUIeчoRG{Ni֓hfh . a7OE (fB* vA"^!u]vxo%9&IdIbhVJ+Sotaî3<RhgM`c*%MJ`*�5 +-wN)qʷ->;IRhnu./UvTN\DR51fD͈OFTF@Hr(t,{}֎NF\^IIY9arskIy$w4ʋ8c0Cw:Cg5t ]sV@A::¬{ryik-YNrtpu/K c@O+D'A\ޒ!4=VuOIY਍0Re  3 "z+EBeUwy;V>GG袀O2!I+_'5u!0Ik;);Yp,s=y=y}Yb8~.ةl`c=5-齺)ܕӂ[gT~ Jd"f`Im;*v7Pu 5[W)jxv t`EloRJ0֠sJúYp9͐.&Jzum**[1į ybZo⍘5P (﹔U-E8+H!7]yD&G&iYHy]dJ庍JL&vܽ,,e\Z- w 4b F aYZGͬ7f;tӹ@/k׾"{W5�½c9ټ힕"ls,�XQT@5fu/[V<l Sc&qqLq)☕aB/"ǘW=^qFFHDlEv©R$.%E]q\E M*+n_8ďs+ϴʳʳmCp`2{2^|~_meu/] -C+w־�"|]ğyx uO}Yx~GM!w \kpDllΆ:*oTXB]|O:Oi1Π JOpeMy7!k ߁s2:wʵ7<<ŞPic{B'%pZNҪT?PT v7W,b'e+Ý[emBG 4( endstream endobj 27 0 obj << /Type /FontDescriptor /FontName /b8a464+NotoSerif /FontFile2 26 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 28 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 29 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 250 500 250 500 500 500 559 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 612 500 500 500 500 500 500 500 500 500 500 500 500 562 500 492 613 535 369 500 634 319 500 500 310 944 645 577 613 500 471 451 352 500 579 861 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 30 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000048336 00000 n 0000048688 00000 n 0000048730 00000 n 0000048778 00000 n 0000048830 00000 n 0000049000 00000 n 0000049172 00000 n 0000049337 00000 n 0000049388 00000 n 0000049462 00000 n 0000049587 00000 n 0000049632 00000 n 0000055098 00000 n 0000055317 00000 n 0000056679 00000 n 0000057593 00000 n 0000062412 00000 n 0000062636 00000 n 0000063998 00000 n 0000064912 00000 n 0000070885 00000 n 0000071099 00000 n 0000072461 00000 n trailer << /Size 30 /Root 2 0 R /Info 1 0 R >> startxref 73375 %%EOF ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/list-checked-glyph-fallback.pdf���������������������������0000664�0000000�0000000�00000030664�14163570564�0026375�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20191011015126-06'00') /CreationDate (D:20191011015126-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 13 0 R /PageLabels 14 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 277 >> stream q -0.5 Tc /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 50.171 796.11 Td /F2.1 10.5 Tf <21> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 66.24 793.926 Td /F1.0 10.5 Tf <646f6e65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.1 11 0 R /F1.0 12 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /f955b9+mplus-1p-regular /Subtype /TrueType /FontDescriptor 16 0 R /FirstChar 32 /LastChar 255 /Widths 18 0 R /ToUnicode 17 0 R >> endobj 12 0 obj << /Type /Font /BaseFont /4c01e1+NotoSerif /Subtype /TrueType /FontDescriptor 20 0 R /FirstChar 32 /LastChar 255 /Widths 22 0 R /ToUnicode 21 0 R >> endobj 13 0 obj << /Type /Outlines /Count 0 /First null /Last null >> endobj 14 0 obj << /Nums [0 << /P (1) >>] >> endobj 15 0 obj << /Length1 3124 /Length 1884 /Filter [/FlateDecode] >> stream xV[lW쮯qb;N1lxҒԳc7Y`Hƻ޵ݱ]S=ݴ\TEaRPAy@UBRJhٱ]E>3x�}/7KĔ@Hڗr鑣�KI:hHoGI d2]%KlO_t>??_*VAq&_̼uc\_Swe#Ur/R~՞Vr.J9YG{19B* mi*k|uʹ$$G+[7}"c4grrq_Ga\Uͫpn}A9fHe]zV>#wx1ogv/wtW)}{}''k#ELiS>EOԴ|}]ly 朢�_-ltaW7er/ROތկ)V(PgᲛ~}ؗh~~~�˚<>S[3}8xx .yx )nsJ/<N+5yiqڨi?xiyX(g2a'z8valT|Ħ'iT *S(C6$&}K1SY37Afo#R)f-2W)G&NJ{X^x_XA`싄C2r,#rKN;E@(B!zWV-xoX42UJF2遇ZΗrPo)T- cۥFp*KnlT2H=a jI{@g ^d+\p9-Wi{,[a>WeYJUg+nݠ-͂D"_X:Ob;unR<mŲ;Wm/lҴ!s UFt>oY3ېB^('g1?>z|w g'P,6t*nq2hg^5h fҘY�H90m`)`%w{n&Ԗ0c5Y"V;Җ<I{jd>Zw ,yv䨣*q'i{XZn̝GzI̘XYl+ܸŒ݈ w_{~%7mH 3r X2~=bbxJbV+oQ7W{V%ďe$ ad *V}Y|YĹl~Kb9vxbERs5WD7;7>%ԑ'Έ#kգʨ8'{ 宷yN4{ˣk;wj7 7"oߟͭ <mym}aOѤ0׌+cu i5&Ǎtt9;yp&Litb ;CΞ蓱qPCOvr':٨r U53ׂ5%6oAMu glp' zelȩӯt/.,L~ EwF_I~ ׸`¡Dժ\ ^ɄMZ*u=:qeŚHͫ꘩UyUsiR܉IZA^7ӱ7hQ͜W%xbr6:HTqxU3e@-D!UnC;n F] A3Ͽw%2tET*6ҪI ^L30|o乄|"׆6GcgqG208<|кw;- ʫۤ*D1| endstream endobj 16 0 obj << /Type /FontDescriptor /FontName /f955b9+mplus-1p-regular /FontFile2 15 0 R /FontBBox [-109 -288 1403 1075] /Flags 4 /StemV 0 /ItalicAngle 0.0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 17 0 obj << /Length 227 /Filter [/FlateDecode] >> stream x]n <W4uU�L�r!o?U'`˿~2gWf Kƍ „zux}͸ Ebv88H>pE[J?` R`ѕtz oiy?okO}=פ 32));09sd_(gq6z?|2Qв>R)Jzp' endstream endobj 18 0 obj [290 1000 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj 19 0 obj << /Length1 7000 /Length 4127 /Filter [/FlateDecode] >> stream xX}pSו?=I?eAb-1F>l!/YF"Yl=K $$d!a̺dBv't33;CMKf763mvv;)tdckϽz6ݶI{~=s{�X& Q+#s�6<1=yl &cA2N> NQd2}s.P.DG(?6<Q2Xv|8 (T�m%ܻ_e;@& #�Ōg")'lne=wfPz ix q FbS-QǙG.ky�ͥSi\lYſ^b;yWW l)7mE,t;뛷n3,ԑVс]fA.*4EFҥoU?h_yzΧ_h(EARNsbػ][G,Ͷ3?gm^։G_%ughj1 պ<"2[ ki،Bˊ9\!y[^=8"HZܿgmC/_:Bt"}gp"Mۛ7nn2m8?]MZe}sl(/UX$4 şJ{:6~IemyK/Wt8m` ###UmIDqՖXK۪ FEzjv>ukiaצ|s$4 Hݢe ӻq[lGxk.^o-Z/KGgT:f|>T{[䛩ԛ,`ބ/_1MͫpI�KK}|O!._<-ZWJ�P+hA!P٠|ȕ[c ]gQA 6ѕ5Xh Ep P WU\pCEhU\dkT\ EUŵPI:U\WyPMNC9zxBL(V|.Tx*^�O 'Tx!tY9}M*^b!n񌊯Ƽ /lt2Ʀ;O3Ή :ĺRtHNr 6C! QCk’b c( c`V'"XJqIZFXOǩGNFǡyxSp(ᩉ` !y hd0i]r�bi4ÒL5mɈLE1dn #M! 3cgXcTLj8gh<L_5S'w۝q|wr*a98v8Ja0i41MrNP4f"#[b[ΥC 03Gzt0GD3Ϙܽ%,-hH/mxX1#}q,E8U8}*=ƿ{!…` G0=XzgIDtLГSL=^ڟc9ޜB=MfhP4NFG0F51Z.O5<k;Lv u ?Dm}vװ%'S^O( |Lh<I(K�,t<[I*!Eǣct" OøBpBh:r8~\NXZOǧt p kfɈi}Ic@FWc(am !YVEH/<{`GQBDzEҪ}9 /p6..3q[,/Ls>]cx#j#\sX0ny'ɥ$ߑ)nccQQ+EIcG2פO ߺpr9")!5|-D|ll圜Fl0ڔ;ӿCTϥX2H̩9 [)\ y?( b˟r^8R)#-|!s(Q߻:H9 2+ YZDƒ9Vj *nz,9%,YX,Ern,vbDu#.CKBJP*/)BBSPVf>ae5JHbypo�"k=7:toay>ƒ@\o- [ֹ=5 X뱮~٪C;d[~d}vIm&-Vks1[?m_|)X9_{\4~%..&.\7 Hw!{A^ ( s0wsNsnܭ{s9-Tߺ4qq#nXdthaa=;^Y%[d1d 8އ^׼֫E5h~xR'փ <,=UD&ފro))KAuJɭa_͒{%bNp4 % νr+yO*Rau;ГyB^򟚝neǧ6JV֘a|tST_$u$Uw:H-#Z |>~zjpNFe9Md!GPcul X»AJ:>ghp@{ۺ::?ѶgMsCm[kMUe5<V#3@EUi`D (8Qh595i]$ !Qv.C>l%?U>ʅ5(L8:*#v�u(㑌#`Gd aRKy6/~ Vk20s؍&ޥKv6NlJQf:72g 0+ IS>E ،d^TJZɮ>J\KvRXC+OImAOD H} )ݛ8%2̨D Rf(pa=cTg!!mb)BFwdm4u~f ((3/ƫ`!zn,{Yrt{|ES I234 dP?3RrTnE0Sؐ ş媏8ҵt4!9x hCS 0y;6A5FF 0DQ;bJԵOf#!0̦@`LXv63udXnH~?QtKМ=B -3 VGWq3)ODoFL:E =xȷ[5:45h$1Gk'E?*NlH]X*y5z j>|N/kJ-uvUjYztLD[7宆z:1г�,w5xj & +WO%u#:G*gs3vnr7%'%r,ݭK`#9&3<c2V+4#Bkx<o|͵=P_׼DN[i!u�==*?}Q decBA׭�3W.;!11Mr]z ? YCzD!RzG'H).Pb>:af Pl>l`A9iz^?5 d WʥGi^;}K):o/‡9v݄c1~V_7u ^;S0Kz`qqci/| � S!8=^Y]|Os_ƞ.>Ӫ͍1.JÁH]E:׾gU6,|Mm7]OX+[4iA(2]x.ώY*څQ844wVV=pQ endstream endobj 20 0 obj << /Type /FontDescriptor /FontName /4c01e1+NotoSerif /FontFile2 19 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 21 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 22 0 obj [500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 613 535 500 500 500 500 500 500 500 500 645 577 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 23 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000001167 00000 n 0000001477 00000 n 0000001519 00000 n 0000001567 00000 n 0000001619 00000 n 0000001791 00000 n 0000001956 00000 n 0000002026 00000 n 0000002071 00000 n 0000004045 00000 n 0000004261 00000 n 0000004563 00000 n 0000005478 00000 n 0000009695 00000 n 0000009909 00000 n 0000011271 00000 n trailer << /Size 23 /Root 2 0 R /Info 1 0 R >> startxref 12185 %%EOF ����������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/list-complex-dlist.pdf������������������������������������0000664�0000000�0000000�00000055762�14163570564�0024723�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.3.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.3.dev, based on Prawn 2.2.2) /ModDate (D:20200127203727+00'00') /CreationDate (D:20200127203727+00'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 14 0 R /PageLabels 16 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 1332 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F2.0 10.5 Tf <7465726d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 63.24 775.146 Td /F1.0 10.5 Tf <64657363> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 63.24 747.366 Td /F1.0 10.5 Tf <6d6f72652064657363> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.9608 0.9608 0.9608 scn 67.24 731.55 m 543.04 731.55 l 545.2491 731.55 547.04 729.7591 547.04 727.55 c 547.04 698.81 l 547.04 696.6009 545.2491 694.81 543.04 694.81 c 67.24 694.81 l 65.0309 694.81 63.24 696.6009 63.24 698.81 c 63.24 727.55 l 63.24 729.7591 65.0309 731.55 67.24 731.55 c h f 0.8 0.8 0.8 SCN 0.75 w 67.24 731.55 m 543.04 731.55 l 545.2491 731.55 547.04 729.7591 547.04 727.55 c 547.04 698.81 l 547.04 696.6009 545.2491 694.81 543.04 694.81 c 67.24 694.81 l 65.0309 694.81 63.24 696.6009 63.24 698.81 c 63.24 727.55 l 63.24 729.7591 65.0309 731.55 67.24 731.55 c h S Q 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 74.24 708.725 Td /F3.0 11 Tf <6c69746572616c> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 670.846 Td /F2.0 10.5 Tf <79696e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 63.24 652.066 Td /F1.0 10.5 Tf <79616e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 11 0 R /F1.0 12 0 R /F3.0 13 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /19787c+NotoSerif-Bold /Subtype /TrueType /FontDescriptor 18 0 R /FirstChar 32 /LastChar 255 /Widths 20 0 R /ToUnicode 19 0 R >> endobj 12 0 obj << /Type /Font /BaseFont /aca2ad+NotoSerif /Subtype /TrueType /FontDescriptor 22 0 R /FirstChar 32 /LastChar 255 /Widths 24 0 R /ToUnicode 23 0 R >> endobj 13 0 obj << /Type /Font /BaseFont /b407e3+mplus1mn-regular /Subtype /TrueType /FontDescriptor 26 0 R /FirstChar 32 /LastChar 255 /Widths 28 0 R /ToUnicode 27 0 R >> endobj 14 0 obj << /Type /Outlines /Count 1 /First 15 0 R /Last 15 0 R >> endobj 15 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 14 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 16 0 obj << /Nums [0 << /P (1) >>] >> endobj 17 0 obj << /Length1 7552 /Length 4359 /Filter [/FlateDecode] >> stream xY P[WzϽz ˑ#. #@8X]G]6I!iI\َ8vfit3i\tڱv8;NgMNRg&Ͱ?GXtJ?+l �P-צDSD~@JffD~P�4ιtP[$^е OI8~z;.i8,u#B.|,!,Hc^Ƕſ>HT#łQ]�yQ\HҸ=5 N$fyJMg4=,:q06QZoI?^�YRlbXXXyF{ayOX/9@~tV.ZU UR-n%t B`R֒7=]'b!+A=l(h (^{󏆞U>{xd}SRupW/a6Bڪd$ADh[KH]1;)YV[UUSky%yre^{aT\,hQWRRcy%os[kj6Dzms^4lԽ{,LT[$jՀ]P}]VWcIY}GnFU5lՑ5}-f-x >{qm[nugV[WlmUhi^b;]uXo Z[vVG1QN|ZзԷ_ {{ϟМ]f 4ƸT' ֨ ?YIWlx1@By Uumuh~Mg0Q}WL _n瀧ry<>'bv�۶wڋvwY0wxsp;1tK7nuScoNEj{`ӿ3 \>jk@e{}/Ң4([jue";6۱5kT74<lsL(K mZ=vK0.ҕ4Xk APT$>ġݚ="im~3b#mGŧjK њb&ˇ[mee<o|_Cb0 爆< Ih8Q|l9_ 'Wաz+| 1[`ɨ 7{F)9%m+չQf V# do{xx7P_l0|ȫ-߃ P]M00 GԺ/l" CHppR ‹*.J[E*. ~0*@5iRq-l {T\ dRuPFb\*\{*n@SqɪAE`ХAy/?T�vojqP7@QB2(~O sT?EЦ/XHFfie6;'6m=sst-蘜  X$D`n7[Wρb0 v 2deu؇8 46/kυ9= 4fi3r·3ƥ,9{Dgnv=8W)dH<F[e)`FP }Ύ6&mfbHi: `5(QA&sbqn]+タ>Hwnwɩl]vxJYH! 4rN-u4 Jd.\q!aP3H�{8Nt:GڧQǬv!q4GǎBnӎ(2:Tqp"<:ŧHw~S~ ytKh<7>>Lʬ^"r,$Me 9cޛch7Ks]X(J'#S#Rx=&3>0<1N {^:<F\qRgO=C&*GМ$ÿ(R)OH41a{Jg9OR y:2s|pHh$ H:l^'<J#WXaЧif' aI^?fs8N#yfU^<#{q &ymͰWcYi~MUiվ k9z^n>vߵ y !={x#;<|[WqdhU.:IN=I6&QDYN7S(c-')gЌ2oy~rFy,2RR徰:{rynüjS2NKd$NS9{<9{ǵB_XjVȼu߃@=l KmdOG?!?e8f=VR#k‰M )Am b=#w`c;ml78kFJSLWdWDʩ N(>>Z Ȋ {BVd8U桪<T~zuiqGWzꑺMn_ϰgkD[㹊6 ل*Qn-_BqBSkOS8X^\>,|}ew ?) Qe޷`&,'8?&?5΋O_T.~vQw]MJL=w5o7_y/W_箞,|Y!pzYy\=KY2|3BSg^=#^>s0r|pODN'N<I#6fkl<{uڬ253[, rFBWB&=7GhWOL&&'Ł xb|q\<QZ6QLV㄀eDv;k`U5mjap?S,-DN/{mKؠ9cz~EwL|K<ITy}J?pdEʡןJ66KAN籥!ƔbLd_Ftfv#쓞 J� =wpg`w`;wtlo77miIb ?Ϡi5"-RP4@3 [*ylvN'rq:9vAWsuKT%Kd']*C|D! ʰ*$@Jpp>OonL"%Ȗ]O-%UD;RFF}nb77y"ŗTt}f:KMW2'.`*`B>E ތdQmJRJ\V$[1czo$jhs!ҧ܎UDg5}lڏd%ڟ dS5I 2 7FF|Rώ~N~,|` ",;̖bȽZ,㗜0886"ʕ = a6zBc|<,Na=}B2)E_-Rt9/E<Uu%cDS3*/.;%%w@W�ܤ r‰3Ƚ�(SRB)zrG>Eݦ)Vw)i oE1Ҩ=h^_jB]Lpy`; (5sO -ӏ"Oh6^G,:E zѹ&Ncu!Fsb<@}Y# ڏ {Eo5`3ar8ʺƍf(-T>F&TJo`M(ol[rOsTU; ,kKo !JUd/1XxxF`y%X&̷Wure2Ao Tc| mfoAuf$O(#y}]fn;Ǚ$Mx.I蒓g}D p G2Lo~ W5%3a/ 9̴ irc,U1x׻i 8rtD!. k J$*R/ûޝu cerx>lfV e0�08@jinf4 ^ϗy?w8�7Zadd}u$wwS Zυ ⳷p#[G{Ae7y u4މJW O/RA+ՙu?},|G.+ILZI5B~/zHW^/ endstream endobj 18 0 obj << /Type /FontDescriptor /FontName /19787c+NotoSerif-Bold /FontFile2 17 0 R /FontBBox [-212 -250 1306 1058] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 19 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 20 0 obj [600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 570 600 600 600 352 600 600 600 985 666 600 600 600 522 600 404 600 600 600 600 579 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600] endobj 21 0 obj << /Length1 8400 /Length 5181 /Filter [/FlateDecode] >> stream xZ{Pו?$adO|ee0BK6%� ɒplYNRl٥NI&L7|xgRtv;]of4=é3IW;Nk?qw=s=ߕl �5SHNUO�Hܩp@ҳs)_GfGHtlʍ4·y Ig87akCz֐o>pfҐ؉xc$r@ӑ߹K?W;u".Ļg@�HǮ C0? %$VJJNm`m5! .[]Ok&.W>TmTT*C&te4u{۹6dry%e \^qI\#PAveX)hoexxæL]mjWBsl]pW_O'#}G;_T)Ď nY:Zg/{dr}þqSq= RteԷ@ɴӨDEJM46H&/f}3CrK##Y_t</ -5㝥Us}tWDfO\WJNEBr#i#4 ڲVt${kg66}6;ؚ󜂍S#:9۶č&]a;_yKQMWުLJ^{!ڱ0/L-EJTIzTs^Sgo.zyU^9ySυsކC}9;>[gI1)iGfnCLE+p�4L. URbAjL>yb,ޚ<Fe!['@Шxm/Cʝ=xudn:ĤĢ{{'*^e3>+iʪػZűmP LU\]yIj`.[itr?6܅փ抔ݞF}gON[9?Y[.g*}a>PM3{:kY=1Ō`v*Ke:ٛAwOH+)(R"b렫ffF6lA~ƂmоB-5 {+Du{*8uglOiX}c8qk}ig>>}>?g;b["T{S81I6ۏ ?%~5 |BjfX󷿦Zrlph.]ku\?xx m~<Bk+˱V<@/z�^gF}B6 m婚=m<cO}MkYkuqn2k޾7:ġn<oy׿ !] ܖke,0u<U2F[^_jok4O / 5M?v72P6:TIgn9zImr4V6 +ʲ9ztu}haU%]C摓 7sYEyT$D,G<*L:MIrV#*Ao<t(gg3T%<YWʋb}k?yac=j_8F,J ֗E>rq1f-3^~ʗP�Ls< 4WK!0%]fe%4+`埅 YxIwԱ>uɀP÷H8V⛀Bk8ieD'Lp)9Rqml=< fH]H|s @.x#D\{cKd�}gX}0"[{21NzNyA ZI2犌 ސq=W@*)qh^ƕNd\ SU&%$($d#We<x hLO DSx*Lp'e< xsݺZOV~X3H?N3'x&%x&'=l GNE3qaoM^; )97'ҡ0'~#X 8Q B]\b-� !#:vtkVQl(~0aaıdA ,l ,@DápTUC3BM J1IPN8m兰J'kd<!XӈaJt--aD{4|{}~0Q?0 m Ke6w!ƃ9?l[LH 1G]I7<歾O &_<%l 'QeP","SLI\Y;'�l<i1> 3q*<o MH/"Z0>141(ʄt�yMa0m>/ogȞKc-F0zf1<P\p/s@(\Q!>p$J0$QYk-ţPz%BWY%v :GG;zmNaxT Y{z CwZ%NT \3l]pb'H`*8| "ct#xVB~|03z&|" Ѱ>^ ( PS[5bLʇLgǗ8:1v KF4gǚF,uv90t;$T!rPˢO8K:U\/!LNvєzU}:N̟X! 66wS0V6cvm?P*;Z%eIL11(I4gU@I͙)q bo;Tpr#1~~l/4# ʓ[`:,:%qf^MEx Ӱ}ழýPG؋ȴÖ~ǩOdMd/d~iC9: !Iva#DaZ‘\DrykiM+Z%$рyȆK g6zFHFHg+Ѣ"&gg!5!YHe#OIuZTRg r{EBoY$ $B^%Q`˳9Fg9RױpЁ2} +Rl*[X(%`ou}y(-7H Zxnu4_'׉Z{ Q(^>Y3?n z.SdN<Ó'#O.>H'ԗ֫uigD.#˯.e痯-ZXVR~, DZavn')6Uƫ3du {qjfe?)Gƒ[R T??yB{͸y|dp n#cq|Owjqe7Q%wuZW~]+duY.ݺ|ֵ,#j֭,> gU b>QUʘ`_M헒FIQIk㠤zTCBpvK{nɻ/cEwC' !#1 Db$z*|?#|apFf V N9l@ t ha1P(f(v9G#C}=vihokҼd(/+- 5̌Ԕ$Rl+He^IQ&TSZ!x%CJ;y$؄;99}9i$jZ(H߷*9pcU?2Fd V8k$lkEy+iH4aO#+WakY 9.+6_qmV^﩮2E+ ),R)pNXzc&tM%އsx#RARRhI*tkKIY1#zoމdDUh׎]Z}ɻ[XačV7yN+{$wțc:%.QOl|0!hSnܪ&f0 ґ76G\tdqsdkWDo;K/|$Q Q-eNrf U?(H24 >#NYR3"w}-.P#4(ʱ6wbUR!1<V}l+5&󢋂V>$F$صO-t)4Ic;%ϒL6+]Y-c=|g/:ܯCzAuP+o,-RWS9-zAРDkV^GL;b{tbS# 1Rri洼v]XKIXҰjF5J|CgS(ң{􉧺aA^g$Sl5P U= Gto<#1dAm3 8IPcJvvqnFo=w n Kbs eJ@ݼ/[20ab6h!,%neܘmОk@?몮׵"G+fu5 G8˳ܯ �fr %JPIH$3~fE6`�ưM*ԛ"FR,sMS|3|h}pt)U tIib;(ޑUO &~XHZ<R|M;T.ldn{>ɛw[/X {9\<ߢQ w?۟67e>cx ނ_Ƕ0?b,\ =k_o#[-�nQ{7 |_q$֏1o#w 6-<�at*_䫐q aUFGA\@;ڨ4Qx8 ҨTU=TIV7<b%65MέnߘTD endstream endobj 22 0 obj << /Type /FontDescriptor /FontName /aca2ad+NotoSerif /FontFile2 21 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 23 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 24 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 562 500 492 613 535 500 538 500 500 500 500 500 944 645 577 500 500 471 451 500 500 500 500 500 564 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj 25 0 obj << /Length1 3456 /Length 2156 /Filter [/FlateDecode] >> stream xV{lSεc'@ 3s}!IPH y87 co ֍IMiS C jڣT!M [24MivHCtclN9k`Pߋe R- uD۟}s6EIr1ɌPA,I-ZyB2P3х<P%tlmS7QG>؟u8F(u,h/F}FMp3_w7Z^^ i:6TL`A: Llh>A*H c[W0G;!;>w(2},EʸT `Mq5w?M:ڛ߶Ѯl km]CGC<wW{ƆSo n{wv]} k=AFh M~b;mfPύx*-m] %<3ׇ8_ k>vWPJGWOIj*ܡ wy'J7K7oudq8!4HI- (7,[me\Gsf4^qG/g-n_g'Kv4N?;�=0'\!i]ӅOʔ|_z -#ݵ c'.x$.9}$3D+$Ɋ@s\GܔB�V,-[.0m@|7H%h; }LjMaZ.^k@L;*Nv L ݂gLy~hڭi"M{"֑znH)WçȀvrĴ5iRӁYWZY61zpqU?.ԛ/RI}sl mc)hxƆ{ 9"Bt 1A+lGi8`G! (C!G0rf&2 ihAcPe\aVm>Fwв m~og!rxut1Si0 ;&"B61d2B1VGa?KDL;L>=_Do\FR;ZZٛ*\1Eth Ji,$RH1i>L)g|.h-hAl:IZB&Uy#lrECci<U y])CO$Ĝi&O%RDU+w&bh:\q NcBA?G] ]tj0gl2LPp4L$El惪CXĕG->M"6 >:hˋGTfŕ/cu\xPg1q᫋=X]dq !%QHyCrfFW33ǵD49+w#oAq4j۶>q}hq|\w<ưЃ‘c,a ˡ>rsϷ*\aW,Sz촶]b٪c2;WKhf}HeͅoFc EFQv}F! <l/GCEK1yN\dfGL l^Qqiěo^>z=.]]o-;V|]&YAQ9@ȋ;"Bi>Q7ꇍcjL.GvJez_ 5$p(үװxRM#m@VwPwEu*QUW985l .r S: @Fa <4Uzt{רgyM 5CGJZ)J)˪$PYWuXD9+=ŰcC(ݭ DhgW#chZKQDKpr#HY%"$Nzm@AfM^7+42< FJXРRRhiDCمO^oCpJ|RsG{xۆJnN[!o%#OF(3ĉ(=@(rso"'ƌں=Z/8xo'L%JŰ endstream endobj 26 0 obj << /Type /FontDescriptor /FontName /b407e3+mplus1mn-regular /FontFile2 25 0 R /FontBBox [0 -270 1000 1025] /Flags 4 /StemV 0 /ItalicAngle 0.0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 27 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 28 0 obj [364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 364 364 500 364 364 364 500 364 364 500 364 364 364 364 364 500 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj xref 0 29 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000002223 00000 n 0000002546 00000 n 0000002588 00000 n 0000002636 00000 n 0000002688 00000 n 0000002858 00000 n 0000003023 00000 n 0000003195 00000 n 0000003269 00000 n 0000003394 00000 n 0000003439 00000 n 0000007888 00000 n 0000008107 00000 n 0000009469 00000 n 0000010383 00000 n 0000015654 00000 n 0000015868 00000 n 0000017230 00000 n 0000018144 00000 n 0000020390 00000 n 0000020603 00000 n 0000021965 00000 n trailer << /Size 29 /Root 2 0 R /Info 1 0 R >> startxref 22879 %%EOF ��������������ruby-asciidoctor-pdf-1.6.2/spec/reference/list-complex-nested.pdf�����������������������������������0000664�0000000�0000000�00000030016�14163570564�0025047�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20190929003047-06'00') /CreationDate (D:20190929003047-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 12 0 R /PageLabels 13 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 1814 >> stream q -0.5 Tc /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 56.8805 793.926 Td /F1.0 10.5 Tf <a5> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 66.24 793.926 Td /F1.0 10.5 Tf <6c697374206974656d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 70.6765 772.146 Td /F1.0 10.5 Tf <312e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 84.24 772.146 Td /F1.0 10.5 Tf <6669727374> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 84.24 744.366 Td /F1.0 10.5 Tf [<617474616368656420706172> 20.0195 <616772> 20.0195 <617068>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 70.6765 716.586 Td /F1.0 10.5 Tf <322e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 84.24 716.586 Td /F1.0 10.5 Tf <7365636f6e64> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 84.24 688.806 Td /F1.0 10.5 Tf [<617474616368656420706172> 20.0195 <616772> 20.0195 <617068>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 56.8805 661.026 Td /F1.0 10.5 Tf <a5> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 66.24 661.026 Td /F1.0 10.5 Tf <6c697374206974656d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 66.24 633.246 Td /F1.0 10.5 Tf [<617474616368656420706172> 20.0195 <616772> 20.0195 <617068>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 56.8805 605.466 Td /F1.0 10.5 Tf <a5> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 66.24 605.466 Td /F1.0 10.5 Tf <6c697374206974656d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /aa39fe+NotoSerif /Subtype /TrueType /FontDescriptor 15 0 R /FirstChar 32 /LastChar 255 /Widths 17 0 R /ToUnicode 16 0 R >> endobj 12 0 obj << /Type /Outlines /Count 0 /First null /Last null >> endobj 13 0 obj << /Nums [0 << /P (1) >>] >> endobj 14 0 obj << /Length1 9476 /Length 5859 /Filter [/FlateDecode] >> stream xY pՕ>[G,[?ےmmI~oRɖl+-E&I#$4l ,2ݡvX[v)Pڲ v0l04ܫߎB[|s=sod<= U8F9�I_Yg?Hg>8_c[1Oygv+H_Cz%wHCcO Fڊ'D{uFzpѻi/>�9I_ C_=gB  .ӿ> W5}8Gg�C�%Ň@q8/(@OHSRir�2/p0zL* fH3 353W?뛒819NTP_Yu\& LQ`暅L5 kuԔ'p7@Z۸ڴPPX&k'4k&o= VhV]E{ݹV7oT6[TZ?U6h8`Fu#ReZ&1)\&Z+.M#ϑL-qkghЦasLVZic<^?[Z3?09{:ۍ㋭IzKQ՘M7K کFYt$.E("SZHյ/q \[t7wj9EWU\Ʒږ Iij@sJо;khl3gOL}XP2!q#u~6ȞF}K0d)S6mGQW#můGk=:cݻG]UӼ߶)yv v7UNt_} '  畿@sim),2VZs]+yZl*y@]݁'͞]-YI2'gdyd`V1?i;AE.~⼹6;gS]ϳ?<L)$Z( NNFi(KH"y7i qO.6Mp%B{Sv>!WFZC%zRv[B8WSlS[ic߭,*VAEBvldh|Y8q턖oz}Ë]d}MQyTbXh+`Lޙ<U5|^Y~ٔW5ձ]P0k`؞M-(E\)XכpCֱRoV*2bksK򔩹´mI:]JS(0k؈|ǥ{-ż(wTz{ZRS kO ./Z~P6^xt<c7볊Ӓr2˖\"# 94iP'OJ }j&1#'Y]dJ/SN`oSgnRRKdԵyV9As/#gM)yFݐ'6?؁Ա4d'a{+sJ0G<S;fUG$Xt_7{ LG\<y}>/>v>`NP(1j3n: ZML'%Y]{ttGN>#C_Oϫ@]&=PXwV꒒t;NNURiq~ fݴ@.agEڷ/c©FL-8ܬom[8Vh*f&'mz֌4}ψr+&ٖfd]6kOC6pGIk-Lm|T5ض޾ {G:::r6-${]5rmF1ߴ 7[*@,`ؖFO#{Z%u3_jW~i& ҲR8b)"Ojˀ>q}l,l--A+ Gl[Zx}iRqmۦ%3عT/YD 56_|Sk(ٙ^E}~<5js�3kvDQ{s%VJfN�̘)rٵUu6%hJ[wB ʖ– }5nwM#`7_W/_{mmV-P̎6 vUg8uٍS}CK3N wu;ll:pN+uh%ռ1r,†pNy΢ʊ)#Ũo {)]0D[2Ym|riU]`Gx.H.r2)^aŽ8 CזS(GDws0WZ7)u:{x|CsBj‘60yސeòò!;\EX ſ4{|N;'?37!P/BF #;h?&{r� Ő,x T6Ɛ6!c X-o!s%*8Bqml=4 VHX߈:͹x O]zW܇'ň nœ~n^0�C0 #0 c <! djkf6iC*HNP#?K8wW$\l_@%\bp$Z W@p%[jA H<q`#'%\䂄RAåHx<s�x<Kx O=c O6u* Oِ'~I O#)7/)Pw_W0Eʪj;&c~]~}& `Y۫S^57<E:ztkTQ~(0>0 A~ ʉc8l3٥yo %b0BY&eJXdQN 8l-b &p$\Lu N&GkiQAL^> A>8f 0xl/AĂ֟3pp?]ޅ[1QW#7Q iO-[B}1QjB^H8ǴB&1.cy=|7h4d6~Yf^tp<돚Q_E4a 1DŽBӄ(3~5KM0&>]_ {&կˏ pXp&z72/FВK>~(_1QYeo-DÁ%Ec+;;z!8?1:18kFA[x Rcy� ;Ba$|`!40L0H? L%,"/"t!W}@el?Hz9Pnj˜6>ʶ/8QtHm64ҋ,x[¶mkUsw �Ć7HAB9"J U,f>VGYҙB~1^V`rc;x <t2RTIl;g8;0b9t/!DxLC؈^֎9X7Cyl?jNQwelGFaD7w7Mɮ<(xO"l4MɌgg";lR=CLfMD$$/Ќt&lV\Fl$Kѿ«y)2S$0o gCFB}bi=5],S }pOmUc5DT5n"ݬCC2ah0"Xr$tD^ƒZ p'$V5ox)nDAևלk$uY#HG Ѣ\&5G!%!H$!O"IyxZg<*3D$8 y(GB(B2ck}%D_W3RlW񕃌@9(9,kS{> cE<˩#z\&Kc9'2eC[vg}*>$q\Gg= Q?z#DxqN}kpxΑ6qs)vYOtٍ JsC }ߢ`};(%98^j<Koi=5~g=yp~|aIw*Pm9*;**Y'3s։ Ysyyyթht'KRM,Zg%әFRjK#hnp>z)kOz5U2\9zXQ񱲲qb/hi-*{k> bKE6q ,tG"h{Hdl?eD"ex>#tii_Cf 1Nُl@Y/Ee|()r  vm]֖ƆڪJиS(0s4iԔĄxUR!ËQ^(TPZ"xDCyD99s5i$jZ*y? y{ą6͋.֖2" G9/oVL 尚DlBhM鴢hݦ5b`c]D.1Tu8ɯr<eI>e^"&\_,lvJݚDT fD(O6hޕ;V<+Ǧ^-&%havԊSnQ#Mb#{\"gts^D]04h iM/4mj0Ѕ<o)$c#f+`5EC{tҞc=[=z̵"ʍ>6>Ma<ba%=o4/Z(D0R5#R>i|b`HrP�_Q.\?{ކ W}Ҍ#tQ':Iղ\l4LtFfWhl<<~=^F\ej  ԀFgua W\QpW.AQ[p4(њ%Q5N]cBnWt7\ژ OQeT.N+s#ށ K1ΨWa( ޅ&7!vM B4z6))rz!TsKu@f̈Y10=Zw ~-uEF<"G 6cݛ5(n7-n~E%P$P^h[Ҵ,SЈ^ 1+V+[\-];\O;+1u U+l55�p]NNsXQ)A%"b׬�X;T\ Sobbfe}K9shcvG܊Mc"KD"uU))& ox{ WR<#d;Wvᓜ 37Aū KW?>+[fX[f}j kO} f5x!F]_X"P񆻄?۟ 67eg`}x.oɃ[eNX[/[ G8fP&@͢wlx_QaOy ϴ֏ MB߀o]p[$C굯CUx^: ǥE K` 3 JY ]?*p*F]..aŽ=IcM2WZ{;qhcJ+ endstream endobj 15 0 obj << /Type /FontDescriptor /FontName /aa39fe+NotoSerif /FontFile2 14 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 16 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 17 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 500 500 250 500 500 559 559 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 562 500 492 613 535 369 538 634 319 500 500 310 944 645 577 613 500 471 451 352 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 361 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 18 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000002705 00000 n 0000003002 00000 n 0000003044 00000 n 0000003092 00000 n 0000003144 00000 n 0000003309 00000 n 0000003379 00000 n 0000003424 00000 n 0000009373 00000 n 0000009587 00000 n 0000010949 00000 n trailer << /Size 18 /Root 2 0 R /Info 1 0 R >> startxref 11863 %%EOF ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/list-horizontal-dlist.pdf���������������������������������0000664�0000000�0000000�00000055651�14163570564�0025442�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20190924015215-06'00') /CreationDate (D:20190924015215-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 14 0 R /PageLabels 15 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 1408 >> stream q 1 w /DeviceRGB CS 0.0 0.0 0.0 SCN /DeviceRGB cs 0.2 0.2 0.2 scn BT 58.24 793.926 Td /F2.0 10.5 Tf <7465726d> Tj ET 0.0 0.0 0.0 scn 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 104.2905 793.926 Td /F1.0 10.5 Tf <64657363> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 104.2905 766.146 Td /F1.0 10.5 Tf <6d6f72652064657363> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.9608 0.9608 0.9608 scn 108.2905 750.33 m 533.04 750.33 l 535.2491 750.33 537.04 748.5391 537.04 746.33 c 537.04 717.59 l 537.04 715.3809 535.2491 713.59 533.04 713.59 c 108.2905 713.59 l 106.0814 713.59 104.2905 715.3809 104.2905 717.59 c 104.2905 746.33 l 104.2905 748.5391 106.0814 750.33 108.2905 750.33 c h f 0.8 0.8 0.8 SCN 0.75 w 108.2905 750.33 m 533.04 750.33 l 535.2491 750.33 537.04 748.5391 537.04 746.33 c 537.04 717.59 l 537.04 715.3809 535.2491 713.59 533.04 713.59 c 108.2905 713.59 l 106.0814 713.59 104.2905 715.3809 104.2905 717.59 c 104.2905 746.33 l 104.2905 748.5391 106.0814 750.33 108.2905 750.33 c h S Q 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 115.2905 727.505 Td /F3.0 11 Tf <6c69746572616c> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 58.24 683.6259 Td /F2.0 10.5 Tf <79696e> Tj ET 0.0 0.0 0.0 scn 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 104.2905 683.6259 Td /F1.0 10.5 Tf <79616e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 11 0 R /F1.0 12 0 R /F3.0 13 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /19787c+NotoSerif-Bold /Subtype /TrueType /FontDescriptor 17 0 R /FirstChar 32 /LastChar 255 /Widths 19 0 R /ToUnicode 18 0 R >> endobj 12 0 obj << /Type /Font /BaseFont /aca2ad+NotoSerif /Subtype /TrueType /FontDescriptor 21 0 R /FirstChar 32 /LastChar 255 /Widths 23 0 R /ToUnicode 22 0 R >> endobj 13 0 obj << /Type /Font /BaseFont /b407e3+mplus1mn-regular /Subtype /TrueType /FontDescriptor 25 0 R /FirstChar 32 /LastChar 255 /Widths 27 0 R /ToUnicode 26 0 R >> endobj 14 0 obj << /Type /Outlines /Count 0 /First null /Last null >> endobj 15 0 obj << /Nums [0 << /P (1) >>] >> endobj 16 0 obj << /Length1 7552 /Length 4359 /Filter [/FlateDecode] >> stream xY P[WzϽz ˑ#. #@8X]G]6I!iI\َ8vfit3i\tڱv8;NgMNRg&Ͱ?GXtJ?+l �P-צDSD~@JffD~P�4ιtP[$^е OI8~z;.i8,u#B.|,!,Hc^Ƕſ>HT#łQ]�yQ\HҸ=5 N$fyJMg4=,:q06QZoI?^�YRlbXXXyF{ayOX/9@~tV.ZU UR-n%t B`R֒7=]'b!+A=l(h (^{󏆞U>{xd}SRupW/a6Bڪd$ADh[KH]1;)YV[UUSky%yre^{aT\,hQWRRcy%os[kj6Dzms^4lԽ{,LT[$jՀ]P}]VWcIY}GnFU5lՑ5}-f-x >{qm[nugV[WlmUhi^b;]uXo Z[vVG1QN|ZзԷ_ {{ϟМ]f 4ƸT' ֨ ?YIWlx1@By Uumuh~Mg0Q}WL _n瀧ry<>'bv�۶wڋvwY0wxsp;1tK7nuScoNEj{`ӿ3 \>jk@e{}/Ң4([jue";6۱5kT74<lsL(K mZ=vK0.ҕ4Xk APT$>ġݚ="im~3b#mGŧjK њb&ˇ[mee<o|_Cb0 爆< Ih8Q|l9_ 'Wաz+| 1[`ɨ 7{F)9%m+չQf V# do{xx7P_l0|ȫ-߃ P]M00 GԺ/l" CHppR ‹*.J[E*. ~0*@5iRq-l {T\ dRuPFb\*\{*n@SqɪAE`ХAy/?T�vojqP7@QB2(~O sT?EЦ/XHFfie6;'6m=sst-蘜  X$D`n7[Wρb0 v 2deu؇8 46/kυ9= 4fi3r·3ƥ,9{Dgnv=8W)dH<F[e)`FP }Ύ6&mfbHi: `5(QA&sbqn]+タ>Hwnwɩl]vxJYH! 4rN-u4 Jd.\q!aP3H�{8Nt:GڧQǬv!q4GǎBnӎ(2:Tqp"<:ŧHw~S~ ytKh<7>>Lʬ^"r,$Me 9cޛch7Ks]X(J'#S#Rx=&3>0<1N {^:<F\qRgO=C&*GМ$ÿ(R)OH41a{Jg9OR y:2s|pHh$ H:l^'<J#WXaЧif' aI^?fs8N#yfU^<#{q &ymͰWcYi~MUiվ k9z^n>vߵ y !={x#;<|[WqdhU.:IN=I6&QDYN7S(c-')gЌ2oy~rFy,2RR徰:{rynüjS2NKd$NS9{<9{ǵB_XjVȼu߃@=l KmdOG?!?e8f=VR#k‰M )Am b=#w`c;ml78kFJSLWdWDʩ N(>>Z Ȋ {BVd8U桪<T~zuiqGWzꑺMn_ϰgkD[㹊6 ل*Qn-_BqBSkOS8X^\>,|}ew ?) Qe޷`&,'8?&?5΋O_T.~vQw]MJL=w5o7_y/W_箞,|Y!pzYy\=KY2|3BSg^=#^>s0r|pODN'N<I#6fkl<{uڬ253[, rFBWB&=7GhWOL&&'Ł xb|q\<QZ6QLV㄀eDv;k`U5mjap?S,-DN/{mKؠ9cz~EwL|K<ITy}J?pdEʡןJ66KAN籥!ƔbLd_Ftfv#쓞 J� =wpg`w`;wtlo77miIb ?Ϡi5"-RP4@3 [*ylvN'rq:9vAWsuKT%Kd']*C|D! ʰ*$@Jpp>OonL"%Ȗ]O-%UD;RFF}nb77y"ŗTt}f:KMW2'.`*`B>E ތdQmJRJ\V$[1czo$jhs!ҧ܎UDg5}lڏd%ڟ dS5I 2 7FF|Rώ~N~,|` ",;̖bȽZ,㗜0886"ʕ = a6zBc|<,Na=}B2)E_-Rt9/E<Uu%cDS3*/.;%%w@W�ܤ r‰3Ƚ�(SRB)zrG>Eݦ)Vw)i oE1Ҩ=h^_jB]Lpy`; (5sO -ӏ"Oh6^G,:E zѹ&Ncu!Fsb<@}Y# ڏ {Eo5`3ar8ʺƍf(-T>F&TJo`M(ol[rOsTU; ,kKo !JUd/1XxxF`y%X&̷Wure2Ao Tc| mfoAuf$O(#y}]fn;Ǚ$Mx.I蒓g}D p G2Lo~ W5%3a/ 9̴ irc,U1x׻i 8rtD!. k J$*R/ûޝu cerx>lfV e0�08@jinf4 ^ϗy?w8�7Zadd}u$wwS Zυ ⳷p#[G{Ae7y u4މJW O/RA+ՙu?},|G.+ILZI5B~/zHW^/ endstream endobj 17 0 obj << /Type /FontDescriptor /FontName /19787c+NotoSerif-Bold /FontFile2 16 0 R /FontBBox [-212 -250 1306 1058] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 18 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 19 0 obj [600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 570 600 600 600 352 600 600 600 985 666 600 600 600 522 600 404 600 600 600 600 579 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600] endobj 20 0 obj << /Length1 8400 /Length 5181 /Filter [/FlateDecode] >> stream xZ{Pו?$adO|ee0BK6%� ɒplYNRl٥NI&L7|xgRtv;]of4=é3IW;Nk?qw=s=ߕl �5SHNUO�Hܩp@ҳs)_GfGHtlʍ4·y Ig87akCz֐o>pfҐ؉xc$r@ӑ߹K?W;u".Ļg@�HǮ C0? %$VJJNm`m5! .[]Ok&.W>TmTT*C&te4u{۹6dry%e \^qI\#PAveX)hoexxæL]mjWBsl]pW_O'#}G;_T)Ď nY:Zg/{dr}þqSq= RteԷ@ɴӨDEJM46H&/f}3CrK##Y_t</ -5㝥Us}tWDfO\WJNEBr#i#4 ڲVt${kg66}6;ؚ󜂍S#:9۶č&]a;_yKQMWުLJ^{!ڱ0/L-EJTIzTs^Sgo.zyU^9ySυsކC}9;>[gI1)iGfnCLE+p�4L. URbAjL>yb,ޚ<Fe!['@Шxm/Cʝ=xudn:ĤĢ{{'*^e3>+iʪػZűmP LU\]yIj`.[itr?6܅փ抔ݞF}gON[9?Y[.g*}a>PM3{:kY=1Ō`v*Ke:ٛAwOH+)(R"b렫ffF6lA~ƂmоB-5 {+Du{*8uglOiX}c8qk}ig>>}>?g;b["T{S81I6ۏ ?%~5 |BjfX󷿦Zrlph.]ku\?xx m~<Bk+˱V<@/z�^gF}B6 m婚=m<cO}MkYkuqn2k޾7:ġn<oy׿ !] ܖke,0u<U2F[^_jok4O / 5M?v72P6:TIgn9zImr4V6 +ʲ9ztu}haU%]C摓 7sYEyT$D,G<*L:MIrV#*Ao<t(gg3T%<YWʋb}k?yac=j_8F,J ֗E>rq1f-3^~ʗP�Ls< 4WK!0%]fe%4+`埅 YxIwԱ>uɀP÷H8V⛀Bk8ieD'Lp)9Rqml=< fH]H|s @.x#D\{cKd�}gX}0"[{21NzNyA ZI2犌 ސq=W@*)qh^ƕNd\ SU&%$($d#We<x hLO DSx*Lp'e< xsݺZOV~X3H?N3'x&%x&'=l GNE3qaoM^; )97'ҡ0'~#X 8Q B]\b-� !#:vtkVQl(~0aaıdA ,l ,@DápTUC3BM J1IPN8m兰J'kd<!XӈaJt--aD{4|{}~0Q?0 m Ke6w!ƃ9?l[LH 1G]I7<歾O &_<%l 'QeP","SLI\Y;'�l<i1> 3q*<o MH/"Z0>141(ʄt�yMa0m>/ogȞKc-F0zf1<P\p/s@(\Q!>p$J0$QYk-ţPz%BWY%v :GG;zmNaxT Y{z CwZ%NT \3l]pb'H`*8| "ct#xVB~|03z&|" Ѱ>^ ( PS[5bLʇLgǗ8:1v KF4gǚF,uv90t;$T!rPˢO8K:U\/!LNvєzU}:N̟X! 66wS0V6cvm?P*;Z%eIL11(I4gU@I͙)q bo;Tpr#1~~l/4# ʓ[`:,:%qf^MEx Ӱ}ழýPG؋ȴÖ~ǩOdMd/d~iC9: !Iva#DaZ‘\DrykiM+Z%$рyȆK g6zFHFHg+Ѣ"&gg!5!YHe#OIuZTRg r{EBoY$ $B^%Q`˳9Fg9RױpЁ2} +Rl*[X(%`ou}y(-7H Zxnu4_'׉Z{ Q(^>Y3?n z.SdN<Ó'#O.>H'ԗ֫uigD.#˯.e痯-ZXVR~, DZavn')6Uƫ3du {qjfe?)Gƒ[R T??yB{͸y|dp n#cq|Owjqe7Q%wuZW~]+duY.ݺ|ֵ,#j֭,> gU b>QUʘ`_M헒FIQIk㠤zTCBpvK{nɻ/cEwC' !#1 Db$z*|?#|apFf V N9l@ t ha1P(f(v9G#C}=vihokҼd(/+- 5̌Ԕ$Rl+He^IQ&TSZ!x%CJ;y$؄;99}9i$jZ(H߷*9pcU?2Fd V8k$lkEy+iH4aO#+WakY 9.+6_qmV^﩮2E+ ),R)pNXzc&tM%އsx#RARRhI*tkKIY1#zoމdDUh׎]Z}ɻ[XačV7yN+{$wțc:%.QOl|0!hSnܪ&f0 ґ76G\tdqsdkWDo;K/|$Q Q-eNrf U?(H24 >#NYR3"w}-.P#4(ʱ6wbUR!1<V}l+5&󢋂V>$F$صO-t)4Ic;%ϒL6+]Y-c=|g/:ܯCzAuP+o,-RWS9-zAРDkV^GL;b{tbS# 1Rri洼v]XKIXҰjF5J|CgS(ң{􉧺aA^g$Sl5P U= Gto<#1dAm3 8IPcJvvqnFo=w n Kbs eJ@ݼ/[20ab6h!,%neܘmОk@?몮׵"G+fu5 G8˳ܯ �fr %JPIH$3~fE6`�ưM*ԛ"FR,sMS|3|h}pt)U tIib;(ޑUO &~XHZ<R|M;T.ldn{>ɛw[/X {9\<ߢQ w?۟67e>cx ނ_Ƕ0?b,\ =k_o#[-�nQ{7 |_q$֏1o#w 6-<�at*_䫐q aUFGA\@;ڨ4Qx8 ҨTU=TIV7<b%65MέnߘTD endstream endobj 21 0 obj << /Type /FontDescriptor /FontName /aca2ad+NotoSerif /FontFile2 20 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 22 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 23 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 562 500 492 613 535 500 538 500 500 500 500 500 944 645 577 500 500 471 451 500 500 500 500 500 564 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj 24 0 obj << /Length1 3456 /Length 2156 /Filter [/FlateDecode] >> stream xV{lSεc'@ 3s}!IPH y87 co ֍IMiS C jڣT!M [24MivHCtclN9k`Pߋe R- uD۟}s6EIr1ɌPA,I-ZyB2P3х<P%tlmS7QG>؟u8F(u,h/F}FMp3_w7Z^^ i:6TL`A: Llh>A*H c[W0G;!;>w(2},EʸT `Mq5w?M:ڛ߶Ѯl km]CGC<wW{ƆSo n{wv]} k=AFh M~b;mfPύx*-m] %<3ׇ8_ k>vWPJGWOIj*ܡ wy'J7K7oudq8!4HI- (7,[me\Gsf4^qG/g-n_g'Kv4N?;�=0'\!i]ӅOʔ|_z -#ݵ c'.x$.9}$3D+$Ɋ@s\GܔB�V,-[.0m@|7H%h; }LjMaZ.^k@L;*Nv L ݂gLy~hڭi"M{"֑znH)WçȀvrĴ5iRӁYWZY61zpqU?.ԛ/RI}sl mc)hxƆ{ 9"Bt 1A+lGi8`G! (C!G0rf&2 ihAcPe\aVm>Fwв m~og!rxut1Si0 ;&"B61d2B1VGa?KDL;L>=_Do\FR;ZZٛ*\1Eth Ji,$RH1i>L)g|.h-hAl:IZB&Uy#lrECci<U y])CO$Ĝi&O%RDU+w&bh:\q NcBA?G] ]tj0gl2LPp4L$El惪CXĕG->M"6 >:hˋGTfŕ/cu\xPg1q᫋=X]dq !%QHyCrfFW33ǵD49+w#oAq4j۶>q}hq|\w<ưЃ‘c,a ˡ>rsϷ*\aW,Sz촶]b٪c2;WKhf}HeͅoFc EFQv}F! <l/GCEK1yN\dfGL l^Qqiěo^>z=.]]o-;V|]&YAQ9@ȋ;"Bi>Q7ꇍcjL.GvJez_ 5$p(үװxRM#m@VwPwEu*QUW985l .r S: @Fa <4Uzt{רgyM 5CGJZ)J)˪$PYWuXD9+=ŰcC(ݭ DhgW#chZKQDKpr#HY%"$Nzm@AfM^7+42< FJXРRRhiDCمO^oCpJ|RsG{xۆJnN[!o%#OF(3ĉ(=@(rso"'ƌں=Z/8xo'L%JŰ endstream endobj 25 0 obj << /Type /FontDescriptor /FontName /b407e3+mplus1mn-regular /FontFile2 24 0 R /FontBBox [0 -270 1000 1025] /Flags 4 /StemV 0 /ItalicAngle 0.0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 26 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 27 0 obj [364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 364 364 500 364 364 364 500 364 364 500 364 364 364 364 364 500 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj xref 0 28 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000002299 00000 n 0000002622 00000 n 0000002664 00000 n 0000002712 00000 n 0000002764 00000 n 0000002934 00000 n 0000003099 00000 n 0000003271 00000 n 0000003341 00000 n 0000003386 00000 n 0000007835 00000 n 0000008054 00000 n 0000009416 00000 n 0000010330 00000 n 0000015601 00000 n 0000015815 00000 n 0000017177 00000 n 0000018091 00000 n 0000020337 00000 n 0000020550 00000 n 0000021912 00000 n trailer << /Size 28 /Root 2 0 R /Info 1 0 R >> startxref 22826 %%EOF ���������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/list-qanda.pdf��������������������������������������������0000664�0000000�0000000�00000045524�14163570564�0023216�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.beta.5.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.5.dev, based on Prawn 2.2.2) /ModDate (D:20190906035520-06'00') /CreationDate (D:20190906035520-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 13 0 R /PageLabels 15 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 1090 >> stream q -0.5 Tc /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 52.6765 793.926 Td /F1.0 10.5 Tf <312e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 66.24 793.926 Td /F2.0 10.5 Tf <57686174d5732074686520616e7377657220746f2074686520756c74696d617465207175657374696f6e3f> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 66.24 775.146 Td /F1.0 10.5 Tf <3432> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn -0.5 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 52.6765 753.366 Td /F1.0 10.5 Tf <322e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 Tc 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 66.24 753.366 Td /F2.0 10.5 Tf <446f20796f75206861766520616e206f70696e696f6e3f> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 66.24 734.586 Td /F2.0 10.5 Tf [<57> 60.0586 <6f756c6420796f75206c696b> 20.0195 <6520746f2073686172652069743f>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 66.24 715.806 Td /F1.0 10.5 Tf [<59> 69.8242 <657320616e64206e6f2e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R /F2.0 12 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /25878a+NotoSerif /Subtype /TrueType /FontDescriptor 17 0 R /FirstChar 32 /LastChar 255 /Widths 19 0 R /ToUnicode 18 0 R >> endobj 12 0 obj << /Type /Font /BaseFont /415672+NotoSerif-Italic /Subtype /TrueType /FontDescriptor 21 0 R /FirstChar 32 /LastChar 255 /Widths 23 0 R /ToUnicode 22 0 R >> endobj 13 0 obj << /Type /Outlines /Count 1 /First 14 0 R /Last 14 0 R >> endobj 14 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 13 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 15 0 obj << /Nums [0 << /P (1) >>] >> endobj 16 0 obj << /Length1 8016 /Length 4964 /Filter [/FlateDecode] >> stream xY}P[ו?=}e0Fx+ ,>l̇�I| avm $@6 YI65ތDZ㬓Iݶv;NntiӬivNIl Ҟ{ IOssνI�MP jxabd �350y(̈́&|_:Eӳ TQD~z:HF g}'Q(ʋ(Aygp(S:@*2 lo܂ws�9 H {L(_�=�uc4=� �؇��K4'/r$ *t̟qqkqnk`ZzrW�8+ 2k-ن2CaR_5 s_T_Þq{芓)ˎb!/7SJM\ɬ/4KyyPorl=+8%8JeGА)J mb;d Ik_Z \\x*JkU;KZR5cumsIF_(MZb@~d Ml7Bڠ.&L-yڔΓxeѱoGNVo <52K5+=E~Is%݁=UusJ�@s3Yɒm#hISmml_)oDJ[h(+\厸:*@c j3ֆ8f9�j `PLLb5i0q'o\L0-Q@V>~:PYX(X\֌wd sͶn!/ȯ._֎5ɣUf95i6Vjj4eV? _⎪Ju2E/?$m|-byu ec;a%aW[}=%tyz9T-ͦ-=yW~bFesk~Phhmnc/=3v1~[ãVpchk\02{>aS- i%h/aaX|U=j~ʖޖG<ے!xcfZt8ulװO.~OtvV)˹pa+_ 57z?M+F@T5!"ULF "szS1a ZDN'oԻBussWDŽކ{vdnF|kÏyQ߅OR7<]WPi)ҔtT »8>eykeM'kNbE,  ӧAOIyͥ3 cm[Xrm'ic_[e=Lk(SK#ږV,Lq!l*wB{i]G=ҹ?9|:~"/ͷ̿|=:AE t]˖ TlH|t*YhK{q+9][v/o|r_o|o@=&qQ6|Rinj<]W7RG1[^l욊ԴlUk,*fgx.~a^_+y+ *I!'U pi%5$>PIկᘪ`98&> qrn*@#x2i G"RC.CX}EmA8&{jAV ݃`x"iC9M< =_ I$;?ڄ<l =0 #l#s2sMbv$N )8A . .^xME*𦂫 lQp!4( Hk@G<J] $hF*x  <rLOJT$Q48(Pt(~&nXS h|*&)O< 3 ǺBHpj:FwݡLMh aMQ:"~tA°�$0;K g f R/ց >G{Eg�c@(@$8 Ûkar$05?nS0> ͅb a4y7Fe/2q:i,vB9,)9- D36b248'L ;v(X"Gihr7Cn&QB>ןp'n- NрoSzxX(لGQ\ DNOƐԄ>ddSVĒ)p;( X~=vĒvi: 7>i45Obf4$dCfB c!2@]2pgqhl }}El'3:Ũ34{ | N9 Bc\R?PC?:t201F5}sI{묡zG{]t_HhIGhwwp�%о[ ќ ( Ehp6<d >V:J$L't775Y`Mʜ?b\ DXZ/#tp >1U䴲1|‰a@B /|N<7#oXeͲj:qsp{jMg2?3V>^+؉u \fcF4>܁(D>dog0@މpz&WdEyxmuM4B$L-kR~&Ǘ.3-\HT_, ۑ>ngqwn}\@l0ؔ܌cFTD$EM)2:680?(M|Oa;I??I^Uᬖ!=߽R{l{R?Lo"{XG.Ƀ!aR[ Ae, g%%BH֢KN KЪkhddqt=rrB Rd .:\'ǡ$irT8]Γ"ZĴpoRuȣ§ȮW;*P�X>kbI 7qD.*Vd,@-̷nv}mM]ImYImz+{Q[o[Ds?,M"~!&J^%$ŏ!Yϔ<#~==ExYO?.. -7.%rR`DP/_Nj7._|͋w/&., >F65Cb!)pmݜ(Ѫ%4)xd&GIjV ~ы]}͖VYI(Z8jǬcCcbkuuuץ}wT{J&Y|K+dt,@oz>fОu#n2F1 <ꬮ[&Fd<.9Yi/k{'=ϝm}[n~XYe+mFj~ha!D/|F(9=ʀA-,Ȑ?F}ޡW`ujE j]Α}{z{v[WgewM uflTj()eenJOKMj*Xc^*{eUcdC);Ց{59y5i]$:-jCDWa7$*& A6*/ˎKv Ӻ@ұ5R /6+ByYMlXY,аn cM)xtqJY%k9% 2,]yu{3w->$ڗrdz�gk$]f}#}<$e:.;WzνOA4eUޥ%DK%Jbq\:ii9#c)lGÐ{$uV/;:4iV&<|- e:C%N!۳3Ỳ@wO 6+VGA^v'e|a_# ^ZK,wJ>{IV%;O^|:B!i)'2{.EzA*-kceIDž8@yv%! Kvw|� FN~׼ +V#r{O6Ka9W\'3ty%wB%662/s#<g' _Kr=1.r?)x~\ԭ7VRx$wÒYu M3pdkw*F'~'i0=唲uPV,emY : GYZwP7kh\E{H,z4LDcH^20HaYkp@L@10R<4Cn67<>J\G68 l^3eG~sn.=55ӥϹ%^X[wfN2Fr0M0gx,-[,[Xr%׿$9-\wGrvkp\Vs�}|}M BӳܯP�+G2 i [Uq,e #0"$1& JbV T0>ƽN,>^zXC>zL6ԶLM&:t oOk13H>1<Kgujyzύꏈ镲V.|}Ux?îKo3mgu~ok\+1!| oȓ8 HD  ]wQT{74| ߓZdW%ygZ)w+hp>#p(HG_]/Š):xvϱ&78/>P+hr5ykBZֆYu9?+GlĮ#4U‹JXb\I endstream endobj 17 0 obj << /Type /FontDescriptor /FontName /25878a+NotoSerif /FontFile2 16 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 18 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 19 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 500 500 250 500 500 559 559 500 559 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 625 500 500 500 500 500 500 500 562 500 500 613 535 500 500 500 500 500 500 500 500 645 577 500 500 500 451 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj 20 0 obj << /Length1 8988 /Length 5572 /Filter [/FlateDecode] >> stream x: Xg矙$(! ! jH�Gu@D!IPe>Kk_ooZv][]vmQ^zm3 nwwϙ?Q �0 yM 5�Ua$k !MPdsye{|4Exѐg0$*_Bo˶>R)*w*`F MI?0 yړS!߰fkQ:@F&�ۂ0�UBQHϬ=}(jƋe>د⹙ڪ�$́ĤR:!-2Y?}eC CUTS1f4Cu#$qŪWA ;A(<_es+ʗT-'ei5Sa3.|䎨meU 1!Q7~(N|)5,m*#mSY~iEy!!U Is?蘕$HM#Җǥ ]|}K:)]6Gce"փO ʸPk\,fЧ-$&}zJ͖p\6/>kᄚ^Uf3z.tCu{5r}QxPYr \M{I6=[μ;}[6#Wh!,Ī ~գ *swIvkVto=gl;THOM @EխkϐS /z'K1̻_# 5JצX3]_<qed]WQ 4}9WHr iZS1f("ts<#0MI2ykVH&W}b7TfH!̯(GS5poWxCcw"N_ڵ/DEl#1f-kzUڵ綺Q .]K{N3 <j/4r.r pݲUwf[npݷemIfL1\vKMz j 8|D6礹@<wmy.`V}I_ζ0w߬# muVuqɼ@)ce~iW۝a~ڮ?F({궼#wQlhZWTG1+>|n~Zj\7+, 5ӘVͰrt$lRix8ScT4`To+ O-)!:fV.<.IόxSt/k2t~QPR̿L+l, `?t=Wc %q \D2]֮97gs$~tgOέYO<yY(.JɽdBj %FkI[VG PvH?.$\X)H]*+:K>/ڜ1uLһQP7,Bfǥ7*K4jO'il (}<v})Ԛ*.S@;>&X5J$4lvǺwL0~' :V<.v*a{НR~&s[17)?TOϘnw Ċ2e>ܴfC߆|Ce[ﯽe=qجzWY7w[_k:q+^w*z^W2Icd񓆱G?emg?m}OKUHtja`h6UMW0EɮAv,l [Z >x/sk>r1b<@hPQa9t;:_->9=ilZ)/'c-1[7>c}w"ljt4u="lV{1xT^T.|RhX5B* אruI:pSr8*-ul%Kr4!z<qHFe;%9hG\^arŌEUn7½Mjk_3K9ܠ3MvGU+ )"Fؠ}]U^}sN پj[o>2-j:2?p+_Z!0L =;mgcp霃67}J^c}I; k 8͞UbLJ5Eqq_-B{Lyp˥񨽏&G}bt?Y|>M ZУ:-yU{T&_7gIR1pfրX\ y/&1~uT4v>y{G. @zZڠVCNpMN|  I̗cnkQ3P [3<{&<' E->P \B Q*$ ^ d2 nFrX'@*)9``iWPlVyR'A6($X|]SsI3{XeVq ~,Q\|]px4eKJ`%| A|/ myK0 ?�D0e<5~L@B6@/18v ːGڈO/#A 0-HD*L>[3E 7? aw%B dny\!ЏK�5y2匬2-._(Ғ%ה&x+AUV,,+eq46%/{ӃwExГ>l@\PV몑d+[|aw<CWmLOv !'&{F82-Aٯ<&"O+S=(HdxѸiӦ~ٽ%!c/bDEF9[#b6#l?%?KAdeD؇FEp)Ñ?5P0FL"�G}0&OGS'G^_ xo-q"RrWg#!ƈGJOϭ6{._[cًl6absZkZ;f[Q<|04>㖄}>/? xъa_h`h?pp/i= # K(SK0'"]kNB 7Sfre#[ͷ{Y5 ڱFZplsesP*g?W#r'A"~q.W<07́o6|;dt>[Uۆ_m;l<V/V|~4{'$C3!"ò!َ!ROW7ʯ<(xYL^OSJKFŰ鈄yɶЎti6LE܈ÈSGNpo? %P劶F[ḣj ~\1iO$t㯬K#s//^`Οzf!d>Lp qLрYbx3Db&􌳓> l S0ǜȖY#a F=JR(%QQm5dL$$ɵ*HX$$92JoQ#N>KTs-Bfɳs |ox7Mg k b'M;cbk6йCLʾ}GH#ُ0޻Y0i.Iy#x+ AvtDz5\,[۟'S̆Ĺ>Y5{zYѡ7ƲzΩBqMagYT&-~jw6ΓγNU㜃gM!1;d4g)͙JRZS!p>r2Ny#l [B?oK'*2Et 4fQ~Hi^%u{:څb-v/l816hNCmg8 bDBXPT|C.B+DFF"7>r) q4t0sv:ZW47ꭖsnX|~=,]b,). ?oiHզ̛8'AVq,*wb~ <Btxb/nҌ}WPJ嫠 EHj7',B'/9/s5s‹ƭ7X'`21 I8'u+<a0<+v[-Y99E6q`Nf)D̒Sa'?YSZ.L ^zp8k!g>HXBʵcFN%DTi~S@s3/x:O)i=w|^ǻ=Sm='LJahw㮩ؑYb{P֯-2y1W-,I휦ie@G;Ч99SfA@ܶx,"MW^^Isҕm+3ۻf=.ry6`Ez0PZqŬa\/7vʴ<jeyQn]7`-Zw1>B:~l(`V6d"Hl,ށ%m٣:Ĉ;<"EhEP;Oow[mN^ehZd:m@y ݇;5Yg=grP:̫|'fwgyxwVh�w n_'M4S(.G(2uw]h^^(_<lwV , q"VS%EXU_]Ԩ, /cT8MMASטә\#:qzN8(L[ �/6ˊ3d+r\r rpy f;Wle2? 4)sAaMeYrz=XXr=Oʹhَ 6`wWAƲntLEj'rI3>veS]9܇y|WXb)<(dfm*'#dO82.aGw8q\gq(e[y/mݝ4!=D$Jr0d1QՊIB-WS|ux fI'Ek§*A d�Nv^zHWy5x!}܂zSxd< w7-F`2o;2vAklނ?fp^č" TdI6g d�+Y1E^9B<ɼuSwю=UL0fKS!H0&G7Z 4qa Z.UWlakn4~`}Fj{S0 5vKdPAtr endstream endobj 21 0 obj << /Type /FontDescriptor /FontName /415672+NotoSerif-Italic /FontFile2 20 0 R /FontBBox [-254 -250 1238 1047] /Flags 70 /StemV 0 /ItalicAngle -12.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 22 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 23 0 obj [259 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 500 600 600 600 600 725 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 1044 600 600 600 600 600 600 600 600 600 579 600 600 579 493 600 600 599 304 600 568 304 895 599 574 577 560 467 463 368 599 538 818 600 527 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 250 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600] endobj xref 0 24 0000000000 65535 f 0000000015 00000 n 0000000262 00000 n 0000000463 00000 n 0000000520 00000 n 0000000571 00000 n 0000000843 00000 n 0000001985 00000 n 0000002295 00000 n 0000002337 00000 n 0000002385 00000 n 0000002437 00000 n 0000002602 00000 n 0000002774 00000 n 0000002848 00000 n 0000002973 00000 n 0000003018 00000 n 0000008072 00000 n 0000008286 00000 n 0000009648 00000 n 0000010562 00000 n 0000016224 00000 n 0000016448 00000 n 0000017810 00000 n trailer << /Size 24 /Root 2 0 R /Info 1 0 R >> startxref 18725 %%EOF ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/listing-page-split.pdf������������������������������������0000664�0000000�0000000�00000041557�14163570564�0024677�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20200101032703-07'00') /CreationDate (D:20200101032703-07'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 14 0 R /PageLabels 16 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 2 /Kids [7 0 R 12 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 6788 >> stream q q /DeviceRGB cs 0.9608 0.9608 0.9608 scn 52.24 805.89 m 543.04 805.89 l 545.2491 805.89 547.04 804.0991 547.04 801.89 c 547.04 52.24 l 547.04 50.0309 545.2491 48.24 543.04 48.24 c 52.24 48.24 l 50.0309 48.24 48.24 50.0309 48.24 52.24 c 48.24 801.89 l 48.24 804.0991 50.0309 805.89 52.24 805.89 c h f /DeviceRGB CS 0.8 0.8 0.8 SCN 0.75 w 52.24 805.89 m 543.04 805.89 l 545.2491 805.89 547.04 804.0991 547.04 801.89 c 547.04 52.24 l 547.04 50.0309 545.2491 48.24 543.04 48.24 c 52.24 48.24 l 50.0309 48.24 48.24 50.0309 48.24 52.24 c 48.24 801.89 l 48.24 804.0991 50.0309 805.89 52.24 805.89 c h S Q q 0.8999999999999999 w /DeviceRGB CS 0.9608 0.9608 0.9608 SCN [3.6 3.6] 0.0 d 52.99 48.24 m 542.29 48.24 l S Q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 59.24 783.065 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 768.325 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 753.585 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 738.845 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 724.105 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 709.365 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 694.625 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 679.885 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 665.145 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 650.405 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 635.665 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 620.925 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 606.185 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 591.445 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 576.705 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 561.965 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 547.225 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 532.485 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 517.745 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 503.005 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 488.265 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 473.525 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 458.785 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 444.045 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 429.305 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 414.565 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 399.825 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 385.085 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 370.345 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 355.605 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 340.865 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 326.125 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 311.385 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 296.645 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 281.905 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 267.165 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 252.425 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 237.685 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 222.945 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 208.205 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 193.465 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 178.725 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 163.985 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 149.245 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 134.505 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 119.765 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 105.025 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 90.285 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 75.545 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 60.805 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 13 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Length 2843 >> stream q q /DeviceRGB cs 0.9608 0.9608 0.9608 scn 52.24 805.89 m 543.04 805.89 l 545.2491 805.89 547.04 804.0991 547.04 801.89 c 547.04 653.855 l 547.04 651.6459 545.2491 649.855 543.04 649.855 c 52.24 649.855 l 50.0309 649.855 48.24 651.6459 48.24 653.855 c 48.24 801.89 l 48.24 804.0991 50.0309 805.89 52.24 805.89 c h f /DeviceRGB CS 0.8 0.8 0.8 SCN 0.75 w 52.24 805.89 m 543.04 805.89 l 545.2491 805.89 547.04 804.0991 547.04 801.89 c 547.04 653.855 l 547.04 651.6459 545.2491 649.855 543.04 649.855 c 52.24 649.855 l 50.0309 649.855 48.24 651.6459 48.24 653.855 c 48.24 801.89 l 48.24 804.0991 50.0309 805.89 52.24 805.89 c h S Q q 0.8999999999999999 w /DeviceRGB CS 0.9608 0.9608 0.9608 SCN [3.6 3.6] 0.0 d 52.99 805.89 m 542.29 805.89 l S Q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 59.24 796.43 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 781.69 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 766.95 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 752.21 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 737.47 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 722.73 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 707.99 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 693.25 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 678.51 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 663.77 Td /F2.0 11 Tf <6c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.9608 0.9608 0.9608 scn 52.24 637.855 m 543.04 637.855 l 545.2491 637.855 547.04 636.0641 547.04 633.855 c 547.04 590.375 l 547.04 588.1659 545.2491 586.375 543.04 586.375 c 52.24 586.375 l 50.0309 586.375 48.24 588.1659 48.24 590.375 c 48.24 633.855 l 48.24 636.0641 50.0309 637.855 52.24 637.855 c h f 0.8 0.8 0.8 SCN 0.75 w 52.24 637.855 m 543.04 637.855 l 545.2491 637.855 547.04 636.0641 547.04 633.855 c 547.04 590.375 l 547.04 588.1659 545.2491 586.375 543.04 586.375 c 52.24 586.375 l 50.0309 586.375 48.24 588.1659 48.24 590.375 c 48.24 633.855 l 48.24 636.0641 50.0309 637.855 52.24 637.855 c h S Q 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 615.03 Td /F2.0 11 Tf <6d6f7265206c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 600.29 Td /F2.0 11 Tf <6d6f7265206c697374696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 12 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 11 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 13 0 R >> >> >> endobj 13 0 obj << /Type /Font /BaseFont /6edddb+mplus1mn-regular /Subtype /TrueType /FontDescriptor 18 0 R /FirstChar 32 /LastChar 255 /Widths 20 0 R /ToUnicode 19 0 R >> endobj 14 0 obj << /Type /Outlines /Count 1 /First 15 0 R /Last 15 0 R >> endobj 15 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 14 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 16 0 obj << /Nums [0 << /P (1) >> 1 << /P (2) >>] >> endobj 17 0 obj << /Length1 3796 /Length 2434 /Filter [/FlateDecode] >> stream xV{l?!6Nx|/v4I; b;/0(mnԔJTU6uZ>誡ڭmneLjHv&{9{s_6�( x0UVaڀȟ�)23?h@�d(׽  mE\ł;C]F`a o1K(@hyU7;(d+yӨ$qݟ=y�j.l<x 6λSi9~Rk(PwL"?{}:PaC(8_��<#X!�>XέKe>h5nvE+)\pAxΔU욖n�wMv9+\b᤾{G@px" ,榿o_KVz|s۫ui1NVaXb_?ؼi㦎οx"fXzyqӑn <-\Q4Mr;D;ɥ9`ێCV&W93u kkmmwۀTbw,L(9G,HNX7m-~9b\ܱ<C\qp1տW!Fk#.O}Q\|DKg&gEt7TW/\ .Gnt|I0fc} >+7,\n#wT+VW3n PAFWHMc749ܱi!^Nv͸ngKW}5[w?#rUlind{ܹJu^rmzKuigQ6?fk(<-="ELb3`%`k֊-[%lNl l# g\Z|u Xp/H A5[=/!7i<s dP&7POB8P_L_o|LqR@nrIqx<&?_"7?/{t  /ngא)VqK[]pMi8A i�+ฆ'GO5\<kx y* 7jRŰh6@ix)\&R<</l692(_l|E1Bc+lYg25EJMh uJ(Hox;} IH<mSB( Až`|00K7>Ь!  HFY\ { 'h ͹t,; k12OÁPh!Npiޟn9%!]A<>2rg$gn p86 =+#(:ۧ# ')^ _ _,7Lid>}5LCe(clL2$cX<aXft0P%Ig3p_m4p,cg=S4crVd86 $QQ9ł338L 9o.Z>z=^o/3b.WMi\n™( @l mg2MA,XoOI99VY[J!,310Uޏ φcVE/$G3La !e|eV,v™ V6,3'b×߮F5=wvօ7 *|G*qM}\oG/'�iTJHHgOR 1[/M/J?G#5e)"$Aꐞ% DU:sKDzL;42[>RH< 8N?qG"N=?yObQD�JdWT:h(ۊ3ctI{}pW֮(?Rw_/i$eT}yiAqҼaׯ,~[3˂d)`gg{ ~ZP^<j'\ MU(c N8v,@W*JlC֮ [ X[CUzvUocVz XV5֯ @�lv`;[EN`tzbrҢn.T`3:ZhXM}"U*r6HlZ,׼9,eWf)"c^h BN'8M4?GJYd Mtg'(fiVDFzcꑙ>+xWXz%ˀN}͘\QU% "e sȹm0aFV�L_* 18J*6[W鈿Θmx::2gc~{~^@\ysgԵX6Q\- St endstream endobj 18 0 obj << /Type /FontDescriptor /FontName /6edddb+mplus1mn-regular /FontFile2 17 0 R /FontBBox [0 -270 1000 1025] /Flags 4 /StemV 0 /ItalicAngle 0.0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 19 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 20 0 obj [500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 500 364 500 364 364 500 500 500 500 364 364 500 500 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj xref 0 21 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000523 00000 n 0000000574 00000 n 0000000846 00000 n 0000007686 00000 n 0000007983 00000 n 0000008025 00000 n 0000008073 00000 n 0000008125 00000 n 0000011021 00000 n 0000011320 00000 n 0000011492 00000 n 0000011566 00000 n 0000011691 00000 n 0000011751 00000 n 0000014275 00000 n 0000014488 00000 n 0000015850 00000 n trailer << /Size 21 /Root 2 0 R /Info 1 0 R >> startxref 16764 %%EOF �������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/open-unbreakable-option-break.pdf�������������������������0000664�0000000�0000000�00000103524�14163570564�0026756�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.6.1.dev, based on Prawn 2.4.0) /Producer (Asciidoctor PDF 1.6.1.dev, based on Prawn 2.4.0) /ModDate (D:20210904153835-06'00') /CreationDate (D:20210904153835-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 29 0 R /PageLabels 31 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 3 /Kids [7 0 R 18 0 R 26 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 7801 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf [<4d616b> 20.0195 <652069742072> 20.0195 <61696e2e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 111.3866 793.926 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 111.3866 799.4831 Td /F1.0 6.1215 Tf <5b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2588 0.5451 0.7922 scn 0.2588 0.5451 0.7922 SCN BT 113.5842 799.4831 Td /F1.0 6.1215 Tf <31> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 117.0061 799.4831 Td /F1.0 6.1215 Tf <5d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 766.146 Td /F1.0 10.5 Tf <66696c6c6572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 738.366 Td /F1.0 10.5 Tf <66696c6c6572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 710.586 Td /F1.0 10.5 Tf <66696c6c6572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 682.806 Td /F1.0 10.5 Tf <66696c6c6572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 655.026 Td /F1.0 10.5 Tf <66696c6c6572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 627.246 Td /F1.0 10.5 Tf <66696c6c6572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 599.466 Td /F1.0 10.5 Tf <66696c6c6572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 571.686 Td /F1.0 10.5 Tf <66696c6c6572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 543.906 Td /F1.0 10.5 Tf <66696c6c6572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 516.126 Td /F1.0 10.5 Tf <66696c6c6572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 488.346 Td /F1.0 10.5 Tf <66696c6c6572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 460.566 Td /F1.0 10.5 Tf <66696c6c6572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 432.786 Td /F1.0 10.5 Tf <66696c6c6572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 405.006 Td /F1.0 10.5 Tf <66696c6c6572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 377.226 Td /F1.0 10.5 Tf <66696c6c6572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 349.446 Td /F1.0 10.5 Tf <66696c6c6572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 321.666 Td /F1.0 10.5 Tf <66696c6c6572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 293.886 Td /F1.0 10.5 Tf <66696c6c6572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 266.106 Td /F1.0 10.5 Tf <66696c6c6572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 238.326 Td /F1.0 10.5 Tf <66696c6c6572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 210.546 Td /F1.0 10.5 Tf <66696c6c6572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 182.766 Td /F1.0 10.5 Tf [<54> 29.7852 <6f20696e7374616c6c20416e746f72> 20.0195 <612c206f70656e2061207465726d696e616c20616e6420747970653a>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.9608 0.9608 0.9608 scn 52.24 166.95 m 543.04 166.95 l 545.2491 166.95 547.04 165.1591 547.04 162.95 c 547.04 134.21 l 547.04 132.0009 545.2491 130.21 543.04 130.21 c 52.24 130.21 l 50.0309 130.21 48.24 132.0009 48.24 134.21 c 48.24 162.95 l 48.24 165.1591 50.0309 166.95 52.24 166.95 c h f 0.8 0.8 0.8 SCN 0.75 w 52.24 166.95 m 543.04 166.95 l 545.2491 166.95 547.04 165.1591 547.04 162.95 c 547.04 134.21 l 547.04 132.0009 545.2491 130.21 543.04 130.21 c 52.24 130.21 l 50.0309 130.21 48.24 132.0009 48.24 134.21 c 48.24 162.95 l 48.24 165.1591 50.0309 166.95 52.24 166.95 c h S Q 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 144.125 Td /F2.0 11 Tf <24206e706d2069202d672040616e746f72612f636c6940322e322040616e746f72612f736974652d67656e657261746f722d64656661756c7440322e32> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.5426 Tw BT 48.24 106.246 Td /F1.0 10.5 Tf <54686520> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN 0.5426 Tw BT 70.2026 106.246 Td /F2.0 10.5 Tf <40> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.5426 Tw BT 75.4526 106.246 Td /F1.0 10.5 Tf <2061742074686520626567696e6e696e67206f6620746865207061636b616765206e616d6520697320696d706f7274616e742e2049742074656c6c7320> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN 0.5426 Tw BT 375.0287 106.246 Td /F2.0 10.5 Tf <6e706d> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.5426 Tw BT 390.7787 106.246 Td /F1.0 10.5 Tf <20746861742074686520> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN 0.5426 Tw BT 436.4853 106.246 Td /F2.0 10.5 Tf <636c69> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.5426 Tw BT 452.2353 106.246 Td /F1.0 10.5 Tf <207061636b616765206973206c6f6361746564> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.7189 Tw BT 48.24 90.466 Td /F1.0 10.5 Tf <696e2074686520> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN 0.7189 Tw BT 81.2092 90.466 Td /F2.0 10.5 Tf <616e746f7261> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.7189 Tw BT 112.7092 90.466 Td /F1.0 10.5 Tf [<2067726f75702e20496620796f75206f6d697420746869732063686172> 20.0195 <61637465722c20>] TJ ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN 0.7189 Tw BT 287.379 90.466 Td /F2.0 10.5 Tf <6e706d> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.7189 Tw BT 303.129 90.466 Td /F1.0 10.5 Tf <2077696c6c20617373756d6520746865207061636b616765206e616d6520697320746865206e616d65206f662061> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.5315 Tw BT 48.24 74.686 Td /F1.0 10.5 Tf <676974207265706f7369746f7279206f6e204769744875622e20546865207365636f6e6420> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN 0.5315 Tw BT 237.0899 74.686 Td /F2.0 10.5 Tf <40> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.5315 Tw BT 242.3399 74.686 Td /F1.0 10.5 Tf <206f66667365747320746865207265717565737465642076657273696f6e206e756d6265722e> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.5315 Tw BT 437.4414 74.686 Td ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.5315 Tw BT 437.4414 80.2431 Td /F1.0 6.1215 Tf <5b> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2588 0.5451 0.7922 scn 0.2588 0.5451 0.7922 SCN 0.5315 Tw BT 439.639 80.2431 Td /F1.0 6.1215 Tf <32> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.5315 Tw BT 443.0609 80.2431 Td /F1.0 6.1215 Tf <5d> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.5315 Tw BT 445.2585 74.686 Td /F1.0 10.5 Tf <204f6e6c7920746865206d616a6f7220616e64> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 58.906 Td /F1.0 10.5 Tf <6d696e6f72207365676d656e7473206172652073706563696669656420746f20656e7375726520796f75207265636569766520746865206c6174657374207061746368207570646174652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R /F2.0 14 0 R >> >> /Annots [13 0 R 16 0 R] >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R (_footnotedef_1) 21 0 R (_footnotedef_2) 23 0 R (_footnotedef_3) 27 0 R (_footnoteref_1) 12 0 R (_footnoteref_2) 15 0 R (_footnoteref_3) 19 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /bf1e4b+NotoSerif /Subtype /TrueType /FontDescriptor 33 0 R /FirstChar 32 /LastChar 255 /Widths 35 0 R /ToUnicode 34 0 R >> endobj 12 0 obj [7 0 R /XYZ 111.3866 805.14 null] endobj 13 0 obj << /Border [0 0 0] /Dest (_footnotedef_1) /Subtype /Link /Rect [113.5842 797.6956 117.0061 806.0209] /Type /Annot >> endobj 14 0 obj << /Type /Font /BaseFont /5784a5+mplus1mn-regular /Subtype /TrueType /FontDescriptor 37 0 R /FirstChar 32 /LastChar 255 /Widths 39 0 R /ToUnicode 38 0 R >> endobj 15 0 obj [7 0 R /XYZ 437.4414 85.9 null] endobj 16 0 obj << /Border [0 0 0] /Dest (_footnotedef_2) /Subtype /Link /Rect [439.639 78.4556 443.0609 86.7809] /Type /Annot >> endobj 17 0 obj << /Length 5525 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf <66696c6c657220696e73696465206f70656e20626c6f636b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 766.146 Td /F1.0 10.5 Tf <66696c6c657220696e73696465206f70656e20626c6f636b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 738.366 Td /F1.0 10.5 Tf <66696c6c657220696e73696465206f70656e20626c6f636b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 710.586 Td /F1.0 10.5 Tf <66696c6c657220696e73696465206f70656e20626c6f636b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 682.806 Td /F1.0 10.5 Tf <66696c6c657220696e73696465206f70656e20626c6f636b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 655.026 Td /F1.0 10.5 Tf <66696c6c657220696e73696465206f70656e20626c6f636b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 627.246 Td /F1.0 10.5 Tf <66696c6c657220696e73696465206f70656e20626c6f636b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 599.466 Td /F1.0 10.5 Tf <66696c6c657220696e73696465206f70656e20626c6f636b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 571.686 Td /F1.0 10.5 Tf <66696c6c657220696e73696465206f70656e20626c6f636b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 543.906 Td /F1.0 10.5 Tf <66696c6c657220696e73696465206f70656e20626c6f636b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 516.126 Td /F1.0 10.5 Tf <66696c6c657220696e73696465206f70656e20626c6f636b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 488.346 Td /F1.0 10.5 Tf <66696c6c657220696e73696465206f70656e20626c6f636b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 460.566 Td /F1.0 10.5 Tf <66696c6c657220696e73696465206f70656e20626c6f636b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 432.786 Td /F1.0 10.5 Tf <66696c6c657220696e73696465206f70656e20626c6f636b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 405.006 Td /F1.0 10.5 Tf <66696c6c657220696e73696465206f70656e20626c6f636b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 377.226 Td /F1.0 10.5 Tf <66696c6c657220696e73696465206f70656e20626c6f636b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 349.446 Td /F1.0 10.5 Tf <66696c6c657220696e73696465206f70656e20626c6f636b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 321.666 Td /F1.0 10.5 Tf <66696c6c657220696e73696465206f70656e20626c6f636b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 293.886 Td /F1.0 10.5 Tf <66696c6c657220696e73696465206f70656e20626c6f636b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 266.106 Td /F1.0 10.5 Tf <66696c6c657220696e73696465206f70656e20626c6f636b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 238.326 Td /F1.0 10.5 Tf <66696c6c657220696e73696465206f70656e20626c6f636b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 210.546 Td /F1.0 10.5 Tf <66696c6c657220696e73696465206f70656e20626c6f636b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 182.766 Td /F1.0 10.5 Tf <66696c6c657220696e73696465206f70656e20626c6f636b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 154.986 Td /F1.0 10.5 Tf <66696c6c657220696e73696465206f70656e20626c6f636b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 127.206 Td /F1.0 10.5 Tf <66696c6c657220696e73696465206f70656e20626c6f636b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 99.426 Td /F1.0 10.5 Tf [<4d616b> 20.0195 <6520697420736e6f77> 69.8242 <2e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 116.5021 99.426 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 116.5021 104.9831 Td /F1.0 6.1215 Tf <5b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2588 0.5451 0.7922 scn 0.2588 0.5451 0.7922 SCN BT 118.6998 104.9831 Td /F1.0 6.1215 Tf <33> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 122.1217 104.9831 Td /F1.0 6.1215 Tf <5d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 74.4946 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 74.4946 Td /F1.0 8 Tf <5b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2588 0.5451 0.7922 scn 0.2588 0.5451 0.7922 SCN BT 51.112 74.4946 Td /F1.0 8 Tf <31> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 55.584 74.4946 Td /F1.0 8 Tf <5d206d6f6e6579> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 59.4717 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 59.4717 Td /F1.0 8 Tf <5b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2588 0.5451 0.7922 scn 0.2588 0.5451 0.7922 SCN BT 51.112 59.4717 Td /F1.0 8 Tf <32> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 55.584 59.4717 Td /F1.0 8 Tf <5d20436c6172696669636174696f6e2061626f757420746869732073746174656d656e742e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 18 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 17 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R >> >> /Annots [20 0 R 22 0 R 24 0 R] >> endobj 19 0 obj [18 0 R /XYZ 116.5021 110.64 null] endobj 20 0 obj << /Border [0 0 0] /Dest (_footnotedef_3) /Subtype /Link /Rect [118.6998 103.1956 122.1217 111.5209] /Type /Annot >> endobj 21 0 obj [18 0 R /XYZ 48.24 83.0386 null] endobj 22 0 obj << /Border [0 0 0] /Dest (_footnoteref_1) /Subtype /Link /Rect [51.112 72.1586 55.584 83.0386] /Type /Annot >> endobj 23 0 obj [18 0 R /XYZ 48.24 68.0157 null] endobj 24 0 obj << /Border [0 0 0] /Dest (_footnoteref_2) /Subtype /Link /Rect [51.112 57.1357 55.584 68.0157] /Type /Annot >> endobj 25 0 obj << /Length 491 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 797.346 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 797.346 Td /F1.0 8 Tf <5b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2588 0.5451 0.7922 scn 0.2588 0.5451 0.7922 SCN BT 51.112 797.346 Td /F1.0 8 Tf <33> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 55.584 797.346 Td /F1.0 8 Tf <5d20646f6c6c61722062696c6c73> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 26 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 25 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R >> >> /Annots [28 0 R] >> endobj 27 0 obj [26 0 R /XYZ 48.24 805.89 null] endobj 28 0 obj << /Border [0 0 0] /Dest (_footnoteref_3) /Subtype /Link /Rect [51.112 795.01 55.584 805.89] /Type /Annot >> endobj 29 0 obj << /Type /Outlines /Count 1 /First 30 0 R /Last 30 0 R >> endobj 30 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 29 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 31 0 obj << /Nums [0 << /P (1) >> 1 << /P (2) >> 2 << /P (3) >>] >> endobj 32 0 obj << /Length1 12552 /Length 7701 /Filter [/FlateDecode] >> stream xz x[ǵ̽ w7.x n \$  (A\$P8Ȓ)r'ّdŖUgCnjv:_e#}�&_^{̙3sf B bpwlg7 9ौ @xm9B&B ILw}*#Becz�n]9 k?<(M>O|i7}q [<0A}+Yό} �oL%37vBW�c?"cIC?v$~⤈\?:[)yCrK\E)bPvK`'[⢚^ŔS^D? -eД2?5HtVd*f bD '۠tw 0 Gv+@!4IW^tIgE#Z�u1PB~];ANBὛkEPׅ"92'_="Rrm9*$mث>wQ1r w#)fzCXqw_kM@"Ni% (q%@,ÕIF2x32 yBTsYlnkKgG{[kfmnj4ToTUYQj2%<!WΔ˒bccJl}|UOʂ5 ,z ?L i KZV$q2_j%M׬ou}* O(\>-$@A-s0o L.چr\l՗˱q@,.zL V}Am<c^ͪh%mDJP3U7%T%?Ec7_IF#ú1a3he`` m&,h[cKi~s>p!`E=W|x9>~qF=nhuecʠ`0yxWGkns�&F6j�sM52cW,h pG#ʗŨ 2ähM֬4 ml`cBr0 FXL񛍃TTmcS|PfVk@&ɴE:ȗPCpod&(%V]wbvdapє/hrişmMDA #FIlk=y<y$xCu].ΌѠ(No̷-ƃaqޭ-bPp{IP5>h.4;BGVpQimneX gPnF`20x;BS-<dp咰nX�#Xۼֈ)S*"&&Eܪ j—j>1FX-c@ egn+ |&c#'WǺcb̠]\k` -[7TEEѿH  w&$bbFeD ~Qh[ݵTVH_)w8%5]|dH�:/3inuxW(!\$>(H5 Bi-G<z#ʓFy^a¼(Y(\I16~kÃ$Q:Xp `2fX|1K 2p:֗[L gal4ԃȉ, T�%xbt<12r^8BegpX8ԳYIK>k!{jU@k9(%$(%"'8*cC%co)H$a $:,@oa_ƛl,Gp3OS<1EBM9,И 3nIu-?cQǸc,GI-a#\hOff]V_}+K}U9x<o?$NzR$s zb=O?8΀=N'fjç˧i %4qSSSOS˧Dt?R |Uάe[VK veLcc04vS)N�~{ɲLeqgCMq-,lҙnNsp3ٜ ʉ[I7X:^B7?E ~첣_"Y}Xҳ-i "m?:x Ԕ,ws;c@Xqit~(?(L!@>ݏ0)x%ACX t:"#:?:2XD \ >KڑDhh<ClX%~~\菔vq�>C7Z? . u>k=4k7oG>t ]o/:Ns)Tԇ0t4NUAw5ÜKuְ\ց{�٠ څ6irPM2z]pС.R}%nA<1rF*?yI+DU[T0E̕#߉>UrTy(.|b.1?gq)u;DċEĭ%9i-}LE;橘bbwƾ7N BYH2Li%#3m+GOa- ]'`@H+Od$UWT >{`Ȼ==7?7}f~SIqdʕi"uM} ˟C+z(HB9 JQHK Q?XX'&]I~Ԁ\VTY!7mf\ഫuzeRWZ͏=0 cXu+7umRוJ3ڝ_LX= #)28VVSY2Ld�jE:4._j$RW읓糪ݕŤ4{όzNoZ<;:(RiCc;>`aӖ9fo{Qש_1NF �t8<{`!fDʮ45YGyxh](ˬ诱#׹Z]-5Bɖw5Bgknׇڋ&} mۛr,e7jqy]־oxũ~}r[E%. #oE_eh5OD '%8MQfb#Ŋ|#f |+&f sթz|VnJt͸?FwIRӳSEQVnrK7Lb]Y^mOCm \�_^VtQ'(2R1+zr¬45gmxf`Y!K8?}/D? ܴ|G~SCn\I76NE,{6Etl;*DUY% G&2ex9?_rm8voRmٖɎo(tJC]Ks'ޗvw#>rrS1`4|&25-P˲(R4*^Pu`z9 JƱZC Q -7U0Vk諲c\(y0YvE֣( .oרΎL3讌ڣJ|oR$`t&\q@[gPė**W\oFxb_p6cbj?d5tc9WB "Q]Dn={z-)^=Bz{'q[v] >q󹁁n> .ׅaAC@uF!%a!U*Xf~Em\zHL𖾮 ~1sx<tMi_B3J75`n؎ےp0ݾtB[yz:$TI8OBiKQ+m5!EvI:XTѰ(He3X?4ЪkM[QspۍR?2uź4v;/9a93UTӵ##K6&gIk^- cգJ *!2׳4X ުOykԤ'䅮$Sq^8|3ҌZS;B5=,Je^뎺:Sw<ެ05o4|CGm&"ϱboׅ͛瞛yv|{{\DǵxuqL'kcxf/|fo<㖡m5;yznǣBd=~Ⴧ7ewWT\ڒWy= ق}@]jXUQd Gft.Gz.]QLee؀,p jsM6e抱ZTre%)hmaK/xُNRb)+h�K&9Xbly~EfS뻼fk\LіmSJaor_xXsww'K3 |̥*Rt0͈,it13#tSx㍲;zfUY:m&/ kBYg|piZ~9IRsGz�Cr{2i/[deKg H.]w|2@bYIF9#"5<!c\E([HSa۱U*TLN5*0tWc?o-CB^n،Y<ֺҤ²\^t|fxIG!2[Iclɩ rdi w86S ܏V;QR* 4ǥf&$he9_f6ڦm:!1~hӼ#52FbrYDM c;~q}zwȐ)ֶ2+\TD P]Pn<1 knlwz c�c&*|v=ȶ!mnb<NC^bf:5U]U̧͆yĺ<D<*>^eʃwB]tT &A#AӃ*WvZ#}w Wg }7c `i`{!aѓS�9L,s^HSĖ[-0B\n+n{[k]wOŦ TIR$\c53L}|XzcAtA,qZ7p̈];+P]A7*c-NS-u2ukk.C$v3}5ʌ5m2ׄ2s"uZ}W<:fC kC48'w ƹ_0YԢbܡ[K{ 3�$$Y_.밅G=`K"YNj6f\U5ڲegSULA?cdN /Ͽ௮@SºK%'j>bs=@b7$'JZ#xkTP<%ݤ+ Ey9ҷ>Dq;Q_$9v00rdaBQYUYuWQ.ݘa\]zJ@ӯ -nC I4֥!9$)Xd< Έ6d$6^1~_e;d"AϜZ,^ ʚXyqVLT_WJISCoW9;t-CW=MjW5QӔ1?z8!�[trg}c*cH{Bg~ms[Z!@:w+z+-ER[Q~;=|8oj,+lg6uXz-7\j'R-diCz\eNQ: ť]sS\ALJ>s}yO%OuYXFi1k]WE=zVPY]|iVO`.[ #OL?S-Ց4_4լ~=X|EX 1bITo.WN8BXA E}Tz,!;KID9S1$j&(7B+rKTg.,2B 8:[zdAV& MP7(=PI2{Z2S.ǥqͶDBU"B6Oτ>>N<,d8wv(nWPB ̻G\ cud%{Sui]a{ºqCN#hE~v/kt*%N޿sq[䙙DFpo$1gtNWx$l.f0zf8S?}Q˟{[CQ<c&# X(iI`w ,Á}ZDdR1H^бȀ!B\K,VF܁& YU3"4FrNfP"YTͪ"4;BP&;%FuJQ1 O#t,:s{"t<3ܭ%7OML2SiML{Q8=*?{x ]Oy'=[|9h2㙘*||T92^-ёU)?1g~_ N1^,zf �;ƏW6LsFoF}3 o>Hs*,M� y/Ԩw}.̎yo缳aΰ@ jRoecSI,ϷMm%@m~o9ںd.k 8y)b~HsѩQ~3;Qygd 1T ,q^<�t~j.7 c5#C{<;Ge;RP-P4B ͢Q<QJ+?-y]{9]:�7) S �=Tj/25 ; Oᾗ{\M0 rE;�@ͣ]󁎯FՒVjb+%3@LRF@c4" 'U܈H�X} kd>zfC[�,:be;P@ w,2Ǩh&l?Xݴu;i(νbZ}h\�@_X>saSͣ&Z&%c�(jNxr#~<܆lm7pxm\B"Ct{U:�XfFb.p4<_ٕOیYG$y:gЈ"8(j˨GE?CBfj== a!)<[ n~@L<;GW.6 o2 '~yW1͇ _Cf򁫃`B+YvXSZN]Cǝ ^ފ"1ˈv endstream endobj 33 0 obj << /Type /FontDescriptor /FontName /bf1e4b+NotoSerif /FontFile2 32 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 34 0 obj << /Length 1278 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }ik/y_!}t~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=n?[i(JKiU:JSz2QeL*EJ̔Ye,*+eU(NU-уk5x5F^ky ^#k5x5F^ky ^#kxZV^kZy-^+kxZV^kZy-^+uxu:N^:y^'uxu:N^:y^'xz^^zy=^/xz^^zy=^/o xo7 Aހ7y o xo7 Aހ7y oxo7jo$JI$$*I$ITH$$QI"IDD%$JI$$*I$ITD$$III$$u>M&Iބ7ɛ&y$o›Mx o7M&Iބ7ɛ&yUoa[5joSor4ۂs�ޮ>,x/x;Â31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x e#e_y+h܊7k:/Z5dUluz5n[eB&Si|y(%q& %+S%*ABijPU6\h,(+L,4G5<cD [˧*t [ jjaijIxʪwgFwضR>sh>:OVRP*#i|e0U,*oU/*[U,Nmlx:&\}M)L2\%CHF7էʻBL)jƻJ1:%H߯:=S۳zrmkO媳7 endstream endobj 35 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 250 500 250 500 500 559 559 559 500 500 500 500 500 500 286 500 500 500 500 500 500 705 500 613 500 500 500 713 792 367 500 500 500 937 500 742 500 500 500 500 612 500 500 500 500 500 500 359 500 359 500 500 500 562 613 492 613 535 369 538 634 319 299 584 310 944 645 577 613 613 471 451 352 634 579 861 500 564 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj 36 0 obj << /Length1 4760 /Length 3160 /Filter [/FlateDecode] >> stream xWkp>wevؖ"I(WZKZdb[/ IIX#q (%Q30BiLg0 )R hZ( 2-ϖH=wwmRZ]=ss]8 *58Tos�Hx`jcG�Nܟܚ!|T$^x�F GS"n/LM z@]-/ u_9PCĮqe4>`YL S ȇ&p;H 릒in߄ީTxJ{ıXyqgOa jœ]ˣo~ JrIU~y0N>\K0zlkCB>!wC>NeܓpE"o C fTsiϳV0K&Xasca;MiMJcv[7`fS/sKI7EKSwBѢKpWBiFtew`a[\~-Euo_䧯duE$fzY,u~ETc˩VE33W#ofK ]7u>{_/߼dETONl^!OWJUY-bĂG*x*UD2L2hWdWdveeFD\lHiXPGiC}4[`vKXd M3'34Kx.%bk ЧDr^`Щٌ(܌Y<*"2Pi/:XƖA5,&h@u|`Ϯk3aK͘DV6WT,geΌG|=^۱^<3DWWқEb]f}$. =ӄ?VC,Ípؿuu�r͡ & H1(<D.gks{*vd90]ǝg8Sƨkx#) ɫF ܹ\&AuzQ]XVGWר5Dt4wdakhv{jN\_T81ݖ-OB{ Wz%D2#+Ըt:վq*{V}`'Qcg:1uGE6l?wK<VE'|>]*'{hFț NMS?z5ؗ;F=㏤:9\;e{&;A^nJ;yl v[^͛Y-l@ ̎Cڮ-{n?7;v}Q0k5jy.ySj<&>նkv:ݺ ][3r�`DGJd@"bS=;E?5Vz=^͍:+; t R~ $b7^+IOsy;Ŀ_DV~2MǏ!Uٚ4H5*T"W_Yռo=zoώHc)I/&/Ej!:ޅrkj 籼-ܮCm~.T;>CV-OZu]c̖:BM%d5y qh%Ott/XRlmɺ:l/"/ T�;ldVFVrꛢWP#7kjx5+At٪"_r /&Ɛ_~CMIt+ry\.S\%qwɚ[ZZ[䳂\BҨv bk*n<Wu Mv|7~ GvJ.!}^D> d эrlϡ_ږMeZڤw!t::9"ǯ_A_w<Šǚ+QuX&v5WuGáwbq{Bz0@r!s{wrڶ5Mу\YE.7)ხF~ D"Hopp`uȫtUq1kVlյ+we53n䓖t,j!Z8%BVM",.#1\f j{wh3}XN>[M0 K3Τ֧VUW<NmLPaE^ +}$K|VrW,k$NN29E栄<*"A1Wy14r[y "Aq޼Jd{ rY^"3|ޑK"tmp- )~w Qw1xLRD;* TDf4Z cm N{pŧ&gqҒԆzIm@ikr:Ʀ)P֧a:HRa+ILt8D©xlZfT $i33@"DCt*{&QLI}r&MPl" Lè ;3N$תtoH*J5IMmC86ѱa: rYġ0sGaMIe`=JPn!=4.BaexԽ)#0HFb>kEd eOYc;X|kmF!5)y4HXN HӘ<:h=f iN=#+Aa􊡆.Ѕq c1833RFa0hǖF]uS5C-3 _M,؅RPY&3;f|F۴ĆcVEUqR#)!L` "fZa|ÊmXdFA `fe9!}0B/U>Q'NԘ5:̛CbMqxp]^N ^(} |+僙aOHx5/ ?~,<$D Q±z3 {{H nvt'񮝩Ev!(L D+ KzrU\w*=<VG ?J亨08ffΌS)R,oig~6˥C>?5 =`+҃ /w ?>Mo$W endstream endobj 37 0 obj << /Type /FontDescriptor /FontName /5784a5+mplus1mn-regular /FontFile2 36 0 R /FontBBox [0 -270 1000 1025] /Flags 4 /StemV 0 /ItalicAngle 0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 38 0 obj << /Length 1278 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }ik/y_!}t~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=n?[i(JKiU:JSz2QeL*EJ̔Ye,*+eU(NU-уk5x5F^ky ^#k5x5F^ky ^#kxZV^kZy-^+kxZV^kZy-^+uxu:N^:y^'uxu:N^:y^'xz^^zy=^/xz^^zy=^/o xo7 Aހ7y o xo7 Aހ7y oxo7jo$JI$$*I$ITH$$QI"IDD%$JI$$*I$ITD$$III$$u>M&Iބ7ɛ&y$o›Mx o7M&Iބ7ɛ&yUoa[5joSor4ۂs�ޮ>,x/x;Â31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x e#e_y+h܊7k:/Z5dUluz5n[eB&Si|y(%q& %+S%*ABijPU6\h,(+L,4G5<cD [˧*t [ jjaijIxʪwgFwضR>sh>:OVRP*#i|e0U,*oU/*[U,Nmlx:&\}M)L2\%CHF7էʻBL)jƻJ1:%H߯:=S۳zrmkO媳7 endstream endobj 39 0 obj [500 364 364 364 500 364 364 364 364 364 364 364 364 500 500 500 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 500 500 500 500 500 364 500 364 364 500 500 500 500 500 364 500 500 500 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj xref 0 40 0000000000 65535 f 0000000015 00000 n 0000000248 00000 n 0000000449 00000 n 0000000520 00000 n 0000000571 00000 n 0000000843 00000 n 0000008696 00000 n 0000009030 00000 n 0000009072 00000 n 0000009120 00000 n 0000009316 00000 n 0000009481 00000 n 0000009531 00000 n 0000009664 00000 n 0000009836 00000 n 0000009884 00000 n 0000010014 00000 n 0000015592 00000 n 0000015922 00000 n 0000015973 00000 n 0000016106 00000 n 0000016155 00000 n 0000016282 00000 n 0000016331 00000 n 0000016458 00000 n 0000017001 00000 n 0000017317 00000 n 0000017365 00000 n 0000017490 00000 n 0000017564 00000 n 0000017689 00000 n 0000017764 00000 n 0000025556 00000 n 0000025768 00000 n 0000027122 00000 n 0000028036 00000 n 0000031286 00000 n 0000031497 00000 n 0000032851 00000 n trailer << /Size 40 /Root 2 0 R /Info 1 0 R >> startxref 33765 %%EOF ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/open-unbreakable-option-fit.pdf���������������������������0000664�0000000�0000000�00000073117�14163570564�0026460�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.6.1.dev, based on Prawn 2.4.0) /Producer (Asciidoctor PDF 1.6.1.dev, based on Prawn 2.4.0) /ModDate (D:20210904154011-06'00') /CreationDate (D:20210904154011-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 27 0 R /PageLabels 29 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 2 /Kids [7 0 R 15 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 3193 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf [<4d616b> 20.0195 <652069742072> 20.0195 <61696e2e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 111.3866 793.926 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 111.3866 799.4831 Td /F1.0 6.1215 Tf <5b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2588 0.5451 0.7922 scn 0.2588 0.5451 0.7922 SCN BT 113.5842 799.4831 Td /F1.0 6.1215 Tf <31> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 117.0061 799.4831 Td /F1.0 6.1215 Tf <5d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 766.146 Td /F1.0 10.5 Tf <66696c6c6572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 738.366 Td /F1.0 10.5 Tf <66696c6c6572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 710.586 Td /F1.0 10.5 Tf <66696c6c6572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 682.806 Td /F1.0 10.5 Tf <66696c6c6572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 655.026 Td /F1.0 10.5 Tf <66696c6c6572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 627.246 Td /F1.0 10.5 Tf <66696c6c6572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 599.466 Td /F1.0 10.5 Tf <66696c6c6572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 571.686 Td /F1.0 10.5 Tf <66696c6c6572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 543.906 Td /F1.0 10.5 Tf <66696c6c6572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 516.126 Td /F1.0 10.5 Tf <66696c6c6572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 488.346 Td /F1.0 10.5 Tf <66696c6c6572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 460.566 Td /F1.0 10.5 Tf <66696c6c6572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 432.786 Td /F1.0 10.5 Tf <66696c6c6572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 405.006 Td /F1.0 10.5 Tf <66696c6c6572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 377.226 Td /F1.0 10.5 Tf <66696c6c6572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 349.446 Td /F1.0 10.5 Tf <66696c6c6572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 321.666 Td /F1.0 10.5 Tf <66696c6c6572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 293.886 Td /F1.0 10.5 Tf <66696c6c6572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 266.106 Td /F1.0 10.5 Tf <66696c6c6572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 238.326 Td /F1.0 10.5 Tf <66696c6c6572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 210.546 Td /F1.0 10.5 Tf <66696c6c6572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R >> >> /Annots [13 0 R] >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R (_footnotedef_1) 21 0 R (_footnotedef_2) 23 0 R (_footnotedef_3) 25 0 R (_footnoteref_1) 12 0 R (_footnoteref_2) 17 0 R (_footnoteref_3) 19 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /bf1e4b+NotoSerif /Subtype /TrueType /FontDescriptor 31 0 R /FirstChar 32 /LastChar 255 /Widths 33 0 R /ToUnicode 32 0 R >> endobj 12 0 obj [7 0 R /XYZ 111.3866 805.14 null] endobj 13 0 obj << /Border [0 0 0] /Dest (_footnotedef_1) /Subtype /Link /Rect [113.5842 797.6956 117.0061 806.0209] /Type /Annot >> endobj 14 0 obj << /Length 6683 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf [<54> 29.7852 <6f20696e7374616c6c20416e746f72> 20.0195 <612c206f70656e2061207465726d696e616c20616e6420747970653a>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.9608 0.9608 0.9608 scn 52.24 778.11 m 543.04 778.11 l 545.2491 778.11 547.04 776.3191 547.04 774.11 c 547.04 745.37 l 547.04 743.1609 545.2491 741.37 543.04 741.37 c 52.24 741.37 l 50.0309 741.37 48.24 743.1609 48.24 745.37 c 48.24 774.11 l 48.24 776.3191 50.0309 778.11 52.24 778.11 c h f 0.8 0.8 0.8 SCN 0.75 w 52.24 778.11 m 543.04 778.11 l 545.2491 778.11 547.04 776.3191 547.04 774.11 c 547.04 745.37 l 547.04 743.1609 545.2491 741.37 543.04 741.37 c 52.24 741.37 l 50.0309 741.37 48.24 743.1609 48.24 745.37 c 48.24 774.11 l 48.24 776.3191 50.0309 778.11 52.24 778.11 c h S Q 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 755.285 Td /F2.0 11 Tf <24206e706d2069202d672040616e746f72612f636c6940322e322040616e746f72612f736974652d67656e657261746f722d64656661756c7440322e32> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.5426 Tw BT 48.24 717.406 Td /F1.0 10.5 Tf <54686520> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN 0.5426 Tw BT 70.2026 717.406 Td /F2.0 10.5 Tf <40> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.5426 Tw BT 75.4526 717.406 Td /F1.0 10.5 Tf <2061742074686520626567696e6e696e67206f6620746865207061636b616765206e616d6520697320696d706f7274616e742e2049742074656c6c7320> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN 0.5426 Tw BT 375.0287 717.406 Td /F2.0 10.5 Tf <6e706d> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.5426 Tw BT 390.7787 717.406 Td /F1.0 10.5 Tf <20746861742074686520> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN 0.5426 Tw BT 436.4853 717.406 Td /F2.0 10.5 Tf <636c69> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.5426 Tw BT 452.2353 717.406 Td /F1.0 10.5 Tf <207061636b616765206973206c6f6361746564> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.7189 Tw BT 48.24 701.626 Td /F1.0 10.5 Tf <696e2074686520> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN 0.7189 Tw BT 81.2092 701.626 Td /F2.0 10.5 Tf <616e746f7261> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.7189 Tw BT 112.7092 701.626 Td /F1.0 10.5 Tf [<2067726f75702e20496620796f75206f6d697420746869732063686172> 20.0195 <61637465722c20>] TJ ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN 0.7189 Tw BT 287.379 701.626 Td /F2.0 10.5 Tf <6e706d> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.7189 Tw BT 303.129 701.626 Td /F1.0 10.5 Tf <2077696c6c20617373756d6520746865207061636b616765206e616d6520697320746865206e616d65206f662061> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.5315 Tw BT 48.24 685.846 Td /F1.0 10.5 Tf <676974207265706f7369746f7279206f6e204769744875622e20546865207365636f6e6420> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN 0.5315 Tw BT 237.0899 685.846 Td /F2.0 10.5 Tf <40> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.5315 Tw BT 242.3399 685.846 Td /F1.0 10.5 Tf <206f66667365747320746865207265717565737465642076657273696f6e206e756d6265722e> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.5315 Tw BT 437.4414 685.846 Td ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.5315 Tw BT 437.4414 691.4031 Td /F1.0 6.1215 Tf <5b> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2588 0.5451 0.7922 scn 0.2588 0.5451 0.7922 SCN 0.5315 Tw BT 439.639 691.4031 Td /F1.0 6.1215 Tf <32> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.5315 Tw BT 443.0609 691.4031 Td /F1.0 6.1215 Tf <5d> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.5315 Tw BT 445.2585 685.846 Td /F1.0 10.5 Tf <204f6e6c7920746865206d616a6f7220616e64> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 670.066 Td /F1.0 10.5 Tf <6d696e6f72207365676d656e7473206172652073706563696669656420746f20656e7375726520796f75207265636569766520746865206c6174657374207061746368207570646174652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 642.286 Td /F1.0 10.5 Tf [<4d616b> 20.0195 <6520697420736e6f77> 69.8242 <2e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 116.5021 642.286 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 116.5021 647.8431 Td /F1.0 6.1215 Tf <5b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2588 0.5451 0.7922 scn 0.2588 0.5451 0.7922 SCN BT 118.6998 647.8431 Td /F1.0 6.1215 Tf <33> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 122.1217 647.8431 Td /F1.0 6.1215 Tf <5d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 84.1931 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 84.1931 Td /F1.0 8 Tf <5b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2588 0.5451 0.7922 scn 0.2588 0.5451 0.7922 SCN BT 51.112 84.1931 Td /F1.0 8 Tf <31> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 55.584 84.1931 Td /F1.0 8 Tf <5d206d6f6e6579> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 69.1703 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 69.1703 Td /F1.0 8 Tf <5b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2588 0.5451 0.7922 scn 0.2588 0.5451 0.7922 SCN BT 51.112 69.1703 Td /F1.0 8 Tf <32> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 55.584 69.1703 Td /F1.0 8 Tf <5d20436c6172696669636174696f6e2061626f757420746869732073746174656d656e742e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 54.1474 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 54.1474 Td /F1.0 8 Tf <5b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2588 0.5451 0.7922 scn 0.2588 0.5451 0.7922 SCN BT 51.112 54.1474 Td /F1.0 8 Tf <33> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 55.584 54.1474 Td /F1.0 8 Tf <5d20646f6c6c61722062696c6c73> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 15 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 14 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R /F2.0 16 0 R >> >> /Annots [18 0 R 20 0 R 22 0 R 24 0 R 26 0 R] >> endobj 16 0 obj << /Type /Font /BaseFont /5784a5+mplus1mn-regular /Subtype /TrueType /FontDescriptor 35 0 R /FirstChar 32 /LastChar 255 /Widths 37 0 R /ToUnicode 36 0 R >> endobj 17 0 obj [15 0 R /XYZ 437.4414 697.06 null] endobj 18 0 obj << /Border [0 0 0] /Dest (_footnotedef_2) /Subtype /Link /Rect [439.639 689.6156 443.0609 697.9409] /Type /Annot >> endobj 19 0 obj [15 0 R /XYZ 116.5021 653.5 null] endobj 20 0 obj << /Border [0 0 0] /Dest (_footnotedef_3) /Subtype /Link /Rect [118.6998 646.0556 122.1217 654.3809] /Type /Annot >> endobj 21 0 obj [15 0 R /XYZ 48.24 92.7371 null] endobj 22 0 obj << /Border [0 0 0] /Dest (_footnoteref_1) /Subtype /Link /Rect [51.112 81.8571 55.584 92.7371] /Type /Annot >> endobj 23 0 obj [15 0 R /XYZ 48.24 77.7143 null] endobj 24 0 obj << /Border [0 0 0] /Dest (_footnoteref_2) /Subtype /Link /Rect [51.112 66.8343 55.584 77.7143] /Type /Annot >> endobj 25 0 obj [15 0 R /XYZ 48.24 62.6914 null] endobj 26 0 obj << /Border [0 0 0] /Dest (_footnoteref_3) /Subtype /Link /Rect [51.112 51.8114 55.584 62.6914] /Type /Annot >> endobj 27 0 obj << /Type /Outlines /Count 1 /First 28 0 R /Last 28 0 R >> endobj 28 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 27 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 29 0 obj << /Nums [0 << /P (1) >> 1 << /P (2) >>] >> endobj 30 0 obj << /Length1 12552 /Length 7701 /Filter [/FlateDecode] >> stream xz x[ǵ̽ w7.x n \$  (A\$P8Ȓ)r'ّdŖUgCnjv:_e#}�&_^{̙3sf B bpwlg7 9ौ @xm9B&B ILw}*#Becz�n]9 k?<(M>O|i7}q [<0A}+Yό} �oL%37vBW�c?"cIC?v$~⤈\?:[)yCrK\E)bPvK`'[⢚^ŔS^D? -eД2?5HtVd*f bD '۠tw 0 Gv+@!4IW^tIgE#Z�u1PB~];ANBὛkEPׅ"92'_="Rrm9*$mث>wQ1r w#)fzCXqw_kM@"Ni% (q%@,ÕIF2x32 yBTsYlnkKgG{[kfmnj4ToTUYQj2%<!WΔ˒bccJl}|UOʂ5 ,z ?L i KZV$q2_j%M׬ou}* O(\>-$@A-s0o L.چr\l՗˱q@,.zL V}Am<c^ͪh%mDJP3U7%T%?Ec7_IF#ú1a3he`` m&,h[cKi~s>p!`E=W|x9>~qF=nhuecʠ`0yxWGkns�&F6j�sM52cW,h pG#ʗŨ 2ähM֬4 ml`cBr0 FXL񛍃TTmcS|PfVk@&ɴE:ȗPCpod&(%V]wbvdapє/hrişmMDA #FIlk=y<y$xCu].ΌѠ(No̷-ƃaqޭ-bPp{IP5>h.4;BGVpQimneX gPnF`20x;BS-<dp咰nX�#Xۼֈ)S*"&&Eܪ j—j>1FX-c@ egn+ |&c#'WǺcb̠]\k` -[7TEEѿH  w&$bbFeD ~Qh[ݵTVH_)w8%5]|dH�:/3inuxW(!\$>(H5 Bi-G<z#ʓFy^a¼(Y(\I16~kÃ$Q:Xp `2fX|1K 2p:֗[L gal4ԃȉ, T�%xbt<12r^8BegpX8ԳYIK>k!{jU@k9(%$(%"'8*cC%co)H$a $:,@oa_ƛl,Gp3OS<1EBM9,И 3nIu-?cQǸc,GI-a#\hOff]V_}+K}U9x<o?$NzR$s zb=O?8΀=N'fjç˧i %4qSSSOS˧Dt?R |Uάe[VK veLcc04vS)N�~{ɲLeqgCMq-,lҙnNsp3ٜ ʉ[I7X:^B7?E ~첣_"Y}Xҳ-i "m?:x Ԕ,ws;c@Xqit~(?(L!@>ݏ0)x%ACX t:"#:?:2XD \ >KڑDhh<ClX%~~\菔vq�>C7Z? . u>k=4k7oG>t ]o/:Ns)Tԇ0t4NUAw5ÜKuְ\ց{�٠ څ6irPM2z]pС.R}%nA<1rF*?yI+DU[T0E̕#߉>UrTy(.|b.1?gq)u;DċEĭ%9i-}LE;橘bbwƾ7N BYH2Li%#3m+GOa- ]'`@H+Od$UWT >{`Ȼ==7?7}f~SIqdʕi"uM} ˟C+z(HB9 JQHK Q?XX'&]I~Ԁ\VTY!7mf\ഫuzeRWZ͏=0 cXu+7umRוJ3ڝ_LX= #)28VVSY2Ld�jE:4._j$RW읓糪ݕŤ4{όzNoZ<;:(RiCc;>`aӖ9fo{Qש_1NF �t8<{`!fDʮ45YGyxh](ˬ诱#׹Z]-5Bɖw5Bgknׇڋ&} mۛr,e7jqy]־oxũ~}r[E%. #oE_eh5OD '%8MQfb#Ŋ|#f |+&f sթz|VnJt͸?FwIRӳSEQVnrK7Lb]Y^mOCm \�_^VtQ'(2R1+zr¬45gmxf`Y!K8?}/D? ܴ|G~SCn\I76NE,{6Etl;*DUY% G&2ex9?_rm8voRmٖɎo(tJC]Ks'ޗvw#>rrS1`4|&25-P˲(R4*^Pu`z9 JƱZC Q -7U0Vk諲c\(y0YvE֣( .oרΎL3讌ڣJ|oR$`t&\q@[gPė**W\oFxb_p6cbj?d5tc9WB "Q]Dn={z-)^=Bz{'q[v] >q󹁁n> .ׅaAC@uF!%a!U*Xf~Em\zHL𖾮 ~1sx<tMi_B3J75`n؎ےp0ݾtB[yz:$TI8OBiKQ+m5!EvI:XTѰ(He3X?4ЪkM[QspۍR?2uź4v;/9a93UTӵ##K6&gIk^- cգJ *!2׳4X ުOykԤ'䅮$Sq^8|3ҌZS;B5=,Je^뎺:Sw<ެ05o4|CGm&"ϱboׅ͛瞛yv|{{\DǵxuqL'kcxf/|fo<㖡m5;yznǣBd=~Ⴧ7ewWT\ڒWy= ق}@]jXUQd Gft.Gz.]QLee؀,p jsM6e抱ZTre%)hmaK/xُNRb)+h�K&9Xbly~EfS뻼fk\LіmSJaor_xXsww'K3 |̥*Rt0͈,it13#tSx㍲;zfUY:m&/ kBYg|piZ~9IRsGz�Cr{2i/[deKg H.]w|2@bYIF9#"5<!c\E([HSa۱U*TLN5*0tWc?o-CB^n،Y<ֺҤ²\^t|fxIG!2[Iclɩ rdi w86S ܏V;QR* 4ǥf&$he9_f6ڦm:!1~hӼ#52FbrYDM c;~q}zwȐ)ֶ2+\TD P]Pn<1 knlwz c�c&*|v=ȶ!mnb<NC^bf:5U]U̧͆yĺ<D<*>^eʃwB]tT &A#AӃ*WvZ#}w Wg }7c `i`{!aѓS�9L,s^HSĖ[-0B\n+n{[k]wOŦ TIR$\c53L}|XzcAtA,qZ7p̈];+P]A7*c-NS-u2ukk.C$v3}5ʌ5m2ׄ2s"uZ}W<:fC kC48'w ƹ_0YԢbܡ[K{ 3�$$Y_.밅G=`K"YNj6f\U5ڲegSULA?cdN /Ͽ௮@SºK%'j>bs=@b7$'JZ#xkTP<%ݤ+ Ey9ҷ>Dq;Q_$9v00rdaBQYUYuWQ.ݘa\]zJ@ӯ -nC I4֥!9$)Xd< Έ6d$6^1~_e;d"AϜZ,^ ʚXyqVLT_WJISCoW9;t-CW=MjW5QӔ1?z8!�[trg}c*cH{Bg~ms[Z!@:w+z+-ER[Q~;=|8oj,+lg6uXz-7\j'R-diCz\eNQ: ť]sS\ALJ>s}yO%OuYXFi1k]WE=zVPY]|iVO`.[ #OL?S-Ց4_4լ~=X|EX 1bITo.WN8BXA E}Tz,!;KID9S1$j&(7B+rKTg.,2B 8:[zdAV& MP7(=PI2{Z2S.ǥqͶDBU"B6Oτ>>N<,d8wv(nWPB ̻G\ cud%{Sui]a{ºqCN#hE~v/kt*%N޿sq[䙙DFpo$1gtNWx$l.f0zf8S?}Q˟{[CQ<c&# X(iI`w ,Á}ZDdR1H^бȀ!B\K,VF܁& YU3"4FrNfP"YTͪ"4;BP&;%FuJQ1 O#t,:s{"t<3ܭ%7OML2SiML{Q8=*?{x ]Oy'=[|9h2㙘*||T92^-ёU)?1g~_ N1^,zf �;ƏW6LsFoF}3 o>Hs*,M� y/Ԩw}.̎yo缳aΰ@ jRoecSI,ϷMm%@m~o9ںd.k 8y)b~HsѩQ~3;Qygd 1T ,q^<�t~j.7 c5#C{<;Ge;RP-P4B ͢Q<QJ+?-y]{9]:�7) S �=Tj/25 ; Oᾗ{\M0 rE;�@ͣ]󁎯FՒVjb+%3@LRF@c4" 'U܈H�X} kd>zfC[�,:be;P@ w,2Ǩh&l?Xݴu;i(νbZ}h\�@_X>saSͣ&Z&%c�(jNxr#~<܆lm7pxm\B"Ct{U:�XfFb.p4<_ٕOیYG$y:gЈ"8(j˨GE?CBfj== a!)<[ n~@L<;GW.6 o2 '~yW1͇ _Cf򁫃`B+YvXSZN]Cǝ ^ފ"1ˈv endstream endobj 31 0 obj << /Type /FontDescriptor /FontName /bf1e4b+NotoSerif /FontFile2 30 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 32 0 obj << /Length 1278 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }ik/y_!}t~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=n?[i(JKiU:JSz2QeL*EJ̔Ye,*+eU(NU-уk5x5F^ky ^#k5x5F^ky ^#kxZV^kZy-^+kxZV^kZy-^+uxu:N^:y^'uxu:N^:y^'xz^^zy=^/xz^^zy=^/o xo7 Aހ7y o xo7 Aހ7y oxo7jo$JI$$*I$ITH$$QI"IDD%$JI$$*I$ITD$$III$$u>M&Iބ7ɛ&y$o›Mx o7M&Iބ7ɛ&yUoa[5joSor4ۂs�ޮ>,x/x;Â31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x e#e_y+h܊7k:/Z5dUluz5n[eB&Si|y(%q& %+S%*ABijPU6\h,(+L,4G5<cD [˧*t [ jjaijIxʪwgFwضR>sh>:OVRP*#i|e0U,*oU/*[U,Nmlx:&\}M)L2\%CHF7էʻBL)jƻJ1:%H߯:=S۳zrmkO媳7 endstream endobj 33 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 250 500 250 500 500 559 559 559 500 500 500 500 500 500 286 500 500 500 500 500 500 705 500 613 500 500 500 713 792 367 500 500 500 937 500 742 500 500 500 500 612 500 500 500 500 500 500 359 500 359 500 500 500 562 613 492 613 535 369 538 634 319 299 584 310 944 645 577 613 613 471 451 352 634 579 861 500 564 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj 34 0 obj << /Length1 4760 /Length 3160 /Filter [/FlateDecode] >> stream xWkp>wevؖ"I(WZKZdb[/ IIX#q (%Q30BiLg0 )R hZ( 2-ϖH=wwmRZ]=ss]8 *58Tos�Hx`jcG�Nܟܚ!|T$^x�F GS"n/LM z@]-/ u_9PCĮqe4>`YL S ȇ&p;H 릒in߄ީTxJ{ıXyqgOa jœ]ˣo~ JrIU~y0N>\K0zlkCB>!wC>NeܓpE"o C fTsiϳV0K&Xasca;MiMJcv[7`fS/sKI7EKSwBѢKpWBiFtew`a[\~-Euo_䧯duE$fzY,u~ETc˩VE33W#ofK ]7u>{_/߼dETONl^!OWJUY-bĂG*x*UD2L2hWdWdveeFD\lHiXPGiC}4[`vKXd M3'34Kx.%bk ЧDr^`Щٌ(܌Y<*"2Pi/:XƖA5,&h@u|`Ϯk3aK͘DV6WT,geΌG|=^۱^<3DWWқEb]f}$. =ӄ?VC,Ípؿuu�r͡ & H1(<D.gks{*vd90]ǝg8Sƨkx#) ɫF ܹ\&AuzQ]XVGWר5Dt4wdakhv{jN\_T81ݖ-OB{ Wz%D2#+Ըt:վq*{V}`'Qcg:1uGE6l?wK<VE'|>]*'{hFț NMS?z5ؗ;F=㏤:9\;e{&;A^nJ;yl v[^͛Y-l@ ̎Cڮ-{n?7;v}Q0k5jy.ySj<&>նkv:ݺ ][3r�`DGJd@"bS=;E?5Vz=^͍:+; t R~ $b7^+IOsy;Ŀ_DV~2MǏ!Uٚ4H5*T"W_Yռo=zoώHc)I/&/Ej!:ޅrkj 籼-ܮCm~.T;>CV-OZu]c̖:BM%d5y qh%Ott/XRlmɺ:l/"/ T�;ldVFVrꛢWP#7kjx5+At٪"_r /&Ɛ_~CMIt+ry\.S\%qwɚ[ZZ[䳂\BҨv bk*n<Wu Mv|7~ GvJ.!}^D> d эrlϡ_ږMeZڤw!t::9"ǯ_A_w<Šǚ+QuX&v5WuGáwbq{Bz0@r!s{wrڶ5Mу\YE.7)ხF~ D"Hopp`uȫtUq1kVlյ+we53n䓖t,j!Z8%BVM",.#1\f j{wh3}XN>[M0 K3Τ֧VUW<NmLPaE^ +}$K|VrW,k$NN29E栄<*"A1Wy14r[y "Aq޼Jd{ rY^"3|ޑK"tmp- )~w Qw1xLRD;* TDf4Z cm N{pŧ&gqҒԆzIm@ikr:Ʀ)P֧a:HRa+ILt8D©xlZfT $i33@"DCt*{&QLI}r&MPl" Lè ;3N$תtoH*J5IMmC86ѱa: rYġ0sGaMIe`=JPn!=4.BaexԽ)#0HFb>kEd eOYc;X|kmF!5)y4HXN HӘ<:h=f iN=#+Aa􊡆.Ѕq c1833RFa0hǖF]uS5C-3 _M,؅RPY&3;f|F۴ĆcVEUqR#)!L` "fZa|ÊmXdFA `fe9!}0B/U>Q'NԘ5:̛CbMqxp]^N ^(} |+僙aOHx5/ ?~,<$D Q±z3 {{H nvt'񮝩Ev!(L D+ KzrU\w*=<VG ?J亨08ffΌS)R,oig~6˥C>?5 =`+҃ /w ?>Mo$W endstream endobj 35 0 obj << /Type /FontDescriptor /FontName /5784a5+mplus1mn-regular /FontFile2 34 0 R /FontBBox [0 -270 1000 1025] /Flags 4 /StemV 0 /ItalicAngle 0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 36 0 obj << /Length 1278 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }ik/y_!}t~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=n?[i(JKiU:JSz2QeL*EJ̔Ye,*+eU(NU-уk5x5F^ky ^#k5x5F^ky ^#kxZV^kZy-^+kxZV^kZy-^+uxu:N^:y^'uxu:N^:y^'xz^^zy=^/xz^^zy=^/o xo7 Aހ7y o xo7 Aހ7y oxo7jo$JI$$*I$ITH$$QI"IDD%$JI$$*I$ITD$$III$$u>M&Iބ7ɛ&y$o›Mx o7M&Iބ7ɛ&yUoa[5joSor4ۂs�ޮ>,x/x;Â31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x e#e_y+h܊7k:/Z5dUluz5n[eB&Si|y(%q& %+S%*ABijPU6\h,(+L,4G5<cD [˧*t [ jjaijIxʪwgFwضR>sh>:OVRP*#i|e0U,*oU/*[U,Nmlx:&\}M)L2\%CHF7էʻBL)jƻJ1:%H߯:=S۳zrmkO媳7 endstream endobj 37 0 obj [500 364 364 364 500 364 364 364 364 364 364 364 364 500 500 500 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 500 500 500 500 500 364 500 364 364 500 500 500 500 500 364 500 500 500 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj xref 0 38 0000000000 65535 f 0000000015 00000 n 0000000248 00000 n 0000000449 00000 n 0000000513 00000 n 0000000564 00000 n 0000000836 00000 n 0000004081 00000 n 0000004395 00000 n 0000004437 00000 n 0000004485 00000 n 0000004681 00000 n 0000004846 00000 n 0000004896 00000 n 0000005029 00000 n 0000011765 00000 n 0000012122 00000 n 0000012294 00000 n 0000012345 00000 n 0000012477 00000 n 0000012527 00000 n 0000012660 00000 n 0000012709 00000 n 0000012836 00000 n 0000012885 00000 n 0000013012 00000 n 0000013061 00000 n 0000013188 00000 n 0000013262 00000 n 0000013387 00000 n 0000013447 00000 n 0000021239 00000 n 0000021451 00000 n 0000022805 00000 n 0000023719 00000 n 0000026969 00000 n 0000027180 00000 n 0000028534 00000 n trailer << /Size 38 /Root 2 0 R /Info 1 0 R >> startxref 29448 %%EOF �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/page-background-color-and-image.pdf�����������������������0000664�0000000�0000000�00000060040�14163570564�0027134�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.beta.3.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.3.dev, based on Prawn 2.2.2) /ModDate (D:20190802023956-06'00') /CreationDate (D:20190802023956-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 11 0 R /Outlines 13 0 R /PageLabels 15 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 842.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 141 >> stream q /DeviceRGB cs 0.9765 0.9765 0.9765 scn 0.0 0.0 595.28 841.89 re f 0.0 0.0 0.0 scn q 297.64 0.0 0.0 350.1647 148.82 245.8626 cm /I1 Do Q Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /XObject << /I1 8 0 R >> /Font << >> >> >> endobj 8 0 obj << /Type /XObject /Subtype /Image /Height 240 /Width 204 /BitsPerComponent 8 /ColorSpace /DeviceRGB /SMask 9 0 R /Length 19044 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 3 /BitsPerComponent 8 /Columns 204 >>] >> stream x e7U]}LLfr$rp�ASdA%x*ʺDPs<!#r $${&sOU9jjzyh:5u~>2)2)2)2)2)2)2)2)2)2)2)2)2)2)2)2)2zc}/]R|RVJӦeiBd$Z&A6NX[ i"˕ƥL/HQ\mýD$P ð, U7)Urx mjd R ' Ӵ@/Gd_ᕪz˚p~>'06Fiw4 <SX5~nc>\&" J+3[�k䩂)Yl6Xmۄ3X?TF9|@ `P( 3Xf3T*�<G=Qp6%aer$dp8F#0H0ӧ/g)elLJlT™8E"PZ+ Ɛ@N>8 3@*'>3g`0�`2s>p�CE]zyO4@aԀ\DeUf@VzS Ip@ ,@BU\&Ȁ/*{8\Ee\04FXY-2%TFxl6$ d2�8Vyc!6 rW Ni8 (KBeCQN@탬 �R�pLa2iߏ7ΥAiՕ`z�C@cj&ڀLU+#lo) XEHQ~�d96U?j/<[ ,a1=[U8ֲXxC ӕր>48AV[TKRqSU_2*蠎}6`ĵXjjJJ-5d? 1~Iʱ F"h Rʼt_*v9dvIFyM4 LGөDJEQZ-kdw򇩀Ȁl!J)=Bq@Jcy pVZKfY͂lv)^Ё @)-T3-k{@uꢹ\Q$gdǯFY#1 2 :#A\Qz#?1`/b sG\W.\1 RCWp-OqJ{{}&T _dBte@#pH'+^L�M&ScJԂYL6&ys<�k3C7sb|YN{? I+'on7p{Vr0+kjO׾ǁr4CC]{olڻwW34-[z�f xZ;vʫc/Y.&5'˗~\PX<^0A\.F:&/)Sp|HF.&E9s ݭ[lҗ+::첏RKxs4>ASN |߹䒏oOE$d}}pΜ9~P_bSN]ri]2FҠmԩM ,x뭷+#5.K,wSO=e@ B7) fV}}Cºx?ᏯlΜXg�vE{ 5ahI'.pk߸b6;;g}~uJ2z߅r(w|ZW‹iYrRP(mxo=Iv.N^:644N>c}uם{}[1:;;+_`(o5k…Ο�v{w7{饍ӧb_%7VRҲyqW H$ >i֝˯z[Yz݂Cꯏx 5 ChiӦz9nڴrѢE/*jE[.Lc ^z &Pg`0}|r}}Jvٲ� AkX`X]CC}"%|k}-ӥV0\Z2%A=,>d7; l9iӦ6446�hV>j֬Yw7{N+�롇e ei ^i^?�"/FAH hmme3Huww$a;*VX -[ *d˖v}sxoN%L2]{mo<9xэF25bZ+( [T�¼O?yw �|zC먐V۾}3H޽[cNl#f>k.H4&?@<�N0~{{耍wqrB* t4d0(; :qM0o~3\l,ZW>Rώ?kFf̘>l}ݏAly W6d ,}�ه>AشeoWV n*.]:2}rzĪ3EXaC]!ƀ8ygl^{-�\vITJq{Ц}IqGhf[)HV"ٝ9iGZ~#~xwGdFxDY/V^yURt$ol\u7Œ 8;֞ntMmxn~Y'{c>׸4#L𚥶A_H$z�gVog!H1dqC,[kj wڥ3˖-?'qw#ZY#%ʕ7ky]O30�'Nu\8Xcdi&Ki vߒ8x{J<ʜ߯v�O>dؔio?ȥ~bDP MO'�2;54`nJsf>WW<_ҠiMl;b̊ܬ6q!:XGvεQS5҅yk|UsYh-&5]hZa }RW�^ =BTPk_kZg?dvm淮߶}ln2D"GN\`$/�"Lj.@&aAAcǠG]*O.Z&9ז.49e$@VҶb<"rzkV.p@MRJ9 b9leHuљS{.մ�BA}grń$_�8 < r䔕l.μk?!:7< 2.<>xNl A>=*XrDOsHݞHw2T󘃊>0kY]R"HR̛*_1L (%hJI)e F2Ɇǻ|kj\LAzYlXmey4�]󁢐]�0$pb`Y�/2f20zs[ƘPP{?^F$ 2o"fh,�,JؘY S,Rәhj񨈘 .dkڰ P_c_r� `ei]XPjfȰiaXutM;obSs L[ c "��pR:a&0KaZw7"{*)Q1N2&9t _Lm,0a~rX בvƸN.2ȼkô;S{ JS@i8sN!)ͶVz2ִELASNɔzcgapP( fxrLwfB}ڎ{XPlA6JG24jE{. ^`Y>ٽnSdCTF#0i &mѝw ?LPD #@ Mo8AE-C`Jk[C̙d]|IHAfs/ȽEN8aaa긃>㉮?Ȃ`4mhh:iʔ)Di!K?g(rjd`IrJġk?\LtFec\ꃁ ӗeYַ^xftJCPf02#IQZ91kuK3gd`+E"a1;By%ZhsCh[(b.xCǞ^~S[|1~|joOٲ;Ւ5;d8 i(a=u\*/!P{ !{"Rt:F#8_ kdyL0{lTF]U9Ri GD @xXD ,PÀ1+di4 J9L:_jx9sv*.Іq#3<G?w6�2�XOOwggg<4V@oܷ{ ͜P Ci2uԍl*b2zi0|*ω1q1[練W:@}C,+عq xLZ,VY( Ң@~9N L8Eu 7Ms Im%:]Viɠ 8LrHj㵒o63c@Gf( 0-qmXN[<C9ˮH8cNA!�-[{S.p 07{Z*] `^q:sӷ]-~hT1M OvEq�Md ÷`\. ɌY-C7^Z]66$&2adxq"AZDR9~21m^u̝,L[b{|%tgg;5{|'>e?Af: Otdf�M6YQ45u9@ EJtѸ< {Mh~h{Ù~_@&gL vttn4_aW� �8V~͘!U=Sd_`.0ZZ` e'ӏbϑ@e2  ɼAN9Gsm d5XjO<cQ$01u c't;PZL2T𞴢ؑYgkj?+?Zc2Vdқe޼97<W7�dd pi+WRD[.` Ne{ʴKzH~anZ0 /ühO}͚cz\8"ـS͞={�J*Y:?iBgNor`; QdA?|Q^xY L>)K뮹 hf 2`m ;i I]>~C؀_V>zYd�~?+x7cMzE pC]-k^‹\ 0:w(/w֫Dj d!]}[n. {!b̿'jxfl9eѢEw_^(Y :Pj d&kINm>?{zp ]ḵ¼ّP  DˬY3e4L|\ 39".Y駟䎇\n Bd Zt3 oɟg~ ?Viv7Dj?\TUgkh,O󽏼 cg~~S~,ǹ|v#*g&bNo}W\egh M ]3$e<X 6cyi(o^^fdlA& pr,ߛdR͞g2/VƟ5aҭCU <gXێ;TLfj`⩧8}J歜O9=C(ͯNl?rg c0|+0RF3=8zAlْW_w8c"X]<Yh+ͲrknnyQeQm3Wu9rͿ^n]Nfd6@|J1E)q ,X=tņ o[UEjp˗شdSTΪD̡G rbqa3%SArǖpU5>O<ܛ빬Pfo\T 4mi`_ב2 >Xʄ0OKG}tI OeVx!lYU^OJ5o'ƖԩS.]<9T3(XaӢEoVH)x?y|yk?olDd̃gd`Fz<a;EM}u&p{hSW_1xLń9*QV1|pόfʅ g2/E@Pr!OK _GX9Կ?oW?IbellLٳgg2N{7d*mR9+/_Ÿ-uR-4ŏÿ0diHZ Pa^1CdyG|)d "̆[nit?;)D@BrS=%7ycV,~eyh-e!;uX !(DI9PL"co]57R0 ,)!]֫TRFQج6 c{XdEp8L#G3A mU,Ƙ`hѿ{E%-oiyn#_Sl`6lݺ p4 7dԊzT~IU' nDwo+X]jٲ7|huGr $q5}[ OxkVy(AkkQGk׮GQ0 3# Ktf+Fz_W͏>c ]x$;w섩A6{yn=enQ_ԷKrmy_6mj ` ENR(zA揍i4C <);/3<;G0 R Уwp,> dɒ%Hvuuw̘1=U40FG7Ut%〰H$s@ϝ;`5vEI^$(vn 3:ݻb~ qJg'zGww7m+d̬J P9lbu)S^}DO?}*XE aXK?~(yNsZ {䑿 7@RKK \2Pu,Z*ߠJ峢;i5rէ~a##ayܮ[ONz O3gjdym۶͉hg'C_H%LUd윻śx�6owΜX@$"}⏭+k�Fp`x{}y_ße#�^@pznukL&|1 $z^ZbxD'~J xT@9sPVcc̙`cXVXxzh {C*VjVL OQ`˯7OoS/XSsΧ1o}ONA/+FclgbX2X,L)ͣ1T9“>v̯BaWkGϗ^zy3x搀-{zzyg[4;Ğ<LN5 %sTG$缥e ŗ_AK.^v-o V>>{cmڴ ne9#p`qB2{Lp@]£omnݺ a#*H_4/]qy6-s �p�2SФ`[l%_!,TȨdcc`|itz=m`/}J/1AIғN:@O$p<``ЩB{w#n6 =ܰF/U2x!]iFH׻(F\kZV}WN6#!={w O`kkW> އ=XeGW]G6o{Ն!SNٰIQss eV]]fw: kٯژ] 7ily[qꩧ`^qO؜1sd={;DvX`RUL KV07Xj۶y}cTZ:@y`gMgg'W:[xJzRELitj_ь{w򒸠I/%<hud \͒9 wvv$76{/Rwpx޷`RORbŊB6K$z.µFsVCKhfe/(> aRft2VeT DoXbmi U akl򂘌OU8zU2nJ0a-5k455^, /d3.&^]ƛP +tA` 8uJ7.2)bɈdA)ooii 68҄>vȧzdQV?577o^ϭe}F$EJSdkI:$&}3pyzꊟ]ʬY3UnTnW05L֧Wƅʚ5JfY66D/npeX9YYred|=Fa;T,3Y'/gϝ;;ACYl1`Ced:̧3Ȭbu0*4es)#q-Ovҹc.]66 lj-گ|'3 (x"Ƙl^^c7}ݿ'4~p6l#x@_a0iҳ1(ZOc0 軽V`nȰ khh eYcR߂sLo>s!/ éKvH$vj47,WÆ!K`2dQ2JzT&%Jx{ͩ#2ko/˔)Vro˲H P&7n3fJ^C6ޥmq)2&$ ( H&D2JΚq ϭ c@W *%?W^CN �t:O^1A1(ȦNEL&3kI)a]]`s�{86=Ѥ5؎x<v/ iO'e Ǝ= wR#Xq,^eHG1coe]]h 0xD8M(tj)M<W*LOO0:L38e{t~_vZݛߪmH8d!x548EȀɛF@]/Pz4N^,kRL;fDGxy{[32κB#+:ɮ]O�tS TL.Ha O9@li immyf^4»j ;>Acgr? û}N(^ṚxRX9(,=7�x<6w={_}աC%J7&+Gj|Ҙ(MS"`H#hECY>mg(wdΝrr9~;'f۔D6lx3/O6Ͷ-00♼t߳<Y{onuuu|=+S1~ 㻗 Lx #( Yq$׬C;PI*p-9<A.!~? pC?i0G̅[�,Ӕ/Xt挰) \nx)ݐX#ujye /$}nḿ &ڹ ?={vOx$ӲJ<ԃHA9G4?Nk@[mY'b*`2Ƥ\V:aupDDB2hPH uU b̒9Ke3"|YVobd}y睋 8I|& gzlL"hj8MJx-3=LoySv#LLB&uǎjj!&?IiKfPSKhK/=͛w{~RŦ_[YC&M6# FFseј5sΪp`LlD`%:I=M{6S<+-e,kI|I`/æ>uNgGOҏ=$~O oo{&40$Fu%aI#gcM$<+-@-Hߣ{"i帢ʁcnt F8W-i/c_ǵox0gƟl2=w]Y1˖`GNsYFPYv[ŶeK�`]Dyw-Ѹ.C=_xnȞ.*q2d2v4uR0 U?|e4Um4*dVNZ`f֬&t%gE6m/:Vg%*,czީ:\z@C5oW?ޮXnJ*@֘RZ>$%E+CG,?:TK-c7Oo)J$)9[»-K-Ce5r#*\a`~{uttuu%ͷ9>l[^ǘ9$&EKAз#MZ8*h`H i U&}같Fi/#g5ۛnOCmdGؘYT@碔6E�cKSYNf 4ː2%H(?V N3B,kz\�LTaAKbL_W g:[J5˳B @axޜ%bQK|']֬9[o==sN ]5Zļ")|s164ʥݣ Ef#Gڹivgg [¶Ѓh8ӆ SpZϐAñ49xνh^pW}m 8O~| C1<&~&{02r譜Z2WQVug᫗<y4J= h*aMW&(2SLe* 2eȔ &FSb2In/U< / X\pWFc]28m&Gi8[ָ^4Zt.Ϊ#1!I Eb\_3?+@PLpX*VˆpH >  ,`"lr_2z x ,ue]}8!A<!ArEISP]]0CML A c;+'J97ƚR!� A ,$MzB( !-#`NV?>4/Si'�X]pҠw{Yr+VuUX<1(~YdGDJnj`o|p]~sycM")"%Ak1J)zwJyaQ?&+v�&|'�+$XE#1ÉbQVNn�~C0,.<E;mocY[@9Nd˸b+ g Ż]x\^ճBf ։򓧆n<~5uz0X�~ǯ)Wȵ�/%@X� T\ *)wY7K`r9nKhj4'un@ zꉲz!,H+�I}j}mo2<WeJٶ&0f`yMdFm߫kw7Qw\W/ C[4q.Tsz7&`T[w*p:Yfx~ S '-GG"?  XCJ;bz_?~5b+"wS2ciHdL�,CΛ}SnnPQZkCf ӎ9{SNrs@6(p)k SNVהNng<刟 3F8>XF።{rmmƭ~ lo8"jisCҪycLwv}qeq 9L##ȯBRIhm>V,fCHq6 4ZTI!}9"̒^]3DOҚ3CΘ1U{?ڵoֈ>δrЯVKDC0T�B pP�\~B@hؠм6a-#QcK/d&tBsClZ /e4"Q0ۆGmv 'mݺuR fȳs*+uѱfn8"`;10J`�3#z.f|9$I@)x}+XYShHN= p9f,์.Ȱ9#໕LDJu`%@ GHQ7"@,n@рFu `WtRʵ^uyohjk>#f<te 8)6y"+8:3sC@]8"짭;xg+{P\6R・;ZÎY@X;x7 `N?Qt9~ᐗ3r!3~yh8d\W]HdRaD:)Et8 DŧipAmٲYLmeފ,l ?3ߐCa�S8 cGePzm/"M|5 rT[V / `iCf^z; 2Ψ#ӧϞQf=ςe̩(/7Y5Mb lΘX[dZ~ E5gSƬ'y#e'096͞tuTEg�*"ܯr{oϱ Ƀ3GlSnf2>#ơ a#/BN2k+B6uMFvE,D̕/<L[ U9Fv!˯WPb-w.y-y',HKH7D5Ga4+ LTB.'- 7dƽ ЮʂqRah`#g,>w84vUq{;L6XX;sMAt],PBS{k%QnEsrwH#n#J!~b~k2)AnD�Pؘ5#uS%POms-]p3up#4K i6sJ _?z'>y[K;uM.j_wS]c �sUy&ek"UBiM3?n|"BhER9AaJ7U$\G2C i(5kVb#-J.b/쓛6m?æRG9)&ّTRPu^<GjǙCPoխC|J3d,f46.WE(&UjN`FY0"pe׿ P1Yss>voca'ܔL  _J@`bzXDALJ7R:xTFCW[QQЙF�7[58@ ӟްv1<a~۷&^U([\[[ʬНvPF+vW#a8s(lFi�ShW2Ρ\WWwg>Sk_a{Mgq[o&UǤ?/s@/^]GȁˆH[jmLF9AiZRuҲ?9{Qܳ~y2Y<g>5PL4N^\S J(V;9g,BE4Kל p kL.`i#ymGJPar]w}% wnsRtK+;5hbWŠ\×mY8D^08HJz5C ,8I7RT::hQS{864:|땦ԽjZЄgiys(,b* �O QrYEk`U Bnڛ1.:qѰc($##<3t&K./'>5X (Twjd $LYT@N6P*?GY';dLF2v^Y"&lTX A!cEa>,8qf@CBvsú*im۶?4h{4iN X*WÍ ,P\E.q te[Y  &TtZSv:8Si]VdsvbŁNT"(̵�3RXP,ֺv1EGqcmb8]8ed-*ZR 'MchE؂iC TNdNBY�%%?Ł ;aDNsѻ)x# /#aqPlXXOOW利vF#_b\n6 Ɉ+^vʅơآRpF&"J^);w+T0`LZ% 9ǹa$ցhOWjEr+8Y*l Pr _\j.2W8k+ 8U R,qq xB,.XdrB oEvQe$n�YI�J pK! ل- ^Ru=Ԁjq!Blk<Pٖ-[¿2u+̴<R/Š:]c[h# q%69帓68+t=lN`crJx.2ٟSn;͍JƔϜRNSjd8ڕIgggYOcƗ.xpQ8|R缤�Z}%sz+B͈ڐ-҆hFbꆅ+a=QRs@/)ape4yh*$[s Diu ~,ӟ/Zڃ[I'Ï馛'< zѮ^( /ܡJEY0gu4\P3TWBu!n Kډb;P\-Gq8 ]mI #(ҰCey�9UHu"g3HSq"E-!f7]?kŊ'x 'jyH$xos{5퇐)1{bL߶[tǕt{WQ GYXH92ʬD"cF.yٍ#lO.֝$<@ĕbѳ$܀bE@WB{h)iw:6 /lUW]p1,_XtK,M/tXF|drxkX׸:Qz qhb(ƙmJ*vA8HA>̢#,CQ{4rYҟa l2lTڗn,P qR 2V43ߘ]it{8HrHƹ?#҉WƒOSڜꔅs;HO`3fDX,7DQ+ c :CNA;1R{O*V-fJIFcD]  <-\&% 9z^ZA À, fYzFsq<Ùag9Cl(8{|8iM qoAZqu(r-isPso>ڳ)R(uHH:@!O#ؑZpgqU&lq$~Ae%r#b*AK05$Hl Ԥ--K-rb) d<lBe�Oq_n@i;CrkmLrJJvGsĀ]S"j*kJO[GI]o2Kr4c:RoL0JdAL}4U$cU0|OaTLdS fB"Db)ڕ(�Lp�|ەc?jȜ5ݭХ@i( W|GǤו.R[T!1 1МP;kg9H10T(9E#xBpɌ3_hwn*~g"T(NEm-K:s4R Eπ47#襃Nk*/ !_C4Wpbԍ>JrJ,f8 NNKmyپ�mOJŀ"xٔ KKq>oՍP}gSbV36̵ plP{,5%73B ğ&:7*ҤBqK5y!!nE�^-ݴ?΂Ӝ|n9U" vA\Ûghppo,搽pbdPQjFW < 4iTߗQ JxKSA)lRA)2:P-j 8[V<\% JPlSo7cМ2N^EG뢺j@) 9NQeEP%`7 BEUc XHĴ&amͰӌuܰ>pRK,C$x))vgB0A]&myխeoU\?zhxmiH t:i<�ӛFVOu~jye;S m25R^#Xj¢b|rxjsI[|vR1;=fN �^fVK,`JLT“Sn�6X29pHdm60q XgM NU*aQЛF%$w"U60IKhzl ꈰzx,[Fzƽf.^m%1D_ Igú7SV8&xuxM�&<6Y2`˜vcZ9"3oX<M>~n^Ho9L[WiT%%_] (y숮yN :XdrqSI'L gi*F䑥W\vQk �aX-Hѣ:SbsjWw!Ud9$`2%oO~򯫴UѐXPU]X0ZS39tTsS%{+8+AE EQՕ|ל-F3h�eJdI]ktw�қ΀ T)&Bᶐ9j794X)iԉ=IՓ у=+);⎧�vyUn!䔨 S󘺐 )x*b.!͝s'؎siO!{HZ"eNu1B k?&2*D+Gҹ:Ob3p !tjF/WpCJ7fk{x9"Ma]IW!3)qMZ:JсwG/f5H@8t4j#zê8Ci'c4n E* ԼX &\ĕF4l kmmNk UPSL^q~ps5'9V9rnHd7+%Ð`e2'1Y_ hpm>x<p2FH�eez9Cɩ9~mE 2>S/ߙrs̊ p hWE] >.c kRAFFI9)HceFtW5 Hpn8d0 H3BP@)t␬2M =okL`_TCe9A "i`ԃDaq&՝.M1p9L$Ӫ-ڼEɇ#yઃ4#bxU|$<}dUN-d\y~$CLEV'[a><%tgF҈dQYu C48j8 Ҙ{ b̛[:}77STvt _p2cQ2N;*M><F4OW)6piPl�n5zu%su uT%W/X\+c e 8;+9³K!"xUe]a,=ڠ #A0{9,Hi eBp7Kvyr٩AM Vm'nHQ"#@hy3r Y &C*|\kL9q<kM5d܀DH$En;өZ&XITjBR—K{x |rJXեf<9g-<E'l׍3TQ ΂ |e(P=o5z|u |+M۰m(i9+&eR&eR&eR&eR&eR&eR&eR&eR&eR&eR&%hx endstream endobj 9 0 obj << /Type /XObject /Subtype /Image /Height 240 /Width 204 /BitsPerComponent 8 /ColorSpace /DeviceGray /Decode [0 1] /Length 2902 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 1 /BitsPerComponent 8 /Columns 204 >>] >> stream x{P<rD*!yd4`Fkb)ZGmR(֦&4Q`'iLڤƷBѩ޽wϞs~]o_yYō7nܸqƍ7l:8jd~];Z[O]bz ș7ᗛ'8zC 'fS~oʛ:]R/1KWO|]>bb6Lggh^EL�<¯ڇy]ZT'ڡ|EOdBfk")"/Ͷ xq/n#.ᮎEB\-�ͬcmF]橛$`G񨑱n,�n2*�dP%i/`�/ih]?P#5cH̑LiӦdHEͲZ,&#u3}ǀp(g9"3!*�߯Hwl V2Ѵc XFC&&h&&h?LL}H1j2c y2a bGfOc3P2یGm,@1W�b`Y յdQ("Xf|@ɸŸ%;Q%s:'iDsgƀFc!oF͛{pbnRPަC_-iί u a~$Aqj81#:8Wjی\5g4L'pbQKw;#}3pbک+816d,ipbXw6\�&8Dlj8Gˤ3NB[S3@6[l N d7&ܥb({z281Ţ\E'&|yi['0n>-m j.UYSXY?ȯord|1%HLh}5˟4Ĉ&mVp&ٛ<3e_pWv9C/=C);C�/J�Zd%cݎ_`쉳Vyv م xA܈\2u9!(v5�\'&^sX֞~ۉvY_&3}O+ 6[dg͙bU%WbO{o` WpHny1fI %ۙ ϝ#w^Y103xy0N=DR<Z�iO*�ۋRfJ(7y@L| ކz+5ekM]sJ<dJQ #_)1"Cc@)\ 95cM]d+mȄ>Iќ*ngQd-'W[@K6V&2^LQD(�\3xhYwD47\$�Bi]D+谹4E>/OPh KfH6*%%!K@y3; .&8[H)�@YA쁱?]c&VJg3U@VoL�JLrj$�1{,bJ/-&)z(�ŬGY7,{;H,A=SLd"�̕!R gc% >1eģp0 gFs05 [&�t1mPg:WJFOU2m]zCjg2|qӈa'jA4J[=Xؼ=+&ii1fΎƌQWnRNev g!p g>\b6![M;�gy!&|i:3dF*cȚbƿ? o3Sig|Z^)eb}Gi.X榇'9=΢0jD'9Eݯ1EH�0!;Y tC? Og|(:  kGjI,^P�<ܨcAj�3LW=B)F$#Yޑ�;/C0k5J1_0wY)*Xpv_z�gM.Kp~s_CBoF'1/CD#$~T}I +b-?ă}>mQr129[I�C#`k652v/'1fqw=*DaïWɦ5Yj+Ŕ o<+& ]sM?W8 K&~h Q>_\1Z7,"`h\q;aLtԯbxek\T8;̎5ca1۟1ymvvu#ALKI/p 3ݱPپмZۓZ pY]_=X#67=V1d~F{}yɭFˈ҂ģo~|%o5ӛңTRu{'>Q@` £ěp?'/3A?Fa%$C[jXB'"hs9JgeOL},-ΌwJxy|ܬTxVX[*Y/ɹY$c6<G314O}/홯 KqU~dz%oE$ukUq#M]ly^[7]:m!/}RTp!|p1䧏);#7/,0 ?{BO�%﫛%e˭|4Af$Fh9pOŷpZFݹwnX62 rߗZ77nܸq/?oh"S endstream endobj 10 0 obj [7 0 R /XYZ 0 841.89 null] endobj 11 0 obj << /Type /Names /Dests 12 0 R >> endobj 12 0 obj << /Names [(__anchor-top) 10 0 R] >> endobj 13 0 obj << /Type /Outlines /Count 1 /First 14 0 R /Last 14 0 R >> endobj 14 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 13 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 15 0 obj << /Nums [0 << /P (1) >>] >> endobj xref 0 16 0000000000 65535 f 0000000015 00000 n 0000000262 00000 n 0000000464 00000 n 0000000521 00000 n 0000000572 00000 n 0000000844 00000 n 0000001036 00000 n 0000001345 00000 n 0000020653 00000 n 0000023820 00000 n 0000023863 00000 n 0000023912 00000 n 0000023965 00000 n 0000024039 00000 n 0000024164 00000 n trailer << /Size 16 /Root 2 0 R /Info 1 0 R >> startxref 24209 %%EOF ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/page-background-color.pdf���������������������������������0000664�0000000�0000000�00000017614�14163570564�0025325�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.3 % 1 0 obj << /Title (Document Title) /Creator (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /ModDate (D:20190609234414-06'00') /CreationDate (D:20190609234535-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 12 0 R /Outlines 14 0 R /PageLabels 16 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 842.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 2 /Kids [7 0 R 10 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 238 >> stream q /DeviceRGB cs 0.9255 0.9843 0.9569 scn 0.0 0.0 595.28 841.89 re f 0.0 0.0 0.0 scn 0.6 0.6 0.6 scn /DeviceRGB CS 0.6 0.6 0.6 SCN BT 350.129 361.6965 Td /F1.0 27 Tf <446f63756d656e74205469746c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 8 0 R >> >> >> endobj 8 0 obj << /Type /Font /BaseFont /e83e9b+NotoSerif /Subtype /TrueType /FontDescriptor 18 0 R /FirstChar 32 /LastChar 255 /Widths 20 0 R /ToUnicode 19 0 R >> endobj 9 0 obj << /Length 223 >> stream q /DeviceRGB cs 0.9255 0.9843 0.9569 scn 0.0 0.0 595.28 841.89 re f 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 10 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 9 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 8 0 R >> >> >> endobj 11 0 obj [10 0 R /XYZ 0 841.89 null] endobj 12 0 obj << /Type /Names /Dests 13 0 R >> endobj 13 0 obj << /Names [(__anchor-top) 11 0 R] >> endobj 14 0 obj << /Type /Outlines /Count 1 /First 15 0 R /Last 15 0 R >> endobj 15 0 obj << /Title <feff0044006f00630075006d0065006e00740020005400690074006c0065> /Parent 14 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 16 0 obj << /Nums [0 << /P (i) >> 1 << /P (1) >>] >> endobj 17 0 obj << /Length1 3732 /Length 2180 /Filter [/FlateDecode] >> stream xWkp>jeۖ@^[ccdXm�6€X[kIA =b $4N3CSHf0mLmӖg)%ɔ!vҔB3C$zjmdcݻ{wwϽW�z"!1SXaG<�)!<+fnd7PH^[~I,]ڧ^D�m~lj}h8cw`@bHo~7ȗBw^MuW� ІMx`k<" [P�?8]FQiP sawSgq@7gDJ,NOJsPY%tUoM:s֭ЫosG_i[L9ԍ;W'^iB~id68?C^3@D;H"simAl$*Κ|Z%T]t5r빧0w Uxr,aKb:|5n? ̘#+3q7HҾO{]>>=@ߺoBCg [|W\:p<=_mPm޶٬hx:L겲kN"(*a%& Kz=K[w?>sٳᎤ6DK *~Msݷv>w;O^*!uc,|bZ_Y3й[22xQ%- P3јY$dJwo06Ք4+EhNsմu6S^ɶ|Ӄ ؝.VI̕ᆕr9ՎkȃZ/[Q%ؖ-/N婢L~\ev5\pOod;wfpALR޽<ݷȢxqEsCX%ZӁTUe2Nm�6MٚzVj sC|H:ŋfUz~`lO{tvFǽ퀫Aؔz,[![H),�gc=>cϤ{hdkM[DRR╓XOF/$:;1+Ǝh{~O jP \eDMea wM-A+{ԿwMfhkN&؝Dr40ϟah5I2ju$pmZONw>層Z&}Sˌs5X(̜+J'G9[J}o7(\ψ@&o:JuLz\` 4jnanӗJAUKЮmv,bAkuGD <'S;R9;$<S9$;gSM 4WK9-G))лp.kdt'kWqGe ;W֒p/c?^pB SȆ7UBX \pU9Гr@jU\ ĩZ0>ςزDo:(#?T< t+6Ѝ*Pq=Ϩx.* 4+ƤqxtjT<*Ӛ_x4q&/InW,D>Z,?`g]1~\I'$� CH?q< `x$ ["AlǗFKVB_O ¨ )ß$2~%W|U Ea9C/>z+0tL!Ca|`{G③[[+GaQ %iŷ}f#8T\bǣW C<|e@J; "$) Db2~.Grx |\CSfiX QB_>1.?cŨ$/?/fAq%+a< =J0Ղ:+{%H,!kĊV8ޅ/!VƪzBjZX< +<+zY=1Ȏ5#0+cX"앢|/=q_@`8f}Uu*5t+ ߥcYYvV9JY(bCzVT5=,^ʟ%^zsS_iڏS7lۺeUͳ endstream endobj 18 0 obj << /Type /FontDescriptor /FontName /e83e9b+NotoSerif /FontFile2 17 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 19 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 20 0 obj [259 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 727 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 612 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 492 1000 535 1000 1000 1000 319 1000 1000 310 944 645 577 1000 1000 1000 1000 352 634 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj xref 0 21 0000000000 65535 f 0000000015 00000 n 0000000268 00000 n 0000000470 00000 n 0000000534 00000 n 0000000585 00000 n 0000000857 00000 n 0000001146 00000 n 0000001442 00000 n 0000001606 00000 n 0000001880 00000 n 0000002177 00000 n 0000002221 00000 n 0000002270 00000 n 0000002323 00000 n 0000002397 00000 n 0000002546 00000 n 0000002606 00000 n 0000004876 00000 n 0000005090 00000 n 0000006452 00000 n trailer << /Size 21 /Root 2 0 R /Info 1 0 R >> startxref 7578 %%EOF ��������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/page-background-image-alt-landscape.pdf�������������������0000664�0000000�0000000�00000062543�14163570564�0030000�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Document Title) /Creator (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /ModDate (D:20190612003230-06'00') /CreationDate (D:20190612003244-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 16 0 R /Outlines 22 0 R /PageLabels 24 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 596.28] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 4 /Kids [7 0 R 12 0 R 19 0 R 21 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 841.89 595.28] /CropBox [0 0 841.89 595.28] /BleedBox [0 0 841.89 595.28] /TrimBox [0 0 841.89 595.28] /ArtBox [0 0 841.89 595.28] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 219 >> stream q q 839.1656 0.0 0.0 595.28 1.3622 0.0 cm /I1 Do Q /DeviceRGB cs 0.6 0.6 0.6 scn /DeviceRGB CS 0.6 0.6 0.6 SCN BT 596.739 250.722 Td /F1.0 27 Tf <446f63756d656e74205469746c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 841.89 595.28] /CropBox [0 0 841.89 595.28] /BleedBox [0 0 841.89 595.28] /TrimBox [0 0 841.89 595.28] /ArtBox [0 0 841.89 595.28] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /XObject << /I1 8 0 R >> /Font << /F1.0 10 0 R >> >> >> endobj 8 0 obj << /Type /XObject /Subtype /Image /Height 598 /Width 843 /BitsPerComponent 8 /ColorSpace /DeviceRGB /SMask 9 0 R /Length 5716 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 3 /BitsPerComponent 8 /Columns 843 >>] >> stream xrFQJȒ8^d0 HMwᚑ@O � =���L�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@��z_|\ݻwG�ި*~# YZ�YLRx�0L]<�Q=sx&Rx�[<ٙ Px�[svfo�E=hZ �x:/sZ �xzҺo�qӓӹY+-dZOsm0텳kmk8)c>ߎ0m)<�C#vO*j~~}}9U빿L5<΍lbx ZηYԡ۶ɕ,?gmS{'=!߿Wgl+8~9 hRCZ$￿{n/Qa`Fur [@uVח/_vuH`;;l�aot)}5bIH{Xa< ?~y>v*>_uNmeҪ 45ZIaZ)<�]3ۥ`.w2rd)֯'=u~#8^__5Ω֬u%k#}"RGI1߻y;A_�{fZFlw Wk&Yk(#۪~Fvr{޽{W,9> 9]F;D\Wmt(nZm-ЎkE�`o߾|7._A}+KZRc|R՟.j$mNk|کZ`/ӧO#Sp[=i+u_/ۆzN֗bMT m**S*ezr>ryyWъRMN)lw=Tggg)O< o.M>n`uSm3 �oJr*-?~Y͎V9?YM񬩭J6HSa˔ ]\\ =yDg[dngֳx|DpKؙ5:o˴ p`v3#FɝԨTemup?=I'>VM.󤕞~=ѻQx�V.ZIh-V}!#tO`gXuԼ)Zym1πÜCՄVvOCO%LRLdi#\l>M?\G~m+vOԺ�6η&T.&rswwݿ,΀)Α,m,m{Rbek;_t�`(왩)jV:Кݴի{b279 =1]|_6IPgUddB28zn=TW#m/:ca{< ع�^_ /պYl<h&Sݔ#m>b3YlKvnz_� DF{wΛ2ylf'WrzzV#cWӳsx枙YU =q[�`s%}Z#[iySEWWW6?#+˶k>n_]ws�AO.tȆsz:4 ҿ+_M�_[]Ue٫:GF oab7 o^�_PxoE%NEs'///GX&j#j<ЍXsx�<&3۷o[U[ojph8y7!(<�=mϿ8??b0{wЏYK^ ]WJ:<BFZ�׎sVϿ=;==m.¸Jõ!BwCniY[?~Ɇ5QvԌOOOO\\\6']?>)7.v;&J{̻ڣng�ǙF:t<;??_[9Ra0777Muӽ'_:׹_ �qig<`i&p3s5?.Zgds=T^-]G�/9E;ꆌw]\^^g~b*Ƭ6C]=;;oULqnuvliܞlUxk1~^r#8?}@{X[|_+Ni� 3Up?-߿?[rou6A-ڞ)݇SWWWGQft^oή_gu`& {Zs΅WY6H{T79AAÇ㿦l@_< ?U=lolel=Wc#Vo|ڴ$]mUׯx݂_<*8z}6y zJu�k?~ zs=W'jl՞TRmZsxՎUQdt� LEl+|34_~YbP\ {~9HST`$vi _NhjUv۾W-V d2Je],p}dnO/777?~<:nKnCkݦ4Uv##_Ulur*jm[YSуƭ64P v^x4 �~C7T}y{{v϶ ^8Ԟ<sWZm֊U=kl5_8uEujsUu_ٵ�L~'Y]=ڙ}uF{gC _g{\KbF+ѬUP6mm?7v7]V;fj=S42j̖]6m {g[s{FYgo]P6to6�[,+<�4o^��E�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�F�Qx��i�@�CI endstream endobj 9 0 obj << /Type /XObject /Subtype /Image /Height 598 /Width 843 /BitsPerComponent 8 /ColorSpace /DeviceGray /Decode [0 1] /Length 1693 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 1 /BitsPerComponent 8 /Columns 843 >>] >> stream x 0 @A+r]A MПGl�w�%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh ` -A74 -ACK4 -ACKаq `s Z s v4 -A4 -A} Z -ACK4 -ACK4ja.ACK4 o4 -Aÿ%hh Z%hh K4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK endstream endobj 10 0 obj << /Type /Font /BaseFont /b1b554+NotoSerif /Subtype /TrueType /FontDescriptor 26 0 R /FirstChar 32 /LastChar 255 /Widths 28 0 R /ToUnicode 27 0 R >> endobj 11 0 obj << /Length 205 >> stream q q 839.1656 0.0 0.0 595.28 1.3622 0.0 cm /I2 Do Q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 547.316 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 12 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 841.89 595.28] /CropBox [0 0 841.89 595.28] /BleedBox [0 0 841.89 595.28] /TrimBox [0 0 841.89 595.28] /ArtBox [0 0 841.89 595.28] /Contents 11 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /XObject << /I2 13 0 R >> /Font << /F1.0 10 0 R >> >> >> endobj 13 0 obj << /Type /XObject /Subtype /Image /Height 598 /Width 843 /BitsPerComponent 8 /ColorSpace /DeviceRGB /SMask 14 0 R /Length 6028 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 3 /BitsPerComponent 8 /Columns 843 >>] >> stream xrֆQsNHB4  trx3ƏASK^��C��;��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��Ҽ~<߿U?o^,\[P97_ϯ_еcȏ~�O}ޏ?ֿ՗7o+5}U_~UUϟ?onn~.M/9ZjC^ Ёm K}ߟ'3wDjƫu'[k^ك3=�𮯯E oʫj;_x5*ŪPGF_{YcCͭ}vudj߾}[DcՒ;G5ʸwl>u_/nQ{CRKg^ + *_3gn1aZ1+t4*bl|Ҝ.jAaC]+:>==5svwPޭ>ҟ{l-?UZUk&VW+<??fnv`1Ƒ3a6plh\781#G>=NUבyy�psx/Q}Utvu &7oޜdbUo>7ơyM_]]M8ݻ}WV?ϓzߎ?c8pW #/�x^CsbU߿?}~Ǐ-YUdL0FN:1Wdz$e``svgPƼ`dWWnh} ;CWGlu*Ԧ#u0j7khL5�{k_z51srxOĔR'j;:"oz/NNNI,S\5~mjqybͼ[,@mkTogovҴ_}oTNlׯ_~^@ژ]؎m1J鼫~_t6 ^fw.6kC o{6&X[+1:'}jy0M�'pZkվPlBNL^虎n;)gW6fwFS׼۸u<w{?N'1^Oּ7bvŁ{:{jnX-<;xحohZعA@Pz6�dxsx^Zon/3 S =1}:UhAyȧWtn8ye; Ǐξ9f5[ss (&�֎<n_7Iuk8{ڨ]�<^S}N)cj5͚͂fub<夳ͼ[N|2^|nҽw-z� OlT@t. .ilL<wssʟMM.̻/_4Exby&GΫa_i�xnu"ikڨ}:sxUtkNy-ZgzWw7_EKA-4�dx9bsc999&C6ބ1*I>(u~,-lUϳ)n|y·koqw0�<iOfov kFu9{evO cbvl8{u _9{&t}x?o6UʾԨ\^^>*L?xݸC;r pøgϳGs~ojZ�|-&Xj-\Yx큍$W̶E}Ç k?kWǪw2a󃶸K�x*!ai˯}OU&jγ+Vxfj}'5u}ٺ.y;RqIzTg{Hruu\r_s`Iz+Ⱦ~]__ך7&ؼ��<W USkzzo%ɷÁwjv+V<;;׿bָe;C �/12;3NnC%_'''2%zmrDT6]:ԫJ'P�ܳ/25fg\^x7HWLFpГo_,ϕϋ.'V9[?"xk獴�<C˯)j>rd:+Wn}h߾ݸpΛ?cQm^hX۷of3( 7[|x+sxy8 }rrR߾}k~pgN5kLvl]wrK�zw^}?qb ݺnnn6soY5U5Pk뗗òsg7<ni�<&=Y9M}wE3QW'OWvFڊ/a,<UuxwUsͿN;Wx,(5#jd%,aS[up׼dL=vV�yKz)8J35n@AڣNwύ[}Nco#d]%m\DY�Dz,w9Zr.Uj@Ώ_憎!tDp:5lNd\luya.2�<;+M͕WlQyw`A؞N oZX\zP\\\xM�c)x''' ͓@ٵ1{qpT{vm5_6?^U Owոcz=UYY>]]~�b!tR3%vuu5_777?ޘi],3vY԰)r8:\*w6HŅw<-eqHԒ\h Ū~*.Ǖp6*d?yžXz8:{i>[Q5x2w^%]څG�1[.VW\]]w,/+N ]__w^cëNmq>ebӗT<{w1wWjj[`hojRѴׯ_Fhq-F #ohneqoT-{Ug/]f`#[,/}x8zIVgTtP2޺0>}4{kggg[0,멡_>fH8zGT_Vv�*TaPxlǸ"m+%QꏧK {:NԎ+ıB#_~ɘ]'5 ›qiO3�xr�@O��H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H��(<�4 � �H�H endstream endobj 14 0 obj << /Type /XObject /Subtype /Image /Height 598 /Width 843 /BitsPerComponent 8 /ColorSpace /DeviceGray /Decode [0 1] /Length 1691 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 1 /BitsPerComponent 8 /Columns 843 >>] >> stream x 0 @A+r]A MG-x` -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -ACK4 -A�4 -ACK4Ν�vZ%h8{%hh ZLZo<hh Z%hh Z%hx� -ACK4 -AÙ844%hh Z~ Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh Z%hh ?D endstream endobj 15 0 obj [12 0 R /XYZ 0 595.28 null] endobj 16 0 obj << /Type /Names /Dests 17 0 R >> endobj 17 0 obj << /Names [(__anchor-top) 15 0 R] >> endobj 18 0 obj << /Length 215 >> stream q q 839.1656 0.0 0.0 595.28 1.3622 0.0 cm /I3 Do Q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 547.316 Td /F1.0 10.5 Tf <6d6f726520636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 19 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 841.89 595.28] /CropBox [0 0 841.89 595.28] /BleedBox [0 0 841.89 595.28] /TrimBox [0 0 841.89 595.28] /ArtBox [0 0 841.89 595.28] /Contents 18 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /XObject << /I3 8 0 R >> /Font << /F1.0 10 0 R >> >> >> endobj 20 0 obj << /Length 205 >> stream q q 839.1656 0.0 0.0 595.28 1.3622 0.0 cm /I4 Do Q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 547.316 Td /F1.0 10.5 Tf <74686520656e64> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 21 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 841.89 595.28] /CropBox [0 0 841.89 595.28] /BleedBox [0 0 841.89 595.28] /TrimBox [0 0 841.89 595.28] /ArtBox [0 0 841.89 595.28] /Contents 20 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /XObject << /I4 13 0 R >> /Font << /F1.0 10 0 R >> >> >> endobj 22 0 obj << /Type /Outlines /Count 1 /First 23 0 R /Last 23 0 R >> endobj 23 0 obj << /Title <feff0044006f00630075006d0065006e00740020005400690074006c0065> /Parent 22 0 R /Count 0 /Dest [7 0 R /XYZ 0 595.28 null] >> endobj 24 0 obj << /Nums [0 << /P (i) >> 1 << /P (1) >> 2 << /P (2) >> 3 << /P (3) >>] >> endobj 25 0 obj << /Length1 4228 /Length 2478 /Filter [/FlateDecode] >> stream xWkp>Je㧌m䵅ml,Y6Ȗ_< 2dI i!Sd4:aRva& 0ҐLJdQfJxt(ɏJ`ݫ{;> �4`B8Ά�ON|f} Dž쏳Tz=2(߫ʋž,&~Qp{ߢ<#aB}<Ur?*\LY�(C$YIKG5hudJAjDuJ #lZmԚ%Za֑|"(FO7~DoKJy{e u{w8=NM242…7Q@V|S,Q[|v�UZm!f4 * 5<kJcec/`)`3khnVq:3ʚ Nɧd"ql4$[;baJ6U<6QYG j=(+ηuPMc ]]OlɭllXSs/iv,]иm39;_Y+en.Z X(}6OR];Qؖ~%œ85?}|{SсY CYL&j(-R&g>}otV,6W埖oO;N6[ԎW2_"OSRV0 I4M%/\)nP%VY.^PU־2̓CKIe۾&~m(^l)SWw.=*Ӫi&9qy yDIǯR\2Iь\~uT\gT'[m߲N\lF^[x(%zT%2ňX 4P)゙ʦR{BLIP*|nAq]yAAy]:._.^:q>x;YϪE&]Vδyt&#h:*u4%ޮ/I咮e791s]dicl|$ƯmuE2夣TS`2od|+(kin*J;,-NI/S2lU-n>idϊq1ΥψM3&}{7ZͶ)N?,ߒ{}ˑvB+T)k}w!}]玁+Vȭ$n&CȊ\>>km Dlt,Ϩ)�PKb\hUHoW?"Fov|OP^.-K 7Z~k)з{DI|2U+s;o)(fKaB;WqC=U*KrĿ7lLWoVge*zngվbA7"b{8yS,f9GX}Gk4$c r]u|S 9eǎv)æώdԂ)tҶB5YI$A"Ǵ2~ Z6d·vPE#io2U-,cON3pKPF骒~ ~>{O\^re$1fSYʂ)%[w0AP*ʪXJ/>l=q^4{nhMa҇t#Wp3ԯ\Ǥ;ۜB268RlMF(׍(8-Qp iSȆs B +7 )RpBUC q(rg|KJVƤVt($W<<tV,K\9Rp l/)x& 41sk16ςVf9`gCSlXtɰrfSEͭ \ϭ":wv "` Bh~~9^q?QZAu v̬,u]u?(FEnMTQ"G`b aybP!t9 x|AgR iNi/0n.[G|bkM\ N#]9FXØڸD(+U"EÂ;8q">((Z$@v &y O"+~>Ow#>Oreݨ+ z}(V&cJ4Y0<73F!8.ܼGƐr)Fq w#.ZxS^7ƨh޽{7P’UG1O|LnG-~;X c 2 a.us!a@3o~3br)<䚔xt=%syR (bc'Wuv u$/WHʣ0rjDVSG.!!6؇/ڶ֯ifXgdK)?e@8p endstream endobj 26 0 obj << /Type /FontDescriptor /FontName /b1b554+NotoSerif /FontFile2 25 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 27 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 28 0 obj [259 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 727 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 612 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 492 613 535 1000 1000 634 319 1000 1000 310 944 645 577 1000 1000 471 1000 352 634 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj xref 0 29 0000000000 65535 f 0000000015 00000 n 0000000268 00000 n 0000000470 00000 n 0000000548 00000 n 0000000599 00000 n 0000000871 00000 n 0000001141 00000 n 0000001463 00000 n 0000007442 00000 n 0000009400 00000 n 0000009565 00000 n 0000009822 00000 n 0000010147 00000 n 0000016440 00000 n 0000018397 00000 n 0000018441 00000 n 0000018490 00000 n 0000018543 00000 n 0000018810 00000 n 0000019134 00000 n 0000019391 00000 n 0000019716 00000 n 0000019790 00000 n 0000019939 00000 n 0000020029 00000 n 0000022597 00000 n 0000022811 00000 n 0000024173 00000 n trailer << /Size 29 /Root 2 0 R /Info 1 0 R >> startxref 25296 %%EOF �������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/page-background-image-alt.pdf�����������������������������0000664�0000000�0000000�00000065715�14163570564�0026054�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Document Title) /Creator (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /ModDate (D:20190702043848-06'00') /CreationDate (D:20190702043848-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 16 0 R /Outlines 22 0 R /PageLabels 24 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 842.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 4 /Kids [7 0 R 12 0 R 19 0 R 21 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 220 >> stream q q 595.28 0.0 0.0 838.1702 0.0 1.8599 cm /I1 Do Q /DeviceRGB cs 0.6 0.6 0.6 scn /DeviceRGB CS 0.6 0.6 0.6 SCN BT 350.129 361.6965 Td /F1.0 27 Tf <446f63756d656e74205469746c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /XObject << /I1 8 0 R >> /Font << /F1.0 10 0 R >> >> >> endobj 8 0 obj << /Type /XObject /Subtype /Image /Height 842 /Width 598 /BitsPerComponent 8 /ColorSpace /DeviceRGB /SMask 9 0 R /Length 6083 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 3 /BitsPerComponent 8 /Columns 598 >>] >> stream xrU@Q =�~l7 eP(IYJk 9P˗/W�k��|@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�D}W�?~駓{yA$ezd?ae^'B^Idxli+# xVFw@?ɾƝw@l,Q=$[9 :D ` s' xVNxʾ|2Cu~zF-]6ϙ<_]C?m+s᫿<p|,}~u p. 3Îgo#~{'sߵ}13~k++3fO?ۚqmgSY\~*fw ̮{ߟn>9fM;?YYʶ>9|r7-9[o޼ysD_wss;*f?w=AyvVcVf''0AH3K?e۷m_ٺY_e`xurԌ&;q75`}~kgs5ٶ/n5f÷<thqwR4}?ff2M~gخ]9O;Ntp^qָÇgH4k88ۢ>{`l3^ܮSoyY_~eҵ^n~}ؐ@ oXmswuOgn3ho_|gY?3ۓ5aAϬє٣e;jwTx5㾉珶ͽUs~>Zt-xO>6sX|9lEmd93}x!M438Uyr߬6*ڟl6jfxGf04;ǝ[Gnsd^!7(6r^tn6\J}+>Mr<_ߝ4 gL6wrPR qf(6>n^Yl}_TXpq]L^M*s}\2p'0?Rf&WNۮQO3_jKeCFW+İ?\9:<r$ 4ېh~t$=rceAۣ~;xd%3YrvlJ3l$d+T|x@rg}r?9$:ݜx7ln>Bpśwvtd% -'WW^|tfr#+\n=g 6va}+.ӷ599ѹ0-ww-f~ u; p-~Ȕ084`+ۏY<$pqMLv,e'B'NN},2F mV:߿uūD'o>k|{aNv>+gzvZ2$'+l5l{\[xqvj<?XZ b,xh۴ӵ_y5: Y沓뛹أEO"V۷\9t<~wup=~r&7S?|M}GzpW>%@!wLiwYֿlŭ3б~ҹs~\ t-ē;X<,h{meU_#z'"7s}:<ׄJ p')`1w~ۓ>;㿓oV)6s= . \CL3S{k޾}s aM gv'Q 2<siEg?}t̷/0[~8΂>fg=OAK<siOmo޼9͗ ;|}3ׇO$ɝ$ē~GQ]&岙,N |A%_]{߃G8&p5>|<E~O@lO7iǏZgyE7{c3*+͛7/̕G <z6Y?:?q|oC)7[/]Zgy"O}1 VGݻwIߏNZ@lp;&~GQ 7yݬ &;{o XIL.G'y,8 ֘oo&˳Vj^;WIԣMofk $8zuλxΝc;KW8+w~{n w9ɡ_j8r; p>W^!7wg헳\ܷvgW6srtC,^|Cbx_qm„s}k2߾}{r5.N޹Eœ|߈vD<si'~M'wrrv)NN6p4 =);sԤ3!>|KIKW>}گi³͔rӶsg_~(HrzQ7a|3r3ٴ@Ά|m. h i~\sW|smY@Ρd~kZ{r3d<v{81X$6K?ymf53S grdc:zVD9؝gMw0ju"q@d_YY?'3oS3Gճtd&]l$8(d?ã/zg<$g&p؆+ܶ2>Y#ΫO+&'KUH p_'+.6Rou ޾dVf>ٻCNBLggqS<[7Fg6/׮zk_ϳ^tG}7WͶ&=0͟ns޾f{iԶ+:/q/gvc=$/@T�xf@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q.J endstream endobj 9 0 obj << /Type /XObject /Subtype /Image /Height 842 /Width 598 /BitsPerComponent 8 /ColorSpace /DeviceGray /Decode [0 1] /Length 2153 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 1 /BitsPerComponent 8 /Columns 598 >>] >> stream x 0 �d%z4Ak:~�7YYYYYYYYYYYYYYYYYYYYYYYYY=�n$+>dE@VdE@VdE@VdE93.dZY[08Y+;YYYYYYp%`ZY+;YYk" +" +" +VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@V>  endstream endobj 10 0 obj << /Type /Font /BaseFont /b1b554+NotoSerif /Subtype /TrueType /FontDescriptor 26 0 R /FirstChar 32 /LastChar 255 /Widths 28 0 R /ToUnicode 27 0 R >> endobj 11 0 obj << /Length 205 >> stream q q 595.28 0.0 0.0 838.1702 0.0 1.8599 cm /I2 Do Q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 12 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 11 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /XObject << /I2 13 0 R >> /Font << /F1.0 10 0 R >> >> >> endobj 13 0 obj << /Type /XObject /Subtype /Image /Height 842 /Width 598 /BitsPerComponent 8 /ColorSpace /DeviceRGB /SMask 14 0 R /Length 6381 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 3 /BitsPerComponent 8 /Columns 598 >>] >> stream xrVۆaC |@ z ?n& \"Jg^,=�< �!�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@'߾}?<zUq7ͫMαyc;~Xs%�~?w/_djt{iϟ?} O<?߯_5R/*nឩB|٪ڀ™wTg~jڌ?E> Ԛݾs/w|9V`\x mpY?OWWWVJ+'M?2?9jٳgӞD<UCB{j'?٪ͻEkUkweR;�t*^{n13JVE9g%l=Z|iǏ͉u0~sCj>■Z_f]]+|/^47H63vŜ?U{ƪUk3/=-nءO4]'?}ԙrv?:\qlq4-}Qz8\iGe`Z|kᚂTfFObwc@5vϬW^z >٧6cm6[z>xWթچ"HӘOQͣ/=-0 3]Z5~X /_߾}{7oN-Y(<3lTHjofژw{?.)cfY+9JM3/%ͫ=d?6-OFko|� gӁO}fRIkSkwj οDMbӑqӧIRm|3-3μD;ڙ.Nk+`6~~)9`%j.Xz:Wg^Z2߿zӜ;KgBǚ_~]w+B{E͏+Hg_k[u!n5xaMo\ߌOI<Ftў)Ωtq24~v~N9| ˅2gMfm]OKV?Uf{U.~;>ʮJ2g^ 3͋&&pZj71˰xNy2ti7L /NIo}{\begSWݍ מܻA̳g SɛWdŋ_�{{6cN|4>yX(p}G1Ư{M` :]Isۚ lƾ9Hٖr�dv^v`Ӂ3m[\ޑՋe p>DžKtqyg0c_y~hqlF3/3tfc4Ǐ6+[6OvN׶MiqSS5p7?MOksL\;z:ٿP7lw¸&̙wv Ov*wxrG&qhLR緪3 w֜Py1ZXUJsoW'(uG,XݸKu Gv=eWRhlǵX8ܞ[<v6V<@=~yL-g嗙..lSSfmsX?/.sK]f2Z,k[@{}aRq+ݿٻScwWw5qegN" ޽{7:kȃAM(p !o\3@ Ļ{1Oj_|g_~/Vs4??}3nN\n fRB7 ׽.g#:_*^xѼfrg l yևSik3lu <t8-;n@|kyӮYEZum=IvssSk>1]gy$0Z䬆S6H;.l~=SnCWWWIO U+;؟^';qrox1wg^$4p:;Oej_zU/]BXQ9㵒)'p0N&p<s`ok=V}EVs|U]<4\7&+-o3)bt>x}xjlYћ7o:K^D?u3j׍sm܇~y~9kMI]  1G>nV2y3,.GzkJ];M3BcYٿ]~3"k/ ٛ9Հ8sbu]U^ |)jXs_ ل߿o//ۛ_(5 z(D UW/Col3 A;a\Shn|SNk�<$Qs̹WoWYlQ:rwـS&yΘvVz( ##Ƒ\dH0+ws93Utɩ;:y4Ndv${( ,x#4oZდ^| yYޱMOPmL:;_X\ J1S#v6/ܶtrxyNρ:󛈇E߻=Ek.>UmkfH]+wD:J7'ϟ?L4OV$ϰޡuwp9Qk?}R-<qzc|w%r~8t}} j䪅^89=>|ׯ_߽{7_4nz0S+9߿y\ȍf~5s;4}^9'{?~\s<Tm+qӃ*!{aw^滹/̩WUqr֩xtۚHl'3e^5Gk]oF0*ιe/.V\}?0<ǒ;v rssӹʛ7o9yf Z5 zˋGV7K;|R TnqHO<yPy3 <͋NRx7xbZڧL,p=6s8yj t-߾}k5qn94#Fw6-(x0Pe:7a;cq,t9A['v|ô%/* .X{Wpw%�r9�$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �Ƚ0 endstream endobj 14 0 obj << /Type /XObject /Subtype /Image /Height 842 /Width 598 /BitsPerComponent 8 /ColorSpace /DeviceGray /Decode [0 1] /Length 2152 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 1 /BitsPerComponent 8 /Columns 598 >>] >> stream x 0 �d%z4[:ɊȊȊȊȊȊȊȊȊȊȊȊȊȊȊȊȊȊȊȊȊȊȊȊȊȊȊȊȊȊȊɊȊȊ:p!ۊs(YYN@VdE@VdE@VȊ YYYYWv" +" +"@1l+YYp" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +": endstream endobj 15 0 obj [12 0 R /XYZ 0 841.89 null] endobj 16 0 obj << /Type /Names /Dests 17 0 R >> endobj 17 0 obj << /Names [(__anchor-top) 15 0 R] >> endobj 18 0 obj << /Length 215 >> stream q q 595.28 0.0 0.0 838.1702 0.0 1.8599 cm /I3 Do Q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf <6d6f726520636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 19 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 18 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /XObject << /I3 8 0 R >> /Font << /F1.0 10 0 R >> >> >> endobj 20 0 obj << /Length 205 >> stream q q 595.28 0.0 0.0 838.1702 0.0 1.8599 cm /I4 Do Q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf <74686520656e64> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 21 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 20 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /XObject << /I4 13 0 R >> /Font << /F1.0 10 0 R >> >> >> endobj 22 0 obj << /Type /Outlines /Count 1 /First 23 0 R /Last 23 0 R >> endobj 23 0 obj << /Title <feff0044006f00630075006d0065006e00740020005400690074006c0065> /Parent 22 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 24 0 obj << /Nums [0 << /P (i) >> 1 << /P (1) >> 2 << /P (2) >> 3 << /P (3) >>] >> endobj 25 0 obj << /Length1 4228 /Length 2478 /Filter [/FlateDecode] >> stream xWkp>Je㧌m䵅ml,Y6Ȗ_< 2dI i!Sd4:aRva& 0ҐLJdQfJxt(ɏJ`ݫ{;> �4`B8Ά�ON|f} Dž쏳Tz=2(߫ʋž,&~Qp{ߢ<#aB}<Ur?*\LY�(C$YIKG5hudJAjDuJ #lZmԚ%Za֑|"(FO7~DoKJy{e u{w8=NM242…7Q@V|S,Q[|v�UZm!f4 * 5<kJcec/`)`3khnVq:3ʚ Nɧd"ql4$[;baJ6U<6QYG j=(+ηuPMc ]]OlɭllXSs/iv,]иm39;_Y+en.Z X(}6OR];Qؖ~%œ85?}|{SсY CYL&j(-R&g>}otV,6W埖oO;N6[ԎW2_"OSRV0 I4M%/\)nP%VY.^PU־2̓CKIe۾&~m(^l)SWw.=*Ӫi&9qy yDIǯR\2Iь\~uT\gT'[m߲N\lF^[x(%zT%2ňX 4P)゙ʦR{BLIP*|nAq]yAAy]:._.^:q>x;YϪE&]Vδyt&#h:*u4%ޮ/I咮e791s]dicl|$ƯmuE2夣TS`2od|+(kin*J;,-NI/S2lU-n>idϊq1ΥψM3&}{7ZͶ)N?,ߒ{}ˑvB+T)k}w!}]玁+Vȭ$n&CȊ\>>km Dlt,Ϩ)�PKb\hUHoW?"Fov|OP^.-K 7Z~k)з{DI|2U+s;o)(fKaB;WqC=U*KrĿ7lLWoVge*zngվbA7"b{8yS,f9GX}Gk4$c r]u|S 9eǎv)æώdԂ)tҶB5YI$A"Ǵ2~ Z6d·vPE#io2U-,cON3pKPF骒~ ~>{O\^re$1fSYʂ)%[w0AP*ʪXJ/>l=q^4{nhMa҇t#Wp3ԯ\Ǥ;ۜB268RlMF(׍(8-Qp iSȆs B +7 )RpBUC q(rg|KJVƤVt($W<<tV,K\9Rp l/)x& 41sk16ςVf9`gCSlXtɰrfSEͭ \ϭ":wv "` Bh~~9^q?QZAu v̬,u]u?(FEnMTQ"G`b aybP!t9 x|AgR iNi/0n.[G|bkM\ N#]9FXØڸD(+U"EÂ;8q">((Z$@v &y O"+~>Ow#>Oreݨ+ z}(V&cJ4Y0<73F!8.ܼGƐr)Fq w#.ZxS^7ƨh޽{7P’UG1O|LnG-~;X c 2 a.us!a@3o~3br)<䚔xt=%syR (bc'Wuv u$/WHʣ0rjDVSG.!!6؇/ڶ֯ifXgdK)?e@8p endstream endobj 26 0 obj << /Type /FontDescriptor /FontName /b1b554+NotoSerif /FontFile2 25 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 27 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 28 0 obj [259 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 727 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 612 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 492 613 535 1000 1000 634 319 1000 1000 310 944 645 577 1000 1000 471 1000 352 634 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj xref 0 29 0000000000 65535 f 0000000015 00000 n 0000000268 00000 n 0000000470 00000 n 0000000548 00000 n 0000000599 00000 n 0000000871 00000 n 0000001142 00000 n 0000001464 00000 n 0000007810 00000 n 0000010228 00000 n 0000010393 00000 n 0000010650 00000 n 0000010975 00000 n 0000017621 00000 n 0000020039 00000 n 0000020083 00000 n 0000020132 00000 n 0000020185 00000 n 0000020452 00000 n 0000020776 00000 n 0000021033 00000 n 0000021358 00000 n 0000021432 00000 n 0000021581 00000 n 0000021671 00000 n 0000024239 00000 n 0000024453 00000 n 0000025815 00000 n trailer << /Size 29 /Root 2 0 R /Info 1 0 R >> startxref 26938 %%EOF ���������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/page-background-image-fill.pdf����������������������������0000664�0000000�0000000�00000044512�14163570564�0026212�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Document Title) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20190917012126-06'00') /CreationDate (D:20190917012126-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 11 0 R /Outlines 14 0 R /PageLabels 15 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 454 >> stream q q 595.28 0.0 0.0 841.89 0.0 0.0 cm /I1 Do Q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 192.5425 777.054 Td /F1.0 27 Tf <446f63756d656e74205469746c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 746.406 Td /F3.0 10.5 Tf [<546869732070616765206861732061206261636b> 20.0195 <67726f756e6420696d61676520746861742069732072> 20.0195 <6174686572206c6f75642e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /XObject << /I1 8 0 R >> /Font << /F1.0 9 0 R /F3.0 13 0 R >> >> >> endobj 8 0 obj << /Type /XObject /Subtype /Image /Height 12 /Width 12 /BitsPerComponent 8 /ColorSpace /DeviceRGB /Length 21 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 3 /BitsPerComponent 8 /Columns 12 >>] >> stream xc\@0fT�<� endstream endobj 9 0 obj << /Type /Font /BaseFont /d1cd5c+NotoSerif-Bold /Subtype /TrueType /FontDescriptor 17 0 R /FirstChar 32 /LastChar 255 /Widths 19 0 R /ToUnicode 18 0 R >> endobj 10 0 obj [7 0 R /XYZ 0 758.37 null] endobj 11 0 obj << /Type /Names /Dests 12 0 R >> endobj 12 0 obj << /Names [(__anchor-top) 10 0 R] >> endobj 13 0 obj << /Type /Font /BaseFont /fcfd88+NotoSerif /Subtype /TrueType /FontDescriptor 21 0 R /FirstChar 32 /LastChar 255 /Widths 23 0 R /ToUnicode 22 0 R >> endobj 14 0 obj << /Type /Outlines /Count 0 /First null /Last null >> endobj 15 0 obj << /Nums [0 << /P (1) >>] >> endobj 16 0 obj << /Length1 7948 /Length 4635 /Filter [/FlateDecode] >> stream xY p[Օ>=I8q~츲%'OX%ۊd;RdK !i @xiC�03[ .3݅aXs;8 e:s{9s2�ȃ:P³c!o4[f"� (_y~1 nW"}@S@?^OW -9͛{=H<qk>tK_lw�Q�8 ј?z"Nտ([ԹqloB}Mm9�P?Q>Y旒 $�RgP w7p&<g뛰; pVPGzS)D}e6!I~@n>9O\ՖVpϿD~>:{Sw7r_H({]} k'3/_!RΝa(D+ ˸h^Xq~Xe⍄oeZnc7mZXU\yDXUje:EW�9h4I_(|P:+L\C6β+*\ɉHjo*#o]c?oXu?RUe~kJLޓ['>:جWo+ktW5˺j1WlEjSңV~%D_3Lgį$Uy6ۃ?s^>fmh*h8cs'Κ4cU5ܕm:>juuVjMKKk,%wⒹ)ɪb~rghpF:tLTPд_f359, eU{}/iW[S3M ų]U[uAQeSjBb,)jPWt9ޝu<k((w8w})Bjv쪳 Us~c})Ų&GOlMkD ek. q1s[S!F6׶/Zl-ͽP9F44D zؠ~%g*N1?cnj֭bn*SRzLj|cSPpSS #Be7h%OO,Ez da1mriG{T{%JͶ>@]cGRG~wWb;U"^$/-$*6{pwݳ/k+ f}KƮڢ e*^Me7+޺@~YYXSmwGjuYZfрC1~CԤn{7Ż&gJfe3*x<{ Ғ1T+GZ jS{ ԎToN+]d^-o1J]4 ([)L_q'\5P*8Nqb]}}] @N*A}s @>EǷ/_q_zVAtB7>NpH)]XqE6w Qw̏d[e~Uy2΃ ~# АRW@q% e\ %dDUPDr? *C2O 2FOdol(6x6lZd<=!P}&㹰[x*{d|A#= 2ǝT\6렌g;"D !l۸ID&&#<f&'A:qlg@C 0H`7FGavpaVQ~l(k/>0Fǡ$xȤp$?P+ܘ,0ۑ3̤G3O ]e=ؗ,dHXhk6Gj1}| cF*b`\ ycw šX8<Œ@^*w#a-x z'<'Zfz)/lބW L y'2B(Ԅ2(.1Hd&`5 [bG"cDtټo>si,2Of4$bf@[p1>143"(ʌyͲ  c)_0r ١L!?.Sh( 'gd<| qT _p:v}Q8ü#P#H͍&aya`< Na􆅊6pVmNFv 9NoP9}Hu mnkA4'&ſq!d&￵x$x? ĔwWB8] & FODca#S1a %J|e&ɀ:l7ӍЍ_f؎!fͷ)ަY`N#;c /cD;6K,6ΠQ*!ۗeuNاT؉!o`[J<u/}x!jc3dG{/CeѪwb=c;2luL+ Ȓٜ1vBSNK/;Ѧ閉EYbH\OH7遰 /b6L6e7)4Eb7q\ y]&f$t8Nc2?y͞Դ|jvTi."W=f EO 1'XKX8 D^Śc&b1 f,,*kyzXJiMTܰf\z=6]#mDb2ekQh> +RZ J&+6l2UeMԈg1< ʱp8_(i>Ve,b ]Ú. C_ƒy XbQ5(ƶغaKHy|Jldp# ?왝=6+^<{m6\ٜ΋md ~uX{pd5MW?$|zsv챳kgUμz^3=9}ӊ5k5OO?yOG499y$ 'H'.<'3'H'ȅD8Ayk=gop?N:JGG#G$kIU,E\ּ1qa_7n;S +q \?_yg$:2=wyCCuph8h0iD0撆k\\8WA0]L9634{e{9$T$޵5Cȣ= =&K{$v3mL1x]<�{qȀqreS&2/U"f4b!2ƧX�r޾gnhoneM ̦ښ Ub0_YR)<:.vz#)*ZJ^�oRRI06a)9of8 D+@Km`](#\?j݂)JF! ^ vso iPLnNϩ\bO FgȆmu -3\U+'6^ﮭqH+E&RRuHYLaa|9-z+|ϻ%^RQmR}/fTj*4hE!9+K ρv;ѽd(t&=I(h̊ɨ= .u.uRyv$)Uo<t}Ӆ>gQ$WWhk`5#Gtqva4=t V~Ӌɂ|fZIYnY'`)I-#V~i>աYD1T]{@ jknc&Cmرzg8m,|YJbB<YŦӤ <c,lQ͂=IsFr##�FGpzAS ԃFw`Vړ.߸TpW .^Q[t4)ћ՗4=N:\=Ng`kltfS7]LOImP .NǻQЉk)ˠƢ0u{ z͐&QzP%Myi*Jnޭ<5 b xj ơQP ./ŀ Y]tm=,"3X|-9 z'3Nns.F/7 ;懅Zq&pQhy>]h3q< `Zt蘱 >#C3Vrȹ@84z#\=\ x0()!PJDBu[٨;Gay9.i11E2>�zyHz4ǡ_"q:A6C8 )GKb;[)ޚU Ť澤.~^RKj+"U0<|wH_a3.ԩLfTVϗ?e4vCS[Ih#M7b=) UwEܑoe(pۡ(_ OQUaj_M)+TBNC{\(!ˆYp;(6 WVqkસ7G+$5 endstream endobj 17 0 obj << /Type /FontDescriptor /FontName /d1cd5c+NotoSerif-Bold /FontFile2 16 0 R /FontBBox [-212 -250 1306 1058] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 18 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 19 0 obj [259 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 767 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 652 600 600 600 600 600 600 600 600 600 600 600 600 600 600 526 600 570 600 600 600 352 600 600 352 985 666 612 600 600 600 600 404 666 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600] endobj 20 0 obj << /Length1 9648 /Length 5858 /Filter [/FlateDecode] >> stream xYkp[u>{/� P"HW|7H|oDK� DʢGr\(r(vm&I=qh':Lvĕ<MN8"ٳK8͏^9{=� `%\ :!'�dԽp [fû$ (c U~~>*"gs<ȅ]HBߐy{P_5@(̝-�{<?b2Q9 y_LH=dpj@ tXXO5x1xl x�>VBTEECLl'$5I+Y'z8DUG%r II|ͭO!?"whH*om"'昸SZѬ0))9CgwTBEA~%+)wq WHlo#W$$rj"&|_Lwt]UcC~"pX,yR;2YeTՙrdrQ'iPq ֦yHT"SUl, I$_LJ*+HE#G=хO: Z==8hNԗ~-$ f|A7)t*:J!6q .sjW$HY'Ddmho.ڻ҂TŨ РbRaHҪTQe<ХLUչե&Y[ш FFC9|j{WtGl23<\W@kHlvEenj'({*ZϼE 3O< >=3JkE}dmąJDDf!_Y'4V8s_Ozj:v@Z^wȶ/>֖~Etߛ?=ջ*k-#͹%3/[Mb[*^cx5݌>XVo" D8V))8IkOFE�Xŵ#@! s7Cr{Kw=>=A*P[|Ȼ?˿8ESH*ʀV.jj1y OƑޝxbnu+8U+qw{_4p7znMrO~k`oK 2Uy4%״ 0 3pB0**2!D>A>2+X)*ߖ+gyWQQRgdiEh&9Ǭ{^?R nmq?h(U d'{ *z~P<Дw^{Iw¡NJOOIO(^pyĦv듔-'*8[Z/44v5 \%'h IYH7V -* bwuBi]{i$9wu)ޜJFQF׳};cZ)W4ZokSm1!C-?[;rͣ'U1|nbmL-nE'REhխ.hwzQvrrvQ"aKhKȍ'#Wic-{NH[60pz<,YlqSaH^$I~*n+~afg#`(Έ--#ϝ_;282Wg#("KIϭ.23##^VƼ S?}3U磷49ooԷ[{X[B4bm5$'ew ,_1V6XgLBNN)gj: 1㶗31U:<׸ִQ9ve3:::r6Un]*82Qk=vvc9h4f[RHaZ@:r5Vzd߾-YV+karM}.T[zΧܺ%Cgyj"q`&wn d2xֳq@U dEjb;΢8@}I>_?k)($22 ˪ˏ5gSLzcvr45 4Be~}_f|y٢{ToF쪑'ʰ#@;]qWjjFV3շГW5hg'o_@9^d@{O Z]@eaPyPWj/̫OkLg̞W:5^R'bi(@{ׯq_WA6$FRUb}Ms`x+G,$ks8UU1JC 'ܠ^XX~3]/lW<bY6fᱽ_1F|H)jy:c9 KvMɯV"XpE+OK#k/4FNbZqQRv)fT$eN?Bŝ0%Q*:R 90+$AjO09a{QL?͢ϮweZZo';>�R' |g)1<A@ y{@ H;L⪀Sr W[ߪ!,<ym\q~-?'7-Tw$}g6h!0�0Fduh;`wb'詇e>_w'9.$yȂWd>dbIWdIWB:i*܎eFhH!e~4r2?  x52?8h~UKe~<}2?tgd~5[2?2fd~"G.^K^= s&yfF]!ayM "̃``m[@ 9�3|XP1,` o?@�J 1 ?Lf<l,B ‹A4y3埛-PӴVGlaSoK?[-͇9dP\"aB<*''&T4CG{Y!0-3>|èۃpy\g`mjNyfo1G]I<fmGυ1L>0(l*FQ uxP#]4" )OqYmv#vi:֚ͷ~ik̚|a30 ZL!fL&&#HP,O�˜Px|B.gxã-0=>/3 \\OpODD&ʼPx?>P3'4 C9BKPP09F{;CBߠkEMhu ݝGs/680}d P7O3"蛟Bpyq'1 ¼p ?T䴼a} CFmn'cɈl[ӨfCGzcۦg*)Xeu%q*,ae&!-@ )E0}x3 Hw<4e+ֽ:YmGXCenZAgQy#CyYR7v7M? W1 lI)I Lcm]jgY8˰HH+f4!cc6" MdB`8d gL)s_[ώµPAibV`MW?'=D'걅C7?hvh\{"|=n"ݬYKRh1"XJr$9ђpBHkfCZ'։f:Wz[%WIs=ѡ 5G'!ƒ5R (dp$y1L2N{{9j(/1DJԣgcK|AOևX|y6d.{_d7jLGiXZz}2>QO'^U\%JUR~2?׳_{uwoɘcُq1w?BF|#<<y8q5Wq_ /_Rr s<畔! a|U�A׳*4)؄lYVE/!=or.Vj筣)mHs\v\q\w(?vn'e:GjY#2#[;8T_QsMj>� T$+n)Drhi/s]w= -Y!ruK^lXi464Y˩ BbСP!!  Vᅅ!r0t RXD$QCDC(Sb:]Y·B`}=]mv[kKb6K r9tmFR*xD.)-)Ď#E2<[n RvIp31a%'wHZ#MIX"EAz& +dgmK>`}cD6A"n.^mo9.UlK`96qؒ 2)h$k9NJ|v`pK:DƺTRS)pFX.ye 㽢3x]KKJIRh O4WJD]*Z79%QX3[vGr5m!KKmж^򬬟#Q+/Im${ʋmO86aڃ$u$׆Lup ]+#!pFh0.\87ye'A{Nolw!璤vG:=tBHĥ]IBd$e‚HC4H}@%jDTCE[wl:8a6lX=3E~sdVl'5r!0I*{B%6:`_z4z\nq_].t_Qũy%wRv뼸+' Y]%:}.fU4ag=Y-jD.S΍wB6Ėz,h|5ƥaR/8ސF3BrަTICcCCgp"nAGDStlt5ǡƢST] Ytm ٯۨ-`!L` )붂+3zݹ-,ECKT(+S$4b6 eF aI.Cz& :.&-L|-"o`J|I 7Zރ}Η�+rK(A5 "u/YN^c0zl#0Ex <Ege<ҧcvK%EcRG$"6":b2TRko_EQ$KN,iF3-@EH׷PZ8~=q\Ӯ|~#xo_X{Q2".osěL+&ϋEΒX]+GD8fKZYڸSǽtTy^3-u7ƣ,8_2Y⍯Bu߄;wʭ72Z?@ 3 J]EihVm.a==A+(q\!Mneg/< endstream endobj 21 0 obj << /Type /FontDescriptor /FontName /fcfd88+NotoSerif /FontFile2 20 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 22 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 23 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 500 500 250 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 612 500 500 500 500 500 500 500 500 500 500 500 500 562 613 492 613 535 500 538 634 319 500 584 310 944 645 577 613 500 471 451 352 634 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 24 0000000000 65535 f 0000000015 00000 n 0000000264 00000 n 0000000466 00000 n 0000000523 00000 n 0000000574 00000 n 0000000846 00000 n 0000001351 00000 n 0000001685 00000 n 0000001951 00000 n 0000002120 00000 n 0000002163 00000 n 0000002212 00000 n 0000002265 00000 n 0000002430 00000 n 0000002500 00000 n 0000002545 00000 n 0000007270 00000 n 0000007489 00000 n 0000008851 00000 n 0000009765 00000 n 0000015713 00000 n 0000015927 00000 n 0000017289 00000 n trailer << /Size 24 /Root 2 0 R /Info 1 0 R >> startxref 18203 %%EOF ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/page-background-image-max-height.pdf����������������������0000664�0000000�0000000�00000034022�14163570564�0027312�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.3 % 1 0 obj << /Title (Document Title) /Creator (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /ModDate (D:20190629190354-06'00') /CreationDate (D:20190629190354-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 11 0 R /Outlines 14 0 R /PageLabels 16 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 596.28] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 841.89 595.28] /CropBox [0 0 841.89 595.28] /BleedBox [0 0 841.89 595.28] /TrimBox [0 0 841.89 595.28] /ArtBox [0 0 841.89 595.28] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 458 >> stream q q 595.28 0.0 0.0 595.28 123.305 0.0 cm /I1 Do Q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 315.8475 530.444 Td /F1.0 27 Tf <446f63756d656e74205469746c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 499.796 Td /F3.0 10.5 Tf [<546869732070616765206861732061206261636b> 20.0195 <67726f756e6420696d61676520746861742069732072> 20.0195 <6174686572206c6f75642e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 841.89 595.28] /CropBox [0 0 841.89 595.28] /BleedBox [0 0 841.89 595.28] /TrimBox [0 0 841.89 595.28] /ArtBox [0 0 841.89 595.28] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /XObject << /I1 8 0 R >> /Font << /F1.0 9 0 R /F3.0 13 0 R >> >> >> endobj 8 0 obj << /Type /XObject /Subtype /Image /Height 12 /Width 12 /BitsPerComponent 8 /ColorSpace /DeviceRGB /Length 21 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 3 /BitsPerComponent 8 /Columns 12 >>] >> stream xc\@0fT�<� endstream endobj 9 0 obj << /Type /Font /BaseFont /68f192+NotoSerif-Bold /Subtype /TrueType /FontDescriptor 18 0 R /FirstChar 32 /LastChar 255 /Widths 20 0 R /ToUnicode 19 0 R >> endobj 10 0 obj [7 0 R /XYZ 0 511.76 null] endobj 11 0 obj << /Type /Names /Dests 12 0 R >> endobj 12 0 obj << /Names [(__anchor-top) 10 0 R] >> endobj 13 0 obj << /Type /Font /BaseFont /39d1a2+NotoSerif /Subtype /TrueType /FontDescriptor 22 0 R /FirstChar 32 /LastChar 255 /Widths 24 0 R /ToUnicode 23 0 R >> endobj 14 0 obj << /Type /Outlines /Count 1 /First 15 0 R /Last 15 0 R >> endobj 15 0 obj << /Title <feff0044006f00630075006d0065006e00740020005400690074006c0065> /Parent 14 0 R /Count 0 /Dest [7 0 R /XYZ 0 595.28 null] >> endobj 16 0 obj << /Nums [0 << /P (1) >>] >> endobj 17 0 obj << /Length1 3744 /Length 2184 /Filter [/FlateDecode] >> stream xV}lS?gqȇB̳ώ?8$8g! (_l??v h-Z@[>P"DcZi4iiCe&MEڴRHB:f{{ �dB$SZރ(}<53=,:!G�%]8gcB9MxK$nTڧn"G3`h6;:|C:ړ1_a @Uw.Fj@E@`v)@VJȠ3賦T+e>C l�+@Ԍzz_㈃<L^U]xL5ojl sWwK7oL].|+Q(kdoPzSV=sbh kE] `$T͒\A*)KbhE* ݲcf*^מdm=RAc 6sB9sUPkr}5zc$5 bMJ5ZI=`$x١'~:ꔿ39 ٯsW }٠ciu; mncQD} lAw<iLFZ֯''xuHo^ΈW/Dh@t_8cWFOpˇܘ=so)$'v5I9yzzyuKxklu76Z:[[O᫭_Vbktv[s{^~oAJI[4Ŭ`(y1A*u [XtKӭ ۃA-6Ƈt}:[kf‹Q_ck3=g.Zݣ_> s4,jZ|շ'[qZ4s$&:BM77Dyg\weo*?mB3=(ϭrTWI LRb*SeN>.|r콓aB]wsVn<^]KP&jn.e%!z:H.Yj|j*hXt֘0Z0[hȌlПԻ .=[F_5<ON->5rwTf\kEbo^Q5 ~ѩݴclUfޯlr:k7ԍ&QwgYwԯ:a!ݹID?n(N.UKy5'8F:R[ $s& HO�;}t]iN/\ Xa0=rH9C7q6$?,d,u e¨B�Y Gq]Z<8::,h E4^޾xC#r=ⲩϸC ) ZE\G+8 'x@i0[ NC TR ΀jQpC BIWC uD闀:)5sW'% ^ Ҫ॰ (\DPp-$R20{ ^]t.F _xVˁV ´+x<&ffx"zܭvP) ۗJcPs|Y>6!3XICFk7 8*"0! Ia;`UNxlyz1FļȎ Ov^VS1G,bZdS!O㬓}gęie=.#@vⳆՔu%4ʹ}t&)9$b8{Ӑhkj zedl$ aVZe$FɣLaDٳ5HdGkKlkɹ]KEv:HXK cͰhchC(/qi+b0<3I+*x..+BGD\y\߁ 7.,r<)'gI+q)Ge[2u.?K_YVz;4c! '|:N,Ol_&FiaùaD+-bJcraJqHC+Z+״ =R!/cDqWE5602>X{e2g1.r"Xx`�+΢|Qn~x/.>[x6Nhe˺ endstream endobj 18 0 obj << /Type /FontDescriptor /FontName /68f192+NotoSerif-Bold /FontFile2 17 0 R /FontBBox [-212 -250 1306 1058] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 19 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 20 0 obj [259 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 767 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 652 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 526 1000 570 1000 1000 1000 352 1000 1000 352 985 666 612 1000 1000 1000 1000 404 666 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj 21 0 obj << /Length1 5452 /Length 3305 /Filter [/FlateDecode] >> stream xX}P[ו?'!I $${! A`C0I"6v6inI'mz<ig';nNtf3N6nmxZ#yO$>F{|w�Jp D]g0Jnb͇S|E4>bUWSgg2?bry9*zKP~jl8~ c|7.3؟MR鿆EAVÿoyPQ]i/G9|Evϟad* @UXT %j"pr(@ m\MJQQ&#G]Иx}ojM|7iXfU*]gGoe.{w@mAMFUHLz_0F?ᷪSJoK:}`0`N9q,^o36fTЉ5?Qj45Z[ (XM*ZXIE>ˣwT}džf.*CQ-f|u6{nT 9cꜦi?Rso1/7WYGϏ}z35# -Ͱj5l1ꉻX#ϑ:h;7f{Zmv6j  /Eoh=|7vdK^ WVC.T8=TV̀k j;]wH;B|Dkk귣gLdo+.&Dd"Bo~߅.,vMOY{NjœWLG4_}>| v<;G:*M[L.cΝhaEb刟H' /S~TQ֖a^O#J7W>kWAkj $i*TK{'1sj-`-*V-8r(W|yW<n\6m8q=5Z*o88k}lRMic&7ˍ:WRQ^'>a0Q8'EH<'cP7l1OY!%^ˊz!ՙ<s7[P/.U +vM=PPF^/œeviXM^9{5d75{GbOG;-g&zc Lu8_-/_8&&JRVn(qL^\~.7`K:Gg]/5uE֚*u|`MB=9CGk_~<SX~qè]ux+|o^*ߜx|ک\ӹ] lWLJIWQr8?>V悘<RF(]= NĄҫލ^Wv]--bQ}+Se]NC~YmAh h#7-$ )vGzUYكP6}ON l;@.W&:s0\w jVSro٭ Vp~S5 V >Q&v'hf7כ|21DH^Yw6G;G)smeu{ZtYD]]x +nKhƱXG3K>{`;u2:[>c-FdPdop/C9o 9pS@?�v@l—)\*% b|pTzVO2[eMW޽U{[뷒ɛk>MkSÀPwo;{yi"c?٘-]T ڝ=:=A9J[%fF9% ~ fq`#,KPU`wfUjĪov[j0֚ʟs~HjC5fZbպD;r,�$8[%ޱVCY!wġĐeo|?̐hjwwc>f:XSP`굴,%u Vx`d:k[A|!Rlrcx]M)Um` Ht|h/!?O*'sͣ%rHd ~yk'^=>Vѿ:2>kuBošX.om7"cE~! gi "Jr\'F=BEk(Wc.1wdrSD#.0 6",23 4ӏe0SO<sV Z{z4&X]^8r).oʱPz$C@()[Pν4 {rG@̅agȴ"C'CQ̯g<0>e~25Gb]3:⥟Ξ^Udn80BdV(.KrxVS )<|WP?4~|(P2I΀Hr$$們$wr @ В$w<4Ԗ\%x$W $+ITzm}<II^�$/i\v U0rmr66}R4slw4أp=l@"ːB76Ӯ p4(wb0>u$Ykb/mu=F8{,,IᏅcX<^Z%XG!HcF!"%fiF 1Q`ZiK/wG~>I0\cl#lfח1Ӆ5̱H4:,ZCMFQ:ƆT2^ %Wb6Y&#"Q!BI H 5B?RMC|!Qj H,#i/sڅ,׸jE(L@1!XC>`J%|<?_sK"||O$΋>&<.<.jP(_boxI3gUiYB$GC-Q^C:Żckzl!dSa;Fi`"sΙG]11$ĘxXF{!|/=AܭvpYk xrfPCzzG:7eCIGVdz1ݑX?Ry sw=;A]dR_' endstream endobj 22 0 obj << /Type /FontDescriptor /FontName /39d1a2+NotoSerif /FontFile2 21 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 23 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 24 0 obj [259 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 250 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 612 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 562 613 492 613 535 1000 538 634 319 1000 584 310 944 645 577 613 1000 471 451 352 634 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj xref 0 25 0000000000 65535 f 0000000015 00000 n 0000000268 00000 n 0000000470 00000 n 0000000527 00000 n 0000000578 00000 n 0000000850 00000 n 0000001359 00000 n 0000001693 00000 n 0000001959 00000 n 0000002128 00000 n 0000002171 00000 n 0000002220 00000 n 0000002273 00000 n 0000002438 00000 n 0000002512 00000 n 0000002661 00000 n 0000002706 00000 n 0000004980 00000 n 0000005199 00000 n 0000006561 00000 n 0000007687 00000 n 0000011082 00000 n 0000011296 00000 n 0000012658 00000 n trailer << /Size 25 /Root 2 0 R /Info 1 0 R >> startxref 13775 %%EOF ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/page-background-image-position.pdf������������������������0000664�0000000�0000000�00000035224�14163570564�0027130�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Document Title) /Creator (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /ModDate (D:20190702001010-06'00') /CreationDate (D:20190702001010-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 11 0 R /Outlines 14 0 R /PageLabels 16 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 842.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 2938 >> stream q q 148.82 0.0 m 446.46 0.0 l 446.46 198.4267 l 148.82 198.4267 l h W n /DeviceRGB cs 0.0 0.0 0.0 scn 0.49607 0.00000 0.00000 0.49607 74.99536 99.99381 cm 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 cm q q /Tr1 gs 1.0 0.0 0.0 scn 2 j 234.346 69.3067 m 130.256 67.5889 214.243 52.6967 209.326 33.9197 c 176.925 27.7559 148.443 70.7397 169.006 97.5687 c 181.477 120.9287 223.114 124.2507 233.552 97.4234 c 237.5842 88.6896 238.1959 78.2174 234.3467 69.3064 c h 223.347 76.5568 m 246.025 101.7678 174.411 115.2278 194.309 85.1991 c 202.9999 79.3606 214.745 82.6372 223.347 76.5568 c h 325.677 78.2498 m 298.962 71.0067 283.226 38.1418 301.138 15.3338 c 291.3912 3.6768 280.565 22.7086 284.425 31.9138 c 277.2638 48.5318 236.734 15.1758 249.44 36.6989 c 273.569 45.2523 268.701 69.8089 266.54 88.1159 c 279.352 91.1432 281.311 56.6269 299.201 72.2729 c 306.7613 77.259 316.848 86.7159 325.677 78.2501 c h 366.355 25.7638 m 339.487 51.1908 333.409 -21.3942 364.0368 1.0278 c 373.2221 4.9482 384.8388 27.1028 366.355 25.7638 c h 391.99 23.3688 m 396.2322 -4.3542 361.606 -23.8792 338.62 -10.2052 c 313.694 -1.7048 321.269 44.4468 349.312 38.7508 c 362.957 25.8008 394.951 48.7638 366.274 53.3178 c 350.836 55.721 350.352 76.6548 368.709 68.4328 c 386.686 63.1983 401.905 41.5838 391.99 23.3688 c h 524.38 -12.9162 m 522.0029 -25.1522 516.5927 -60.1602 502.071 -47.2122 c 507.693 -28.2182 525.386 15.3378 489.647 11.9058 c 469.454 6.7573 476.604 -40.5502 454.995 -31.1402 c 456.1368 -12.3582 482.678 17.4628 450.5364 25.2548 c 418.9834 30.1834 429.1374 -7.0872 415.0744 -21.7892 c 399.9144 -10.9092 416.2507 19.0598 423.6259 33.3368 c 451.0959 42.9819 532.3059 23.9744 524.3759 -12.9142 c h 550.263 -58.9742 m 557.8732 -71.3072 522.689 -127.0432 524.201 -100.3382 c 533.4138 -76.4522 545.812 -21.5762 556.437 -1.4632 c 579.689 5.409 613.937 -4.6258 615.273 -32.7742 c 618.1928 -58.6182 592.729 -88.2712 565.712 -77.6292 c 557.924 -74.5346 551.164 -67.5842 550.263 -58.9752 c h 599.25 -45.8922 m 616.934 -21.8922 568.412 2.0278 557.517 -23.9882 c 546.854 -38.1592 555.5664 -58.5062 571.201 -64.5362 c 586.09 -72.1061 596.705 -59.2289 599.25 -45.8942 c h 651.896 9.6098 m 664.599 -5.4982 647.6511 -88.3892 625.858 -80.8872 c 630.6208 -49.6282 645.323 -21.2442 651.896 9.6098 c h 733.005 -83.5032 m 628.915 -85.2211 712.902 -100.1132 707.985 -118.8902 c 675.584 -125.054 647.102 -82.0702 667.665 -55.2412 c 680.136 -31.8812 721.773 -28.5592 732.211 -55.3865 c 736.2432 -64.1203 736.8549 -74.5925 733.0057 -83.5035 c h 722.006 -76.2531 m 744.684 -51.0421 673.07 -37.5821 692.968 -67.6108 c 701.6589 -73.4493 713.404 -70.1727 722.006 -76.2531 c h f Q Q Q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 192.5425 777.054 Td /F2.0 27 Tf <446f63756d656e74205469746c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 746.406 Td /F3.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 9 0 R /F3.0 13 0 R >> /ExtGState << /Tr1 8 0 R >> >> >> endobj 8 0 obj << /Type /ExtGState /CA 1 /ca 0.25 >> endobj 9 0 obj << /Type /Font /BaseFont /68f192+NotoSerif-Bold /Subtype /TrueType /FontDescriptor 18 0 R /FirstChar 32 /LastChar 255 /Widths 20 0 R /ToUnicode 19 0 R >> endobj 10 0 obj [7 0 R /XYZ 0 758.37 null] endobj 11 0 obj << /Type /Names /Dests 12 0 R >> endobj 12 0 obj << /Names [(__anchor-top) 10 0 R] >> endobj 13 0 obj << /Type /Font /BaseFont /0fddd6+NotoSerif /Subtype /TrueType /FontDescriptor 22 0 R /FirstChar 32 /LastChar 255 /Widths 24 0 R /ToUnicode 23 0 R >> endobj 14 0 obj << /Type /Outlines /Count 1 /First 15 0 R /Last 15 0 R >> endobj 15 0 obj << /Title <feff0044006f00630075006d0065006e00740020005400690074006c0065> /Parent 14 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 16 0 obj << /Nums [0 << /P (1) >>] >> endobj 17 0 obj << /Length1 3744 /Length 2184 /Filter [/FlateDecode] >> stream xV}lS?gqȇB̳ώ?8$8g! (_l??v h-Z@[>P"DcZi4iiCe&MEڴRHB:f{{ �dB$SZރ(}<53=,:!G�%]8gcB9MxK$nTڧn"G3`h6;:|C:ړ1_a @Uw.Fj@E@`v)@VJȠ3賦T+e>C l�+@Ԍzz_㈃<L^U]xL5ojl sWwK7oL].|+Q(kdoPzSV=sbh kE] `$T͒\A*)KbhE* ݲcf*^מdm=RAc 6sB9sUPkr}5zc$5 bMJ5ZI=`$x١'~:ꔿ39 ٯsW }٠ciu; mncQD} lAw<iLFZ֯''xuHo^ΈW/Dh@t_8cWFOpˇܘ=so)$'v5I9yzzyuKxklu76Z:[[O᫭_Vbktv[s{^~oAJI[4Ŭ`(y1A*u [XtKӭ ۃA-6Ƈt}:[kf‹Q_ck3=g.Zݣ_> s4,jZ|շ'[qZ4s$&:BM77Dyg\weo*?mB3=(ϭrTWI LRb*SeN>.|r콓aB]wsVn<^]KP&jn.e%!z:H.Yj|j*hXt֘0Z0[hȌlПԻ .=[F_5<ON->5rwTf\kEbo^Q5 ~ѩݴclUfޯlr:k7ԍ&QwgYwԯ:a!ݹID?n(N.UKy5'8F:R[ $s& HO�;}t]iN/\ Xa0=rH9C7q6$?,d,u e¨B�Y Gq]Z<8::,h E4^޾xC#r=ⲩϸC ) ZE\G+8 'x@i0[ NC TR ΀jQpC BIWC uD闀:)5sW'% ^ Ҫ॰ (\DPp-$R20{ ^]t.F _xVˁV ´+x<&ffx"zܭvP) ۗJcPs|Y>6!3XICFk7 8*"0! Ia;`UNxlyz1FļȎ Ov^VS1G,bZdS!O㬓}gęie=.#@vⳆՔu%4ʹ}t&)9$b8{Ӑhkj zedl$ aVZe$FɣLaDٳ5HdGkKlkɹ]KEv:HXK cͰhchC(/qi+b0<3I+*x..+BGD\y\߁ 7.,r<)'gI+q)Ge[2u.?K_YVz;4c! '|:N,Ol_&FiaùaD+-bJcraJqHC+Z+״ =R!/cDqWE5602>X{e2g1.r"Xx`�+΢|Qn~x/.>[x6Nhe˺ endstream endobj 18 0 obj << /Type /FontDescriptor /FontName /68f192+NotoSerif-Bold /FontFile2 17 0 R /FontBBox [-212 -250 1306 1058] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 19 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 20 0 obj [259 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 767 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 652 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 526 1000 570 1000 1000 1000 352 1000 1000 352 985 666 612 1000 1000 1000 1000 404 666 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj 21 0 obj << /Length1 2888 /Length 1660 /Filter [/FlateDecode] >> stream xU[lG3v'%8�xp^?k놔 RmiA} JTA_TAE EB*qzw 5{f3w� pJJsVk%"gXr,=}j;/HR Kty_sJ)@%)~qY*κ^ip$i!7=޴soC;Ƹ"ۉ3!�K9Ejab C/@ v|TwaGmNuJYy>oJR=\WCѶݻʗv\{^s<b_@w1^א﷬+YVڰʅ~)-4<q򹆀EtʱO;XLVש<~zf"D=]V-]Kܝo}q/@jgcSej'j[^m _PWY0<*P kX*TVL�|t ŵN+ټ&tlzhg fU ԺaOp1! j{`uO}Gz#n Bƺ綸WVMņw2Xrt=!j*nlW9:=~c=ktiF ]`Tu2˶diL01*,EO[6@ Oc+\ZJ_e->Ե s75W7ުt(&%߷(>e-)nzv=;p-I <N'FXs- xx~~#j$짗aq7 Ne[7_t߼?+Cp JSy67.Ň[s[D] By O)dunh[n2(!�yU̓M 8Mr'wgo1 7Nu-b95qv8n #P MEp9&΃7q-PF&nĭP>�D3@'9fPIx!,'x锯"XFW <tm0Lx18M/~y\Kas@䎙}e⥰wx)l7v1-낷+tj,) =JXړIarF֞#"t i 8x^jZnUOV({$^a\`_UaHQG�ClFr,4,Y$@SUKK(1-`C1꼦.!�n,g%!Y$TEhB6!6!Ý1$~e!D"+ FFȨAtM)I'љ2%aуA4؇o0;L",fYN8SI+)钐U Enj102&LFfv"14q&E'c. Lt/"&2OXbX )OڃBTKE5U""Ø OxbdSuFFc̣'"ˣrgˢw̡DXV25AB{Z cc4SׄKa)b1r҈CEI8/o=sk=JLj1O2"r*f߯4ëԃQ=H/&^taa{go;G$iOY=Z\Ȟ/O5]o#+dߟ:= endstream endobj 22 0 obj << /Type /FontDescriptor /FontName /0fddd6+NotoSerif /FontFile2 21 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 23 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 24 0 obj [1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 492 1000 535 1000 1000 1000 1000 1000 1000 1000 1000 645 577 1000 1000 1000 1000 352 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj xref 0 25 0000000000 65535 f 0000000015 00000 n 0000000268 00000 n 0000000470 00000 n 0000000527 00000 n 0000000578 00000 n 0000000850 00000 n 0000003840 00000 n 0000004177 00000 n 0000004230 00000 n 0000004399 00000 n 0000004442 00000 n 0000004491 00000 n 0000004544 00000 n 0000004709 00000 n 0000004783 00000 n 0000004932 00000 n 0000004977 00000 n 0000007251 00000 n 0000007470 00000 n 0000008832 00000 n 0000009958 00000 n 0000011708 00000 n 0000011922 00000 n 0000013284 00000 n trailer << /Size 25 /Root 2 0 R /Info 1 0 R >> startxref 14417 %%EOF ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/page-background-image-recto-only.pdf����������������������0000664�0000000�0000000�00000043645�14163570564�0027365�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Document Title) /Creator (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /ModDate (D:20190703010835-06'00') /CreationDate (D:20190703010835-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 14 0 R /Outlines 20 0 R /PageLabels 22 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 842.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 4 /Kids [7 0 R 12 0 R 17 0 R 19 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 220 >> stream q q 595.28 0.0 0.0 838.1702 0.0 1.8599 cm /I1 Do Q /DeviceRGB cs 0.6 0.6 0.6 scn /DeviceRGB CS 0.6 0.6 0.6 SCN BT 350.129 361.6965 Td /F1.0 27 Tf <446f63756d656e74205469746c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /XObject << /I1 8 0 R >> /Font << /F1.0 10 0 R >> >> >> endobj 8 0 obj << /Type /XObject /Subtype /Image /Height 842 /Width 598 /BitsPerComponent 8 /ColorSpace /DeviceRGB /SMask 9 0 R /Length 6083 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 3 /BitsPerComponent 8 /Columns 598 >>] >> stream xrU@Q =�~l7 eP(IYJk 9P˗/W�k��|@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�D}W�?~駓{yA$ezd?ae^'B^Idxli+# xVFw@?ɾƝw@l,Q=$[9 :D ` s' xVNxʾ|2Cu~zF-]6ϙ<_]C?m+s᫿<p|,}~u p. 3Îgo#~{'sߵ}13~k++3fO?ۚqmgSY\~*fw ̮{ߟn>9fM;?YYʶ>9|r7-9[o޼ysD_wss;*f?w=AyvVcVf''0AH3K?e۷m_ٺY_e`xurԌ&;q75`}~kgs5ٶ/n5f÷<thqwR4}?ff2M~gخ]9O;Ntp^qָÇgH4k88ۢ>{`l3^ܮSoyY_~eҵ^n~}ؐ@ oXmswuOgn3ho_|gY?3ۓ5aAϬє٣e;jwTx5㾉珶ͽUs~>Zt-xO>6sX|9lEmd93}x!M438Uyr߬6*ڟl6jfxGf04;ǝ[Gnsd^!7(6r^tn6\J}+>Mr<_ߝ4 gL6wrPR qf(6>n^Yl}_TXpq]L^M*s}\2p'0?Rf&WNۮQO3_jKeCFW+İ?\9:<r$ 4ېh~t$=rceAۣ~;xd%3YrvlJ3l$d+T|x@rg}r?9$:ݜx7ln>Bpśwvtd% -'WW^|tfr#+\n=g 6va}+.ӷ599ѹ0-ww-f~ u; p-~Ȕ084`+ۏY<$pqMLv,e'B'NN},2F mV:߿uūD'o>k|{aNv>+gzvZ2$'+l5l{\[xqvj<?XZ b,xh۴ӵ_y5: Y沓뛹أEO"V۷\9t<~wup=~r&7S?|M}GzpW>%@!wLiwYֿlŭ3б~ҹs~\ t-ē;X<,h{meU_#z'"7s}:<ׄJ p')`1w~ۓ>;㿓oV)6s= . \CL3S{k޾}s aM gv'Q 2<siEg?}t̷/0[~8΂>fg=OAK<siOmo޼9͗ ;|}3ׇO$ɝ$ē~GQ]&岙,N |A%_]{߃G8&p5>|<E~O@lO7iǏZgyE7{c3*+͛7/̕G <z6Y?:?q|oC)7[/]Zgy"O}1 VGݻwIߏNZ@lp;&~GQ 7yݬ &;{o XIL.G'y,8 ֘oo&˳Vj^;WIԣMofk $8zuλxΝc;KW8+w~{n w9ɡ_j8r; p>W^!7wg헳\ܷvgW6srtC,^|Cbx_qm„s}k2߾}{r5.N޹Eœ|߈vD<si'~M'wrrv)NN6p4 =);sԤ3!>|KIKW>}گi³͔rӶsg_~(HrzQ7a|3r3ٴ@Ά|m. h i~\sW|smY@Ρd~kZ{r3d<v{81X$6K?ymf53S grdc:zVD9؝gMw0ju"q@d_YY?'3oS3Gճtd&]l$8(d?ã/zg<$g&p؆+ܶ2>Y#ΫO+&'KUH p_'+.6Rou ޾dVf>ٻCNBLggqS<[7Fg6/׮zk_ϳ^tG}7WͶ&=0͟ns޾f{iԶ+:/q/gvc=$/@T�xf@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q.J endstream endobj 9 0 obj << /Type /XObject /Subtype /Image /Height 842 /Width 598 /BitsPerComponent 8 /ColorSpace /DeviceGray /Decode [0 1] /Length 2153 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 1 /BitsPerComponent 8 /Columns 598 >>] >> stream x 0 �d%z4Ak:~�7YYYYYYYYYYYYYYYYYYYYYYYYY=�n$+>dE@VdE@VdE@VdE93.dZY[08Y+;YYYYYYp%`ZY+;YYk" +" +" +VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@VdE@V>  endstream endobj 10 0 obj << /Type /Font /BaseFont /b1b554+NotoSerif /Subtype /TrueType /FontDescriptor 24 0 R /FirstChar 32 /LastChar 255 /Widths 26 0 R /ToUnicode 25 0 R >> endobj 11 0 obj << /Length 155 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 12 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 11 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 10 0 R >> >> >> endobj 13 0 obj [12 0 R /XYZ 0 841.89 null] endobj 14 0 obj << /Type /Names /Dests 15 0 R >> endobj 15 0 obj << /Names [(__anchor-top) 13 0 R] >> endobj 16 0 obj << /Length 215 >> stream q q 595.28 0.0 0.0 838.1702 0.0 1.8599 cm /I2 Do Q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf <6d6f726520636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 17 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 16 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /XObject << /I2 8 0 R >> /Font << /F1.0 10 0 R >> >> >> endobj 18 0 obj << /Length 155 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf <74686520656e64> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 19 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 18 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 10 0 R >> >> >> endobj 20 0 obj << /Type /Outlines /Count 1 /First 21 0 R /Last 21 0 R >> endobj 21 0 obj << /Title <feff0044006f00630075006d0065006e00740020005400690074006c0065> /Parent 20 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 22 0 obj << /Nums [0 << /P (i) >> 1 << /P (1) >> 2 << /P (2) >> 3 << /P (3) >>] >> endobj 23 0 obj << /Length1 4228 /Length 2478 /Filter [/FlateDecode] >> stream xWkp>Je㧌m䵅ml,Y6Ȗ_< 2dI i!Sd4:aRva& 0ҐLJdQfJxt(ɏJ`ݫ{;> �4`B8Ά�ON|f} Dž쏳Tz=2(߫ʋž,&~Qp{ߢ<#aB}<Ur?*\LY�(C$YIKG5hudJAjDuJ #lZmԚ%Za֑|"(FO7~DoKJy{e u{w8=NM242…7Q@V|S,Q[|v�UZm!f4 * 5<kJcec/`)`3khnVq:3ʚ Nɧd"ql4$[;baJ6U<6QYG j=(+ηuPMc ]]OlɭllXSs/iv,]иm39;_Y+en.Z X(}6OR];Qؖ~%œ85?}|{SсY CYL&j(-R&g>}otV,6W埖oO;N6[ԎW2_"OSRV0 I4M%/\)nP%VY.^PU־2̓CKIe۾&~m(^l)SWw.=*Ӫi&9qy yDIǯR\2Iь\~uT\gT'[m߲N\lF^[x(%zT%2ňX 4P)゙ʦR{BLIP*|nAq]yAAy]:._.^:q>x;YϪE&]Vδyt&#h:*u4%ޮ/I咮e791s]dicl|$ƯmuE2夣TS`2od|+(kin*J;,-NI/S2lU-n>idϊq1ΥψM3&}{7ZͶ)N?,ߒ{}ˑvB+T)k}w!}]玁+Vȭ$n&CȊ\>>km Dlt,Ϩ)�PKb\hUHoW?"Fov|OP^.-K 7Z~k)з{DI|2U+s;o)(fKaB;WqC=U*KrĿ7lLWoVge*zngվbA7"b{8yS,f9GX}Gk4$c r]u|S 9eǎv)æώdԂ)tҶB5YI$A"Ǵ2~ Z6d·vPE#io2U-,cON3pKPF骒~ ~>{O\^re$1fSYʂ)%[w0AP*ʪXJ/>l=q^4{nhMa҇t#Wp3ԯ\Ǥ;ۜB268RlMF(׍(8-Qp iSȆs B +7 )RpBUC q(rg|KJVƤVt($W<<tV,K\9Rp l/)x& 41sk16ςVf9`gCSlXtɰrfSEͭ \ϭ":wv "` Bh~~9^q?QZAu v̬,u]u?(FEnMTQ"G`b aybP!t9 x|AgR iNi/0n.[G|bkM\ N#]9FXØڸD(+U"EÂ;8q">((Z$@v &y O"+~>Ow#>Oreݨ+ z}(V&cJ4Y0<73F!8.ܼGƐr)Fq w#.ZxS^7ƨh޽{7P’UG1O|LnG-~;X c 2 a.us!a@3o~3br)<䚔xt=%syR (bc'Wuv u$/WHʣ0rjDVSG.!!6؇/ڶ֯ifXgdK)?e@8p endstream endobj 24 0 obj << /Type /FontDescriptor /FontName /b1b554+NotoSerif /FontFile2 23 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 25 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 26 0 obj [259 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 727 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 612 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 492 613 535 1000 1000 634 319 1000 1000 310 944 645 577 1000 1000 471 1000 352 634 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj xref 0 27 0000000000 65535 f 0000000015 00000 n 0000000268 00000 n 0000000470 00000 n 0000000548 00000 n 0000000599 00000 n 0000000871 00000 n 0000001142 00000 n 0000001464 00000 n 0000007810 00000 n 0000010228 00000 n 0000010393 00000 n 0000010600 00000 n 0000010899 00000 n 0000010943 00000 n 0000010992 00000 n 0000011045 00000 n 0000011312 00000 n 0000011636 00000 n 0000011843 00000 n 0000012142 00000 n 0000012216 00000 n 0000012365 00000 n 0000012455 00000 n 0000015023 00000 n 0000015237 00000 n 0000016599 00000 n trailer << /Size 27 /Root 2 0 R /Info 1 0 R >> startxref 17722 %%EOF �������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/page-background-image-svg-contain.pdf���������������������0000664�0000000�0000000�00000033646�14163570564�0027522�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Document Title) /Creator (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /ModDate (D:20190630142851-06'00') /CreationDate (D:20190630142851-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 10 0 R /Outlines 13 0 R /PageLabels 15 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 596.28] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 841.89 595.28] /CropBox [0 0 841.89 595.28] /BleedBox [0 0 841.89 595.28] /TrimBox [0 0 841.89 595.28] /ArtBox [0 0 841.89 595.28] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 663 >> stream q q 0.0 -246.61 m 841.89 -246.61 l 841.89 595.28 l 0.0 595.28 l h W n /DeviceRGB cs 0.0 0.0 0.0 scn 4.20945 0.00000 0.00000 4.20945 0.00000 -1910.52140 cm 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 cm q 1.0 0.0 0.0 scn 0.0 395.28 200.0 200.0 re f Q Q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 315.8475 530.444 Td /F2.0 27 Tf <446f63756d656e74205469746c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 499.796 Td /F3.0 10.5 Tf [<546869732070616765206861732061206261636b> 20.0195 <67726f756e6420696d61676520746861742069732072> 20.0195 <6174686572206c6f75642e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 841.89 595.28] /CropBox [0 0 841.89 595.28] /BleedBox [0 0 841.89 595.28] /TrimBox [0 0 841.89 595.28] /ArtBox [0 0 841.89 595.28] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 8 0 R /F3.0 12 0 R >> >> >> endobj 8 0 obj << /Type /Font /BaseFont /68f192+NotoSerif-Bold /Subtype /TrueType /FontDescriptor 17 0 R /FirstChar 32 /LastChar 255 /Widths 19 0 R /ToUnicode 18 0 R >> endobj 9 0 obj [7 0 R /XYZ 0 511.76 null] endobj 10 0 obj << /Type /Names /Dests 11 0 R >> endobj 11 0 obj << /Names [(__anchor-top) 9 0 R] >> endobj 12 0 obj << /Type /Font /BaseFont /39d1a2+NotoSerif /Subtype /TrueType /FontDescriptor 21 0 R /FirstChar 32 /LastChar 255 /Widths 23 0 R /ToUnicode 22 0 R >> endobj 13 0 obj << /Type /Outlines /Count 1 /First 14 0 R /Last 14 0 R >> endobj 14 0 obj << /Title <feff0044006f00630075006d0065006e00740020005400690074006c0065> /Parent 13 0 R /Count 0 /Dest [7 0 R /XYZ 0 595.28 null] >> endobj 15 0 obj << /Nums [0 << /P (1) >>] >> endobj 16 0 obj << /Length1 3744 /Length 2184 /Filter [/FlateDecode] >> stream xV}lS?gqȇB̳ώ?8$8g! (_l??v h-Z@[>P"DcZi4iiCe&MEڴRHB:f{{ �dB$SZރ(}<53=,:!G�%]8gcB9MxK$nTڧn"G3`h6;:|C:ړ1_a @Uw.Fj@E@`v)@VJȠ3賦T+e>C l�+@Ԍzz_㈃<L^U]xL5ojl sWwK7oL].|+Q(kdoPzSV=sbh kE] `$T͒\A*)KbhE* ݲcf*^מdm=RAc 6sB9sUPkr}5zc$5 bMJ5ZI=`$x١'~:ꔿ39 ٯsW }٠ciu; mncQD} lAw<iLFZ֯''xuHo^ΈW/Dh@t_8cWFOpˇܘ=so)$'v5I9yzzyuKxklu76Z:[[O᫭_Vbktv[s{^~oAJI[4Ŭ`(y1A*u [XtKӭ ۃA-6Ƈt}:[kf‹Q_ck3=g.Zݣ_> s4,jZ|շ'[qZ4s$&:BM77Dyg\weo*?mB3=(ϭrTWI LRb*SeN>.|r콓aB]wsVn<^]KP&jn.e%!z:H.Yj|j*hXt֘0Z0[hȌlПԻ .=[F_5<ON->5rwTf\kEbo^Q5 ~ѩݴclUfޯlr:k7ԍ&QwgYwԯ:a!ݹID?n(N.UKy5'8F:R[ $s& HO�;}t]iN/\ Xa0=rH9C7q6$?,d,u e¨B�Y Gq]Z<8::,h E4^޾xC#r=ⲩϸC ) ZE\G+8 'x@i0[ NC TR ΀jQpC BIWC uD闀:)5sW'% ^ Ҫ॰ (\DPp-$R20{ ^]t.F _xVˁV ´+x<&ffx"zܭvP) ۗJcPs|Y>6!3XICFk7 8*"0! Ia;`UNxlyz1FļȎ Ov^VS1G,bZdS!O㬓}gęie=.#@vⳆՔu%4ʹ}t&)9$b8{Ӑhkj zedl$ aVZe$FɣLaDٳ5HdGkKlkɹ]KEv:HXK cͰhchC(/qi+b0<3I+*x..+BGD\y\߁ 7.,r<)'gI+q)Ge[2u.?K_YVz;4c! '|:N,Ol_&FiaùaD+-bJcraJqHC+Z+״ =R!/cDqWE5602>X{e2g1.r"Xx`�+΢|Qn~x/.>[x6Nhe˺ endstream endobj 17 0 obj << /Type /FontDescriptor /FontName /68f192+NotoSerif-Bold /FontFile2 16 0 R /FontBBox [-212 -250 1306 1058] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 18 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 19 0 obj [259 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 767 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 652 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 526 1000 570 1000 1000 1000 352 1000 1000 352 985 666 612 1000 1000 1000 1000 404 666 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj 20 0 obj << /Length1 5452 /Length 3305 /Filter [/FlateDecode] >> stream xX}P[ו?'!I $${! A`C0I"6v6inI'mz<ig';nNtf3N6nmxZ#yO$>F{|w�Jp D]g0Jnb͇S|E4>bUWSgg2?bry9*zKP~jl8~ c|7.3؟MR鿆EAVÿoyPQ]i/G9|Evϟad* @UXT %j"pr(@ m\MJQQ&#G]Иx}ojM|7iXfU*]gGoe.{w@mAMFUHLz_0F?ᷪSJoK:}`0`N9q,^o36fTЉ5?Qj45Z[ (XM*ZXIE>ˣwT}džf.*CQ-f|u6{nT 9cꜦi?Rso1/7WYGϏ}z35# -Ͱj5l1ꉻX#ϑ:h;7f{Zmv6j  /Eoh=|7vdK^ WVC.T8=TV̀k j;]wH;B|Dkk귣gLdo+.&Dd"Bo~߅.,vMOY{NjœWLG4_}>| v<;G:*M[L.cΝhaEb刟H' /S~TQ֖a^O#J7W>kWAkj $i*TK{'1sj-`-*V-8r(W|yW<n\6m8q=5Z*o88k}lRMic&7ˍ:WRQ^'>a0Q8'EH<'cP7l1OY!%^ˊz!ՙ<s7[P/.U +vM=PPF^/œeviXM^9{5d75{GbOG;-g&zc Lu8_-/_8&&JRVn(qL^\~.7`K:Gg]/5uE֚*u|`MB=9CGk_~<SX~qè]ux+|o^*ߜx|ک\ӹ] lWLJIWQr8?>V悘<RF(]= NĄҫލ^Wv]--bQ}+Se]NC~YmAh h#7-$ )vGzUYكP6}ON l;@.W&:s0\w jVSro٭ Vp~S5 V >Q&v'hf7כ|21DH^Yw6G;G)smeu{ZtYD]]x +nKhƱXG3K>{`;u2:[>c-FdPdop/C9o 9pS@?�v@l—)\*% b|pTzVO2[eMW޽U{[뷒ɛk>MkSÀPwo;{yi"c?٘-]T ڝ=:=A9J[%fF9% ~ fq`#,KPU`wfUjĪov[j0֚ʟs~HjC5fZbպD;r,�$8[%ޱVCY!wġĐeo|?̐hjwwc>f:XSP`굴,%u Vx`d:k[A|!Rlrcx]M)Um` Ht|h/!?O*'sͣ%rHd ~yk'^=>Vѿ:2>kuBošX.om7"cE~! gi "Jr\'F=BEk(Wc.1wdrSD#.0 6",23 4ӏe0SO<sV Z{z4&X]^8r).oʱPz$C@()[Pν4 {rG@̅agȴ"C'CQ̯g<0>e~25Gb]3:⥟Ξ^Udn80BdV(.KrxVS )<|WP?4~|(P2I΀Hr$$們$wr @ В$w<4Ԗ\%x$W $+ITzm}<II^�$/i\v U0rmr66}R4slw4أp=l@"ːB76Ӯ p4(wb0>u$Ykb/mu=F8{,,IᏅcX<^Z%XG!HcF!"%fiF 1Q`ZiK/wG~>I0\cl#lfח1Ӆ5̱H4:,ZCMFQ:ƆT2^ %Wb6Y&#"Q!BI H 5B?RMC|!Qj H,#i/sڅ,׸jE(L@1!XC>`J%|<?_sK"||O$΋>&<.<.jP(_boxI3gUiYB$GC-Q^C:Żckzl!dSa;Fi`"sΙG]11$ĘxXF{!|/=AܭvpYk xrfPCzzG:7eCIGVdz1ݑX?Ry sw=;A]dR_' endstream endobj 21 0 obj << /Type /FontDescriptor /FontName /39d1a2+NotoSerif /FontFile2 20 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 22 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 23 0 obj [259 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 250 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 612 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 562 613 492 613 535 1000 538 634 319 1000 584 310 944 645 577 613 1000 471 451 352 634 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj xref 0 24 0000000000 65535 f 0000000015 00000 n 0000000268 00000 n 0000000470 00000 n 0000000527 00000 n 0000000578 00000 n 0000000850 00000 n 0000001564 00000 n 0000001873 00000 n 0000002042 00000 n 0000002084 00000 n 0000002133 00000 n 0000002185 00000 n 0000002350 00000 n 0000002424 00000 n 0000002573 00000 n 0000002618 00000 n 0000004892 00000 n 0000005111 00000 n 0000006473 00000 n 0000007599 00000 n 0000010994 00000 n 0000011208 00000 n 0000012570 00000 n trailer << /Size 24 /Root 2 0 R /Info 1 0 R >> startxref 13687 %%EOF ������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/page-background-image-svg-cover.pdf�����������������������0000664�0000000�0000000�00000033661�14163570564�0027202�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Document Title) /Creator (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /ModDate (D:20190707021504-06'00') /CreationDate (D:20190707021504-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 10 0 R /Outlines 13 0 R /PageLabels 15 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 842.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 674 >> stream q q -123.305 0.0 m 718.585 0.0 l 718.585 841.89 l -123.305 841.89 l h W n /DeviceRGB cs 0.0 0.0 0.0 scn 4.20945 0.00000 0.00000 4.20945 395.74123 -2702.00386 cm 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 cm q 1.0 0.0 0.0 scn -123.305 641.89 200.0 200.0 re f Q Q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 192.5425 777.054 Td /F2.0 27 Tf <446f63756d656e74205469746c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 746.406 Td /F3.0 10.5 Tf [<546869732070616765206861732061206261636b> 20.0195 <67726f756e6420696d61676520746861742069732072> 20.0195 <6174686572206c6f75642e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 8 0 R /F3.0 12 0 R >> >> >> endobj 8 0 obj << /Type /Font /BaseFont /68f192+NotoSerif-Bold /Subtype /TrueType /FontDescriptor 17 0 R /FirstChar 32 /LastChar 255 /Widths 19 0 R /ToUnicode 18 0 R >> endobj 9 0 obj [7 0 R /XYZ 0 758.37 null] endobj 10 0 obj << /Type /Names /Dests 11 0 R >> endobj 11 0 obj << /Names [(__anchor-top) 9 0 R] >> endobj 12 0 obj << /Type /Font /BaseFont /39d1a2+NotoSerif /Subtype /TrueType /FontDescriptor 21 0 R /FirstChar 32 /LastChar 255 /Widths 23 0 R /ToUnicode 22 0 R >> endobj 13 0 obj << /Type /Outlines /Count 1 /First 14 0 R /Last 14 0 R >> endobj 14 0 obj << /Title <feff0044006f00630075006d0065006e00740020005400690074006c0065> /Parent 13 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 15 0 obj << /Nums [0 << /P (1) >>] >> endobj 16 0 obj << /Length1 3744 /Length 2184 /Filter [/FlateDecode] >> stream xV}lS?gqȇB̳ώ?8$8g! (_l??v h-Z@[>P"DcZi4iiCe&MEڴRHB:f{{ �dB$SZރ(}<53=,:!G�%]8gcB9MxK$nTڧn"G3`h6;:|C:ړ1_a @Uw.Fj@E@`v)@VJȠ3賦T+e>C l�+@Ԍzz_㈃<L^U]xL5ojl sWwK7oL].|+Q(kdoPzSV=sbh kE] `$T͒\A*)KbhE* ݲcf*^מdm=RAc 6sB9sUPkr}5zc$5 bMJ5ZI=`$x١'~:ꔿ39 ٯsW }٠ciu; mncQD} lAw<iLFZ֯''xuHo^ΈW/Dh@t_8cWFOpˇܘ=so)$'v5I9yzzyuKxklu76Z:[[O᫭_Vbktv[s{^~oAJI[4Ŭ`(y1A*u [XtKӭ ۃA-6Ƈt}:[kf‹Q_ck3=g.Zݣ_> s4,jZ|շ'[qZ4s$&:BM77Dyg\weo*?mB3=(ϭrTWI LRb*SeN>.|r콓aB]wsVn<^]KP&jn.e%!z:H.Yj|j*hXt֘0Z0[hȌlПԻ .=[F_5<ON->5rwTf\kEbo^Q5 ~ѩݴclUfޯlr:k7ԍ&QwgYwԯ:a!ݹID?n(N.UKy5'8F:R[ $s& HO�;}t]iN/\ Xa0=rH9C7q6$?,d,u e¨B�Y Gq]Z<8::,h E4^޾xC#r=ⲩϸC ) ZE\G+8 'x@i0[ NC TR ΀jQpC BIWC uD闀:)5sW'% ^ Ҫ॰ (\DPp-$R20{ ^]t.F _xVˁV ´+x<&ffx"zܭvP) ۗJcPs|Y>6!3XICFk7 8*"0! Ia;`UNxlyz1FļȎ Ov^VS1G,bZdS!O㬓}gęie=.#@vⳆՔu%4ʹ}t&)9$b8{Ӑhkj zedl$ aVZe$FɣLaDٳ5HdGkKlkɹ]KEv:HXK cͰhchC(/qi+b0<3I+*x..+BGD\y\߁ 7.,r<)'gI+q)Ge[2u.?K_YVz;4c! '|:N,Ol_&FiaùaD+-bJcraJqHC+Z+״ =R!/cDqWE5602>X{e2g1.r"Xx`�+΢|Qn~x/.>[x6Nhe˺ endstream endobj 17 0 obj << /Type /FontDescriptor /FontName /68f192+NotoSerif-Bold /FontFile2 16 0 R /FontBBox [-212 -250 1306 1058] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 18 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 19 0 obj [259 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 767 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 652 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 526 1000 570 1000 1000 1000 352 1000 1000 352 985 666 612 1000 1000 1000 1000 404 666 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj 20 0 obj << /Length1 5452 /Length 3305 /Filter [/FlateDecode] >> stream xX}P[ו?'!I $${! A`C0I"6v6inI'mz<ig';nNtf3N6nmxZ#yO$>F{|w�Jp D]g0Jnb͇S|E4>bUWSgg2?bry9*zKP~jl8~ c|7.3؟MR鿆EAVÿoyPQ]i/G9|Evϟad* @UXT %j"pr(@ m\MJQQ&#G]Иx}ojM|7iXfU*]gGoe.{w@mAMFUHLz_0F?ᷪSJoK:}`0`N9q,^o36fTЉ5?Qj45Z[ (XM*ZXIE>ˣwT}džf.*CQ-f|u6{nT 9cꜦi?Rso1/7WYGϏ}z35# -Ͱj5l1ꉻX#ϑ:h;7f{Zmv6j  /Eoh=|7vdK^ WVC.T8=TV̀k j;]wH;B|Dkk귣gLdo+.&Dd"Bo~߅.,vMOY{NjœWLG4_}>| v<;G:*M[L.cΝhaEb刟H' /S~TQ֖a^O#J7W>kWAkj $i*TK{'1sj-`-*V-8r(W|yW<n\6m8q=5Z*o88k}lRMic&7ˍ:WRQ^'>a0Q8'EH<'cP7l1OY!%^ˊz!ՙ<s7[P/.U +vM=PPF^/œeviXM^9{5d75{GbOG;-g&zc Lu8_-/_8&&JRVn(qL^\~.7`K:Gg]/5uE֚*u|`MB=9CGk_~<SX~qè]ux+|o^*ߜx|ک\ӹ] lWLJIWQr8?>V悘<RF(]= NĄҫލ^Wv]--bQ}+Se]NC~YmAh h#7-$ )vGzUYكP6}ON l;@.W&:s0\w jVSro٭ Vp~S5 V >Q&v'hf7כ|21DH^Yw6G;G)smeu{ZtYD]]x +nKhƱXG3K>{`;u2:[>c-FdPdop/C9o 9pS@?�v@l—)\*% b|pTzVO2[eMW޽U{[뷒ɛk>MkSÀPwo;{yi"c?٘-]T ڝ=:=A9J[%fF9% ~ fq`#,KPU`wfUjĪov[j0֚ʟs~HjC5fZbպD;r,�$8[%ޱVCY!wġĐeo|?̐hjwwc>f:XSP`굴,%u Vx`d:k[A|!Rlrcx]M)Um` Ht|h/!?O*'sͣ%rHd ~yk'^=>Vѿ:2>kuBošX.om7"cE~! gi "Jr\'F=BEk(Wc.1wdrSD#.0 6",23 4ӏe0SO<sV Z{z4&X]^8r).oʱPz$C@()[Pν4 {rG@̅agȴ"C'CQ̯g<0>e~25Gb]3:⥟Ξ^Udn80BdV(.KrxVS )<|WP?4~|(P2I΀Hr$$們$wr @ В$w<4Ԗ\%x$W $+ITzm}<II^�$/i\v U0rmr66}R4slw4أp=l@"ːB76Ӯ p4(wb0>u$Ykb/mu=F8{,,IᏅcX<^Z%XG!HcF!"%fiF 1Q`ZiK/wG~>I0\cl#lfח1Ӆ5̱H4:,ZCMFQ:ƆT2^ %Wb6Y&#"Q!BI H 5B?RMC|!Qj H,#i/sڅ,׸jE(L@1!XC>`J%|<?_sK"||O$΋>&<.<.jP(_boxI3gUiYB$GC-Q^C:Żckzl!dSa;Fi`"sΙG]11$ĘxXF{!|/=AܭvpYk xrfPCzzG:7eCIGVdz1ݑX?Ry sw=;A]dR_' endstream endobj 21 0 obj << /Type /FontDescriptor /FontName /39d1a2+NotoSerif /FontFile2 20 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 22 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 23 0 obj [259 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 250 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 612 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 562 613 492 613 535 1000 538 634 319 1000 584 310 944 645 577 613 1000 471 451 352 634 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj xref 0 24 0000000000 65535 f 0000000015 00000 n 0000000268 00000 n 0000000470 00000 n 0000000527 00000 n 0000000578 00000 n 0000000850 00000 n 0000001575 00000 n 0000001884 00000 n 0000002053 00000 n 0000002095 00000 n 0000002144 00000 n 0000002196 00000 n 0000002361 00000 n 0000002435 00000 n 0000002584 00000 n 0000002629 00000 n 0000004903 00000 n 0000005122 00000 n 0000006484 00000 n 0000007610 00000 n 0000011005 00000 n 0000011219 00000 n 0000012581 00000 n trailer << /Size 24 /Root 2 0 R /Info 1 0 R >> startxref 13698 %%EOF �������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/page-background-image-svg-prescaled.pdf�������������������0000664�0000000�0000000�00000116102�14163570564�0030016�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Document Title) /Creator (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /ModDate (D:20190702043804-06'00') /CreationDate (D:20190702043804-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 11 0 R /Outlines 14 0 R /PageLabels 16 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 596.28] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 841.89 595.28] /CropBox [0 0 841.89 595.28] /BleedBox [0 0 841.89 595.28] /TrimBox [0 0 841.89 595.28] /ArtBox [0 0 841.89 595.28] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 26680 >> stream q q 210.4725 255.5455 m 631.4175 255.5455 l 631.4175 339.7345 l 210.4725 339.7345 l h W n /DeviceRGB cs 0.0 0.0 0.0 scn 4.20945 0.00000 0.00000 4.20945 -675.50097 -1090.36089 cm 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 cm q Q q q q 1.0 1.0 1.0 scn 213.4725 339.7345 m 307.4725 339.7345 l 309.1294 339.7345 310.4725 338.3914 310.4725 336.7345 c 310.4725 322.7345 l 310.4725 321.0776 309.1294 319.7345 307.4725 319.7345 c 213.4725 319.7345 l 211.8156 319.7345 210.4725 321.0776 210.4725 322.7345 c 210.4725 336.7345 l 210.4725 338.3914 211.8156 339.7345 213.4725 339.7345 c h Q W n q 0.3333 0.3333 0.3333 scn 2 j 210.4725 339.7345 m 247.4725 339.7345 l 247.4725 319.7345 l 210.4725 319.7345 l h f Q q 0.2667 0.8 0.0667 scn 2 j 247.4725 339.7345 m 310.4725 339.7345 l 310.4725 319.7345 l 247.4725 319.7345 l h f Q Q Q q 1.0 1.0 1.0 scn q q 0.10000 0.00000 0.00000 0.10000 189.42525 305.76105 cm q /Tr1 gs 0.0039 0.0039 0.0039 scn q 2 j 290.4605 266.9705 m 290.4605 249.8905 l 310.8165 249.8905 l 310.8165 242.2098 l 290.4605 242.2098 l 290.4605 209.5538 l 290.4605 204.6482 291.1229 201.4972 292.4478 200.1007 c 293.8085 198.7042 296.5477 198.006 300.6656 198.006 c 310.8166 198.006 l 310.8166 189.7345 l 300.6656 189.7345 l 293.0389 189.7345 287.7753 191.1489 284.8746 193.9777 c 281.9742 196.8423 280.524 202.0343 280.524 209.5537 c 280.524 242.2097 l 273.273 242.2097 l 273.273 249.8904 l 280.524 249.8904 l 280.524 266.9704 l h f Q q 2 j 375.6325 222.2845 m 375.6325 217.4505 l 330.1935 217.4505 l 330.6232 210.6472 332.6642 205.4552 336.3165 201.8745 c 340.0046 198.3296 345.125 196.5571 351.6775 196.5571 c 355.4731 196.5571 359.1434 197.0226 362.6885 197.9536 c 366.2692 198.8846 369.8142 200.2811 373.3235 202.1431 c 373.3235 192.7974 l 369.7786 191.2935 366.1442 190.1476 362.4205 189.3599 c 358.6968 188.5722 354.9191 188.1783 351.0875 188.1783 c 341.4908 188.1783 333.8818 190.9713 328.2605 196.5572 c 322.6746 202.1431 319.8816 209.6985 319.8816 219.2232 c 319.8816 229.0705 322.5313 236.8765 327.8308 242.6412 c 333.1661 248.442 340.3454 251.3424 349.3688 251.3424 c 357.4615 251.3424 363.8531 248.7285 368.5438 243.5006 c 373.2703 238.3085 375.6336 231.2365 375.6336 222.2846 c h 365.7497 225.1849 m 365.6781 230.5918 364.1563 234.9065 361.1843 238.1289 c 358.2481 241.3516 354.3451 242.9629 349.4753 242.9629 c 343.961 242.9629 339.5386 241.4053 336.2083 238.2901 c 332.914 235.1749 331.0162 230.7886 330.5149 225.1311 c h f Q q 2 j 430.5125 248.1185 m 430.5125 238.7728 l 427.7196 240.2051 424.8192 241.2793 421.8113 241.9955 c 418.8034 242.7117 415.6882 243.0698 412.4656 243.0697 c 407.56 243.0697 403.872 242.3177 401.4016 240.8138 c 398.9667 239.3099 397.7493 237.054 397.7493 234.0462 c 397.7493 231.7545 398.6266 229.9463 400.3811 228.6214 c 402.1356 227.3323 405.6626 226.097 410.9621 224.9153 c 414.3459 224.1634 l 421.3639 222.6594 426.3412 220.5289 429.2779 217.7717 c 432.2499 215.0504 433.7359 211.2371 433.7359 206.3317 c 433.7359 200.7458 431.5158 196.3235 427.0757 193.0647 c 422.6714 189.8063 416.6021 188.177 408.8677 188.177 c 405.645 188.177 402.279 188.4993 398.7697 189.1439 c 395.2964 189.7526 391.626 190.6836 387.7587 191.9369 c 387.7587 202.1419 l 391.411 200.2441 395.0097 198.8118 398.5547 197.845 c 402.0996 196.914 405.6086 196.4485 409.0817 196.4485 c 413.7366 196.4485 417.3173 197.2362 419.8237 198.8118 c 422.3302 200.4231 423.5835 202.679 423.5835 205.5794 c 423.5835 208.2649 422.6704 210.3238 420.8442 211.7562 c 419.0539 213.1884 415.0972 214.567 408.9742 215.892 c 405.5367 216.6976 l 399.4136 217.9867 394.9913 219.9561 392.2697 222.6058 c 389.5484 225.2913 388.1877 228.9617 388.1877 233.6168 c 388.1877 239.2743 390.1929 243.6427 394.2033 246.7218 c 398.2137 249.8012 403.907 251.3409 411.2833 251.3409 c 414.9356 251.3409 418.373 251.0724 421.5953 250.5353 c 424.818 249.9981 427.79 249.1925 430.5113 248.1183 c h f Q q 2 j 459.6025 266.9705 m 459.6025 249.8905 l 479.9585 249.8905 l 479.9585 242.2098 l 459.6025 242.2098 l 459.6025 209.5538 l 459.6025 204.6482 460.2649 201.4972 461.5898 200.1007 c 462.9505 198.7042 465.6897 198.006 469.8076 198.006 c 479.9586 198.006 l 479.9586 189.7345 l 469.8076 189.7345 l 462.1809 189.7345 456.9173 191.1489 454.0166 193.9777 c 451.1162 196.8423 449.666 202.0343 449.666 209.5537 c 449.666 242.2097 l 442.415 242.2097 l 442.415 249.8904 l 449.666 249.8904 l 449.666 266.9704 l h f Q q 2 j 531.6725 248.1185 m 531.6725 238.7728 l 528.8796 240.2051 525.9792 241.2793 522.9713 241.9955 c 519.9634 242.7117 516.8482 243.0698 513.6256 243.0697 c 508.72 243.0697 505.032 242.3177 502.5616 240.8138 c 500.1267 239.3099 498.9093 237.054 498.9093 234.0462 c 498.9093 231.7545 499.7866 229.9463 501.5411 228.6214 c 503.2956 227.3323 506.8226 226.097 512.1221 224.9153 c 515.5059 224.1634 l 522.5239 222.6594 527.5012 220.5289 530.4379 217.7717 c 533.4099 215.0504 534.8959 211.2371 534.8959 206.3317 c 534.8959 200.7458 532.6758 196.3235 528.2357 193.0647 c 523.8314 189.8063 517.7621 188.177 510.0277 188.177 c 506.805 188.177 503.439 188.4993 499.9297 189.1439 c 496.4564 189.7526 492.786 190.6836 488.9187 191.9369 c 488.9187 202.1419 l 492.571 200.2441 496.1697 198.8118 499.7147 197.845 c 503.2596 196.914 506.7686 196.4485 510.2417 196.4485 c 514.8966 196.4485 518.4773 197.2362 520.9837 198.8118 c 523.4902 200.4231 524.7435 202.679 524.7435 205.5794 c 524.7435 208.2649 523.8304 210.3238 522.0042 211.7562 c 520.2138 213.1884 516.2571 214.567 510.1342 215.892 c 506.6967 216.6976 l 500.5736 217.9867 496.1513 219.9561 493.4297 222.6058 c 490.7084 225.2913 489.3477 228.9617 489.3477 233.6168 c 489.3477 239.2743 491.3529 243.6427 495.3633 246.7218 c 499.3737 249.8012 505.067 251.3409 512.4433 251.3409 c 516.0956 251.3409 519.533 251.0724 522.7553 250.5353 c 525.978 249.9981 528.95 249.1925 531.6713 248.1183 c h f Q Q Q Q q q 0.10000 0.00000 0.00000 0.10000 189.42525 305.76105 cm q 2 j 290.4605 276.9705 m 290.4605 259.8905 l 310.8165 259.8905 l 310.8165 252.2098 l 290.4605 252.2098 l 290.4605 219.5538 l 290.4605 214.6482 291.1229 211.4972 292.4478 210.1007 c 293.8085 208.7042 296.5477 208.006 300.6656 208.006 c 310.8166 208.006 l 310.8166 199.7345 l 300.6656 199.7345 l 293.0389 199.7345 287.7753 201.1489 284.8746 203.9777 c 281.9742 206.8423 280.524 212.0343 280.524 219.5537 c 280.524 252.2097 l 273.273 252.2097 l 273.273 259.8904 l 280.524 259.8904 l 280.524 276.9704 l h f Q q 2 j 375.6325 232.2845 m 375.6325 227.4505 l 330.1935 227.4505 l 330.6232 220.6472 332.6642 215.4552 336.3165 211.8745 c 340.0046 208.3296 345.125 206.5571 351.6775 206.5571 c 355.4731 206.5571 359.1434 207.0226 362.6885 207.9536 c 366.2692 208.8846 369.8142 210.2811 373.3235 212.1431 c 373.3235 202.7974 l 369.7786 201.2935 366.1442 200.1476 362.4205 199.3599 c 358.6968 198.5722 354.9191 198.1783 351.0875 198.1783 c 341.4908 198.1783 333.8818 200.9713 328.2605 206.5572 c 322.6746 212.1431 319.8816 219.6985 319.8816 229.2232 c 319.8816 239.0705 322.5313 246.8765 327.8308 252.6412 c 333.1661 258.442 340.3454 261.3424 349.3688 261.3424 c 357.4615 261.3424 363.8531 258.7285 368.5438 253.5006 c 373.2703 248.3085 375.6336 241.2365 375.6336 232.2846 c h 365.7497 235.1849 m 365.6781 240.5918 364.1563 244.9065 361.1843 248.1289 c 358.2481 251.3516 354.3451 252.9629 349.4753 252.9629 c 343.961 252.9629 339.5386 251.4053 336.2083 248.29 c 332.914 245.1747 331.0162 240.7884 330.5149 235.131 c h f Q q 2 j 430.5125 258.1185 m 430.5125 248.7728 l 427.7196 250.2051 424.8192 251.2793 421.8113 251.9955 c 418.8034 252.7117 415.6882 253.0698 412.4656 253.0697 c 407.56 253.0697 403.872 252.3177 401.4016 250.8138 c 398.9667 249.3099 397.7493 247.054 397.7493 244.0462 c 397.7493 241.7545 398.6266 239.9463 400.3811 238.6214 c 402.1356 237.3323 405.6626 236.097 410.9621 234.9153 c 414.3459 234.1634 l 421.3639 232.6594 426.3412 230.5289 429.2779 227.7717 c 432.2499 225.0504 433.7359 221.2371 433.7359 216.3317 c 433.7359 210.7458 431.5158 206.3235 427.0757 203.0647 c 422.6714 199.8063 416.6021 198.177 408.8677 198.177 c 405.645 198.177 402.279 198.4993 398.7697 199.1439 c 395.2964 199.7526 391.626 200.6836 387.7587 201.9369 c 387.7587 212.1419 l 391.411 210.2441 395.0097 208.8118 398.5547 207.8449 c 402.0996 206.9139 405.6086 206.4484 409.0817 206.4484 c 413.7366 206.4484 417.3173 207.2362 419.8237 208.8118 c 422.3302 210.4231 423.5835 212.679 423.5835 215.5794 c 423.5835 218.2649 422.6704 220.3238 420.8442 221.7562 c 419.0539 223.1884 415.0972 224.567 408.9742 225.892 c 405.5367 226.6976 l 399.4136 227.9867 394.9913 229.9561 392.2697 232.6058 c 389.5484 235.2913 388.1877 238.9617 388.1877 243.6168 c 388.1877 249.2743 390.1929 253.6427 394.2033 256.7218 c 398.2137 259.8012 403.907 261.3409 411.2833 261.3409 c 414.9356 261.3409 418.373 261.0724 421.5953 260.5353 c 424.818 259.9981 427.79 259.1925 430.5113 258.1183 c h f Q q 2 j 459.6025 276.9705 m 459.6025 259.8905 l 479.9585 259.8905 l 479.9585 252.2098 l 459.6025 252.2098 l 459.6025 219.5538 l 459.6025 214.6482 460.2649 211.4972 461.5898 210.1007 c 462.9505 208.7042 465.6897 208.006 469.8076 208.006 c 479.9586 208.006 l 479.9586 199.7345 l 469.8076 199.7345 l 462.1809 199.7345 456.9173 201.1489 454.0166 203.9777 c 451.1162 206.8423 449.666 212.0343 449.666 219.5537 c 449.666 252.2097 l 442.415 252.2097 l 442.415 259.8904 l 449.666 259.8904 l 449.666 276.9704 l h f Q q 2 j 531.6725 258.1185 m 531.6725 248.7728 l 528.8796 250.2051 525.9792 251.2793 522.9713 251.9955 c 519.9634 252.7117 516.8482 253.0698 513.6256 253.0697 c 508.72 253.0697 505.032 252.3177 502.5616 250.8138 c 500.1267 249.3099 498.9093 247.054 498.9093 244.0462 c 498.9093 241.7545 499.7866 239.9463 501.5411 238.6214 c 503.2956 237.3323 506.8226 236.097 512.1221 234.9153 c 515.5059 234.1634 l 522.5239 232.6594 527.5012 230.5289 530.4379 227.7717 c 533.4099 225.0504 534.8959 221.2371 534.8959 216.3317 c 534.8959 210.7458 532.6758 206.3235 528.2357 203.0647 c 523.8314 199.8063 517.7621 198.177 510.0277 198.177 c 506.805 198.177 503.439 198.4993 499.9297 199.1439 c 496.4564 199.7526 492.786 200.6836 488.9187 201.9369 c 488.9187 212.1419 l 492.571 210.2441 496.1697 208.8118 499.7147 207.8449 c 503.2596 206.9139 506.7686 206.4484 510.2417 206.4484 c 514.8966 206.4484 518.4773 207.2362 520.9837 208.8118 c 523.4902 210.4231 524.7435 212.679 524.7435 215.5794 c 524.7435 218.2649 523.8304 220.3238 522.0042 221.7562 c 520.2138 223.1884 516.2571 224.567 510.1342 225.892 c 506.6967 226.6976 l 500.5736 227.9867 496.1513 229.9561 493.4297 232.6058 c 490.7084 235.2913 489.3477 238.9617 489.3477 243.6168 c 489.3477 249.2743 491.3529 253.6427 495.3633 256.7218 c 499.3737 259.8012 505.067 261.3409 512.4433 261.3409 c 516.0956 261.3409 519.533 261.0724 522.7553 260.5353 c 525.978 259.9981 528.95 259.1925 531.6713 258.1183 c h f Q Q Q q q 0.10000 0.00000 0.00000 0.10000 189.42525 305.76105 cm q /Tr1 gs 0.0039 0.0039 0.0039 scn q 2 j 670.7725 220.5145 m 670.7725 227.6758 669.2865 233.2258 666.3145 237.1645 c 663.3783 241.1033 659.2426 243.0727 653.9075 243.0727 c 648.608 243.0727 644.4724 241.1033 641.5005 237.1645 c 638.5643 233.2257 637.0962 227.6757 637.0962 220.5145 c 637.0962 213.3892 638.5643 207.8568 641.5005 203.9175 c 644.4725 199.9787 648.6082 198.0093 653.9075 198.0093 c 659.2428 198.0093 663.3784 199.9787 666.3145 203.9175 c 669.2865 207.8563 670.7725 213.3886 670.7725 220.5145 c h 680.6553 197.2035 m 680.6553 186.9628 678.3815 179.3538 673.834 174.3765 c 669.2865 169.3635 662.3218 166.857 652.94 166.857 c 649.4667 166.857 646.1903 167.1256 643.1109 167.6627 c 640.0315 168.164 637.0416 168.9517 634.1412 170.026 c 634.1412 179.6402 l 637.0416 178.0646 639.9062 176.9009 642.735 176.149 c 645.5638 175.397 648.4463 175.0211 651.3825 175.0211 c 657.8636 175.0211 662.7156 176.7219 665.9385 180.1236 c 669.1612 183.4894 670.7725 188.5921 670.7725 195.4316 c 670.7725 200.3193 l 668.7315 196.7743 666.1176 194.1246 662.9307 192.3701 c 659.7438 190.6155 655.9305 189.7383 651.4907 189.7383 c 644.1147 189.7383 638.1707 192.5491 633.6587 198.1709 c 629.147 203.7926 626.8911 211.2406 626.8911 220.5149 c 626.8911 229.8249 629.147 237.2905 633.6587 242.9119 c 638.1704 248.5336 644.1144 251.3445 651.4907 251.3445 c 655.9308 251.3445 659.7442 250.4672 662.9307 248.7127 c 666.1176 246.9581 668.7315 244.3084 670.7725 240.7635 c 670.7725 249.8944 l 680.6553 249.8944 l h f Q q 2 j 735.1725 240.6525 m 734.0625 241.297 732.845 241.7625 731.5201 242.049 c 730.231 242.3713 728.7987 242.5324 727.2232 242.5324 c 721.6373 242.5324 717.3403 240.7062 714.3322 237.0539 c 711.3602 233.4374 709.8742 228.2274 709.8742 221.4239 c 709.8742 189.7349 l 699.9377 189.7349 l 699.9377 249.8909 l 709.8742 249.8909 l 709.8742 240.5452 l 711.951 244.1975 714.6545 246.901 717.9846 248.6556 c 721.3147 250.4459 725.361 251.3411 730.1236 251.3411 c 730.8039 251.3411 731.5559 251.2874 732.3795 251.18 c 733.2031 251.1084 734.1162 250.983 735.1188 250.804 c h f Q q 2 j 794.0325 222.2845 m 794.0325 217.4505 l 748.5935 217.4505 l 749.0232 210.6472 751.0642 205.4552 754.7165 201.8745 c 758.4046 198.3296 763.525 196.5571 770.0775 196.5571 c 773.8731 196.5571 777.5434 197.0226 781.0885 197.9536 c 784.6692 198.8846 788.2142 200.2811 791.7235 202.1431 c 791.7235 192.7974 l 788.1786 191.2935 784.5442 190.1476 780.8205 189.3599 c 777.0968 188.5722 773.3191 188.1783 769.4875 188.1783 c 759.8908 188.1783 752.2818 190.9713 746.6605 196.5572 c 741.0746 202.1431 738.2816 209.6985 738.2816 219.2232 c 738.2816 229.0705 740.9313 236.8765 746.2308 242.6412 c 751.5661 248.442 758.7454 251.3424 767.7688 251.3424 c 775.8615 251.3424 782.2531 248.7285 786.9438 243.5006 c 791.6703 238.3085 794.0336 231.2365 794.0336 222.2846 c h 784.1497 225.1849 m 784.0781 230.5918 782.5563 234.9065 779.5843 238.1289 c 776.6481 241.3516 772.7451 242.9629 767.8753 242.9629 c 762.361 242.9629 757.9386 241.4053 754.6083 238.2901 c 751.314 235.1749 749.4162 230.7886 748.9149 225.1311 c h f Q q 2 j 861.0125 222.2845 m 861.0125 217.4505 l 815.5735 217.4505 l 816.0032 210.6472 818.0442 205.4552 821.6965 201.8745 c 825.3846 198.3296 830.505 196.5571 837.0575 196.5571 c 840.8531 196.5571 844.5234 197.0226 848.0685 197.9536 c 851.6492 198.8846 855.1942 200.2811 858.7035 202.1431 c 858.7035 192.7974 l 855.1586 191.2935 851.5242 190.1476 847.8005 189.3599 c 844.0768 188.5722 840.2991 188.1783 836.4675 188.1783 c 826.8708 188.1783 819.2618 190.9713 813.6405 196.5572 c 808.0546 202.1431 805.2616 209.6985 805.2616 219.2232 c 805.2616 229.0705 807.9113 236.8765 813.2108 242.6412 c 818.5461 248.442 825.7254 251.3424 834.7488 251.3424 c 842.8415 251.3424 849.2331 248.7285 853.9238 243.5006 c 858.6503 238.3085 861.0136 231.2365 861.0136 222.2846 c h 851.1297 225.1849 m 851.0581 230.5918 849.5363 234.9065 846.5643 238.1289 c 843.6281 241.3516 839.7251 242.9629 834.8553 242.9629 c 829.341 242.9629 824.9186 241.4053 821.5883 238.2901 c 818.294 235.1749 816.3962 230.7886 815.8949 225.1311 c h f Q q 2 j 926.5325 226.0445 m 926.5325 189.7355 l 916.6497 189.7355 l 916.6497 225.7215 l 916.6497 231.4148 915.5397 235.6758 913.3196 238.5045 c 911.0995 241.3333 907.7695 242.7477 903.3294 242.7477 c 897.9941 242.7477 893.7868 241.0469 890.7074 237.6452 c 887.628 234.2435 886.0883 229.6065 886.0883 223.7342 c 886.0883 189.7352 l 876.1518 189.7352 l 876.1518 249.8912 l 886.0883 249.8912 l 886.0883 240.5455 l 888.4516 244.162 891.2266 246.8655 894.4135 248.6559 c 897.6362 250.4462 901.3422 251.3414 905.5315 251.3414 c 912.4422 251.3414 917.6702 249.193 921.2155 244.8961 c 924.7604 240.635 926.5329 234.3507 926.5329 226.0431 c h f Q q 2 j 1023.1525 219.7545 m 1023.1525 227.0232 1021.6486 232.7165 1018.6408 236.8345 c 1015.6688 240.9882 1011.5688 243.065 1006.3408 243.065 c 1001.1129 243.065 996.9949 240.9882 993.9868 236.8345 c 991.0148 232.7166 989.5288 227.0233 989.5288 219.7545 c 989.5288 212.4857 991.0148 206.7744 993.9868 202.6205 c 996.9946 198.5026 1001.1126 196.4437 1006.3408 196.4437 c 1011.5687 196.4437 1015.6687 198.5026 1018.6408 202.6205 c 1021.6486 206.7742 1023.1525 212.4855 1023.1525 219.7545 c h 989.5295 240.7555 m 991.6063 244.3362 994.2202 246.986 997.3713 248.7047 c 1000.5582 250.4592 1004.3538 251.3365 1008.7583 251.3365 c 1016.063 251.3365 1021.989 248.4361 1026.5363 242.6353 c 1031.1196 236.8345 1033.4113 229.2075 1033.4113 219.7543 c 1033.4113 210.301 1031.1196 202.674 1026.5363 196.8733 c 1021.9888 191.0725 1016.0628 188.1721 1008.7583 188.1721 c 1004.354 188.1721 1000.5584 189.0315 997.3713 190.7502 c 994.2202 192.5047 991.6063 195.1724 989.5295 198.7531 c 989.5295 189.7297 l 979.593 189.7297 l 979.593 273.3037 l 989.5295 273.3037 l h f Q q 2 j 1076.4325 219.9745 m 1068.4472 219.9745 1062.9148 219.0614 1059.8355 217.2352 c 1056.756 215.409 1055.2163 212.2938 1055.2163 207.8895 c 1055.2163 204.3804 1056.3621 201.5874 1058.6538 199.5106 c 1060.9813 197.4696 1064.1323 196.4491 1068.1069 196.4491 c 1073.5854 196.4491 1077.9718 198.3827 1081.2659 202.2499 c 1084.596 206.1529 1086.261 211.3269 1086.261 217.7719 c 1086.261 219.9741 l h 1096.1445 224.0565 m 1096.1445 189.7355 l 1086.2617 189.7355 l 1086.2617 198.8664 l 1084.0058 195.2141 1081.195 192.5106 1077.8291 190.756 c 1074.4632 189.0373 1070.3452 188.1779 1065.4751 188.1779 c 1059.3162 188.1779 1054.4106 189.8966 1050.7581 193.3341 c 1047.1416 196.8074 1045.3333 201.4444 1045.3333 207.2451 c 1045.3333 214.0124 1047.5892 219.1151 1052.1009 222.5531 c 1056.6484 225.9906 1063.4161 227.7093 1072.4039 227.7093 c 1086.2609 227.7093 l 1086.2609 228.6761 l 1086.2609 233.2236 1084.757 236.7326 1081.7492 239.2031 c 1078.7772 241.7096 1074.5879 242.9629 1069.1812 242.9629 c 1065.7437 242.9629 1062.3957 242.5511 1059.1372 241.7275 c 1055.8787 240.9039 1052.7456 239.6685 1049.7378 238.0214 c 1049.7378 247.1523 l 1053.3543 248.5488 1056.8633 249.5872 1060.2648 250.2675 c 1063.6665 250.9836 1066.9786 251.3417 1070.2013 251.3417 c 1078.9026 251.3417 1085.4016 249.0858 1089.6983 244.5741 c 1093.9952 240.0624 1096.1436 233.223 1096.1436 224.0561 c h f Q q 2 j 1150.7125 240.6525 m 1149.6025 241.297 1148.3851 241.7625 1147.0602 242.049 c 1145.7711 242.3713 1144.3388 242.5324 1142.7633 242.5324 c 1137.1774 242.5324 1132.8804 240.7062 1129.8723 237.0539 c 1126.9003 233.4374 1125.4143 228.2274 1125.4143 221.4239 c 1125.4143 189.7349 l 1115.4778 189.7349 l 1115.4778 249.8909 l 1125.4143 249.8909 l 1125.4143 240.5452 l 1127.4911 244.1975 1130.1946 246.901 1133.5247 248.6556 c 1136.8548 250.4459 1140.9011 251.3411 1145.6637 251.3411 c 1146.344 251.3411 1147.096 251.2874 1147.9196 251.18 c 1148.7432 251.1084 1149.6563 250.983 1150.6589 250.804 c h f Q Q Q Q q q 0.10000 0.00000 0.00000 0.10000 189.42525 305.76105 cm q 2 j 670.7725 230.5145 m 670.7725 237.6758 669.2865 243.2258 666.3145 247.1645 c 663.3783 251.1033 659.2426 253.0727 653.9075 253.0727 c 648.608 253.0727 644.4724 251.1033 641.5005 247.1645 c 638.5643 243.2257 637.0962 237.6757 637.0962 230.5145 c 637.0962 223.3892 638.5643 217.8568 641.5005 213.9175 c 644.4725 209.9787 648.6082 208.0093 653.9075 208.0093 c 659.2428 208.0093 663.3784 209.9787 666.3145 213.9175 c 669.2865 217.8563 670.7725 223.3886 670.7725 230.5145 c h 680.6553 207.2035 m 680.6553 196.9628 678.3815 189.3538 673.834 184.3765 c 669.2865 179.3635 662.3218 176.857 652.94 176.857 c 649.4667 176.857 646.1903 177.1256 643.1109 177.6627 c 640.0315 178.164 637.0416 178.9517 634.1412 180.026 c 634.1412 189.6402 l 637.0416 188.0646 639.9062 186.9009 642.735 186.149 c 645.5638 185.397 648.4463 185.0211 651.3825 185.0211 c 657.8636 185.0211 662.7156 186.7219 665.9385 190.1236 c 669.1612 193.4894 670.7725 198.5921 670.7725 205.4316 c 670.7725 210.3193 l 668.7315 206.7743 666.1176 204.1246 662.9307 202.3701 c 659.7438 200.6155 655.9305 199.7383 651.4907 199.7383 c 644.1147 199.7383 638.1707 202.5491 633.6587 208.1709 c 629.147 213.7926 626.8911 221.2406 626.8911 230.5149 c 626.8911 239.8249 629.147 247.2905 633.6587 252.9119 c 638.1704 258.5336 644.1144 261.3445 651.4907 261.3445 c 655.9308 261.3445 659.7442 260.4672 662.9307 258.7127 c 666.1176 256.9581 668.7315 254.3084 670.7725 250.7635 c 670.7725 259.8944 l 680.6553 259.8944 l h f Q q 2 j 735.1725 250.6525 m 734.0625 251.297 732.845 251.7625 731.5201 252.049 c 730.231 252.3713 728.7987 252.5324 727.2232 252.5324 c 721.6373 252.5324 717.3403 250.7062 714.3322 247.0539 c 711.3602 243.4374 709.8742 238.2274 709.8742 231.4239 c 709.8742 199.7349 l 699.9377 199.7349 l 699.9377 259.8909 l 709.8742 259.8909 l 709.8742 250.5452 l 711.951 254.1975 714.6545 256.901 717.9846 258.6556 c 721.3147 260.4459 725.361 261.3411 730.1236 261.3411 c 730.8039 261.3411 731.5559 261.2874 732.3795 261.18 c 733.2031 261.1084 734.1162 260.983 735.1188 260.804 c h f Q q 2 j 794.0325 232.2845 m 794.0325 227.4505 l 748.5935 227.4505 l 749.0232 220.6472 751.0642 215.4552 754.7165 211.8745 c 758.4046 208.3296 763.525 206.5571 770.0775 206.5571 c 773.8731 206.5571 777.5434 207.0226 781.0885 207.9536 c 784.6692 208.8846 788.2142 210.2811 791.7235 212.1431 c 791.7235 202.7974 l 788.1786 201.2935 784.5442 200.1476 780.8205 199.3599 c 777.0968 198.5722 773.3191 198.1783 769.4875 198.1783 c 759.8908 198.1783 752.2818 200.9713 746.6605 206.5572 c 741.0746 212.1431 738.2816 219.6985 738.2816 229.2232 c 738.2816 239.0705 740.9313 246.8765 746.2308 252.6412 c 751.5661 258.442 758.7454 261.3424 767.7688 261.3424 c 775.8615 261.3424 782.2531 258.7285 786.9438 253.5006 c 791.6703 248.3085 794.0336 241.2365 794.0336 232.2846 c h 784.1497 235.1849 m 784.0781 240.5918 782.5563 244.9065 779.5843 248.1289 c 776.6481 251.3516 772.7451 252.9629 767.8753 252.9629 c 762.361 252.9629 757.9386 251.4053 754.6083 248.29 c 751.314 245.1747 749.4162 240.7884 748.9149 235.131 c h f Q q 2 j 861.0125 232.2845 m 861.0125 227.4505 l 815.5735 227.4505 l 816.0032 220.6472 818.0442 215.4552 821.6965 211.8745 c 825.3846 208.3296 830.505 206.5571 837.0575 206.5571 c 840.8531 206.5571 844.5234 207.0226 848.0685 207.9536 c 851.6492 208.8846 855.1942 210.2811 858.7035 212.1431 c 858.7035 202.7974 l 855.1586 201.2935 851.5242 200.1476 847.8005 199.3599 c 844.0768 198.5722 840.2991 198.1783 836.4675 198.1783 c 826.8708 198.1783 819.2618 200.9713 813.6405 206.5572 c 808.0546 212.1431 805.2616 219.6985 805.2616 229.2232 c 805.2616 239.0705 807.9113 246.8765 813.2108 252.6412 c 818.5461 258.442 825.7254 261.3424 834.7488 261.3424 c 842.8415 261.3424 849.2331 258.7285 853.9238 253.5006 c 858.6503 248.3085 861.0136 241.2365 861.0136 232.2846 c h 851.1297 235.1849 m 851.0581 240.5918 849.5363 244.9065 846.5643 248.1289 c 843.6281 251.3516 839.7251 252.9629 834.8553 252.9629 c 829.341 252.9629 824.9186 251.4053 821.5883 248.29 c 818.294 245.1747 816.3962 240.7884 815.8949 235.131 c h f Q q 2 j 926.5325 236.0445 m 926.5325 199.7355 l 916.6497 199.7355 l 916.6497 235.7215 l 916.6497 241.4148 915.5397 245.6758 913.3196 248.5045 c 911.0995 251.3332 907.7695 252.7476 903.3294 252.7477 c 897.9941 252.7477 893.7868 251.0469 890.7074 247.6452 c 887.628 244.2435 886.0883 239.6065 886.0883 233.7342 c 886.0883 199.7352 l 876.1518 199.7352 l 876.1518 259.8912 l 886.0883 259.8912 l 886.0883 250.5455 l 888.4516 254.162 891.2266 256.8655 894.4135 258.6559 c 897.6362 260.4462 901.3422 261.3414 905.5315 261.3414 c 912.4422 261.3414 917.6702 259.193 921.2155 254.8961 c 924.7604 250.635 926.5329 244.3507 926.5329 236.0431 c h f Q q 2 j 1023.1525 229.7545 m 1023.1525 237.0232 1021.6486 242.7165 1018.6408 246.8345 c 1015.6688 250.9882 1011.5688 253.065 1006.3408 253.065 c 1001.1129 253.065 996.9949 250.9882 993.9868 246.8345 c 991.0148 242.7166 989.5288 237.0233 989.5288 229.7545 c 989.5288 222.4858 991.0148 216.7745 993.9868 212.6205 c 996.9946 208.5026 1001.1126 206.4437 1006.3408 206.4437 c 1011.5687 206.4437 1015.6687 208.5026 1018.6408 212.6205 c 1021.6486 216.7742 1023.1525 222.4855 1023.1525 229.7545 c h 989.5295 250.7555 m 991.6063 254.3362 994.2202 256.986 997.3713 258.7047 c 1000.5582 260.4592 1004.3538 261.3365 1008.7583 261.3365 c 1016.063 261.3365 1021.989 258.4361 1026.5363 252.6353 c 1031.1196 246.8345 1033.4113 239.2075 1033.4113 229.7543 c 1033.4113 220.301 1031.1196 212.674 1026.5363 206.8733 c 1021.9888 201.0725 1016.0628 198.1721 1008.7583 198.1721 c 1004.354 198.1721 1000.5584 199.0315 997.3713 200.7502 c 994.2202 202.5047 991.6063 205.1724 989.5295 208.7531 c 989.5295 199.7297 l 979.593 199.7297 l 979.593 283.3037 l 989.5295 283.3037 l h f Q q 2 j 1076.4325 229.9745 m 1068.4472 229.9745 1062.9148 229.0614 1059.8355 227.2352 c 1056.756 225.409 1055.2163 222.2938 1055.2163 217.8895 c 1055.2163 214.3804 1056.3621 211.5874 1058.6538 209.5106 c 1060.9813 207.4696 1064.1323 206.4491 1068.1069 206.4491 c 1073.5854 206.4491 1077.9718 208.3827 1081.2659 212.2499 c 1084.596 216.1529 1086.261 221.3269 1086.261 227.7719 c 1086.261 229.9741 l h 1096.1445 234.0565 m 1096.1445 199.7355 l 1086.2617 199.7355 l 1086.2617 208.8664 l 1084.0058 205.2141 1081.195 202.5106 1077.8291 200.756 c 1074.4632 199.0373 1070.3452 198.1779 1065.4751 198.1779 c 1059.3162 198.1779 1054.4106 199.8966 1050.7581 203.3341 c 1047.1416 206.8074 1045.3333 211.4444 1045.3333 217.2451 c 1045.3333 224.0124 1047.5892 229.1151 1052.1009 232.5531 c 1056.6484 235.9906 1063.4161 237.7093 1072.4039 237.7093 c 1086.2609 237.7093 l 1086.2609 238.6761 l 1086.2609 243.2236 1084.757 246.7326 1081.7492 249.2031 c 1078.7772 251.7096 1074.5879 252.9629 1069.1812 252.9629 c 1065.7437 252.9629 1062.3957 252.5511 1059.1372 251.7275 c 1055.8787 250.9039 1052.7456 249.6685 1049.7378 248.0214 c 1049.7378 257.1523 l 1053.3543 258.5488 1056.8633 259.5872 1060.2648 260.2675 c 1063.6665 260.9836 1066.9786 261.3417 1070.2013 261.3417 c 1078.9026 261.3417 1085.4016 259.0858 1089.6983 254.5741 c 1093.9952 250.0624 1096.1436 243.223 1096.1436 234.0561 c h f Q q 2 j 1150.7125 250.6525 m 1149.6025 251.297 1148.3851 251.7625 1147.0602 252.049 c 1145.7711 252.3713 1144.3388 252.5324 1142.7633 252.5324 c 1137.1774 252.5324 1132.8804 250.7062 1129.8723 247.0539 c 1126.9003 243.4374 1125.4143 238.2274 1125.4143 231.4239 c 1125.4143 199.7349 l 1115.4778 199.7349 l 1115.4778 259.8909 l 1125.4143 259.8909 l 1125.4143 250.5452 l 1127.4911 254.1975 1130.1946 256.901 1133.5247 258.6556 c 1136.8548 260.4459 1140.9011 261.3411 1145.6637 261.3411 c 1146.344 261.3411 1147.096 261.2874 1147.9196 261.18 c 1148.7432 261.1084 1149.6563 260.983 1150.6589 260.804 c h f Q Q Q Q Q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 315.8475 530.444 Td /F2.0 27 Tf <446f63756d656e74205469746c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 499.796 Td /F3.0 10.5 Tf <5468697320706167652068617320612077617465726d61726b2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 841.89 595.28] /CropBox [0 0 841.89 595.28] /BleedBox [0 0 841.89 595.28] /TrimBox [0 0 841.89 595.28] /ArtBox [0 0 841.89 595.28] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 9 0 R /F3.0 13 0 R >> /ExtGState << /Tr1 8 0 R >> >> >> endobj 8 0 obj << /Type /ExtGState /CA 1 /ca 0.3 >> endobj 9 0 obj << /Type /Font /BaseFont /68f192+NotoSerif-Bold /Subtype /TrueType /FontDescriptor 18 0 R /FirstChar 32 /LastChar 255 /Widths 20 0 R /ToUnicode 19 0 R >> endobj 10 0 obj [7 0 R /XYZ 0 511.76 null] endobj 11 0 obj << /Type /Names /Dests 12 0 R >> endobj 12 0 obj << /Names [(__anchor-top) 10 0 R] >> endobj 13 0 obj << /Type /Font /BaseFont /18d39b+NotoSerif /Subtype /TrueType /FontDescriptor 22 0 R /FirstChar 32 /LastChar 255 /Widths 24 0 R /ToUnicode 23 0 R >> endobj 14 0 obj << /Type /Outlines /Count 1 /First 15 0 R /Last 15 0 R >> endobj 15 0 obj << /Title <feff0044006f00630075006d0065006e00740020005400690074006c0065> /Parent 14 0 R /Count 0 /Dest [7 0 R /XYZ 0 595.28 null] >> endobj 16 0 obj << /Nums [0 << /P (1) >>] >> endobj 17 0 obj << /Length1 3744 /Length 2184 /Filter [/FlateDecode] >> stream xV}lS?gqȇB̳ώ?8$8g! (_l??v h-Z@[>P"DcZi4iiCe&MEڴRHB:f{{ �dB$SZރ(}<53=,:!G�%]8gcB9MxK$nTڧn"G3`h6;:|C:ړ1_a @Uw.Fj@E@`v)@VJȠ3賦T+e>C l�+@Ԍzz_㈃<L^U]xL5ojl sWwK7oL].|+Q(kdoPzSV=sbh kE] `$T͒\A*)KbhE* ݲcf*^מdm=RAc 6sB9sUPkr}5zc$5 bMJ5ZI=`$x١'~:ꔿ39 ٯsW }٠ciu; mncQD} lAw<iLFZ֯''xuHo^ΈW/Dh@t_8cWFOpˇܘ=so)$'v5I9yzzyuKxklu76Z:[[O᫭_Vbktv[s{^~oAJI[4Ŭ`(y1A*u [XtKӭ ۃA-6Ƈt}:[kf‹Q_ck3=g.Zݣ_> s4,jZ|շ'[qZ4s$&:BM77Dyg\weo*?mB3=(ϭrTWI LRb*SeN>.|r콓aB]wsVn<^]KP&jn.e%!z:H.Yj|j*hXt֘0Z0[hȌlПԻ .=[F_5<ON->5rwTf\kEbo^Q5 ~ѩݴclUfޯlr:k7ԍ&QwgYwԯ:a!ݹID?n(N.UKy5'8F:R[ $s& HO�;}t]iN/\ Xa0=rH9C7q6$?,d,u e¨B�Y Gq]Z<8::,h E4^޾xC#r=ⲩϸC ) ZE\G+8 'x@i0[ NC TR ΀jQpC BIWC uD闀:)5sW'% ^ Ҫ॰ (\DPp-$R20{ ^]t.F _xVˁV ´+x<&ffx"zܭvP) ۗJcPs|Y>6!3XICFk7 8*"0! Ia;`UNxlyz1FļȎ Ov^VS1G,bZdS!O㬓}gęie=.#@vⳆՔu%4ʹ}t&)9$b8{Ӑhkj zedl$ aVZe$FɣLaDٳ5HdGkKlkɹ]KEv:HXK cͰhchC(/qi+b0<3I+*x..+BGD\y\߁ 7.,r<)'gI+q)Ge[2u.?K_YVz;4c! '|:N,Ol_&FiaùaD+-bJcraJqHC+Z+״ =R!/cDqWE5602>X{e2g1.r"Xx`�+΢|Qn~x/.>[x6Nhe˺ endstream endobj 18 0 obj << /Type /FontDescriptor /FontName /68f192+NotoSerif-Bold /FontFile2 17 0 R /FontBBox [-212 -250 1306 1058] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 19 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 20 0 obj [259 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 767 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 652 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 526 1000 570 1000 1000 1000 352 1000 1000 352 985 666 612 1000 1000 1000 1000 404 666 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj 21 0 obj << /Length1 4644 /Length 2934 /Filter [/FlateDecode] >> stream xX}L[?gc 1�>@0#J1` ؎Jv&me^mUVSVSmiH]?VmMktNk/z޻s%@�@n@jf)Rԛ<@/=yi:@!*np 1.,eu_C h[q"+kR`%cۻxҙG RL[0_ѥؿ ɡYx'Û�J+/G}�o H dP*A(�J'CW)")HyYJVP&:6:I1tzI})joi&yL�f5KMJQAZe8:Bwջ]ƀSCrڠ[ H`˝?>�s706f]y?RUJcM@)24?oo'69) ƺk#Zb'LlQSrm=ÏSlClSZu\2mCno<|zzFE䅺*g/iFGn\|eJ(-F 4ϧlϳT4? ?Kx)ODyG4bNxofOF([;׼MiW^w{5b LZhZ=Zʧ+f}0 pW L$Ƣ5\t;iTMxE|C[!h|MhlRFgWo)fYL]/S]'4woeh}w}k{ꡨ'PZjml5l'mszgu;k4vիggFCJYՔe§&Dek+JsȮf|m;n-,dSgTڒ2Ku13&E=LO} F;~|¼/UC zz V+iǷ)ʊ<«=edK>qy[ko;FXH$"7>-䂕[+xRǝ =f=}e!G9j+y3C,U7w_XK)I_}6ξ]k7Tv&#urG?OI{-.f5ؖ5^@mC!Ual$Hy`JR/7%:<f_V@uN!G=;<HG^M]k%Z{u4Ǵ 9EL+<\_kZ}OojWa%z!?n<P) =Gb+<C  )@dk+Uw{Ky0vn�|v'z\Vp* `*`*eTp^qx0tk2%Z[enid-᩶C~}ϦS^\zfї ?N{Tjd*!n0W\aoUo1ó}�`#[,R_#k|"WC%V0d捚90 ts>fdO]Dtʒ{MԔ뻘 ]]6jbԨy:1O<ǘ[oql+o ي龽pT{d 794SrQ?dMe9SG8ڹ{tOkj,nGqtcVkqzZ >F&/Tc*)9ȕ|ځTTW6IsɤŅcsC6zvu >h$#'*X*n- ?b-D�I5Ǵ_EbV-Z s.yY֛ܵg?3~tb"锼\U&J_3է#tGgHUuG"Ŧs/ҧqUÅQ]4uCfI<# j۩O}�7p,%p<l)cz3�.ԃbs|z a q%egW/Yw8 ^p P& eȡ ~ƛ!|s*[W0GR@I(FPP7 gw s8 O\Ϟ]s3W^ _#yRgEq "N% ^qߊ8rR! IKxE\, ֹo DqhȻ".;D AM*+U'rpQE\]"^,A[[D1/'#WaE\LOg2/dFwC#םL/ƸČX\WPl9-6NHB V q`|rЍo/B {pDZ,bm@29@;9/||v1C F!ݟL$3+)'9J?ZHVuG{ |r{ _I$^'\ewǡN eaaǬy(LǗ(IGgcKa.9Q .PQ3!"ń 0bI t 7Ŗ ..m1:$DiBC[Kh&e D3FWŭpPFc,T2q0-nEf!I\3٘s^9\r\H$R1[p5qē'BS/ 16.ѣGK˙l<y?'Z ˈe;P8>K,bl,eb\G*:[F8fm%buraAPE|oza'ڜÍ|ocT`L]yˮpog.bF7xu4jBU7z_F$ ]{y?mTLX~x*߾=v6(&)\kL endstream endobj 22 0 obj << /Type /FontDescriptor /FontName /18d39b+NotoSerif /FontFile2 21 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 23 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 24 0 obj [259 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 250 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 612 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 562 1000 1000 1000 535 1000 538 634 319 1000 584 1000 944 1000 1000 613 1000 471 451 352 1000 1000 861 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj xref 0 25 0000000000 65535 f 0000000015 00000 n 0000000268 00000 n 0000000470 00000 n 0000000527 00000 n 0000000578 00000 n 0000000850 00000 n 0000027583 00000 n 0000027920 00000 n 0000027972 00000 n 0000028141 00000 n 0000028184 00000 n 0000028233 00000 n 0000028286 00000 n 0000028451 00000 n 0000028525 00000 n 0000028674 00000 n 0000028719 00000 n 0000030993 00000 n 0000031212 00000 n 0000032574 00000 n 0000033700 00000 n 0000036724 00000 n 0000036938 00000 n 0000038300 00000 n trailer << /Size 25 /Root 2 0 R /Info 1 0 R >> startxref 39423 %%EOF ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/page-background-image-svg-scale-down.pdf������������������0000664�0000000�0000000�00000037743�14163570564�0030125�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Document Title) /Creator (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /ModDate (D:20190702043735-06'00') /CreationDate (D:20190702043735-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 11 0 R /Outlines 14 0 R /PageLabels 16 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 842.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 3033 >> stream q q 0.0 222.5183 m 595.28 222.5183 l 595.28 619.3717 l 0.0 619.3717 l h W n /DeviceRGB cs 0.0 0.0 0.0 scn 0.99213 0.00000 0.00000 0.99213 0.00000 4.87239 cm 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 cm q q /Tr1 gs 1.0 0.0 0.0 scn 2 j 85.526 490.2517 m -18.564 488.5339 65.423 473.6417 60.506 454.8647 c 28.105 448.7009 -0.377 491.6847 20.186 518.5137 c 32.657 541.8737 74.294 545.1957 84.732 518.3684 c 88.7642 509.6346 89.3759 499.1624 85.5267 490.2514 c h 74.527 497.5018 m 97.205 522.7128 25.591 536.1728 45.489 506.1441 c 54.1799 500.3056 65.925 503.5822 74.527 497.5018 c h 176.857 499.1948 m 150.142 491.9517 134.406 459.0868 152.318 436.2788 c 142.5712 424.6218 131.745 443.6536 135.605 452.8588 c 128.4438 469.4768 87.914 436.1208 100.62 457.6439 c 124.749 466.1973 119.881 490.7539 117.72 509.0609 c 130.532 512.0882 132.491 477.5719 150.381 493.2179 c 157.9413 498.204 168.028 507.6609 176.857 499.1951 c h 217.535 446.7088 m 190.667 472.1358 184.589 399.5508 215.2168 421.9728 c 224.4021 425.8932 236.0188 448.0478 217.535 446.7088 c h 243.17 444.3138 m 247.4122 416.5908 212.786 397.0658 189.8 410.7398 c 164.874 419.2402 172.449 465.3918 200.492 459.6958 c 214.137 446.7458 246.131 469.7088 217.454 474.2628 c 202.016 476.666 201.532 497.5998 219.889 489.3778 c 237.866 484.1433 253.085 462.5288 243.17 444.3138 c h 375.56 408.0288 m 373.1829 395.7928 367.7727 360.7848 353.251 373.7328 c 358.873 392.7268 376.566 436.2828 340.827 432.8508 c 320.634 427.7023 327.784 380.3948 306.175 389.8048 c 307.3168 408.5868 333.858 438.4078 301.7164 446.1998 c 270.1634 451.1284 280.3174 413.8578 266.2544 399.1558 c 251.0944 410.0358 267.4307 440.0048 274.8059 454.2818 c 302.2759 463.9269 383.4859 444.9194 375.5559 408.0308 c h 401.443 361.9708 m 409.0532 349.6378 373.869 293.9018 375.381 320.6068 c 384.5938 344.4928 396.992 399.3688 407.617 419.4818 c 430.869 426.354 465.117 416.3192 466.453 388.1708 c 469.3728 362.3268 443.909 332.6738 416.892 343.3158 c 409.104 346.4104 402.344 353.3608 401.443 361.9698 c h 450.43 375.0528 m 468.114 399.0528 419.592 422.9728 408.697 396.9568 c 398.034 382.7858 406.7464 362.4388 422.381 356.4088 c 437.27 348.8389 447.885 361.7161 450.43 375.0508 c h 503.076 430.5548 m 515.779 415.4468 498.8311 332.5558 477.038 340.0578 c 481.8008 371.3168 496.503 399.7008 503.076 430.5548 c h 584.185 337.4418 m 480.095 335.7239 564.082 320.8318 559.165 302.0548 c 526.764 295.891 498.282 338.8748 518.845 365.7038 c 531.316 389.0638 572.953 392.3858 583.391 365.5585 c 587.4232 356.8247 588.0349 346.3525 584.1857 337.4415 c h 573.186 344.6919 m 595.864 369.9029 524.25 383.3629 544.148 353.3342 c 552.8389 347.4957 564.584 350.7723 573.186 344.6919 c h f Q Q Q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 192.5425 777.054 Td /F2.0 27 Tf <446f63756d656e74205469746c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 746.406 Td /F3.0 10.5 Tf <5468697320706167652068617320612077617465726d61726b2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 9 0 R /F3.0 13 0 R >> /ExtGState << /Tr1 8 0 R >> >> >> endobj 8 0 obj << /Type /ExtGState /CA 1 /ca 0.25 >> endobj 9 0 obj << /Type /Font /BaseFont /68f192+NotoSerif-Bold /Subtype /TrueType /FontDescriptor 18 0 R /FirstChar 32 /LastChar 255 /Widths 20 0 R /ToUnicode 19 0 R >> endobj 10 0 obj [7 0 R /XYZ 0 758.37 null] endobj 11 0 obj << /Type /Names /Dests 12 0 R >> endobj 12 0 obj << /Names [(__anchor-top) 10 0 R] >> endobj 13 0 obj << /Type /Font /BaseFont /18d39b+NotoSerif /Subtype /TrueType /FontDescriptor 22 0 R /FirstChar 32 /LastChar 255 /Widths 24 0 R /ToUnicode 23 0 R >> endobj 14 0 obj << /Type /Outlines /Count 1 /First 15 0 R /Last 15 0 R >> endobj 15 0 obj << /Title <feff0044006f00630075006d0065006e00740020005400690074006c0065> /Parent 14 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 16 0 obj << /Nums [0 << /P (1) >>] >> endobj 17 0 obj << /Length1 3744 /Length 2184 /Filter [/FlateDecode] >> stream xV}lS?gqȇB̳ώ?8$8g! (_l??v h-Z@[>P"DcZi4iiCe&MEڴRHB:f{{ �dB$SZރ(}<53=,:!G�%]8gcB9MxK$nTڧn"G3`h6;:|C:ړ1_a @Uw.Fj@E@`v)@VJȠ3賦T+e>C l�+@Ԍzz_㈃<L^U]xL5ojl sWwK7oL].|+Q(kdoPzSV=sbh kE] `$T͒\A*)KbhE* ݲcf*^מdm=RAc 6sB9sUPkr}5zc$5 bMJ5ZI=`$x١'~:ꔿ39 ٯsW }٠ciu; mncQD} lAw<iLFZ֯''xuHo^ΈW/Dh@t_8cWFOpˇܘ=so)$'v5I9yzzyuKxklu76Z:[[O᫭_Vbktv[s{^~oAJI[4Ŭ`(y1A*u [XtKӭ ۃA-6Ƈt}:[kf‹Q_ck3=g.Zݣ_> s4,jZ|շ'[qZ4s$&:BM77Dyg\weo*?mB3=(ϭrTWI LRb*SeN>.|r콓aB]wsVn<^]KP&jn.e%!z:H.Yj|j*hXt֘0Z0[hȌlПԻ .=[F_5<ON->5rwTf\kEbo^Q5 ~ѩݴclUfޯlr:k7ԍ&QwgYwԯ:a!ݹID?n(N.UKy5'8F:R[ $s& HO�;}t]iN/\ Xa0=rH9C7q6$?,d,u e¨B�Y Gq]Z<8::,h E4^޾xC#r=ⲩϸC ) ZE\G+8 'x@i0[ NC TR ΀jQpC BIWC uD闀:)5sW'% ^ Ҫ॰ (\DPp-$R20{ ^]t.F _xVˁV ´+x<&ffx"zܭvP) ۗJcPs|Y>6!3XICFk7 8*"0! Ia;`UNxlyz1FļȎ Ov^VS1G,bZdS!O㬓}gęie=.#@vⳆՔu%4ʹ}t&)9$b8{Ӑhkj zedl$ aVZe$FɣLaDٳ5HdGkKlkɹ]KEv:HXK cͰhchC(/qi+b0<3I+*x..+BGD\y\߁ 7.,r<)'gI+q)Ge[2u.?K_YVz;4c! '|:N,Ol_&FiaùaD+-bJcraJqHC+Z+״ =R!/cDqWE5602>X{e2g1.r"Xx`�+΢|Qn~x/.>[x6Nhe˺ endstream endobj 18 0 obj << /Type /FontDescriptor /FontName /68f192+NotoSerif-Bold /FontFile2 17 0 R /FontBBox [-212 -250 1306 1058] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 19 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 20 0 obj [259 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 767 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 652 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 526 1000 570 1000 1000 1000 352 1000 1000 352 985 666 612 1000 1000 1000 1000 404 666 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj 21 0 obj << /Length1 4644 /Length 2934 /Filter [/FlateDecode] >> stream xX}L[?gc 1�>@0#J1` ؎Jv&me^mUVSVSmiH]?VmMktNk/z޻s%@�@n@jf)Rԛ<@/=yi:@!*np 1.,eu_C h[q"+kR`%cۻxҙG RL[0_ѥؿ ɡYx'Û�J+/G}�o H dP*A(�J'CW)")HyYJVP&:6:I1tzI})joi&yL�f5KMJQAZe8:Bwջ]ƀSCrڠ[ H`˝?>�s706f]y?RUJcM@)24?oo'69) ƺk#Zb'LlQSrm=ÏSlClSZu\2mCno<|zzFE䅺*g/iFGn\|eJ(-F 4ϧlϳT4? ?Kx)ODyG4bNxofOF([;׼MiW^w{5b LZhZ=Zʧ+f}0 pW L$Ƣ5\t;iTMxE|C[!h|MhlRFgWo)fYL]/S]'4woeh}w}k{ꡨ'PZjml5l'mszgu;k4vիggFCJYՔe§&Dek+JsȮf|m;n-,dSgTڒ2Ku13&E=LO} F;~|¼/UC zz V+iǷ)ʊ<«=edK>qy[ko;FXH$"7>-䂕[+xRǝ =f=}e!G9j+y3C,U7w_XK)I_}6ξ]k7Tv&#urG?OI{-.f5ؖ5^@mC!Ual$Hy`JR/7%:<f_V@uN!G=;<HG^M]k%Z{u4Ǵ 9EL+<\_kZ}OojWa%z!?n<P) =Gb+<C  )@dk+Uw{Ky0vn�|v'z\Vp* `*`*eTp^qx0tk2%Z[enid-᩶C~}ϦS^\zfї ?N{Tjd*!n0W\aoUo1ó}�`#[,R_#k|"WC%V0d捚90 ts>fdO]Dtʒ{MԔ뻘 ]]6jbԨy:1O<ǘ[oql+o ي龽pT{d 794SrQ?dMe9SG8ڹ{tOkj,nGqtcVkqzZ >F&/Tc*)9ȕ|ځTTW6IsɤŅcsC6zvu >h$#'*X*n- ?b-D�I5Ǵ_EbV-Z s.yY֛ܵg?3~tb"锼\U&J_3է#tGgHUuG"Ŧs/ҧqUÅQ]4uCfI<# j۩O}�7p,%p<l)cz3�.ԃbs|z a q%egW/Yw8 ^p P& eȡ ~ƛ!|s*[W0GR@I(FPP7 gw s8 O\Ϟ]s3W^ _#yRgEq "N% ^qߊ8rR! IKxE\, ֹo DqhȻ".;D AM*+U'rpQE\]"^,A[[D1/'#WaE\LOg2/dFwC#םL/ƸČX\WPl9-6NHB V q`|rЍo/B {pDZ,bm@29@;9/||v1C F!ݟL$3+)'9J?ZHVuG{ |r{ _I$^'\ewǡN eaaǬy(LǗ(IGgcKa.9Q .PQ3!"ń 0bI t 7Ŗ ..m1:$DiBC[Kh&e D3FWŭpPFc,T2q0-nEf!I\3٘s^9\r\H$R1[p5qē'BS/ 16.ѣGK˙l<y?'Z ˈe;P8>K,bl,eb\G*:[F8fm%buraAPE|oza'ڜÍ|ocT`L]yˮpog.bF7xu4jBU7z_F$ ]{y?mTLX~x*߾=v6(&)\kL endstream endobj 22 0 obj << /Type /FontDescriptor /FontName /18d39b+NotoSerif /FontFile2 21 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 23 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 24 0 obj [259 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 250 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 612 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 562 1000 1000 1000 535 1000 538 634 319 1000 584 1000 944 1000 1000 613 1000 471 451 352 1000 1000 861 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj xref 0 25 0000000000 65535 f 0000000015 00000 n 0000000268 00000 n 0000000470 00000 n 0000000527 00000 n 0000000578 00000 n 0000000850 00000 n 0000003935 00000 n 0000004272 00000 n 0000004325 00000 n 0000004494 00000 n 0000004537 00000 n 0000004586 00000 n 0000004639 00000 n 0000004804 00000 n 0000004878 00000 n 0000005027 00000 n 0000005072 00000 n 0000007346 00000 n 0000007565 00000 n 0000008927 00000 n 0000010053 00000 n 0000013077 00000 n 0000013291 00000 n 0000014653 00000 n trailer << /Size 25 /Root 2 0 R /Info 1 0 R >> startxref 15776 %%EOF �����������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/page-background-image-svg-scale-up.pdf��������������������0000664�0000000�0000000�00000033651�14163570564�0027574�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Document Title) /Creator (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /ModDate (D:20190702043659-06'00') /CreationDate (D:20190702043659-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 10 0 R /Outlines 13 0 R /PageLabels 15 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 842.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 666 >> stream q q 0.0 123.305 m 595.28 123.305 l 595.28 718.585 l 0.0 718.585 l h W n /DeviceRGB cs 0.0 0.0 0.0 scn 2.97640 0.00000 0.00000 2.97640 0.00000 -1420.21139 cm 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 cm q 1.0 0.0 0.0 scn 0.0 518.585 200.0 200.0 re f Q Q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 192.5425 777.054 Td /F2.0 27 Tf <446f63756d656e74205469746c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 746.406 Td /F3.0 10.5 Tf [<546869732070616765206861732061206261636b> 20.0195 <67726f756e6420696d61676520746861742069732072> 20.0195 <6174686572206c6f75642e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 8 0 R /F3.0 12 0 R >> >> >> endobj 8 0 obj << /Type /Font /BaseFont /68f192+NotoSerif-Bold /Subtype /TrueType /FontDescriptor 17 0 R /FirstChar 32 /LastChar 255 /Widths 19 0 R /ToUnicode 18 0 R >> endobj 9 0 obj [7 0 R /XYZ 0 758.37 null] endobj 10 0 obj << /Type /Names /Dests 11 0 R >> endobj 11 0 obj << /Names [(__anchor-top) 9 0 R] >> endobj 12 0 obj << /Type /Font /BaseFont /39d1a2+NotoSerif /Subtype /TrueType /FontDescriptor 21 0 R /FirstChar 32 /LastChar 255 /Widths 23 0 R /ToUnicode 22 0 R >> endobj 13 0 obj << /Type /Outlines /Count 1 /First 14 0 R /Last 14 0 R >> endobj 14 0 obj << /Title <feff0044006f00630075006d0065006e00740020005400690074006c0065> /Parent 13 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 15 0 obj << /Nums [0 << /P (1) >>] >> endobj 16 0 obj << /Length1 3744 /Length 2184 /Filter [/FlateDecode] >> stream xV}lS?gqȇB̳ώ?8$8g! (_l??v h-Z@[>P"DcZi4iiCe&MEڴRHB:f{{ �dB$SZރ(}<53=,:!G�%]8gcB9MxK$nTڧn"G3`h6;:|C:ړ1_a @Uw.Fj@E@`v)@VJȠ3賦T+e>C l�+@Ԍzz_㈃<L^U]xL5ojl sWwK7oL].|+Q(kdoPzSV=sbh kE] `$T͒\A*)KbhE* ݲcf*^מdm=RAc 6sB9sUPkr}5zc$5 bMJ5ZI=`$x١'~:ꔿ39 ٯsW }٠ciu; mncQD} lAw<iLFZ֯''xuHo^ΈW/Dh@t_8cWFOpˇܘ=so)$'v5I9yzzyuKxklu76Z:[[O᫭_Vbktv[s{^~oAJI[4Ŭ`(y1A*u [XtKӭ ۃA-6Ƈt}:[kf‹Q_ck3=g.Zݣ_> s4,jZ|շ'[qZ4s$&:BM77Dyg\weo*?mB3=(ϭrTWI LRb*SeN>.|r콓aB]wsVn<^]KP&jn.e%!z:H.Yj|j*hXt֘0Z0[hȌlПԻ .=[F_5<ON->5rwTf\kEbo^Q5 ~ѩݴclUfޯlr:k7ԍ&QwgYwԯ:a!ݹID?n(N.UKy5'8F:R[ $s& HO�;}t]iN/\ Xa0=rH9C7q6$?,d,u e¨B�Y Gq]Z<8::,h E4^޾xC#r=ⲩϸC ) ZE\G+8 'x@i0[ NC TR ΀jQpC BIWC uD闀:)5sW'% ^ Ҫ॰ (\DPp-$R20{ ^]t.F _xVˁV ´+x<&ffx"zܭvP) ۗJcPs|Y>6!3XICFk7 8*"0! Ia;`UNxlyz1FļȎ Ov^VS1G,bZdS!O㬓}gęie=.#@vⳆՔu%4ʹ}t&)9$b8{Ӑhkj zedl$ aVZe$FɣLaDٳ5HdGkKlkɹ]KEv:HXK cͰhchC(/qi+b0<3I+*x..+BGD\y\߁ 7.,r<)'gI+q)Ge[2u.?K_YVz;4c! '|:N,Ol_&FiaùaD+-bJcraJqHC+Z+״ =R!/cDqWE5602>X{e2g1.r"Xx`�+΢|Qn~x/.>[x6Nhe˺ endstream endobj 17 0 obj << /Type /FontDescriptor /FontName /68f192+NotoSerif-Bold /FontFile2 16 0 R /FontBBox [-212 -250 1306 1058] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 18 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 19 0 obj [259 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 767 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 652 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 526 1000 570 1000 1000 1000 352 1000 1000 352 985 666 612 1000 1000 1000 1000 404 666 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj 20 0 obj << /Length1 5452 /Length 3305 /Filter [/FlateDecode] >> stream xX}P[ו?'!I $${! A`C0I"6v6inI'mz<ig';nNtf3N6nmxZ#yO$>F{|w�Jp D]g0Jnb͇S|E4>bUWSgg2?bry9*zKP~jl8~ c|7.3؟MR鿆EAVÿoyPQ]i/G9|Evϟad* @UXT %j"pr(@ m\MJQQ&#G]Иx}ojM|7iXfU*]gGoe.{w@mAMFUHLz_0F?ᷪSJoK:}`0`N9q,^o36fTЉ5?Qj45Z[ (XM*ZXIE>ˣwT}džf.*CQ-f|u6{nT 9cꜦi?Rso1/7WYGϏ}z35# -Ͱj5l1ꉻX#ϑ:h;7f{Zmv6j  /Eoh=|7vdK^ WVC.T8=TV̀k j;]wH;B|Dkk귣gLdo+.&Dd"Bo~߅.,vMOY{NjœWLG4_}>| v<;G:*M[L.cΝhaEb刟H' /S~TQ֖a^O#J7W>kWAkj $i*TK{'1sj-`-*V-8r(W|yW<n\6m8q=5Z*o88k}lRMic&7ˍ:WRQ^'>a0Q8'EH<'cP7l1OY!%^ˊz!ՙ<s7[P/.U +vM=PPF^/œeviXM^9{5d75{GbOG;-g&zc Lu8_-/_8&&JRVn(qL^\~.7`K:Gg]/5uE֚*u|`MB=9CGk_~<SX~qè]ux+|o^*ߜx|ک\ӹ] lWLJIWQr8?>V悘<RF(]= NĄҫލ^Wv]--bQ}+Se]NC~YmAh h#7-$ )vGzUYكP6}ON l;@.W&:s0\w jVSro٭ Vp~S5 V >Q&v'hf7כ|21DH^Yw6G;G)smeu{ZtYD]]x +nKhƱXG3K>{`;u2:[>c-FdPdop/C9o 9pS@?�v@l—)\*% b|pTzVO2[eMW޽U{[뷒ɛk>MkSÀPwo;{yi"c?٘-]T ڝ=:=A9J[%fF9% ~ fq`#,KPU`wfUjĪov[j0֚ʟs~HjC5fZbպD;r,�$8[%ޱVCY!wġĐeo|?̐hjwwc>f:XSP`굴,%u Vx`d:k[A|!Rlrcx]M)Um` Ht|h/!?O*'sͣ%rHd ~yk'^=>Vѿ:2>kuBošX.om7"cE~! gi "Jr\'F=BEk(Wc.1wdrSD#.0 6",23 4ӏe0SO<sV Z{z4&X]^8r).oʱPz$C@()[Pν4 {rG@̅agȴ"C'CQ̯g<0>e~25Gb]3:⥟Ξ^Udn80BdV(.KrxVS )<|WP?4~|(P2I΀Hr$$們$wr @ В$w<4Ԗ\%x$W $+ITzm}<II^�$/i\v U0rmr66}R4slw4أp=l@"ːB76Ӯ p4(wb0>u$Ykb/mu=F8{,,IᏅcX<^Z%XG!HcF!"%fiF 1Q`ZiK/wG~>I0\cl#lfח1Ӆ5̱H4:,ZCMFQ:ƆT2^ %Wb6Y&#"Q!BI H 5B?RMC|!Qj H,#i/sڅ,׸jE(L@1!XC>`J%|<?_sK"||O$΋>&<.<.jP(_boxI3gUiYB$GC-Q^C:Żckzl!dSa;Fi`"sΙG]11$ĘxXF{!|/=AܭvpYk xrfPCzzG:7eCIGVdz1ݑX?Ry sw=;A]dR_' endstream endobj 21 0 obj << /Type /FontDescriptor /FontName /39d1a2+NotoSerif /FontFile2 20 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 22 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 23 0 obj [259 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 250 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 612 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 562 613 492 613 535 1000 538 634 319 1000 584 310 944 645 577 613 1000 471 451 352 634 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj xref 0 24 0000000000 65535 f 0000000015 00000 n 0000000268 00000 n 0000000470 00000 n 0000000527 00000 n 0000000578 00000 n 0000000850 00000 n 0000001567 00000 n 0000001876 00000 n 0000002045 00000 n 0000002087 00000 n 0000002136 00000 n 0000002188 00000 n 0000002353 00000 n 0000002427 00000 n 0000002576 00000 n 0000002621 00000 n 0000004895 00000 n 0000005114 00000 n 0000006476 00000 n 0000007602 00000 n 0000010997 00000 n 0000011211 00000 n 0000012573 00000 n trailer << /Size 24 /Root 2 0 R /Info 1 0 R >> startxref 13690 %%EOF ���������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/page-background-image-svg-unscaled.pdf��������������������0000664�0000000�0000000�00000040014�14163570564�0027650�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Document Title) /Creator (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /ModDate (D:20190702043820-06'00') /CreationDate (D:20190702043820-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 11 0 R /Outlines 14 0 R /PageLabels 16 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 842.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 3074 >> stream q q -302.36 20.945 m 897.64 20.945 l 897.64 820.945 l -302.36 820.945 l h W n /DeviceRGB cs 0.0 0.0 0.0 scn 2.00000 0.00000 0.00000 2.00000 302.36000 -820.94500 cm 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 cm q q /Tr1 gs 1.0 0.0 0.0 scn 2 j -216.834 691.825 m -320.924 690.1072 -236.937 675.215 -241.854 656.438 c -274.255 650.2742 -302.737 693.258 -282.174 720.087 c -269.703 743.447 -228.066 746.769 -217.628 719.9418 c -213.5958 711.208 -212.9841 700.7358 -216.8333 691.8248 c h -227.833 699.0751 m -205.155 724.2861 -276.769 737.7461 -256.871 707.7174 c -248.1801 701.8789 -236.435 705.1555 -227.833 699.0751 c h -125.503 700.7681 m -152.218 693.525 -167.954 660.6601 -150.042 637.8521 c -159.7888 626.1951 -170.615 645.2269 -166.755 654.4321 c -173.9162 671.0501 -214.446 637.6941 -201.74 659.2172 c -177.611 667.7706 -182.479 692.3272 -184.64 710.6342 c -171.828 713.6615 -169.869 679.1452 -151.979 694.7912 c -144.4187 699.7773 -134.332 709.2342 -125.503 700.7684 c h -84.825 648.2821 m -111.693 673.7091 -117.771 601.1241 -87.1432 623.5461 c -77.9579 627.4665 -66.3412 649.6211 -84.825 648.2821 c h -59.19 645.8871 m -54.9478 618.1641 -89.574 598.6391 -112.56 612.3131 c -137.486 620.8135 -129.911 666.9651 -101.868 661.2691 c -88.223 648.3191 -56.229 671.2821 -84.906 675.8361 c -100.344 678.2393 -100.828 699.1731 -82.471 690.9511 c -64.494 685.7166 -49.275 664.1021 -59.19 645.8871 c h 73.2 609.6021 m 70.8229 597.3661 65.4127 562.3581 50.891 575.3061 c 56.513 594.3001 74.206 637.8561 38.467 634.4241 c 18.274 629.2756 25.424 581.9681 3.815 591.3781 c 4.9568 610.1601 31.498 639.9811 -0.6436 647.7731 c -32.1966 652.7017 -22.0426 615.4311 -36.1056 600.7291 c -51.2656 611.6091 -34.9293 641.5781 -27.5541 655.8551 c -0.0841 665.5002 81.1259 646.4927 73.1959 609.6041 c h 99.083 563.5441 m 106.6932 551.2111 71.509 495.4751 73.021 522.1801 c 82.2338 546.0661 94.632 600.9421 105.257 621.0551 c 128.509 627.9273 162.757 617.8925 164.093 589.7441 c 167.0128 563.9001 141.549 534.2471 114.532 544.8891 c 106.744 547.9837 99.984 554.9341 99.083 563.5431 c h 148.07 576.6261 m 165.754 600.6261 117.232 624.5461 106.337 598.5301 c 95.674 584.3591 104.3864 564.0121 120.021 557.9821 c 134.91 550.4122 145.525 563.2894 148.07 576.6241 c h 200.716 632.1281 m 213.419 617.0201 196.4711 534.1291 174.678 541.6311 c 179.4408 572.8901 194.143 601.2741 200.716 632.1281 c h 281.825 539.0151 m 177.735 537.2972 261.722 522.4051 256.805 503.6281 c 224.404 497.4643 195.922 540.4481 216.485 567.2771 c 228.956 590.6371 270.593 593.9591 281.031 567.1318 c 285.0632 558.398 285.6749 547.9258 281.8257 539.0148 c h 270.826 546.2652 m 293.504 571.4762 221.89 584.9362 241.788 554.9075 c 250.4789 549.069 262.224 552.3456 270.826 546.2652 c h f Q Q Q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 192.5425 777.054 Td /F2.0 27 Tf <446f63756d656e74205469746c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 746.406 Td /F3.0 10.5 Tf <5468697320706167652068617320612077617465726d61726b2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 9 0 R /F3.0 13 0 R >> /ExtGState << /Tr1 8 0 R >> >> >> endobj 8 0 obj << /Type /ExtGState /CA 1 /ca 0.25 >> endobj 9 0 obj << /Type /Font /BaseFont /68f192+NotoSerif-Bold /Subtype /TrueType /FontDescriptor 18 0 R /FirstChar 32 /LastChar 255 /Widths 20 0 R /ToUnicode 19 0 R >> endobj 10 0 obj [7 0 R /XYZ 0 758.37 null] endobj 11 0 obj << /Type /Names /Dests 12 0 R >> endobj 12 0 obj << /Names [(__anchor-top) 10 0 R] >> endobj 13 0 obj << /Type /Font /BaseFont /18d39b+NotoSerif /Subtype /TrueType /FontDescriptor 22 0 R /FirstChar 32 /LastChar 255 /Widths 24 0 R /ToUnicode 23 0 R >> endobj 14 0 obj << /Type /Outlines /Count 1 /First 15 0 R /Last 15 0 R >> endobj 15 0 obj << /Title <feff0044006f00630075006d0065006e00740020005400690074006c0065> /Parent 14 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 16 0 obj << /Nums [0 << /P (1) >>] >> endobj 17 0 obj << /Length1 3744 /Length 2184 /Filter [/FlateDecode] >> stream xV}lS?gqȇB̳ώ?8$8g! (_l??v h-Z@[>P"DcZi4iiCe&MEڴRHB:f{{ �dB$SZރ(}<53=,:!G�%]8gcB9MxK$nTڧn"G3`h6;:|C:ړ1_a @Uw.Fj@E@`v)@VJȠ3賦T+e>C l�+@Ԍzz_㈃<L^U]xL5ojl sWwK7oL].|+Q(kdoPzSV=sbh kE] `$T͒\A*)KbhE* ݲcf*^מdm=RAc 6sB9sUPkr}5zc$5 bMJ5ZI=`$x١'~:ꔿ39 ٯsW }٠ciu; mncQD} lAw<iLFZ֯''xuHo^ΈW/Dh@t_8cWFOpˇܘ=so)$'v5I9yzzyuKxklu76Z:[[O᫭_Vbktv[s{^~oAJI[4Ŭ`(y1A*u [XtKӭ ۃA-6Ƈt}:[kf‹Q_ck3=g.Zݣ_> s4,jZ|շ'[qZ4s$&:BM77Dyg\weo*?mB3=(ϭrTWI LRb*SeN>.|r콓aB]wsVn<^]KP&jn.e%!z:H.Yj|j*hXt֘0Z0[hȌlПԻ .=[F_5<ON->5rwTf\kEbo^Q5 ~ѩݴclUfޯlr:k7ԍ&QwgYwԯ:a!ݹID?n(N.UKy5'8F:R[ $s& HO�;}t]iN/\ Xa0=rH9C7q6$?,d,u e¨B�Y Gq]Z<8::,h E4^޾xC#r=ⲩϸC ) ZE\G+8 'x@i0[ NC TR ΀jQpC BIWC uD闀:)5sW'% ^ Ҫ॰ (\DPp-$R20{ ^]t.F _xVˁV ´+x<&ffx"zܭvP) ۗJcPs|Y>6!3XICFk7 8*"0! Ia;`UNxlyz1FļȎ Ov^VS1G,bZdS!O㬓}gęie=.#@vⳆՔu%4ʹ}t&)9$b8{Ӑhkj zedl$ aVZe$FɣLaDٳ5HdGkKlkɹ]KEv:HXK cͰhchC(/qi+b0<3I+*x..+BGD\y\߁ 7.,r<)'gI+q)Ge[2u.?K_YVz;4c! '|:N,Ol_&FiaùaD+-bJcraJqHC+Z+״ =R!/cDqWE5602>X{e2g1.r"Xx`�+΢|Qn~x/.>[x6Nhe˺ endstream endobj 18 0 obj << /Type /FontDescriptor /FontName /68f192+NotoSerif-Bold /FontFile2 17 0 R /FontBBox [-212 -250 1306 1058] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 19 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 20 0 obj [259 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 767 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 652 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 526 1000 570 1000 1000 1000 352 1000 1000 352 985 666 612 1000 1000 1000 1000 404 666 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj 21 0 obj << /Length1 4644 /Length 2934 /Filter [/FlateDecode] >> stream xX}L[?gc 1�>@0#J1` ؎Jv&me^mUVSVSmiH]?VmMktNk/z޻s%@�@n@jf)Rԛ<@/=yi:@!*np 1.,eu_C h[q"+kR`%cۻxҙG RL[0_ѥؿ ɡYx'Û�J+/G}�o H dP*A(�J'CW)")HyYJVP&:6:I1tzI})joi&yL�f5KMJQAZe8:Bwջ]ƀSCrڠ[ H`˝?>�s706f]y?RUJcM@)24?oo'69) ƺk#Zb'LlQSrm=ÏSlClSZu\2mCno<|zzFE䅺*g/iFGn\|eJ(-F 4ϧlϳT4? ?Kx)ODyG4bNxofOF([;׼MiW^w{5b LZhZ=Zʧ+f}0 pW L$Ƣ5\t;iTMxE|C[!h|MhlRFgWo)fYL]/S]'4woeh}w}k{ꡨ'PZjml5l'mszgu;k4vիggFCJYՔe§&Dek+JsȮf|m;n-,dSgTڒ2Ku13&E=LO} F;~|¼/UC zz V+iǷ)ʊ<«=edK>qy[ko;FXH$"7>-䂕[+xRǝ =f=}e!G9j+y3C,U7w_XK)I_}6ξ]k7Tv&#urG?OI{-.f5ؖ5^@mC!Ual$Hy`JR/7%:<f_V@uN!G=;<HG^M]k%Z{u4Ǵ 9EL+<\_kZ}OojWa%z!?n<P) =Gb+<C  )@dk+Uw{Ky0vn�|v'z\Vp* `*`*eTp^qx0tk2%Z[enid-᩶C~}ϦS^\zfї ?N{Tjd*!n0W\aoUo1ó}�`#[,R_#k|"WC%V0d捚90 ts>fdO]Dtʒ{MԔ뻘 ]]6jbԨy:1O<ǘ[oql+o ي龽pT{d 794SrQ?dMe9SG8ڹ{tOkj,nGqtcVkqzZ >F&/Tc*)9ȕ|ځTTW6IsɤŅcsC6zvu >h$#'*X*n- ?b-D�I5Ǵ_EbV-Z s.yY֛ܵg?3~tb"锼\U&J_3է#tGgHUuG"Ŧs/ҧqUÅQ]4uCfI<# j۩O}�7p,%p<l)cz3�.ԃbs|z a q%egW/Yw8 ^p P& eȡ ~ƛ!|s*[W0GR@I(FPP7 gw s8 O\Ϟ]s3W^ _#yRgEq "N% ^qߊ8rR! IKxE\, ֹo DqhȻ".;D AM*+U'rpQE\]"^,A[[D1/'#WaE\LOg2/dFwC#םL/ƸČX\WPl9-6NHB V q`|rЍo/B {pDZ,bm@29@;9/||v1C F!ݟL$3+)'9J?ZHVuG{ |r{ _I$^'\ewǡN eaaǬy(LǗ(IGgcKa.9Q .PQ3!"ń 0bI t 7Ŗ ..m1:$DiBC[Kh&e D3FWŭpPFc,T2q0-nEf!I\3٘s^9\r\H$R1[p5qē'BS/ 16.ѣGK˙l<y?'Z ˈe;P8>K,bl,eb\G*:[F8fm%buraAPE|oza'ڜÍ|ocT`L]yˮpog.bF7xu4jBU7z_F$ ]{y?mTLX~x*߾=v6(&)\kL endstream endobj 22 0 obj << /Type /FontDescriptor /FontName /18d39b+NotoSerif /FontFile2 21 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 23 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 24 0 obj [259 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 250 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 612 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 562 1000 1000 1000 535 1000 538 634 319 1000 584 1000 944 1000 1000 613 1000 471 451 352 1000 1000 861 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj xref 0 25 0000000000 65535 f 0000000015 00000 n 0000000268 00000 n 0000000470 00000 n 0000000527 00000 n 0000000578 00000 n 0000000850 00000 n 0000003976 00000 n 0000004313 00000 n 0000004366 00000 n 0000004535 00000 n 0000004578 00000 n 0000004627 00000 n 0000004680 00000 n 0000004845 00000 n 0000004919 00000 n 0000005068 00000 n 0000005113 00000 n 0000007387 00000 n 0000007606 00000 n 0000008968 00000 n 0000010094 00000 n 0000013118 00000 n 0000013332 00000 n 0000014694 00000 n trailer << /Size 25 /Root 2 0 R /Info 1 0 R >> startxref 15817 %%EOF ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/page-background-image-svg-with-image-disabled.pdf���������0000664�0000000�0000000�00000016712�14163570564�0031662�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /ModDate (D:20190702235314-06'00') /CreationDate (D:20190702235314-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 10 0 R /Outlines 13 0 R /PageLabels 15 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 842.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 474 >> stream q q 283.4668 813.5435 m 311.8132 813.5435 l 311.8132 841.89 l 283.4668 841.89 l h W n /DeviceRGB cs 0.0 0.0 0.0 scn 5.66929 0.00000 0.00000 5.66929 -1323.58894 -3931.02969 cm 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 cm q Q q q /Tr1 gs /DeviceRGB CS 0.0 0.0 0.0 SCN 0.5 w 283.7168 837.14 4.5 4.5 re B Q Q Q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F2.0 10.5 Tf <4173636969646f63746f72> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 12 0 R >> /ExtGState << /Tr1 8 0 R >> >> >> endobj 8 0 obj << /Type /ExtGState /CA 1 /ca 0.0 >> endobj 9 0 obj [7 0 R /XYZ 0 841.89 null] endobj 10 0 obj << /Type /Names /Dests 11 0 R >> endobj 11 0 obj << /Names [(__anchor-top) 9 0 R] >> endobj 12 0 obj << /Type /Font /BaseFont /5296b7+NotoSerif /Subtype /TrueType /FontDescriptor 17 0 R /FirstChar 32 /LastChar 255 /Widths 19 0 R /ToUnicode 18 0 R >> endobj 13 0 obj << /Type /Outlines /Count 1 /First 14 0 R /Last 14 0 R >> endobj 14 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 13 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 15 0 obj << /Nums [0 << /P (1) >>] >> endobj 16 0 obj << /Length1 3384 /Length 2054 /Filter [/FlateDecode] >> stream xWkl>dI?d[/Q";v$DZGb'iKG/+:GuYS NW`AG1Ð XXGV Xke(Xi^|+�@٥n7@e[M�&&Y�2).E[H$Dڣhd;-B;I>M8BVJ߅e!-? Pt1ՂV ~ z"_E-<kPiK%^h5oB8qBU5Դ4<*@<U9 { ]EW'dݖo;,l;sz:竫jhj||ꎁ>\C4Xyձ]\@wטyBmy(MZ|lPTdׇ}_|vypx={"k'[zzδ^Z;S+:7wxz`Ue֚�vXJZC[+T4{lvTC|{1ҵ&]xwa"diQjPKPHxVog^xW\;ݽCo(c>KK+R0mԋ+FQz:UU*װJŘo%hI1`ixz\ sw[CC[yG7Wշԋ+؆ pF#u=̗i;`HW[/Ӡ�OEj'wvW&&NWz>,[H1{!w or`^R @�Rn w2M #2PlHkwk7dӍA+d 9t؞-袞UkHur쥟9z>>3s0TQc%k+Kɍgf]-vG}@yTqX>hv61rw/DuO~8 p.[CB@jzm7arZO.>{ܥ9�mX4]g5@F,&m�W7OfZS;OiRקY-9Yqc2#c<$J.{E*ZSp8W6D+0G[xҤSOq||BaN.;ƃKÖ{w:ڦ CQ %;LM Jtk,ꇷpOˡJsfk'Yԅ#zFy8rM SxP@)8 ;ᦊTiVqL]5T\,j7Uw B.mA7D=NG fT�s* XꎊoU<iY:Fѳ*^ <}Qūa@7êx ej.O8͍HR<%r%Jiy(My1wZ 9HBPet>l9Q hBǧ!DROozK^Dƀ 7#0<9QH/" 2Ra5B<se2 *.kJ[2rxq[Jb.2\rD<8L)S>bGfTdBNi!I˕T%]&IT&$jK?{D' -# kQ$ȕ+fL+Fec*ISAciB !c,bxn 1$ l\b"WR/Iig։B$RnĉK r+xdzxgԵqgΜ|KJO0Qxdy\#<bE54\3yX1s\!!rCYa ;u{Xn賄\cy)5)!dg ^zܧ'k-pE/TYE9>v*PGԉYGd / X3:ѡ�1̺OOl}Bm+e=]gVz endstream endobj 17 0 obj << /Type /FontDescriptor /FontName /5296b7+NotoSerif /FontFile2 16 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 18 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 19 0 obj [1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 705 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 492 613 1000 1000 1000 1000 319 1000 1000 1000 1000 1000 577 1000 1000 471 451 352 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj xref 0 20 0000000000 65535 f 0000000015 00000 n 0000000262 00000 n 0000000464 00000 n 0000000521 00000 n 0000000572 00000 n 0000000844 00000 n 0000001369 00000 n 0000001694 00000 n 0000001746 00000 n 0000001788 00000 n 0000001837 00000 n 0000001889 00000 n 0000002054 00000 n 0000002128 00000 n 0000002253 00000 n 0000002298 00000 n 0000004442 00000 n 0000004656 00000 n 0000006018 00000 n trailer << /Size 20 /Root 2 0 R /Info 1 0 R >> startxref 7148 %%EOF ������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/page-background-image-svg-with-image.pdf������������������0000664�0000000�0000000�00000025715�14163570564�0030120�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /ModDate (D:20190702235212-06'00') /CreationDate (D:20190702235212-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 12 0 R /Outlines 15 0 R /PageLabels 17 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 842.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 523 >> stream q q 283.4668 813.5435 m 311.8132 813.5435 l 311.8132 841.89 l 283.4668 841.89 l h W n /DeviceRGB cs 0.0 0.0 0.0 scn 5.66929 0.00000 0.00000 5.66929 -1323.58894 -3931.02969 cm 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 cm q q 5.0 0.0 0.0 5.0 283.4668 836.89 cm /I1 Do Q f Q q q /Tr1 gs /DeviceRGB CS 0.0 0.0 0.0 SCN 0.5 w 283.7168 837.14 4.5 4.5 re B Q Q Q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F2.0 10.5 Tf <4173636969646f63746f72> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 14 0 R >> /XObject << /I1 8 0 R >> /ExtGState << /Tr1 10 0 R >> >> >> endobj 8 0 obj << /Type /XObject /Subtype /Image /Height 64 /Width 64 /BitsPerComponent 8 /ColorSpace /DeviceRGB /SMask 9 0 R /Length 2456 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 3 /BitsPerComponent 8 /Columns 64 >>] >> stream xZkG>3+ Y bBH$HbL%UhY2V-�CH4وAŐ!}p;39=;wגּvgvfPA4þXoŒ F_~we^\WR%/O+xֳ}LCd`g>�5Q̭ G{`5@X`BBpN.bȱ �,70!3$c =ߟݯpS^df;2.[>Ըk>w\_2vqӀR "wȽ*u5@?dG#�.(Ӽͫi^YH7�)(>lE- xmY ?f)a@ "{ˆhs,3[ZR !�Pܻ[2I >B>~z02HGO}n-GOۼưP<H Y Esz]48}ۿ(+5q/QٸAn\a47�϶.wG]-0ɭpL 8!b"S6|jKJ"+g+�[d/$ұOŽCwM1a`ڇH!B]~L̶o${ɳ0C 2F |k 4߿ BuuwӫHmX P ~byH/2!xSreHxSk@AI[:ZpDӜU  / fǰ=<&A6m Oؕm,J+U :B�^=$W-8ٞĕ^e6WKVNK9Cu#OW_̱p;oC_;93 Xb<wFPhN��1/ŀze~+=*0‡"U"JRCU>H,*`s*'3HWRwJXCrf`0Nn&&,J//8PrqtUªJ9oWZldRA jڻYhT.uFӌ;ڕ TZ'?(i䷿p?.Y*) )ݭEsR\G^+/ FsGCHB߸i1s*E8hW.<C˭UX(�8! ? ^+i\жWWJf|dS++آ<UDy$fɊ{Q2g.FGD{Ⴉ?fWN^\u֕n(fq4Ħ,4&q_iBb :O=9~Yws;܍R{"$ef~W#^%1 IZ)�E-_VoXcrF�r/ a UX7NN"8Yj;Bw.-x,|˺_fͽЇQ,'Ku_ސ~Ę0t}qɕmQwEr:UH: b+hZV ͡p_Qu} 4&"ٗOgnAUh\�xH0\TB ݠ1~b42L&gkoG:1~ MeҮz|Gܴ>vG#Q`ڗZoD6h UᱭC+H<(:Ի{d?(p2PVsﻻm8U{6~EΖFT1QŁ [7Xd!$8wG<GO{_QsUIj^8/3RhF32^ܩGm]OqM\<&f v$5*c;AOTV9)ǒGIU*q\*$D*tYoĕYe6Nğҕ,ۻ:knW uj!@B]ttu s ej)tdG$;?(K>4EǵV9^*8&ߜ"荳6״FUu=ٰX^:?巜LA/(:)3G~<*ǒ0]cK,ͰB`U%,C勅Q9 +rjmj3(Ɗϵc~S aN}ULS( Sv2/bpyN͙||YM<'t4wUsԀ{`}(BV/%[:0U"%Z0ä<̄tHJX1zCq_i@7ah7<%'Eɉ{ Q-&qcN ʬr& WΩ+8\<uKWJK?!c>n; k{gK endstream endobj 9 0 obj << /Type /XObject /Subtype /Image /Height 64 /Width 64 /BitsPerComponent 8 /ColorSpace /DeviceGray /Decode [0 1] /Length 491 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 1 /BitsPerComponent 8 /Columns 64 >>] >> stream x1nZA݊S#A.‚ J� ȹ!<)9D Lv# o7R,hB(29p~٨/]ϲ۟u[Lz< ơ{OP!e[Pez?r5CGKXzX5{7??yq氒޿ 6RWr~&?Wp^MYK';rmL09u@/#  OUkeXkrP4)�#8z[p`S !~oߧxڻ7$E{Uw>A13j]&AhDt³̢qv]ǪKsp̧Pq̇0w|̛k 5pBX]eǃ n&/OK d0n k endstream endobj 10 0 obj << /Type /ExtGState /CA 1 /ca 0.0 >> endobj 11 0 obj [7 0 R /XYZ 0 841.89 null] endobj 12 0 obj << /Type /Names /Dests 13 0 R >> endobj 13 0 obj << /Names [(__anchor-top) 11 0 R] >> endobj 14 0 obj << /Type /Font /BaseFont /5296b7+NotoSerif /Subtype /TrueType /FontDescriptor 19 0 R /FirstChar 32 /LastChar 255 /Widths 21 0 R /ToUnicode 20 0 R >> endobj 15 0 obj << /Type /Outlines /Count 1 /First 16 0 R /Last 16 0 R >> endobj 16 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 15 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 17 0 obj << /Nums [0 << /P (1) >>] >> endobj 18 0 obj << /Length1 3384 /Length 2054 /Filter [/FlateDecode] >> stream xWkl>dI?d[/Q";v$DZGb'iKG/+:GuYS NW`AG1Ð XXGV Xke(Xi^|+�@٥n7@e[M�&&Y�2).E[H$Dڣhd;-B;I>M8BVJ߅e!-? Pt1ՂV ~ z"_E-<kPiK%^h5oB8qBU5Դ4<*@<U9 { ]EW'dݖo;,l;sz:竫jhj||ꎁ>\C4Xyձ]\@wטyBmy(MZ|lPTdׇ}_|vypx={"k'[zzδ^Z;S+:7wxz`Ue֚�vXJZC[+T4{lvTC|{1ҵ&]xwa"diQjPKPHxVog^xW\;ݽCo(c>KK+R0mԋ+FQz:UU*װJŘo%hI1`ixz\ sw[CC[yG7Wշԋ+؆ pF#u=̗i;`HW[/Ӡ�OEj'wvW&&NWz>,[H1{!w or`^R @�Rn w2M #2PlHkwk7dӍA+d 9t؞-袞UkHur쥟9z>>3s0TQc%k+Kɍgf]-vG}@yTqX>hv61rw/DuO~8 p.[CB@jzm7arZO.>{ܥ9�mX4]g5@F,&m�W7OfZS;OiRקY-9Yqc2#c<$J.{E*ZSp8W6D+0G[xҤSOq||BaN.;ƃKÖ{w:ڦ CQ %;LM Jtk,ꇷpOˡJsfk'Yԅ#zFy8rM SxP@)8 ;ᦊTiVqL]5T\,j7Uw B.mA7D=NG fT�s* XꎊoU<iY:Fѳ*^ <}Qūa@7êx ej.O8͍HR<%r%Jiy(My1wZ 9HBPet>l9Q hBǧ!DROozK^Dƀ 7#0<9QH/" 2Ra5B<se2 *.kJ[2rxq[Jb.2\rD<8L)S>bGfTdBNi!I˕T%]&IT&$jK?{D' -# kQ$ȕ+fL+Fec*ISAciB !c,bxn 1$ l\b"WR/Iig։B$RnĉK r+xdzxgԵqgΜ|KJO0Qxdy\#<bE54\3yX1s\!!rCYa ;u{Xn賄\cy)5)!dg ^zܧ'k-pE/TYE9>v*PGԉYGd / X3:ѡ�1̺OOl}Bm+e=]gVz endstream endobj 19 0 obj << /Type /FontDescriptor /FontName /5296b7+NotoSerif /FontFile2 18 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 20 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 21 0 obj [1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 705 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 492 613 1000 1000 1000 1000 319 1000 1000 1000 1000 1000 577 1000 1000 471 451 352 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj xref 0 22 0000000000 65535 f 0000000015 00000 n 0000000262 00000 n 0000000464 00000 n 0000000521 00000 n 0000000572 00000 n 0000000844 00000 n 0000001418 00000 n 0000001769 00000 n 0000004485 00000 n 0000005237 00000 n 0000005290 00000 n 0000005333 00000 n 0000005382 00000 n 0000005435 00000 n 0000005600 00000 n 0000005674 00000 n 0000005799 00000 n 0000005844 00000 n 0000007988 00000 n 0000008202 00000 n 0000009564 00000 n trailer << /Size 22 /Root 2 0 R /Info 1 0 R >> startxref 10694 %%EOF ���������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/page-background-image-verso-only.pdf����������������������0000664�0000000�0000000�00000050756�14163570564�0027410�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Document Title) /Creator (Asciidoctor PDF 1.5.0.beta.3.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.3.dev, based on Prawn 2.2.2) /ModDate (D:20190825000450-06'00') /CreationDate (D:20190825000450-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 14 0 R /Outlines 20 0 R /PageLabels 22 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 4 /Kids [7 0 R 10 0 R 17 0 R 19 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 170 >> stream q /DeviceRGB cs 0.6 0.6 0.6 scn /DeviceRGB CS 0.6 0.6 0.6 SCN BT 350.129 361.6965 Td /F1.0 27 Tf <446f63756d656e74205469746c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 8 0 R >> >> >> endobj 8 0 obj << /Type /Font /BaseFont /686696+NotoSerif /Subtype /TrueType /FontDescriptor 24 0 R /FirstChar 32 /LastChar 255 /Widths 26 0 R /ToUnicode 25 0 R >> endobj 9 0 obj << /Length 205 >> stream q q 595.28 0.0 0.0 838.1702 0.0 1.8599 cm /I1 Do Q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 10 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 9 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /XObject << /I1 11 0 R >> /Font << /F1.0 8 0 R >> >> >> endobj 11 0 obj << /Type /XObject /Subtype /Image /Height 842 /Width 598 /BitsPerComponent 8 /ColorSpace /DeviceRGB /SMask 12 0 R /Length 6381 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 3 /BitsPerComponent 8 /Columns 598 >>] >> stream xrVۆaC |@ z ?n& \"Jg^,=�< �!�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@'߾}?<zUq7ͫMαyc;~Xs%�~?w/_djt{iϟ?} O<?߯_5R/*nឩB|٪ڀ™wTg~jڌ?E> Ԛݾs/w|9V`\x mpY?OWWWVJ+'M?2?9jٳgӞD<UCB{j'?٪ͻEkUkweR;�t*^{n13JVE9g%l=Z|iǏ͉u0~sCj>■Z_f]]+|/^47H63vŜ?U{ƪUk3/=-nءO4]'?}ԙrv?:\qlq4-}Qz8\iGe`Z|kᚂTfFObwc@5vϬW^z >٧6cm6[z>xWթچ"HӘOQͣ/=-0 3]Z5~X /_߾}{7oN-Y(<3lTHjofژw{?.)cfY+9JM3/%ͫ=d?6-OFko|� gӁO}fRIkSkwj οDMbӑqӧIRm|3-3μD;ڙ.Nk+`6~~)9`%j.Xz:Wg^Z2߿zӜ;KgBǚ_~]w+B{E͏+Hg_k[u!n5xaMo\ߌOI<Ftў)Ωtq24~v~N9| ˅2gMfm]OKV?Uf{U.~;>ʮJ2g^ 3͋&&pZj71˰xNy2ti7L /NIo}{\begSWݍ מܻA̳g SɛWdŋ_�{{6cN|4>yX(p}G1Ư{M` :]Isۚ lƾ9Hٖr�dv^v`Ӂ3m[\ޑՋe p>DžKtqyg0c_y~hqlF3/3tfc4Ǐ6+[6OvN׶MiqSS5p7?MOksL\;z:ٿP7lw¸&̙wv Ov*wxrG&qhLR緪3 w֜Py1ZXUJsoW'(uG,XݸKu Gv=eWRhlǵX8ܞ[<v6V<@=~yL-g嗙..lSSfmsX?/.sK]f2Z,k[@{}aRq+ݿٻScwWw5qegN" ޽{7:kȃAM(p !o\3@ Ļ{1Oj_|g_~/Vs4??}3nN\n fRB7 ׽.g#:_*^xѼfrg l yևSik3lu <t8-;n@|kyӮYEZum=IvssSk>1]gy$0Z䬆S6H;.l~=SnCWWWIO U+;؟^';qrox1wg^$4p:;Oej_zU/]BXQ9㵒)'p0N&p<s`ok=V}EVs|U]<4\7&+-o3)bt>x}xjlYћ7o:K^D?u3j׍sm܇~y~9kMI]  1G>nV2y3,.GzkJ];M3BcYٿ]~3"k/ ٛ9Հ8sbu]U^ |)jXs_ ل߿o//ۛ_(5 z(D UW/Col3 A;a\Shn|SNk�<$Qs̹WoWYlQ:rwـS&yΘvVz( ##Ƒ\dH0+ws93Utɩ;:y4Ndv${( ,x#4oZდ^| yYޱMOPmL:;_X\ J1S#v6/ܶtrxyNρ:󛈇E߻=Ek.>UmkfH]+wD:J7'ϟ?L4OV$ϰޡuwp9Qk?}R-<qzc|w%r~8t}} j䪅^89=>|ׯ_߽{7_4nz0S+9߿y\ȍf~5s;4}^9'{?~\s<Tm+qӃ*!{aw^滹/̩WUqr֩xtۚHl'3e^5Gk]oF0*ιe/.V\}?0<ǒ;v rssӹʛ7o9yf Z5 zˋGV7K;|R TnqHO<yPy3 <͋NRx7xbZڧL,p=6s8yj t-߾}k5qn94#Fw6-(x0Pe:7a;cq,t9A['v|ô%/* .X{Wpw%�r9�$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �$P@(  J%�@�BI �Ƚ0 endstream endobj 12 0 obj << /Type /XObject /Subtype /Image /Height 842 /Width 598 /BitsPerComponent 8 /ColorSpace /DeviceGray /Decode [0 1] /Length 2152 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 1 /BitsPerComponent 8 /Columns 598 >>] >> stream x 0 �d%z4[:ɊȊȊȊȊȊȊȊȊȊȊȊȊȊȊȊȊȊȊȊȊȊȊȊȊȊȊȊȊȊȊɊȊȊ:p!ۊs(YYN@VdE@VdE@VȊ YYYYWv" +" +"@1l+YYp" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +": endstream endobj 13 0 obj [10 0 R /XYZ 0 841.89 null] endobj 14 0 obj << /Type /Names /Dests 15 0 R >> endobj 15 0 obj << /Names [(__anchor-top) 13 0 R] >> endobj 16 0 obj << /Length 165 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf <6d6f726520636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 17 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 16 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 8 0 R >> >> >> endobj 18 0 obj << /Length 205 >> stream q q 595.28 0.0 0.0 838.1702 0.0 1.8599 cm /I2 Do Q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf <74686520656e64> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 19 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 18 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /XObject << /I2 11 0 R >> /Font << /F1.0 8 0 R >> >> >> endobj 20 0 obj << /Type /Outlines /Count 1 /First 21 0 R /Last 21 0 R >> endobj 21 0 obj << /Title <feff0044006f00630075006d0065006e00740020005400690074006c0065> /Parent 20 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 22 0 obj << /Nums [0 << /P (i) >> 1 << /P (1) >> 2 << /P (2) >> 3 << /P (3) >>] >> endobj 23 0 obj << /Length1 8412 /Length 5025 /Filter [/FlateDecode] >> stream xYP[ו>=I @`l0$0?lc$/!,ٮ-(I;IMM8NuM26<; I;i۴x=4M^۳ަdRܫNOs@�`Ԁ΍L"�82zSXDxėo@}tZϡltok|"B<UL{MǞy({#X|U7(|͡/hc- C'r퍑h ;L�zStF&#49w�E[6? j3/* &+EIIE̬a`}~J :Pm.5fGy[+Vz�PJI$cCݦV!$T"CC1[o5Pj1L-%BُgG[>K/.ƆM5EiCnܼ<I|Ǖ�JE68T)d)ט+J"gn-1?d.i1~TRJG }Y'i* \:|rхLXslLuIho6 yzsd65n."yLAv|c}{uXU~'Ȗ5 M5CmU|?۞ad"ส4zfY.e2/VוH QLJ擽vzx3m](x;9Pw`h=|?gv48_c56U9r^mmx>|pSSU)1EJ4)FtDdr눱HdAZ$.z:yU=v#φ " {wl\SQk㉋bRzGG~`CZMYaqg'@տ#_7ݖzM&.[2{( ;I-F}5J4 4 ZRxvp6Z׶{;\XIR }՛צ%ו)��6PIܥXwDdCjHar5ss7Hsx _A_C7Kڲ(#f=>W*aaF ^>]FoXd<Thj 翷|4lm=l|k|ޙ;;AjڸSN b.Wͦ=Zr=5= xfݸzرwK8%/lYǞQ`ua2q}KATyny~tAK;{=<t,O8·Qex(MX?ouܵuEY$/\^/>v'ߝjnn4R)ŠpZ r'*y֗* ʵ-{<SW}MsYsuqn*kۺ|joz:icyQٹ-_xc)&k7v(ƘΛlRJds]cK[骍=.ROTO2rjh2GKERY|Op훑ߨvy~b]fV0g=ZM_N9Wl[$\ǗD^h2 Soa}tyf<6"dy\rG O 0*tzT  8-]pHRr +`Y8$V"ciROοg =i}␣ȤհCq! lS:ċO`A�!]-*AP]!tgoo'X@HzRpS ]~gx*Dʑ*1&wtY ]Ћ�prsudxinfރXFOsK ' O*'(�p^EXo*K -Y*!4( Hk@G<J=JHPI+9੐G.(x*l$V4D>>ObmOVქpX,**O(*몟+x&L(x&ԧ<tSM&MhwhD&&�kс@,=# 81ԛF-L@�nֆ>zŸg�mp<Lhpa kat 065nc0}G"o,t]h!-A>Mb1’QiOd(!Zki!gcQd„|46nilX q;b0F}4A]NqCn(D, .\ni5 `7yV8J6A|0i}t<c(~:|.'Ѩ m"8"L۬30L`#MfkF“@܌<h 3?&4rOFSfkVyIeb|,>b{6oُ!6Cq E,_&#P QPgN ; UVV֚蝍x48<1 ђ6'v6gu mm=6'=촭C=*;Qb4D%3t4I, G/46YD`MJȏ }q.!GSQ:p ?1U串8_l1 l!>GP͈|YN\#;Zay UiSx8tѫ_Ҧ%: vbB;؍A|um`كr7x^D(nZyn^O|:0*NK!3Q"c($6_+E+b}Fؖ5)'Ǘ.3=\.F$W?v[lC8#MqqsDuq_Dx N1s}mF b/JzlcbI־BojS+O=<BG$$3‚@rAe, b%'5GH} D }y5ON͓yL h[-ـz(eaIHJ"uqJE,k1v.;ERQ# !hPWvTy<f[9JW`; , 2"ȰE x_["Y j|[r]A{8uU*%޷x% Q[+Ds?D%"~%&њW 9}S<a?4zi!dgExRd'Uu| !$3%z8pZus/~:qZd2Փ[ǻ<9 IkMn8E(֠/ěFs@[{?޹u9.5BcuQ+ Y^euoƠ vuj+:&3\$˥r ysYYga8/uPȃ'fĀCN+r= ={ݳ<yIh_79ݲw!baiC'+EbbP"A3ǧ~T,jaD I;ǐ;TV2J6\}]ɠXeXlk9۳kcGwWfholomiִuƆjCyYzX\eeJצh*YIv/˼LfC x+udjt5GoӴ$5-KDG$**9ߍVCy}ʸ {P[KmkE{#Ym:Vӱ&o"dC+aiVUlXY,r_f5n9S&&eMM sN٪7g2/}ܲþ3mfQ9Rr_rdɕ̪c`iǭ!.ItCV">є>V#33vg3DulFLĆ C{%^?aydw4)cuBqY[3 Hrj40 t;)p,J,xY˛-y.2ز+a4N*K6O|Bə2l.CZ)ˌ J>7�e9tfd* �*5oŊŧ6[c>/(hRDKKdnقN7t2xG^fe#S ˭icR5K\zX2ی?*{ ~\m0H%%Yq]3rdcpJ=-fNUj͌6$`zʩ-D*vHX)x08eiL^F7 j X=&0fѵhMDe0zɫJf =RY�R5 UGQQ:BZFFl^Ұ\Kbm݋t&Ur8gqI1y ,-[ |`#}&3<cff--,9ퟑf̓lp`{un|9?k!ǝ{ܯ�AyvzlsF,@&P&0K(r}kiު�GƱEȜt*Y8.R8r{Y|x=,!?"ّZgɐR]Nۓ)$TW٤ gzȃ+ԯA)5R_㏉핺X!ׇ><\!'Q>OSY~]wh<E#/a~ĎptFuD||շBE^^]:,2OaKz i%h́1Bo}}AFج mWn~ <|t�.Qk?Eصp<(SI ^H5yh)+f[K³$XMuYuMh*o sCao?UE{ endstream endobj 24 0 obj << /Type /FontDescriptor /FontName /686696+NotoSerif /FontFile2 23 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 25 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 26 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 727 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 612 500 500 500 500 500 500 500 500 500 500 500 500 500 500 492 613 535 500 500 634 319 500 500 310 944 645 577 500 500 471 500 352 634 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 27 0000000000 65535 f 0000000015 00000 n 0000000268 00000 n 0000000470 00000 n 0000000548 00000 n 0000000599 00000 n 0000000871 00000 n 0000001092 00000 n 0000001388 00000 n 0000001552 00000 n 0000001808 00000 n 0000002131 00000 n 0000008777 00000 n 0000011195 00000 n 0000011239 00000 n 0000011288 00000 n 0000011341 00000 n 0000011558 00000 n 0000011856 00000 n 0000012113 00000 n 0000012437 00000 n 0000012511 00000 n 0000012660 00000 n 0000012750 00000 n 0000017865 00000 n 0000018079 00000 n 0000019441 00000 n trailer << /Size 27 /Root 2 0 R /Info 1 0 R >> startxref 20355 %%EOF ������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/page-background-image-width.pdf���������������������������0000664�0000000�0000000�00000034023�14163570564�0026377�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Document Title) /Creator (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /ModDate (D:20190702043637-06'00') /CreationDate (D:20190702043637-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 11 0 R /Outlines 14 0 R /PageLabels 16 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 842.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 459 >> stream q q 150.0 0.0 0.0 150.0 222.64 345.945 cm /I1 Do Q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 192.5425 777.054 Td /F1.0 27 Tf <446f63756d656e74205469746c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 746.406 Td /F3.0 10.5 Tf [<546869732070616765206861732061206261636b> 20.0195 <67726f756e6420696d61676520746861742069732072> 20.0195 <6174686572206c6f75642e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /XObject << /I1 8 0 R >> /Font << /F1.0 9 0 R /F3.0 13 0 R >> >> >> endobj 8 0 obj << /Type /XObject /Subtype /Image /Height 12 /Width 12 /BitsPerComponent 8 /ColorSpace /DeviceRGB /Length 21 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 3 /BitsPerComponent 8 /Columns 12 >>] >> stream xc\@0fT�<� endstream endobj 9 0 obj << /Type /Font /BaseFont /68f192+NotoSerif-Bold /Subtype /TrueType /FontDescriptor 18 0 R /FirstChar 32 /LastChar 255 /Widths 20 0 R /ToUnicode 19 0 R >> endobj 10 0 obj [7 0 R /XYZ 0 758.37 null] endobj 11 0 obj << /Type /Names /Dests 12 0 R >> endobj 12 0 obj << /Names [(__anchor-top) 10 0 R] >> endobj 13 0 obj << /Type /Font /BaseFont /39d1a2+NotoSerif /Subtype /TrueType /FontDescriptor 22 0 R /FirstChar 32 /LastChar 255 /Widths 24 0 R /ToUnicode 23 0 R >> endobj 14 0 obj << /Type /Outlines /Count 1 /First 15 0 R /Last 15 0 R >> endobj 15 0 obj << /Title <feff0044006f00630075006d0065006e00740020005400690074006c0065> /Parent 14 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 16 0 obj << /Nums [0 << /P (1) >>] >> endobj 17 0 obj << /Length1 3744 /Length 2184 /Filter [/FlateDecode] >> stream xV}lS?gqȇB̳ώ?8$8g! (_l??v h-Z@[>P"DcZi4iiCe&MEڴRHB:f{{ �dB$SZރ(}<53=,:!G�%]8gcB9MxK$nTڧn"G3`h6;:|C:ړ1_a @Uw.Fj@E@`v)@VJȠ3賦T+e>C l�+@Ԍzz_㈃<L^U]xL5ojl sWwK7oL].|+Q(kdoPzSV=sbh kE] `$T͒\A*)KbhE* ݲcf*^מdm=RAc 6sB9sUPkr}5zc$5 bMJ5ZI=`$x١'~:ꔿ39 ٯsW }٠ciu; mncQD} lAw<iLFZ֯''xuHo^ΈW/Dh@t_8cWFOpˇܘ=so)$'v5I9yzzyuKxklu76Z:[[O᫭_Vbktv[s{^~oAJI[4Ŭ`(y1A*u [XtKӭ ۃA-6Ƈt}:[kf‹Q_ck3=g.Zݣ_> s4,jZ|շ'[qZ4s$&:BM77Dyg\weo*?mB3=(ϭrTWI LRb*SeN>.|r콓aB]wsVn<^]KP&jn.e%!z:H.Yj|j*hXt֘0Z0[hȌlПԻ .=[F_5<ON->5rwTf\kEbo^Q5 ~ѩݴclUfޯlr:k7ԍ&QwgYwԯ:a!ݹID?n(N.UKy5'8F:R[ $s& HO�;}t]iN/\ Xa0=rH9C7q6$?,d,u e¨B�Y Gq]Z<8::,h E4^޾xC#r=ⲩϸC ) ZE\G+8 'x@i0[ NC TR ΀jQpC BIWC uD闀:)5sW'% ^ Ҫ॰ (\DPp-$R20{ ^]t.F _xVˁV ´+x<&ffx"zܭvP) ۗJcPs|Y>6!3XICFk7 8*"0! Ia;`UNxlyz1FļȎ Ov^VS1G,bZdS!O㬓}gęie=.#@vⳆՔu%4ʹ}t&)9$b8{Ӑhkj zedl$ aVZe$FɣLaDٳ5HdGkKlkɹ]KEv:HXK cͰhchC(/qi+b0<3I+*x..+BGD\y\߁ 7.,r<)'gI+q)Ge[2u.?K_YVz;4c! '|:N,Ol_&FiaùaD+-bJcraJqHC+Z+״ =R!/cDqWE5602>X{e2g1.r"Xx`�+΢|Qn~x/.>[x6Nhe˺ endstream endobj 18 0 obj << /Type /FontDescriptor /FontName /68f192+NotoSerif-Bold /FontFile2 17 0 R /FontBBox [-212 -250 1306 1058] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 19 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 20 0 obj [259 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 767 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 652 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 526 1000 570 1000 1000 1000 352 1000 1000 352 985 666 612 1000 1000 1000 1000 404 666 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj 21 0 obj << /Length1 5452 /Length 3305 /Filter [/FlateDecode] >> stream xX}P[ו?'!I $${! A`C0I"6v6inI'mz<ig';nNtf3N6nmxZ#yO$>F{|w�Jp D]g0Jnb͇S|E4>bUWSgg2?bry9*zKP~jl8~ c|7.3؟MR鿆EAVÿoyPQ]i/G9|Evϟad* @UXT %j"pr(@ m\MJQQ&#G]Иx}ojM|7iXfU*]gGoe.{w@mAMFUHLz_0F?ᷪSJoK:}`0`N9q,^o36fTЉ5?Qj45Z[ (XM*ZXIE>ˣwT}džf.*CQ-f|u6{nT 9cꜦi?Rso1/7WYGϏ}z35# -Ͱj5l1ꉻX#ϑ:h;7f{Zmv6j  /Eoh=|7vdK^ WVC.T8=TV̀k j;]wH;B|Dkk귣gLdo+.&Dd"Bo~߅.,vMOY{NjœWLG4_}>| v<;G:*M[L.cΝhaEb刟H' /S~TQ֖a^O#J7W>kWAkj $i*TK{'1sj-`-*V-8r(W|yW<n\6m8q=5Z*o88k}lRMic&7ˍ:WRQ^'>a0Q8'EH<'cP7l1OY!%^ˊz!ՙ<s7[P/.U +vM=PPF^/œeviXM^9{5d75{GbOG;-g&zc Lu8_-/_8&&JRVn(qL^\~.7`K:Gg]/5uE֚*u|`MB=9CGk_~<SX~qè]ux+|o^*ߜx|ک\ӹ] lWLJIWQr8?>V悘<RF(]= NĄҫލ^Wv]--bQ}+Se]NC~YmAh h#7-$ )vGzUYكP6}ON l;@.W&:s0\w jVSro٭ Vp~S5 V >Q&v'hf7כ|21DH^Yw6G;G)smeu{ZtYD]]x +nKhƱXG3K>{`;u2:[>c-FdPdop/C9o 9pS@?�v@l—)\*% b|pTzVO2[eMW޽U{[뷒ɛk>MkSÀPwo;{yi"c?٘-]T ڝ=:=A9J[%fF9% ~ fq`#,KPU`wfUjĪov[j0֚ʟs~HjC5fZbպD;r,�$8[%ޱVCY!wġĐeo|?̐hjwwc>f:XSP`굴,%u Vx`d:k[A|!Rlrcx]M)Um` Ht|h/!?O*'sͣ%rHd ~yk'^=>Vѿ:2>kuBošX.om7"cE~! gi "Jr\'F=BEk(Wc.1wdrSD#.0 6",23 4ӏe0SO<sV Z{z4&X]^8r).oʱPz$C@()[Pν4 {rG@̅agȴ"C'CQ̯g<0>e~25Gb]3:⥟Ξ^Udn80BdV(.KrxVS )<|WP?4~|(P2I΀Hr$$們$wr @ В$w<4Ԗ\%x$W $+ITzm}<II^�$/i\v U0rmr66}R4slw4أp=l@"ːB76Ӯ p4(wb0>u$Ykb/mu=F8{,,IᏅcX<^Z%XG!HcF!"%fiF 1Q`ZiK/wG~>I0\cl#lfח1Ӆ5̱H4:,ZCMFQ:ƆT2^ %Wb6Y&#"Q!BI H 5B?RMC|!Qj H,#i/sڅ,׸jE(L@1!XC>`J%|<?_sK"||O$΋>&<.<.jP(_boxI3gUiYB$GC-Q^C:Żckzl!dSa;Fi`"sΙG]11$ĘxXF{!|/=AܭvpYk xrfPCzzG:7eCIGVdz1ݑX?Ry sw=;A]dR_' endstream endobj 22 0 obj << /Type /FontDescriptor /FontName /39d1a2+NotoSerif /FontFile2 21 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 23 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 24 0 obj [259 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 250 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 612 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 562 613 492 613 535 1000 538 634 319 1000 584 310 944 645 577 613 1000 471 451 352 634 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj xref 0 25 0000000000 65535 f 0000000015 00000 n 0000000268 00000 n 0000000470 00000 n 0000000527 00000 n 0000000578 00000 n 0000000850 00000 n 0000001360 00000 n 0000001694 00000 n 0000001960 00000 n 0000002129 00000 n 0000002172 00000 n 0000002221 00000 n 0000002274 00000 n 0000002439 00000 n 0000002513 00000 n 0000002662 00000 n 0000002707 00000 n 0000004981 00000 n 0000005200 00000 n 0000006562 00000 n 0000007688 00000 n 0000011083 00000 n 0000011297 00000 n 0000012659 00000 n trailer << /Size 25 /Root 2 0 R /Info 1 0 R >> startxref 13776 %%EOF �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/page-background-image.pdf���������������������������������0000664�0000000�0000000�00000037142�14163570564�0025267�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Document Title) /Creator (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /ModDate (D:20190702043555-06'00') /CreationDate (D:20190702043555-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 14 0 R /Outlines 16 0 R /PageLabels 18 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 842.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 2 /Kids [7 0 R 12 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 220 >> stream q q 595.28 0.0 0.0 838.1702 0.0 1.8599 cm /I1 Do Q /DeviceRGB cs 0.6 0.6 0.6 scn /DeviceRGB CS 0.6 0.6 0.6 SCN BT 350.129 361.6965 Td /F1.0 27 Tf <446f63756d656e74205469746c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /XObject << /I1 8 0 R >> /Font << /F1.0 10 0 R >> >> >> endobj 8 0 obj << /Type /XObject /Subtype /Image /Height 842 /Width 598 /BitsPerComponent 8 /ColorSpace /DeviceRGB /SMask 9 0 R /Length 5150 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 3 /BitsPerComponent 8 /Columns 598 >>] >> stream xvǢ@Q sI3H#>&Fǚj!+U]}^W�b �eH �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �Q@%�DI �QK_�@zS?q=A?~O︘&� |Ƨ ]F|W&�1b͛?̋k < X ޏxa`8 3󢆀%�[x|ɥ1,o2F%�˛Iٙ0&fcxpɵ0n,v0@M>,[N6F2ž)~^ގlfjt;wv򶖺$`aO]:rsss}}=~׃733?ѸW^_ كDpL#>}{ػwFoF}6fM1=?fCC X;">~8R17W(ao%q|$fc&|[mj?~z6.xm\a#< XZ1Rq_O&T_j9 fvщׯ_oߝ}'Oruu]ވޑv}G8g@m`l!:a9N~qq_F�!OQ|]?ce#fR_ڄs$vodo\c ^ bo=ֿfv^O]PmcwF>|#`'6D Xd(jnic9oov{73]=ɉ1ܻer8l߿٥_x&�>Esa#Z;@6{.{˽:YЕ,ea[_9l~e#G#g ɑP6Ls9`'A:3,c5ãE.5<p5,B1ӆC%pjzzvu$`W=l [ wf<CE¬$`ka0? qm1f[m>+ XLi eO9GD{ ^:,JR&Lݱz2lӳ3^Z @ELal Q!<pυْ@co'{̸L^䫠$ ka&5� SϻvD$&0?ؚ ؈c7#g~%?rɵ0777ò_ @I(d旱H#FkH QMf7oQԇ.8 @#6c{;?i͓ږ@Ǹ6Yݱ!7sa#37] @#L;寯'TGw3 |uTM$&wDn>rr4{Ks~~>9{WWWK$~,|e&Zc7bz(eϜg%�)OZ Ͻ̩F޾};ueFwU:ژ쎈l~/�h ff/ǘ~l;9=7?iOWoomo[,{/pLf pSݻQ#Ǚl^mKaLLjTdܿ1{ƃƨÇf6u|+_tp< {jz=_?4*|"&gAmx}mr8dh ^__oo_}qq|ҏ,a�NڈШy+w/HFHF7oa [W_}|-oqG8g?hpF'.6Fh~qo^d[eM^Lgvp03'@�.]2Kw;j¬$ׯw+9///brga{_[q4&B{N;I @݃|{c'M$Av_>ݻw ] �y;Viqt@,^U-o߾=hqWn]�S7xlwGۜ H= w'98x$ {8lڊSߖ7E�ouaիW#~?t_~{swokF^n,}O&�D�8  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J@�$(  J] endstream endobj 9 0 obj << /Type /XObject /Subtype /Image /Height 842 /Width 598 /BitsPerComponent 8 /ColorSpace /DeviceGray /Decode [0 1] /Length 2156 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 1 /BitsPerComponent 8 /Columns 598 >>] >> stream x 0�A#؄A wZ灿F" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +"dE$ + Y0 ȊȊȊȊȊ7dE`p!Y+;YYYYYYYYYYYYY?""cy Y0 X Z[CdE@VdEN@VdE@V@@VdE}+" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +" +� endstream endobj 10 0 obj << /Type /Font /BaseFont /e83e9b+NotoSerif /Subtype /TrueType /FontDescriptor 20 0 R /FirstChar 32 /LastChar 255 /Widths 22 0 R /ToUnicode 21 0 R >> endobj 11 0 obj << /Length 205 >> stream q q 595.28 0.0 0.0 838.1702 0.0 1.8599 cm /I2 Do Q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 12 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 11 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /XObject << /I2 8 0 R >> /Font << /F1.0 10 0 R >> >> >> endobj 13 0 obj [12 0 R /XYZ 0 841.89 null] endobj 14 0 obj << /Type /Names /Dests 15 0 R >> endobj 15 0 obj << /Names [(__anchor-top) 13 0 R] >> endobj 16 0 obj << /Type /Outlines /Count 1 /First 17 0 R /Last 17 0 R >> endobj 17 0 obj << /Title <feff0044006f00630075006d0065006e00740020005400690074006c0065> /Parent 16 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 18 0 obj << /Nums [0 << /P (i) >> 1 << /P (1) >>] >> endobj 19 0 obj << /Length1 3732 /Length 2180 /Filter [/FlateDecode] >> stream xWkp>jeۖ@^[ccdXm�6€X[kIA =b $4N3CSHf0mLmӖg)%ɔ!vҔB3C$zjmdcݻ{wwϽW�z"!1SXaG<�)!<+fnd7PH^[~I,]ڧ^D�m~lj}h8cw`@bHo~7ȗBw^MuW� ІMx`k<" [P�?8]FQiP sawSgq@7gDJ,NOJsPY%tUoM:s֭ЫosG_i[L9ԍ;W'^iB~id68?C^3@D;H"simAl$*Κ|Z%T]t5r빧0w Uxr,aKb:|5n? ̘#+3q7HҾO{]>>=@ߺoBCg [|W\:p<=_mPm޶٬hx:L겲kN"(*a%& Kz=K[w?>sٳᎤ6DK *~Msݷv>w;O^*!uc,|bZ_Y3й[22xQ%- P3јY$dJwo06Ք4+EhNsմu6S^ɶ|Ӄ ؝.VI̕ᆕr9ՎkȃZ/[Q%ؖ-/N婢L~\ev5\pOod;wfpALR޽<ݷȢxqEsCX%ZӁTUe2Nm�6MٚzVj sC|H:ŋfUz~`lO{tvFǽ퀫Aؔz,[![H),�gc=>cϤ{hdkM[DRR╓XOF/$:;1+Ǝh{~O jP \eDMea wM-A+{ԿwMfhkN&؝Dr40ϟah5I2ju$pmZONw>層Z&}Sˌs5X(̜+J'G9[J}o7(\ψ@&o:JuLz\` 4jnanӗJAUKЮmv,bAkuGD <'S;R9;$<S9$;gSM 4WK9-G))лp.kdt'kWqGe ;W֒p/c?^pB SȆ7UBX \pU9Гr@jU\ ĩZ0>ςزDo:(#?T< t+6Ѝ*Pq=Ϩx.* 4+ƤqxtjT<*Ӛ_x4q&/InW,D>Z,?`g]1~\I'$� CH?q< `x$ ["AlǗFKVB_O ¨ )ß$2~%W|U Ea9C/>z+0tL!Ca|`{G③[[+GaQ %iŷ}f#8T\bǣW C<|e@J; "$) Db2~.Grx |\CSfiX QB_>1.?cŨ$/?/fAq%+a< =J0Ղ:+{%H,!kĊV8ޅ/!VƪzBjZX< +<+zY=1Ȏ5#0+cX"앢|/=q_@`8f}Uu*5t+ ߥcYYvV9JY(bCzVT5=,^ʟ%^zsS_iڏS7lۺeUͳ endstream endobj 20 0 obj << /Type /FontDescriptor /FontName /e83e9b+NotoSerif /FontFile2 19 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 21 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 22 0 obj [259 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 727 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 612 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 492 1000 535 1000 1000 1000 319 1000 1000 310 944 645 577 1000 1000 1000 1000 352 634 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj xref 0 23 0000000000 65535 f 0000000015 00000 n 0000000268 00000 n 0000000470 00000 n 0000000534 00000 n 0000000585 00000 n 0000000857 00000 n 0000001128 00000 n 0000001450 00000 n 0000006863 00000 n 0000009284 00000 n 0000009449 00000 n 0000009706 00000 n 0000010030 00000 n 0000010074 00000 n 0000010123 00000 n 0000010176 00000 n 0000010250 00000 n 0000010399 00000 n 0000010459 00000 n 0000012729 00000 n 0000012943 00000 n 0000014305 00000 n trailer << /Size 23 /Root 2 0 R /Info 1 0 R >> startxref 15431 %%EOF ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/page-prepress-custom-margins.pdf��������������������������0000664�0000000�0000000�00000055656�14163570564�0026713�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Book Title) /Creator (Asciidoctor PDF 1.5.0.beta.3.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.3.dev, based on Prawn 2.2.2) /ModDate (D:20190820235810-06'00') /CreationDate (D:20190820235810-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 14 0 R /Outlines 27 0 R /PageLabels 33 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 6 /Kids [7 0 R 10 0 R 12 0 R 19 0 R 22 0 R 25 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 162 >> stream q /DeviceRGB cs 0.6 0.6 0.6 scn /DeviceRGB CS 0.6 0.6 0.6 SCN BT 423.794 361.6965 Td /F1.0 27 Tf <426f6f6b205469746c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 8 0 R >> >> >> endobj 8 0 obj << /Type /Font /BaseFont /f9d1ab+NotoSerif /Subtype /TrueType /FontDescriptor 37 0 R /FirstChar 32 /LastChar 255 /Widths 39 0 R /ToUnicode 38 0 R >> endobj 9 0 obj << /Length 4 >> stream q Q endstream endobj 10 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 9 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 11 0 obj << /Length 339 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 54.0 782.394 Td /F2.0 22 Tf <46697273742043686170746572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /Stamp1 Do 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 546.769 14.263 Td /F1.0 9 Tf <31> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 12 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 11 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 17 0 R /F1.0 8 0 R >> /XObject << /Stamp1 34 0 R >> >> >> endobj 13 0 obj [12 0 R /XYZ 0 841.89 null] endobj 14 0 obj << /Type /Names /Dests 15 0 R >> endobj 15 0 obj << /Names [(__anchor-top) 13 0 R (_a_section) 20 0 R (_b_section) 26 0 R (_first_chapter) 16 0 R (_last_chapter) 23 0 R] >> endobj 16 0 obj [12 0 R /XYZ 0 841.89 null] endobj 17 0 obj << /Type /Font /BaseFont /fe840d+NotoSerif-Bold /Subtype /TrueType /FontDescriptor 41 0 R /FirstChar 32 /LastChar 255 /Widths 43 0 R /ToUnicode 42 0 R >> endobj 18 0 obj << /Length 330 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 42.48 786.666 Td /F2.0 18 Tf <412053656374696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /Stamp2 Do 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 43.48 14.263 Td /F1.0 9 Tf <32> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 19 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 18 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 17 0 R /F1.0 8 0 R >> /XObject << /Stamp2 35 0 R >> >> >> endobj 20 0 obj [19 0 R /XYZ 0 841.89 null] endobj 21 0 obj << /Length 337 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 54.0 782.394 Td /F2.0 22 Tf <4c6173742043686170746572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /Stamp1 Do 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 546.769 14.263 Td /F1.0 9 Tf <33> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 22 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 21 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 17 0 R /F1.0 8 0 R >> /XObject << /Stamp1 34 0 R >> >> >> endobj 23 0 obj [22 0 R /XYZ 0 841.89 null] endobj 24 0 obj << /Length 330 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 42.48 786.666 Td /F2.0 18 Tf <422053656374696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /Stamp2 Do 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 43.48 14.263 Td /F1.0 9 Tf <34> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 25 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 24 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 17 0 R /F1.0 8 0 R >> /XObject << /Stamp2 35 0 R >> >> >> endobj 26 0 obj [25 0 R /XYZ 0 841.89 null] endobj 27 0 obj << /Type /Outlines /Count 5 /First 28 0 R /Last 31 0 R >> endobj 28 0 obj << /Title <feff0042006f006f006b0020005400690074006c0065> /Parent 27 0 R /Count 0 /Next 29 0 R /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 29 0 obj << /Title <feff0046006900720073007400200043006800610070007400650072> /Parent 27 0 R /Count 1 /First 30 0 R /Last 30 0 R /Next 31 0 R /Prev 28 0 R /Dest [12 0 R /XYZ 0 841.89 null] >> endobj 30 0 obj << /Title <feff0041002000530065006300740069006f006e> /Parent 29 0 R /Count 0 /Dest [19 0 R /XYZ 0 841.89 null] >> endobj 31 0 obj << /Title <feff004c00610073007400200043006800610070007400650072> /Parent 27 0 R /Count 1 /First 32 0 R /Last 32 0 R /Prev 29 0 R /Dest [22 0 R /XYZ 0 841.89 null] >> endobj 32 0 obj << /Title <feff0042002000530065006300740069006f006e> /Parent 31 0 R /Count 0 /Dest [25 0 R /XYZ 0 841.89 null] >> endobj 33 0 obj << /Nums [0 << /P (i) >> 1 << /P (ii) >> 2 << /P (1) >> 3 << /P (2) >> 4 << /P (3) >> 5 << /P (4) >>] >> endobj 34 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 595.28 841.89] /Length 160 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d q 0.25 w /DeviceRGB CS 0.8667 0.8667 0.8667 SCN 54.0 30.0 m 552.8 30.0 l S Q Q endstream endobj 35 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 595.28 841.89] /Length 162 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d q 0.25 w /DeviceRGB CS 0.8667 0.8667 0.8667 SCN 42.48 30.0 m 541.28 30.0 l S Q Q endstream endobj 36 0 obj << /Length1 8056 /Length 4912 /Filter [/FlateDecode] >> stream xY}P[ו?'r0gac!!cl X$l䤶$Yq65i6_rg:κ$t2L;I3Nv34=N;NiL5hϽz8n'ssλI� Pxyb61TW#S�R453?y@{&:k]#@vԩMh~Z=(?P^@ylDL!5頻WC-h" F g+l=}=A,.( (b|bP(/=+y�Y ǒ4=�[�nC�ljEQ|$n Kr̹.&w5Ad &cqRܹ\'Dq7'Q;PZMv0_}VXR!%o?-Y \ KKnʭmrpLWR/]֐}-1iPBIEȏM;\/VY킭B{Ҭ1dl$d:Xdl'gHs=O[y|Gsi#?~ʵ8i˫mi}=7%0f=l)e&Whdﲡ7h͟pl,kruyU&Ѯ7xOtW+Lk8T5:}5ӖÝUͬu8ON ⭻#_8vݖv;M<2�Ƶ J31MVJpx`i2,_ha\~ZוvAHYF|+<d<Wo$ȯ-3h}~]h a�m+UcZZ!H5 3.5R>a3.Wm]r`m*LDG<ġ<{DOeOK=遦켖ϝN񦥹"gl:6P=IXרLT\@bc*QcuUmV[mR:QV%w~qOftY%+LhxC:gJYFܬrF_2i 1Vl ²J%';nd1@=Ej=)~ƥ';xJR7~lmu;[/aN[9Q м>[/^,l+Zɤȷ^Dwl*QY\\lZ7,<~֍~)}k}E^^EVl7lg̔\DRApA61NϯfZn2Äˤ)n%F]^-gYz2/Eh.5[O V˭t9xj;HicAyX~แQ_᭦u ?ʗy=~q{ɂ/`Fܹj5Hp,݌*w׬^Ut=t[*:y[!l[_g}]<͵νhiIlߖ)|Ub絩qWs);,Pj'ͶRc)ndPijv4*_1d0[Ǜ=NzWG*8z?dY .Yោf2P<<eq,f/ H 5RB U<}f�!ϑ|x m|Oa}p|c$9E L+;L jI# tznn%!@^.|kA~!d{\ ,R؈z`?02:Ml 亠>A\钊TqZ}@GSq JQ5GT\eCŵ'>U$dVl(%WT<v_x*ۅ*#** T<څ߮U *⠊o i </Cy֌ά'xxj:Iiw4:5 +혙#l(AGBPX(h.B !a—$_ЍQg R/D`k:vdmVK!lCu X(uIL(jEQ509 )C�D#| M L#SBױ@gG36)`Mkp4B` Z=aEl d< z[)D�&CEf _OP"<=f;xX(نGQ # p$i<]# fHHjE�2-Ns+aqez;wؑd2RWwqwu":[7J֡!:Ih#I>E:C[.u8}"9 G?{.?O 6pE#IN&!/3P$CqQw~: E23 l{Éd<<>1Ъ7uWw҃##N7]\cG{4Fs4t_&4L%;l[d4D,4 OЙ@dj.0+ 6 $<=GXZGtJ~jVi&rq'n$Hl #0b6 YVMs]7#ZDu(4Xm:hUR/un~O=v(>S-;z�^piKhDg~faۏ#LqЪw\:;2m}"<zwC4w$L#kRLCߺpr5" A5|/Dd99aN)s'Kx8LXk4>U7ױʭ~ YL':)xK?yHAG߽7}o{r~=DwR C3ŽE ň!:βY"$Ӏ}Pڣɩ4ѧвgh,datrsr]Rք:\'ס&:rfr$5 HbYp_A [/=ovlC:a}5*_" [չ D ː>l7ڋ=tq .?r{:د׉}l}"z~*+~kS7 p[zˤ˕_r0±DpAʅ+<u>}^'(ȹ˹+礳^:wܭss& O$mhwT,'eM,)]E3^"K7L6*Cu!>h8XmE -)(cCc>ϠG34 t*k6l<mBR <CRa_[bNp $F!KQܿWWSj!EC{ y3й_it{_Ďu߲:}D"iIIl*0' ^ssp0*Vh"Crr AМbfP\vu  r::;ZݼjݾڴU2V 7rID/:e*~E{z,L~!ם: s5z5'Ҵg4kDO[RK2U~94j.l@hY6 S:6rȷ뒻B:K-,r=e[$ ۝-do`**C^`4,JC)m)ib훩g07`"pnJtRO*fFv(5'Q;)ék:,II/Gx"nމTDkBR.RT`)0.SZKŜa⬥N3>E&-f]{Dolm0Vu>k6~z(( ތ/̆K`3F\)Ց~eaA Yl0ʩBu)Z SESnY'`))=?4p"GF㔝~tPKc΄~yv5F:c>N)%rZ<Yΰ˧Ӕ.,`+Sg֟1 /N9.jgT* ޕk0*vRdoǒYsM3rkywFgdrE#{ LO%۔MAŽيeƢpug+szUPj3P|^W*c0R+0U,�=C O {*!'OS>e{cQuiM`U9Sq 띫tsyMkwu~w*! t.4e ``I-,[XrДLno+IVNK-|2yjxNrOz/ Dw `P221 o.O;DzW1KBӯbbRs]i1Nd+tc9#G"wE"hTrNc exfH,'SzQ|~\`NsY;oꕒ{^٫;헼?s/9v]xo3 w?+c|S_: _;+p~E]Âp}D3|BrXBpU^X7-|O/HziU֏1.áH_G!Fت"˷[p K*:pE:cd <",}D֖hKhY,f«‹`8S&Rhz\d endstream endobj 37 0 obj << /Type /FontDescriptor /FontName /f9d1ab+NotoSerif /FontFile2 36 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 38 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 39 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 559 559 559 559 500 500 500 500 500 500 500 500 500 500 500 500 500 653 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 612 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 535 500 500 500 319 500 584 310 500 500 577 500 500 500 500 352 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj 40 0 obj << /Length1 9048 /Length 5547 /Filter [/FlateDecode] >> stream xZ P[י>+! B<B #@d0/!lז@)I7~uIxv'x]tMݶ^'mmt&uvdI Ǝd;;{ysB) IӓAlIm_#ӧS7B? &ݙ@({gQu JFhK9A=ԗQfm ~�ЮP$S@θ}} Cl;ٰw6xO2Bton| E(z@x!MBT3@W>@ WGp˸ %$Bʑ"->z !&Ir MK+>j~vVWo$LeՂ35uƚmTz-5`ZO Eդ{ZWƥrMYev!9"=)KV'oeAFR0EӬg.}]ۤI 3 2siWUn`qyXED$ l =j+TBfd*pܮZ=uq;fyļgn*hVY^ZZ~jŸtuժnslwoSet]ļJƼ+ z(htwiA$#J~ CS)LI/6PvqEq7=7ے.>t1ع;p!ڬpmSՍ܇+'=5vm U:/ϔkJ;FqɷOI+\q@1YI e0\R`{{XnZ^rLUP䗪ƘP69ܻ|]Y r*sâAW!B[Eg LԷc#4UPfQ?˄0z5yܽO׶wW B|2JC\"JQ!CYMut[΢Yh9j gZ*7y}j+;uEÆaK{q_@3q~6}vޘ]գ[[;|@v0Im bbQ)RiNX%,ml1w֨.ձ)G"_پ"Y!mzQlqQbvҚQꋚm}C5Y%#V?xE[yF? oVvC6V!7{_ھ]_jJ)0u_oJֻ(vo5iu:WV{W.GɍyeC/ϴ~ *&h@+ɒ|)*Ak+em9_!K=x窛.LvZ<_?N?z~S.=_]9ZLr D#U6xϤ/&M)M&ћGL+k陥 Eգ ׬ί4o%4äZƫ8O+7:Kj#ymm>ĂF=S]Qbw+;5zi_ )(I='@Q_ѷ)ϫ %*?ĕsYFmhZV:'9Sȥqeō+dkR3Ğ�Sĩ\YV_$ϩ>=Bfsqf0%N>ҐԁK6\p?b}ߏb9GYYƑaJhGjTTEzw=vކݏDlS33 3ϐXcJo=ϸ҅q݄kᵺ~XI82K+%sw5{2ahI֨ҭNmJ=H"OwVv_rtcxpګ?Uþs޻(CFLjn &w=#FꨔkޚדIʪ]#'fg0Һ`Ras5k(H >{|[M[UMؓ>vt|)tǯMZ:lpMݎfwฮ=Ir.Mi#6}K0ִ%zJUeƼ:.'ö2rpYz+X5Tg z;vWZW)E=_ߐ)i\P LU*zֳocil+ɲe$͎vRk:[=-Nfp3 b)4^ǨE柘%JInpH&q&g>51<jc~v3 |$c^E@W 5c@ۨnCZr5_}b'.C #$* F>>KJHz[4BTb$ E1o"jmĢZq"_B~n{|�T{m MFŨBfNkFݨ~4F |<>0 3$�18FJU#|AiT8 z_qq3�WmE\KQ& ?$$ 3~Feo"oIDE<S"GēnqOFE<mS6M}"~O}3"BaTpHSQm]ekk؞Ph:e3z#`GPF^uE(h? ᮁ/PFC(+AU"�>+"P^h �ECOB*xmSḦ́`i=ퟙfuɬ8g)`qܞ r~?@AE-cpaUd<ܣ'Oyk<Z"W#b-fat͡ؤ/x % 50XH0Qۧ ;u0,z(7 Q7D!^;1nąFAdA"YO"OۤE[@z_4:l0}iP0A(hŀ>zrӟzpFDATBMƒL)?,RhTnwK%Ds3ozgqJfjV; #Ѱbb{-갱V[a*qh}Zl58`Zf;lu\z`N3F"l(?I�鶲SJ"I gӰYo8菐^;*ӡ I\IXr'nnQa7fh')os{dOvP-oP ȝNj!7y6*A`UT/.-Epڄl>9:[m7 iGwgFH?>- m" VŽ{3aaGF:nrz$-1s&pXmN8ⱘ, \HDGPX 9n0wf㜜lNaN)~G?GTϥd?#>6 vvlD`-$+T/X~ILQS,=vx^y(Y&_:[i_~M;n:Jp&J < g�1zԘ &�% Pn@bd*ZkVЪ]zpum>J]_X bre 4 +P 1X*-&Cm2T%r}K2<B`0 a1"nz7P꧄{PPh :5(708e,hUrhpc .ȸbn|#mw,XW^Yys录/$tґ@ B] Lk_x MW\W_y _ŊKK'.xyVS(?_xp>t=q Z~&t:ƭ/vrOqz4m:i<xrIc':IpIj$~8vR^fP ּ0}m4]5e)}K!3yGaLK` \Noд|pr͎-ѽvFхQIQmW3iXnWv  )u9.&!C oW^TXQV۷6' FjN^zGK?|qԙ+{c"(TDZЅ`Aq DtJtnnO!LCZZ҅*gji#ssBlL>j߷m1wuvڷ4756UWҒbHSLSSSe R C*-\K]<S͹po\<*[yx%rs6NSӴl+jU寚9vv@sBgJ"fl屋|-%'uq]$]%ZJJn2rnv oB*4/K,n?4찘SWiS90OD~b::.UxlY&\-i7]-4-_{ +kԾ =}7Ub^Rtqs+i}Dn^t-&8V-.mٲ8k!Z^Q5}+\>,.=cxJYk4jMsgӆ8>h.°#NZ} Z'Oȋ#v2>1A4lE)z8 _|S5bzdp ,XeY^R nY'@) H ޼ilb gq| UxGacr1,U`!nWr$fY60E+xghf-$>o$ s }ܰyd\{sU"VuAZ)Хbj or':IR7+4u<5q};")&sb =yYuPj �npP %2( le^3 5|E^W4)!ANWZ]%ìfH�zׇ85�@�g99˛dm=BDDg:z Y&u8֪7; a0(lD8' D`y]`3y4�yhr"g,r6GZ0v^+N]%|K>2dGl;+b:.Rru:a< J@B F M-�2F&[0\b�cIQᬷE8RN-aJO⼝|2Ivq) 3 *]TXu6%D( I.Kc"Z{Gq)G ] >|S?Ac/ݤbET}mPap* }'t u-u~twOU|$(s>Rel"󘷙)%%*j鏥oPP3d5I8G*MmBϒ>>�w)+ endstream endobj 41 0 obj << /Type /FontDescriptor /FontName /fe840d+NotoSerif-Bold /FontFile2 40 0 R /FontBBox [-212 -250 1306 1058] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 42 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 43 0 obj [259 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 752 671 667 600 600 621 600 600 600 600 600 653 600 600 600 600 600 600 585 600 600 600 600 600 600 600 600 600 600 600 600 600 599 600 526 600 570 600 600 666 352 600 600 600 600 666 612 645 600 522 487 404 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600] endobj xref 0 44 0000000000 65535 f 0000000015 00000 n 0000000264 00000 n 0000000466 00000 n 0000000558 00000 n 0000000609 00000 n 0000000881 00000 n 0000001094 00000 n 0000001390 00000 n 0000001554 00000 n 0000001607 00000 n 0000001880 00000 n 0000002271 00000 n 0000002612 00000 n 0000002656 00000 n 0000002705 00000 n 0000002845 00000 n 0000002889 00000 n 0000003059 00000 n 0000003441 00000 n 0000003782 00000 n 0000003826 00000 n 0000004215 00000 n 0000004556 00000 n 0000004600 00000 n 0000004982 00000 n 0000005323 00000 n 0000005367 00000 n 0000005441 00000 n 0000005587 00000 n 0000005786 00000 n 0000005916 00000 n 0000006098 00000 n 0000006228 00000 n 0000006349 00000 n 0000006617 00000 n 0000006887 00000 n 0000011889 00000 n 0000012103 00000 n 0000013465 00000 n 0000014379 00000 n 0000020016 00000 n 0000020235 00000 n 0000021597 00000 n trailer << /Size 44 /Root 2 0 R /Info 1 0 R >> startxref 22511 %%EOF ����������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/page-prepress-margins-body-only.pdf�����������������������0000664�0000000�0000000�00000052256�14163570564�0027306�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20191221165946-07'00') /CreationDate (D:20191221165946-07'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 22 0 R /PageLabels 28 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 4 /Kids [7 0 R 14 0 R 17 0 R 20 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 339 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 54.0 782.394 Td /F2.0 22 Tf <46697273742043686170746572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /Stamp1 Do 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 546.769 14.263 Td /F1.0 9 Tf <31> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 12 0 R /F1.0 31 0 R >> /XObject << /Stamp1 29 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R (_a_section) 15 0 R (_b_section) 21 0 R (_first_chapter) 11 0 R (_last_chapter) 18 0 R] >> endobj 11 0 obj [7 0 R /XYZ 0 841.89 null] endobj 12 0 obj << /Type /Font /BaseFont /fe840d+NotoSerif-Bold /Subtype /TrueType /FontDescriptor 33 0 R /FirstChar 32 /LastChar 255 /Widths 35 0 R /ToUnicode 34 0 R >> endobj 13 0 obj << /Length 330 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 42.48 786.666 Td /F2.0 18 Tf <412053656374696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /Stamp2 Do 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 43.48 14.263 Td /F1.0 9 Tf <32> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 14 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 13 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 12 0 R /F1.0 31 0 R >> /XObject << /Stamp2 30 0 R >> >> >> endobj 15 0 obj [14 0 R /XYZ 0 841.89 null] endobj 16 0 obj << /Length 337 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 54.0 782.394 Td /F2.0 22 Tf <4c6173742043686170746572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /Stamp1 Do 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 546.769 14.263 Td /F1.0 9 Tf <33> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 17 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 16 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 12 0 R /F1.0 31 0 R >> /XObject << /Stamp1 29 0 R >> >> >> endobj 18 0 obj [17 0 R /XYZ 0 841.89 null] endobj 19 0 obj << /Length 330 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 42.48 786.666 Td /F2.0 18 Tf <422053656374696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /Stamp2 Do 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 43.48 14.263 Td /F1.0 9 Tf <34> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 20 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 19 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 12 0 R /F1.0 31 0 R >> /XObject << /Stamp2 30 0 R >> >> >> endobj 21 0 obj [20 0 R /XYZ 0 841.89 null] endobj 22 0 obj << /Type /Outlines /Count 5 /First 23 0 R /Last 26 0 R >> endobj 23 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 22 0 R /Count 0 /Next 24 0 R /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 24 0 obj << /Title <feff0046006900720073007400200043006800610070007400650072> /Parent 22 0 R /Count 1 /First 25 0 R /Last 25 0 R /Next 26 0 R /Prev 23 0 R /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 25 0 obj << /Title <feff0041002000530065006300740069006f006e> /Parent 24 0 R /Count 0 /Dest [14 0 R /XYZ 0 841.89 null] >> endobj 26 0 obj << /Title <feff004c00610073007400200043006800610070007400650072> /Parent 22 0 R /Count 1 /First 27 0 R /Last 27 0 R /Prev 24 0 R /Dest [17 0 R /XYZ 0 841.89 null] >> endobj 27 0 obj << /Title <feff0042002000530065006300740069006f006e> /Parent 26 0 R /Count 0 /Dest [20 0 R /XYZ 0 841.89 null] >> endobj 28 0 obj << /Nums [0 << /P (1) >> 1 << /P (2) >> 2 << /P (3) >> 3 << /P (4) >>] >> endobj 29 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 595.28 841.89] /Length 160 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d q 0.25 w /DeviceRGB CS 0.8667 0.8667 0.8667 SCN 54.0 30.0 m 552.8 30.0 l S Q Q endstream endobj 30 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 595.28 841.89] /Length 162 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d q 0.25 w /DeviceRGB CS 0.8667 0.8667 0.8667 SCN 42.48 30.0 m 541.28 30.0 l S Q Q endstream endobj 31 0 obj << /Type /Font /BaseFont /d2d128+NotoSerif /Subtype /TrueType /FontDescriptor 37 0 R /FirstChar 32 /LastChar 255 /Widths 39 0 R /ToUnicode 38 0 R >> endobj 32 0 obj << /Length1 9048 /Length 5547 /Filter [/FlateDecode] >> stream xZ P[י>+! B<B #@d0/!lז@)I7~uIxv'x]tMݶ^'mmt&uvdI Ǝd;;{ysB) IӓAlIm_#ӧS7B? &ݙ@({gQu JFhK9A=ԗQfm ~�ЮP$S@θ}} Cl;ٰw6xO2Bton| E(z@x!MBT3@W>@ WGp˸ %$Bʑ"->z !&Ir MK+>j~vVWo$LeՂ35uƚmTz-5`ZO Eդ{ZWƥrMYev!9"=)KV'oeAFR0EӬg.}]ۤI 3 2siWUn`qyXED$ l =j+TBfd*pܮZ=uq;fyļgn*hVY^ZZ~jŸtuժnslwoSet]ļJƼ+ z(htwiA$#J~ CS)LI/6PvqEq7=7ے.>t1ع;p!ڬpmSՍ܇+'=5vm U:/ϔkJ;FqɷOI+\q@1YI e0\R`{{XnZ^rLUP䗪ƘP69ܻ|]Y r*sâAW!B[Eg LԷc#4UPfQ?˄0z5yܽO׶wW B|2JC\"JQ!CYMut[΢Yh9j gZ*7y}j+;uEÆaK{q_@3q~6}vޘ]գ[[;|@v0Im bbQ)RiNX%,ml1w֨.ձ)G"_پ"Y!mzQlqQbvҚQꋚm}C5Y%#V?xE[yF? oVvC6V!7{_ھ]_jJ)0u_oJֻ(vo5iu:WV{W.GɍyeC/ϴ~ *&h@+ɒ|)*Ak+em9_!K=x窛.LvZ<_?N?z~S.=_]9ZLr D#U6xϤ/&M)M&ћGL+k陥 Eգ ׬ί4o%4äZƫ8O+7:Kj#ymm>ĂF=S]Qbw+;5zi_ )(I='@Q_ѷ)ϫ %*?ĕsYFmhZV:'9Sȥqeō+dkR3Ğ�Sĩ\YV_$ϩ>=Bfsqf0%N>ҐԁK6\p?b}ߏb9GYYƑaJhGjTTEzw=vކݏDlS33 3ϐXcJo=ϸ҅q݄kᵺ~XI82K+%sw5{2ahI֨ҭNmJ=H"OwVv_rtcxpګ?Uþs޻(CFLjn &w=#FꨔkޚדIʪ]#'fg0Һ`Ras5k(H >{|[M[UMؓ>vt|)tǯMZ:lpMݎfwฮ=Ir.Mi#6}K0ִ%zJUeƼ:.'ö2rpYz+X5Tg z;vWZW)E=_ߐ)i\P LU*zֳocil+ɲe$͎vRk:[=-Nfp3 b)4^ǨE柘%JInpH&q&g>51<jc~v3 |$c^E@W 5c@ۨnCZr5_}b'.C #$* F>>KJHz[4BTb$ E1o"jmĢZq"_B~n{|�T{m MFŨBfNkFݨ~4F |<>0 3$�18FJU#|AiT8 z_qq3�WmE\KQ& ?$$ 3~Feo"oIDE<S"GēnqOFE<mS6M}"~O}3"BaTpHSQm]ekk؞Ph:e3z#`GPF^uE(h? ᮁ/PFC(+AU"�>+"P^h �ECOB*xmSḦ́`i=ퟙfuɬ8g)`qܞ r~?@AE-cpaUd<ܣ'Oyk<Z"W#b-fat͡ؤ/x % 50XH0Qۧ ;u0,z(7 Q7D!^;1nąFAdA"YO"OۤE[@z_4:l0}iP0A(hŀ>zrӟzpFDATBMƒL)?,RhTnwK%Ds3ozgqJfjV; #Ѱbb{-갱V[a*qh}Zl58`Zf;lu\z`N3F"l(?I�鶲SJ"I gӰYo8菐^;*ӡ I\IXr'nnQa7fh')os{dOvP-oP ȝNj!7y6*A`UT/.-Epڄl>9:[m7 iGwgFH?>- m" VŽ{3aaGF:nrz$-1s&pXmN8ⱘ, \HDGPX 9n0wf㜜lNaN)~G?GTϥd?#>6 vvlD`-$+T/X~ILQS,=vx^y(Y&_:[i_~M;n:Jp&J < g�1zԘ &�% Pn@bd*ZkVЪ]zpum>J]_X bre 4 +P 1X*-&Cm2T%r}K2<B`0 a1"nz7P꧄{PPh :5(708e,hUrhpc .ȸbn|#mw,XW^Yys录/$tґ@ B] Lk_x MW\W_y _ŊKK'.xyVS(?_xp>t=q Z~&t:ƭ/vrOqz4m:i<xrIc':IpIj$~8vR^fP ּ0}m4]5e)}K!3yGaLK` \Noд|pr͎-ѽvFхQIQmW3iXnWv  )u9.&!C oW^TXQV۷6' FjN^zGK?|qԙ+{c"(TDZЅ`Aq DtJtnnO!LCZZ҅*gji#ssBlL>j߷m1wuvڷ4756UWҒbHSLSSSe R C*-\K]<S͹po\<*[yx%rs6NSӴl+jU寚9vv@sBgJ"fl屋|-%'uq]$]%ZJJn2rnv oB*4/K,n?4찘SWiS90OD~b::.UxlY&\-i7]-4-_{ +kԾ =}7Ub^Rtqs+i}Dn^t-&8V-.mٲ8k!Z^Q5}+\>,.=cxJYk4jMsgӆ8>h.°#NZ} Z'Oȋ#v2>1A4lE)z8 _|S5bzdp ,XeY^R nY'@) H ޼ilb gq| UxGacr1,U`!nWr$fY60E+xghf-$>o$ s }ܰyd\{sU"VuAZ)Хbj or':IR7+4u<5q};")&sb =yYuPj �npP %2( le^3 5|E^W4)!ANWZ]%ìfH�zׇ85�@�g99˛dm=BDDg:z Y&u8֪7; a0(lD8' D`y]`3y4�yhr"g,r6GZ0v^+N]%|K>2dGl;+b:.Rru:a< J@B F M-�2F&[0\b�cIQᬷE8RN-aJO⼝|2Ivq) 3 *]TXu6%D( I.Kc"Z{Gq)G ] >|S?Ac/ݤbET}mPap* }'t u-u~twOU|$(s>Rel"󘷙)%%*j鏥oPP3d5I8G*MmBϒ>>�w)+ endstream endobj 33 0 obj << /Type /FontDescriptor /FontName /fe840d+NotoSerif-Bold /FontFile2 32 0 R /FontBBox [-212 -250 1306 1058] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 34 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 35 0 obj [259 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 752 671 667 600 600 621 600 600 600 600 600 653 600 600 600 600 600 600 585 600 600 600 600 600 600 600 600 600 600 600 600 600 599 600 526 600 570 600 600 666 352 600 600 600 600 666 612 645 600 522 487 404 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600] endobj 36 0 obj << /Length1 6984 /Length 4099 /Filter [/FlateDecode] >> stream xY}pSWv?=ɖ?eA -&`mI1K=[ϒ[R8g3lX/P %0NLg%&;̶;;)0d&b^=Bq~;s{�*h=;>%'_Ց鉞] @M&eb#?йP<:9^ Ѩ"^}]姧Ia)r/E2ʡd"_7R?(o(y,@ߞL)ɗ|w":o�9Fw!ևbkL| 0 "8UsyBܶ` onskwC#CVGKZU!J[;=QUAEj>ѴܽnOƫmhi][n[͆uVsmmj+eQ"v+bbF~dͭClf &n-QN /~־0Zz I6<9вl29ɝl3;#O:ⶴv){4_fϱVRX#la&oc8݁ v}-Pnӕ=R hvM]8޳qԷ԰".#]R|~C[#پ]+lN_T<} ںmpo*:qMB|| Q!g*o񰩱޴pp[?,.v^Wlŏ';yx0/䷍DS͹ub-Ϫj![qL5,Q,ǰHlfpϗ-|#z05iuk##w Њ s2=]:A!gpP/`ȥ@EɄBA;?#.=_e E�"ckƽDt%F(Y '8 J+.SpMEh5\d렚5\UPK:5$4bpnr] |%P-Thx l5l^ /Cq /:^.f /vqPW~񴆯U+`}Wov'өX$-M-'L*/>nt 鈒VRG !I KCڂf)hIPP8 {Lb;<+%[b@"^%`1Q"I9ŧE 2'tM#x6,!ΙMS8-|q)4byĽwKFT:f[vhqv/?[-;pX4ʔz&&V:|ŝb?2 r۝Kyv]J:S"O=b-؇ S.9#h,4+a:6MI ڐCFF("SHFa LaG;2;dmvcl^xbQ2v4$aA6<BplHrߟ6tF(+kn� )ma>ɆcpO=d}4bY\f/I3ԛS ˗ظO'񰒢B}`RlGcL*6QԔ㴾Km|~=929s{pP΁ p5P%椨riHTr2(N$ +I'DlNHV*Jj*f b9H⨒NdS4L2TdTD ߾ld0 l#)lq0b~okUQ=A`h@QB3?Ʋ0o3C2}NxzbA'8=~l܉(D>˜ĶGVЪwR\:I6:e^U_)(@L|8;&τ8:|2;)˥5O8;sr,!T83@TΥx*̤mؤ-=:6Ҹ$PڸՓزGpdCl mw@(0DjRC3‰E kY{X8j"\ɃB'~5ON1OC rY 3 c=g]�PĚJ*OQ}(I)b%\N`K{b@JRX1\"B ~"za+9Z&na`֗x3 $4&Ȱ%XbсH@Zd^ZW &D}<s?u^U3|蝷ȶ[c9DDJ}Of K%w&o׽-|5ѷD`0sAWH{.Np#(sgug^:{ݳz& $ف5u,$zzRbMX+B3ދ5<u]a1S`9ec_fJxWjj=MѡQqׯ}ޞҺ-=Ctk5*R7:*ARJaOʻbN{ptDOs>?_WU)esZtJgs|;xrvW[5T_ c:31>5t:cII[l^349>ʀA- P?A}>jeVv4 hMc2(m;#C]]=w&a󦍖zs]mubUYiHы nƐ(62YW�!!Uσ:* q55't4˚Hۡ%%yrp8Yꧼu gPwmEUns4s\7WV-u+ 0WZ2쩛AxGnV-n9 .llS+$nNuŜƘp5\˽>o<,CUqnNtrUVuRI-\Q$[2߿%QDs_> "kHݛy$Ʌr|~fLF)7W^K0Y6׃1%mb=k C2"G20K:Ct}j6w p 8֠*ȵ?YY0@NY’}|ZVg0cjŗ&[]Ewڃ\U}U-8k6%gBŗS`cjSB!h hck-އ{ޅ=drCsv)VK]dfc�MSUkTL9[h$g0bߚFMmt1ݘݹ@xB ¸+'hdVAJ%Ȓf֩B/vhF~F 4b$Qш�`GjZ-18eiN^F3-ԭ4=&?@gݻVD5 0n3 ,�KCO {-* HTuژ{xD4ghq= p 8$0gis./ - ӜAZާKw*?)XHsgLnd’椾pNڹ66/^dZ ؀_לDN 9)F�z";{S�'G2 i7:py8fX ̸ c(FxֻiO\(r֢GD@HsD(*WK%K-{ xË13Zb薾md?WadW?{G@^3�;zz?~˰�~G= |îk)kC#foK\/wsNnoȷ0bpfI/,,n:wH0VFNƇw׷W �ߓ!28R>gZ=wpcIv8/%xkH?]߇y W .O:�šsK=ՂE^E.̂a 5Eܺ;BE0!?w_ endstream endobj 37 0 obj << /Type /FontDescriptor /FontName /d2d128+NotoSerif /FontFile2 36 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 38 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 39 0 obj [500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 559 559 559 559 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 40 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000537 00000 n 0000000588 00000 n 0000000860 00000 n 0000001250 00000 n 0000001590 00000 n 0000001632 00000 n 0000001680 00000 n 0000001819 00000 n 0000001862 00000 n 0000002032 00000 n 0000002414 00000 n 0000002756 00000 n 0000002800 00000 n 0000003189 00000 n 0000003531 00000 n 0000003575 00000 n 0000003957 00000 n 0000004299 00000 n 0000004343 00000 n 0000004417 00000 n 0000004555 00000 n 0000004753 00000 n 0000004883 00000 n 0000005065 00000 n 0000005195 00000 n 0000005285 00000 n 0000005553 00000 n 0000005823 00000 n 0000005988 00000 n 0000011625 00000 n 0000011844 00000 n 0000013206 00000 n 0000014120 00000 n 0000018309 00000 n 0000018523 00000 n 0000019885 00000 n trailer << /Size 40 /Root 2 0 R /Info 1 0 R >> startxref 20799 %%EOF ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/page-prepress-margins-no-cover.pdf������������������������0000664�0000000�0000000�00000055652�14163570564�0027125�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Book Title) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20191221154626-07'00') /CreationDate (D:20191221154626-07'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 14 0 R /Outlines 27 0 R /PageLabels 33 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 6 /Kids [7 0 R 10 0 R 12 0 R 19 0 R 22 0 R 25 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 162 >> stream q /DeviceRGB cs 0.6 0.6 0.6 scn /DeviceRGB CS 0.6 0.6 0.6 SCN BT 418.034 361.6965 Td /F1.0 27 Tf <426f6f6b205469746c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 8 0 R >> >> >> endobj 8 0 obj << /Type /Font /BaseFont /f9d1ab+NotoSerif /Subtype /TrueType /FontDescriptor 37 0 R /FirstChar 32 /LastChar 255 /Widths 39 0 R /ToUnicode 38 0 R >> endobj 9 0 obj << /Length 4 >> stream q Q endstream endobj 10 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 9 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 11 0 obj << /Length 339 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 54.0 782.394 Td /F2.0 22 Tf <46697273742043686170746572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /Stamp1 Do 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 546.769 14.263 Td /F1.0 9 Tf <31> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 12 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 11 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 17 0 R /F1.0 8 0 R >> /XObject << /Stamp1 34 0 R >> >> >> endobj 13 0 obj [12 0 R /XYZ 0 841.89 null] endobj 14 0 obj << /Type /Names /Dests 15 0 R >> endobj 15 0 obj << /Names [(__anchor-top) 13 0 R (_a_section) 20 0 R (_b_section) 26 0 R (_first_chapter) 16 0 R (_last_chapter) 23 0 R] >> endobj 16 0 obj [12 0 R /XYZ 0 841.89 null] endobj 17 0 obj << /Type /Font /BaseFont /fe840d+NotoSerif-Bold /Subtype /TrueType /FontDescriptor 41 0 R /FirstChar 32 /LastChar 255 /Widths 43 0 R /ToUnicode 42 0 R >> endobj 18 0 obj << /Length 330 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 42.48 786.666 Td /F2.0 18 Tf <412053656374696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /Stamp2 Do 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 43.48 14.263 Td /F1.0 9 Tf <32> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 19 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 18 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 17 0 R /F1.0 8 0 R >> /XObject << /Stamp2 35 0 R >> >> >> endobj 20 0 obj [19 0 R /XYZ 0 841.89 null] endobj 21 0 obj << /Length 337 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 54.0 782.394 Td /F2.0 22 Tf <4c6173742043686170746572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /Stamp1 Do 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 546.769 14.263 Td /F1.0 9 Tf <33> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 22 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 21 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 17 0 R /F1.0 8 0 R >> /XObject << /Stamp1 34 0 R >> >> >> endobj 23 0 obj [22 0 R /XYZ 0 841.89 null] endobj 24 0 obj << /Length 330 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 42.48 786.666 Td /F2.0 18 Tf <422053656374696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /Stamp2 Do 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 43.48 14.263 Td /F1.0 9 Tf <34> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 25 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 24 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 17 0 R /F1.0 8 0 R >> /XObject << /Stamp2 35 0 R >> >> >> endobj 26 0 obj [25 0 R /XYZ 0 841.89 null] endobj 27 0 obj << /Type /Outlines /Count 5 /First 28 0 R /Last 31 0 R >> endobj 28 0 obj << /Title <feff0042006f006f006b0020005400690074006c0065> /Parent 27 0 R /Count 0 /Next 29 0 R /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 29 0 obj << /Title <feff0046006900720073007400200043006800610070007400650072> /Parent 27 0 R /Count 1 /First 30 0 R /Last 30 0 R /Next 31 0 R /Prev 28 0 R /Dest [12 0 R /XYZ 0 841.89 null] >> endobj 30 0 obj << /Title <feff0041002000530065006300740069006f006e> /Parent 29 0 R /Count 0 /Dest [19 0 R /XYZ 0 841.89 null] >> endobj 31 0 obj << /Title <feff004c00610073007400200043006800610070007400650072> /Parent 27 0 R /Count 1 /First 32 0 R /Last 32 0 R /Prev 29 0 R /Dest [22 0 R /XYZ 0 841.89 null] >> endobj 32 0 obj << /Title <feff0042002000530065006300740069006f006e> /Parent 31 0 R /Count 0 /Dest [25 0 R /XYZ 0 841.89 null] >> endobj 33 0 obj << /Nums [0 << /P (i) >> 1 << /P (ii) >> 2 << /P (1) >> 3 << /P (2) >> 4 << /P (3) >> 5 << /P (4) >>] >> endobj 34 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 595.28 841.89] /Length 160 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d q 0.25 w /DeviceRGB CS 0.8667 0.8667 0.8667 SCN 54.0 30.0 m 552.8 30.0 l S Q Q endstream endobj 35 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 595.28 841.89] /Length 162 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d q 0.25 w /DeviceRGB CS 0.8667 0.8667 0.8667 SCN 42.48 30.0 m 541.28 30.0 l S Q Q endstream endobj 36 0 obj << /Length1 8056 /Length 4912 /Filter [/FlateDecode] >> stream xY}P[ו?'r0gac!!cl X$l䤶$Yq65i6_rg:κ$t2L;I3Nv34=N;NiL5hϽz8n'ssλI� Pxyb61TW#S�R453?y@{&:k]#@vԩMh~Z=(?P^@ylDL!5頻WC-h" F g+l=}=A,.( (b|bP(/=+y�Y ǒ4=�[�nC�ljEQ|$n Kr̹.&w5Ad &cqRܹ\'Dq7'Q;PZMv0_}VXR!%o?-Y \ KKnʭmrpLWR/]֐}-1iPBIEȏM;\/VY킭B{Ҭ1dl$d:Xdl'gHs=O[y|Gsi#?~ʵ8i˫mi}=7%0f=l)e&Whdﲡ7h͟pl,kruyU&Ѯ7xOtW+Lk8T5:}5ӖÝUͬu8ON ⭻#_8vݖv;M<2�Ƶ J31MVJpx`i2,_ha\~ZוvAHYF|+<d<Wo$ȯ-3h}~]h a�m+UcZZ!H5 3.5R>a3.Wm]r`m*LDG<ġ<{DOeOK=遦켖ϝN񦥹"gl:6P=IXרLT\@bc*QcuUmV[mR:QV%w~qOftY%+LhxC:gJYFܬrF_2i 1Vl ²J%';nd1@=Ej=)~ƥ';xJR7~lmu;[/aN[9Q м>[/^,l+Zɤȷ^Dwl*QY\\lZ7,<~֍~)}k}E^^EVl7lg̔\DRApA61NϯfZn2Äˤ)n%F]^-gYz2/Eh.5[O V˭t9xj;HicAyX~แQ_᭦u ?ʗy=~q{ɂ/`Fܹj5Hp,݌*w׬^Ut=t[*:y[!l[_g}]<͵νhiIlߖ)|Ub絩qWs);,Pj'ͶRc)ndPijv4*_1d0[Ǜ=NzWG*8z?dY .Yោf2P<<eq,f/ H 5RB U<}f�!ϑ|x m|Oa}p|c$9E L+;L jI# tznn%!@^.|kA~!d{\ ,R؈z`?02:Ml 亠>A\钊TqZ}@GSq JQ5GT\eCŵ'>U$dVl(%WT<v_x*ۅ*#** T<څ߮U *⠊o i </Cy֌ά'xxj:Iiw4:5 +혙#l(AGBPX(h.B !a—$_ЍQg R/D`k:vdmVK!lCu X(uIL(jEQ509 )C�D#| M L#SBױ@gG36)`Mkp4B` Z=aEl d< z[)D�&CEf _OP"<=f;xX(نGQ # p$i<]# fHHjE�2-Ns+aqez;wؑd2RWwqwu":[7J֡!:Ih#I>E:C[.u8}"9 G?{.?O 6pE#IN&!/3P$CqQw~: E23 l{Éd<<>1Ъ7uWw҃##N7]\cG{4Fs4t_&4L%;l[d4D,4 OЙ@dj.0+ 6 $<=GXZGtJ~jVi&rq'n$Hl #0b6 YVMs]7#ZDu(4Xm:hUR/un~O=v(>S-;z�^piKhDg~faۏ#LqЪw\:;2m}"<zwC4w$L#kRLCߺpr5" A5|/Dd99aN)s'Kx8LXk4>U7ױʭ~ YL':)xK?yHAG߽7}o{r~=DwR C3ŽE ň!:βY"$Ӏ}Pڣɩ4ѧвgh,datrsr]Rք:\'ס&:rfr$5 HbYp_A [/=ovlC:a}5*_" [չ D ː>l7ڋ=tq .?r{:د׉}l}"z~*+~kS7 p[zˤ˕_r0±DpAʅ+<u>}^'(ȹ˹+礳^:wܭss& O$mhwT,'eM,)]E3^"K7L6*Cu!>h8XmE -)(cCc>ϠG34 t*k6l<mBR <CRa_[bNp $F!KQܿWWSj!EC{ y3й_it{_Ďu߲:}D"iIIl*0' ^ssp0*Vh"Crr AМbfP\vu  r::;ZݼjݾڴU2V 7rID/:e*~E{z,L~!ם: s5z5'Ҵg4kDO[RK2U~94j.l@hY6 S:6rȷ뒻B:K-,r=e[$ ۝-do`**C^`4,JC)m)ib훩g07`"pnJtRO*fFv(5'Q;)ék:,II/Gx"nމTDkBR.RT`)0.SZKŜa⬥N3>E&-f]{Dolm0Vu>k6~z(( ތ/̆K`3F\)Ց~eaA Yl0ʩBu)Z SESnY'`))=?4p"GF㔝~tPKc΄~yv5F:c>N)%rZ<Yΰ˧Ӕ.,`+Sg֟1 /N9.jgT* ޕk0*vRdoǒYsM3rkywFgdrE#{ LO%۔MAŽيeƢpug+szUPj3P|^W*c0R+0U,�=C O {*!'OS>e{cQuiM`U9Sq 띫tsyMkwu~w*! t.4e ``I-,[XrДLno+IVNK-|2yjxNrOz/ Dw `P221 o.O;DzW1KBӯbbRs]i1Nd+tc9#G"wE"hTrNc exfH,'SzQ|~\`NsY;oꕒ{^٫;헼?s/9v]xo3 w?+c|S_: _;+p~E]Âp}D3|BrXBpU^X7-|O/HziU֏1.áH_G!Fت"˷[p K*:pE:cd <",}D֖hKhY,f«‹`8S&Rhz\d endstream endobj 37 0 obj << /Type /FontDescriptor /FontName /f9d1ab+NotoSerif /FontFile2 36 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 38 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 39 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 559 559 559 559 500 500 500 500 500 500 500 500 500 500 500 500 500 653 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 612 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 535 500 500 500 319 500 584 310 500 500 577 500 500 500 500 352 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj 40 0 obj << /Length1 9048 /Length 5547 /Filter [/FlateDecode] >> stream xZ P[י>+! B<B #@d0/!lז@)I7~uIxv'x]tMݶ^'mmt&uvdI Ǝd;;{ysB) IӓAlIm_#ӧS7B? &ݙ@({gQu JFhK9A=ԗQfm ~�ЮP$S@θ}} Cl;ٰw6xO2Bton| E(z@x!MBT3@W>@ WGp˸ %$Bʑ"->z !&Ir MK+>j~vVWo$LeՂ35uƚmTz-5`ZO Eդ{ZWƥrMYev!9"=)KV'oeAFR0EӬg.}]ۤI 3 2siWUn`qyXED$ l =j+TBfd*pܮZ=uq;fyļgn*hVY^ZZ~jŸtuժnslwoSet]ļJƼ+ z(htwiA$#J~ CS)LI/6PvqEq7=7ے.>t1ع;p!ڬpmSՍ܇+'=5vm U:/ϔkJ;FqɷOI+\q@1YI e0\R`{{XnZ^rLUP䗪ƘP69ܻ|]Y r*sâAW!B[Eg LԷc#4UPfQ?˄0z5yܽO׶wW B|2JC\"JQ!CYMut[΢Yh9j gZ*7y}j+;uEÆaK{q_@3q~6}vޘ]գ[[;|@v0Im bbQ)RiNX%,ml1w֨.ձ)G"_پ"Y!mzQlqQbvҚQꋚm}C5Y%#V?xE[yF? oVvC6V!7{_ھ]_jJ)0u_oJֻ(vo5iu:WV{W.GɍyeC/ϴ~ *&h@+ɒ|)*Ak+em9_!K=x窛.LvZ<_?N?z~S.=_]9ZLr D#U6xϤ/&M)M&ћGL+k陥 Eգ ׬ί4o%4äZƫ8O+7:Kj#ymm>ĂF=S]Qbw+;5zi_ )(I='@Q_ѷ)ϫ %*?ĕsYFmhZV:'9Sȥqeō+dkR3Ğ�Sĩ\YV_$ϩ>=Bfsqf0%N>ҐԁK6\p?b}ߏb9GYYƑaJhGjTTEzw=vކݏDlS33 3ϐXcJo=ϸ҅q݄kᵺ~XI82K+%sw5{2ahI֨ҭNmJ=H"OwVv_rtcxpګ?Uþs޻(CFLjn &w=#FꨔkޚדIʪ]#'fg0Һ`Ras5k(H >{|[M[UMؓ>vt|)tǯMZ:lpMݎfwฮ=Ir.Mi#6}K0ִ%zJUeƼ:.'ö2rpYz+X5Tg z;vWZW)E=_ߐ)i\P LU*zֳocil+ɲe$͎vRk:[=-Nfp3 b)4^ǨE柘%JInpH&q&g>51<jc~v3 |$c^E@W 5c@ۨnCZr5_}b'.C #$* F>>KJHz[4BTb$ E1o"jmĢZq"_B~n{|�T{m MFŨBfNkFݨ~4F |<>0 3$�18FJU#|AiT8 z_qq3�WmE\KQ& ?$$ 3~Feo"oIDE<S"GēnqOFE<mS6M}"~O}3"BaTpHSQm]ekk؞Ph:e3z#`GPF^uE(h? ᮁ/PFC(+AU"�>+"P^h �ECOB*xmSḦ́`i=ퟙfuɬ8g)`qܞ r~?@AE-cpaUd<ܣ'Oyk<Z"W#b-fat͡ؤ/x % 50XH0Qۧ ;u0,z(7 Q7D!^;1nąFAdA"YO"OۤE[@z_4:l0}iP0A(hŀ>zrӟzpFDATBMƒL)?,RhTnwK%Ds3ozgqJfjV; #Ѱbb{-갱V[a*qh}Zl58`Zf;lu\z`N3F"l(?I�鶲SJ"I gӰYo8菐^;*ӡ I\IXr'nnQa7fh')os{dOvP-oP ȝNj!7y6*A`UT/.-Epڄl>9:[m7 iGwgFH?>- m" VŽ{3aaGF:nrz$-1s&pXmN8ⱘ, \HDGPX 9n0wf㜜lNaN)~G?GTϥd?#>6 vvlD`-$+T/X~ILQS,=vx^y(Y&_:[i_~M;n:Jp&J < g�1zԘ &�% Pn@bd*ZkVЪ]zpum>J]_X bre 4 +P 1X*-&Cm2T%r}K2<B`0 a1"nz7P꧄{PPh :5(708e,hUrhpc .ȸbn|#mw,XW^Yys录/$tґ@ B] Lk_x MW\W_y _ŊKK'.xyVS(?_xp>t=q Z~&t:ƭ/vrOqz4m:i<xrIc':IpIj$~8vR^fP ּ0}m4]5e)}K!3yGaLK` \Noд|pr͎-ѽvFхQIQmW3iXnWv  )u9.&!C oW^TXQV۷6' FjN^zGK?|qԙ+{c"(TDZЅ`Aq DtJtnnO!LCZZ҅*gji#ssBlL>j߷m1wuvڷ4756UWҒbHSLSSSe R C*-\K]<S͹po\<*[yx%rs6NSӴl+jU寚9vv@sBgJ"fl屋|-%'uq]$]%ZJJn2rnv oB*4/K,n?4찘SWiS90OD~b::.UxlY&\-i7]-4-_{ +kԾ =}7Ub^Rtqs+i}Dn^t-&8V-.mٲ8k!Z^Q5}+\>,.=cxJYk4jMsgӆ8>h.°#NZ} Z'Oȋ#v2>1A4lE)z8 _|S5bzdp ,XeY^R nY'@) H ޼ilb gq| UxGacr1,U`!nWr$fY60E+xghf-$>o$ s }ܰyd\{sU"VuAZ)Хbj or':IR7+4u<5q};")&sb =yYuPj �npP %2( le^3 5|E^W4)!ANWZ]%ìfH�zׇ85�@�g99˛dm=BDDg:z Y&u8֪7; a0(lD8' D`y]`3y4�yhr"g,r6GZ0v^+N]%|K>2dGl;+b:.Rru:a< J@B F M-�2F&[0\b�cIQᬷE8RN-aJO⼝|2Ivq) 3 *]TXu6%D( I.Kc"Z{Gq)G ] >|S?Ac/ݤbET}mPap* }'t u-u~twOU|$(s>Rel"󘷙)%%*j鏥oPP3d5I8G*MmBϒ>>�w)+ endstream endobj 41 0 obj << /Type /FontDescriptor /FontName /fe840d+NotoSerif-Bold /FontFile2 40 0 R /FontBBox [-212 -250 1306 1058] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 42 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 43 0 obj [259 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 752 671 667 600 600 621 600 600 600 600 600 653 600 600 600 600 600 600 585 600 600 600 600 600 600 600 600 600 600 600 600 600 599 600 526 600 570 600 600 666 352 600 600 600 600 666 612 645 600 522 487 404 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600] endobj xref 0 44 0000000000 65535 f 0000000015 00000 n 0000000260 00000 n 0000000462 00000 n 0000000554 00000 n 0000000605 00000 n 0000000877 00000 n 0000001090 00000 n 0000001386 00000 n 0000001550 00000 n 0000001603 00000 n 0000001876 00000 n 0000002267 00000 n 0000002608 00000 n 0000002652 00000 n 0000002701 00000 n 0000002841 00000 n 0000002885 00000 n 0000003055 00000 n 0000003437 00000 n 0000003778 00000 n 0000003822 00000 n 0000004211 00000 n 0000004552 00000 n 0000004596 00000 n 0000004978 00000 n 0000005319 00000 n 0000005363 00000 n 0000005437 00000 n 0000005583 00000 n 0000005782 00000 n 0000005912 00000 n 0000006094 00000 n 0000006224 00000 n 0000006345 00000 n 0000006613 00000 n 0000006883 00000 n 0000011885 00000 n 0000012099 00000 n 0000013461 00000 n 0000014375 00000 n 0000020012 00000 n 0000020231 00000 n 0000021593 00000 n trailer << /Size 44 /Root 2 0 R /Info 1 0 R >> startxref 22507 %%EOF ��������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/page-prepress-margins.pdf���������������������������������0000664�0000000�0000000�00000055656�14163570564�0025403�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Book Title) /Creator (Asciidoctor PDF 1.5.0.beta.3.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.3.dev, based on Prawn 2.2.2) /ModDate (D:20190820235513-06'00') /CreationDate (D:20190820235513-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 14 0 R /Outlines 27 0 R /PageLabels 33 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 6 /Kids [7 0 R 10 0 R 12 0 R 19 0 R 22 0 R 25 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 162 >> stream q /DeviceRGB cs 0.6 0.6 0.6 scn /DeviceRGB CS 0.6 0.6 0.6 SCN BT 423.794 361.6965 Td /F1.0 27 Tf <426f6f6b205469746c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 8 0 R >> >> >> endobj 8 0 obj << /Type /Font /BaseFont /f9d1ab+NotoSerif /Subtype /TrueType /FontDescriptor 37 0 R /FirstChar 32 /LastChar 255 /Widths 39 0 R /ToUnicode 38 0 R >> endobj 9 0 obj << /Length 4 >> stream q Q endstream endobj 10 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 9 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 11 0 obj << /Length 339 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 54.0 782.394 Td /F2.0 22 Tf <46697273742043686170746572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /Stamp1 Do 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 546.769 14.263 Td /F1.0 9 Tf <31> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 12 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 11 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 17 0 R /F1.0 8 0 R >> /XObject << /Stamp1 34 0 R >> >> >> endobj 13 0 obj [12 0 R /XYZ 0 841.89 null] endobj 14 0 obj << /Type /Names /Dests 15 0 R >> endobj 15 0 obj << /Names [(__anchor-top) 13 0 R (_a_section) 20 0 R (_b_section) 26 0 R (_first_chapter) 16 0 R (_last_chapter) 23 0 R] >> endobj 16 0 obj [12 0 R /XYZ 0 841.89 null] endobj 17 0 obj << /Type /Font /BaseFont /fe840d+NotoSerif-Bold /Subtype /TrueType /FontDescriptor 41 0 R /FirstChar 32 /LastChar 255 /Widths 43 0 R /ToUnicode 42 0 R >> endobj 18 0 obj << /Length 330 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 42.48 786.666 Td /F2.0 18 Tf <412053656374696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /Stamp2 Do 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 43.48 14.263 Td /F1.0 9 Tf <32> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 19 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 18 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 17 0 R /F1.0 8 0 R >> /XObject << /Stamp2 35 0 R >> >> >> endobj 20 0 obj [19 0 R /XYZ 0 841.89 null] endobj 21 0 obj << /Length 337 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 54.0 782.394 Td /F2.0 22 Tf <4c6173742043686170746572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /Stamp1 Do 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 546.769 14.263 Td /F1.0 9 Tf <33> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 22 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 21 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 17 0 R /F1.0 8 0 R >> /XObject << /Stamp1 34 0 R >> >> >> endobj 23 0 obj [22 0 R /XYZ 0 841.89 null] endobj 24 0 obj << /Length 330 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 42.48 786.666 Td /F2.0 18 Tf <422053656374696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /Stamp2 Do 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 43.48 14.263 Td /F1.0 9 Tf <34> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 25 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 24 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 17 0 R /F1.0 8 0 R >> /XObject << /Stamp2 35 0 R >> >> >> endobj 26 0 obj [25 0 R /XYZ 0 841.89 null] endobj 27 0 obj << /Type /Outlines /Count 5 /First 28 0 R /Last 31 0 R >> endobj 28 0 obj << /Title <feff0042006f006f006b0020005400690074006c0065> /Parent 27 0 R /Count 0 /Next 29 0 R /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 29 0 obj << /Title <feff0046006900720073007400200043006800610070007400650072> /Parent 27 0 R /Count 1 /First 30 0 R /Last 30 0 R /Next 31 0 R /Prev 28 0 R /Dest [12 0 R /XYZ 0 841.89 null] >> endobj 30 0 obj << /Title <feff0041002000530065006300740069006f006e> /Parent 29 0 R /Count 0 /Dest [19 0 R /XYZ 0 841.89 null] >> endobj 31 0 obj << /Title <feff004c00610073007400200043006800610070007400650072> /Parent 27 0 R /Count 1 /First 32 0 R /Last 32 0 R /Prev 29 0 R /Dest [22 0 R /XYZ 0 841.89 null] >> endobj 32 0 obj << /Title <feff0042002000530065006300740069006f006e> /Parent 31 0 R /Count 0 /Dest [25 0 R /XYZ 0 841.89 null] >> endobj 33 0 obj << /Nums [0 << /P (i) >> 1 << /P (ii) >> 2 << /P (1) >> 3 << /P (2) >> 4 << /P (3) >> 5 << /P (4) >>] >> endobj 34 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 595.28 841.89] /Length 160 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d q 0.25 w /DeviceRGB CS 0.8667 0.8667 0.8667 SCN 54.0 30.0 m 552.8 30.0 l S Q Q endstream endobj 35 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 595.28 841.89] /Length 162 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d q 0.25 w /DeviceRGB CS 0.8667 0.8667 0.8667 SCN 42.48 30.0 m 541.28 30.0 l S Q Q endstream endobj 36 0 obj << /Length1 8056 /Length 4912 /Filter [/FlateDecode] >> stream xY}P[ו?'r0gac!!cl X$l䤶$Yq65i6_rg:κ$t2L;I3Nv34=N;NiL5hϽz8n'ssλI� Pxyb61TW#S�R453?y@{&:k]#@vԩMh~Z=(?P^@ylDL!5頻WC-h" F g+l=}=A,.( (b|bP(/=+y�Y ǒ4=�[�nC�ljEQ|$n Kr̹.&w5Ad &cqRܹ\'Dq7'Q;PZMv0_}VXR!%o?-Y \ KKnʭmrpLWR/]֐}-1iPBIEȏM;\/VY킭B{Ҭ1dl$d:Xdl'gHs=O[y|Gsi#?~ʵ8i˫mi}=7%0f=l)e&Whdﲡ7h͟pl,kruyU&Ѯ7xOtW+Lk8T5:}5ӖÝUͬu8ON ⭻#_8vݖv;M<2�Ƶ J31MVJpx`i2,_ha\~ZוvAHYF|+<d<Wo$ȯ-3h}~]h a�m+UcZZ!H5 3.5R>a3.Wm]r`m*LDG<ġ<{DOeOK=遦켖ϝN񦥹"gl:6P=IXרLT\@bc*QcuUmV[mR:QV%w~qOftY%+LhxC:gJYFܬrF_2i 1Vl ²J%';nd1@=Ej=)~ƥ';xJR7~lmu;[/aN[9Q м>[/^,l+Zɤȷ^Dwl*QY\\lZ7,<~֍~)}k}E^^EVl7lg̔\DRApA61NϯfZn2Äˤ)n%F]^-gYz2/Eh.5[O V˭t9xj;HicAyX~แQ_᭦u ?ʗy=~q{ɂ/`Fܹj5Hp,݌*w׬^Ut=t[*:y[!l[_g}]<͵νhiIlߖ)|Ub絩qWs);,Pj'ͶRc)ndPijv4*_1d0[Ǜ=NzWG*8z?dY .Yោf2P<<eq,f/ H 5RB U<}f�!ϑ|x m|Oa}p|c$9E L+;L jI# tznn%!@^.|kA~!d{\ ,R؈z`?02:Ml 亠>A\钊TqZ}@GSq JQ5GT\eCŵ'>U$dVl(%WT<v_x*ۅ*#** T<څ߮U *⠊o i </Cy֌ά'xxj:Iiw4:5 +혙#l(AGBPX(h.B !a—$_ЍQg R/D`k:vdmVK!lCu X(uIL(jEQ509 )C�D#| M L#SBױ@gG36)`Mkp4B` Z=aEl d< z[)D�&CEf _OP"<=f;xX(نGQ # p$i<]# fHHjE�2-Ns+aqez;wؑd2RWwqwu":[7J֡!:Ih#I>E:C[.u8}"9 G?{.?O 6pE#IN&!/3P$CqQw~: E23 l{Éd<<>1Ъ7uWw҃##N7]\cG{4Fs4t_&4L%;l[d4D,4 OЙ@dj.0+ 6 $<=GXZGtJ~jVi&rq'n$Hl #0b6 YVMs]7#ZDu(4Xm:hUR/un~O=v(>S-;z�^piKhDg~faۏ#LqЪw\:;2m}"<zwC4w$L#kRLCߺpr5" A5|/Dd99aN)s'Kx8LXk4>U7ױʭ~ YL':)xK?yHAG߽7}o{r~=DwR C3ŽE ň!:βY"$Ӏ}Pڣɩ4ѧвgh,datrsr]Rք:\'ס&:rfr$5 HbYp_A [/=ovlC:a}5*_" [չ D ː>l7ڋ=tq .?r{:د׉}l}"z~*+~kS7 p[zˤ˕_r0±DpAʅ+<u>}^'(ȹ˹+礳^:wܭss& O$mhwT,'eM,)]E3^"K7L6*Cu!>h8XmE -)(cCc>ϠG34 t*k6l<mBR <CRa_[bNp $F!KQܿWWSj!EC{ y3й_it{_Ďu߲:}D"iIIl*0' ^ssp0*Vh"Crr AМbfP\vu  r::;ZݼjݾڴU2V 7rID/:e*~E{z,L~!ם: s5z5'Ҵg4kDO[RK2U~94j.l@hY6 S:6rȷ뒻B:K-,r=e[$ ۝-do`**C^`4,JC)m)ib훩g07`"pnJtRO*fFv(5'Q;)ék:,II/Gx"nމTDkBR.RT`)0.SZKŜa⬥N3>E&-f]{Dolm0Vu>k6~z(( ތ/̆K`3F\)Ց~eaA Yl0ʩBu)Z SESnY'`))=?4p"GF㔝~tPKc΄~yv5F:c>N)%rZ<Yΰ˧Ӕ.,`+Sg֟1 /N9.jgT* ޕk0*vRdoǒYsM3rkywFgdrE#{ LO%۔MAŽيeƢpug+szUPj3P|^W*c0R+0U,�=C O {*!'OS>e{cQuiM`U9Sq 띫tsyMkwu~w*! t.4e ``I-,[XrДLno+IVNK-|2yjxNrOz/ Dw `P221 o.O;DzW1KBӯbbRs]i1Nd+tc9#G"wE"hTrNc exfH,'SzQ|~\`NsY;oꕒ{^٫;헼?s/9v]xo3 w?+c|S_: _;+p~E]Âp}D3|BrXBpU^X7-|O/HziU֏1.áH_G!Fت"˷[p K*:pE:cd <",}D֖hKhY,f«‹`8S&Rhz\d endstream endobj 37 0 obj << /Type /FontDescriptor /FontName /f9d1ab+NotoSerif /FontFile2 36 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 38 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 39 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 559 559 559 559 500 500 500 500 500 500 500 500 500 500 500 500 500 653 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 612 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 535 500 500 500 319 500 584 310 500 500 577 500 500 500 500 352 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj 40 0 obj << /Length1 9048 /Length 5547 /Filter [/FlateDecode] >> stream xZ P[י>+! B<B #@d0/!lז@)I7~uIxv'x]tMݶ^'mmt&uvdI Ǝd;;{ysB) IӓAlIm_#ӧS7B? &ݙ@({gQu JFhK9A=ԗQfm ~�ЮP$S@θ}} Cl;ٰw6xO2Bton| E(z@x!MBT3@W>@ WGp˸ %$Bʑ"->z !&Ir MK+>j~vVWo$LeՂ35uƚmTz-5`ZO Eդ{ZWƥrMYev!9"=)KV'oeAFR0EӬg.}]ۤI 3 2siWUn`qyXED$ l =j+TBfd*pܮZ=uq;fyļgn*hVY^ZZ~jŸtuժnslwoSet]ļJƼ+ z(htwiA$#J~ CS)LI/6PvqEq7=7ے.>t1ع;p!ڬpmSՍ܇+'=5vm U:/ϔkJ;FqɷOI+\q@1YI e0\R`{{XnZ^rLUP䗪ƘP69ܻ|]Y r*sâAW!B[Eg LԷc#4UPfQ?˄0z5yܽO׶wW B|2JC\"JQ!CYMut[΢Yh9j gZ*7y}j+;uEÆaK{q_@3q~6}vޘ]գ[[;|@v0Im bbQ)RiNX%,ml1w֨.ձ)G"_پ"Y!mzQlqQbvҚQꋚm}C5Y%#V?xE[yF? oVvC6V!7{_ھ]_jJ)0u_oJֻ(vo5iu:WV{W.GɍyeC/ϴ~ *&h@+ɒ|)*Ak+em9_!K=x窛.LvZ<_?N?z~S.=_]9ZLr D#U6xϤ/&M)M&ћGL+k陥 Eգ ׬ί4o%4äZƫ8O+7:Kj#ymm>ĂF=S]Qbw+;5zi_ )(I='@Q_ѷ)ϫ %*?ĕsYFmhZV:'9Sȥqeō+dkR3Ğ�Sĩ\YV_$ϩ>=Bfsqf0%N>ҐԁK6\p?b}ߏb9GYYƑaJhGjTTEzw=vކݏDlS33 3ϐXcJo=ϸ҅q݄kᵺ~XI82K+%sw5{2ahI֨ҭNmJ=H"OwVv_rtcxpګ?Uþs޻(CFLjn &w=#FꨔkޚדIʪ]#'fg0Һ`Ras5k(H >{|[M[UMؓ>vt|)tǯMZ:lpMݎfwฮ=Ir.Mi#6}K0ִ%zJUeƼ:.'ö2rpYz+X5Tg z;vWZW)E=_ߐ)i\P LU*zֳocil+ɲe$͎vRk:[=-Nfp3 b)4^ǨE柘%JInpH&q&g>51<jc~v3 |$c^E@W 5c@ۨnCZr5_}b'.C #$* F>>KJHz[4BTb$ E1o"jmĢZq"_B~n{|�T{m MFŨBfNkFݨ~4F |<>0 3$�18FJU#|AiT8 z_qq3�WmE\KQ& ?$$ 3~Feo"oIDE<S"GēnqOFE<mS6M}"~O}3"BaTpHSQm]ekk؞Ph:e3z#`GPF^uE(h? ᮁ/PFC(+AU"�>+"P^h �ECOB*xmSḦ́`i=ퟙfuɬ8g)`qܞ r~?@AE-cpaUd<ܣ'Oyk<Z"W#b-fat͡ؤ/x % 50XH0Qۧ ;u0,z(7 Q7D!^;1nąFAdA"YO"OۤE[@z_4:l0}iP0A(hŀ>zrӟzpFDATBMƒL)?,RhTnwK%Ds3ozgqJfjV; #Ѱbb{-갱V[a*qh}Zl58`Zf;lu\z`N3F"l(?I�鶲SJ"I gӰYo8菐^;*ӡ I\IXr'nnQa7fh')os{dOvP-oP ȝNj!7y6*A`UT/.-Epڄl>9:[m7 iGwgFH?>- m" VŽ{3aaGF:nrz$-1s&pXmN8ⱘ, \HDGPX 9n0wf㜜lNaN)~G?GTϥd?#>6 vvlD`-$+T/X~ILQS,=vx^y(Y&_:[i_~M;n:Jp&J < g�1zԘ &�% Pn@bd*ZkVЪ]zpum>J]_X bre 4 +P 1X*-&Cm2T%r}K2<B`0 a1"nz7P꧄{PPh :5(708e,hUrhpc .ȸbn|#mw,XW^Yys录/$tґ@ B] Lk_x MW\W_y _ŊKK'.xyVS(?_xp>t=q Z~&t:ƭ/vrOqz4m:i<xrIc':IpIj$~8vR^fP ּ0}m4]5e)}K!3yGaLK` \Noд|pr͎-ѽvFхQIQmW3iXnWv  )u9.&!C oW^TXQV۷6' FjN^zGK?|qԙ+{c"(TDZЅ`Aq DtJtnnO!LCZZ҅*gji#ssBlL>j߷m1wuvڷ4756UWҒbHSLSSSe R C*-\K]<S͹po\<*[yx%rs6NSӴl+jU寚9vv@sBgJ"fl屋|-%'uq]$]%ZJJn2rnv oB*4/K,n?4찘SWiS90OD~b::.UxlY&\-i7]-4-_{ +kԾ =}7Ub^Rtqs+i}Dn^t-&8V-.mٲ8k!Z^Q5}+\>,.=cxJYk4jMsgӆ8>h.°#NZ} Z'Oȋ#v2>1A4lE)z8 _|S5bzdp ,XeY^R nY'@) H ޼ilb gq| UxGacr1,U`!nWr$fY60E+xghf-$>o$ s }ܰyd\{sU"VuAZ)Хbj or':IR7+4u<5q};")&sb =yYuPj �npP %2( le^3 5|E^W4)!ANWZ]%ìfH�zׇ85�@�g99˛dm=BDDg:z Y&u8֪7; a0(lD8' D`y]`3y4�yhr"g,r6GZ0v^+N]%|K>2dGl;+b:.Rru:a< J@B F M-�2F&[0\b�cIQᬷE8RN-aJO⼝|2Ivq) 3 *]TXu6%D( I.Kc"Z{Gq)G ] >|S?Ac/ݤbET}mPap* }'t u-u~twOU|$(s>Rel"󘷙)%%*j鏥oPP3d5I8G*MmBϒ>>�w)+ endstream endobj 41 0 obj << /Type /FontDescriptor /FontName /fe840d+NotoSerif-Bold /FontFile2 40 0 R /FontBBox [-212 -250 1306 1058] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 42 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 43 0 obj [259 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 752 671 667 600 600 621 600 600 600 600 600 653 600 600 600 600 600 600 585 600 600 600 600 600 600 600 600 600 600 600 600 600 599 600 526 600 570 600 600 666 352 600 600 600 600 666 612 645 600 522 487 404 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600] endobj xref 0 44 0000000000 65535 f 0000000015 00000 n 0000000264 00000 n 0000000466 00000 n 0000000558 00000 n 0000000609 00000 n 0000000881 00000 n 0000001094 00000 n 0000001390 00000 n 0000001554 00000 n 0000001607 00000 n 0000001880 00000 n 0000002271 00000 n 0000002612 00000 n 0000002656 00000 n 0000002705 00000 n 0000002845 00000 n 0000002889 00000 n 0000003059 00000 n 0000003441 00000 n 0000003782 00000 n 0000003826 00000 n 0000004215 00000 n 0000004556 00000 n 0000004600 00000 n 0000004982 00000 n 0000005323 00000 n 0000005367 00000 n 0000005441 00000 n 0000005587 00000 n 0000005786 00000 n 0000005916 00000 n 0000006098 00000 n 0000006228 00000 n 0000006349 00000 n 0000006617 00000 n 0000006887 00000 n 0000011889 00000 n 0000012103 00000 n 0000013465 00000 n 0000014379 00000 n 0000020016 00000 n 0000020235 00000 n 0000021597 00000 n trailer << /Size 44 /Root 2 0 R /Info 1 0 R >> startxref 22511 %%EOF ����������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/page-watermark-content-only.pdf���������������������������0000664�0000000�0000000�00000156555�14163570564�0026526�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Document Title) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20190918042154-06'00') /CreationDate (D:20190918042154-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 12 0 R /Outlines 28 0 R /PageLabels 30 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 5 /Kids [7 0 R 10 0 R 15 0 R 27 0 R 34 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 54 >> stream q q 595.1291 0.0 0.0 841.89 0.0754 0.0 cm /I1 Do Q Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /XObject << /I1 8 0 R >> >> >> endobj 8 0 obj << /Type /XObject /Subtype /Image /ColorSpace /DeviceRGB /BitsPerComponent 8 /Width 287 /Height 406 /Length 21479 /Filter [/DCTDecode] >> stream �JFIF�^^���C�    $.' ",#(7),01444'9=82<.342�C  2!!22222222222222222222222222222222222222222222222222�����������������A����!1AQ"a2q#BR$3br%CSdᢲ�������������4������!1"AQ2aq#B$R� ��?�V|B-!L, hIمL$ Vf jƑЕC .#Y`tu!gIrT'dX-746+cB} 0$!=�`4ېVƘ=7D 11P7 $&!PYSLD=eBlK-be&) N7@IcC2B'@x<�f & V!,qIȖ l+Yt"G41 ԀF�eD4Ɛ}C`T +C` *edJ)=`Fub:)^Af9h '*%J 48V V жD0ªE�#E(`'%7:2Y,R!kVASHI2@ K�vPP.xiƭ *@ &y#�] ZIS4G00{c6į(LH{]4ҴL2[JlI9H jhcT{V!j=X)o$@ĺP<X!XHah8@!)�P0NYej(((bʼn5�;,R蘀:D=/ <ExvyR%isӲricÓഊa%j�10)lK@{o2B[e!Z0!�U�&0}Vl#y& L&!�/j�]B�. } ?`9e ܠnCCAb@7zLpuդ; DvD5hXC1-@ꡀ��W:X PT&"hC%B<9K>efp@ x@B�!! -@ 1�7@1'`U8F7eH@[%Z@6C ҴH*LJ\ 6V3En(lR `z4@q B~RR rBk*`eCx(Q`xX %M )X&R�iϺ拡 i#h :8)V�V*0ZKcJ/P =RLMS<iL�$ۤ^8K$ qUJ}6WҌoa6An<1rϬxF<1ݙnsj%2&՞K\R磨%9knv"?U͞<>W4E+rбG91P 2`xȱ�.! .PCw)baCU Lt8$*2aFcU$3r JMPRI@ Yhpv"Har�vQAw; sq�G=^!}eQ`wx}v[gx>aK�&@nPw&g%ɳ,{U4�,2~\\͈\\F,8c( � r4CȡQ: M!PACQAFT*0:ʒ ܆@W9inʴ0]3eNʢEϫo7bCvWtui4P_U<aY7 6kYĎ~xQG/ܟC3cGTSoG\c�6ApRQèWTɵ(x<ZYC0Œ=7eʦ#뚗;sQ;E4uG${nI'$Y_ArT."~,]Y)m�j7O:8X8 !{BiMTkR�"xCBPt:2 *  Tctr 2R@3ź=-Ȑ/IoTBn xzezQAsS&�WN>1 dtbuě AsHe;z=&J:!cK6Tq˭{iqlLȻ�mU1l t'$ަ|+S \ ~\} rpN}X g5x-8qixډ[3};1]GҚS0Qj&Za?E{x1|G5:z_⇓'lhcMVOT x=.L)ױeFBĠ@EašۢG9&@˒tU$лP4c=x>ʒ�N1Dr49:�QH lE!*9I_fy@t_�3 &#i4U̐�C]{sGtLE| g63x^^$,x> ܜ][{#RIukGuܔI"(#c/%ZsvVyib9;.6Sj$ILkfyh~`i<Q #<WL%+MkJ< 1.@0 `nR; hCvSZEYLĹHH$Khq9:%N3]Lnz*-s0vuǴm] �Q?*;z-g^( 9d'Eqg)u*}2n`R#'Ro#m4H`JΖ#HwJ{]# \`6�V8~Z!g}y9vwǢ;G0|dbw]˺5|+{/ٲ ޷S,ؾ&_NN.CDsԲA9!X'=;zLPn( q*V<hv900)h730f;Fьb(pvP߄�QH." Ah] sVM]S'ٲ3vØ╄r7r{:jO ydwgXAvF,it.l8/oTٌZ{ (}@P4( ,+! b*e3ҹ}Bmg/$Dᘅl4K", )nEZ(#�KUcl<]CNR&0.u!T�Q5o@ܐB]O~m}?ds�ᘉb�*Lo_Þ,J[Lds L?�ۉE?Sg>f8| AKmܤE!NI#].D{fnJdklf{zVK&\T" c(=HZFCuh� Fp hBQC@iE\Hx!P0]H(XڴZϼ.u#mBŪI.?o_l>C$�ͦEOP,G*U# u#A"3|=dY&'T,04]#H<P%n2ݺ<\5< Bjuh#NNGQ<ͳVtϓ< *IcgJ4駕Fny "ImG|zz5swjMGs;25qgG2ӔAAZ$;H"N41#�.TsE,nI40wR0ƚ@\6'* qRH l@2r1˧ˋ" Ӵa7P9>џN%Y=lu8}~E'q�4 6S#8i9L oɞV $k PH #xykGRfK$Sb@*!uc!.'L- =e>Os\WQ4Bʏ,ЕzȢYPi]QQ c�85駨/ss%I퍾?:^R>Iǧ?U<Z4;B~W(52|B*Er��wTItPMT1l�t"<IF=JddS8na|" }^xjx̙Io#Uɵhfkdow,z6~\i8�!iIBA0xE9%Hb Xl[ic t+C?̳ᒎK`AUU4 {W&t9m'\!^f<tLNӤ%(l c~iuvFLN_o̙dP8B* LG7uDy߲ϯY^?g$M{%OCqL:}[N"dps\^[|l/$;yO x?̟7 N%ma>.&۶�tn}l^MKѴy G[Pn.Ǜ\�bNLsIt~Cdpz[quv=;WբO{|%'HV �֋ mS29JmfgĚ;_lf�:iT�v4Vrbw4V\'ھYTje$to [$,8qjsZ2J}#tpu(#1ӂ{�Fy W7Ӹ^/<(EV>( )-԰섀sE@<Y�&kaT.֧ 1G=e` [w^lz#FPic{7#qN\#G#y񐡛.UVtR :SX0w~+zJ*ޟ6U_4aB[c/ ޚ﷗f+WmLzdrO%|ބ8 ŋTrnoW,lLEOlU 8m[JשϚkuMk8{WhmM<,Y3b,8ŹE~eŴunV `| %OLQ�/KդG[ƨ]h 6'�Y8%{Yoݙ*�M&ZIB7 gX |/A뿈s�ǩߓf4CM]6!4;OvSokwaA=^O]$TWq_q5laߠV]. +8F\*I ಕ4܌ʫe&)<G8R.v֋ɤěn%*u_Spui^;ş>Gz.\揕}FH<R) $v0ѿ)!wl$#c\A3׺@@pւy C$:sQ~N+]gߤӂ8dι+H#:s]jFMHa}Ӓ>|�Pu;4'- An \EFa4e>D$rJ,!K|)I:ͷTOUL+]ڎ 2+s勮kc{2d/gK|-VSn.�酖rWܟ$5nQ;tX#q`A8>e7c旽fPűǤEOQNcLo2\~+/X-s犪dc(ם_Mٟ>my5^BQOO(:J")6I{1$|~,O|޸/t69In,t34 Bc%q平_'6a%+H%- *B i5sfFnH@c= ǫ)=w_s~w-m!%5% f~J4wڦu f`dCB%R iȟ+IX%7HCZI%H5N]jMioGv%:Vqk+O:mƵ�5rgNMH(qeiLa vU`R.eAr g!6(6HŒ C ko>> ͅ0iB5G-_c\<3 ‰:�w#0=D] R6@Rc%Lq�ҹй&&0d˒Gev6eMG*$ :Y ff> '+,$fs YH׹6k6n/_=S?^2ڌ t¢Z�MtoH&l 8~v^%SKkQq-XCLbhٸ^saaaӷ(_4sDmVM_g;@Zzn|d/5;4Y o?J ? {Drn#` ܹ_ʣTNY;mi=Lt> 2M.̒l.zf2l[gM}62SgjT4e,gFZܓԻ ;=AOY!=AI|�HTTp2$ml�+fi <U  #IGG4&�3ujrn]쪀u@ aʄUnr . Je ,ܐ7@CR�Д bYEm$->4ÖXr,ZimOŒ9qS(sH-A-[3x$S?-͊ C- (13<6�G{)<ۗ&O8Khdp|S/cbE ˟Gm<okji\Z6hq&|m^?3�>KIp? V 8diORK]1mkߕ%m?y4qQfqp;m$`;x~^1ߪ|GqPJ&Ӹ3F#wH]Mdps7 [se uY~.n!QqEىV3[6�3-|�U&ttA=*&c 7;NE|)ZvrkjIH]@Ksl8ۄy�{ŏzm}^!))j"|IQU)kq.9ؓ٣F*ߢKbL8q^(z ѱ`v ;=Ola.stѴXnl;zE9>;<BZm_%*-4"SNɌ\+N."',hV)SM6hp}TJ+IdH&S [?+\F?)=$z?#>8+i!}Z$i~ L[tӢhv$Mz~*؃mX̗$K3e'c;"#*'/pN9b|WO yeҊ\5xҴ<mfR@cגyyU˂]{Ϫu-L׵= 7Ϩv{w1c=6<۞]EO)d|(BՔQ\E,YN͉;+{*ahc[Wn=o׿t2f߅ E{l`|=8Ã/y:̎^X'GK M:NCORGJ@7i`kA>| _v6yYiMd-qo9r+äᒒ/z:^@i5!9=53Yx4]c[EEMSDy.wĮyM-^.W7Ǣ$<#l$T7&QےD׎ *@y -$ASV9 |'N˽V8 ;_Z劫DesHk!6Ϗ Wö؜ᔟ5}sm^۲AOOQ٥gҺTpL.>3{)܏OxeE_"�Gi7#~Bb<p9�Nj*9Vrn0�8oTe>qT9&Vվ&?W<󊏻 )Ov]|PrKC J�,6WY1m:^._:&NtDw0I8`/Mr%:᪂�CCROWת.S=c{yqw+ٗAXW KzidY QӨڦKQI=[ yr<7 *H]mBw;~rc]g^M+JΆ: &Z袞Q#^Z0c=ӭ\z}ܲdV@umKB1UU-jpǒ;n G+~WOS.Ѹ:*Y8|.q^sti%Ê/T#8W}~m:Cg{1&^|Oj{8?GY'^y|+W/4Z 6|bnA#-�@Bcx3 %d"k%LP1 `dIN'p7IkRJ\ AumaB&*Q;DVkN_L�?n 鲂%֟|(QEޣ[; hm-]T<%2:Vnlgs}NEMUwR>GQp'h眛#=8 D;,h$oZ&9űh`zᨪm$N6|iv)d[`n6pViM<x}L 9伉hu::Qc5Q4Jhik$y3;7yn(6t߷:cG4PjMS%TA<l?X vd{}n]!QO}Fi$˃$Wэo4 if*X} r*]6PMsKTvDjZn 7Z<ܧEM5UBIkn{d<l:|>68lqKFk|2uՍ}O_'FKvdTnA;n0Xʱd: pdѩ“Vh"s~*\2̓uYbh5zƲ9PG#e,)o7=?+�R9PQꁎ3-tk!Ęʢˬ%SJn.H40? 6ֽUu**K07Qn 53+qa, [DبuN]4d?"FwǛJ Vi۳I* 5ՓjOs�*>bǍRD767`L!=�B2͗ 6:>sO{>#R%k8^ݕVl6ʙҫveѺVio�uY#'6<Xm>Vjۧ>AN0zI˶9d˒^WHAq)b&{< k^$4t6꼔aUPum&efUPro.~_PX&ܺ_ff6cXrjvo2#{݋Y疅I8I?xanQ~C$p=Xls�B Gl?+ ,+g ?U*cL�~T>.=R&ؗ>T D_`ݟNJmbEq3e8O.e/4{<?՚[񪗷}Hc<tϙ\[dRq)%9!~ %LVwqn5H'+GC �ۑN[3c.khY _r^dŗkpY9k7KopvI*es2pۑ?pBS�*>m33*cC  414dLz]; TC#dWܕKRr6dGW麌5Mc$t.ּ(Śx*)uD|~3^~W,jY^]*QGM%Ζ 9~etO9I�2Ђld澺ZQ:S,H.nmc6G1 Ȅp(֬S%ҀER\��h 㝕&M˭3\0 v-{Xÿ0,E21S/eDm6�Z9ǵ!c|i<u/+Yex(dYr@Y9/DX9ke&PUHZ *Ѣ&YQ/dQJ6fu dq�yrvZ:5 -5Ze kK@]tdB˓U-6CVctZu cj>fP>`FY3E͂ ۾E U{ q81}HM9U4|B+Xh##$ÀSE`>}POzzᡩ]F_kn;cO9B.J~! v1ߒvv{͢׸AG=h s퐝K7; p.֑p*I 7=UR!ƿqqs 78UDmE5^$|0~mo쌒4+zwCBe|clT4H s|^'C&2YӛPô!Wj`yeÛtΤG|pZ鮊 Ya3fG7kہSF_ Gۋ*dCV:m9q9k#n|U~ �:=R=:N@$yh$ᣪ{`9Ԡɫ`]03ۺA9敔zt%/Vc${ԄXl,Qd(S L邠r#t'6�D uFA5ōh-,=-0EXF r*4\#O2`u;dB ƒ5fEG J4m[ ,R3<d(c.z\ $c*kb-c,%岗 d )c7$n)2evB&"{hOIp0-1x+xP)`iƟkTKߪ=Y=/|=0IhsGW`~c_%0&ĵLdsHi ӣ4؎cvj$]Axv)Cr#KK +!I9&' <[_Hi hB q0&a<FTI{%֕e9]U9c/ؠt 7 qa�䒶\p}Yk> ?49SO+Sl<^6nMFKee9嵺\%$+(9I�BBHU8oR=V$#7ꕰYmrhֶq$lFяFֵ?j i>k̍!+x{{x6 Y .l X)JD:&$LVыG<EX:QTyc>7"\9*49T2ס<]R`)q&`n.<bv#A$� ' ڊYRo{糯sdΗ< wEy4]wĖjy^ݳ¸W+iP�j_Ad / ^4J ,Fx�/2\Ώ mh >bmmըH3"#\B�Z}5j~3+l6O,sZ.%C�)zv>0sJDŽc^r Y|b:VGN'0GeF\kL!ǢPuAB+0>PD'4[GCAאAs[y*j*#>6QQrQlon\nTmeRFgCڋnѤ=>P{VeJZ>#9{9RgVų[_}s/p]^QN_Ye$qg1hIG^r%qd֤G,Q:F'yj5<ϸ"9UL{$\2{'+F}DeY#gK MIZ>KǟY 3H,)-Ƚ82TN1c{{0U0xnߢCQ;#VPfpVnv×}RweXhէMI!oi BG6OK}g` kc`.J 4e|pBepllisy�Z!j#[]l\E�#3`y:R,T<I~<Ln{�+.X'nV\8f Y,ΑttLKLDfn8ԅ^ d|#L0lӸIfuƞ1,>.U~]-HǑqZ%dN{Q8j:xZ1;'&�yy,h%γX/A%k!y+.hHtM¢>3i\IUs!EUQBڨ-+C˸]d:gɂ[<1qI~Ws2=/'esI0gtonq 0F}y+HhdmЄ5QrDb):{&hSwǪt*{ $+#pUK]�v2C.C!u<dvu٩],p90*2)uLVh�Z!Wo >?lo7~5\ja>θn=n(W>赛5cdle\^ݢԐ?N'܆:  ESEnEzC4fOi.yzX(=J'ɝ�!|sIoUc|镔t4Y]`;-TEtf{n=M3ɹ٤kaWdn&Yجq]kFF9Tk7Cd%ɎEN06)CAe7M3Z󈯅hQ8rI$Gb$X7LD(>x`lo MtμZD~YڨÛs/7 [R= ''n<Ȓy%.kq�{,?bmiTˋU@\%D4,~JLn i ; ;H,c; "˞s]6�4  H8Y!q'*DH`+Dj>+]+ְ]ג)> k оY*vmsZ#mǼ-&uQTjH%#}9MEu<"Bd,x>!6�snre Gq8~$ԓGFڀ*lvDfM&3X-fZhhl>s|B,7Gv<ԩ>rkKGNQA.13{ П3-7ZҨ+uWlNv.y� $V Kiϵ]0; 괊Fpo8|QR�TeZ  {Y%[ڍeRpKV; Gz.Je'E1m,}I<m˰pD8 H[ڧ;Ķ@T4]qgM o5( { umR5j<ݣo'?`o|XqNǕwjT:{[ X<i.Rx3ÑO\+S&HWC$}x<?^3>vV︊:<p6 M S8$)g 髖-Jaac?wC޾}OXߝ7\>@c†�l`۩`u"Cw&1nk)8i2[GwkL|4ҵJw#]K_le. lqCFvA\?s{e?K] ;_@t1# ݒĭ~#́תKK>03Ɂ#sȄoF&ױ&B<xob9p-!V!#+K uows,cvcl؂;uvixKBv<g!9R+,D@65h\c2K1^,UͨVP^t1Ldn5.<DT詋A>;)HmmhmMrcu6]6{m�  }PXjy䥐><uS9Ak#Í,ZO$8Xn l%Q|uZN!+F$spՏqˉ>K,\_m1.ӥv�x}^�ĺ:VD[�}`VY|N)mĿ2ǥ~M:I@�`śz>NMo`V͈Cb𡱁!H ڀ<\DIcVʁ463v+6#h�/ f l5tִߟ4 T|rL^ qS]W%IIw6�?ukq7�d쩒YU-|p �| ,Jٺָ{CfGN�2+W.9+82O|df8L qJSNKD]c)y@ı%O8o@VB$@�Cnٴ!|*y4.rQ$4jEٓ'à*?pOEh*4GT[M"܆Lߢbh?qmeZRMV$u0(!HsF۬L6�ݥbXx$�^7e$` lb@+FV�25Aa~n.-H18>+7}$`i Lr 䤨㖝w;�vj $4"9<Z6~ܑ? vt^ ֍^g:r/\>Khn/e X/j`UaA 'aD\ox=d+ i!qIYIMž [MI=tt}zp\1V%"NS/!&4]4aN<dE2 2ޕ v4UW.|Ѫ*/?m1QE2C!$\Bc�v^ !qTq]/hF[p+40TJxBxo Ck�mm%-@ g;Y٧PQ%tz4[8#Rl\+;)89+7UgUQ=[w1#K]g=̵vQ9�Fw]tFj]v:f67<3E=Q6ng-M=K`8Xȱǎ-GYXƆrP@զ*�,tykaC,(՝B{$C9Y(c ʚ2FN@[F;2cQVt)00ֳapMBIsLk)a�ҹ~>2l+uαTaa㭥^9^W _:XP ƥaDzCpNˉ*)C\2flDFEÇipy.@̽v/huPrA3I  ZC+@mia<B6]1|2+e6*fԂZ*ayaP%HK}b�Iƨ p HkQ6̲1i /Ak]&Q;`fOeю5|q{+ \6ttj l70\3sgGku(,&' |j@v*\F_ȼ7z +tPi\kHӪG\ƭl)tH"`1qY\i4ZiboKd"Ip~�ZD$۽7HX뢢jY}#f.2#5ϊ@Vt45-uԐ;p7U8,TRبnHїL qEl0&@)5'C5{."lVc|MOubjBfF^[.JDHdtzRd8?5<e,|o۠]v^,q`Ը-|g`$:14m?z:`-֟G,vF)}Nx h80/0FnyC A'iH/OAqɻʌJ4D8lW"tsӧ VѱF@WăZdS-)gB1pɎ=if+<}>:in}@ύB6PqN|=?X0rΈc[gO4xidXmV$a)2O Y6@-2o D {qcZ` KdHn['NΡ 78_FzN'ap84HMSD>QmipSU#McM\M+ba DdEYFuԪdbhV\JpCCS' hH:YU\h `�VQ%Bht@e|ռ9O!t4lY2f/.:* B֭c>uS v4va;@v=;=y%wQB"k@`q~&=ok,DIzY# +fɺ=Qu(lH욒ԨOk�{wh}ՠ9p^D.}U]6L@dqto j s5hkv\x,$jxua>,A)SqmhxQio!%.Rd7qa8SqELO#eN\/mRŠjyE�0dR,GZϼ7߸N8E7eVs1�Œ`הO__ ]mWrWFJ0%mqȄrlZda(Hhȱ9 c. \A597(bvh H)L(3ZFVʉz(bߍu͔*6w^8͖кDįiϞ[`ι5i3_Mp<6rH)ə-SQew+@΄Qx+F[�깲'7`Yi⮅ٲ-ʄ՜cM :-1tY k]$lഄ4NWA|-6טӣݼUǓRͻK;qsuȥ,ι#^5Tc)A\6+c,@J4L f\UlKEh.:V)"ke,Q*6c&]Zscq!$A(8c)tXv׌9:~`hd`8[E\H&�Set 0چWHtwQ UvWN@ZXQ 'IHh-JY킷ěe؉hϪ:-īO;뮨ѯu8& |M&y/<UũRF'FOb.T+uiSST ZwW7HdMl%$)`{KO"'>)cp},2F%ch1*KY3Os Cٕ8cDŋՅoǢ!eՕN3c}TE9# Զgop38W�`E/ Dݷ_Zl 4}$IF@5�)WLLJzp{3UкmYˆHX+ .IeM^ '2s\dp& G;9Z:LM4EֲHsEW$ӽ} ^'.ʪlq {%KlӨS $yT6QeCLv 6HV] G0j*mEjc\ɣ)Eٕ<Pu ~MЦG8{]#)M2>jxٿ͞\6u֮}ďN(pJWkQHHR :<¬Pe�(_Rx8R,[FХƞS܍dU#}hm.s4t",;,13h6XK IiUzϡ((#,Vآ"q}^cFMQ4'SL{,v`:H2KԚ[qVd7KQXbhO hSq걩De;4[FKWӢ-JS< r5tcP]qPEJ2U8}[ZgYUFkyt}gh(Gw46]?K,8lzhix$vwҿ00Ĵ^nF۲l� y"I \,jZ Zr)$Kg6ֵMSeov/(]MNTn"yTU#yK�ɲ)Y$M #|7@ɑ EX(dxrQIme&&] +iW mvP/KE$e$F6Fֈ2Z#G%ϒ>g)L ei *ML*T,Xi6I%*f*Kᖟ69λJ G(X A^$ 6[sOm )j류 )ȩGHI' f탈왎ngLz65 .V5RFS,Z ׯpE%ɿ$~XCP&x2LQ ⥰*5sd.oM{' iT1cl~Sˑ|jmj `cX`ɞ|ѓXsUb%+u}AIʒs hU@6M@HY91 <e)2ac+9Bc#dIpmtat$X`^ŠuX\.�R4FJ-ؖK?i+H1s*B-V샔n&ͱT+G9L%uIY81eOSW`74Mxc8qddMudhI.N)2BB1}]RD3p'JQ㏫ₘfG!z�@G"MVa4@#SfEuHhyᵚ"3�$rwk1SD5Ǎɜ͒R6#l#R-i�YNOEU&"ž9'p�a4ti> kp|NEv }SωRk)8W˖%&Wy>\2S"WeZtPjYf�$z.9LQ, "vfMLF^ѐ B1R-w0m3NJd@p\vӕ(hk3GV4dh4j3Mr\sW3i:,Tˍɲ쟨x0;$؛9sĵRt#] !KysUElໝiS4YDx!c;H:"1tiXln~+tD`M иpqfOx=248pwGF893O<ڕARH%o(2Gi#kXJNO%hJ,h6HQr!hi�eD wTZA@�P9ZXH(0HMq#pdZ+6XZ v w.ZSG 2D]k(! ε:Ji͍b3~ɒk}7ZLn앝O%,}BTTHGo.e˲IL{Q_Q.\Q6yL@E,mCJд8qdVt%W +ݹ6ZEMi\]තYmq 8 :u Ii;+uUNi7�\JcTsvyӓ M+,).B˪/(-(M@ dYC0cA*0fТ5'<aOrM#y.Ifi:rO%'LM(H!9}⪑2��J4g$B.|IFBV RV=sMaefk p68S4G8(]G>儮Gk�pT=]nf"T2m)4lj$kc)C##ZD9#wM&9¨22V hNJgfFڕ#�.Y&og:dp+j u\dk"s N_i%Q.7<O;pI# y|F?1U<R"Ǘ02ETεlzCOD_X$D.Z]1-)!m6_E$˪1D24aX3$ym: -{(ۜrQD@9@\,h 6ra.IE4qN%!7%'"9){]jVM|, ЊJ/cjыdk5evfZ<9)DF͐LР@;.IKH5GU!3R%#ETѴ h-`pN):/x endstream endobj 9 0 obj << /Length 9518 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 778.146 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 762.366 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 746.586 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 730.806 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 715.026 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 699.246 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 683.466 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 667.686 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 651.906 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 636.126 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 620.346 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 604.566 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 588.786 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 573.006 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 557.226 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 541.446 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 525.666 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 509.886 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 494.106 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 478.326 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 462.546 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 446.766 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 430.986 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 415.206 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn /Stamp1 Do Q endstream endobj 10 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 9 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 14 0 R >> /XObject << /Stamp1 31 0 R >> >> >> endobj 11 0 obj [10 0 R /XYZ 0 841.89 null] endobj 12 0 obj << /Type /Names /Dests 13 0 R >> endobj 13 0 obj << /Names [(__anchor-top) 11 0 R] >> endobj 14 0 obj << /Type /Font /BaseFont /6fdb08+NotoSerif /Subtype /TrueType /FontDescriptor 36 0 R /FirstChar 32 /LastChar 255 /Widths 38 0 R /ToUnicode 37 0 R >> endobj 15 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents [23 0 R 24 0 R 25 0 R] /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << >> >> >> endobj 16 0 obj << /Type /Pages /Count 3 /Kids [15 0 R 17 0 R 20 0 R] >> endobj 17 0 obj << /Type /Page /Parent 16 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents [18 0 R 19 0 R] /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << >> >> >> endobj 18 0 obj << /Length 77 >> stream q /DeviceRGB cs 0.0 1.0 0.0 scn 0.0 0.0 595.28 841.89 re f 0.0 0.0 0.0 scn Q endstream endobj 19 0 obj << /Length 83 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d Q endstream endobj 20 0 obj << /Type /Page /Parent 16 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents [21 0 R 22 0 R] /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << >> >> >> endobj 21 0 obj << /Length 77 >> stream q /DeviceRGB cs 0.0 0.0 1.0 scn 0.0 0.0 595.28 841.89 re f 0.0 0.0 0.0 scn Q endstream endobj 22 0 obj << /Length 83 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d Q endstream endobj 23 0 obj << /Length 77 >> stream q /DeviceRGB cs 1.0 0.0 0.0 scn 0.0 0.0 595.28 841.89 re f 0.0 0.0 0.0 scn Q endstream endobj 24 0 obj << /Length 83 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d Q endstream endobj 25 0 obj << /Length 83 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d Q endstream endobj 26 0 obj << /Length 9518 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 778.146 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 762.366 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 746.586 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 730.806 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 715.026 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 699.246 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 683.466 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 667.686 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 651.906 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 636.126 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 620.346 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 604.566 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 588.786 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 573.006 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 557.226 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 541.446 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 525.666 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 509.886 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 494.106 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 478.326 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 462.546 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 446.766 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 430.986 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 415.206 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn /Stamp1 Do Q endstream endobj 27 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 26 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 14 0 R >> /XObject << /Stamp1 31 0 R >> >> >> endobj 28 0 obj << /Type /Outlines /Count 1 /First 29 0 R /Last 29 0 R >> endobj 29 0 obj << /Title <feff0044006f00630075006d0065006e00740020005400690074006c0065> /Parent 28 0 R /Count 0 /Dest [10 0 R /XYZ 0 841.89 null] >> endobj 30 0 obj << /Nums [0 << /P (i) >> 1 << /P (1) >> 2 << /P (2) >> 3 << /P (3) >>] >> endobj 31 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 595.28 841.89] /Resources << /ExtGState << /Tr1 32 0 R >> >> /Length 2262 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d q 0.0021 0.0 m 595.2779 0.0 l 595.2779 841.89 l 0.0021 841.89 l h W n /DeviceRGB cs 0.0 0.0 0.0 scn 2.83465 0.00000 0.00000 2.83465 -0.00389 -1544.57051 cm 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 cm q q 1.00000 0.00000 0.00000 1.00000 599.20931 246.58236 cm q 0.70711 0.70711 -0.70711 0.70711 0.00000 0.00000 cm q /Tr1 gs 0.26458 w q 2 j -108.3979 644.58 m -108.3979 680.696 l -97.2609 680.696 l -92.3991 680.696 -88.4388 679.1085 -85.3799 675.9335 c -82.3041 672.7585 -80.7662 668.5912 -80.7662 663.4315 c -80.7662 661.8192 l -80.7662 656.6598 -82.3041 652.4925 -85.3799 649.3172 c -88.4391 646.1587 -92.4328 644.5795 -97.3609 644.5795 c h -97.2609 674.668 m -100.932 674.668 l -100.932 650.583 l -97.3601 650.583 l -94.4001 650.583 -92.1594 651.5504 -90.638 653.4852 c -89.1001 655.4365 -88.3312 658.2147 -88.3312 661.8196 c -88.3312 663.4815 l -88.3312 670.9395 -91.3077 674.6685 -97.2609 674.6685 c h f Q q 2 j -55.2149 644.58 m -61.9618 657.826 l -67.8901 657.826 l -67.8901 644.58 l -75.3563 644.58 l -75.3563 680.696 l -61.9123 680.696 l -57.7616 680.696 -54.5039 679.7617 -52.1393 677.8931 c -49.758 676.041 -48.5674 673.3373 -48.5674 669.782 c -48.5674 667.1693 -49.1461 665.0609 -50.3037 663.4568 c -51.4612 661.8527 -53.0322 660.6042 -55.0166 659.7113 c -47.2031 644.9273 l -47.2031 644.58 l h -67.8899 674.668 m -67.8899 663.828 l -61.912 663.828 l -59.9606 663.828 -58.4972 664.3158 -57.5216 665.2915 c -56.5294 666.2837 -56.0333 667.5901 -56.0333 669.2106 c -56.0333 670.8808 -56.5128 672.2037 -57.472 673.1794 c -58.4311 674.1716 -59.9111 674.6677 -61.912 674.6677 c h f Q q 2 j -45.9379 644.58 m -32.4939 680.696 l -25.5982 680.696 l -12.0792 644.58 l -20.0167 644.58 l -22.4972 652.0214 l -35.5692 652.0214 l -38.0497 644.58 l h -33.5599 658.049 m -24.5062 658.049 l -29.0207 671.617 l h f Q q 2 j -8.6809 644.58 m -8.6809 680.696 l 14.8591 680.696 l 14.8591 674.6685 l -1.2139 674.6685 l -1.2139 665.3419 l 13.0731 665.3419 l 13.0731 659.3392 l -1.2139 659.3392 l -1.2139 644.5802 l h f Q q 2 j 17.4881 674.67 m 17.4881 680.6975 l 46.8821 680.6975 l 46.8821 674.67 l 35.8441 674.67 l 35.8441 644.582 l 28.4027 644.582 l 28.4027 674.67 l h f Q Q Q Q Q Q Q endstream endobj 32 0 obj << /Type /ExtGState /CA 1 /ca 0.25 >> endobj 33 0 obj << /Length 54 >> stream q q 595.1291 0.0 0.0 841.89 0.0754 0.0 cm /I2 Do Q Q endstream endobj 34 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 33 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /XObject << /I2 8 0 R >> >> >> endobj 35 0 obj << /Length1 8440 /Length 5136 /Filter [/FlateDecode] >> stream xZ pq�|>$HāHK�  �H�IH$�,q%#dy(vmI\?v2M28i'9$qME{%KNv�@ԃ^^K$D~@Ο�+@+�2-$ONCH=ss@6s!p2&̓މ4uYw~vh"IB+/" ,&u20:y@؟]gAz蚉.<�(=5LHd_j��r?? bRΕf}A=~D�h,4V 3bӪUR񥮩jTG 2]B'*⊪.qwP\+bc/J47Ybt:8`t`Mzdȹ# /i!8ds,zWrw ]QI݇Ǝ}֒JSTOʦ\/+QJFfa Lj)4o.DLXdh2D;aKA92N{6׿oIεi-ZrJ'}zXޱ6h?:gV߻lC{j<kr1Pm}uyycmm_| ƿ�*ו7˖Ib,62{7 z׿#|2T]wg1]ћ*&'6"f7W5SUo7``]өU_0)j2I=buqjL+]wmME8jnBm55ۊ$/䖗ok*>3^wQiZ"P9PPk e3# }HwMU+r=*CIܲ<Ӣw#̈́$tky2~Ow*m1vjt}禚rƒ]fC+{X;a}]_<_V,1ˠKoͮE8Ӑ~헶ڭe"CmZe2k{YFU&'ն幹;+g)Lwy=Y:m_?-j<69T*{hJh?Ke}S΢B~䋓޹li^ہMО2ink tu m>7PtuoZ]3neq{>gujȐ>Ot3e͓]}G۷E({n܃y͌�DY޴F*'ע=+W?ֻBڕ{O)sk&2[,a>!w2EI:#W)F..knaou#Plh02Y_eS-Ş!Sဿz>9&l M뭾lu:<LAj&OWmjpUcU=`Ol?vIooiy-Gk ΚTU{񲺎m#SP5>0` ni-VCLHubKCeͫmh) HV*$]Ǜ9R^(£7WGS.A:!D& %’#Q+WE�f&ϡR-F*\~g\6u {w!> ]y2ϯ}.۽66g.Aɇ@ {"J O*կՍk_aZ�!G-*AP]!Yth? {-!@C\> i v~9 a`&,s᳃LmʹE8Ky'h'\[(3"w\v@UMJ\:bTp5fWCQp hOig@ +< g<eτZSYKPl#E'< <l܎υqTȐxV󄯨~-c^){4v*K i4:;i 홟+A'BPD(h;D! a9Hw㗐,)coy!5 zzbcTS!C(ADQ 30rRpq0Lfq>lQ`�hT U^̆#L7Iُ"\):Ey,)^9|M&CD8  T&gsQ2cb.1@8l6>|(; qp(n3n%³0\F*� @2@‘$2>S`ZhZPF�%%q-M:(Lzo#,sdj{-ܼu6"Q+$hb{ǂBnӂƈ(+!*GI0.>\ wp7'[ą`0<$uEg!/P$\Cq Q0"i4C zgap"O-(r"E]5誣7=313t8݃#HўqPՉI~Hhba�Pҙhz%Xh:<b`W  + ! $9==GXX."J-R-s&O6N6Rhcc=t'#om͢jp c=E-SRh,$O:SUR/-3 L.]ئiF1=` kF`rA<w]|MXڱ7{X;dPu:::e^,$RQ$i9'gBu1GZXF >6'O!uXTtJ'cɄ%DѾF|k=5[,3 G :>L~_|i(w)1Èa)+"D :.oBHGN)MU*)X%VəUA(c G!U%!H僇"Oy(+I6bY3 N{{$ YDjZc7H;=H]Wn,筏$U+8#y.{_d+J,CɥX؊<B>$jCYI}d{jAU]%MWJk=1ex7lg )xSd򩙧N<%“'cOyR_A{\^:._"K%v E/_/_T]+_L]T3Z},VG[Qq)l-J2T)x}ޱ3!>h 8(G-jQ*T@<-^EہⲾIؤ\\\q?PO4d{SX)$mcG h~<_p@.\p@ix  yb2V2RCr!<&WXi?(ksw}?;.ذlhw,@/H$M! QMXG[ <?x$A$ 3`A 4'JH?E~>db&6]}4%51(a*]c# 9[wWg=- VnWuUNh(j r234jVsJ}~*WeU40`f@ xn呩[9m9s-i$Z:ꔨ=DWq/;$?DF#β9:sKN-d%{(\9K-]]7]e2شX qӡ7}A9_r.s.gp4Tts+ZrR0p+$: Mrki<$IlbR&69%ՕZ.}/}tV$ J'}hޥ>-+3SJK˹K1'ZƼ8j%Yw'ks]Yl!,Tѹ�"-荅uú65Ϯ` ̸7MYج&,Y;=sfgc_BoKr0(9g)cV(-m)mV票`0LeuGm†,i9t'*B$8%_;1WN0]=-ȹ\o?(RLIdj9./ uv(ts3ЋCҸ-hL]]nm&9;`s ~}w ꍲ͇"|7cA֬v`w{\AEtt&Fb0<L>lHXj9eaAxNsr u ofgXa$ʱ>c1 MqD&szXY1pٽYzl1p(Q꾅d,4{`ƔLƕ9A=M2!.)5mOg 1R_�cGҲƢ]K1<͵Ȑ\wY"/c޷�1 voy'yߢ�6 e #(# $29-ޫ�Ʊuƴ똀*8Rs[XC ZL.ԵLM-z Ng`dboI>)3tP #7ow} �kÍrMv's-6~k9oO}U�?=Ỽ?7Dx]27uYw_ ,)xΓX]:@$8g+(|(ǽ7u?'gZJOñۄ~ qFء =7o|S xVtTZe'>�_`F{8/~A'djtbͷ5? F«s_0I1q,+{RSP� F2 endstream endobj 36 0 obj << /Type /FontDescriptor /FontName /6fdb08+NotoSerif /FontFile2 35 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 37 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 38 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 562 613 500 500 500 369 538 500 319 500 500 310 944 645 577 500 500 471 451 352 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 39 0000000000 65535 f 0000000015 00000 n 0000000264 00000 n 0000000466 00000 n 0000000551 00000 n 0000000602 00000 n 0000000874 00000 n 0000000978 00000 n 0000001275 00000 n 0000022925 00000 n 0000032495 00000 n 0000032823 00000 n 0000032867 00000 n 0000032916 00000 n 0000032969 00000 n 0000033134 00000 n 0000033436 00000 n 0000033509 00000 n 0000033805 00000 n 0000033933 00000 n 0000034067 00000 n 0000034363 00000 n 0000034491 00000 n 0000034625 00000 n 0000034753 00000 n 0000034887 00000 n 0000035021 00000 n 0000044592 00000 n 0000044921 00000 n 0000044995 00000 n 0000045145 00000 n 0000045235 00000 n 0000047652 00000 n 0000047706 00000 n 0000047811 00000 n 0000048110 00000 n 0000053336 00000 n 0000053550 00000 n 0000054912 00000 n trailer << /Size 39 /Root 2 0 R /Info 1 0 R >> startxref 55826 %%EOF ���������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/page-watermark.pdf����������������������������������������0000664�0000000�0000000�00000100473�14163570564�0024063�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Document Title) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20190918034036-06'00') /CreationDate (D:20190918034036-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 12 0 R /Outlines 16 0 R /PageLabels 18 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 3 /Kids [7 0 R 10 0 R 15 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 181 >> stream q /DeviceRGB cs 0.6 0.6 0.6 scn /DeviceRGB CS 0.6 0.6 0.6 SCN BT 350.129 361.6965 Td /F1.0 27 Tf <446f63756d656e74205469746c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn /Stamp1 Do Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 8 0 R >> /XObject << /Stamp1 19 0 R >> >> >> endobj 8 0 obj << /Type /Font /BaseFont /0d9f4b+NotoSerif /Subtype /TrueType /FontDescriptor 22 0 R /FirstChar 32 /LastChar 255 /Widths 24 0 R /ToUnicode 23 0 R >> endobj 9 0 obj << /Length 9518 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 778.146 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 762.366 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 746.586 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 730.806 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 715.026 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 699.246 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 683.466 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 667.686 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 651.906 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 636.126 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 620.346 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 604.566 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 588.786 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 573.006 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 557.226 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 541.446 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 525.666 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 509.886 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 494.106 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 478.326 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 462.546 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 446.766 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 430.986 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 415.206 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn /Stamp1 Do Q endstream endobj 10 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 9 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 8 0 R >> /XObject << /Stamp1 19 0 R >> >> >> endobj 11 0 obj [10 0 R /XYZ 0 841.89 null] endobj 12 0 obj << /Type /Names /Dests 13 0 R >> endobj 13 0 obj << /Names [(__anchor-top) 11 0 R] >> endobj 14 0 obj << /Length 9518 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 778.146 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 762.366 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 746.586 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 730.806 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 715.026 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 699.246 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 683.466 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 667.686 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 651.906 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 636.126 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 620.346 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 604.566 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 588.786 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 573.006 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 557.226 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 541.446 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 525.666 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 509.886 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 494.106 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 478.326 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 462.546 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 446.766 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 430.986 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 415.206 Td /F1.0 10.5 Tf [<6c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67206c6f7473206f662072> 20.0195 <616d626c696e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn /Stamp1 Do Q endstream endobj 15 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 14 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 8 0 R >> /XObject << /Stamp1 19 0 R >> >> >> endobj 16 0 obj << /Type /Outlines /Count 1 /First 17 0 R /Last 17 0 R >> endobj 17 0 obj << /Title <feff0044006f00630075006d0065006e00740020005400690074006c0065> /Parent 16 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 18 0 obj << /Nums [0 << /P (i) >> 1 << /P (1) >> 2 << /P (2) >>] >> endobj 19 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 595.28 841.89] /Resources << /ExtGState << /Tr1 20 0 R >> >> /Length 2262 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d q 0.0021 0.0 m 595.2779 0.0 l 595.2779 841.89 l 0.0021 841.89 l h W n /DeviceRGB cs 0.0 0.0 0.0 scn 2.83465 0.00000 0.00000 2.83465 -0.00389 -1544.57051 cm 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 cm q q 1.00000 0.00000 0.00000 1.00000 599.20931 246.58236 cm q 0.70711 0.70711 -0.70711 0.70711 0.00000 0.00000 cm q /Tr1 gs 0.26458 w q 2 j -108.3979 644.58 m -108.3979 680.696 l -97.2609 680.696 l -92.3991 680.696 -88.4388 679.1085 -85.3799 675.9335 c -82.3041 672.7585 -80.7662 668.5912 -80.7662 663.4315 c -80.7662 661.8192 l -80.7662 656.6598 -82.3041 652.4925 -85.3799 649.3172 c -88.4391 646.1587 -92.4328 644.5795 -97.3609 644.5795 c h -97.2609 674.668 m -100.932 674.668 l -100.932 650.583 l -97.3601 650.583 l -94.4001 650.583 -92.1594 651.5504 -90.638 653.4852 c -89.1001 655.4365 -88.3312 658.2147 -88.3312 661.8196 c -88.3312 663.4815 l -88.3312 670.9395 -91.3077 674.6685 -97.2609 674.6685 c h f Q q 2 j -55.2149 644.58 m -61.9618 657.826 l -67.8901 657.826 l -67.8901 644.58 l -75.3563 644.58 l -75.3563 680.696 l -61.9123 680.696 l -57.7616 680.696 -54.5039 679.7617 -52.1393 677.8931 c -49.758 676.041 -48.5674 673.3373 -48.5674 669.782 c -48.5674 667.1693 -49.1461 665.0609 -50.3037 663.4568 c -51.4612 661.8527 -53.0322 660.6042 -55.0166 659.7113 c -47.2031 644.9273 l -47.2031 644.58 l h -67.8899 674.668 m -67.8899 663.828 l -61.912 663.828 l -59.9606 663.828 -58.4972 664.3158 -57.5216 665.2915 c -56.5294 666.2837 -56.0333 667.5901 -56.0333 669.2106 c -56.0333 670.8808 -56.5128 672.2037 -57.472 673.1794 c -58.4311 674.1716 -59.9111 674.6677 -61.912 674.6677 c h f Q q 2 j -45.9379 644.58 m -32.4939 680.696 l -25.5982 680.696 l -12.0792 644.58 l -20.0167 644.58 l -22.4972 652.0214 l -35.5692 652.0214 l -38.0497 644.58 l h -33.5599 658.049 m -24.5062 658.049 l -29.0207 671.617 l h f Q q 2 j -8.6809 644.58 m -8.6809 680.696 l 14.8591 680.696 l 14.8591 674.6685 l -1.2139 674.6685 l -1.2139 665.3419 l 13.0731 665.3419 l 13.0731 659.3392 l -1.2139 659.3392 l -1.2139 644.5802 l h f Q q 2 j 17.4881 674.67 m 17.4881 680.6975 l 46.8821 680.6975 l 46.8821 674.67 l 35.8441 674.67 l 35.8441 644.582 l 28.4027 644.582 l 28.4027 674.67 l h f Q Q Q Q Q Q Q endstream endobj 20 0 obj << /Type /ExtGState /CA 1 /ca 0.25 >> endobj 21 0 obj << /Length1 9092 /Length 5631 /Filter [/FlateDecode] >> stream xY}tSǕ$[2~ߖoc'e$pdKElKH24$5Ki$mJslݓM6v9$mOSvd''=CHě;w{<�2 paj.3D~ @6_{�\hʗI�)H|&,}� - :5G? 1#*Pto>颕@: S�'! ?}ׄw�>k<@R;�C?�Gu"@ׇbS!hFW )9R32ԚMiET< 6ːUd2L+V*_w �(Ǒ/2Z.ښ6>UzCM>D(A2K9>z񣯬[MyzSka='g󭙱Ԃ*5cc~ʘ{7v^㤚tQG]Pf&+i$gmZ0S1ې-Vh^y\jZͧOOB[fޯ RR6T'7sS-VedB;]c.$e*q6&ɒ5)3bkh'hbvؽ]ΞL9p93P%t]UWKHw_i*^lZF{͹EM[0sLV2|'mZUZ0B7I9&KJR%ն).gnd`w܌Kըѐ>ɛ-'7wm;kݺǕ|G'yU^Zs67~O_\53Vɬ'UQ#ioh'9*6{ՔXvm/{DTk+wF=[뻚:*^OjO/*:v̿twpd:3)T%p:@*0kFM#o\E#~2u~aW+SiS=){޺?{I)l'?[+ݪ*+j)܈{UTc, ڛ@@]r 4j9i!=u+LZo1eԕTܮ&cc:ak6uNBda )`79rشYe*rX)F 7q!*he'O}]13ʶy9yZh{dv&Ьᢎ?8˻ksJQi7o>+nVKkv7.ZNj_1^|{elJdgT,'DARuśg)M:ݏL5?ղR_`hojzNN֥e24%ܬm%vE{̭b_}H~Ϻهӌ"?T4޺Tѵh^lR57 [t-&nJT"g)-۫c_E ek9<gjV^ٸU?z#!j3s ),玵z=em;wz|ܡO-rU՚U=ԘuƟ\;ӲaҺwj/6wbSOZZ}[2vU.7� :Cƭ) ׹OO,'k͢*ҧO=G=ͨtR ]Xc_OPcޢOuSӎhXȩIa{QxBҽ+ֻw߹-\IJ(&$F[liY|.y6}†"·;8YYV4ΒTmy[x>]WRb,N}MoVqKh(qUt%odr'?NO`zKn&vD9_A$]/1nʭs56on\/n~dwOxWkoxjنc}ۛ2}F;}V\Oq~xu&l^TeZ90i:4\^㾨t@R9%�S9Rm6\M(n '<bfr'S#nّ|88xcqe 8{9qMcc|#He}5ß3&|ʩv|zcy 52i sJ+ȪGzŪCp~FA";L+)9_`Ӣ^_A=8w;⦆O: M2hk`S< PbNkwFHR>E<!hBͰCGxQ9e-Z0M~x%qUV7 W:$yk4?zΖo;8zam9 #1̴nF&gfOwDl)'dd; 2m+ޖqRfAK 2tR/JБWxv̓6rBƓ!\d('?/ORPS@OE4(~(iƽthQ xS 2 yIs2 uIǭHpf6&TU]\@Y2 ss #h r07B ,5A\�]B|HL [a=>*ʨ�uK?B D9Br9GG3s6(]PpUfA.$F:Ӛ"`hA6U5`R48K@K U *aQ'">`[Mo4>>|c(ۇ 0#p7b!T`동 f}- ,Fۘ+G <>& B 1jB>H8˴%B6`g=b =4{4k ͛g13*2fL!fL(=Mh2#@^<q c⣱E0 oS(bY Gh!&8Cӱ{|�T`!\\"Bl6 8{p`!ܟ`nFeI00'Gr,:;=JawhkT1210cw #up338C}=J!Du"BP8FPD·4�'*L+S0[Y*|0J{e|1Fτ" 4#"J-RM&r0')氞Bz%#omMj:qc=p[$T"rP͢1t&Q_B\l;-@')E؍Q<]Det,4}=}uP*;Z%a!L(11(I4WU@nI)q LX`m]gi8l摨l?ynӄp]Xϓ[d:,:%q/Z^NEX ΙBŵPAibZaMW?'D'񪻮S|�i߽CH0yD;YbDXH6"yKiIVuDC.i]%UZq  9BGyLjCJ%!j2Eґ'<-I*b)3{{ijX\W)DJc`c/W;J/X>ZaI $WU[㹌u|yP-(Q7ckv}wC!KZJ*Q]}ZmpTZw:nYJIw\x(xKyq2Wc{O/=jr-YrYr %%<[g.Oy̕3ϬQR<N bC]!Eѹd$*TriU GA‹C;ov&Q}BaٝsTYƆAeurhQNݕZPET]dkޕ["jVڭ \Oveu"Gy<zX.QKQgEEߥՑ>)ihD TKڳ׽L#Om}R-yy$?6,q m˹F h>+ D+h+|FDLD' ȅE%$?C~6W`E E+t`{ܮQޞ.f찴lnP_]e6+KK6KHKMINR)yZ.:TbHiчo)9n/cn mehh1V vQ~`KdϰۧlGe]3" GvݬMWKKv -ZEk X ˩iLÖT*Iia ޼ArVR}~ihm Gm LJIL aե40H~߸[Rp¾U!6uT)R7>O),҈nE|2*|�@.-9D]]Z=6) qi9=})lG ÐG]Z}^rH,i떸"0CzCgg蓺 @ t'.Y` ذ;AYXҞWzr\Zps$/'|ұIF .m+V= ),8j�:dIÈ?$w8Aq&ID1T]{gu(@0VJ ׏➷a}d_2]1If1,iuRA IZ)yd̂}_cOzfы}%]\'cs%Z*+ Y<(#hͲi'qQwS!+"mbD>!SJ.Jܜ^AF bg RRQ2tCiXwn<׸Q Ll2og^$ʱv C1Vr-d.Ef 8 jwG$ːyD6[ B3jLQh\dm=kR\EY =pҳLA#Ft0L0fX,-[,4ZhpKbIt[7fG\v+1u.e yع@xxG8ӳ/ �r %JPI#H$3~Kcg�ư5%.i01>YFnm.>]zhC.Zmhmpt)U tJib')ޞUO XydIc?ϴa3,*_T?򽠅�˸6~?(OZ=jk}`xG}ֿ�7(D4x]275YO~k:G0<H7˹x+l蟞Bp|gCxO?=5< QZ~cgƯáۄ~E"#o|rV U$#pz.+RYh솻h?pw8-ҪrTSDžTI6׸g\I;seWKV'P endstream endobj 22 0 obj << /Type /FontDescriptor /FontName /0d9f4b+NotoSerif /FontFile2 21 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 23 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 24 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 727 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 612 500 500 500 500 500 500 500 500 500 500 500 500 562 613 492 500 535 369 538 500 319 500 500 310 944 645 577 500 500 471 451 352 634 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 25 0000000000 65535 f 0000000015 00000 n 0000000264 00000 n 0000000466 00000 n 0000000537 00000 n 0000000588 00000 n 0000000860 00000 n 0000001092 00000 n 0000001418 00000 n 0000001582 00000 n 0000011152 00000 n 0000011479 00000 n 0000011523 00000 n 0000011572 00000 n 0000011625 00000 n 0000021196 00000 n 0000021524 00000 n 0000021598 00000 n 0000021747 00000 n 0000021822 00000 n 0000024239 00000 n 0000024293 00000 n 0000030014 00000 n 0000030228 00000 n 0000031590 00000 n trailer << /Size 25 /Root 2 0 R /Info 1 0 R >> startxref 32504 %%EOF �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/quote-background-color.pdf��������������������������������0000664�0000000�0000000�00000022747�14163570564�0025551�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20191231035254-07'00') /CreationDate (D:20191231035254-07'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 12 0 R /PageLabels 14 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 659 >> stream q q /DeviceRGB cs 0.8667 0.8667 0.8667 scn 48.24 805.89 m 547.04 805.89 l 547.04 805.89 547.04 805.89 547.04 805.89 c 547.04 763.8157 l 547.04 763.8157 547.04 763.8157 547.04 763.8157 c 48.24 763.8157 l 48.24 763.8157 48.24 763.8157 48.24 763.8157 c 48.24 805.89 l 48.24 805.89 48.24 805.89 48.24 805.89 c h f Q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 62.74 791.0774 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 62.74 771.5403 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 5 w 0.6667 0.0 0.0 SCN 50.74 805.89 m 50.74 763.8157 l S Q Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /b4e9da+NotoSerif /Subtype /TrueType /FontDescriptor 16 0 R /FirstChar 32 /LastChar 255 /Widths 18 0 R /ToUnicode 17 0 R >> endobj 12 0 obj << /Type /Outlines /Count 1 /First 13 0 R /Last 13 0 R >> endobj 13 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 12 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 14 0 obj << /Nums [0 << /P (1) >>] >> endobj 15 0 obj << /Length1 7156 /Length 4268 /Filter [/FlateDecode] >> stream xY}P[ו?>Io W</@Llc,@`0_BXrz )pBYvxq&:mL7yxgR&;3f?=v:m2֠=A:M{~=s{@�@/ORP�HDw͹G�xEt!wh2 ]@oDyt8 _Cx{ϼwe@<LA;A]+(C׊QBt`<@O(?xP y&ӏ}hY=S,5-o|}�4^dDtWTcj/0? 5XKj% iNп#cg2G1:�ZhJZf.r1vK].+l~dg3+*b;w>~q+ܸ64h-iEĊa(WȇlCrTYӶݛtSEyUT华VϬo-udnf fvRnc];aِcil"\I*f[A98zpcᶥ|b6YqӁ@-KO9,SCΓl9;';+:v(o]:+߻׼Oyة|j{S2`]hw!NJHh{۸X+%n`K%Nʛ5oG鮣{/-\w ׯ =h͝ާ=FHuW~8{"[ +ZwrٱA̖Iyú~1ڲK廫6l]y7+RO7zr6hzǶʂʆmXV6ؑEw5{I|6Xf-CS6Ҫ6V{ϾxBZ5 Kㆂ\>p=2pgf?2aOfJ:HB j{~5nx^�;;7_| odo?uv  &xw96q\-t_?oD2[Kc 4_Ouz@3yK ǀ\Z~ȯH rSW  t+[Y]h].'P༆3N PW4\Kp�pM3j H로kLįsD4psn2rUÍ|`E ;i}! χ*C'CG UB+BMO5*r4rgpmسubS 뉎X]I6$i%dNAf!00{K]C| z `V;"SXJ IZAXKŘGID&V <B#T0!M !q4fhtp2dlQd Y:k4D( ^v~%J"E[>hq>COƚ`-'<1dAJCt0q&V;|L )oawN! -w/wN%%8}N8J0 ,0MJͲP46"#_bXXʦ:v1Ù]#lT*~nm½ش}RIѐ]_ )bdž$ӆΈ!eu1"&蓩P$L? .g$ESH=L(<_"J4Kcq%U*Աϳrݝ,IC`U{Xu{z<uXHwknqy0w f~cJI0!|M&Y,"O�|l"]I2G&"l* N*Jb:  #`JȓJ"z66`3Ȅ[([KaNMO7N 7ͦG9*#o3mͳ*,t=Ga[P="/DZrEYG`tK܎c�xr;X܃OZX0X=sXb ZNBHgbG& iDw7?D?ȯ }[3Ώd3!*AuqarDBZZy??NѕsraÌfS0NQ]>H<%#SXb>[wl$q-<q 櫟~>D'[M?,nsM_ Bg1&I 3fKoJ6 RȫXKBd@HǖW͐3bʐE")^$"io%8Pb, )F�uN>xIpۄ] W =谖 VnM0E#, 4:ȱex[ٌȼ 덎 SI<7&iI /(A1\o|}"y&eUs?$긜[~yR|4gϞ~VgLğ{FD\2]W/%rRu\"(KW/ūu.^x틙z.ӁL;b-TAʽ7drt*$Yȼxr"]r^ Irxoh,l_,nKXYa1:8*xz{o{#P+jW1ȖFwcc{M^Jo]\|.Z|Xxn?yj~S[ۻUsUYKqpV{}|бW񩁭^5 oaôu~#tdV\$y2Y{ZH.#$d[ |>~jfDH@eYMdGNP[ktIA6w-p}@Ѿ#=]nqPi׼n۹c{6ZUn.1s z^s�STvr* ;^Pck59Nӑthk:撙!;e?S?.BV\a'SITpp"|~^ܩ|^>6dg u`OJ5`H__ףNR5t9Ep׽~rcڂ S MKt V%;]P+W:Rk9k<OIT}IfOD Z5PcxӍM2sBfnLf&9=_P0Q 7YT~bݘADlb-/ ~Q7#S/܂PP|Y_-Wa4{Z)垕U]MOHvչ1̧y(dZ*KK~_2'a~;G‡MB(4[}h 2p hHlGp;j1r7qD0!8ETWrJ<Y'hTs qmjw9̕Fr#0FWMW~''؉9ݕ&Ԫ%r,VG S<)ћniVaJ;G|wlո>KS5Z$?*`nlX95FMhe>|N/k.Rאyuv/<ߚ(v3mba^j@"˹WOVdfc#"9CGiM`e;SuZV;Wؽgr'ex;)gb`ΈI;<[xrJ_|R%#uxuмn`gG|W(6� 80 Foy0'zu8 ̸_Y̴QtY!0~ac<],p:9#GT"wyB jtrsp7p<3l$uM.zʠ_lk1Pwp sKfR.zoÏ[E{gk*XG xCĄo3Y}]7e/ӿ +XYx ΓnX\MۖJd8/fH;~=㮉檎7={;LF^Z8~;\G]xN7V i׿vi(܆+XaxTk]Rh}cG2~ #Eݧzfj4 eޣX!ljY}~/'qnf.dȌSN%P endstream endobj 16 0 obj << /Type /FontDescriptor /FontName /b4e9da+NotoSerif /FontFile2 15 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 17 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 18 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 500 500 250 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 623 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 613 500 500 535 500 500 500 319 500 500 500 500 500 500 500 500 500 500 352 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 19 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000001549 00000 n 0000001846 00000 n 0000001888 00000 n 0000001936 00000 n 0000001988 00000 n 0000002153 00000 n 0000002227 00000 n 0000002352 00000 n 0000002397 00000 n 0000006755 00000 n 0000006969 00000 n 0000008331 00000 n trailer << /Size 19 /Root 2 0 R /Info 1 0 R >> startxref 9245 %%EOF �������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/quote-border-and-background-color.pdf���������������������0000664�0000000�0000000�00000025601�14163570564�0027554�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20191231035558-07'00') /CreationDate (D:20191231035558-07'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 12 0 R /PageLabels 14 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 1011 >> stream q q /DeviceRGB cs 0.8667 0.8667 0.8667 scn 48.24 805.89 m 547.04 805.89 l 547.04 805.89 547.04 805.89 547.04 805.89 c 547.04 717.29 l 547.04 717.29 547.04 717.29 547.04 717.29 c 48.24 717.29 l 48.24 717.29 48.24 717.29 48.24 717.29 c 48.24 805.89 l 48.24 805.89 48.24 805.89 48.24 805.89 c h f /DeviceRGB CS 0.6667 0.0 0.0 SCN 0.5 w 48.24 805.89 m 547.04 805.89 l 547.04 805.89 547.04 805.89 547.04 805.89 c 547.04 717.29 l 547.04 717.29 547.04 717.29 547.04 717.29 c 48.24 717.29 l 48.24 717.29 48.24 717.29 48.24 717.29 c 48.24 805.89 l 48.24 805.89 48.24 805.89 48.24 805.89 c h S Q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 63.24 779.0774 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 63.24 759.5403 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN BT 63.24 732.5609 Td /F1.0 9 Tf <d1205061756c204d63436172746e6579> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /66ec5a+NotoSerif /Subtype /TrueType /FontDescriptor 16 0 R /FirstChar 32 /LastChar 255 /Widths 18 0 R /ToUnicode 17 0 R >> endobj 12 0 obj << /Type /Outlines /Count 1 /First 13 0 R /Last 13 0 R >> endobj 13 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 12 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 14 0 obj << /Nums [0 << /P (1) >>] >> endobj 15 0 obj << /Length1 8676 /Length 5347 /Filter [/FlateDecode] >> stream xY P[יϽz 0F6\qIyӼ$aacun:ql674w'%mnt;nvtijg4do&1hst:}]q=w{$�@ X@ ώL…)c dM̎b&DhėqS@byJ'G\@<gHIߑ0w<AZu{0%H{áH|BS@oO68?;x@wkӁ;M�Y[�xhxl bpT} �n;!@]ًEqbW: %Tk ItB~gp0| wL7 |ՒZ{Kw+GSON dV5r,]*'c:Ѭ5YY9WouT BuIq }PSĮ+.* f$VVp~*P^#WGdh$*X\qFMxZsӳ'.Mw-FWPgev?w£<g (8KDP]z_pq5]:U1jC'݀X{rSnA\|ԼuBw0u01¿cOLȫ-KWWPWy[6$d^5,Vfq3ܲ1\+-P-\_yrvG}V(7~SYMڼO&LۛX'Q?}dW(v|?ϟgU\=t6;CO>bM ܅ݏJø(UhBR DgRUۊTF]uUMJ~wc3(Mu~sj^BP߾jq[~o$tR/b>nP?`k4g^zϸ uP2Wm.ji-D} QYʡπbQΥ:ZldMS=ݵ3;eVl(gՒY/͆no}jwm6mjq_Zs--%2+:O{Z*՛[OI C/w}bChg4Yo%Uw_#'!g}v۫-nyK_?1MWSo<q񭇷on 6M/kJ.$:̿tݷq] ]\h3!_\I9Uyzj W+QsGFƲ=7_]_|$'|{v9%TEm%t}7 +ʰr"93ճΕTS)}yc~;2sgfoٸU` =OL<-<|Yh^^\uoąSY;0go-]Vlcm5OWJJλTK(U2oZW^~2zqn#ed*p.(M3š}GZhNzg%ԭKx/B҂R;u[“Y*K}Q}y~XΏM bOPS2yGq:5FYrHj$Y./lRVŧ Dv?I^ѨΣ<({{f'8͘Ut}Hk}{l'wm`y|ϡ gה/o1ޮ"y44|>H@-n}\k8ͲNquC@$Ul"&^~07dRو5G'UyF1/cG[}s{3ظ|25`Sul*8фVJ9ő:j}14#R.nX':ٍj -&%MM]Ȼt:TQxn+9O>,\7-8bª�t vL.(nC("V߄Cv8ĝ3�蕥lPԁYq4ݢ:͙\Z^IhACXM,L jqşOaJ)[+ 9y \9v'dflq) EX,PgC7B?a7x`| 6,8NzF z D2^qc-W@" +!T˸rH@K HPQq d+2O�* Px"`D$~&I7<BƓşqś2 O*ítpl<*lTlB15b'&:04a !ކ.V6 !>:` FfD&9:+¨�>(0~0!.\!r2 f&|l̠@L MaTy7ʅ5Rv)&i4P{5 LG)dAFk h ڣ&0R3RAL>!:&}ZY);}h�{"¤[9?omHplJp|mcv!I/ƃSQ y~/ BqQjB>H8δC`t 0+ Ѹ`Fufoc5&c YEQD3>&rǞ&4FE Y^85'1?ٓT#? n5MEgh4zo:@e"8%gi!:Bo80g3 w$[?NgGrf,Z2awv7 4:Nw@hu:z{r=CBWGLQi!p$<Dд Oi�8OU w Fa756]ӓʔ? LOѰ L 3( S(G[5aLI`ED >Gbň ,iT3^'H7>{}2DU*Xt53ʊ0j�e0RTs{ߩ.F7c|:ٞmgf_gP*;Zŭ3ͨ#hi4$+Mho6 3BK2;a|,ua$G"'^hE3N a6wjN"6tu_ՕS$8a M{FB}f/Jztc8N}$m0i]!$|f'L֬#YGtVl%9H"/bK,m w9EBnꋹ9#Y[r-%rv_"D2r\ȇT! n<I' hKK` p  r5bj7 DJ'ɎW7M>z7%x"Vx}od#JAmt|6QMj&{篥_#J5RuVu%~_W}coۜddzO'N'G>'OB=iqW9r\g=GΑ/ygߘ+)>Lfz2xjCm!>7fՊX xq,^>6o?8�άp+QmouwV2hܽ+ne릋KۈJF6UٕYtV9vk3iWӸ+i7(dz,/.Fcע:6%JT褭:%{^!_:y l9=wPǎvcGy!Z"H.91@$b@3GgfG~dlraD q9G&HF E9`y.@_oϮΎ6lmjlYc{mMul*/+).*"stڴԔZTh2 RWR}�^ ϐnI26nN+r9D+C}y`'6QX${=?c="F a0 3n$kCy Ibk =D /F:\nM ]V >PyY*2UR3BW[°ט}9>7nJETzy@*mvHv ugI") 0!VD :мssQpy|âv0ypb;!I'uf{=W}_hخ7}0!hSn{4j6I2#WFV{Ef3') ;m|'xBJq.#]abj ͂NHS洌H3"r+ABynޅ9oÎ'Ⱦ`1 ]1If1,ĖURAMIV #,lѕԓѓ'G/v2vmJ`Fgb <Q)߫cV A!A,vt9Ů=*NQh_'Fb0<%MFpz~-JB ZtCiX |OpR`d>J%TIC}E(]o2į2yah_ j ơQP 1 dнQ0`꺋Zc,4pxƔFZJm^% w s9G@@;$nݞgFa`̰[Zi3n6ҵ2tZ˰,TrN<9µz[eP@ *i� ׿l8F `Y,rqLq)☕aB/匣?gC4!-D"b#ZGl\ *YJ-RB&7q$sg:ȂKf/)rNYu;j[Y�~eA<Co~u~?bS|BD'0*\yx~OpVqpD3llE!8u־f;xN<O_Y{i( c\@ o}~AFX/#ʗnb72|et�NȽ z?Bk7|>T>x{VqK Өt,U?BjچQ*4$"6bW\U\窹RbPlX[2vY endstream endobj 16 0 obj << /Type /FontDescriptor /FontName /66ec5a+NotoSerif /FontFile2 15 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 17 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 18 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 500 500 250 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 613 500 500 500 500 500 500 500 500 623 937 500 500 604 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 562 613 492 500 535 500 500 500 319 500 500 310 500 645 500 500 500 471 500 352 634 500 500 500 564 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 1000 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 19 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000001902 00000 n 0000002199 00000 n 0000002241 00000 n 0000002289 00000 n 0000002341 00000 n 0000002506 00000 n 0000002580 00000 n 0000002705 00000 n 0000002750 00000 n 0000008187 00000 n 0000008401 00000 n 0000009763 00000 n trailer << /Size 19 /Root 2 0 R /Info 1 0 R >> startxref 10678 %%EOF �������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/quote-page-split.pdf��������������������������������������0000664�0000000�0000000�00000034612�14163570564�0024355�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20200101021431-07'00') /CreationDate (D:20200101021431-07'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 14 0 R /PageLabels 16 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 2 /Kids [7 0 R 12 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 3760 >> stream q q /DeviceRGB cs 0.9333 0.9333 0.9333 scn 48.24 805.89 m 547.04 805.89 l 547.04 805.89 547.04 805.89 547.04 805.89 c 547.04 48.24 l 547.04 48.24 547.04 48.24 547.04 48.24 c 48.24 48.24 l 48.24 48.24 48.24 48.24 48.24 48.24 c 48.24 805.89 l 48.24 805.89 48.24 805.89 48.24 805.89 c h f /DeviceRGB CS 0.8 0.8 0.8 SCN 0.5 w 48.24 805.89 m 547.04 805.89 l 547.04 805.89 547.04 805.89 547.04 805.89 c 547.04 48.24 l 547.04 48.24 547.04 48.24 547.04 48.24 c 48.24 48.24 l 48.24 48.24 48.24 48.24 48.24 48.24 c 48.24 805.89 l 48.24 805.89 48.24 805.89 48.24 805.89 c h S Q q 0.6 w /DeviceRGB CS 0.9333 0.9333 0.9333 SCN [2.4 2.4] 0.0 d 48.74 48.24 m 546.54 48.24 l S Q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 58.24 785.0774 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 753.5403 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 722.0031 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 690.466 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 658.9289 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 627.3917 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 595.8546 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 564.3174 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 532.7803 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 501.2431 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 469.706 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 438.1689 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 406.6317 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 375.0946 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 343.5574 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 312.0203 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 280.4831 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 248.946 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 217.4089 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 185.8717 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 154.3346 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 122.7974 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 91.2603 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 59.7231 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 13 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Length 1510 >> stream q q /DeviceRGB cs 0.9333 0.9333 0.9333 scn 48.24 805.89 m 547.04 805.89 l 547.04 805.89 547.04 805.89 547.04 805.89 c 547.04 616.6671 l 547.04 616.6671 547.04 616.6671 547.04 616.6671 c 48.24 616.6671 l 48.24 616.6671 48.24 616.6671 48.24 616.6671 c 48.24 805.89 l 48.24 805.89 48.24 805.89 48.24 805.89 c h f /DeviceRGB CS 0.8 0.8 0.8 SCN 0.5 w 48.24 805.89 m 547.04 805.89 l 547.04 805.89 547.04 805.89 547.04 805.89 c 547.04 616.6671 l 547.04 616.6671 547.04 616.6671 547.04 616.6671 c 48.24 616.6671 l 48.24 616.6671 48.24 616.6671 48.24 616.6671 c 48.24 805.89 l 48.24 805.89 48.24 805.89 48.24 805.89 c h S Q q 0.6 w /DeviceRGB CS 0.9333 0.9333 0.9333 SCN [2.4 2.4] 0.0 d 48.74 805.89 m 546.54 805.89 l S Q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 58.24 791.0774 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 759.5403 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 728.0031 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 696.466 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 664.9289 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 633.3917 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 12 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 11 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 13 0 R >> >> >> endobj 13 0 obj << /Type /Font /BaseFont /b4e9da+NotoSerif /Subtype /TrueType /FontDescriptor 18 0 R /FirstChar 32 /LastChar 255 /Widths 20 0 R /ToUnicode 19 0 R >> endobj 14 0 obj << /Type /Outlines /Count 1 /First 15 0 R /Last 15 0 R >> endobj 15 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 14 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 16 0 obj << /Nums [0 << /P (1) >> 1 << /P (2) >>] >> endobj 17 0 obj << /Length1 7156 /Length 4268 /Filter [/FlateDecode] >> stream xY}P[ו?>Io W</@Llc,@`0_BXrz )pBYvxq&:mL7yxgR&;3f?=v:m2֠=A:M{~=s{@�@/ORP�HDw͹G�xEt!wh2 ]@oDyt8 _Cx{ϼwe@<LA;A]+(C׊QBt`<@O(?xP y&ӏ}hY=S,5-o|}�4^dDtWTcj/0? 5XKj% iNп#cg2G1:�ZhJZf.r1vK].+l~dg3+*b;w>~q+ܸ64h-iEĊa(WȇlCrTYӶݛtSEyUT华VϬo-udnf fvRnc];aِcil"\I*f[A98zpcᶥ|b6YqӁ@-KO9,SCΓl9;';+:v(o]:+߻׼Oyة|j{S2`]hw!NJHh{۸X+%n`K%Nʛ5oG鮣{/-\w ׯ =h͝ާ=FHuW~8{"[ +ZwrٱA̖Iyú~1ڲK廫6l]y7+RO7zr6hzǶʂʆmXV6ؑEw5{I|6Xf-CS6Ҫ6V{ϾxBZ5 Kㆂ\>p=2pgf?2aOfJ:HB j{~5nx^�;;7_| odo?uv  &xw96q\-t_?oD2[Kc 4_Ouz@3yK ǀ\Z~ȯH rSW  t+[Y]h].'P༆3N PW4\Kp�pM3j H로kLįsD4psn2rUÍ|`E ;i}! χ*C'CG UB+BMO5*r4rgpmسubS 뉎X]I6$i%dNAf!00{K]C| z `V;"SXJ IZAXKŘGID&V <B#T0!M !q4fhtp2dlQd Y:k4D( ^v~%J"E[>hq>COƚ`-'<1dAJCt0q&V;|L )oawN! -w/wN%%8}N8J0 ,0MJͲP46"#_bXXʦ:v1Ù]#lT*~nm½ش}RIѐ]_ )bdž$ӆΈ!eu1"&蓩P$L? .g$ESH=L(<_"J4Kcq%U*Աϳrݝ,IC`U{Xu{z<uXHwknqy0w f~cJI0!|M&Y,"O�|l"]I2G&"l* N*Jb:  #`JȓJ"z66`3Ȅ[([KaNMO7N 7ͦG9*#o3mͳ*,t=Ga[P="/DZrEYG`tK܎c�xr;X܃OZX0X=sXb ZNBHgbG& iDw7?D?ȯ }[3Ώd3!*AuqarDBZZy??NѕsraÌfS0NQ]>H<%#SXb>[wl$q-<q 櫟~>D'[M?,nsM_ Bg1&I 3fKoJ6 RȫXKBd@HǖW͐3bʐE")^$"io%8Pb, )F�uN>xIpۄ] W =谖 VnM0E#, 4:ȱex[ٌȼ 덎 SI<7&iI /(A1\o|}"y&eUs?$긜[~yR|4gϞ~VgLğ{FD\2]W/%rRu\"(KW/ūu.^x틙z.ӁL;b-TAʽ7drt*$Yȼxr"]r^ Irxoh,l_,nKXYa1:8*xz{o{#P+jW1ȖFwcc{M^Jo]\|.Z|Xxn?yj~S[ۻUsUYKqpV{}|бW񩁭^5 oaôu~#tdV\$y2Y{ZH.#$d[ |>~jfDH@eYMdGNP[ktIA6w-p}@Ѿ#=]nqPi׼n۹c{6ZUn.1s z^s�STvr* ;^Pck59Nӑthk:撙!;e?S?.BV\a'SITpp"|~^ܩ|^>6dg u`OJ5`H__ףNR5t9Ep׽~rcڂ S MKt V%;]P+W:Rk9k<OIT}IfOD Z5PcxӍM2sBfnLf&9=_P0Q 7YT~bݘADlb-/ ~Q7#S/܂PP|Y_-Wa4{Z)垕U]MOHvչ1̧y(dZ*KK~_2'a~;G‡MB(4[}h 2p hHlGp;j1r7qD0!8ETWrJ<Y'hTs qmjw9̕Fr#0FWMW~''؉9ݕ&Ԫ%r,VG S<)ћniVaJ;G|wlո>KS5Z$?*`nlX95FMhe>|N/k.Rאyuv/<ߚ(v3mba^j@"˹WOVdfc#"9CGiM`e;SuZV;Wؽgr'ex;)gb`ΈI;<[xrJ_|R%#uxuмn`gG|W(6� 80 Foy0'zu8 ̸_Y̴QtY!0~ac<],p:9#GT"wyB jtrsp7p<3l$uM.zʠ_lk1Pwp sKfR.zoÏ[E{gk*XG xCĄo3Y}]7e/ӿ +XYx ΓnX\MۖJd8/fH;~=㮉檎7={;LF^Z8~;\G]xN7V i׿vi(܆+XaxTk]Rh}cG2~ #Eݧzfj4 eޣX!ljY}~/'qnf.dȌSN%P endstream endobj 18 0 obj << /Type /FontDescriptor /FontName /b4e9da+NotoSerif /FontFile2 17 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 19 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 20 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 500 500 250 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 623 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 613 500 500 535 500 500 500 319 500 500 500 500 500 500 500 500 500 500 352 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 21 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000523 00000 n 0000000574 00000 n 0000000846 00000 n 0000004658 00000 n 0000004955 00000 n 0000004997 00000 n 0000005045 00000 n 0000005097 00000 n 0000006660 00000 n 0000006959 00000 n 0000007124 00000 n 0000007198 00000 n 0000007323 00000 n 0000007383 00000 n 0000011741 00000 n 0000011955 00000 n 0000013317 00000 n trailer << /Size 21 /Root 2 0 R /Info 1 0 R >> startxref 14231 %%EOF ����������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/running-content-alt-layouts.pdf���������������������������0000664�0000000�0000000�00000066155�14163570564�0026570�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Alternating Page Layouts) /Creator (Asciidoctor PDF 1.6.2.dev, based on Prawn 2.4.0) /Producer (Asciidoctor PDF 1.6.2.dev, based on Prawn 2.4.0) /ModDate (D:20211231042007-07'00') /CreationDate (D:20211231042007-07'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 10 0 R /Outlines 19 0 R /PageLabels 23 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 3 /Kids [7 0 R 14 0 R 17 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 1911 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 126.0283 777.054 Td /F2.0 27 Tf [<416c7465726e6174696e672050616765204c61> 20.0195 <796f757473>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.5441 Tw BT 48.24 743.5574 Td /F1.0 13 Tf [<5468697320646f63756d656e742064656d6f6e737472> 20.0195 <617465732074686174207468652072756e6e696e6720636f6e74656e742069732061646a757374656420746f20666974207468652070616765>] TJ ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 724.0203 Td /F1.0 13 Tf [<6c61> 20.0195 <796f7574206173207468652070616765206c61> 20.0195 <796f757420616c7465726e617465732e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.4425 Tw BT 48.24 695.3317 Td /F1.0 10.5 Tf <4c6f72656d20697073756d20646f6c6f722073697420616d657420636f6e73656374657475722061646970697363696e6720656c697420636f6e75626961207475727069732c20656c656d656e74756d20706f72747469746f72207361676974746973> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 679.5517 Td /F1.0 10.5 Tf [<70656c6c656e7465737175652064696374756d7374206567657374617320616e7465207072> 20.0195 <616573656e742e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 5.119 Tw BT 48.24 651.7717 Td /F1.0 10.5 Tf [<4d61676e612076656c69742065676573746173207175616d20736f6369697320706c61636572> 20.0195 <617420666163696c697369732066656c6973206d61757269732c207072696d6973207269646963756c757320636f6d6d6f646f>] TJ ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 635.9917 Td /F1.0 10.5 Tf <7363656c6572697371756520656c656966656e64206d6f726269206e6f6e2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /Stamp1 Do 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 541.009 14.263 Td /F1.0 9 Tf <31> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 8 0 R /F1.0 12 0 R >> /XObject << /Stamp1 24 0 R >> >> >> endobj 8 0 obj << /Type /Font /BaseFont /1fc35f+NotoSerif-Bold /Subtype /TrueType /FontDescriptor 29 0 R /FirstChar 32 /LastChar 255 /Widths 31 0 R /ToUnicode 30 0 R >> endobj 9 0 obj [7 0 R /XYZ 0 758.37 null] endobj 10 0 obj << /Type /Names /Dests 11 0 R >> endobj 11 0 obj << /Names [(__anchor-top) 9 0 R (_landscape_page) 15 0 R (_portrait_page) 18 0 R] >> endobj 12 0 obj << /Type /Font /BaseFont /92f9b6+NotoSerif /Subtype /TrueType /FontDescriptor 33 0 R /FirstChar 32 /LastChar 255 /Widths 35 0 R /ToUnicode 34 0 R >> endobj 13 0 obj << /Length 1249 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 535.784 Td /F2.0 22 Tf <4c616e6473636170652050616765> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 506.596 Td /F1.0 10.5 Tf [<4c6f72656d20697073756d20646f6c6f722073697420616d657420636f6e73656374657475722061646970697363696e6720656c697420636f6e75626961207475727069732c20656c656d656e74756d20706f72747469746f722073616769747469732070656c6c656e7465737175652064696374756d7374206567657374617320616e7465207072> 20.0195 <616573656e742e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 478.816 Td /F1.0 10.5 Tf [<4d61676e612076656c69742065676573746173207175616d20736f6369697320706c61636572> 20.0195 <617420666163696c697369732066656c6973206d61757269732c207072696d6973207269646963756c757320636f6d6d6f646f207363656c6572697371756520656c656966656e64206d6f726269206e6f6e2e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /Stamp4 Do 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 49.24 14.263 Td /F1.0 9 Tf <32> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 724.304 14.263 Td /F1.0 9 Tf <4c616e6473636170652050616765> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 14 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 841.89 595.28] /CropBox [0 0 841.89 595.28] /BleedBox [0 0 841.89 595.28] /TrimBox [0 0 841.89 595.28] /ArtBox [0 0 841.89 595.28] /Contents 13 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 8 0 R /F1.0 12 0 R >> /XObject << /Stamp4 27 0 R >> >> >> endobj 15 0 obj [14 0 R /XYZ 0 595.28 null] endobj 16 0 obj << /Length 1522 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 782.394 Td /F2.0 22 Tf [<506f727472> 20.0195 <6169742050616765>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.4425 Tw BT 48.24 753.206 Td /F1.0 10.5 Tf <4c6f72656d20697073756d20646f6c6f722073697420616d657420636f6e73656374657475722061646970697363696e6720656c697420636f6e75626961207475727069732c20656c656d656e74756d20706f72747469746f72207361676974746973> Tj ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 737.426 Td /F1.0 10.5 Tf [<70656c6c656e7465737175652064696374756d7374206567657374617320616e7465207072> 20.0195 <616573656e742e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 5.119 Tw BT 48.24 709.646 Td /F1.0 10.5 Tf [<4d61676e612076656c69742065676573746173207175616d20736f6369697320706c61636572> 20.0195 <617420666163696c697369732066656c6973206d61757269732c207072696d6973207269646963756c757320636f6d6d6f646f>] TJ ET 0.0 Tw 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 693.866 Td /F1.0 10.5 Tf <7363656c6572697371756520656c656966656e64206d6f726269206e6f6e2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /Stamp1 Do 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 49.24 14.263 Td /F1.0 9 Tf [<506f727472> 20.0195 <6169742050616765>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 541.009 14.263 Td /F1.0 9 Tf <33> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 17 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 16 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 8 0 R /F1.0 12 0 R >> /XObject << /Stamp1 24 0 R >> >> >> endobj 18 0 obj [17 0 R /XYZ 0 841.89 null] endobj 19 0 obj << /Type /Outlines /Count 3 /First 20 0 R /Last 22 0 R >> endobj 20 0 obj << /Title <feff0041006c007400650072006e006100740069006e0067002000500061006700650020004c00610079006f007500740073> /Parent 19 0 R /Count 0 /Next 21 0 R /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 21 0 obj << /Title <feff004c0061006e00640073006300610070006500200050006100670065> /Parent 19 0 R /Count 0 /Next 22 0 R /Prev 20 0 R /Dest [14 0 R /XYZ 0 595.28 null] >> endobj 22 0 obj << /Title <feff0050006f00720074007200610069007400200050006100670065> /Parent 19 0 R /Count 0 /Prev 21 0 R /Dest [17 0 R /XYZ 0 841.89 null] >> endobj 23 0 obj << /Nums [0 << /P (1) >> 1 << /P (2) >> 2 << /P (3) >>] >> endobj 24 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 595.28 841.89] /Length 162 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d q 0.25 w /DeviceRGB CS 0.8667 0.8667 0.8667 SCN 48.24 30.0 m 547.04 30.0 l S Q Q endstream endobj 25 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 595.28 841.89] /Length 162 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d q 0.25 w /DeviceRGB CS 0.8667 0.8667 0.8667 SCN 48.24 30.0 m 547.04 30.0 l S Q Q endstream endobj 26 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 841.89 595.28] /Length 162 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d q 0.25 w /DeviceRGB CS 0.8667 0.8667 0.8667 SCN 48.24 30.0 m 793.65 30.0 l S Q Q endstream endobj 27 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 841.89 595.28] /Length 162 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d q 0.25 w /DeviceRGB CS 0.8667 0.8667 0.8667 SCN 48.24 30.0 m 793.65 30.0 l S Q Q endstream endobj 28 0 obj << /Length1 9340 /Length 5804 /Filter [/FlateDecode] >> stream xZ ty]<�/X` $x�I/ 2@ #gIN[ȑ%KW6$n:Ir4y}#7\$I]?(B�{a}d B8�RDQA=/{Ə#]5#o#*$5XIFe>95sFHNj<P Ȝˀ/ ;0AG5-,G@ <; !TR"X \#Q_$݀qb+aɽOPEo]eX,[)P~cK/!$jnD^E"Cۡ P $:#2$"?54)ňbnzz ld:fP7)M*jAM"jbv2-A'y1{#E4*_6y=br։Y)՝!n4~^)JAL$ge<総sYl.cxhp떾ޞnҾiccC}MhЕk84_%efH%bCSUٸn7˗y5NYujón,- K˚%P8ʱ!'Ǭ?͔ L0j5`m+c7kln+[HK|*dP|Y@P I3Ȱ<yfU.C䬂 u .yq/\Aa.$Gn}zv:y}h!>KWrV}|gzoxmCb^s'}tV')k BvCx9{=繴r`cBz\FNuiϏ.^dNvHΩ7YU/S#bVdA EאŤwh.jDs`UA69ڽ b|󙟪\vdr ,{,/*@`.sr4|ʳ&?6Nk{ԏ8y'#B zxܐUHo"\'e :Bd7^C+ً7٬dd6GG>n:2|PǪԌJv,9~ԭ®Ns\dQB4+?hjOu8\v$脂cpNU ,O^NJEPj^BCr)Y֝Ъ5+YϚ#-NEduzt.u2TQfC)I@慠©2 "|U8`yˠ̍GH2B~y[,Rz!{~Mm_UsR1GsIgAX)`Z<I;ٽs٪;V=@F}oP_-XavqFaZ(u+"R"$ Ki`z݂A 0D%dU2&!2rAc8m!W`"k¤ym p0%NS9_'uy;'b"P}ogf+ VQdBdU1:AjL L J~(BEtpe_W|/.ʖ/,ѲKԵ%�~ ,ɡXL4ӡM6a*I7,DKP) A&> _M;ʁ ڡ~^>L _B#V\r _>̓6R1Z)5ݸn^f:u/X</NjK+/ftۑB]  ,+}*\DZ./x"^p-3,?>KRٹssg|6gi+4[ߘ2O7Wi<2y<pST?Eq)j~v 2zтR R*4oL^6IW-A?q ](ǜ=* 00sAӲm(Xd;ш|=90"*2Fs,,e5{,hy5."!h?z@ X/ #dՒ<>k mŇy4}sǏC}|-bW%!�!/^EX, 2bT %H`3P33bx1#P*0$c33|HK ͈.޹ٌ V7׺zY.oczn7_v}^2b/Z-k<>T"nZ3}|ušDH_nKŊE:c~|F)(X!V_BzV9jG،똟2שzJGLwe\/OxZp w�=> x~P>C43O11"7.zLFuʛjv� !4dA`[�$+%T V͵F%[_Wn´eZE%/Tg-{ʠpZW]9(c <4%_J]P(]ldYߤ RrJƬw;el|K2'pd)=W+9M&R6c34W^$QSꊲý,RTWE(ej*s~Ƕ3ˍW?!Lp> kՖP83W-'q;B"1vqy5sXvnUj60;_~t򥊚i(姕5)S{_Xn+~tNs:E`%õA^2SMy}& 8u\&i b@3̪m#tlܑ׶Mjt1}:lVxIZh5Ni=##W-C՛6iw/}a#$Xe[EN?|A"kܸۤW/FIxEI̢)s_ܼХZ&3J:�>Rϖ|索Ϟ`yn.wW{6Nf. vTBv\)l5w$&\3m8FLa3^djĚrZ[_ظD=}L4UViPBQ3f۾0m,I TuO=c}kYSJWwP:8w|Nw0C̘mk5-ZY2Odzum}j}/gï=Թu Kv{cvcИ-';x]z 8HbV]5ZFYYV0{g}ȕXRB ,!6-x5d54iQh̵yhWX p:14`^bfoiCFn,K,Sk_ߓєJ3Tʌzg=SמG5l(TUwU61΢6jsx}1U^LPQfd*+ԙ gslnZ4j/cKll|LZkh.4כMMfWjrs C_G]~a&tOܺK؟T+Quj#WڵiM<ʜV_m䲲ee1AMW֨/^"'W(-1E]Gkӹp0MIW Y"5ÍVO<s"ӫjz{`Vf+5# ׬W4b*ֿz+یY:NL9٭k_)%.~ZjtMGl h`|k,}ŽeXw/噇[Z̹B;\KU._[yYa 45E΅98MW쉿avZ y@b&,,QHZsq&~R IƆ׼3OUaB\Òzm W+Ճˏ)M'Յ]~<vL1X"kx{~㞳gd93jw I$GpiD5oKTEu׎RteueyLny}Ig(64^0ڌyC,r˚zR+jiѱ9.W#Y X^? 0Z:UlPm֚fOc6C{ OdKfPOXccK4׶i,\HSo2w8؆P7X9[5:Suq~ۀc Q/*FmC2kh4+JScvVh`o8(m/}۟L>.͖>:t>|t=c+!o&[Q-{|K1~z-ߖjz 1~OYV[d}=F6=W' u*Io̅a"``%"$"Px3@ipCoݘ&yTeW}ܞӁ%<Ֆ)i52E33CDL0C\?t>:!bMh6Tj2>߮2]YTMZ)~2UUTbB$zx|&G RKb-AHڒ4gƽIZt÷IZ' I:)[I:I: b_YJ )Ag>lKҙ: H0Cv.$&ixצ4tYfP H"OLy.IÛI:U0I:dtĬbHGtuZ3Q䅮pd6 Z' #15U|}>?_4 Oy؇<I4`m/ cuC\ f6x}!OtuǘXpryBVOq,fM#&}g3NCI_a:u(]0O{o0<�8y>2o:cL{}Q6v NoIT7Rcdţ iV` ;mށv[pG`ٮ~}>\7b*8Qw$p "SA*XY81X7')gfECo 㞸O$](; ;D4nj14 toA]("hEQMo]-P= | n}y77z| ;7a0aE[ ?</I P]c,R2 s2 =P`>>CYXvv_niD"GP�灾V#DW,wz9l2f8M>6͙klM֔C~C d3}D r`rE"/$Ҿ<LA;<g Y$ hQoU AڸU</#!*:ۀAzZw~x; }@ž�Ua脮[ymh TD~LTX 1cTG$«Wb%'1τ%ɥG3žH"" \H,?o2!a.d'ԓuO;fA6#`IbJC Fs(`q$[X񃷻] ] z!3prs� A^1ȻD2H �q endstream endobj 29 0 obj << /Type /FontDescriptor /FontName /1fc35f+NotoSerif-Bold /FontFile2 28 0 R /FontBBox [-212 -250 1306 1058] /Flags 6 /StemV 0 /ItalicAngle 0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 30 0 obj << /Length 1278 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }ik/y_!}t~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=n?[i(JKiU:JSz2QeL*EJ̔Ye,*+eU(NU-уk5x5F^ky ^#k5x5F^ky ^#kxZV^kZy-^+kxZV^kZy-^+uxu:N^:y^'uxu:N^:y^'xz^^zy=^/xz^^zy=^/o xo7 Aހ7y o xo7 Aހ7y oxo7jo$JI$$*I$ITH$$QI"IDD%$JI$$*I$ITD$$III$$u>M&Iބ7ɛ&y$o›Mx o7M&Iބ7ɛ&yUoa[5joSor4ۂs�ޮ>,x/x;Â31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x e#e_y+h܊7k:/Z5dUluz5n[eB&Si|y(%q& %+S%*ABijPU6\h,(+L,4G5<cD [˧*t [ jjaijIxʪwgFwضR>sh>:OVRP*#i|e0U,*oU/*[U,Nmlx:&\}M)L2\%CHF7էʻBL)jƻJ1:%H߯:=S۳zrmkO媳7 endstream endobj 31 0 obj [259 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 752 600 600 600 600 600 600 600 600 600 600 653 600 600 600 638 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 599 600 526 648 570 600 560 600 352 600 600 352 600 666 612 645 600 522 487 404 666 600 600 600 579 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600] endobj 32 0 obj << /Length1 11256 /Length 6907 /Filter [/FlateDecode] >> stream xzytǙgUw}'H&x�Hx$�'h I@(RIqdɔe9%{d?ٛ^?ٲIDd2w׹f7I2G~^;/%yfv vW_};h#)"Xy"{rl챷bz:y,;f oߴf/B!YŌ'G2 m?32~%O!*z#AiFOP/]>ty+Pk}7i nY<gNGg~JB} 09h/y_]6 `#b+N/A㡤PW>!寜۰B攖@U`n9r4('$LKs/Ђ$W$&"%S4?a'a8 0ͨc`V"/qݒ׉'BhQP'tY~iϽoQ wMsGZctʣ\':|j~d(oH)$%JeD,shysgz*x {-FRq/%1Pd'$&%)PzFfVv27O2[\@_oOwWgjiok54756(7eE!_R$'%&eR 2YC\٩'u ;˶[&Ļ[ {$I$NQ |'`G4WH+ Pho͚!!۱Ubۅvo TXfL Z y6jjQj4cP`M IC2#y~{_OFn]0wX]egC)P` MX kHG oӳ=$IsnxDT" ܻjx۪{s}Ԅ' ~+x ͷ+CBY\/k p�Z>&e,*3e�j4h*SCHGא٨ 1nhKluw k5i+'tj0 JR#u1*9>$)@ SHdZIcH u!z-,ԩ~2[0{YˍYhBFRm[$sv"v )CщBF[WIn[#y "yYb0z6?XфИ(h,Cjr f4RjB1P1&c$)%�4 EbG\=vghk:@qZ5KQk弋Qc ϐL+;C$yV4VE#]J%$;ڤ z;1Mҗ1̋C9 @gª<P{*˜0ˇ̃.bq 1#j;nBhV3C6rsCUmWB}(DwIw%])H6 ͘ud I~UZF* dTԃ{Fe кw [ٹk fmcz}r%LRIh+4#trA1<yu&KqQʚZoH|26#92#CXh똑Ƈbo[(Nh#o/X_v|5*|=U V 237Ӏ 䉙6:Ƒs7M|r'ocp'mnm9TkNA $xbD Ge`<q,bd : Y $, ݄E1pA>k{EP�nyJ} O|b,HxQp߁C,Y9 sOhS?ĒqXz}#$u }%pXzXuwvS}So`x g21gg9 N~8tq)xv_w.m^b̗0Kwbwq[kw6$ <A|ij3?>`S{^|<.>w)!ObOwX<e+wN1 |<°,w\ґaJw$G)'(@n%1-I7$>t}ADTNs] l@ ii !u;sj U]!wXOh 3!N@PG/8."@p` #x`GD4DyA#:2\| #. Iဌm!-K^d)F tMVQȉ~Oi'FJos>争~~DYx 'l]&zl:^"z ?ś :.;Fi7a -i>~;ނ95-a2(ܣ-0:FPi~)y^AE0:-RlGrH!U?G %Q0rB.ÌO&Y n02W؂-6S͔007nNHA)ReϡJ<GɪcUcIdQT.uJ~*sʮ>gVixӽǒoL)&E3VmōoJ^{ֽ |LDFV݌ \uUR C'ǽ3 3}evoT(%L= F'7?AWBU Q:|sR!9F!=]0(j>1..!e 0+y뤩TT$B~au3ۂM) Ӏo<&4E6sJ_n鰛|$$L9c\Uy>uS<S[=^$gA%?FF}k@?he5ոf"PEl:9ih,Lɝw/bϢ6 F+Sr{yse[<wXtNiJz?tI[!rd)^m*jvT}xR�Q@ ]coM#&ղ<ZUmoD\Ӏ CΑo:xCz[ֹٟYrW0+㓶.254Ml7[ki ]l+b&qd!QaFM%~Z)$Ұrƨj_|CSݦpgt ƀ1jS\5G4KRejmZEQm4\CFWs/_mcs(M_K(VQ_q~QwsŬ"_|* btQi+PLwTiR^x#E+#Mo]:5}mnR4yr. .$a!M&Xf~771W@TNCQlmL.<"i JD-d6eq,Mi[0 dӼm! CfoG#˝?5t$:꽏|1QU7v0[+=}p5)'3kncvG}ΐ*hȟ_IO>ЮZFf?R$OB ˴+1GCƭ~kH(_O&qM2^FYn>w60xĬTjm0EO"KT7gpdk?3wE]?ݼ;�~Jv-R!FԪ032Wc>9m?\^pR=!$)Fh9/쪁rgl~\Oq_-ٴLSa7ayxʥsR/e3"81#epVpP)؇7׍=+kQUL>?񔯾ґ_"$'Rkr*5*:2-?Ϫrh}[ojbÆ)wUKM.׆uW}qw`5o>A*6J sdU]i`IאyabBg$~#l}6A]UTP5[d:U�ywWV񹺼$u!7}uųtVpcp"GLJei'4[3kS8vi^]Uzꄜ\iRNzNB ^ʑ+ iFO i[ҎqSz10ʬrmgSERRqeCZJBVtő|euGG'+ei#SNQ[v>X1cT٪ahɚcbT5Ԗ!i񉪸"MFJ^Y}@IHL*eݏW5{W~6vs"Qk}K&~$ܻ>Ď;zv<ֶ粪TD@otUhmQe<33_vj'zƒd;pac*n xdrk|ivV:-M]]ʧEy :>$rU|�ʄlt gRpY vyjj1MRAMA|3UґiuqmG;y8ŀ{#؅7K,z?ӳa;{È:8_8aO3Ž Z?I�/B}i& 7nUƪ-}}Mi)Ρ8 b.ḍ5;eH $uŵX;L'?*F-;5m% //(ccL�- ?Kv>K@v~lIiKdCqnB'Z?FH_<U-ULQVmOIX{rˍ^Zz5P_xurK# #S4cgǧ rpQXrti~7UJ ?6sS w` Lؔkjkjٰkw76̽w7GHڶ /D4{7h vFg&i�g 3";(8YXn'eCQiſn*o,lԫ䤭ng:0$w5E]Ǹ]~gk9'ĭ֎(PS�{U,ҧfT9kGTu˽Ov{ : b PՔ 5;J֒J^h U&kƂr}n~[yb[yFޗp L G5ZS:=kd0jm3PZQӎ 8>%H4]̫*pnF7¼kw"҈߆UgdrN}$F {ӢR؃nk%Igh6 Q>z_+o߳0"{F/i*dHm֢pSV3(I.?d<uZlL% *W7sTNg)E ?\0:ғ7 )NgBAsWٳ[Ɗx`ޝ<pF☉�@NfArg*J l^=:{y+;|&1GSImis,rZIrR;Glɞ5'{/ɉ"_C9Q܀4OloD�(jA2"4Y9y@%(͈%HP>zD($1HXd@'qwcA"{pC"aH0GfAHc`4dfQ=i)XHKP;/2da:娔kA'"ƹC1GwE:},҉JhϿ473++*ofw-Ny~4aot;e}ݻ47=Y,}?tY-z~[frzsEP^SW9]7Q#Rs<S7=bZE~Yx~vn1PEwX᷄"A6z4 7haqG؝ SsYl-yo:gKl.`)^~]FmT+ &$=|~m.{?59G[[Gv~`ott CƷ=]2;pxC%o qr/bI=3˞]Z C ~S`\1" ׊oy_M=F\ܼ4cvC~YD<D尢W>#/Ժ"7 o КJ/:)Ayd94Mf2�Z �-3 Oᾟ �M`l!;GzPzxK|ˬב~zZXfǣ G.AQ$2уc�m F{A(ju {F�2`!~/ۨ|Fx6Z[qr4o@O(kf< �uq]ʀs^?A6E ͫ @Etz3恝4hQFP'v@IꭐzҾa�B{tQ:fsA-Dwh!̈́�ŸDX�.p4<_v$@LYG$y:Ќ"8e4"Sb-d&l<=F.nͮ-S "l w>�1\mJb FtsVvKCCI(_r3_92Zw@4A4CQ+9b67I endstream endobj 33 0 obj << /Type /FontDescriptor /FontName /92f9b6+NotoSerif /FontFile2 32 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 34 0 obj << /Length 1278 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }ik/y_!}t~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=n?[i(JKiU:JSz2QeL*EJ̔Ye,*+eU(NU-уk5x5F^ky ^#k5x5F^ky ^#kxZV^kZy-^+kxZV^kZy-^+uxu:N^:y^'uxu:N^:y^'xz^^zy=^/xz^^zy=^/o xo7 Aހ7y o xo7 Aހ7y oxo7jo$JI$$*I$ITH$$QI"IDD%$JI$$*I$ITD$$III$$u>M&Iބ7ɛ&y$o›Mx o7M&Iބ7ɛ&yUoa[5joSor4ۂs�ޮ>,x/x;Â31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x e#e_y+h܊7k:/Z5dUluz5n[eB&Si|y(%q& %+S%*ABijPU6\h,(+L,4G5<cD [˧*t [ jjaijIxʪwgFwضR>sh>:OVRP*#i|e0U,*oU/*[U,Nmlx:&\}M)L2\%CHF7էʻBL)jƻJ1:%H߯:=S۳zrmkO媳7 endstream endobj 35 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 250 500 250 500 500 559 559 559 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 623 937 500 500 604 500 500 500 612 500 500 500 500 500 500 500 500 500 500 500 500 562 613 492 613 535 369 538 634 319 299 500 310 944 645 577 613 613 471 451 352 634 579 500 500 564 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 36 0000000000 65535 f 0000000015 00000 n 0000000264 00000 n 0000000466 00000 n 0000000537 00000 n 0000000588 00000 n 0000000860 00000 n 0000002823 00000 n 0000003162 00000 n 0000003331 00000 n 0000003373 00000 n 0000003422 00000 n 0000003523 00000 n 0000003688 00000 n 0000004990 00000 n 0000005331 00000 n 0000005375 00000 n 0000006950 00000 n 0000007291 00000 n 0000007335 00000 n 0000007409 00000 n 0000007611 00000 n 0000007787 00000 n 0000007946 00000 n 0000008021 00000 n 0000008291 00000 n 0000008561 00000 n 0000008831 00000 n 0000009101 00000 n 0000014995 00000 n 0000015212 00000 n 0000016566 00000 n 0000017480 00000 n 0000024478 00000 n 0000024690 00000 n 0000026044 00000 n trailer << /Size 36 /Root 2 0 R /Info 1 0 R >> startxref 26958 %%EOF �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/running-content-background-color.pdf����������������������0000664�0000000�0000000�00000020741�14163570564�0027534�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.3 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.alpha.18.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.alpha.18.dev, based on Prawn 2.2.2) /ModDate (D:20190527014541-06'00') /CreationDate (D:20190527014541-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 16 0 R /PageLabels 18 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 842.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 404 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.0 669.926 Td /F1.0 10.5 Tf <48656c6c6f20776f726c64> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /Stamp1 Do Q q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /Stamp3 Do 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 541.249 144.388 Td /F1.0 9 Tf <31> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R >> /XObject << /Stamp1 12 0 R /Stamp3 14 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /fe925a+NotoSerif /Subtype /TrueType /FontDescriptor 20 0 R /FirstChar 32 /LastChar 255 /Widths 22 0 R /ToUnicode 21 0 R >> endobj 12 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 595.28 841.89] /Length 178 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /DeviceRGB cs 0.0 0.5725 0.2745 scn 0.0 681.89 595.28 160.0 re f /DeviceRGB cs 0.0 0.0 0.0 scn Q endstream endobj 13 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 595.28 841.89] /Length 178 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /DeviceRGB cs 0.0 0.5725 0.2745 scn 0.0 681.89 595.28 160.0 re f /DeviceRGB cs 0.0 0.0 0.0 scn Q endstream endobj 14 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 595.28 841.89] /Length 178 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /DeviceRGB cs 0.8078 0.1686 0.2157 scn 0.0 0.0 595.28 160.0 re f /DeviceRGB cs 0.0 0.0 0.0 scn Q endstream endobj 15 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 595.28 841.89] /Length 178 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /DeviceRGB cs 0.8078 0.1686 0.2157 scn 0.0 0.0 595.28 160.0 re f /DeviceRGB cs 0.0 0.0 0.0 scn Q endstream endobj 16 0 obj << /Type /Outlines /Count 1 /First 17 0 R /Last 17 0 R >> endobj 17 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 16 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 18 0 obj << /Nums [0 << /P (1) >>] >> endobj 19 0 obj << /Length1 3392 /Length 2001 /Filter [/FlateDecode] >> stream xWkl>qX;q&6yxAB! @vW4{b!E}U]u"AeTEhV[T~UUT ]]VUV 3˿:̜{^�:HRP]iF�&f?yC %,�zǒ3nB3ꏡB{{R:IC[84t?KhtZ ,U)))�tpM�lCv◀ Эqw W ҧG},ۺW]m xMVOnh8,Ib2]5@vn8rO`F heܭqZ Zލvq,wâ_865= -bfG-B/Z]h,ZZ|.̐Kk5R+| v՚ RJ<" &Tϗ W c+'w<?=>P_qdٹAe0qxh:t}MO}C ^2v{\|=K\V.+~ܻzZ]Xrp֪Uj3irjTA'smkSw×RSk<}讚gz]7cKNZ-x 'үz;=Mvs@,4֫oO];mM3fҝ:ށT}- y֕w|@C.Cs'6[jw+(W˾o]B,e3kY?nQ ] E66d'UW+fcDu#=~%%=0v u~k}RkP},1K/Ĉji +?jǑZ+I_mB sNDAzl`-&eP64\An=vke NrǪ'Y2JU7C˯5{&jkj<Fo/>- ;5v5ܘ<|HDx#_"7Q ?Nѳ`/)q5[Xa'6^#ϙPoYѯ2?z@wQ*Zw70KRe:xJ@3Op^:yС“9z\�{wQ(]x ? fO3YP '"l590 x2*Ms 0?<Iy0V렒+ 1\UJDͰ1%"n:rAR0ѕXIn'dNЯ2 >`VO\+gx9 p D÷MW 8R x4ܮ^0(ф,HEa0pDʙrD#G4,@pCWA<2Z al`Iꬬfx4^# N(9E3Y<ImDf|BhӢGB 2JJ-QrRSQ!cGƴ8-|) x [t%Sr&WRB Li,pCĒx)Yy'uF H9)eev}ׅkIb 5蟨FzlhJRr!m5MieJ$Sx*0 FцpRN141MJB�3^BLd+1\.w:JDZŰt(Dqj~MȱVSQÓO7ɘ$KK򑸲y^e5,by=4˩,V,!+]0sȕ^cDI1:OqEkD6[u9JQDsCUuҺ"2gNYDư`;bt(@5W|H˴_އC<۠aؿ翭m{ endstream endobj 20 0 obj << /Type /FontDescriptor /FontName /fe925a+NotoSerif /FontFile2 19 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 21 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 22 0 obj [259 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 559 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 792 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 613 535 1000 1000 1000 1000 1000 1000 310 1000 1000 577 1000 1000 471 1000 1000 1000 1000 861 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj xref 0 23 0000000000 65535 f 0000000015 00000 n 0000000266 00000 n 0000000467 00000 n 0000000524 00000 n 0000000575 00000 n 0000000847 00000 n 0000001302 00000 n 0000001644 00000 n 0000001686 00000 n 0000001734 00000 n 0000001786 00000 n 0000001951 00000 n 0000002237 00000 n 0000002523 00000 n 0000002809 00000 n 0000003095 00000 n 0000003169 00000 n 0000003294 00000 n 0000003339 00000 n 0000005430 00000 n 0000005644 00000 n 0000007006 00000 n trailer << /Size 23 /Root 2 0 R /Info 1 0 R >> startxref 8135 %%EOF �������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/running-content-background-image.pdf����������������������0000664�0000000�0000000�00000027741�14163570564�0027507�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20200102234801-07'00') /CreationDate (D:20200102234801-07'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 12 0 R /PageLabels 14 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 792.0] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 612.0 792.0] /CropBox [0 0 612.0 792.0] /BleedBox [0 0 612.0 792.0] /TrimBox [0 0 612.0 792.0] /ArtBox [0 0 612.0 792.0] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 657 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 744.036 Td /F1.0 10.5 Tf [<48656c6c6f2c2057> 60.0586 <6f726c6421>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /Stamp1 Do 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 773.508 Td /F1.0 9 Tf <31> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /Stamp3 Do 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 558.729 11.508 Td /F1.0 9 Tf <31> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 612.0 792.0] /CropBox [0 0 612.0 792.0] /BleedBox [0 0 612.0 792.0] /TrimBox [0 0 612.0 792.0] /ArtBox [0 0 612.0 792.0] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R >> /XObject << /Stamp1 15 0 R /Stamp3 17 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 792.0 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /cc8a43+NotoSerif /Subtype /TrueType /FontDescriptor 20 0 R /FirstChar 32 /LastChar 255 /Widths 22 0 R /ToUnicode 21 0 R >> endobj 12 0 obj << /Type /Outlines /Count 1 /First 13 0 R /Last 13 0 R >> endobj 13 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 12 0 R /Count 0 /Dest [7 0 R /XYZ 0 792.0 null] >> endobj 14 0 obj << /Nums [0 << /P (1) >>] >> endobj 15 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 612.0 792.0] /Length 411 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d q 0.0 762.0 m 612.0 762.0 l 612.0 792.0 l 0.0 792.0 l h W n /DeviceRGB cs 0.0 0.0 0.0 scn 1.00000 0.00000 0.00000 1.00000 0.00000 -0.00000 cm 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 cm q /DeviceRGB cs 0.898 0.502 1.0 scn 0.0 762.0 612.0 10.0 re f Q q /DeviceRGB cs 0.5294 0.8039 0.8706 scn 0.0 782.0 612.0 10.0 re f Q Q Q endstream endobj 16 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 612.0 792.0] /Length 411 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d q 0.0 762.0 m 612.0 762.0 l 612.0 792.0 l 0.0 792.0 l h W n /DeviceRGB cs 0.0 0.0 0.0 scn 1.00000 0.00000 0.00000 1.00000 0.00000 -0.00000 cm 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 cm q /DeviceRGB cs 0.898 0.502 1.0 scn 0.0 762.0 612.0 10.0 re f Q q /DeviceRGB cs 0.5294 0.8039 0.8706 scn 0.0 782.0 612.0 10.0 re f Q Q Q endstream endobj 17 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 612.0 792.0] /Length 402 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d q 0.0 0.0 m 612.0 0.0 l 612.0 30.0 l 0.0 30.0 l h W n /DeviceRGB cs 0.0 0.0 0.0 scn 1.00000 0.00000 0.00000 1.00000 0.00000 -0.00000 cm 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 cm q /DeviceRGB cs 0.5294 0.8039 0.8706 scn 0.0 0.0 612.0 10.0 re f Q q /DeviceRGB cs 0.898 0.502 1.0 scn 0.0 20.0 612.0 10.0 re f Q Q Q endstream endobj 18 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 612.0 792.0] /Length 402 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d q 0.0 0.0 m 612.0 0.0 l 612.0 30.0 l 0.0 30.0 l h W n /DeviceRGB cs 0.0 0.0 0.0 scn 1.00000 0.00000 0.00000 1.00000 0.00000 -0.00000 cm 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 cm q /DeviceRGB cs 0.5294 0.8039 0.8706 scn 0.0 0.0 612.0 10.0 re f Q q /DeviceRGB cs 0.898 0.502 1.0 scn 0.0 20.0 612.0 10.0 re f Q Q Q endstream endobj 19 0 obj << /Length1 7724 /Length 4670 /Filter [/FlateDecode] >> stream xY}P[ו?=IȆ+  al丶 $YGMq>x:$f2Lpw\ҦYgfNǛit;ڞv'ΤI&^=08Φ?w={{ι> �A OxمFD 9S#/d'�aoz�u)߼HѢ\=6~هv7NxAL{-'9({¡h Α~q<z' -�H]t>gp ۷#gwQ#щo|h}o l~�Xw^DUYzT4`vV}'Pm.5fG\v>E_'>%r|5$6 5[\} >8د,B+Y ImnSV , 2RdHk"ufU]VFJf68?WRVw^n1ahr+w6Z98wo@1ΠfKP)J%euM.R/vKJ&CyT_QsBsL+VVwo/nܬ/+=ueu}q ƀq$mTZPIꌹRI央x_1J /JBP04 YQ2Za"pInV/gn1m[:kmƜO%E$l[$Ֆ-BT" \}^ZEUuSfVuB>+/2m,Z|a~[\|4m] Z4* _/wðp<028QT.}_T}F*@s-5~炙{9,yx4q]uIbtph\˯)+7Fx0c;Z`n^I6O[mEAbEfyӸ5yKW݆Sk-nٴ+Euχ<W:Z@hRhl0S7cc[aKDܗN+umg;κw\Wa=fwNbRtϦnlsM,t{㶕Yu,x HfMΒM8,ZǗ2 5լp|_?fBZQ둽{l(j"|4_`ytɆW"ї6\/x*E_ӄ^JmRV00Y,Oո5wV75jY>K2m}Rw;Zl?/ i!8 9G^>G=%5)xXnrT8*3pTsE;"n{STN[WG2xd0);'R}LND}V]xQ);OՂJU+{z i E<{=nE~4K=0 P ,\ p3 NIdG +ࢂ8 4*!) Hk@GJ=JH@I9Z%\ w?(x*LOMBYحip@8P,FӡIEY3AQ5K<k~P2PPk(< [h{(4:a3m)JQg(a` !ނ/n~Fa(uBfDٿ+%?>u KCu#<BB-HtrFa  bSa4y;R]i N4F/%miݒA$fsVhq6EO[{kk*ጁ(XOx#GhhdWCn/Bp'n7FtCo %�J^yc^:0M~ˤ$i IEF61nE,3N97#cXb{̣ܽЄe!! ϿRb{nj$iFgʂu-! P&飱I_ -~?$Ng` ӣ-QGh$v7g2ɠ1?ut=a0'PEoef33/EC# -ivNG mivt:΁�=iwО~mF6wiWghNwh"40pn+ %g #a: NzGqad"e'1oˣcHTh2B' PS5cN)>Ɨ/[81 [He6a|3b6u_,Ƹ|�W1YPȝ6</37!*ؗ7W_Sh26S'>܌g?(we-ŭQɶ6w]tJz'¥_QnccQ6Q_W> If[2פL˗.3-\HTO ۑn \'6L*6%7_ե}): cQs40nEF-=m{n680?(q|ُb;~޷ϼ(sHO~l}z !KQÚ$z3Š@"ȫXxD8�<!X&rH],.8{HybL/b@BZP’,2I2P'8$ T 'A{ X \[/U# "#';.6tova,}%"_[s{d2 s>>k_Bs8u5'>x5*Q[ګDsֈ|_L_u?#MljFsORO>EyS"<{2t1p !7$3%z}ug/Ϫ}vĬBCd{mq жP{H,$uk)Dxu'.ZI[VjO`Cx{mMSf,xCr ڪ.gS;ɀ vW18jr$˩r gd .go'U*tQyrznQY5Sz#r־v l蒷8\gKa*Xm˃w4UDE+\ %$Zd x3&'FAT,jaD$1L e+xW2(ZY�VptӵnkmijjlYcu-fSզҍR@\MѨU"z.y\UeRGɒ #;ܶZGFWkZQs6MkRӺItLU.QW6Γ}.$7?*FAc6*mv ZV ұ5y#shװaeɽ}.`4MUrdM)eM)i\c:Tf$K7.JB�g$]d]tRD>*T9j7oh['$s= .5)[yH26}wdy]q^f@G;ЧF#y+ O20΃RkԒd-K-=F˪NdGCOY($(sR ݂VvLa]:.d~||dʲs i]{ccH@MUrGe2mXz-l<|E ze9,{]nUϰKmldjK#9c1bz jWj5P n#k,]c.Q-n͊h[' .շߵ]1:Th$!I)kK%D7*mXZSJx08ei@]xN/irmWYv,i<ۘLU6Se`eXjKq@L@10R.67<>J\VI+n#6/ ̙r[asv./5w.5ӸVrZ)Kwl)XHm^L19e K:}qjڸ<`]kT_˜D雳G]�#Z=-zX9*0LL`L(h5+4oUq1F`x^Hb%L@LĬcF` }{X|w=n㐇?" #5A!I9]ja.J`f<b7Kgz߂|T_Pjݠ'�o~?"v&> |ae/xaxADoYy]wM}(<-w<0C:`a.iD>Z -۩?)b ?,$Kx [~8+{o#}#AAnr7< ?Pje1Fk|=4ů0< <B ^j\[P&ņYpIxYx(F+BP!$'&� ì endstream endobj 20 0 obj << /Type /FontDescriptor /FontName /cc8a43+NotoSerif /FontFile2 19 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 21 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 22 0 obj [259 333 500 500 500 500 500 500 500 500 500 500 250 500 500 500 500 559 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 792 500 500 500 500 500 500 500 500 500 500 500 500 500 500 1046 500 500 500 500 500 500 500 500 500 500 500 500 613 535 500 500 500 500 500 500 310 500 500 577 500 500 471 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 23 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000458 00000 n 0000000515 00000 n 0000000566 00000 n 0000000828 00000 n 0000001536 00000 n 0000001868 00000 n 0000001909 00000 n 0000001957 00000 n 0000002009 00000 n 0000002174 00000 n 0000002248 00000 n 0000002372 00000 n 0000002417 00000 n 0000002934 00000 n 0000003451 00000 n 0000003959 00000 n 0000004467 00000 n 0000009227 00000 n 0000009441 00000 n 0000010803 00000 n trailer << /Size 23 /Root 2 0 R /Info 1 0 R >> startxref 11718 %%EOF �������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/running-content-border-style.pdf��������������������������0000664�0000000�0000000�00000023407�14163570564�0026716�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.3.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.3.dev, based on Prawn 2.2.2) /ModDate (D:20200126070716+00'00') /CreationDate (D:20200126070716+00'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 12 0 R /PageLabels 14 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 330 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /Stamp1 Do 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 541.009 13.888 Td /F1.0 9 Tf <31> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R >> /XObject << /Stamp1 15 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /aade86+NotoSerif /Subtype /TrueType /FontDescriptor 18 0 R /FirstChar 32 /LastChar 255 /Widths 20 0 R /ToUnicode 19 0 R >> endobj 12 0 obj << /Type /Outlines /Count 1 /First 13 0 R /Last 13 0 R >> endobj 13 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 12 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 14 0 obj << /Nums [0 << /P (1) >>] >> endobj 15 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 595.28 841.89] /Length 166 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d q 1 w /DeviceRGB CS 0.0 0.0 0.0 SCN [4.0 4.0] 0.0 d 48.24 30.0 m 547.04 30.0 l S Q Q endstream endobj 16 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 595.28 841.89] /Length 166 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d q 1 w /DeviceRGB CS 0.0 0.0 0.0 SCN [4.0 4.0] 0.0 d 48.24 30.0 m 547.04 30.0 l S Q Q endstream endobj 17 0 obj << /Length1 7148 /Length 4267 /Filter [/FlateDecode] >> stream xX}pu{/~%R\ }$@>hI�$D dWH $�,q#[L[ȕ3IZ7GЙkOfGFL7ڴfO"}8Ҕ,gz߾}@�`ԃ.N~" '�¯'a)+c<EhTjPo2|,)IL>wCD:k_B>e/؈t;< P!HW7gz@0z4C3]8�[@16u/G .55ZVi/w絗N=@cb.3M v!g˿;�W4]վըܸMh.+mb;i,+ o}CSgv쩪kn5~rm.n4`Xgi<k}Ku0MlX؄6q{PQlTS͵w"%{+.vs<qKWw?+zyɷ}ݧvo6wwXj'.?o/޺Qrټ7p^fNdW36sֺ4qc"Neߒ{/F_?0,l۟4?wS?=}&5mP/ [76onֽ}sRaV&XIy]cȝ\ 4 1gl{jtTHA[j/T6g <�U۳~>@ǮheC:vn,Xm+1n2En&;~[V/Vu=Ý:JزxmϾsQ}tꕩ֩WR--闙/n ֺY~Y0,p26Œ>(_+T[vT%{oY5x/~tuZ˃UB_lWTUx'4 6حyWa < -|}^#J&w4ߒFīw_`| P4Z h[Iv sy Bp̕OD~!c =0�p�Mddyv," !8BUqϩl%a"*BN5PN*bҬZ$*# m=Ԑ'9 WT�_x %*^�[/W !ᘊAS/6wO*AŋU*+RU75?SؠPh?ՕHNb ^߰v'2Gmcb4rA$ ӐC2mB7&�%al@dˣ\.#Q#`Kd'bcЇ<,|\#cD8Ň!?Odhdx<ut~dsi:o$G8cݒa9%V9FE6ǎp8"aeD34L3) _1S'%aN#%p|?NN9!9<yN8J!0 g4g0MrLeH46##[b[ɧ] 03{ÎLE3d裏ƹ{mI! ;Ͽ RbGdž$ӆH eu TәH,9ܓw))\fPÝg/1y4YLFx=9)GI9WޗWfeޛ,KgR)EptWC;;|_-=聎!G y}(iG_zT9)*wt&R46Jhl,6J'8")&ci+2 g<8*,S):L2Y s2n"7w}o_q2m6Q0b6,\ׇ{d޽<;PȽ_IJg3VeTa^;؇mo V�i?ޙ܁ }({zx{uAba2ZNK3)#_$K+E%IeG2פO0ߺ$pr)"i5|-DG99aJ)g.KT,Iұ ["5nulq-,Iq'V?,&>to>\#M:B'&{u ',YjD^Śs&¥ ?Wrxsd߿@Js dftrlptJXRR I1q""V5 8[=G QJ  o?""#^"؂u,c}ǚ@BaqF-\r D+y:?\u ڮd Ͻxziuu\'M׉ZkK1W?>gn /_ N<O{"3K9)o? WΒYrl8KPg33Wh;s̵3h,x"S}k3X$v&R_&Wuhƫd>㙱Uj. GbD XaYӸگE5h~x\%apoC bOwan3t& )KAuBRJR1UZ%ܐj{} 9X|v Tt'|00GȳйW (M^% k`øin-tt/>F %$mMC3gɡ!TjaD<~r�[tiAКbePZ W0 {v]=޵sGsCVWuf}RXZi5"z%CTR4:&Ka+NSӁcwi:eMbZWK]U~<98S R=ۚ\Xٌ#2 Q>ͺBN+*쒺ºZ+,fRrlm#!lu `XŦUD+Q.lzɻS*.E)i\g0GH"qlVteO+eVeT=J\JNbe~:%QD޻y'Vݛͺ%Ά̈DRv8t?s?8eRc(JZź1 <PFÈ]22˂K: tlf ?5@^f%pحAE7z*gfgyxHhYEcD$TX|zB2*%Rvumr]Vy"1h7[p)lHȅL8t4%Bh h]c͇~#\GCOKI\\'3uRޥ@hT]N63ueYnH~`+ ^&jFh"cJu]9F&"EP Am43N>w``jti,h)O,LbP76Vŀň(KV6l.٩1R-K%6dW]TGX�zD  H!JUd)(E1Q:tY&0cU,YY2rI%ܣ�KwǮ2?)XH0 Ϙ%JHVZ66Ocs^;YW_DN9IkF�zr(pI BW38w^� e ( oz0{5(q̰q 1؅QwWl(r֢GK"w9"芕BITN3= kI]cYK}VЧ `J{Y;rx w_\///{oW0O�~u~4AĈoSYy]M}|s?/U yv 6 '`B" flk. qqWy}cE="?=-| [/8/q,"} O#UE:o9Tn%̫ |Mm]+b!o}'+_=< O5kA( r]Gw'^wb%,vo$.5MY&|OɍhS�t>: endstream endobj 18 0 obj << /Type /FontDescriptor /FontName /aade86+NotoSerif /FontFile2 17 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 19 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 20 0 obj [500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 559 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 492 500 535 500 500 500 500 500 500 500 500 645 577 500 500 500 500 352 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 21 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000001220 00000 n 0000001547 00000 n 0000001589 00000 n 0000001637 00000 n 0000001689 00000 n 0000001854 00000 n 0000001928 00000 n 0000002053 00000 n 0000002098 00000 n 0000002372 00000 n 0000002646 00000 n 0000007003 00000 n 0000007217 00000 n 0000008579 00000 n trailer << /Size 21 /Root 2 0 R /Info 1 0 R >> startxref 9493 %%EOF ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/running-content-column-rule.pdf���������������������������0000664�0000000�0000000�00000033556�14163570564�0026553�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Document Title) /Creator (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /ModDate (D:20190704030703-06'00') /CreationDate (D:20190704030703-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 10 0 R /Outlines 13 0 R /PageLabels 15 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 842.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 1550 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 192.5425 777.054 Td /F1.0 27 Tf <446f63756d656e74205469746c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 746.406 Td /F3.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 251.8349 820.398 Td /F3.0 9 Tf <6c656674> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 284.005 820.398 Td /F3.0 9 Tf <63656e746572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.5 w 0.2 0.2 0.2 SCN 269.9289 833.89 m 269.9289 813.89 l S Q 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 329.3511 820.398 Td /F3.0 9 Tf <7269676874> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.5 w 0.2 0.2 0.2 SCN 325.3511 833.89 m 325.3511 813.89 l S Q Q q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 251.8349 12.388 Td /F3.0 9 Tf <6c656674> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 284.005 12.388 Td /F3.0 9 Tf <63656e746572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.5 w 0.2 0.2 0.2 SCN 269.9289 22.0 m 269.9289 8.0 l S Q 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 329.3511 12.388 Td /F3.0 9 Tf <7269676874> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.5 w 0.2 0.2 0.2 SCN 325.3511 22.0 m 325.3511 8.0 l S Q Q Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 8 0 R /F3.0 12 0 R >> >> >> endobj 8 0 obj << /Type /Font /BaseFont /68f192+NotoSerif-Bold /Subtype /TrueType /FontDescriptor 17 0 R /FirstChar 32 /LastChar 255 /Widths 19 0 R /ToUnicode 18 0 R >> endobj 9 0 obj [7 0 R /XYZ 0 758.37 null] endobj 10 0 obj << /Type /Names /Dests 11 0 R >> endobj 11 0 obj << /Names [(__anchor-top) 9 0 R] >> endobj 12 0 obj << /Type /Font /BaseFont /f5c32d+NotoSerif /Subtype /TrueType /FontDescriptor 21 0 R /FirstChar 32 /LastChar 255 /Widths 23 0 R /ToUnicode 22 0 R >> endobj 13 0 obj << /Type /Outlines /Count 1 /First 14 0 R /Last 14 0 R >> endobj 14 0 obj << /Title <feff0044006f00630075006d0065006e00740020005400690074006c0065> /Parent 13 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 15 0 obj << /Nums [0 << /P (1) >>] >> endobj 16 0 obj << /Length1 3744 /Length 2184 /Filter [/FlateDecode] >> stream xV}lS?gqȇB̳ώ?8$8g! (_l??v h-Z@[>P"DcZi4iiCe&MEڴRHB:f{{ �dB$SZރ(}<53=,:!G�%]8gcB9MxK$nTڧn"G3`h6;:|C:ړ1_a @Uw.Fj@E@`v)@VJȠ3賦T+e>C l�+@Ԍzz_㈃<L^U]xL5ojl sWwK7oL].|+Q(kdoPzSV=sbh kE] `$T͒\A*)KbhE* ݲcf*^מdm=RAc 6sB9sUPkr}5zc$5 bMJ5ZI=`$x١'~:ꔿ39 ٯsW }٠ciu; mncQD} lAw<iLFZ֯''xuHo^ΈW/Dh@t_8cWFOpˇܘ=so)$'v5I9yzzyuKxklu76Z:[[O᫭_Vbktv[s{^~oAJI[4Ŭ`(y1A*u [XtKӭ ۃA-6Ƈt}:[kf‹Q_ck3=g.Zݣ_> s4,jZ|շ'[qZ4s$&:BM77Dyg\weo*?mB3=(ϭrTWI LRb*SeN>.|r콓aB]wsVn<^]KP&jn.e%!z:H.Yj|j*hXt֘0Z0[hȌlПԻ .=[F_5<ON->5rwTf\kEbo^Q5 ~ѩݴclUfޯlr:k7ԍ&QwgYwԯ:a!ݹID?n(N.UKy5'8F:R[ $s& HO�;}t]iN/\ Xa0=rH9C7q6$?,d,u e¨B�Y Gq]Z<8::,h E4^޾xC#r=ⲩϸC ) ZE\G+8 'x@i0[ NC TR ΀jQpC BIWC uD闀:)5sW'% ^ Ҫ॰ (\DPp-$R20{ ^]t.F _xVˁV ´+x<&ffx"zܭvP) ۗJcPs|Y>6!3XICFk7 8*"0! Ia;`UNxlyz1FļȎ Ov^VS1G,bZdS!O㬓}gęie=.#@vⳆՔu%4ʹ}t&)9$b8{Ӑhkj zedl$ aVZe$FɣLaDٳ5HdGkKlkɹ]KEv:HXK cͰhchC(/qi+b0<3I+*x..+BGD\y\߁ 7.,r<)'gI+q)Ge[2u.?K_YVz;4c! '|:N,Ol_&FiaùaD+-bJcraJqHC+Z+״ =R!/cDqWE5602>X{e2g1.r"Xx`�+΢|Qn~x/.>[x6Nhe˺ endstream endobj 17 0 obj << /Type /FontDescriptor /FontName /68f192+NotoSerif-Bold /FontFile2 16 0 R /FontBBox [-212 -250 1306 1058] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 18 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 19 0 obj [259 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 767 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 652 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 526 1000 570 1000 1000 1000 352 1000 1000 352 985 666 612 1000 1000 1000 1000 404 666 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj 20 0 obj << /Length1 3892 /Length 2351 /Filter [/FlateDecode] >> stream xV[p>+ɒ,[HF֒eٲum؀1ـc=.1fJN3CfZҙ2L: =tΔ҇f@[`ѳĴ}jvW?;9 �(RHb\R"r E.W% k&| 6>Se# m\{inqHDўE9"GОO&ҙܫDx> iB4TROx�*+ $RUr/UW>86dZP3K]}AZbIV94ՔPґorg]=}jM ߼qvMGS[ʉ߾A\geĸ/WG&  G *xDM9}J`gp1qSeJ}hG e/ٲ-ٽw=ǩ;?}gؼ[\' }4~]쬓5Gz;h0i|$w|$@)�r6khI|^;s{|zL%zQM4nZ ^WSgOηk\L]kZewHl9-9CHl5(51RZ C34<;Yy(FTQ+ T%&+qԴ5he􌊦kڲJo/L߳:͌S۰>3zfGAo^/4Ժǝmд8s UvIUrN[*iΌ}mMMr);y`i_DžS{ m09}rU\+)37TכYǻƽ6Tmo}xIz t"YCk $s[/l-1K$g:KA;s{b}%[›ڸFru|aã&᭹:=oK9 qyRo1xXU R++]*: >xM7i7⽤L ݽ@ qk&y缯|{3߇Oz~H2bk>n:Ժ(=^M &~sKBwܸ*HM e"-x5xFۉ|ozzpIsVMoD7|ƙloor*u)ݝ:"õXKjo_D۲G"gP2eG]ަ^RΏ/Lw8>trż 0?M!z RJ5NVXǪH)wƓck}kF.#S) [͐vƦăxdA/z\#_d,)U;.QwdCdlR ȗFZi \o`f~Z;scq}qg~tD ~hK$$HI>S qXJJ|~8G&&FyS knbOo^GĵY8ro5zba� _9qU)'@gE8 SPDµcX' ".5q)Đˠl[L ". wW\fUĕX)WM~"KVh[UK͈x +"^/E,ZKadt0\JEB 㰷;D" 0>FPHR, B)@2: h( q}ꬴ`@_x"`HOO'"e\J,: -OdH9ƅ"ce lCqs+kLT:3d8ćcP %q,no= ב41ĸ~&,T dD38) $%y_EpxrP  řL1{H _Ӹ@1bC\cp$=_v'e&,P<g _L8Ivl?Y_"fKڐH&bwjb}<Ҕ'񌋵٘:#'</ ?<4bY=4iT,RL&`oHҁc8LJu =x>ӆȓ={ GN`&R![4"m<8<>5lY/WE)ԆFO#27Sx k;JO{, /ιwqo}H۪ endstream endobj 21 0 obj << /Type /FontDescriptor /FontName /f5c32d+NotoSerif /FontFile2 20 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 22 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 23 0 obj [1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 492 1000 535 369 538 634 319 1000 1000 310 1000 645 577 1000 1000 471 1000 352 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj xref 0 24 0000000000 65535 f 0000000015 00000 n 0000000268 00000 n 0000000470 00000 n 0000000527 00000 n 0000000578 00000 n 0000000850 00000 n 0000002452 00000 n 0000002761 00000 n 0000002930 00000 n 0000002972 00000 n 0000003021 00000 n 0000003073 00000 n 0000003238 00000 n 0000003312 00000 n 0000003461 00000 n 0000003506 00000 n 0000005780 00000 n 0000005999 00000 n 0000007361 00000 n 0000008487 00000 n 0000010928 00000 n 0000011142 00000 n 0000012504 00000 n trailer << /Size 24 /Root 2 0 R /Info 1 0 R >> startxref 13631 %%EOF ��������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/running-content-image-alignment.pdf�����������������������0000664�0000000�0000000�00000077204�14163570564�0027345�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.6.2.dev, based on Prawn 2.4.0) /Producer (Asciidoctor PDF 1.6.2.dev, based on Prawn 2.4.0) /ModDate (D:20211114134723+01'00') /CreationDate (D:20211114134723+01'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 12 0 R /PageLabels 14 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 315 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf <626f6479> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /Stamp1 Do q 20.2938 0.0 0.0 23.875 277.3462 0.0 cm /I1 Do Q q 20.2938 0.0 0.0 23.875 297.64 0.0 cm /I2 Do Q Q Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R >> /XObject << /Stamp1 15 0 R /I1 17 0 R /I2 17 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /fa3fc5+NotoSerif /Subtype /TrueType /FontDescriptor 20 0 R /FirstChar 32 /LastChar 255 /Widths 22 0 R /ToUnicode 21 0 R >> endobj 12 0 obj << /Type /Outlines /Count 1 /First 13 0 R /Last 13 0 R >> endobj 13 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 12 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 14 0 obj << /Nums [0 << /P (1) >>] >> endobj 15 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 595.28 841.89] /Length 162 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d q 0.25 w /DeviceRGB CS 0.8667 0.8667 0.8667 SCN 48.24 30.0 m 547.04 30.0 l S Q Q endstream endobj 16 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 595.28 841.89] /Length 162 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d q 0.25 w /DeviceRGB CS 0.8667 0.8667 0.8667 SCN 48.24 30.0 m 547.04 30.0 l S Q Q endstream endobj 17 0 obj << /Type /XObject /Subtype /Image /Height 240 /Width 204 /BitsPerComponent 8 /ColorSpace /DeviceRGB /SMask 18 0 R /Length 19044 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 3 /BitsPerComponent 8 /Columns 204 >>] >> stream x e7U]}LLfr$rp�ASdA%x*ʺDPs<!#r $${&sOU9jjzyh:5u~>2)2)2)2)2)2)2)2)2)2)2)2)2)2)2)2)2zc}/]R|RVJӦeiBd$Z&A6NX[ i"˕ƥL/HQ\mýD$P ð, U7)Urx mjd R ' Ӵ@/Gd_ᕪz˚p~>'06Fiw4 <SX5~nc>\&" J+3[�k䩂)Yl6Xmۄ3X?TF9|@ `P( 3Xf3T*�<G=Qp6%aer$dp8F#0H0ӧ/g)elLJlT™8E"PZ+ Ɛ@N>8 3@*'>3g`0�`2s>p�CE]zyO4@aԀ\DeUf@VzS Ip@ ,@BU\&Ȁ/*{8\Ee\04FXY-2%TFxl6$ d2�8Vyc!6 rW Ni8 (KBeCQN@탬 �R�pLa2iߏ7ΥAiՕ`z�C@cj&ڀLU+#lo) XEHQ~�d96U?j/<[ ,a1=[U8ֲXxC ӕր>48AV[TKRqSU_2*蠎}6`ĵXjjJJ-5d? 1~Iʱ F"h Rʼt_*v9dvIFyM4 LGөDJEQZ-kdw򇩀Ȁl!J)=Bq@Jcy pVZKfY͂lv)^Ё @)-T3-k{@uꢹ\Q$gdǯFY#1 2 :#A\Qz#?1`/b sG\W.\1 RCWp-OqJ{{}&T _dBte@#pH'+^L�M&ScJԂYL6&ys<�k3C7sb|YN{? I+'on7p{Vr0+kjO׾ǁr4CC]{olڻwW34-[z�f xZ;vʫc/Y.&5'˗~\PX<^0A\.F:&/)Sp|HF.&E9s ݭ[lҗ+::첏RKxs4>ASN |߹䒏oOE$d}}pΜ9~P_bSN]ri]2FҠmԩM ,x뭷+#5.K,wSO=e@ B7) fV}}Cºx?ᏯlΜXg�vE{ 5ahI'.pk߸b6;;g}~uJ2z߅r(w|ZW‹iYrRP(mxo=Iv.N^:644N>c}uם{}[1:;;+_`(o5k…Ο�v{w7{饍ӧb_%7VRҲyqW H$ >i֝˯z[Yz݂Cꯏx 5 ChiӦz9nڴrѢE/*jE[.Lc ^z &Pg`0}|r}}Jvٲ� AkX`X]CC}"%|k}-ӥV0\Z2%A=,>d7; l9iӦ6446�hV>j֬Yw7{N+�롇e ei ^i^?�"/FAH hmme3Huww$a;*VX -[ *d˖v}sxoN%L2]{mo<9xэF25bZ+( [T�¼O?yw �|zC먐V۾}3H޽[cNl#f>k.H4&?@<�N0~{{耍wqrB* t4d0(; :qM0o~3\l,ZW>Rώ?kFf̘>l}ݏAly W6d ,}�ه>AشeoWV n*.]:2}rzĪ3EXaC]!ƀ8ygl^{-�\vITJq{Ц}IqGhf[)HV"ٝ9iGZ~#~xwGdFxDY/V^yURt$ol\u7Œ 8;֞ntMmxn~Y'{c>׸4#L𚥶A_H$z�gVog!H1dqC,[kj wڥ3˖-?'qw#ZY#%ʕ7ky]O30�'Nu\8Xcdi&Ki vߒ8x{J<ʜ߯v�O>dؔio?ȥ~bDP MO'�2;54`nJsf>WW<_ҠiMl;b̊ܬ6q!:XGvεQS5҅yk|UsYh-&5]hZa }RW�^ =BTPk_kZg?dvm淮߶}ln2D"GN\`$/�"Lj.@&aAAcǠG]*O.Z&9ז.49e$@VҶb<"rzkV.p@MRJ9 b9leHuљS{.մ�BA}grń$_�8 < r䔕l.μk?!:7< 2.<>xNl A>=*XrDOsHݞHw2T󘃊>0kY]R"HR̛*_1L (%hJI)e F2Ɇǻ|kj\LAzYlXmey4�]󁢐]�0$pb`Y�/2f20zs[ƘPP{?^F$ 2o"fh,�,JؘY S,Rәhj񨈘 .dkڰ P_c_r� `ei]XPjfȰiaXutM;obSs L[ c "��pR:a&0KaZw7"{*)Q1N2&9t _Lm,0a~rX בvƸN.2ȼkô;S{ JS@i8sN!)ͶVz2ִELASNɔzcgapP( fxrLwfB}ڎ{XPlA6JG24jE{. ^`Y>ٽnSdCTF#0i &mѝw ?LPD #@ Mo8AE-C`Jk[C̙d]|IHAfs/ȽEN8aaa긃>㉮?Ȃ`4mhh:iʔ)Di!K?g(rjd`IrJġk?\LtFec\ꃁ ӗeYַ^xftJCPf02#IQZ91kuK3gd`+E"a1;By%ZhsCh[(b.xCǞ^~S[|1~|joOٲ;Ւ5;d8 i(a=u\*/!P{ !{"Rt:F#8_ kdyL0{lTF]U9Ri GD @xXD ,PÀ1+di4 J9L:_jx9sv*.Іq#3<G?w6�2�XOOwggg<4V@oܷ{ ͜P Ci2uԍl*b2zi0|*ω1q1[練W:@}C,+عq xLZ,VY( Ң@~9N L8Eu 7Ms Im%:]Viɠ 8LrHj㵒o63c@Gf( 0-qmXN[<C9ˮH8cNA!�-[{S.p 07{Z*] `^q:sӷ]-~hT1M OvEq�Md ÷`\. ɌY-C7^Z]66$&2adxq"AZDR9~21m^u̝,L[b{|%tgg;5{|'>e?Af: Otdf�M6YQ45u9@ EJtѸ< {Mh~h{Ù~_@&gL vttn4_aW� �8V~͘!U=Sd_`.0ZZ` e'ӏbϑ@e2  ɼAN9Gsm d5XjO<cQ$01u c't;PZL2T𞴢ؑYgkj?+?Zc2Vdқe޼97<W7�dd pi+WRD[.` Ne{ʴKzH~anZ0 /ühO}͚cz\8"ـS͞={�J*Y:?iBgNor`; QdA?|Q^xY L>)K뮹 hf 2`m ;i I]>~C؀_V>zYd�~?+x7cMzE pC]-k^‹\ 0:w(/w֫Dj d!]}[n. {!b̿'jxfl9eѢEw_^(Y :Pj d&kINm>?{zp ]ḵ¼ّP  DˬY3e4L|\ 39".Y駟䎇\n Bd Zt3 oɟg~ ?Viv7Dj?\TUgkh,O󽏼 cg~~S~,ǹ|v#*g&bNo}W\egh M ]3$e<X 6cyi(o^^fdlA& pr,ߛdR͞g2/VƟ5aҭCU <gXێ;TLfj`⩧8}J歜O9=C(ͯNl?rg c0|+0RF3=8zAlْW_w8c"X]<Yh+ͲrknnyQeQm3Wu9rͿ^n]Nfd6@|J1E)q ,X=tņ o[UEjp˗شdSTΪD̡G rbqa3%SArǖpU5>O<ܛ빬Pfo\T 4mi`_ב2 >Xʄ0OKG}tI OeVx!lYU^OJ5o'ƖԩS.]<9T3(XaӢEoVH)x?y|yk?olDd̃gd`Fz<a;EM}u&p{hSW_1xLń9*QV1|pόfʅ g2/E@Pr!OK _GX9Կ?oW?IbellLٳgg2N{7d*mR9+/_Ÿ-uR-4ŏÿ0diHZ Pa^1CdyG|)d "̆[nit?;)D@BrS=%7ycV,~eyh-e!;uX !(DI9PL"co]57R0 ,)!]֫TRFQج6 c{XdEp8L#G3A mU,Ƙ`hѿ{E%-oiyn#_Sl`6lݺ p4 7dԊzT~IU' nDwo+X]jٲ7|huGr $q5}[ OxkVy(AkkQGk׮GQ0 3# Ktf+Fz_W͏>c ]x$;w섩A6{yn=enQ_ԷKrmy_6mj ` ENR(zA揍i4C <);/3<;G0 R Уwp,> dɒ%Hvuuw̘1=U40FG7Ut%〰H$s@ϝ;`5vEI^$(vn 3:ݻb~ qJg'zGww7m+d̬J P9lbu)S^}DO?}*XE aXK?~(yNsZ {䑿 7@RKK \2Pu,Z*ߠJ峢;i5rէ~a##ayܮ[ONz O3gjdym۶͉hg'C_H%LUd윻śx�6owΜX@$"}⏭+k�Fp`x{}y_ße#�^@pznukL&|1 $z^ZbxD'~J xT@9sPVcc̙`cXVXxzh {C*VjVL OQ`˯7OoS/XSsΧ1o}ONA/+FclgbX2X,L)ͣ1T9“>v̯BaWkGϗ^zy3x搀-{zzyg[4;Ğ<LN5 %sTG$缥e ŗ_AK.^v-o V>>{cmڴ ne9#p`qB2{Lp@]£omnݺ a#*H_4/]qy6-s �p�2SФ`[l%_!,TȨdcc`|itz=m`/}J/1AIғN:@O$p<``ЩB{w#n6 =ܰF/U2x!]iFH׻(F\kZV}WN6#!={w O`kkW> އ=XeGW]G6o{Ն!SNٰIQss eV]]fw: kٯژ] 7ily[qꩧ`^qO؜1sd={;DvX`RUL KV07Xj۶y}cTZ:@y`gMgg'W:[xJzRELitj_ь{w򒸠I/%<hud \͒9 wvv$76{/Rwpx޷`RORbŊB6K$z.µFsVCKhfe/(> aRft2VeT DoXbmi U akl򂘌OU8zU2nJ0a-5k455^, /d3.&^]ƛP +tA` 8uJ7.2)bɈdA)ooii 68҄>vȧzdQV?577o^ϭe}F$EJSdkI:$&}3pyzꊟ]ʬY3UnTnW05L֧Wƅʚ5JfY66D/npeX9YYred|=Fa;T,3Y'/gϝ;;ACYl1`Ced:̧3Ȭbu0*4es)#q-Ovҹc.]66 lj-گ|'3 (x"Ƙl^^c7}ݿ'4~p6l#x@_a0iҳ1(ZOc0 軽V`nȰ khh eYcR߂sLo>s!/ éKvH$vj47,WÆ!K`2dQ2JzT&%Jx{ͩ#2ko/˔)Vro˲H P&7n3fJ^C6ޥmq)2&$ ( H&D2JΚq ϭ c@W *%?W^CN �t:O^1A1(ȦNEL&3kI)a]]`s�{86=Ѥ5؎x<v/ iO'e Ǝ= wR#Xq,^eHG1coe]]h 0xD8M(tj)M<W*LOO0:L38e{t~_vZݛߪmH8d!x548EȀɛF@]/Pz4N^,kRL;fDGxy{[32κB#+:ɮ]O�tS TL.Ha O9@li immyf^4»j ;>Acgr? û}N(^ṚxRX9(,=7�x<6w={_}աC%J7&+Gj|Ҙ(MS"`H#hECY>mg(wdΝrr9~;'f۔D6lx3/O6Ͷ-00♼t߳<Y{onuuu|=+S1~ 㻗 Lx #( Yq$׬C;PI*p-9<A.!~? pC?i0G̅[�,Ӕ/Xt挰) \nx)ݐX#ujye /$}nḿ &ڹ ?={vOx$ӲJ<ԃHA9G4?Nk@[mY'b*`2Ƥ\V:aupDDB2hPH uU b̒9Ke3"|YVobd}y睋 8I|& gzlL"hj8MJx-3=LoySv#LLB&uǎjj!&?IiKfPSKhK/=͛w{~RŦ_[YC&M6# FFseј5sΪp`LlD`%:I=M{6S<+-e,kI|I`/æ>uNgGOҏ=$~O oo{&40$Fu%aI#gcM$<+-@-Hߣ{"i帢ʁcnt F8W-i/c_ǵox0gƟl2=w]Y1˖`GNsYFPYv[ŶeK�`]Dyw-Ѹ.C=_xnȞ.*q2d2v4uR0 U?|e4Um4*dVNZ`f֬&t%gE6m/:Vg%*,czީ:\z@C5oW?ޮXnJ*@֘RZ>$%E+CG,?:TK-c7Oo)J$)9[»-K-Ce5r#*\a`~{uttuu%ͷ9>l[^ǘ9$&EKAз#MZ8*h`H i U&}같Fi/#g5ۛnOCmdGؘYT@碔6E�cKSYNf 4ː2%H(?V N3B,kz\�LTaAKbL_W g:[J5˳B @axޜ%bQK|']֬9[o==sN ]5Zļ")|s164ʥݣ Ef#Gڹivgg [¶Ѓh8ӆ SpZϐAñ49xνh^pW}m 8O~| C1<&~&{02r譜Z2WQVug᫗<y4J= h*aMW&(2SLe* 2eȔ &FSb2In/U< / X\pWFc]28m&Gi8[ָ^4Zt.Ϊ#1!I Eb\_3?+@PLpX*VˆpH >  ,`"lr_2z x ,ue]}8!A<!ArEISP]]0CML A c;+'J97ƚR!� A ,$MzB( !-#`NV?>4/Si'�X]pҠw{Yr+VuUX<1(~YdGDJnj`o|p]~sycM")"%Ak1J)zwJyaQ?&+v�&|'�+$XE#1ÉbQVNn�~C0,.<E;mocY[@9Nd˸b+ g Ż]x\^ճBf ։򓧆n<~5uz0X�~ǯ)Wȵ�/%@X� T\ *)wY7K`r9nKhj4'un@ zꉲz!,H+�I}j}mo2<WeJٶ&0f`yMdFm߫kw7Qw\W/ C[4q.Tsz7&`T[w*p:Yfx~ S '-GG"?  XCJ;bz_?~5b+"wS2ciHdL�,CΛ}SnnPQZkCf ӎ9{SNrs@6(p)k SNVהNng<刟 3F8>XF።{rmmƭ~ lo8"jisCҪycLwv}qeq 9L##ȯBRIhm>V,fCHq6 4ZTI!}9"̒^]3DOҚ3CΘ1U{?ڵoֈ>δrЯVKDC0T�B pP�\~B@hؠм6a-#QcK/d&tBsClZ /e4"Q0ۆGmv 'mݺuR fȳs*+uѱfn8"`;10J`�3#z.f|9$I@)x}+XYShHN= p9f,์.Ȱ9#໕LDJu`%@ GHQ7"@,n@рFu `WtRʵ^uyohjk>#f<te 8)6y"+8:3sC@]8"짭;xg+{P\6R・;ZÎY@X;x7 `N?Qt9~ᐗ3r!3~yh8d\W]HdRaD:)Et8 DŧipAmٲYLmeފ,l ?3ߐCa�S8 cGePzm/"M|5 rT[V / `iCf^z; 2Ψ#ӧϞQf=ςe̩(/7Y5Mb lΘX[dZ~ E5gSƬ'y#e'096͞tuTEg�*"ܯr{oϱ Ƀ3GlSnf2>#ơ a#/BN2k+B6uMFvE,D̕/<L[ U9Fv!˯WPb-w.y-y',HKH7D5Ga4+ LTB.'- 7dƽ ЮʂqRah`#g,>w84vUq{;L6XX;sMAt],PBS{k%QnEsrwH#n#J!~b~k2)AnD�Pؘ5#uS%POms-]p3up#4K i6sJ _?z'>y[K;uM.j_wS]c �sUy&ek"UBiM3?n|"BhER9AaJ7U$\G2C i(5kVb#-J.b/쓛6m?æRG9)&ّTRPu^<GjǙCPoխC|J3d,f46.WE(&UjN`FY0"pe׿ P1Yss>voca'ܔL  _J@`bzXDALJ7R:xTFCW[QQЙF�7[58@ ӟްv1<a~۷&^U([\[[ʬНvPF+vW#a8s(lFi�ShW2Ρ\WWwg>Sk_a{Mgq[o&UǤ?/s@/^]GȁˆH[jmLF9AiZRuҲ?9{Qܳ~y2Y<g>5PL4N^\S J(V;9g,BE4Kל p kL.`i#ymGJPar]w}% wnsRtK+;5hbWŠ\×mY8D^08HJz5C ,8I7RT::hQS{864:|땦ԽjZЄgiys(,b* �O QrYEk`U Bnڛ1.:qѰc($##<3t&K./'>5X (Twjd $LYT@N6P*?GY';dLF2v^Y"&lTX A!cEa>,8qf@CBvsú*im۶?4h{4iN X*WÍ ,P\E.q te[Y  &TtZSv:8Si]VdsvbŁNT"(̵�3RXP,ֺv1EGqcmb8]8ed-*ZR 'MchE؂iC TNdNBY�%%?Ł ;aDNsѻ)x# /#aqPlXXOOW利vF#_b\n6 Ɉ+^vʅơآRpF&"J^);w+T0`LZ% 9ǹa$ցhOWjEr+8Y*l Pr _\j.2W8k+ 8U R,qq xB,.XdrB oEvQe$n�YI�J pK! ل- ^Ru=Ԁjq!Blk<Pٖ-[¿2u+̴<R/Š:]c[h# q%69帓68+t=lN`crJx.2ٟSn;͍JƔϜRNSjd8ڕIgggYOcƗ.xpQ8|R缤�Z}%sz+B͈ڐ-҆hFbꆅ+a=QRs@/)ape4yh*$[s Diu ~,ӟ/Zڃ[I'Ï馛'< zѮ^( /ܡJEY0gu4\P3TWBu!n Kډb;P\-Gq8 ]mI #(ҰCey�9UHu"g3HSq"E-!f7]?kŊ'x 'jyH$xos{5퇐)1{bL߶[tǕt{WQ GYXH92ʬD"cF.yٍ#lO.֝$<@ĕbѳ$܀bE@WB{h)iw:6 /lUW]p1,_XtK,M/tXF|drxkX׸:Qz qhb(ƙmJ*vA8HA>̢#,CQ{4rYҟa l2lTڗn,P qR 2V43ߘ]it{8HrHƹ?#҉WƒOSڜꔅs;HO`3fDX,7DQ+ c :CNA;1R{O*V-fJIFcD]  <-\&% 9z^ZA À, fYzFsq<Ùag9Cl(8{|8iM qoAZqu(r-isPso>ڳ)R(uHH:@!O#ؑZpgqU&lq$~Ae%r#b*AK05$Hl Ԥ--K-rb) d<lBe�Oq_n@i;CrkmLrJJvGsĀ]S"j*kJO[GI]o2Kr4c:RoL0JdAL}4U$cU0|OaTLdS fB"Db)ڕ(�Lp�|ەc?jȜ5ݭХ@i( W|GǤו.R[T!1 1МP;kg9H10T(9E#xBpɌ3_hwn*~g"T(NEm-K:s4R Eπ47#襃Nk*/ !_C4Wpbԍ>JrJ,f8 NNKmyپ�mOJŀ"xٔ KKq>oՍP}gSbV36̵ plP{,5%73B ğ&:7*ҤBqK5y!!nE�^-ݴ?΂Ӝ|n9U" vA\Ûghppo,搽pbdPQjFW < 4iTߗQ JxKSA)lRA)2:P-j 8[V<\% JPlSo7cМ2N^EG뢺j@) 9NQeEP%`7 BEUc XHĴ&amͰӌuܰ>pRK,C$x))vgB0A]&myխeoU\?zhxmiH t:i<�ӛFVOu~jye;S m25R^#Xj¢b|rxjsI[|vR1;=fN �^fVK,`JLT“Sn�6X29pHdm60q XgM NU*aQЛF%$w"U60IKhzl ꈰzx,[Fzƽf.^m%1D_ Igú7SV8&xuxM�&<6Y2`˜vcZ9"3oX<M>~n^Ho9L[WiT%%_] (y숮yN :XdrqSI'L gi*F䑥W\vQk �aX-Hѣ:SbsjWw!Ud9$`2%oO~򯫴UѐXPU]X0ZS39tTsS%{+8+AE EQՕ|ל-F3h�eJdI]ktw�қ΀ T)&Bᶐ9j794X)iԉ=IՓ у=+);⎧�vyUn!䔨 S󘺐 )x*b.!͝s'؎siO!{HZ"eNu1B k?&2*D+Gҹ:Ob3p !tjF/WpCJ7fk{x9"Ma]IW!3)qMZ:JсwG/f5H@8t4j#zê8Ci'c4n E* ԼX &\ĕF4l kmmNk UPSL^q~ps5'9V9rnHd7+%Ð`e2'1Y_ hpm>x<p2FH�eez9Cɩ9~mE 2>S/ߙrs̊ p hWE] >.c kRAFFI9)HceFtW5 Hpn8d0 H3BP@)t␬2M =okL`_TCe9A "i`ԃDaq&՝.M1p9L$Ӫ-ڼEɇ#yઃ4#bxU|$<}dUN-d\y~$CLEV'[a><%tgF҈dQYu C48j8 Ҙ{ b̛[:}77STvt _p2cQ2N;*M><F4OW)6piPl�n5zu%su uT%W/X\+c e 8;+9³K!"xUe]a,=ڠ #A0{9,Hi eBp7Kvyr٩AM Vm'nHQ"#@hy3r Y &C*|\kL9q<kM5d܀DH$En;өZ&XITjBR—K{x |rJXեf<9g-<E'l׍3TQ ΂ |e(P=o5z|u |+M۰m(i9+&eR&eR&eR&eR&eR&eR&eR&eR&eR&eR&%hx endstream endobj 18 0 obj << /Type /XObject /Subtype /Image /Height 240 /Width 204 /BitsPerComponent 8 /ColorSpace /DeviceGray /Decode [0 1] /Length 2902 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 1 /BitsPerComponent 8 /Columns 204 >>] >> stream x{P<rD*!yd4`Fkb)ZGmR(֦&4Q`'iLڤƷBѩ޽wϞs~]o_yYō7nܸqƍ7l:8jd~];Z[O]bz ș7ᗛ'8zC 'fS~oʛ:]R/1KWO|]>bb6Lggh^EL�<¯ڇy]ZT'ڡ|EOdBfk")"/Ͷ xq/n#.ᮎEB\-�ͬcmF]橛$`G񨑱n,�n2*�dP%i/`�/ih]?P#5cH̑LiӦdHEͲZ,&#u3}ǀp(g9"3!*�߯Hwl V2Ѵc XFC&&h&&h?LL}H1j2c y2a bGfOc3P2یGm,@1W�b`Y յdQ("Xf|@ɸŸ%;Q%s:'iDsgƀFc!oF͛{pbnRPަC_-iί u a~$Aqj81#:8Wjی\5g4L'pbQKw;#}3pbک+816d,ipbXw6\�&8Dlj8Gˤ3NB[S3@6[l N d7&ܥb({z281Ţ\E'&|yi['0n>-m j.UYSXY?ȯord|1%HLh}5˟4Ĉ&mVp&ٛ<3e_pWv9C/=C);C�/J�Zd%cݎ_`쉳Vyv م xA܈\2u9!(v5�\'&^sX֞~ۉvY_&3}O+ 6[dg͙bU%WbO{o` WpHny1fI %ۙ ϝ#w^Y103xy0N=DR<Z�iO*�ۋRfJ(7y@L| ކz+5ekM]sJ<dJQ #_)1"Cc@)\ 95cM]d+mȄ>Iќ*ngQd-'W[@K6V&2^LQD(�\3xhYwD47\$�Bi]D+谹4E>/OPh KfH6*%%!K@y3; .&8[H)�@YA쁱?]c&VJg3U@VoL�JLrj$�1{,bJ/-&)z(�ŬGY7,{;H,A=SLd"�̕!R gc% >1eģp0 gFs05 [&�t1mPg:WJFOU2m]zCjg2|qӈa'jA4J[=Xؼ=+&ii1fΎƌQWnRNev g!p g>\b6![M;�gy!&|i:3dF*cȚbƿ? o3Sig|Z^)eb}Gi.X榇'9=΢0jD'9Eݯ1EH�0!;Y tC? Og|(:  kGjI,^P�<ܨcAj�3LW=B)F$#Yޑ�;/C0k5J1_0wY)*Xpv_z�gM.Kp~s_CBoF'1/CD#$~T}I +b-?ă}>mQr129[I�C#`k652v/'1fqw=*DaïWɦ5Yj+Ŕ o<+& ]sM?W8 K&~h Q>_\1Z7,"`h\q;aLtԯbxek\T8;̎5ca1۟1ymvvu#ALKI/p 3ݱPپмZۓZ pY]_=X#67=V1d~F{}yɭFˈ҂ģo~|%o5ӛңTRu{'>Q@` £ěp?'/3A?Fa%$C[jXB'"hs9JgeOL},-ΌwJxy|ܬTxVX[*Y/ɹY$c6<G314O}/홯 KqU~dz%oE$ukUq#M]ly^[7]:m!/}RTp!|p1䧏);#7/,0 ?{BO�%﫛%e˭|4Af$Fh9pOŷpZFݹwnX62 rߗZ77nܸq/?oh"S endstream endobj 19 0 obj << /Length1 7108 /Length 4166 /Filter [/FlateDecode] >> stream xY{P[יνWB< c-|lcz�% KvjK$#$ENH5i֫$IMf7t2%ɒn2SO?6icf3:dv2w08ls9|wC�r߮�H`Rjj\fz?X�dx»s _�E{t"/ f&~]%\(Pqĺ?u9푩Û4#_K} r*pRyN)sy�U1-D:հ_D5R6 P @t[+x`rOTt|`}ߍ~+jd @8e�+]V=50߂s$e+ďӨV{a|.P$$]gpl@a&0'd@ `B>( 0pyeHr"`2;y={wHC?mOKq mJcEҒbC^'F PuG@vȽM(T"Z]kiCˉ,myKۊ%1hjNrt!=T9-:dfAUI:U׹HplWJaR]rr$v90cӪb3R}Nl75岃]zZ](ӅwO,a,`) ɡ>U جfVZݲCȿQv8U ?2O)k04rOo50҅f]2uebnvLF9PVM:10Q7'1!b]#S>UhpH%wD6o2W 6Cߤ cj6?h1da_0fzl*杂fif w˪RC_HvbcOgVFKYVU҃~nKU_(JU Z=�3 9SeԄ쨬et8eg@;EQSm$lAm -8"-:rRWrF>>DV##0R63ufYn;9;b<{ ZsQ_>;;gP 3U]egI}9:U{|n~ t^I λ>S jh0P`hhDu!!ww`5qsuw:f5Nu,ozƢ{7KSjM# lz *( ײR~9BUې ?ھzpa3 겘VW {Y2y ,mWe b`.l,[XrЬn_ƻͣG\UO=Mx^>{ˈ܋nvޢ\RI112noz0˵p~|� 2B^f,IyX]`^!?G?qQ܉ё;/SKd[-L^AjHS#YS ]d j [@֣ %cK)x w`29r>G9<Z"K%2D:0fu3C[B*+/)CRnSP֒sb8V1ТbzH؋|9NNc/r3l $4VgdUJ M=oľƶߐ DgA ܧ+z:w诵~V1sW~~o={[X\zRB Bsϝ{Ng&}V*g0Hu)wI]"K?u^zjks: ? 3Xw&$zfRݴ>W_$0Y̽c{bd^iV-RH 3XOc]Z!l W[h;2jxW׼!gA)Ci$^ckߠ/V\T\U!&<@ݟ!:H^-Ţ>Nfm)!O/A~uۧ6F"aܺPt:BgҖ3[ ]-iStf3ӧt46[c3hX,¦K 4V -_`�7´Mݯ־JG[)X.W/I߆ ]xF`?=N/x=+W[ 1iku o4$2|'Wd!ED 2j;h}o?|m(eI8Cw9;Kx&K-x~tӨX©0oN_G/u T }~=oGDȁYpExU-qtM) sc6fF5}?<laLwk\i-5 н1skݔf0Q.۬NֺShg,\YG8b:l+6T  g ?TnQ>d2Yo3| OX>44i3&gor8(GO7tziE:txt|꾖cm[b/'&_N<|%6WA}>Ѐ` rЍ;vZa-hxeF*c +_1l<G~!5e(H\OfwMv!ذ=px˹bs?G7_XUSyĉ+H$ an3V1UdФ/n&owv>yuݼv._[7ד}ԓZܯN61Z*j=*dgZ\;F;2"R <Ud@ðq}XI@tA_g몖?nsfOUE۴||R'7)7HҝKGGmsg&]Q<ݽdtR޸</{77=v<ZV2C3~l P\0j[|KuP<#5=+OFiy[K ѥPW~w<r,|x64jF P.5ZvN%}Z1E > pF.s.] 9.NxFLa_L*dޖ={iO")/>n]a4QJ$2 VRщ%< 'LLx6;6wQ%&teDub”wiT0LS41&Y#t(h8N=Jpi$ TM ]13hld2zYSa%ӌƉU)m87r(D+Pwb"P05ĢJ<sNCJf" uI%7>7hw"J,MgRѱi\ E`nr>6s7}A9tp}\kOT"UNt&R4:EY܊XD"tRNDi,OøBp!\T4p>8lf):p[3_[jah21k"nt;>דNAo2@a/l)6(8UO^Qi)+!\ŧ" I (98AYPF8/~%Ti*lik-R}7G͖+ʃ\:p,#Em=QC_Ck<g4V'iǻx3</+ZY&жym5 =zxHl{jX]>wE6^X}a?| [4!l5n~_(WQcxy52 o9p}w#Mc8N ^DŞ]# N>v%O J|D:?kǾ5̆VU>:)=ILHs))W1Jٓ43O<b8eaGZBO񵰓pG_9]3(5LӚvFlgebس5Q"{G!'/FM�B.�֞*' endstream endobj 20 0 obj << /Type /FontDescriptor /FontName /fa3fc5+NotoSerif /FontFile2 19 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 21 0 obj << /Length 1278 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }ik/y_!}t~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=n?[i(JKiU:JSz2QeL*EJ̔Ye,*+eU(NU-уk5x5F^ky ^#k5x5F^ky ^#kxZV^kZy-^+kxZV^kZy-^+uxu:N^:y^'uxu:N^:y^'xz^^zy=^/xz^^zy=^/o xo7 Aހ7y o xo7 Aހ7y oxo7jo$JI$$*I$ITH$$QI"IDD%$JI$$*I$ITD$$III$$u>M&Iބ7ɛ&y$o›Mx o7M&Iބ7ɛ&yUoa[5joSor4ۂs�ޮ>,x/x;Â31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x e#e_y+h܊7k:/Z5dUluz5n[eB&Si|y(%q& %+S%*ABijPU6\h,(+L,4G5<cD [˧*t [ jjaijIxʪwgFwضR>sh>:OVRP*#i|e0U,*oU/*[U,Nmlx:&\}M)L2\%CHF7էʻBL)jƻJ1:%H߯:=S۳zrmkO媳7 endstream endobj 22 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 613 500 613 500 500 500 500 500 500 500 500 500 500 577 500 500 500 500 500 500 500 500 500 564 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 23 0000000000 65535 f 0000000015 00000 n 0000000248 00000 n 0000000449 00000 n 0000000506 00000 n 0000000557 00000 n 0000000829 00000 n 0000001195 00000 n 0000001544 00000 n 0000001586 00000 n 0000001634 00000 n 0000001686 00000 n 0000001851 00000 n 0000001925 00000 n 0000002050 00000 n 0000002095 00000 n 0000002365 00000 n 0000002635 00000 n 0000021945 00000 n 0000025113 00000 n 0000029369 00000 n 0000029581 00000 n 0000030935 00000 n trailer << /Size 23 /Root 2 0 R /Info 1 0 R >> startxref 31849 %%EOF ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/running-content-image-contain-border.pdf������������������0000664�0000000�0000000�00000022350�14163570564�0030265�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.3 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /ModDate (D:20190626013446-06'00') /CreationDate (D:20190626013446-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 12 0 R /PageLabels 14 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 842.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 1097 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 278.7505 793.926 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /Stamp1 Do 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 231.407 821.648 Td /F1.0 9 Tf <74657874> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 33.5 0.0 0.0 33.5 280.89 808.39 cm /I1 Do Q 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 347.52 821.648 Td /F1.0 9 Tf <74657874> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /Stamp3 Do 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 231.407 13.258 Td /F1.0 9 Tf <74657874> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 33.5 0.0 0.0 33.5 280.89 0.0 cm /I2 Do Q 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 347.52 13.258 Td /F1.0 9 Tf <74657874> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R >> /XObject << /Stamp1 15 0 R /I1 17 0 R /Stamp3 18 0 R /I2 17 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /7e34a1+NotoSerif /Subtype /TrueType /FontDescriptor 21 0 R /FirstChar 32 /LastChar 255 /Widths 23 0 R /ToUnicode 22 0 R >> endobj 12 0 obj << /Type /Outlines /Count 1 /First 13 0 R /Last 13 0 R >> endobj 13 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 12 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 14 0 obj << /Nums [0 << /P (1) >>] >> endobj 15 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 595.28 841.89] /Length 163 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d q 5 w /DeviceRGB CS 0.8667 0.8667 0.8667 SCN 48.24 805.89 m 547.04 805.89 l S Q Q endstream endobj 16 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 595.28 841.89] /Length 163 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d q 5 w /DeviceRGB CS 0.8667 0.8667 0.8667 SCN 48.24 805.89 m 547.04 805.89 l S Q Q endstream endobj 17 0 obj << /Type /XObject /Subtype /Image /Height 12 /Width 12 /BitsPerComponent 8 /ColorSpace /DeviceRGB /Length 21 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 3 /BitsPerComponent 8 /Columns 12 >>] >> stream xc\@0fT�<� endstream endobj 18 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 595.28 841.89] /Length 159 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d q 5 w /DeviceRGB CS 0.8667 0.8667 0.8667 SCN 48.24 36.0 m 547.04 36.0 l S Q Q endstream endobj 19 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 595.28 841.89] /Length 159 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d q 5 w /DeviceRGB CS 0.8667 0.8667 0.8667 SCN 48.24 36.0 m 547.04 36.0 l S Q Q endstream endobj 20 0 obj << /Length1 3100 /Length 1842 /Filter [/FlateDecode] >> stream xU[l!%Kc˞;MQRĉEYQ'N}iFK -ђT( ]ˀb݀և.6 0i֥+P%['.OpH9G@�=`r${e�Ҕ+.�/*1-�'8Ɲ/ie �q[>/?ا11~$/1NaÖ́wYϔebI8Љ_He_b#`W;|D�>E-uvP[@�E9؃q=K?]?t Ρө/<_|s+\O%F=ϿGj  b^j3uI^tdh'~Ez☺TKnďw(?0x̫4(%8~G1Ʊg#2OgGZvFwއuxtx #S%! sl1Mhpt?׭0=Pkp `'cOw'5K-ƀt:%{P/JXWCXfAoI\ihS돆zۜް!�qc [l�C }zK0+.nē۹擣;ye4e;k5U]$SwlG^N{3cc0�yg;u vGLG/w gI: <; SUW& sBQL4k^tXO3Xm[$=>ra;EQI(tu#גkykNە-_F9Bu=t\h{Pxȵ'ۘ͸+m.oH:muS`{:]:$9K]oֿ~x~K( ps.Ǿ ۰}׍|L'wUc"5p s<Gqpخb d~Zk!8#SS#p\%z7q?!Jj[^dnCWX.֨Yu Y8zxh@޷p\Y۠$,IYj @TkL ȋ�/y빜p錅`>c-o1I ~愅oy·)W^Y1vtH)/\^=(?(ď,iOKI}J 0 aT(@6FO8wFWAFc C|DY3)!Sxς0h ?#yD 3OKjQTi9""+b%\A!~2&"^Ti9CV G8_C`G3$oUJc0&u‹Y$gye~RLDlf$\ gS/&)Rɼ&-f4T6%JUJW|Aְb,)-M)k"Mޔ) 9Lo!&pFJBδX(p9BYOiƅ+&<Lel7ayaaA(Y2+Z5[P`^0ܯw*f/d$U嬤Z^bVO7^QqNdcZ>f͚4|ț b>ǭEF5i@P\*^)*zFW7g 27X3xe7vlon:cWw;λ9󴵮QeE endstream endobj 21 0 obj << /Type /FontDescriptor /FontName /7e34a1+NotoSerif /FontFile2 20 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 22 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 23 0 obj [1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 492 1000 535 1000 1000 1000 1000 1000 1000 1000 1000 645 577 1000 1000 1000 1000 352 1000 1000 1000 578 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj xref 0 24 0000000000 65535 f 0000000015 00000 n 0000000262 00000 n 0000000463 00000 n 0000000520 00000 n 0000000571 00000 n 0000000843 00000 n 0000001992 00000 n 0000002356 00000 n 0000002398 00000 n 0000002446 00000 n 0000002498 00000 n 0000002663 00000 n 0000002737 00000 n 0000002862 00000 n 0000002907 00000 n 0000003178 00000 n 0000003449 00000 n 0000003716 00000 n 0000003983 00000 n 0000004250 00000 n 0000006182 00000 n 0000006396 00000 n 0000007758 00000 n trailer << /Size 24 /Root 2 0 R /Info 1 0 R >> startxref 8890 %%EOF ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/running-content-image-fit.pdf�����������������������������0000664�0000000�0000000�00000105506�14163570564�0026146�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.6.2.dev, based on Prawn 2.4.0) /Producer (Asciidoctor PDF 1.6.2.dev, based on Prawn 2.4.0) /ModDate (D:20211114135616+01'00') /CreationDate (D:20211114135616+01'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 12 0 R /PageLabels 14 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 26439 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 278.7505 793.926 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 231.407 820.398 Td /F1.0 9 Tf <74657874> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 247.76 813.914 m 347.52 813.914 l 347.52 833.866 l 247.76 833.866 l h W n 0.0 0.0 0.0 scn 0.9976 0.0 0.0 0.9976 0.59462 2.00128 cm 1.0 0.0 0.0 1.0 0.0 0.0 cm q Q q q q 1.0 1.0 1.0 scn 250.76 833.866 m 344.76 833.866 l 346.4169 833.866 347.76 832.5229 347.76 830.866 c 347.76 816.866 l 347.76 815.2091 346.4169 813.866 344.76 813.866 c 250.76 813.866 l 249.1031 813.866 247.76 815.2091 247.76 816.866 c 247.76 830.866 l 247.76 832.5229 249.1031 833.866 250.76 833.866 c h Q W n q 0.3333 0.3333 0.3333 scn 2 j 247.76 833.866 m 284.76 833.866 l 284.76 813.866 l 247.76 813.866 l h f Q q 0.2667 0.8 0.0667 scn 2 j 284.76 833.866 m 347.76 833.866 l 347.76 813.866 l 284.76 813.866 l h f Q Q Q q 1.0 1.0 1.0 scn q q 0.1 0.0 0.0 0.1 222.984 750.4794 cm q /Tr1 gs 0.0039 0.0039 0.0039 scn q 2 j 327.748 761.102 m 327.748 744.022 l 348.104 744.022 l 348.104 736.3413 l 327.748 736.3413 l 327.748 703.6853 l 327.748 698.7797 328.4104 695.6287 329.7353 694.2322 c 331.096 692.8357 333.8352 692.1375 337.9531 692.1375 c 348.1041 692.1375 l 348.1041 683.866 l 337.9531 683.866 l 330.3264 683.866 325.0628 685.2804 322.1621 688.1092 c 319.2617 690.9738 317.8115 696.1658 317.8115 703.6852 c 317.8115 736.3412 l 310.5605 736.3412 l 310.5605 744.0219 l 317.8115 744.0219 l 317.8115 761.1019 l h f Q q 2 j 412.92 716.416 m 412.92 711.582 l 367.481 711.582 l 367.9107 704.7787 369.9517 699.5867 373.604 696.006 c 377.2921 692.4611 382.4125 690.6886 388.965 690.6886 c 392.7606 690.6886 396.4309 691.1541 399.976 692.0851 c 403.5567 693.0161 407.1017 694.4126 410.611 696.2746 c 410.611 686.9289 l 407.0661 685.425 403.4317 684.2791 399.708 683.4914 c 395.9843 682.7037 392.2066 682.3098 388.375 682.3098 c 378.7783 682.3098 371.1693 685.1028 365.548 690.6887 c 359.9621 696.2746 357.1691 703.83 357.1691 713.3547 c 357.1691 723.202 359.8188 731.008 365.1183 736.7727 c 370.4536 742.5735 377.6329 745.4739 386.6563 745.4739 c 394.749 745.4739 401.1406 742.86 405.8313 737.6321 c 410.5578 732.44 412.9211 725.368 412.9211 716.4161 c h 403.0372 719.3164 m 402.9656 724.7233 401.4438 729.038 398.4718 732.2604 c 395.5356 735.4831 391.6326 737.0944 386.7628 737.0944 c 381.2485 737.0944 376.8261 735.5368 373.4958 732.4216 c 370.2015 729.3064 368.3037 724.9201 367.8024 719.2626 c h f Q q 2 j 467.8 742.25 m 467.8 732.9043 l 465.0071 734.3366 462.1067 735.4108 459.0988 736.127 c 456.0909 736.8432 452.9757 737.2013 449.7531 737.2012 c 444.8475 737.2012 441.1595 736.4492 438.6891 734.9453 c 436.2542 733.4414 435.0368 731.1855 435.0368 728.1777 c 435.0368 725.886 435.9141 724.0778 437.6686 722.7529 c 439.4231 721.4638 442.9501 720.2285 448.2496 719.0468 c 451.6334 718.2948 l 458.6514 716.7909 463.6287 714.6604 466.5654 711.9032 c 469.5374 709.1819 471.0234 705.3686 471.0234 700.4632 c 471.0234 694.8773 468.8033 690.455 464.3632 687.1962 c 459.9589 683.9378 453.8896 682.3086 446.1552 682.3086 c 442.9325 682.3086 439.5665 682.6308 436.0572 683.2754 c 432.5839 683.8841 428.9135 684.8151 425.0462 686.0684 c 425.0462 696.2734 l 428.6985 694.3756 432.2972 692.9432 435.8422 691.9764 c 439.3871 691.0454 442.8961 690.58 446.3692 690.58 c 451.0241 690.58 454.6048 691.3677 457.1112 692.9432 c 459.6177 694.5546 460.871 696.8104 460.871 699.7108 c 460.871 702.3964 459.9579 704.4553 458.1317 705.8876 c 456.3414 707.3199 452.3847 708.6985 446.2617 710.0234 c 442.8242 710.8291 l 436.7011 712.1182 432.2788 714.0876 429.5572 716.7373 c 426.8359 719.4228 425.4752 723.0932 425.4752 727.7483 c 425.4752 733.4058 427.4804 737.7742 431.4908 740.8533 c 435.5012 743.9327 441.1945 745.4724 448.5708 745.4724 c 452.2231 745.4724 455.6605 745.2039 458.8828 744.6668 c 462.1055 744.1296 465.0775 743.324 467.7988 742.2498 c h f Q q 2 j 496.89 761.102 m 496.89 744.022 l 517.246 744.022 l 517.246 736.3413 l 496.89 736.3413 l 496.89 703.6853 l 496.89 698.7797 497.5524 695.6287 498.8773 694.2322 c 500.238 692.8357 502.9772 692.1375 507.0951 692.1375 c 517.2461 692.1375 l 517.2461 683.866 l 507.0951 683.866 l 499.4684 683.866 494.2048 685.2804 491.3041 688.1092 c 488.4037 690.9738 486.9535 696.1658 486.9535 703.6852 c 486.9535 736.3412 l 479.7025 736.3412 l 479.7025 744.0219 l 486.9535 744.0219 l 486.9535 761.1019 l h f Q q 2 j 568.96 742.25 m 568.96 732.9043 l 566.1671 734.3366 563.2667 735.4108 560.2588 736.127 c 557.2509 736.8432 554.1357 737.2013 550.9131 737.2012 c 546.0075 737.2012 542.3195 736.4492 539.8491 734.9453 c 537.4142 733.4414 536.1968 731.1855 536.1968 728.1777 c 536.1968 725.886 537.0741 724.0778 538.8286 722.7529 c 540.5831 721.4638 544.1101 720.2285 549.4096 719.0468 c 552.7934 718.2948 l 559.8114 716.7909 564.7887 714.6604 567.7254 711.9032 c 570.6974 709.1819 572.1834 705.3686 572.1834 700.4632 c 572.1834 694.8773 569.9633 690.455 565.5232 687.1962 c 561.1189 683.9378 555.0496 682.3086 547.3152 682.3086 c 544.0925 682.3086 540.7265 682.6308 537.2172 683.2754 c 533.7439 683.8841 530.0735 684.8151 526.2062 686.0684 c 526.2062 696.2734 l 529.8585 694.3756 533.4572 692.9432 537.0022 691.9764 c 540.5471 691.0454 544.0561 690.58 547.5292 690.58 c 552.1841 690.58 555.7648 691.3677 558.2712 692.9432 c 560.7777 694.5546 562.031 696.8104 562.031 699.7108 c 562.031 702.3964 561.1179 704.4553 559.2917 705.8876 c 557.5013 707.3199 553.5446 708.6985 547.4217 710.0234 c 543.9842 710.8291 l 537.8611 712.1182 533.4388 714.0876 530.7172 716.7373 c 527.9959 719.4228 526.6352 723.0932 526.6352 727.7483 c 526.6352 733.4058 528.6404 737.7742 532.6508 740.8533 c 536.6612 743.9327 542.3545 745.4724 549.7308 745.4724 c 553.3831 745.4724 556.8205 745.2039 560.0428 744.6668 c 563.2655 744.1296 566.2375 743.324 568.9588 742.2498 c h f Q Q Q Q q q 0.1 0.0 0.0 0.1 222.984 750.4794 cm q 2 j 327.748 771.102 m 327.748 754.022 l 348.104 754.022 l 348.104 746.3413 l 327.748 746.3413 l 327.748 713.6853 l 327.748 708.7797 328.4104 705.6287 329.7353 704.2322 c 331.096 702.8357 333.8352 702.1375 337.9531 702.1375 c 348.1041 702.1375 l 348.1041 693.866 l 337.9531 693.866 l 330.3264 693.866 325.0628 695.2804 322.1621 698.1092 c 319.2617 700.9738 317.8115 706.1658 317.8115 713.6852 c 317.8115 746.3412 l 310.5605 746.3412 l 310.5605 754.0219 l 317.8115 754.0219 l 317.8115 771.1019 l h f Q q 2 j 412.92 726.416 m 412.92 721.582 l 367.481 721.582 l 367.9107 714.7787 369.9517 709.5867 373.604 706.006 c 377.2921 702.4611 382.4125 700.6886 388.965 700.6886 c 392.7606 700.6886 396.4309 701.1541 399.976 702.0851 c 403.5567 703.0161 407.1017 704.4126 410.611 706.2746 c 410.611 696.9289 l 407.0661 695.425 403.4317 694.2791 399.708 693.4914 c 395.9843 692.7037 392.2066 692.3098 388.375 692.3098 c 378.7783 692.3098 371.1693 695.1028 365.548 700.6887 c 359.9621 706.2746 357.1691 713.83 357.1691 723.3547 c 357.1691 733.202 359.8188 741.008 365.1183 746.7727 c 370.4536 752.5735 377.6329 755.4739 386.6563 755.4739 c 394.749 755.4739 401.1406 752.86 405.8313 747.6321 c 410.5578 742.44 412.9211 735.368 412.9211 726.4161 c h 403.0372 729.3164 m 402.9656 734.7233 401.4438 739.038 398.4718 742.2604 c 395.5356 745.4831 391.6326 747.0944 386.7628 747.0944 c 381.2485 747.0944 376.8261 745.5368 373.4958 742.4215 c 370.2015 739.3062 368.3037 734.9199 367.8024 729.2625 c h f Q q 2 j 467.8 752.25 m 467.8 742.9043 l 465.0071 744.3366 462.1067 745.4108 459.0988 746.127 c 456.0909 746.8432 452.9757 747.2013 449.7531 747.2012 c 444.8475 747.2012 441.1595 746.4492 438.6891 744.9453 c 436.2542 743.4414 435.0368 741.1855 435.0368 738.1777 c 435.0368 735.886 435.9141 734.0778 437.6686 732.7529 c 439.4231 731.4638 442.9501 730.2285 448.2496 729.0468 c 451.6334 728.2948 l 458.6514 726.7909 463.6287 724.6604 466.5654 721.9032 c 469.5374 719.1819 471.0234 715.3686 471.0234 710.4632 c 471.0234 704.8773 468.8033 700.455 464.3632 697.1962 c 459.9589 693.9378 453.8896 692.3086 446.1552 692.3086 c 442.9325 692.3086 439.5665 692.6308 436.0572 693.2754 c 432.5839 693.8841 428.9135 694.8151 425.0462 696.0684 c 425.0462 706.2734 l 428.6985 704.3756 432.2972 702.9432 435.8422 701.9764 c 439.3871 701.0454 442.8961 700.58 446.3692 700.58 c 451.0241 700.58 454.6048 701.3677 457.1112 702.9432 c 459.6177 704.5546 460.871 706.8104 460.871 709.7108 c 460.871 712.3964 459.9579 714.4553 458.1317 715.8876 c 456.3414 717.3199 452.3847 718.6985 446.2617 720.0234 c 442.8242 720.8291 l 436.7011 722.1182 432.2788 724.0876 429.5572 726.7373 c 426.8359 729.4228 425.4752 733.0932 425.4752 737.7483 c 425.4752 743.4058 427.4804 747.7742 431.4908 750.8533 c 435.5012 753.9327 441.1945 755.4724 448.5708 755.4724 c 452.2231 755.4724 455.6605 755.2039 458.8828 754.6668 c 462.1055 754.1296 465.0775 753.324 467.7988 752.2498 c h f Q q 2 j 496.89 771.102 m 496.89 754.022 l 517.246 754.022 l 517.246 746.3413 l 496.89 746.3413 l 496.89 713.6853 l 496.89 708.7797 497.5524 705.6287 498.8773 704.2322 c 500.238 702.8357 502.9772 702.1375 507.0951 702.1375 c 517.2461 702.1375 l 517.2461 693.866 l 507.0951 693.866 l 499.4684 693.866 494.2048 695.2804 491.3041 698.1092 c 488.4037 700.9738 486.9535 706.1658 486.9535 713.6852 c 486.9535 746.3412 l 479.7025 746.3412 l 479.7025 754.0219 l 486.9535 754.0219 l 486.9535 771.1019 l h f Q q 2 j 568.96 752.25 m 568.96 742.9043 l 566.1671 744.3366 563.2667 745.4108 560.2588 746.127 c 557.2509 746.8432 554.1357 747.2013 550.9131 747.2012 c 546.0075 747.2012 542.3195 746.4492 539.8491 744.9453 c 537.4142 743.4414 536.1968 741.1855 536.1968 738.1777 c 536.1968 735.886 537.0741 734.0778 538.8286 732.7529 c 540.5831 731.4638 544.1101 730.2285 549.4096 729.0468 c 552.7934 728.2948 l 559.8114 726.7909 564.7887 724.6604 567.7254 721.9032 c 570.6974 719.1819 572.1834 715.3686 572.1834 710.4632 c 572.1834 704.8773 569.9633 700.455 565.5232 697.1962 c 561.1189 693.9378 555.0496 692.3086 547.3152 692.3086 c 544.0925 692.3086 540.7265 692.6308 537.2172 693.2754 c 533.7439 693.8841 530.0735 694.8151 526.2062 696.0684 c 526.2062 706.2734 l 529.8585 704.3756 533.4572 702.9432 537.0022 701.9764 c 540.5471 701.0454 544.0561 700.58 547.5292 700.58 c 552.1841 700.58 555.7648 701.3677 558.2712 702.9432 c 560.7777 704.5546 562.031 706.8104 562.031 709.7108 c 562.031 712.3964 561.1179 714.4553 559.2917 715.8876 c 557.5013 717.3199 553.5446 718.6985 547.4217 720.0234 c 543.9842 720.8291 l 537.8611 722.1182 533.4388 724.0876 530.7172 726.7373 c 527.9959 729.4228 526.6352 733.0932 526.6352 737.7483 c 526.6352 743.4058 528.6404 747.7742 532.6508 750.8533 c 536.6612 753.9327 542.3545 755.4724 549.7308 755.4724 c 553.3831 755.4724 556.8205 755.2039 560.0428 754.6668 c 563.2655 754.1296 566.2375 753.324 568.9588 752.2498 c h f Q Q Q q q 0.1 0.0 0.0 0.1 222.984 750.4794 cm q /Tr1 gs 0.0039 0.0039 0.0039 scn q 2 j 708.06 714.646 m 708.06 721.8073 706.574 727.3573 703.602 731.296 c 700.6658 735.2348 696.5301 737.2042 691.195 737.2042 c 685.8955 737.2042 681.7599 735.2348 678.788 731.296 c 675.8518 727.3572 674.3837 721.8072 674.3837 714.646 c 674.3837 707.5207 675.8518 701.9883 678.788 698.049 c 681.76 694.1102 685.8957 692.1408 691.195 692.1408 c 696.5303 692.1408 700.6659 694.1102 703.602 698.049 c 706.574 701.9878 708.06 707.5201 708.06 714.646 c h 717.9428 691.335 m 717.9428 681.0943 715.669 673.4853 711.1215 668.508 c 706.574 663.495 699.6093 660.9885 690.2275 660.9885 c 686.7542 660.9885 683.4778 661.2571 680.3984 661.7942 c 677.319 662.2955 674.3291 663.0832 671.4287 664.1575 c 671.4287 673.7717 l 674.3291 672.1961 677.1937 671.0324 680.0225 670.2805 c 682.8513 669.5285 685.7338 669.1526 688.67 669.1526 c 695.1511 669.1526 700.0031 670.8534 703.226 674.2551 c 706.4487 677.6209 708.06 682.7236 708.06 689.5631 c 708.06 694.4508 l 706.019 690.9058 703.4051 688.2561 700.2182 686.5016 c 697.0313 684.747 693.218 683.8698 688.7782 683.8698 c 681.4022 683.8698 675.4582 686.6806 670.9462 692.3024 c 666.4345 697.9241 664.1786 705.3721 664.1786 714.6464 c 664.1786 723.9564 666.4345 731.422 670.9462 737.0434 c 675.4579 742.6651 681.4019 745.476 688.7782 745.476 c 693.2183 745.476 697.0317 744.5987 700.2182 742.8442 c 703.4051 741.0896 706.019 738.4399 708.06 734.895 c 708.06 744.0259 l 717.9428 744.0259 l h f Q q 2 j 772.46 734.784 m 771.35 735.4285 770.1325 735.894 768.8076 736.1805 c 767.5185 736.5028 766.0862 736.6639 764.5107 736.6639 c 758.9248 736.6639 754.6278 734.8377 751.6197 731.1854 c 748.6477 727.5689 747.1617 722.3589 747.1617 715.5554 c 747.1617 683.8664 l 737.2252 683.8664 l 737.2252 744.0224 l 747.1617 744.0224 l 747.1617 734.6767 l 749.2385 738.329 751.942 741.0325 755.2721 742.7871 c 758.6022 744.5774 762.6485 745.4726 767.4111 745.4726 c 768.0914 745.4726 768.8434 745.4189 769.667 745.3115 c 770.4906 745.2399 771.4037 745.1145 772.4063 744.9355 c h f Q q 2 j 831.32 716.416 m 831.32 711.582 l 785.881 711.582 l 786.3107 704.7787 788.3517 699.5867 792.004 696.006 c 795.6921 692.4611 800.8125 690.6886 807.365 690.6886 c 811.1606 690.6886 814.8309 691.1541 818.376 692.0851 c 821.9567 693.0161 825.5017 694.4126 829.011 696.2746 c 829.011 686.9289 l 825.4661 685.425 821.8317 684.2791 818.108 683.4914 c 814.3843 682.7037 810.6066 682.3098 806.775 682.3098 c 797.1783 682.3098 789.5693 685.1028 783.948 690.6887 c 778.3621 696.2746 775.5691 703.83 775.5691 713.3547 c 775.5691 723.202 778.2188 731.008 783.5183 736.7727 c 788.8536 742.5735 796.0329 745.4739 805.0563 745.4739 c 813.149 745.4739 819.5406 742.86 824.2313 737.6321 c 828.9578 732.44 831.3211 725.368 831.3211 716.4161 c h 821.4372 719.3164 m 821.3656 724.7233 819.8438 729.038 816.8718 732.2604 c 813.9356 735.4831 810.0326 737.0944 805.1628 737.0944 c 799.6485 737.0944 795.2261 735.5368 791.8958 732.4216 c 788.6015 729.3064 786.7037 724.9201 786.2024 719.2626 c h f Q q 2 j 898.3 716.416 m 898.3 711.582 l 852.861 711.582 l 853.2907 704.7787 855.3317 699.5867 858.984 696.006 c 862.6721 692.4611 867.7925 690.6886 874.345 690.6886 c 878.1406 690.6886 881.8109 691.1541 885.356 692.0851 c 888.9367 693.0161 892.4817 694.4126 895.991 696.2746 c 895.991 686.9289 l 892.4461 685.425 888.8117 684.2791 885.088 683.4914 c 881.3643 682.7037 877.5866 682.3098 873.755 682.3098 c 864.1583 682.3098 856.5493 685.1028 850.928 690.6887 c 845.3421 696.2746 842.5491 703.83 842.5491 713.3547 c 842.5491 723.202 845.1988 731.008 850.4983 736.7727 c 855.8336 742.5735 863.0129 745.4739 872.0363 745.4739 c 880.129 745.4739 886.5206 742.86 891.2113 737.6321 c 895.9378 732.44 898.3011 725.368 898.3011 716.4161 c h 888.4172 719.3164 m 888.3456 724.7233 886.8238 729.038 883.8518 732.2604 c 880.9156 735.4831 877.0126 737.0944 872.1428 737.0944 c 866.6285 737.0944 862.2061 735.5368 858.8758 732.4216 c 855.5815 729.3064 853.6837 724.9201 853.1824 719.2626 c h f Q q 2 j 963.82 720.176 m 963.82 683.867 l 953.9372 683.867 l 953.9372 719.853 l 953.9372 725.5463 952.8272 729.8073 950.6071 732.636 c 948.387 735.4648 945.057 736.8792 940.6169 736.8792 c 935.2816 736.8792 931.0743 735.1784 927.9949 731.7767 c 924.9155 728.375 923.3758 723.738 923.3758 717.8657 c 923.3758 683.8667 l 913.4393 683.8667 l 913.4393 744.0227 l 923.3758 744.0227 l 923.3758 734.677 l 925.7391 738.2935 928.5141 740.997 931.701 742.7874 c 934.9237 744.5777 938.6297 745.4729 942.819 745.4729 c 949.7297 745.4729 954.9577 743.3245 958.503 739.0276 c 962.0479 734.7665 963.8204 728.4822 963.8204 720.1746 c h f Q q 2 j 1060.44 713.886 m 1060.44 721.1547 1058.9361 726.848 1055.9283 730.966 c 1052.9563 735.1197 1048.8563 737.1965 1043.6283 737.1965 c 1038.4004 737.1965 1034.2824 735.1197 1031.2743 730.966 c 1028.3023 726.8481 1026.8163 721.1548 1026.8163 713.886 c 1026.8163 706.6172 1028.3023 700.9059 1031.2743 696.752 c 1034.2821 692.6341 1038.4001 690.5752 1043.6283 690.5752 c 1048.8562 690.5752 1052.9562 692.6341 1055.9283 696.752 c 1058.9361 700.9057 1060.44 706.617 1060.44 713.886 c h 1026.817 734.887 m 1028.8938 738.4677 1031.5077 741.1175 1034.6588 742.8362 c 1037.8457 744.5907 1041.6413 745.468 1046.0458 745.468 c 1053.3505 745.468 1059.2765 742.5676 1063.8238 736.7668 c 1068.4071 730.966 1070.6988 723.339 1070.6988 713.8858 c 1070.6988 704.4325 1068.4071 696.8055 1063.8238 691.0048 c 1059.2763 685.204 1053.3503 682.3036 1046.0458 682.3036 c 1041.6415 682.3036 1037.8459 683.163 1034.6588 684.8817 c 1031.5077 686.6362 1028.8938 689.3039 1026.817 692.8846 c 1026.817 683.8612 l 1016.8805 683.8612 l 1016.8805 767.4352 l 1026.817 767.4352 l h f Q q 2 j 1113.72 714.106 m 1105.7347 714.106 1100.2023 713.1929 1097.123 711.3667 c 1094.0435 709.5405 1092.5038 706.4253 1092.5038 702.021 c 1092.5038 698.5119 1093.6496 695.7189 1095.9413 693.6421 c 1098.2688 691.6011 1101.4198 690.5806 1105.3944 690.5806 c 1110.8729 690.5806 1115.2593 692.5142 1118.5534 696.3814 c 1121.8835 700.2844 1123.5485 705.4584 1123.5485 711.9034 c 1123.5485 714.1056 l h 1133.432 718.188 m 1133.432 683.867 l 1123.5492 683.867 l 1123.5492 692.9979 l 1121.2933 689.3456 1118.4825 686.6421 1115.1166 684.8875 c 1111.7507 683.1688 1107.6327 682.3094 1102.7626 682.3094 c 1096.6037 682.3094 1091.6981 684.0281 1088.0456 687.4656 c 1084.4291 690.9389 1082.6208 695.5759 1082.6208 701.3766 c 1082.6208 708.1439 1084.8767 713.2466 1089.3884 716.6846 c 1093.9359 720.1221 1100.7036 721.8408 1109.6914 721.8408 c 1123.5484 721.8408 l 1123.5484 722.8076 l 1123.5484 727.3551 1122.0445 730.8641 1119.0367 733.3346 c 1116.0647 735.8411 1111.8754 737.0944 1106.4687 737.0944 c 1103.0312 737.0944 1099.6832 736.6826 1096.4247 735.859 c 1093.1662 735.0354 1090.0331 733.8 1087.0253 732.1529 c 1087.0253 741.2838 l 1090.6418 742.6803 1094.1508 743.7187 1097.5523 744.399 c 1100.954 745.1151 1104.2661 745.4732 1107.4888 745.4732 c 1116.1901 745.4732 1122.6891 743.2173 1126.9858 738.7056 c 1131.2827 734.1939 1133.4311 727.3545 1133.4311 718.1876 c h f Q q 2 j 1188.0 734.784 m 1186.89 735.4285 1185.6726 735.894 1184.3477 736.1805 c 1183.0586 736.5028 1181.6263 736.6639 1180.0508 736.6639 c 1174.4649 736.6639 1170.1679 734.8377 1167.1598 731.1854 c 1164.1878 727.5689 1162.7018 722.3589 1162.7018 715.5554 c 1162.7018 683.8664 l 1152.7653 683.8664 l 1152.7653 744.0224 l 1162.7018 744.0224 l 1162.7018 734.6767 l 1164.7786 738.329 1167.4821 741.0325 1170.8122 742.7871 c 1174.1423 744.5774 1178.1886 745.4726 1182.9512 745.4726 c 1183.6315 745.4726 1184.3835 745.4189 1185.2071 745.3115 c 1186.0307 745.2399 1186.9438 745.1145 1187.9464 744.9355 c h f Q Q Q Q q q 0.1 0.0 0.0 0.1 222.984 750.4794 cm q 2 j 708.06 724.646 m 708.06 731.8073 706.574 737.3573 703.602 741.296 c 700.6658 745.2348 696.5301 747.2042 691.195 747.2042 c 685.8955 747.2042 681.7599 745.2348 678.788 741.296 c 675.8518 737.3572 674.3837 731.8072 674.3837 724.646 c 674.3837 717.5207 675.8518 711.9883 678.788 708.049 c 681.76 704.1102 685.8957 702.1408 691.195 702.1408 c 696.5303 702.1408 700.6659 704.1102 703.602 708.049 c 706.574 711.9878 708.06 717.5201 708.06 724.646 c h 717.9428 701.335 m 717.9428 691.0943 715.669 683.4853 711.1215 678.508 c 706.574 673.495 699.6093 670.9885 690.2275 670.9885 c 686.7542 670.9885 683.4778 671.2571 680.3984 671.7942 c 677.319 672.2955 674.3291 673.0832 671.4287 674.1575 c 671.4287 683.7717 l 674.3291 682.1961 677.1937 681.0324 680.0225 680.2805 c 682.8513 679.5285 685.7338 679.1526 688.67 679.1526 c 695.1511 679.1526 700.0031 680.8534 703.226 684.2551 c 706.4487 687.6209 708.06 692.7236 708.06 699.5631 c 708.06 704.4508 l 706.019 700.9058 703.4051 698.2561 700.2182 696.5016 c 697.0313 694.747 693.218 693.8698 688.7782 693.8698 c 681.4022 693.8698 675.4582 696.6806 670.9462 702.3024 c 666.4345 707.9241 664.1786 715.3721 664.1786 724.6464 c 664.1786 733.9564 666.4345 741.422 670.9462 747.0434 c 675.4579 752.6651 681.4019 755.476 688.7782 755.476 c 693.2183 755.476 697.0317 754.5987 700.2182 752.8442 c 703.4051 751.0896 706.019 748.4399 708.06 744.895 c 708.06 754.0259 l 717.9428 754.0259 l h f Q q 2 j 772.46 744.784 m 771.35 745.4285 770.1325 745.894 768.8076 746.1805 c 767.5185 746.5028 766.0862 746.6639 764.5107 746.6639 c 758.9248 746.6639 754.6278 744.8377 751.6197 741.1854 c 748.6477 737.5689 747.1617 732.3589 747.1617 725.5554 c 747.1617 693.8664 l 737.2252 693.8664 l 737.2252 754.0224 l 747.1617 754.0224 l 747.1617 744.6767 l 749.2385 748.329 751.942 751.0325 755.2721 752.7871 c 758.6022 754.5774 762.6485 755.4726 767.4111 755.4726 c 768.0914 755.4726 768.8434 755.4189 769.667 755.3115 c 770.4906 755.2399 771.4037 755.1145 772.4063 754.9355 c h f Q q 2 j 831.32 726.416 m 831.32 721.582 l 785.881 721.582 l 786.3107 714.7787 788.3517 709.5867 792.004 706.006 c 795.6921 702.4611 800.8125 700.6886 807.365 700.6886 c 811.1606 700.6886 814.8309 701.1541 818.376 702.0851 c 821.9567 703.0161 825.5017 704.4126 829.011 706.2746 c 829.011 696.9289 l 825.4661 695.425 821.8317 694.2791 818.108 693.4914 c 814.3843 692.7037 810.6066 692.3098 806.775 692.3098 c 797.1783 692.3098 789.5693 695.1028 783.948 700.6887 c 778.3621 706.2746 775.5691 713.83 775.5691 723.3547 c 775.5691 733.202 778.2188 741.008 783.5183 746.7727 c 788.8536 752.5735 796.0329 755.4739 805.0563 755.4739 c 813.149 755.4739 819.5406 752.86 824.2313 747.6321 c 828.9578 742.44 831.3211 735.368 831.3211 726.4161 c h 821.4372 729.3164 m 821.3656 734.7233 819.8438 739.038 816.8718 742.2604 c 813.9356 745.4831 810.0326 747.0944 805.1628 747.0944 c 799.6485 747.0944 795.2261 745.5368 791.8958 742.4215 c 788.6015 739.3062 786.7037 734.9199 786.2024 729.2625 c h f Q q 2 j 898.3 726.416 m 898.3 721.582 l 852.861 721.582 l 853.2907 714.7787 855.3317 709.5867 858.984 706.006 c 862.6721 702.4611 867.7925 700.6886 874.345 700.6886 c 878.1406 700.6886 881.8109 701.1541 885.356 702.0851 c 888.9367 703.0161 892.4817 704.4126 895.991 706.2746 c 895.991 696.9289 l 892.4461 695.425 888.8117 694.2791 885.088 693.4914 c 881.3643 692.7037 877.5866 692.3098 873.755 692.3098 c 864.1583 692.3098 856.5493 695.1028 850.928 700.6887 c 845.3421 706.2746 842.5491 713.83 842.5491 723.3547 c 842.5491 733.202 845.1988 741.008 850.4983 746.7727 c 855.8336 752.5735 863.0129 755.4739 872.0363 755.4739 c 880.129 755.4739 886.5206 752.86 891.2113 747.6321 c 895.9378 742.44 898.3011 735.368 898.3011 726.4161 c h 888.4172 729.3164 m 888.3456 734.7233 886.8238 739.038 883.8518 742.2604 c 880.9156 745.4831 877.0126 747.0944 872.1428 747.0944 c 866.6285 747.0944 862.2061 745.5368 858.8758 742.4215 c 855.5815 739.3062 853.6837 734.9199 853.1824 729.2625 c h f Q q 2 j 963.82 730.176 m 963.82 693.867 l 953.9372 693.867 l 953.9372 729.853 l 953.9372 735.5463 952.8272 739.8073 950.6071 742.636 c 948.387 745.4647 945.057 746.8791 940.6169 746.8792 c 935.2816 746.8792 931.0743 745.1784 927.9949 741.7767 c 924.9155 738.375 923.3758 733.738 923.3758 727.8657 c 923.3758 693.8667 l 913.4393 693.8667 l 913.4393 754.0227 l 923.3758 754.0227 l 923.3758 744.677 l 925.7391 748.2935 928.5141 750.997 931.701 752.7874 c 934.9237 754.5777 938.6297 755.4729 942.819 755.4729 c 949.7297 755.4729 954.9577 753.3245 958.503 749.0276 c 962.0479 744.7665 963.8204 738.4822 963.8204 730.1746 c h f Q q 2 j 1060.44 723.886 m 1060.44 731.1547 1058.9361 736.848 1055.9283 740.966 c 1052.9563 745.1197 1048.8563 747.1965 1043.6283 747.1965 c 1038.4004 747.1965 1034.2824 745.1197 1031.2743 740.966 c 1028.3023 736.8481 1026.8163 731.1548 1026.8163 723.886 c 1026.8163 716.6173 1028.3023 710.906 1031.2743 706.752 c 1034.2821 702.6341 1038.4001 700.5752 1043.6283 700.5752 c 1048.8562 700.5752 1052.9562 702.6341 1055.9283 706.752 c 1058.9361 710.9057 1060.44 716.617 1060.44 723.886 c h 1026.817 744.887 m 1028.8938 748.4677 1031.5077 751.1175 1034.6588 752.8362 c 1037.8457 754.5907 1041.6413 755.468 1046.0458 755.468 c 1053.3505 755.468 1059.2765 752.5676 1063.8238 746.7668 c 1068.4071 740.966 1070.6988 733.339 1070.6988 723.8858 c 1070.6988 714.4325 1068.4071 706.8055 1063.8238 701.0048 c 1059.2763 695.204 1053.3503 692.3036 1046.0458 692.3036 c 1041.6415 692.3036 1037.8459 693.163 1034.6588 694.8817 c 1031.5077 696.6362 1028.8938 699.3039 1026.817 702.8846 c 1026.817 693.8612 l 1016.8805 693.8612 l 1016.8805 777.4352 l 1026.817 777.4352 l h f Q q 2 j 1113.72 724.106 m 1105.7347 724.106 1100.2023 723.1929 1097.123 721.3667 c 1094.0435 719.5405 1092.5038 716.4253 1092.5038 712.021 c 1092.5038 708.5119 1093.6496 705.7189 1095.9413 703.6421 c 1098.2688 701.6011 1101.4198 700.5806 1105.3944 700.5806 c 1110.8729 700.5806 1115.2593 702.5142 1118.5534 706.3814 c 1121.8835 710.2844 1123.5485 715.4584 1123.5485 721.9034 c 1123.5485 724.1056 l h 1133.432 728.188 m 1133.432 693.867 l 1123.5492 693.867 l 1123.5492 702.9979 l 1121.2933 699.3456 1118.4825 696.6421 1115.1166 694.8875 c 1111.7507 693.1688 1107.6327 692.3094 1102.7626 692.3094 c 1096.6037 692.3094 1091.6981 694.0281 1088.0456 697.4656 c 1084.4291 700.9389 1082.6208 705.5759 1082.6208 711.3766 c 1082.6208 718.1439 1084.8767 723.2466 1089.3884 726.6846 c 1093.9359 730.1221 1100.7036 731.8408 1109.6914 731.8408 c 1123.5484 731.8408 l 1123.5484 732.8076 l 1123.5484 737.3551 1122.0445 740.8641 1119.0367 743.3346 c 1116.0647 745.8411 1111.8754 747.0944 1106.4687 747.0944 c 1103.0312 747.0944 1099.6832 746.6826 1096.4247 745.859 c 1093.1662 745.0354 1090.0331 743.8 1087.0253 742.1529 c 1087.0253 751.2838 l 1090.6418 752.6803 1094.1508 753.7187 1097.5523 754.399 c 1100.954 755.1151 1104.2661 755.4732 1107.4888 755.4732 c 1116.1901 755.4732 1122.6891 753.2173 1126.9858 748.7056 c 1131.2827 744.1939 1133.4311 737.3545 1133.4311 728.1876 c h f Q q 2 j 1188.0 744.784 m 1186.89 745.4285 1185.6726 745.894 1184.3477 746.1805 c 1183.0586 746.5028 1181.6263 746.6639 1180.0508 746.6639 c 1174.4649 746.6639 1170.1679 744.8377 1167.1598 741.1854 c 1164.1878 737.5689 1162.7018 732.3589 1162.7018 725.5554 c 1162.7018 693.8664 l 1152.7653 693.8664 l 1152.7653 754.0224 l 1162.7018 754.0224 l 1162.7018 744.6767 l 1164.7786 748.329 1167.4821 751.0325 1170.8122 752.7871 c 1174.1423 754.5774 1178.1886 755.4726 1182.9512 755.4726 c 1183.6315 755.4726 1184.3835 755.4189 1185.2071 755.3115 c 1186.0307 755.2399 1186.9438 755.1145 1187.9464 754.9355 c h f Q Q Q Q Q 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 347.52 820.398 Td /F1.0 9 Tf <74657874> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R >> /ExtGState << /Tr1 15 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /3effb8+NotoSerif /Subtype /TrueType /FontDescriptor 17 0 R /FirstChar 32 /LastChar 255 /Widths 19 0 R /ToUnicode 18 0 R >> endobj 12 0 obj << /Type /Outlines /Count 1 /First 13 0 R /Last 13 0 R >> endobj 13 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 12 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 14 0 obj << /Nums [0 << /P (1) >>] >> endobj 15 0 obj << /Type /ExtGState /CA 1 /ca 0.3 >> endobj 16 0 obj << /Length1 7304 /Length 4354 /Filter [/FlateDecode] >> stream x9mP[Wv' !00ll!X$| ɒ%R, ǎ͇ĉ[I6$if?2;vti3f:iLۯLgkPϽzq>q;s}J�#n[H!f X(:�y@NL>_!|e:J@~`C_<=s<~s�`D0syWql aIh.̦<"H8Oňp xlXBo#cY�k 7&4DgDRNV�C3w[+1\/,6v}Ez`/z/^C-D @B=�[3hsK^zN`c`? kĿ'gmHşC|.P4Z hn ##` r1O >4yZX(G{f�`;5/#جy |K.*m;>τ{|ltdx݃.Ǿޮ{:wؾfmjܲ.RSU^j2)2 tZ(htJ�U^hbDBB@HrQhՒv &iIW$vAWS#uJTCdO8ÚzAbA ꬊ8BԩF2΀-> "RHp@\@U:g0ojTJ$gA7nFY$]h|/Ԣ & !)<S fDg&RڠlY+FTա?C7]E[gh H]]M ] ` ӛɸ$2DMRf8pbaԇZw4+)!b]Cڱ>EsH)K0[Jyѯc&Ӂ9XŸ\$"/S4y/ϩ0|Cn_F $'ɠ2?t+dRJ4[LY)isYQ TcZPV1q33:/-;%48%g@;BQhȕ~§؃j 6DQ/bJԻRO3qUM)S%j)6y ߶Xo>`1;ЖNw0Õ}؃Ό/Vj0-ݏ&OlnYxt7rKCc};Ԡs fNS͌3`{*:= fя&$PRoJA é{!/a([Svr _eTZo oMP7`-Q@6U` 4p{*I"TXzxEduXݒ,LXGX2W*_Anc4f\R F>�kwR3R\Al1u kCy UCdh| 95`'}{jw^ B_׿p|P|pfi=7c\ 'p|j�4SBfir4; TIC>#8TbF(DH D+IU^Frt`gJ`䔾jwfO9QRZ!M <f"ςg G%KNf)KG<KĸDY"K {lV7v)bF 1"VR2E\P6 d!q 1 �.O=Dv4xx|g3bq 9tgqCD d=ZB^i_/B_!g..2iLt.z~&z.b惿^_367o ]H/ּ(><>~"<gz.s"xqtNpΑk9=G}^8yg/v6{Vpa127&cs|{?.n Uk5lxs,f߳?6q6YhC�qڶ2`FxM*\^w+x.x.yy'qPdcSV)%Fe%xx($ @՟$ZH,L .=SJ| <i4}J`H !`g<M OR~Ta ROʧȡ!JᔓD 9;(Q+440.>HlHh`TCʡ$oi @}e^._y} x909s?�?<9z]az׸?qx >_Wh!G4~[Z[^D[Ї6n7t@|ƻ%2/ 'w}ϰZ6 i KxaTJ kp~*uBbصn}K-^WD/8 >^^¸yKĩ*t[ #I?k3 gv71 $Zm:K%,/لiI;*9V[k:ڻj\'[ʶm۫IEy 8¯?tA~2l?xÎ{U}c;ַtw6{{gzӿUe!+W<Z]݉,S `TmBq[DS_xS/Y [&;YVqwΏ=hCg>zԐo?HKՖ 5][ڝ�u橣Ch um"OBiypSmB`J{f뽵:2d6Imݝ/Vux];3klN6m6xsp|>/2PѦ 4alF`JZ,�鋫qD }{_^~6/_ZӟdT9O|&\W,WW.\`+JDT@lo`+nmUÉOR)^ǧj- WKёsKIy`謽e^ jҋg뱑M%a #`8b.WVbk[4Vo^f8+zrө[Z[Mwd`XmaU6o]Z^GѺFa1L& @b+]L0b$l6pTa6]5( B1>sLRgm;{*\]6Fn7V~թ3T^CH> < CLʅ*,@hRa:j@Sa-T3*\�1oSwp!l?WalP"Ub \Wh/x/8NGҴ32MYi gSrqꖓ<=7L T NGcӴޔ yd*k697)d0$xPd!1:!gtF4<NWC94 [#tf{ܙu*>k6naϪ\�h|"!4uIa&:%Rs.4{pIȱ@#+P4NF'p5%1Z㦃Zt7}# g|gxb#od18182 ణQ 'IcJxFg3Q*,}4ϭ$ ƦӸB~69>?*'c\sI:,5_T2H5@GxrHBo@g ȍ#}d\4{BRf>☌wm9èAQ|3i<Q@){R1YLl gg!zG;wy9BY +e-QiG%%DQ"#zI j :pNX"FZjyF0,VYN&iħ +J\c qem8Bw֞M )a,,|5,..bMiy3xB<s"[M˺1{>½VY޳B#R-<B}5Qr6|}uw#L cqChO #xBx8È .Ak r8s6 ~!02FNc03I )cc,bDJ1GU5Iq)$9wvw3#W$/턛|֧GnlewGaN)[ӿEUo)U6\V 2'l}å!x %=,P endstream endobj 17 0 obj << /Type /FontDescriptor /FontName /3effb8+NotoSerif /FontFile2 16 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 18 0 obj << /Length 1278 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }ik/y_!}t~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=n?[i(JKiU:JSz2QeL*EJ̔Ye,*+eU(NU-уk5x5F^ky ^#k5x5F^ky ^#kxZV^kZy-^+kxZV^kZy-^+uxu:N^:y^'uxu:N^:y^'xz^^zy=^/xz^^zy=^/o xo7 Aހ7y o xo7 Aހ7y oxo7jo$JI$$*I$ITH$$QI"IDD%$JI$$*I$ITD$$III$$u>M&Iބ7ɛ&y$o›Mx o7M&Iބ7ɛ&yUoa[5joSor4ۂs�ޮ>,x/x;Â31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x e#e_y+h܊7k:/Z5dUluz5n[eB&Si|y(%q& %+S%*ABijPU6\h,(+L,4G5<cD [˧*t [ jjaijIxʪwgFwضR>sh>:OVRP*#i|e0U,*oU/*[U,Nmlx:&\}M)L2\%CHF7էʻBL)jƻJ1:%H߯:=S۳zrmkO媳7 endstream endobj 19 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 492 500 535 500 500 500 500 500 500 500 500 645 577 500 500 500 500 352 500 500 500 578 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 20 0000000000 65535 f 0000000015 00000 n 0000000248 00000 n 0000000449 00000 n 0000000506 00000 n 0000000557 00000 n 0000000829 00000 n 0000027321 00000 n 0000027647 00000 n 0000027689 00000 n 0000027737 00000 n 0000027789 00000 n 0000027954 00000 n 0000028028 00000 n 0000028153 00000 n 0000028198 00000 n 0000028251 00000 n 0000032695 00000 n 0000032907 00000 n 0000034261 00000 n trailer << /Size 20 /Root 2 0 R /Info 1 0 R >> startxref 35175 %%EOF ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/running-content-image-overrun.pdf�������������������������0000664�0000000�0000000�00000117761�14163570564�0027072�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Article Title) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20190930000558-06'00') /CreationDate (D:20190930000558-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 10 0 R /Outlines 15 0 R /PageLabels 17 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 2 /Kids [7 0 R 14 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 516 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 215.7355 777.054 Td /F1.0 27 Tf <41727469636c65205469746c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 746.406 Td /F3.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /Stamp1 Do 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 49.24 14.263 Td /F3.0 9 Tf <31> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 75.0 0.0 0.0 88.2353 471.04 -64.3603 cm /I1 Do Q Q Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 8 0 R /F3.0 12 0 R >> /XObject << /Stamp1 18 0 R /I1 20 0 R >> >> >> endobj 8 0 obj << /Type /Font /BaseFont /4982ad+NotoSerif-Bold /Subtype /TrueType /FontDescriptor 23 0 R /FirstChar 32 /LastChar 255 /Widths 25 0 R /ToUnicode 24 0 R >> endobj 9 0 obj [7 0 R /XYZ 0 758.37 null] endobj 10 0 obj << /Type /Names /Dests 11 0 R >> endobj 11 0 obj << /Names [(__anchor-top) 9 0 R] >> endobj 12 0 obj << /Type /Font /BaseFont /d67fed+NotoSerif /Subtype /TrueType /FontDescriptor 27 0 R /FirstChar 32 /LastChar 255 /Widths 29 0 R /ToUnicode 28 0 R >> endobj 13 0 obj << /Length 380 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F3.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /Stamp2 Do 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 49.24 14.263 Td /F3.0 9 Tf <32> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 75.0 0.0 0.0 88.2353 471.04 -64.3603 cm /I2 Do Q Q Q endstream endobj 14 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 13 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F3.0 12 0 R >> /XObject << /Stamp2 19 0 R /I2 20 0 R >> >> >> endobj 15 0 obj << /Type /Outlines /Count 1 /First 16 0 R /Last 16 0 R >> endobj 16 0 obj << /Title <feff00410072007400690063006c00650020005400690074006c0065> /Parent 15 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 17 0 obj << /Nums [0 << /P (1) >> 1 << /P (2) >>] >> endobj 18 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 595.28 841.89] /Length 162 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d q 0.25 w /DeviceRGB CS 0.8667 0.8667 0.8667 SCN 48.24 30.0 m 547.04 30.0 l S Q Q endstream endobj 19 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 595.28 841.89] /Length 162 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d q 0.25 w /DeviceRGB CS 0.8667 0.8667 0.8667 SCN 48.24 30.0 m 547.04 30.0 l S Q Q endstream endobj 20 0 obj << /Type /XObject /Subtype /Image /Height 240 /Width 204 /BitsPerComponent 8 /ColorSpace /DeviceRGB /SMask 21 0 R /Length 19044 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 3 /BitsPerComponent 8 /Columns 204 >>] >> stream x e7U]}LLfr$rp�ASdA%x*ʺDPs<!#r $${&sOU9jjzyh:5u~>2)2)2)2)2)2)2)2)2)2)2)2)2)2)2)2)2zc}/]R|RVJӦeiBd$Z&A6NX[ i"˕ƥL/HQ\mýD$P ð, U7)Urx mjd R ' Ӵ@/Gd_ᕪz˚p~>'06Fiw4 <SX5~nc>\&" J+3[�k䩂)Yl6Xmۄ3X?TF9|@ `P( 3Xf3T*�<G=Qp6%aer$dp8F#0H0ӧ/g)elLJlT™8E"PZ+ Ɛ@N>8 3@*'>3g`0�`2s>p�CE]zyO4@aԀ\DeUf@VzS Ip@ ,@BU\&Ȁ/*{8\Ee\04FXY-2%TFxl6$ d2�8Vyc!6 rW Ni8 (KBeCQN@탬 �R�pLa2iߏ7ΥAiՕ`z�C@cj&ڀLU+#lo) XEHQ~�d96U?j/<[ ,a1=[U8ֲXxC ӕր>48AV[TKRqSU_2*蠎}6`ĵXjjJJ-5d? 1~Iʱ F"h Rʼt_*v9dvIFyM4 LGөDJEQZ-kdw򇩀Ȁl!J)=Bq@Jcy pVZKfY͂lv)^Ё @)-T3-k{@uꢹ\Q$gdǯFY#1 2 :#A\Qz#?1`/b sG\W.\1 RCWp-OqJ{{}&T _dBte@#pH'+^L�M&ScJԂYL6&ys<�k3C7sb|YN{? I+'on7p{Vr0+kjO׾ǁr4CC]{olڻwW34-[z�f xZ;vʫc/Y.&5'˗~\PX<^0A\.F:&/)Sp|HF.&E9s ݭ[lҗ+::첏RKxs4>ASN |߹䒏oOE$d}}pΜ9~P_bSN]ri]2FҠmԩM ,x뭷+#5.K,wSO=e@ B7) fV}}Cºx?ᏯlΜXg�vE{ 5ahI'.pk߸b6;;g}~uJ2z߅r(w|ZW‹iYrRP(mxo=Iv.N^:644N>c}uם{}[1:;;+_`(o5k…Ο�v{w7{饍ӧb_%7VRҲyqW H$ >i֝˯z[Yz݂Cꯏx 5 ChiӦz9nڴrѢE/*jE[.Lc ^z &Pg`0}|r}}Jvٲ� AkX`X]CC}"%|k}-ӥV0\Z2%A=,>d7; l9iӦ6446�hV>j֬Yw7{N+�롇e ei ^i^?�"/FAH hmme3Huww$a;*VX -[ *d˖v}sxoN%L2]{mo<9xэF25bZ+( [T�¼O?yw �|zC먐V۾}3H޽[cNl#f>k.H4&?@<�N0~{{耍wqrB* t4d0(; :qM0o~3\l,ZW>Rώ?kFf̘>l}ݏAly W6d ,}�ه>AشeoWV n*.]:2}rzĪ3EXaC]!ƀ8ygl^{-�\vITJq{Ц}IqGhf[)HV"ٝ9iGZ~#~xwGdFxDY/V^yURt$ol\u7Œ 8;֞ntMmxn~Y'{c>׸4#L𚥶A_H$z�gVog!H1dqC,[kj wڥ3˖-?'qw#ZY#%ʕ7ky]O30�'Nu\8Xcdi&Ki vߒ8x{J<ʜ߯v�O>dؔio?ȥ~bDP MO'�2;54`nJsf>WW<_ҠiMl;b̊ܬ6q!:XGvεQS5҅yk|UsYh-&5]hZa }RW�^ =BTPk_kZg?dvm淮߶}ln2D"GN\`$/�"Lj.@&aAAcǠG]*O.Z&9ז.49e$@VҶb<"rzkV.p@MRJ9 b9leHuљS{.մ�BA}grń$_�8 < r䔕l.μk?!:7< 2.<>xNl A>=*XrDOsHݞHw2T󘃊>0kY]R"HR̛*_1L (%hJI)e F2Ɇǻ|kj\LAzYlXmey4�]󁢐]�0$pb`Y�/2f20zs[ƘPP{?^F$ 2o"fh,�,JؘY S,Rәhj񨈘 .dkڰ P_c_r� `ei]XPjfȰiaXutM;obSs L[ c "��pR:a&0KaZw7"{*)Q1N2&9t _Lm,0a~rX בvƸN.2ȼkô;S{ JS@i8sN!)ͶVz2ִELASNɔzcgapP( fxrLwfB}ڎ{XPlA6JG24jE{. ^`Y>ٽnSdCTF#0i &mѝw ?LPD #@ Mo8AE-C`Jk[C̙d]|IHAfs/ȽEN8aaa긃>㉮?Ȃ`4mhh:iʔ)Di!K?g(rjd`IrJġk?\LtFec\ꃁ ӗeYַ^xftJCPf02#IQZ91kuK3gd`+E"a1;By%ZhsCh[(b.xCǞ^~S[|1~|joOٲ;Ւ5;d8 i(a=u\*/!P{ !{"Rt:F#8_ kdyL0{lTF]U9Ri GD @xXD ,PÀ1+di4 J9L:_jx9sv*.Іq#3<G?w6�2�XOOwggg<4V@oܷ{ ͜P Ci2uԍl*b2zi0|*ω1q1[練W:@}C,+عq xLZ,VY( Ң@~9N L8Eu 7Ms Im%:]Viɠ 8LrHj㵒o63c@Gf( 0-qmXN[<C9ˮH8cNA!�-[{S.p 07{Z*] `^q:sӷ]-~hT1M OvEq�Md ÷`\. ɌY-C7^Z]66$&2adxq"AZDR9~21m^u̝,L[b{|%tgg;5{|'>e?Af: Otdf�M6YQ45u9@ EJtѸ< {Mh~h{Ù~_@&gL vttn4_aW� �8V~͘!U=Sd_`.0ZZ` e'ӏbϑ@e2  ɼAN9Gsm d5XjO<cQ$01u c't;PZL2T𞴢ؑYgkj?+?Zc2Vdқe޼97<W7�dd pi+WRD[.` Ne{ʴKzH~anZ0 /ühO}͚cz\8"ـS͞={�J*Y:?iBgNor`; QdA?|Q^xY L>)K뮹 hf 2`m ;i I]>~C؀_V>zYd�~?+x7cMzE pC]-k^‹\ 0:w(/w֫Dj d!]}[n. {!b̿'jxfl9eѢEw_^(Y :Pj d&kINm>?{zp ]ḵ¼ّP  DˬY3e4L|\ 39".Y駟䎇\n Bd Zt3 oɟg~ ?Viv7Dj?\TUgkh,O󽏼 cg~~S~,ǹ|v#*g&bNo}W\egh M ]3$e<X 6cyi(o^^fdlA& pr,ߛdR͞g2/VƟ5aҭCU <gXێ;TLfj`⩧8}J歜O9=C(ͯNl?rg c0|+0RF3=8zAlْW_w8c"X]<Yh+ͲrknnyQeQm3Wu9rͿ^n]Nfd6@|J1E)q ,X=tņ o[UEjp˗شdSTΪD̡G rbqa3%SArǖpU5>O<ܛ빬Pfo\T 4mi`_ב2 >Xʄ0OKG}tI OeVx!lYU^OJ5o'ƖԩS.]<9T3(XaӢEoVH)x?y|yk?olDd̃gd`Fz<a;EM}u&p{hSW_1xLń9*QV1|pόfʅ g2/E@Pr!OK _GX9Կ?oW?IbellLٳgg2N{7d*mR9+/_Ÿ-uR-4ŏÿ0diHZ Pa^1CdyG|)d "̆[nit?;)D@BrS=%7ycV,~eyh-e!;uX !(DI9PL"co]57R0 ,)!]֫TRFQج6 c{XdEp8L#G3A mU,Ƙ`hѿ{E%-oiyn#_Sl`6lݺ p4 7dԊzT~IU' nDwo+X]jٲ7|huGr $q5}[ OxkVy(AkkQGk׮GQ0 3# Ktf+Fz_W͏>c ]x$;w섩A6{yn=enQ_ԷKrmy_6mj ` ENR(zA揍i4C <);/3<;G0 R Уwp,> dɒ%Hvuuw̘1=U40FG7Ut%〰H$s@ϝ;`5vEI^$(vn 3:ݻb~ qJg'zGww7m+d̬J P9lbu)S^}DO?}*XE aXK?~(yNsZ {䑿 7@RKK \2Pu,Z*ߠJ峢;i5rէ~a##ayܮ[ONz O3gjdym۶͉hg'C_H%LUd윻śx�6owΜX@$"}⏭+k�Fp`x{}y_ße#�^@pznukL&|1 $z^ZbxD'~J xT@9sPVcc̙`cXVXxzh {C*VjVL OQ`˯7OoS/XSsΧ1o}ONA/+FclgbX2X,L)ͣ1T9“>v̯BaWkGϗ^zy3x搀-{zzyg[4;Ğ<LN5 %sTG$缥e ŗ_AK.^v-o V>>{cmڴ ne9#p`qB2{Lp@]£omnݺ a#*H_4/]qy6-s �p�2SФ`[l%_!,TȨdcc`|itz=m`/}J/1AIғN:@O$p<``ЩB{w#n6 =ܰF/U2x!]iFH׻(F\kZV}WN6#!={w O`kkW> އ=XeGW]G6o{Ն!SNٰIQss eV]]fw: kٯژ] 7ily[qꩧ`^qO؜1sd={;DvX`RUL KV07Xj۶y}cTZ:@y`gMgg'W:[xJzRELitj_ь{w򒸠I/%<hud \͒9 wvv$76{/Rwpx޷`RORbŊB6K$z.µFsVCKhfe/(> aRft2VeT DoXbmi U akl򂘌OU8zU2nJ0a-5k455^, /d3.&^]ƛP +tA` 8uJ7.2)bɈdA)ooii 68҄>vȧzdQV?577o^ϭe}F$EJSdkI:$&}3pyzꊟ]ʬY3UnTnW05L֧Wƅʚ5JfY66D/npeX9YYred|=Fa;T,3Y'/gϝ;;ACYl1`Ced:̧3Ȭbu0*4es)#q-Ovҹc.]66 lj-گ|'3 (x"Ƙl^^c7}ݿ'4~p6l#x@_a0iҳ1(ZOc0 軽V`nȰ khh eYcR߂sLo>s!/ éKvH$vj47,WÆ!K`2dQ2JzT&%Jx{ͩ#2ko/˔)Vro˲H P&7n3fJ^C6ޥmq)2&$ ( H&D2JΚq ϭ c@W *%?W^CN �t:O^1A1(ȦNEL&3kI)a]]`s�{86=Ѥ5؎x<v/ iO'e Ǝ= wR#Xq,^eHG1coe]]h 0xD8M(tj)M<W*LOO0:L38e{t~_vZݛߪmH8d!x548EȀɛF@]/Pz4N^,kRL;fDGxy{[32κB#+:ɮ]O�tS TL.Ha O9@li immyf^4»j ;>Acgr? û}N(^ṚxRX9(,=7�x<6w={_}աC%J7&+Gj|Ҙ(MS"`H#hECY>mg(wdΝrr9~;'f۔D6lx3/O6Ͷ-00♼t߳<Y{onuuu|=+S1~ 㻗 Lx #( Yq$׬C;PI*p-9<A.!~? pC?i0G̅[�,Ӕ/Xt挰) \nx)ݐX#ujye /$}nḿ &ڹ ?={vOx$ӲJ<ԃHA9G4?Nk@[mY'b*`2Ƥ\V:aupDDB2hPH uU b̒9Ke3"|YVobd}y睋 8I|& gzlL"hj8MJx-3=LoySv#LLB&uǎjj!&?IiKfPSKhK/=͛w{~RŦ_[YC&M6# FFseј5sΪp`LlD`%:I=M{6S<+-e,kI|I`/æ>uNgGOҏ=$~O oo{&40$Fu%aI#gcM$<+-@-Hߣ{"i帢ʁcnt F8W-i/c_ǵox0gƟl2=w]Y1˖`GNsYFPYv[ŶeK�`]Dyw-Ѹ.C=_xnȞ.*q2d2v4uR0 U?|e4Um4*dVNZ`f֬&t%gE6m/:Vg%*,czީ:\z@C5oW?ޮXnJ*@֘RZ>$%E+CG,?:TK-c7Oo)J$)9[»-K-Ce5r#*\a`~{uttuu%ͷ9>l[^ǘ9$&EKAз#MZ8*h`H i U&}같Fi/#g5ۛnOCmdGؘYT@碔6E�cKSYNf 4ː2%H(?V N3B,kz\�LTaAKbL_W g:[J5˳B @axޜ%bQK|']֬9[o==sN ]5Zļ")|s164ʥݣ Ef#Gڹivgg [¶Ѓh8ӆ SpZϐAñ49xνh^pW}m 8O~| C1<&~&{02r譜Z2WQVug᫗<y4J= h*aMW&(2SLe* 2eȔ &FSb2In/U< / X\pWFc]28m&Gi8[ָ^4Zt.Ϊ#1!I Eb\_3?+@PLpX*VˆpH >  ,`"lr_2z x ,ue]}8!A<!ArEISP]]0CML A c;+'J97ƚR!� A ,$MzB( !-#`NV?>4/Si'�X]pҠw{Yr+VuUX<1(~YdGDJnj`o|p]~sycM")"%Ak1J)zwJyaQ?&+v�&|'�+$XE#1ÉbQVNn�~C0,.<E;mocY[@9Nd˸b+ g Ż]x\^ճBf ։򓧆n<~5uz0X�~ǯ)Wȵ�/%@X� T\ *)wY7K`r9nKhj4'un@ zꉲz!,H+�I}j}mo2<WeJٶ&0f`yMdFm߫kw7Qw\W/ C[4q.Tsz7&`T[w*p:Yfx~ S '-GG"?  XCJ;bz_?~5b+"wS2ciHdL�,CΛ}SnnPQZkCf ӎ9{SNrs@6(p)k SNVהNng<刟 3F8>XF።{rmmƭ~ lo8"jisCҪycLwv}qeq 9L##ȯBRIhm>V,fCHq6 4ZTI!}9"̒^]3DOҚ3CΘ1U{?ڵoֈ>δrЯVKDC0T�B pP�\~B@hؠм6a-#QcK/d&tBsClZ /e4"Q0ۆGmv 'mݺuR fȳs*+uѱfn8"`;10J`�3#z.f|9$I@)x}+XYShHN= p9f,์.Ȱ9#໕LDJu`%@ GHQ7"@,n@рFu `WtRʵ^uyohjk>#f<te 8)6y"+8:3sC@]8"짭;xg+{P\6R・;ZÎY@X;x7 `N?Qt9~ᐗ3r!3~yh8d\W]HdRaD:)Et8 DŧipAmٲYLmeފ,l ?3ߐCa�S8 cGePzm/"M|5 rT[V / `iCf^z; 2Ψ#ӧϞQf=ςe̩(/7Y5Mb lΘX[dZ~ E5gSƬ'y#e'096͞tuTEg�*"ܯr{oϱ Ƀ3GlSnf2>#ơ a#/BN2k+B6uMFvE,D̕/<L[ U9Fv!˯WPb-w.y-y',HKH7D5Ga4+ LTB.'- 7dƽ ЮʂqRah`#g,>w84vUq{;L6XX;sMAt],PBS{k%QnEsrwH#n#J!~b~k2)AnD�Pؘ5#uS%POms-]p3up#4K i6sJ _?z'>y[K;uM.j_wS]c �sUy&ek"UBiM3?n|"BhER9AaJ7U$\G2C i(5kVb#-J.b/쓛6m?æRG9)&ّTRPu^<GjǙCPoխC|J3d,f46.WE(&UjN`FY0"pe׿ P1Yss>voca'ܔL  _J@`bzXDALJ7R:xTFCW[QQЙF�7[58@ ӟްv1<a~۷&^U([\[[ʬНvPF+vW#a8s(lFi�ShW2Ρ\WWwg>Sk_a{Mgq[o&UǤ?/s@/^]GȁˆH[jmLF9AiZRuҲ?9{Qܳ~y2Y<g>5PL4N^\S J(V;9g,BE4Kל p kL.`i#ymGJPar]w}% wnsRtK+;5hbWŠ\×mY8D^08HJz5C ,8I7RT::hQS{864:|땦ԽjZЄgiys(,b* �O QrYEk`U Bnڛ1.:qѰc($##<3t&K./'>5X (Twjd $LYT@N6P*?GY';dLF2v^Y"&lTX A!cEa>,8qf@CBvsú*im۶?4h{4iN X*WÍ ,P\E.q te[Y  &TtZSv:8Si]VdsvbŁNT"(̵�3RXP,ֺv1EGqcmb8]8ed-*ZR 'MchE؂iC TNdNBY�%%?Ł ;aDNsѻ)x# /#aqPlXXOOW利vF#_b\n6 Ɉ+^vʅơآRpF&"J^);w+T0`LZ% 9ǹa$ցhOWjEr+8Y*l Pr _\j.2W8k+ 8U R,qq xB,.XdrB oEvQe$n�YI�J pK! ل- ^Ru=Ԁjq!Blk<Pٖ-[¿2u+̴<R/Š:]c[h# q%69帓68+t=lN`crJx.2ٟSn;͍JƔϜRNSjd8ڕIgggYOcƗ.xpQ8|R缤�Z}%sz+B͈ڐ-҆hFbꆅ+a=QRs@/)ape4yh*$[s Diu ~,ӟ/Zڃ[I'Ï馛'< zѮ^( /ܡJEY0gu4\P3TWBu!n Kډb;P\-Gq8 ]mI #(ҰCey�9UHu"g3HSq"E-!f7]?kŊ'x 'jyH$xos{5퇐)1{bL߶[tǕt{WQ GYXH92ʬD"cF.yٍ#lO.֝$<@ĕbѳ$܀bE@WB{h)iw:6 /lUW]p1,_XtK,M/tXF|drxkX׸:Qz qhb(ƙmJ*vA8HA>̢#,CQ{4rYҟa l2lTڗn,P qR 2V43ߘ]it{8HrHƹ?#҉WƒOSڜꔅs;HO`3fDX,7DQ+ c :CNA;1R{O*V-fJIFcD]  <-\&% 9z^ZA À, fYzFsq<Ùag9Cl(8{|8iM qoAZqu(r-isPso>ڳ)R(uHH:@!O#ؑZpgqU&lq$~Ae%r#b*AK05$Hl Ԥ--K-rb) d<lBe�Oq_n@i;CrkmLrJJvGsĀ]S"j*kJO[GI]o2Kr4c:RoL0JdAL}4U$cU0|OaTLdS fB"Db)ڕ(�Lp�|ەc?jȜ5ݭХ@i( W|GǤו.R[T!1 1МP;kg9H10T(9E#xBpɌ3_hwn*~g"T(NEm-K:s4R Eπ47#襃Nk*/ !_C4Wpbԍ>JrJ,f8 NNKmyپ�mOJŀ"xٔ KKq>oՍP}gSbV36̵ plP{,5%73B ğ&:7*ҤBqK5y!!nE�^-ݴ?΂Ӝ|n9U" vA\Ûghppo,搽pbdPQjFW < 4iTߗQ JxKSA)lRA)2:P-j 8[V<\% JPlSo7cМ2N^EG뢺j@) 9NQeEP%`7 BEUc XHĴ&amͰӌuܰ>pRK,C$x))vgB0A]&myխeoU\?zhxmiH t:i<�ӛFVOu~jye;S m25R^#Xj¢b|rxjsI[|vR1;=fN �^fVK,`JLT“Sn�6X29pHdm60q XgM NU*aQЛF%$w"U60IKhzl ꈰzx,[Fzƽf.^m%1D_ Igú7SV8&xuxM�&<6Y2`˜vcZ9"3oX<M>~n^Ho9L[WiT%%_] (y숮yN :XdrqSI'L gi*F䑥W\vQk �aX-Hѣ:SbsjWw!Ud9$`2%oO~򯫴UѐXPU]X0ZS39tTsS%{+8+AE EQՕ|ל-F3h�eJdI]ktw�қ΀ T)&Bᶐ9j794X)iԉ=IՓ у=+);⎧�vyUn!䔨 S󘺐 )x*b.!͝s'؎siO!{HZ"eNu1B k?&2*D+Gҹ:Ob3p !tjF/WpCJ7fk{x9"Ma]IW!3)qMZ:JсwG/f5H@8t4j#zê8Ci'c4n E* ԼX &\ĕF4l kmmNk UPSL^q~ps5'9V9rnHd7+%Ð`e2'1Y_ hpm>x<p2FH�eez9Cɩ9~mE 2>S/ߙrs̊ p hWE] >.c kRAFFI9)HceFtW5 Hpn8d0 H3BP@)t␬2M =okL`_TCe9A "i`ԃDaq&՝.M1p9L$Ӫ-ڼEɇ#yઃ4#bxU|$<}dUN-d\y~$CLEV'[a><%tgF҈dQYu C48j8 Ҙ{ b̛[:}77STvt _p2cQ2N;*M><F4OW)6piPl�n5zu%su uT%W/X\+c e 8;+9³K!"xUe]a,=ڠ #A0{9,Hi eBp7Kvyr٩AM Vm'nHQ"#@hy3r Y &C*|\kL9q<kM5d܀DH$En;өZ&XITjBR—K{x |rJXեf<9g-<E'l׍3TQ ΂ |e(P=o5z|u |+M۰m(i9+&eR&eR&eR&eR&eR&eR&eR&eR&eR&eR&%hx endstream endobj 21 0 obj << /Type /XObject /Subtype /Image /Height 240 /Width 204 /BitsPerComponent 8 /ColorSpace /DeviceGray /Decode [0 1] /Length 2902 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 1 /BitsPerComponent 8 /Columns 204 >>] >> stream x{P<rD*!yd4`Fkb)ZGmR(֦&4Q`'iLڤƷBѩ޽wϞs~]o_yYō7nܸqƍ7l:8jd~];Z[O]bz ș7ᗛ'8zC 'fS~oʛ:]R/1KWO|]>bb6Lggh^EL�<¯ڇy]ZT'ڡ|EOdBfk")"/Ͷ xq/n#.ᮎEB\-�ͬcmF]橛$`G񨑱n,�n2*�dP%i/`�/ih]?P#5cH̑LiӦdHEͲZ,&#u3}ǀp(g9"3!*�߯Hwl V2Ѵc XFC&&h&&h?LL}H1j2c y2a bGfOc3P2یGm,@1W�b`Y յdQ("Xf|@ɸŸ%;Q%s:'iDsgƀFc!oF͛{pbnRPަC_-iί u a~$Aqj81#:8Wjی\5g4L'pbQKw;#}3pbک+816d,ipbXw6\�&8Dlj8Gˤ3NB[S3@6[l N d7&ܥb({z281Ţ\E'&|yi['0n>-m j.UYSXY?ȯord|1%HLh}5˟4Ĉ&mVp&ٛ<3e_pWv9C/=C);C�/J�Zd%cݎ_`쉳Vyv م xA܈\2u9!(v5�\'&^sX֞~ۉvY_&3}O+ 6[dg͙bU%WbO{o` WpHny1fI %ۙ ϝ#w^Y103xy0N=DR<Z�iO*�ۋRfJ(7y@L| ކz+5ekM]sJ<dJQ #_)1"Cc@)\ 95cM]d+mȄ>Iќ*ngQd-'W[@K6V&2^LQD(�\3xhYwD47\$�Bi]D+谹4E>/OPh KfH6*%%!K@y3; .&8[H)�@YA쁱?]c&VJg3U@VoL�JLrj$�1{,bJ/-&)z(�ŬGY7,{;H,A=SLd"�̕!R gc% >1eģp0 gFs05 [&�t1mPg:WJFOU2m]zCjg2|qӈa'jA4J[=Xؼ=+&ii1fΎƌQWnRNev g!p g>\b6![M;�gy!&|i:3dF*cȚbƿ? o3Sig|Z^)eb}Gi.X榇'9=΢0jD'9Eݯ1EH�0!;Y tC? Og|(:  kGjI,^P�<ܨcAj�3LW=B)F$#Yޑ�;/C0k5J1_0wY)*Xpv_z�gM.Kp~s_CBoF'1/CD#$~T}I +b-?ă}>mQr129[I�C#`k652v/'1fqw=*DaïWɦ5Yj+Ŕ o<+& ]sM?W8 K&~h Q>_\1Z7,"`h\q;aLtԯbxek\T8;̎5ca1۟1ymvvu#ALKI/p 3ݱPپмZۓZ pY]_=X#67=V1d~F{}yɭFˈ҂ģo~|%o5ӛңTRu{'>Q@` £ěp?'/3A?Fa%$C[jXB'"hs9JgeOL},-ΌwJxy|ܬTxVX[*Y/ɹY$c6<G314O}/홯 KqU~dz%oE$ukUq#M]ly^[7]:m!/}RTp!|p1䧏);#7/,0 ?{BO�%﫛%e˭|4Af$Fh9pOŷpZFݹwnX62 rߗZ77nܸq/?oh"S endstream endobj 22 0 obj << /Length1 7488 /Length 4385 /Filter [/FlateDecode] >> stream xY}P[Wv?=I0H|eLJ@Ǝ 26_,9^G ,B$٤x;Ʊ&6I䑺6idwqnbgiSlLst{={9syO��DѪ (" Ss/q|@=UO�o Oa Sϐ9c�&2},"|< i:l!C y"2 o~!} 1GH43> ŭ?�ȻmHN?`Pm�&j+/U !q#BONj!^Ff/hb1؊=qR@[~J}qio@)^-nEЂI&e.R`lnܾGh%FR&M"Śl1M4?ߥo6-GF%?!%uƚC:Zߤ=YTTM/66͑GrIWI~Y^F(fV]|i1;J++(1\!W{+W^ÐcU@zslAG<cTcMDlחV-?8VTEyOM*;=*f_5mIG][T=U-*Ԃ<ɛMQgwGh^&g RY` oCC鉽Z|dw'vM f54iƾ%f><6Polo(kL77%J-5ԯڅ�SI3Vq%X&r\g̯&5<66~XWOX:Zs[|?j1}g~q?>h?xpy/]},<Y{ANGL٘ `i Vb-j45JMM˳5;iGMK,L66tTT)P z_m(<͝L҇(U@m�DE\Qt"zPDUU Fj{BC^oz}.zXzQMieSeQ3Q ׷^1ECX(,^yuK:)T0d̙H6 p“[T8b?Bg YYj~\]q *:rj7R'?x >$e0sZuz'Z>x_Ě`b%Q{zuo[ψ}Hfp$= n-kM ԍ5$@ *JT7@H302V)3OT$L޷e�+ӕ `�F�)%kp.bQ9T 'ZXY|KEK . ~*БRWASp5l"{\ dL5P@fqT'4)y]"O|aVagY)xSL(S3a,| E)xp^u[as φW‘hp*m=Դ:f&̴cz#~ (a 6ݎ/'۰Ѓaħf`8@dkbݏ`s8N48 ('sa3<NĦ?<EҐw*83EŔsG.e-N/">t=^+? g6sC r0#(njNjiڹcgbrz&k ƨƣ^?~'ׇb [xk~(|07QǸvҽmXpj ] 児@p& ]K P3D�"J{38j÷x0HrQwy"L4$lGmX\,p(?0 G^8 uCƸX| =ߕCl7)4ĩ3<?YL'31:@?bޗbwSs_/G#Zgp:ucw`tq؝t`v #~iG9muDs"h8Jt%r[d8X? NiԬw wGC?{㜞 GgXZυgt%afɀr4ǀ_;fx@z)o8Ͳ*yxF}pf}$!rʰgocUqžL/+: vթnq�G#eONw`AƾiD(Dm|Ssݼ}8xl?ZNSgDƸQëT+E7$L 8Y,ꖊE[\HLOU kgb܆YŦT1Q]Kh0cis8:ewOو^X#jVO~ YLAg2zVn'^h9 |W(jW:H | +26![xD@ ނ-8¦!`-LIr<II2<[>\u. חIG 1\fȊ{Bt8 d3t2UNq< ʱ ^ר.9mrG5R7 Ў|t{}c<W¦"%(кu3H[n=|K|L>o\臍gi~̒tm KY:2.`ko}@_r%ϥKg.ɗn_Eυ3._P+)׽V5/W_u篞9[D9rه g=YݳW gTud3)-KݩSקĆIन$wAe5:1wTPuq(_1w~3Qoi46ݨQ7*`k9uWutb-d"904Ӓ}rC29)W9Yo:(kN0z!!ϸ{4t۝.S}8< bq�bYl1r1N&6.b3gMY>[nsxhpޞnھݻvhmi`1m*9z]vVfF6MV:rGVUKx*<2p6ӊpZS5Naw}KTb"98i|U՜Bh^Qx]>H=6%u3`!#8Juame1Xe!f0u9[)"eME 3 u01mI>!,zqmB'O9&VɵK1/I6lbRUIdu^OBzonD l؍M$%ڝ$q¦M= .\ r)HnL\PM^D.w9U/t}j4?hq$!WWh`ܲa3Wg Frs㧽8#,^`9ty)ZF 0SٟؒnPAuN.)&.=H:ה p^%F z0DAl"rԹOf=t%29KτJmL3'XnH~;Q쓆\@cB5Q#4vaV.ߤ\1TNR([(-nh[' ]#>7tеC1:5ĩ\LOY[. Q�ƁԹ{9JM(KԅUn4CvMcjz]4D9]ۘb\e]j &13RRAs %#uB7W LdX\kd=ӎiJ}.)-xmfO&0^e&$/!9] a׷ 3]GF:u.HЂtt'G\o Dt*q G2L0Zox 0gU"iW1B ӯbbf0J1z;s7q(MDڃN,AIΐrvp 03H!{<K׳?C/B̪/lj/lg7~<+ˮ(~ +w ee\5B=v~ *pQ|fwk٪\^(HחsPG&eI,bTL4|A3·PZs pH#iR,o%MYZ. endstream endobj 23 0 obj << /Type /FontDescriptor /FontName /4982ad+NotoSerif-Bold /FontFile2 22 0 R /FontBBox [-212 -250 1306 1058] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 24 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 25 0 obj [259 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 752 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 652 600 600 600 600 600 600 600 600 600 600 600 600 600 600 526 600 570 600 600 600 352 600 600 352 600 600 600 600 600 522 600 404 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600] endobj 26 0 obj << /Length1 7304 /Length 4401 /Filter [/FlateDecode] >> stream xY P[ו>=I`cˆ+^M�# @`ldz % ɒpL~jҌWw]ǮIn7$K:izi&fmO;M&^=0v&3Ļs9+�@-hᵱ)4#K_/H3LFb@DTE=OLAo΅(?0?3(_b}/=5}H<1R\OɃR MH�NahL~ ƣSޝ M�uc49-�C :l4U-1+ x 0F^DK4k)l7 5BxgT 9Ի!VEhX K]oH[%M.g6ZvKҦZMCmuF#m*fQWA0W &GVHZ EeE֗bX.\^κ} F%}ۜ ̶ZU~q~rfޥ7>ļʋȋǎ:w8C9-=uޯP T`V ZTm)\g߶}''o;:n{!Ö]#oF^ gѳ;645v6&/~?oٺIrx,ظq\=2L8,006S|<5D6m?vcw- ݍYs⭷/ <kSWRRgF:XWպIWy+N�-׊ȤFM$;A ) Ye:c̢}޺ޚ6e,T8iyBGd wgwE^\hiO :]mi_޾)s7j-WĀCE `i?QhoYU}o.iaեr)tFcS7ߌވ75`ؒ!|[dnHdFZvk }PN(55m+vI/eR YۣdjM{o H塾ӋQQ!C~Dtd<OQkf9-8C ةy W` ۻsd -]\\zM0;3i=>$ОZ/I?q�BVh5Bj5ug__' k)A?'x(W~wtW78Ws̋ ]0�\phX dd8Za3\Rq#@Y($&BiTq-6ׁxzvrBPD.$VL(rU< e*agφRg* -VV%b@اkHxB/j~⹰1cRs!َHt&&h}m]=D&&eжI:ȚtP˱r(@ B0sC[:,)tbkIQ0kmLspWK2>e:e�,DXhz'7<1=n0~틄#(<'h5]ŲœiN4&/%j3nɰ"aZg#Ƣ c[`q9PɈ8g ũ&b<=J#jo<3c0c(b\@_?q'powM쟺Oo; %J~~ &j9@Gg i M@R rM1ȭHSvQő}eG"mXDLpZ"S5r K En!5X?-Rՠ,n:pjVOt {LGl'3pF ꊌ'd/19GONr&2uu}Q9VޛVwBO4ƈ?L\UF\ݮ*{=D u;\ovڻzQrҶ^/WQ9Ĩ|8hh*:b /G3GxhN ETMl"VT(Opy"rXYZDctp %dɠ |I`@BW$>P͈4|Y r] ż.*D)237Q*ڗ 7W_.S<9q[]܎Xi6?Eo">DG7ۜ|/>{0nJ{'ƥ#_qncc Q6Q+"w$-kRN󷃟/]fg[8}꿀)>#iga7O 6mVmJoƉ?#R|,&xhM9޳mq.,Qp'f?,&{=a<3)d+ ?gA\?O"GB YH"oaI$+p!BmO9"Y_t/Err.fbDu#C)KBP7AlPV,2f&&a粓XHbpo2y?""#^ ;/mAb*’@D- [ֹM¾d2#z|uRuND΁kDkFUG*}7~۳۫9^"y/$d;Gύ;|Nѳg5"| !7Ϥ3%z~?|Zsy:uZdY2ݻ4HgDH֦J34RYH]=?Y*Bmx- ^k-pkl 'omQv6?,ܗW7[CՙUZItNjtI`s  W yn8 oM`g-Y \= %!W.V( <'ﱹ9hܣԻ<oG `*X1l_x<+GP2C3'AT,jaD41dyJ_Ɇq+,qzt;l-w5ܱ}[c]mjrR0ߐ&;+SjDbCrRS4RWW5%?UO3[G>Fִ=mEh34WWQD%@ x>gT񺦜 kP0uT!>PIώ|YRU]YXƚUΓ-WykذhvJa7Ln%W&C4LtR*sRG7):JB+g.+UݡT2֞qz I 䧸#o܍UDg6| D&N:!5;*QIFa`N^ &uNyA?"*vMe/jt}j2X( '-xl5^EK-En2ܲ'a4{\1w$_|zB2(MR r]VuBTі[)Kҏ8@y~)! qHw8XJL~׼+6#|m 0D!;R#EB}%,G]nJa1R㰳#rύ,FAb4yk Vh�,w$=qg Iy+yd/KJf54ĭS!OK8١n`tcL`z*zzEEԉK%ìۀ(Kf6TPlW|^G2e4yM髺Jf=,�]Mw {1*H䕂T{ܘ{xDTgqKZ,tyY`TU:"vܽLzǕdJhy,m;|`#9&3<c64)u̵qy8�zHP{un|9>0o#]<o�!vy8*0LL`L(蹾m,opcxf~#0 12& Ic6 TD^'r֡G(DjAH-D(YܮdK oexk1<3#U' jW{ôwp ufR..ïz+[0ۧ^_s? 0<0;exO\;_0A<ӿW7, 9K -K@$㣭:^*]U ?sE[{N+Cq-`WCC6<7fi^M(J݄ =XPAxZ]b}+\<O i>ӂP(u"ݏuO ]= RDġ!4 ԡԨ?ulb endstream endobj 27 0 obj << /Type /FontDescriptor /FontName /d67fed+NotoSerif /FontFile2 26 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 28 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 29 0 obj [500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 559 559 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 492 500 535 500 500 500 500 500 500 500 500 645 577 500 500 500 500 352 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 30 0000000000 65535 f 0000000015 00000 n 0000000263 00000 n 0000000465 00000 n 0000000529 00000 n 0000000580 00000 n 0000000852 00000 n 0000001419 00000 n 0000001769 00000 n 0000001938 00000 n 0000001980 00000 n 0000002029 00000 n 0000002081 00000 n 0000002246 00000 n 0000002678 00000 n 0000003018 00000 n 0000003092 00000 n 0000003237 00000 n 0000003297 00000 n 0000003567 00000 n 0000003837 00000 n 0000023147 00000 n 0000026315 00000 n 0000030790 00000 n 0000031009 00000 n 0000032371 00000 n 0000033285 00000 n 0000037776 00000 n 0000037990 00000 n 0000039352 00000 n trailer << /Size 30 /Root 2 0 R /Info 1 0 R >> startxref 40266 %%EOF ���������������ruby-asciidoctor-pdf-1.6.2/spec/reference/running-content-image-scale-down-min.pdf������������������0000664�0000000�0000000�00000016753�14163570564�0030206�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /ModDate (D:20190630235255-06'00') /CreationDate (D:20190630235255-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 12 0 R /PageLabels 14 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 842.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 819 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 278.7505 793.926 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 156.587 826.398 Td /F1.0 9 Tf <74657874> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 285.64 817.89 m 309.64 817.89 l 309.64 841.89 l 285.64 841.89 l h W n 0.0 0.0 0.0 scn 0.12000 0.00000 0.00000 0.12000 251.36320 740.86320 cm 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 cm q 1.0 0.0 0.0 scn 285.64 641.89 200.0 200.0 re f Q Q 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 422.34 826.398 Td /F1.0 9 Tf <74657874> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /7e34a1+NotoSerif /Subtype /TrueType /FontDescriptor 16 0 R /FirstChar 32 /LastChar 255 /Widths 18 0 R /ToUnicode 17 0 R >> endobj 12 0 obj << /Type /Outlines /Count 1 /First 13 0 R /Last 13 0 R >> endobj 13 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 12 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 14 0 obj << /Nums [0 << /P (1) >>] >> endobj 15 0 obj << /Length1 3100 /Length 1842 /Filter [/FlateDecode] >> stream xU[l!%Kc˞;MQRĉEYQ'N}iFK -ђT( ]ˀb݀և.6 0i֥+P%['.OpH9G@�=`r${e�Ҕ+.�/*1-�'8Ɲ/ie �q[>/?ا11~$/1NaÖ́wYϔebI8Љ_He_b#`W;|D�>E-uvP[@�E9؃q=K?]?t Ρө/<_|s+\O%F=ϿGj  b^j3uI^tdh'~Ez☺TKnďw(?0x̫4(%8~G1Ʊg#2OgGZvFwއuxtx #S%! sl1Mhpt?׭0=Pkp `'cOw'5K-ƀt:%{P/JXWCXfAoI\ihS돆zۜް!�qc [l�C }zK0+.nē۹擣;ye4e;k5U]$SwlG^N{3cc0�yg;u vGLG/w gI: <; SUW& sBQL4k^tXO3Xm[$=>ra;EQI(tu#גkykNە-_F9Bu=t\h{Pxȵ'ۘ͸+m.oH:muS`{:]:$9K]oֿ~x~K( ps.Ǿ ۰}׍|L'wUc"5p s<Gqpخb d~Zk!8#SS#p\%z7q?!Jj[^dnCWX.֨Yu Y8zxh@޷p\Y۠$,IYj @TkL ȋ�/y빜p錅`>c-o1I ~愅oy·)W^Y1vtH)/\^=(?(ď,iOKI}J 0 aT(@6FO8wFWAFc C|DY3)!Sxς0h ?#yD 3OKjQTi9""+b%\A!~2&"^Ti9CV G8_C`G3$oUJc0&u‹Y$gye~RLDlf$\ gS/&)Rɼ&-f4T6%JUJW|Aְb,)-M)k"Mޔ) 9Lo!&pFJBδX(p9BYOiƅ+&<Lel7ayaaA(Y2+Z5[P`^0ܯw*f/d$U嬤Z^bVO7^QqNdcZ>f͚4|ț b>ǭEF5i@P\*^)*zFW7g 27X3xe7vlon:cWw;λ9󴵮QeE endstream endobj 16 0 obj << /Type /FontDescriptor /FontName /7e34a1+NotoSerif /FontFile2 15 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 17 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 18 0 obj [1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 492 1000 535 1000 1000 1000 1000 1000 1000 1000 1000 645 577 1000 1000 1000 1000 352 1000 1000 1000 578 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj xref 0 19 0000000000 65535 f 0000000015 00000 n 0000000262 00000 n 0000000463 00000 n 0000000520 00000 n 0000000571 00000 n 0000000843 00000 n 0000001713 00000 n 0000002010 00000 n 0000002052 00000 n 0000002100 00000 n 0000002152 00000 n 0000002317 00000 n 0000002391 00000 n 0000002516 00000 n 0000002561 00000 n 0000004493 00000 n 0000004707 00000 n 0000006069 00000 n trailer << /Size 19 /Root 2 0 R /Info 1 0 R >> startxref 7201 %%EOF ���������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/running-content-image-scale-down.pdf����������������������0000664�0000000�0000000�00000072464�14163570564�0027426�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /ModDate (D:20190620011920-06'00') /CreationDate (D:20190620011920-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 14 0 R /PageLabels 16 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 842.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 619 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 278.7505 793.926 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 231.407 820.398 Td /F1.0 9 Tf <74657874> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 30.6 0.0 0.0 36.0 282.34 805.89 cm /I1 Do Q 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 347.52 820.398 Td /F1.0 9 Tf <74657874> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R >> /XObject << /I1 12 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /7e34a1+NotoSerif /Subtype /TrueType /FontDescriptor 18 0 R /FirstChar 32 /LastChar 255 /Widths 20 0 R /ToUnicode 19 0 R >> endobj 12 0 obj << /Type /XObject /Subtype /Image /Height 240 /Width 204 /BitsPerComponent 8 /ColorSpace /DeviceRGB /SMask 13 0 R /Length 19044 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 3 /BitsPerComponent 8 /Columns 204 >>] >> stream x e7U]}LLfr$rp�ASdA%x*ʺDPs<!#r $${&sOU9jjzyh:5u~>2)2)2)2)2)2)2)2)2)2)2)2)2)2)2)2)2zc}/]R|RVJӦeiBd$Z&A6NX[ i"˕ƥL/HQ\mýD$P ð, U7)Urx mjd R ' Ӵ@/Gd_ᕪz˚p~>'06Fiw4 <SX5~nc>\&" J+3[�k䩂)Yl6Xmۄ3X?TF9|@ `P( 3Xf3T*�<G=Qp6%aer$dp8F#0H0ӧ/g)elLJlT™8E"PZ+ Ɛ@N>8 3@*'>3g`0�`2s>p�CE]zyO4@aԀ\DeUf@VzS Ip@ ,@BU\&Ȁ/*{8\Ee\04FXY-2%TFxl6$ d2�8Vyc!6 rW Ni8 (KBeCQN@탬 �R�pLa2iߏ7ΥAiՕ`z�C@cj&ڀLU+#lo) XEHQ~�d96U?j/<[ ,a1=[U8ֲXxC ӕր>48AV[TKRqSU_2*蠎}6`ĵXjjJJ-5d? 1~Iʱ F"h Rʼt_*v9dvIFyM4 LGөDJEQZ-kdw򇩀Ȁl!J)=Bq@Jcy pVZKfY͂lv)^Ё @)-T3-k{@uꢹ\Q$gdǯFY#1 2 :#A\Qz#?1`/b sG\W.\1 RCWp-OqJ{{}&T _dBte@#pH'+^L�M&ScJԂYL6&ys<�k3C7sb|YN{? I+'on7p{Vr0+kjO׾ǁr4CC]{olڻwW34-[z�f xZ;vʫc/Y.&5'˗~\PX<^0A\.F:&/)Sp|HF.&E9s ݭ[lҗ+::첏RKxs4>ASN |߹䒏oOE$d}}pΜ9~P_bSN]ri]2FҠmԩM ,x뭷+#5.K,wSO=e@ B7) fV}}Cºx?ᏯlΜXg�vE{ 5ahI'.pk߸b6;;g}~uJ2z߅r(w|ZW‹iYrRP(mxo=Iv.N^:644N>c}uם{}[1:;;+_`(o5k…Ο�v{w7{饍ӧb_%7VRҲyqW H$ >i֝˯z[Yz݂Cꯏx 5 ChiӦz9nڴrѢE/*jE[.Lc ^z &Pg`0}|r}}Jvٲ� AkX`X]CC}"%|k}-ӥV0\Z2%A=,>d7; l9iӦ6446�hV>j֬Yw7{N+�롇e ei ^i^?�"/FAH hmme3Huww$a;*VX -[ *d˖v}sxoN%L2]{mo<9xэF25bZ+( [T�¼O?yw �|zC먐V۾}3H޽[cNl#f>k.H4&?@<�N0~{{耍wqrB* t4d0(; :qM0o~3\l,ZW>Rώ?kFf̘>l}ݏAly W6d ,}�ه>AشeoWV n*.]:2}rzĪ3EXaC]!ƀ8ygl^{-�\vITJq{Ц}IqGhf[)HV"ٝ9iGZ~#~xwGdFxDY/V^yURt$ol\u7Œ 8;֞ntMmxn~Y'{c>׸4#L𚥶A_H$z�gVog!H1dqC,[kj wڥ3˖-?'qw#ZY#%ʕ7ky]O30�'Nu\8Xcdi&Ki vߒ8x{J<ʜ߯v�O>dؔio?ȥ~bDP MO'�2;54`nJsf>WW<_ҠiMl;b̊ܬ6q!:XGvεQS5҅yk|UsYh-&5]hZa }RW�^ =BTPk_kZg?dvm淮߶}ln2D"GN\`$/�"Lj.@&aAAcǠG]*O.Z&9ז.49e$@VҶb<"rzkV.p@MRJ9 b9leHuљS{.մ�BA}grń$_�8 < r䔕l.μk?!:7< 2.<>xNl A>=*XrDOsHݞHw2T󘃊>0kY]R"HR̛*_1L (%hJI)e F2Ɇǻ|kj\LAzYlXmey4�]󁢐]�0$pb`Y�/2f20zs[ƘPP{?^F$ 2o"fh,�,JؘY S,Rәhj񨈘 .dkڰ P_c_r� `ei]XPjfȰiaXutM;obSs L[ c "��pR:a&0KaZw7"{*)Q1N2&9t _Lm,0a~rX בvƸN.2ȼkô;S{ JS@i8sN!)ͶVz2ִELASNɔzcgapP( fxrLwfB}ڎ{XPlA6JG24jE{. ^`Y>ٽnSdCTF#0i &mѝw ?LPD #@ Mo8AE-C`Jk[C̙d]|IHAfs/ȽEN8aaa긃>㉮?Ȃ`4mhh:iʔ)Di!K?g(rjd`IrJġk?\LtFec\ꃁ ӗeYַ^xftJCPf02#IQZ91kuK3gd`+E"a1;By%ZhsCh[(b.xCǞ^~S[|1~|joOٲ;Ւ5;d8 i(a=u\*/!P{ !{"Rt:F#8_ kdyL0{lTF]U9Ri GD @xXD ,PÀ1+di4 J9L:_jx9sv*.Іq#3<G?w6�2�XOOwggg<4V@oܷ{ ͜P Ci2uԍl*b2zi0|*ω1q1[練W:@}C,+عq xLZ,VY( Ң@~9N L8Eu 7Ms Im%:]Viɠ 8LrHj㵒o63c@Gf( 0-qmXN[<C9ˮH8cNA!�-[{S.p 07{Z*] `^q:sӷ]-~hT1M OvEq�Md ÷`\. ɌY-C7^Z]66$&2adxq"AZDR9~21m^u̝,L[b{|%tgg;5{|'>e?Af: Otdf�M6YQ45u9@ EJtѸ< {Mh~h{Ù~_@&gL vttn4_aW� �8V~͘!U=Sd_`.0ZZ` e'ӏbϑ@e2  ɼAN9Gsm d5XjO<cQ$01u c't;PZL2T𞴢ؑYgkj?+?Zc2Vdқe޼97<W7�dd pi+WRD[.` Ne{ʴKzH~anZ0 /ühO}͚cz\8"ـS͞={�J*Y:?iBgNor`; QdA?|Q^xY L>)K뮹 hf 2`m ;i I]>~C؀_V>zYd�~?+x7cMzE pC]-k^‹\ 0:w(/w֫Dj d!]}[n. {!b̿'jxfl9eѢEw_^(Y :Pj d&kINm>?{zp ]ḵ¼ّP  DˬY3e4L|\ 39".Y駟䎇\n Bd Zt3 oɟg~ ?Viv7Dj?\TUgkh,O󽏼 cg~~S~,ǹ|v#*g&bNo}W\egh M ]3$e<X 6cyi(o^^fdlA& pr,ߛdR͞g2/VƟ5aҭCU <gXێ;TLfj`⩧8}J歜O9=C(ͯNl?rg c0|+0RF3=8zAlْW_w8c"X]<Yh+ͲrknnyQeQm3Wu9rͿ^n]Nfd6@|J1E)q ,X=tņ o[UEjp˗شdSTΪD̡G rbqa3%SArǖpU5>O<ܛ빬Pfo\T 4mi`_ב2 >Xʄ0OKG}tI OeVx!lYU^OJ5o'ƖԩS.]<9T3(XaӢEoVH)x?y|yk?olDd̃gd`Fz<a;EM}u&p{hSW_1xLń9*QV1|pόfʅ g2/E@Pr!OK _GX9Կ?oW?IbellLٳgg2N{7d*mR9+/_Ÿ-uR-4ŏÿ0diHZ Pa^1CdyG|)d "̆[nit?;)D@BrS=%7ycV,~eyh-e!;uX !(DI9PL"co]57R0 ,)!]֫TRFQج6 c{XdEp8L#G3A mU,Ƙ`hѿ{E%-oiyn#_Sl`6lݺ p4 7dԊzT~IU' nDwo+X]jٲ7|huGr $q5}[ OxkVy(AkkQGk׮GQ0 3# Ktf+Fz_W͏>c ]x$;w섩A6{yn=enQ_ԷKrmy_6mj ` ENR(zA揍i4C <);/3<;G0 R Уwp,> dɒ%Hvuuw̘1=U40FG7Ut%〰H$s@ϝ;`5vEI^$(vn 3:ݻb~ qJg'zGww7m+d̬J P9lbu)S^}DO?}*XE aXK?~(yNsZ {䑿 7@RKK \2Pu,Z*ߠJ峢;i5rէ~a##ayܮ[ONz O3gjdym۶͉hg'C_H%LUd윻śx�6owΜX@$"}⏭+k�Fp`x{}y_ße#�^@pznukL&|1 $z^ZbxD'~J xT@9sPVcc̙`cXVXxzh {C*VjVL OQ`˯7OoS/XSsΧ1o}ONA/+FclgbX2X,L)ͣ1T9“>v̯BaWkGϗ^zy3x搀-{zzyg[4;Ğ<LN5 %sTG$缥e ŗ_AK.^v-o V>>{cmڴ ne9#p`qB2{Lp@]£omnݺ a#*H_4/]qy6-s �p�2SФ`[l%_!,TȨdcc`|itz=m`/}J/1AIғN:@O$p<``ЩB{w#n6 =ܰF/U2x!]iFH׻(F\kZV}WN6#!={w O`kkW> އ=XeGW]G6o{Ն!SNٰIQss eV]]fw: kٯژ] 7ily[qꩧ`^qO؜1sd={;DvX`RUL KV07Xj۶y}cTZ:@y`gMgg'W:[xJzRELitj_ь{w򒸠I/%<hud \͒9 wvv$76{/Rwpx޷`RORbŊB6K$z.µFsVCKhfe/(> aRft2VeT DoXbmi U akl򂘌OU8zU2nJ0a-5k455^, /d3.&^]ƛP +tA` 8uJ7.2)bɈdA)ooii 68҄>vȧzdQV?577o^ϭe}F$EJSdkI:$&}3pyzꊟ]ʬY3UnTnW05L֧Wƅʚ5JfY66D/npeX9YYred|=Fa;T,3Y'/gϝ;;ACYl1`Ced:̧3Ȭbu0*4es)#q-Ovҹc.]66 lj-گ|'3 (x"Ƙl^^c7}ݿ'4~p6l#x@_a0iҳ1(ZOc0 軽V`nȰ khh eYcR߂sLo>s!/ éKvH$vj47,WÆ!K`2dQ2JzT&%Jx{ͩ#2ko/˔)Vro˲H P&7n3fJ^C6ޥmq)2&$ ( H&D2JΚq ϭ c@W *%?W^CN �t:O^1A1(ȦNEL&3kI)a]]`s�{86=Ѥ5؎x<v/ iO'e Ǝ= wR#Xq,^eHG1coe]]h 0xD8M(tj)M<W*LOO0:L38e{t~_vZݛߪmH8d!x548EȀɛF@]/Pz4N^,kRL;fDGxy{[32κB#+:ɮ]O�tS TL.Ha O9@li immyf^4»j ;>Acgr? û}N(^ṚxRX9(,=7�x<6w={_}աC%J7&+Gj|Ҙ(MS"`H#hECY>mg(wdΝrr9~;'f۔D6lx3/O6Ͷ-00♼t߳<Y{onuuu|=+S1~ 㻗 Lx #( Yq$׬C;PI*p-9<A.!~? pC?i0G̅[�,Ӕ/Xt挰) \nx)ݐX#ujye /$}nḿ &ڹ ?={vOx$ӲJ<ԃHA9G4?Nk@[mY'b*`2Ƥ\V:aupDDB2hPH uU b̒9Ke3"|YVobd}y睋 8I|& gzlL"hj8MJx-3=LoySv#LLB&uǎjj!&?IiKfPSKhK/=͛w{~RŦ_[YC&M6# FFseј5sΪp`LlD`%:I=M{6S<+-e,kI|I`/æ>uNgGOҏ=$~O oo{&40$Fu%aI#gcM$<+-@-Hߣ{"i帢ʁcnt F8W-i/c_ǵox0gƟl2=w]Y1˖`GNsYFPYv[ŶeK�`]Dyw-Ѹ.C=_xnȞ.*q2d2v4uR0 U?|e4Um4*dVNZ`f֬&t%gE6m/:Vg%*,czީ:\z@C5oW?ޮXnJ*@֘RZ>$%E+CG,?:TK-c7Oo)J$)9[»-K-Ce5r#*\a`~{uttuu%ͷ9>l[^ǘ9$&EKAз#MZ8*h`H i U&}같Fi/#g5ۛnOCmdGؘYT@碔6E�cKSYNf 4ː2%H(?V N3B,kz\�LTaAKbL_W g:[J5˳B @axޜ%bQK|']֬9[o==sN ]5Zļ")|s164ʥݣ Ef#Gڹivgg [¶Ѓh8ӆ SpZϐAñ49xνh^pW}m 8O~| C1<&~&{02r譜Z2WQVug᫗<y4J= h*aMW&(2SLe* 2eȔ &FSb2In/U< / X\pWFc]28m&Gi8[ָ^4Zt.Ϊ#1!I Eb\_3?+@PLpX*VˆpH >  ,`"lr_2z x ,ue]}8!A<!ArEISP]]0CML A c;+'J97ƚR!� A ,$MzB( !-#`NV?>4/Si'�X]pҠw{Yr+VuUX<1(~YdGDJnj`o|p]~sycM")"%Ak1J)zwJyaQ?&+v�&|'�+$XE#1ÉbQVNn�~C0,.<E;mocY[@9Nd˸b+ g Ż]x\^ճBf ։򓧆n<~5uz0X�~ǯ)Wȵ�/%@X� T\ *)wY7K`r9nKhj4'un@ zꉲz!,H+�I}j}mo2<WeJٶ&0f`yMdFm߫kw7Qw\W/ C[4q.Tsz7&`T[w*p:Yfx~ S '-GG"?  XCJ;bz_?~5b+"wS2ciHdL�,CΛ}SnnPQZkCf ӎ9{SNrs@6(p)k SNVהNng<刟 3F8>XF።{rmmƭ~ lo8"jisCҪycLwv}qeq 9L##ȯBRIhm>V,fCHq6 4ZTI!}9"̒^]3DOҚ3CΘ1U{?ڵoֈ>δrЯVKDC0T�B pP�\~B@hؠм6a-#QcK/d&tBsClZ /e4"Q0ۆGmv 'mݺuR fȳs*+uѱfn8"`;10J`�3#z.f|9$I@)x}+XYShHN= p9f,์.Ȱ9#໕LDJu`%@ GHQ7"@,n@рFu `WtRʵ^uyohjk>#f<te 8)6y"+8:3sC@]8"짭;xg+{P\6R・;ZÎY@X;x7 `N?Qt9~ᐗ3r!3~yh8d\W]HdRaD:)Et8 DŧipAmٲYLmeފ,l ?3ߐCa�S8 cGePzm/"M|5 rT[V / `iCf^z; 2Ψ#ӧϞQf=ςe̩(/7Y5Mb lΘX[dZ~ E5gSƬ'y#e'096͞tuTEg�*"ܯr{oϱ Ƀ3GlSnf2>#ơ a#/BN2k+B6uMFvE,D̕/<L[ U9Fv!˯WPb-w.y-y',HKH7D5Ga4+ LTB.'- 7dƽ ЮʂqRah`#g,>w84vUq{;L6XX;sMAt],PBS{k%QnEsrwH#n#J!~b~k2)AnD�Pؘ5#uS%POms-]p3up#4K i6sJ _?z'>y[K;uM.j_wS]c �sUy&ek"UBiM3?n|"BhER9AaJ7U$\G2C i(5kVb#-J.b/쓛6m?æRG9)&ّTRPu^<GjǙCPoխC|J3d,f46.WE(&UjN`FY0"pe׿ P1Yss>voca'ܔL  _J@`bzXDALJ7R:xTFCW[QQЙF�7[58@ ӟްv1<a~۷&^U([\[[ʬНvPF+vW#a8s(lFi�ShW2Ρ\WWwg>Sk_a{Mgq[o&UǤ?/s@/^]GȁˆH[jmLF9AiZRuҲ?9{Qܳ~y2Y<g>5PL4N^\S J(V;9g,BE4Kל p kL.`i#ymGJPar]w}% wnsRtK+;5hbWŠ\×mY8D^08HJz5C ,8I7RT::hQS{864:|땦ԽjZЄgiys(,b* �O QrYEk`U Bnڛ1.:qѰc($##<3t&K./'>5X (Twjd $LYT@N6P*?GY';dLF2v^Y"&lTX A!cEa>,8qf@CBvsú*im۶?4h{4iN X*WÍ ,P\E.q te[Y  &TtZSv:8Si]VdsvbŁNT"(̵�3RXP,ֺv1EGqcmb8]8ed-*ZR 'MchE؂iC TNdNBY�%%?Ł ;aDNsѻ)x# /#aqPlXXOOW利vF#_b\n6 Ɉ+^vʅơآRpF&"J^);w+T0`LZ% 9ǹa$ցhOWjEr+8Y*l Pr _\j.2W8k+ 8U R,qq xB,.XdrB oEvQe$n�YI�J pK! ل- ^Ru=Ԁjq!Blk<Pٖ-[¿2u+̴<R/Š:]c[h# q%69帓68+t=lN`crJx.2ٟSn;͍JƔϜRNSjd8ڕIgggYOcƗ.xpQ8|R缤�Z}%sz+B͈ڐ-҆hFbꆅ+a=QRs@/)ape4yh*$[s Diu ~,ӟ/Zڃ[I'Ï馛'< zѮ^( /ܡJEY0gu4\P3TWBu!n Kډb;P\-Gq8 ]mI #(ҰCey�9UHu"g3HSq"E-!f7]?kŊ'x 'jyH$xos{5퇐)1{bL߶[tǕt{WQ GYXH92ʬD"cF.yٍ#lO.֝$<@ĕbѳ$܀bE@WB{h)iw:6 /lUW]p1,_XtK,M/tXF|drxkX׸:Qz qhb(ƙmJ*vA8HA>̢#,CQ{4rYҟa l2lTڗn,P qR 2V43ߘ]it{8HrHƹ?#҉WƒOSڜꔅs;HO`3fDX,7DQ+ c :CNA;1R{O*V-fJIFcD]  <-\&% 9z^ZA À, fYzFsq<Ùag9Cl(8{|8iM qoAZqu(r-isPso>ڳ)R(uHH:@!O#ؑZpgqU&lq$~Ae%r#b*AK05$Hl Ԥ--K-rb) d<lBe�Oq_n@i;CrkmLrJJvGsĀ]S"j*kJO[GI]o2Kr4c:RoL0JdAL}4U$cU0|OaTLdS fB"Db)ڕ(�Lp�|ەc?jȜ5ݭХ@i( W|GǤו.R[T!1 1МP;kg9H10T(9E#xBpɌ3_hwn*~g"T(NEm-K:s4R Eπ47#襃Nk*/ !_C4Wpbԍ>JrJ,f8 NNKmyپ�mOJŀ"xٔ KKq>oՍP}gSbV36̵ plP{,5%73B ğ&:7*ҤBqK5y!!nE�^-ݴ?΂Ӝ|n9U" vA\Ûghppo,搽pbdPQjFW < 4iTߗQ JxKSA)lRA)2:P-j 8[V<\% JPlSo7cМ2N^EG뢺j@) 9NQeEP%`7 BEUc XHĴ&amͰӌuܰ>pRK,C$x))vgB0A]&myխeoU\?zhxmiH t:i<�ӛFVOu~jye;S m25R^#Xj¢b|rxjsI[|vR1;=fN �^fVK,`JLT“Sn�6X29pHdm60q XgM NU*aQЛF%$w"U60IKhzl ꈰzx,[Fzƽf.^m%1D_ Igú7SV8&xuxM�&<6Y2`˜vcZ9"3oX<M>~n^Ho9L[WiT%%_] (y숮yN :XdrqSI'L gi*F䑥W\vQk �aX-Hѣ:SbsjWw!Ud9$`2%oO~򯫴UѐXPU]X0ZS39tTsS%{+8+AE EQՕ|ל-F3h�eJdI]ktw�қ΀ T)&Bᶐ9j794X)iԉ=IՓ у=+);⎧�vyUn!䔨 S󘺐 )x*b.!͝s'؎siO!{HZ"eNu1B k?&2*D+Gҹ:Ob3p !tjF/WpCJ7fk{x9"Ma]IW!3)qMZ:JсwG/f5H@8t4j#zê8Ci'c4n E* ԼX &\ĕF4l kmmNk UPSL^q~ps5'9V9rnHd7+%Ð`e2'1Y_ hpm>x<p2FH�eez9Cɩ9~mE 2>S/ߙrs̊ p hWE] >.c kRAFFI9)HceFtW5 Hpn8d0 H3BP@)t␬2M =okL`_TCe9A "i`ԃDaq&՝.M1p9L$Ӫ-ڼEɇ#yઃ4#bxU|$<}dUN-d\y~$CLEV'[a><%tgF҈dQYu C48j8 Ҙ{ b̛[:}77STvt _p2cQ2N;*M><F4OW)6piPl�n5zu%su uT%W/X\+c e 8;+9³K!"xUe]a,=ڠ #A0{9,Hi eBp7Kvyr٩AM Vm'nHQ"#@hy3r Y &C*|\kL9q<kM5d܀DH$En;өZ&XITjBR—K{x |rJXեf<9g-<E'l׍3TQ ΂ |e(P=o5z|u |+M۰m(i9+&eR&eR&eR&eR&eR&eR&eR&eR&eR&eR&%hx endstream endobj 13 0 obj << /Type /XObject /Subtype /Image /Height 240 /Width 204 /BitsPerComponent 8 /ColorSpace /DeviceGray /Decode [0 1] /Length 2902 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 1 /BitsPerComponent 8 /Columns 204 >>] >> stream x{P<rD*!yd4`Fkb)ZGmR(֦&4Q`'iLڤƷBѩ޽wϞs~]o_yYō7nܸqƍ7l:8jd~];Z[O]bz ș7ᗛ'8zC 'fS~oʛ:]R/1KWO|]>bb6Lggh^EL�<¯ڇy]ZT'ڡ|EOdBfk")"/Ͷ xq/n#.ᮎEB\-�ͬcmF]橛$`G񨑱n,�n2*�dP%i/`�/ih]?P#5cH̑LiӦdHEͲZ,&#u3}ǀp(g9"3!*�߯Hwl V2Ѵc XFC&&h&&h?LL}H1j2c y2a bGfOc3P2یGm,@1W�b`Y յdQ("Xf|@ɸŸ%;Q%s:'iDsgƀFc!oF͛{pbnRPަC_-iί u a~$Aqj81#:8Wjی\5g4L'pbQKw;#}3pbک+816d,ipbXw6\�&8Dlj8Gˤ3NB[S3@6[l N d7&ܥb({z281Ţ\E'&|yi['0n>-m j.UYSXY?ȯord|1%HLh}5˟4Ĉ&mVp&ٛ<3e_pWv9C/=C);C�/J�Zd%cݎ_`쉳Vyv م xA܈\2u9!(v5�\'&^sX֞~ۉvY_&3}O+ 6[dg͙bU%WbO{o` WpHny1fI %ۙ ϝ#w^Y103xy0N=DR<Z�iO*�ۋRfJ(7y@L| ކz+5ekM]sJ<dJQ #_)1"Cc@)\ 95cM]d+mȄ>Iќ*ngQd-'W[@K6V&2^LQD(�\3xhYwD47\$�Bi]D+谹4E>/OPh KfH6*%%!K@y3; .&8[H)�@YA쁱?]c&VJg3U@VoL�JLrj$�1{,bJ/-&)z(�ŬGY7,{;H,A=SLd"�̕!R gc% >1eģp0 gFs05 [&�t1mPg:WJFOU2m]zCjg2|qӈa'jA4J[=Xؼ=+&ii1fΎƌQWnRNev g!p g>\b6![M;�gy!&|i:3dF*cȚbƿ? o3Sig|Z^)eb}Gi.X榇'9=΢0jD'9Eݯ1EH�0!;Y tC? Og|(:  kGjI,^P�<ܨcAj�3LW=B)F$#Yޑ�;/C0k5J1_0wY)*Xpv_z�gM.Kp~s_CBoF'1/CD#$~T}I +b-?ă}>mQr129[I�C#`k652v/'1fqw=*DaïWɦ5Yj+Ŕ o<+& ]sM?W8 K&~h Q>_\1Z7,"`h\q;aLtԯbxek\T8;̎5ca1۟1ymvvu#ALKI/p 3ݱPپмZۓZ pY]_=X#67=V1d~F{}yɭFˈ҂ģo~|%o5ӛңTRu{'>Q@` £ěp?'/3A?Fa%$C[jXB'"hs9JgeOL},-ΌwJxy|ܬTxVX[*Y/ɹY$c6<G314O}/홯 KqU~dz%oE$ukUq#M]ly^[7]:m!/}RTp!|p1䧏);#7/,0 ?{BO�%﫛%e˭|4Af$Fh9pOŷpZFݹwnX62 rߗZ77nܸq/?oh"S endstream endobj 14 0 obj << /Type /Outlines /Count 1 /First 15 0 R /Last 15 0 R >> endobj 15 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 14 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 16 0 obj << /Nums [0 << /P (1) >>] >> endobj 17 0 obj << /Length1 3100 /Length 1842 /Filter [/FlateDecode] >> stream xU[l!%Kc˞;MQRĉEYQ'N}iFK -ђT( ]ˀb݀և.6 0i֥+P%['.OpH9G@�=`r${e�Ҕ+.�/*1-�'8Ɲ/ie �q[>/?ا11~$/1NaÖ́wYϔebI8Љ_He_b#`W;|D�>E-uvP[@�E9؃q=K?]?t Ρө/<_|s+\O%F=ϿGj  b^j3uI^tdh'~Ez☺TKnďw(?0x̫4(%8~G1Ʊg#2OgGZvFwއuxtx #S%! sl1Mhpt?׭0=Pkp `'cOw'5K-ƀt:%{P/JXWCXfAoI\ihS돆zۜް!�qc [l�C }zK0+.nē۹擣;ye4e;k5U]$SwlG^N{3cc0�yg;u vGLG/w gI: <; SUW& sBQL4k^tXO3Xm[$=>ra;EQI(tu#גkykNە-_F9Bu=t\h{Pxȵ'ۘ͸+m.oH:muS`{:]:$9K]oֿ~x~K( ps.Ǿ ۰}׍|L'wUc"5p s<Gqpخb d~Zk!8#SS#p\%z7q?!Jj[^dnCWX.֨Yu Y8zxh@޷p\Y۠$,IYj @TkL ȋ�/y빜p錅`>c-o1I ~愅oy·)W^Y1vtH)/\^=(?(ď,iOKI}J 0 aT(@6FO8wFWAFc C|DY3)!Sxς0h ?#yD 3OKjQTi9""+b%\A!~2&"^Ti9CV G8_C`G3$oUJc0&u‹Y$gye~RLDlf$\ gS/&)Rɼ&-f4T6%JUJW|Aְb,)-M)k"Mޔ) 9Lo!&pFJBδX(p9BYOiƅ+&<Lel7ayaaA(Y2+Z5[P`^0ܯw*f/d$U嬤Z^bVO7^QqNdcZ>f͚4|ț b>ǭEF5i@P\*^)*zFW7g 27X3xe7vlon:cWw;λ9󴵮QeE endstream endobj 18 0 obj << /Type /FontDescriptor /FontName /7e34a1+NotoSerif /FontFile2 17 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 19 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 20 0 obj [1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 492 1000 535 1000 1000 1000 1000 1000 1000 1000 1000 645 577 1000 1000 1000 1000 352 1000 1000 1000 578 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj xref 0 21 0000000000 65535 f 0000000015 00000 n 0000000262 00000 n 0000000463 00000 n 0000000520 00000 n 0000000571 00000 n 0000000843 00000 n 0000001513 00000 n 0000001836 00000 n 0000001878 00000 n 0000001926 00000 n 0000001978 00000 n 0000002143 00000 n 0000021453 00000 n 0000024621 00000 n 0000024695 00000 n 0000024820 00000 n 0000024865 00000 n 0000026797 00000 n 0000027011 00000 n 0000028373 00000 n trailer << /Size 21 /Root 2 0 R /Info 1 0 R >> startxref 29505 %%EOF ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/running-content-image-width.pdf���������������������������0000664�0000000�0000000�00000015717�14163570564�0026507�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /ModDate (D:20190630184513-06'00') /CreationDate (D:20190630184513-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 12 0 R /PageLabels 14 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 842.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 460 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 278.7505 793.926 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d q 288.64 814.89 m 306.64 814.89 l 306.64 832.89 l 288.64 832.89 l h W n 0.0 0.0 0.0 scn 0.09000 0.00000 0.00000 0.09000 262.66240 757.92990 cm 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 cm q 1.0 0.0 0.0 scn 288.64 632.89 200.0 200.0 re f Q Q Q Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /0fddd6+NotoSerif /Subtype /TrueType /FontDescriptor 16 0 R /FirstChar 32 /LastChar 255 /Widths 18 0 R /ToUnicode 17 0 R >> endobj 12 0 obj << /Type /Outlines /Count 1 /First 13 0 R /Last 13 0 R >> endobj 13 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 12 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 14 0 obj << /Nums [0 << /P (1) >>] >> endobj 15 0 obj << /Length1 2888 /Length 1660 /Filter [/FlateDecode] >> stream xU[lG3v'%8�xp^?k놔 RmiA} JTA_TAE EB*qzw 5{f3w� pJJsVk%"gXr,=}j;/HR Kty_sJ)@%)~qY*κ^ip$i!7=޴soC;Ƹ"ۉ3!�K9Ejab C/@ v|TwaGmNuJYy>oJR=\WCѶݻʗv\{^s<b_@w1^א﷬+YVڰʅ~)-4<q򹆀EtʱO;XLVש<~zf"D=]V-]Kܝo}q/@jgcSej'j[^m _PWY0<*P kX*TVL�|t ŵN+ټ&tlzhg fU ԺaOp1! j{`uO}Gz#n Bƺ綸WVMņw2Xrt=!j*nlW9:=~c=ktiF ]`Tu2˶diL01*,EO[6@ Oc+\ZJ_e->Ե s75W7ުt(&%߷(>e-)nzv=;p-I <N'FXs- xx~~#j$짗aq7 Ne[7_t߼?+Cp JSy67.Ň[s[D] By O)dunh[n2(!�yU̓M 8Mr'wgo1 7Nu-b95qv8n #P MEp9&΃7q-PF&nĭP>�D3@'9fPIx!,'x锯"XFW <tm0Lx18M/~y\Kas@䎙}e⥰wx)l7v1-낷+tj,) =JXړIarF֞#"t i 8x^jZnUOV({$^a\`_UaHQG�ClFr,4,Y$@SUKK(1-`C1꼦.!�n,g%!Y$TEhB6!6!Ý1$~e!D"+ FFȨAtM)I'љ2%aуA4؇o0;L",fYN8SI+)钐U Enj102&LFfv"14q&E'c. Lt/"&2OXbX )OڃBTKE5U""Ø OxbdSuFFc̣'"ˣrgˢw̡DXV25AB{Z cc4SׄKa)b1r҈CEI8/o=sk=JLj1O2"r*f߯4ëԃQ=H/&^taa{go;G$iOY=Z\Ȟ/O5]o#+dߟ:= endstream endobj 16 0 obj << /Type /FontDescriptor /FontName /0fddd6+NotoSerif /FontFile2 15 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 17 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 18 0 obj [1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 492 1000 535 1000 1000 1000 1000 1000 1000 1000 1000 645 577 1000 1000 1000 1000 352 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj xref 0 19 0000000000 65535 f 0000000015 00000 n 0000000262 00000 n 0000000463 00000 n 0000000520 00000 n 0000000571 00000 n 0000000843 00000 n 0000001354 00000 n 0000001651 00000 n 0000001693 00000 n 0000001741 00000 n 0000001793 00000 n 0000001958 00000 n 0000002032 00000 n 0000002157 00000 n 0000002202 00000 n 0000003952 00000 n 0000004166 00000 n 0000005528 00000 n trailer << /Size 19 /Root 2 0 R /Info 1 0 R >> startxref 6661 %%EOF �������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/running-content-image.pdf���������������������������������0000664�0000000�0000000�00000101232�14163570564�0025356�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /ModDate (D:20190620001917-06'00') /CreationDate (D:20190620011132-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 12 0 R /PageLabels 14 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 842.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 26489 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 278.7505 793.926 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 231.407 820.398 Td /F1.0 9 Tf <74657874> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 279.64 820.29 m 315.64 820.29 l 315.64 827.49 l 279.64 827.49 l h W n 0.0 0.0 0.0 scn 0.36000 0.00000 0.00000 0.36000 178.96960 529.59360 cm 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 cm q Q q q q 1.0 1.0 1.0 scn 282.64 827.49 m 376.64 827.49 l 378.2969 827.49 379.64 826.1469 379.64 824.49 c 379.64 810.49 l 379.64 808.8331 378.2969 807.49 376.64 807.49 c 282.64 807.49 l 280.9831 807.49 279.64 808.8331 279.64 810.49 c 279.64 824.49 l 279.64 826.1469 280.9831 827.49 282.64 827.49 c h Q W n q 0.3333 0.3333 0.3333 scn 2 j 279.64 827.49 m 316.64 827.49 l 316.64 807.49 l 279.64 807.49 l h f Q q 0.2667 0.8 0.0667 scn 2 j 316.64 827.49 m 379.64 827.49 l 379.64 807.49 l 316.64 807.49 l h f Q Q Q q 1.0 1.0 1.0 scn q q 0.10000 0.00000 0.00000 0.10000 251.67600 744.74100 cm q /Tr1 gs 0.0039 0.0039 0.0039 scn q 2 j 359.628 754.726 m 359.628 737.646 l 379.984 737.646 l 379.984 729.9653 l 359.628 729.9653 l 359.628 697.3093 l 359.628 692.4037 360.2904 689.2527 361.6153 687.8562 c 362.976 686.4597 365.7152 685.7615 369.8331 685.7615 c 379.9841 685.7615 l 379.9841 677.49 l 369.8331 677.49 l 362.2064 677.49 356.9428 678.9044 354.0421 681.7332 c 351.1417 684.5978 349.6915 689.7898 349.6915 697.3092 c 349.6915 729.9652 l 342.4405 729.9652 l 342.4405 737.6459 l 349.6915 737.6459 l 349.6915 754.7259 l h f Q q 2 j 444.8 710.04 m 444.8 705.206 l 399.361 705.206 l 399.7907 698.4027 401.8317 693.2107 405.484 689.63 c 409.1721 686.0851 414.2925 684.3126 420.845 684.3126 c 424.6406 684.3126 428.3109 684.7781 431.856 685.7091 c 435.4367 686.6401 438.9817 688.0366 442.491 689.8986 c 442.491 680.5529 l 438.9461 679.049 435.3117 677.9031 431.588 677.1154 c 427.8643 676.3277 424.0866 675.9338 420.255 675.9338 c 410.6583 675.9338 403.0493 678.7268 397.428 684.3127 c 391.8421 689.8986 389.0491 697.454 389.0491 706.9787 c 389.0491 716.826 391.6988 724.632 396.9983 730.3967 c 402.3336 736.1975 409.5129 739.0979 418.5363 739.0979 c 426.629 739.0979 433.0206 736.484 437.7113 731.2561 c 442.4378 726.064 444.8011 718.992 444.8011 710.0401 c h 434.9172 712.9404 m 434.8456 718.3473 433.3238 722.662 430.3518 725.8844 c 427.4156 729.1071 423.5126 730.7184 418.6428 730.7184 c 413.1285 730.7184 408.7061 729.1608 405.3758 726.0456 c 402.0815 722.9304 400.1837 718.5441 399.6824 712.8866 c h f Q q 2 j 499.68 735.874 m 499.68 726.5283 l 496.8871 727.9606 493.9867 729.0348 490.9788 729.751 c 487.9709 730.4672 484.8557 730.8253 481.6331 730.8252 c 476.7275 730.8252 473.0395 730.0732 470.5691 728.5693 c 468.1342 727.0654 466.9168 724.8095 466.9168 721.8017 c 466.9168 719.51 467.7941 717.7018 469.5486 716.3769 c 471.3031 715.0878 474.8301 713.8525 480.1296 712.6708 c 483.5134 711.9189 l 490.5314 710.4149 495.5087 708.2844 498.4454 705.5273 c 501.4174 702.8059 502.9034 698.9926 502.9034 694.0872 c 502.9034 688.5013 500.6833 684.079 496.2432 680.8203 c 491.8389 677.5618 485.7696 675.9326 478.0352 675.9326 c 474.8125 675.9326 471.4465 676.2548 467.9372 676.8993 c 464.4639 677.5081 460.7935 678.4391 456.9262 679.6924 c 456.9262 689.8974 l 460.5785 687.9996 464.1772 686.5673 467.7222 685.6005 c 471.2671 684.6695 474.7761 684.204 478.2492 684.204 c 482.9041 684.204 486.4848 684.9917 488.9912 686.5673 c 491.4977 688.1786 492.751 690.4345 492.751 693.3349 c 492.751 696.0204 491.8379 698.0793 490.0117 699.5117 c 488.2214 700.9439 484.2647 702.3225 478.1417 703.6475 c 474.7042 704.4531 l 468.5811 705.7422 464.1588 707.7116 461.4372 710.3613 c 458.7159 713.0468 457.3552 716.7172 457.3552 721.3723 c 457.3552 727.0298 459.3604 731.3982 463.3708 734.4773 c 467.3812 737.5567 473.0745 739.0964 480.4508 739.0964 c 484.1031 739.0964 487.5405 738.8279 490.7628 738.2908 c 493.9855 737.7536 496.9575 736.948 499.6788 735.8738 c h f Q q 2 j 528.77 754.726 m 528.77 737.646 l 549.126 737.646 l 549.126 729.9653 l 528.77 729.9653 l 528.77 697.3093 l 528.77 692.4037 529.4324 689.2527 530.7573 687.8562 c 532.118 686.4597 534.8572 685.7615 538.9751 685.7615 c 549.1261 685.7615 l 549.1261 677.49 l 538.9751 677.49 l 531.3484 677.49 526.0848 678.9044 523.1841 681.7332 c 520.2837 684.5978 518.8335 689.7898 518.8335 697.3092 c 518.8335 729.9652 l 511.5825 729.9652 l 511.5825 737.6459 l 518.8335 737.6459 l 518.8335 754.7259 l h f Q q 2 j 600.84 735.874 m 600.84 726.5283 l 598.0471 727.9606 595.1467 729.0348 592.1388 729.751 c 589.1309 730.4672 586.0157 730.8253 582.7931 730.8252 c 577.8875 730.8252 574.1995 730.0732 571.7291 728.5693 c 569.2942 727.0654 568.0768 724.8095 568.0768 721.8017 c 568.0768 719.51 568.9541 717.7018 570.7086 716.3769 c 572.4631 715.0878 575.9901 713.8525 581.2896 712.6708 c 584.6734 711.9189 l 591.6914 710.4149 596.6687 708.2844 599.6054 705.5273 c 602.5774 702.8059 604.0634 698.9926 604.0634 694.0872 c 604.0634 688.5013 601.8433 684.079 597.4032 680.8203 c 592.9989 677.5618 586.9296 675.9326 579.1952 675.9326 c 575.9725 675.9326 572.6065 676.2548 569.0972 676.8993 c 565.6239 677.5081 561.9535 678.4391 558.0862 679.6924 c 558.0862 689.8974 l 561.7385 687.9996 565.3372 686.5673 568.8822 685.6005 c 572.4271 684.6695 575.9361 684.204 579.4092 684.204 c 584.0641 684.204 587.6448 684.9917 590.1512 686.5673 c 592.6577 688.1786 593.911 690.4345 593.911 693.3349 c 593.911 696.0204 592.9979 698.0793 591.1717 699.5117 c 589.3813 700.9439 585.4246 702.3225 579.3017 703.6475 c 575.8642 704.4531 l 569.7411 705.7422 565.3188 707.7116 562.5972 710.3613 c 559.8759 713.0468 558.5152 716.7172 558.5152 721.3723 c 558.5152 727.0298 560.5204 731.3982 564.5308 734.4773 c 568.5412 737.5567 574.2345 739.0964 581.6108 739.0964 c 585.2631 739.0964 588.7005 738.8279 591.9228 738.2908 c 595.1455 737.7536 598.1175 736.948 600.8388 735.8738 c h f Q Q Q Q q q 0.10000 0.00000 0.00000 0.10000 251.67600 744.74100 cm q 2 j 359.628 764.726 m 359.628 747.646 l 379.984 747.646 l 379.984 739.9653 l 359.628 739.9653 l 359.628 707.3093 l 359.628 702.4037 360.2904 699.2527 361.6153 697.8562 c 362.976 696.4597 365.7152 695.7615 369.8331 695.7615 c 379.9841 695.7615 l 379.9841 687.49 l 369.8331 687.49 l 362.2064 687.49 356.9428 688.9044 354.0421 691.7332 c 351.1417 694.5978 349.6915 699.7898 349.6915 707.3092 c 349.6915 739.9652 l 342.4405 739.9652 l 342.4405 747.6459 l 349.6915 747.6459 l 349.6915 764.7259 l h f Q q 2 j 444.8 720.04 m 444.8 715.206 l 399.361 715.206 l 399.7907 708.4027 401.8317 703.2107 405.484 699.63 c 409.1721 696.0851 414.2925 694.3126 420.845 694.3126 c 424.6406 694.3126 428.3109 694.7781 431.856 695.7091 c 435.4367 696.6401 438.9817 698.0366 442.491 699.8986 c 442.491 690.5529 l 438.9461 689.049 435.3117 687.9031 431.588 687.1154 c 427.8643 686.3277 424.0866 685.9338 420.255 685.9338 c 410.6583 685.9338 403.0493 688.7268 397.428 694.3127 c 391.8421 699.8986 389.0491 707.454 389.0491 716.9787 c 389.0491 726.826 391.6988 734.632 396.9983 740.3967 c 402.3336 746.1975 409.5129 749.0979 418.5363 749.0979 c 426.629 749.0979 433.0206 746.484 437.7113 741.2561 c 442.4378 736.064 444.8011 728.992 444.8011 720.0401 c h 434.9172 722.9404 m 434.8456 728.3473 433.3238 732.662 430.3518 735.8844 c 427.4156 739.1071 423.5126 740.7184 418.6428 740.7184 c 413.1285 740.7184 408.7061 739.1608 405.3758 736.0455 c 402.0815 732.9302 400.1837 728.5439 399.6824 722.8865 c h f Q q 2 j 499.68 745.874 m 499.68 736.5283 l 496.8871 737.9606 493.9867 739.0348 490.9788 739.751 c 487.9709 740.4672 484.8557 740.8253 481.6331 740.8252 c 476.7275 740.8252 473.0395 740.0732 470.5691 738.5693 c 468.1342 737.0654 466.9168 734.8095 466.9168 731.8017 c 466.9168 729.51 467.7941 727.7018 469.5486 726.3769 c 471.3031 725.0878 474.8301 723.8525 480.1296 722.6708 c 483.5134 721.9189 l 490.5314 720.4149 495.5087 718.2844 498.4454 715.5273 c 501.4174 712.8059 502.9034 708.9926 502.9034 704.0872 c 502.9034 698.5013 500.6833 694.079 496.2432 690.8203 c 491.8389 687.5618 485.7696 685.9326 478.0352 685.9326 c 474.8125 685.9326 471.4465 686.2548 467.9372 686.8993 c 464.4639 687.5081 460.7935 688.4391 456.9262 689.6924 c 456.9262 699.8974 l 460.5785 697.9996 464.1772 696.5673 467.7222 695.6005 c 471.2671 694.6695 474.7761 694.204 478.2492 694.204 c 482.9041 694.204 486.4848 694.9917 488.9912 696.5673 c 491.4977 698.1786 492.751 700.4345 492.751 703.3349 c 492.751 706.0204 491.8379 708.0793 490.0117 709.5117 c 488.2214 710.9439 484.2647 712.3225 478.1417 713.6474 c 474.7042 714.4531 l 468.5811 715.7422 464.1588 717.7116 461.4372 720.3613 c 458.7159 723.0468 457.3552 726.7172 457.3552 731.3723 c 457.3552 737.0298 459.3604 741.3982 463.3708 744.4773 c 467.3812 747.5567 473.0745 749.0964 480.4508 749.0964 c 484.1031 749.0964 487.5405 748.8279 490.7628 748.2908 c 493.9855 747.7536 496.9575 746.948 499.6788 745.8738 c h f Q q 2 j 528.77 764.726 m 528.77 747.646 l 549.126 747.646 l 549.126 739.9653 l 528.77 739.9653 l 528.77 707.3093 l 528.77 702.4037 529.4324 699.2527 530.7573 697.8562 c 532.118 696.4597 534.8572 695.7615 538.9751 695.7615 c 549.1261 695.7615 l 549.1261 687.49 l 538.9751 687.49 l 531.3484 687.49 526.0848 688.9044 523.1841 691.7332 c 520.2837 694.5978 518.8335 699.7898 518.8335 707.3092 c 518.8335 739.9652 l 511.5825 739.9652 l 511.5825 747.6459 l 518.8335 747.6459 l 518.8335 764.7259 l h f Q q 2 j 600.84 745.874 m 600.84 736.5283 l 598.0471 737.9606 595.1467 739.0348 592.1388 739.751 c 589.1309 740.4672 586.0157 740.8253 582.7931 740.8252 c 577.8875 740.8252 574.1995 740.0732 571.7291 738.5693 c 569.2942 737.0654 568.0768 734.8095 568.0768 731.8017 c 568.0768 729.51 568.9541 727.7018 570.7086 726.3769 c 572.4631 725.0878 575.9901 723.8525 581.2896 722.6708 c 584.6734 721.9189 l 591.6914 720.4149 596.6687 718.2844 599.6054 715.5273 c 602.5774 712.8059 604.0634 708.9926 604.0634 704.0872 c 604.0634 698.5013 601.8433 694.079 597.4032 690.8203 c 592.9989 687.5618 586.9296 685.9326 579.1952 685.9326 c 575.9725 685.9326 572.6065 686.2548 569.0972 686.8993 c 565.6239 687.5081 561.9535 688.4391 558.0862 689.6924 c 558.0862 699.8974 l 561.7385 697.9996 565.3372 696.5673 568.8822 695.6005 c 572.4271 694.6695 575.9361 694.204 579.4092 694.204 c 584.0641 694.204 587.6448 694.9917 590.1512 696.5673 c 592.6577 698.1786 593.911 700.4345 593.911 703.3349 c 593.911 706.0204 592.9979 708.0793 591.1717 709.5117 c 589.3813 710.9439 585.4246 712.3225 579.3017 713.6474 c 575.8642 714.4531 l 569.7411 715.7422 565.3188 717.7116 562.5972 720.3613 c 559.8759 723.0468 558.5152 726.7172 558.5152 731.3723 c 558.5152 737.0298 560.5204 741.3982 564.5308 744.4773 c 568.5412 747.5567 574.2345 749.0964 581.6108 749.0964 c 585.2631 749.0964 588.7005 748.8279 591.9228 748.2908 c 595.1455 747.7536 598.1175 746.948 600.8388 745.8738 c h f Q Q Q q q 0.10000 0.00000 0.00000 0.10000 251.67600 744.74100 cm q /Tr1 gs 0.0039 0.0039 0.0039 scn q 2 j 739.94 708.27 m 739.94 715.4313 738.454 720.9813 735.482 724.92 c 732.5458 728.8588 728.4101 730.8282 723.075 730.8282 c 717.7755 730.8282 713.6399 728.8588 710.668 724.92 c 707.7318 720.9812 706.2637 715.4312 706.2637 708.27 c 706.2637 701.1447 707.7318 695.6123 710.668 691.673 c 713.64 687.7342 717.7757 685.7648 723.075 685.7648 c 728.4103 685.7648 732.5459 687.7342 735.482 691.673 c 738.454 695.6118 739.94 701.1441 739.94 708.27 c h 749.8228 684.959 m 749.8228 674.7183 747.549 667.1093 743.0015 662.132 c 738.454 657.119 731.4893 654.6125 722.1075 654.6125 c 718.6342 654.6125 715.3578 654.8811 712.2784 655.4182 c 709.199 655.9195 706.2091 656.7072 703.3087 657.7815 c 703.3087 667.3957 l 706.2091 665.8201 709.0737 664.6564 711.9025 663.9045 c 714.7313 663.1525 717.6138 662.7766 720.55 662.7766 c 727.0311 662.7766 731.8831 664.4774 735.106 667.8791 c 738.3287 671.2449 739.94 676.3476 739.94 683.1871 c 739.94 688.0748 l 737.899 684.5298 735.2851 681.8801 732.0982 680.1256 c 728.9113 678.371 725.098 677.4938 720.6582 677.4938 c 713.2822 677.4938 707.3382 680.3046 702.8262 685.9264 c 698.3145 691.5481 696.0586 698.9961 696.0586 708.2704 c 696.0586 717.5804 698.3145 725.046 702.8262 730.6674 c 707.3379 736.2891 713.2819 739.1 720.6582 739.1 c 725.0983 739.1 728.9117 738.2227 732.0982 736.4682 c 735.2851 734.7136 737.899 732.0639 739.94 728.519 c 739.94 737.6499 l 749.8228 737.6499 l h f Q q 2 j 804.34 728.408 m 803.23 729.0525 802.0125 729.518 800.6876 729.8045 c 799.3985 730.1268 797.9662 730.2879 796.3907 730.2879 c 790.8048 730.2879 786.5078 728.4617 783.4997 724.8094 c 780.5277 721.1929 779.0417 715.9829 779.0417 709.1794 c 779.0417 677.4904 l 769.1052 677.4904 l 769.1052 737.6464 l 779.0417 737.6464 l 779.0417 728.3007 l 781.1185 731.953 783.822 734.6565 787.1521 736.4111 c 790.4822 738.2014 794.5285 739.0966 799.2911 739.0966 c 799.9714 739.0966 800.7234 739.0429 801.547 738.9355 c 802.3706 738.8639 803.2837 738.7385 804.2863 738.5595 c h f Q q 2 j 863.2 710.04 m 863.2 705.206 l 817.761 705.206 l 818.1907 698.4027 820.2317 693.2107 823.884 689.63 c 827.5721 686.0851 832.6925 684.3126 839.245 684.3126 c 843.0406 684.3126 846.7109 684.7781 850.256 685.7091 c 853.8367 686.6401 857.3817 688.0366 860.891 689.8986 c 860.891 680.5529 l 857.3461 679.049 853.7117 677.9031 849.988 677.1154 c 846.2643 676.3277 842.4866 675.9338 838.655 675.9338 c 829.0583 675.9338 821.4493 678.7268 815.828 684.3127 c 810.2421 689.8986 807.4491 697.454 807.4491 706.9787 c 807.4491 716.826 810.0988 724.632 815.3983 730.3967 c 820.7336 736.1975 827.9129 739.0979 836.9363 739.0979 c 845.029 739.0979 851.4206 736.484 856.1113 731.2561 c 860.8378 726.064 863.2011 718.992 863.2011 710.0401 c h 853.3172 712.9404 m 853.2456 718.3473 851.7238 722.662 848.7518 725.8844 c 845.8156 729.1071 841.9126 730.7184 837.0428 730.7184 c 831.5285 730.7184 827.1061 729.1608 823.7758 726.0456 c 820.4815 722.9304 818.5837 718.5441 818.0824 712.8866 c h f Q q 2 j 930.18 710.04 m 930.18 705.206 l 884.741 705.206 l 885.1707 698.4027 887.2117 693.2107 890.864 689.63 c 894.5521 686.0851 899.6725 684.3126 906.225 684.3126 c 910.0206 684.3126 913.6909 684.7781 917.236 685.7091 c 920.8167 686.6401 924.3617 688.0366 927.871 689.8986 c 927.871 680.5529 l 924.3261 679.049 920.6917 677.9031 916.968 677.1154 c 913.2443 676.3277 909.4666 675.9338 905.635 675.9338 c 896.0383 675.9338 888.4293 678.7268 882.808 684.3127 c 877.2221 689.8986 874.4291 697.454 874.4291 706.9787 c 874.4291 716.826 877.0788 724.632 882.3783 730.3967 c 887.7136 736.1975 894.8929 739.0979 903.9163 739.0979 c 912.009 739.0979 918.4006 736.484 923.0913 731.2561 c 927.8178 726.064 930.1811 718.992 930.1811 710.0401 c h 920.2972 712.9404 m 920.2256 718.3473 918.7038 722.662 915.7318 725.8844 c 912.7956 729.1071 908.8926 730.7184 904.0228 730.7184 c 898.5085 730.7184 894.0861 729.1608 890.7558 726.0456 c 887.4615 722.9304 885.5637 718.5441 885.0624 712.8866 c h f Q q 2 j 995.7 713.8 m 995.7 677.491 l 985.8172 677.491 l 985.8172 713.477 l 985.8172 719.1703 984.7072 723.4313 982.4871 726.26 c 980.267 729.0888 976.937 730.5032 972.4969 730.5032 c 967.1616 730.5032 962.9543 728.8024 959.8749 725.4007 c 956.7955 721.999 955.2558 717.362 955.2558 711.4897 c 955.2558 677.4907 l 945.3193 677.4907 l 945.3193 737.6467 l 955.2558 737.6467 l 955.2558 728.301 l 957.6191 731.9175 960.3941 734.621 963.581 736.4114 c 966.8037 738.2017 970.5097 739.0969 974.699 739.0969 c 981.6097 739.0969 986.8377 736.9485 990.383 732.6516 c 993.9279 728.3905 995.7004 722.1062 995.7004 713.7986 c h f Q q 2 j 1092.32 707.51 m 1092.32 714.7787 1090.8161 720.472 1087.8083 724.59 c 1084.8363 728.7437 1080.7363 730.8205 1075.5083 730.8205 c 1070.2804 730.8205 1066.1624 728.7437 1063.1543 724.59 c 1060.1823 720.4721 1058.6963 714.7788 1058.6963 707.51 c 1058.6963 700.2412 1060.1823 694.5299 1063.1543 690.376 c 1066.1621 686.2581 1070.2801 684.1992 1075.5083 684.1992 c 1080.7362 684.1992 1084.8362 686.2581 1087.8083 690.376 c 1090.8161 694.5297 1092.32 700.241 1092.32 707.51 c h 1058.697 728.511 m 1060.7738 732.0917 1063.3877 734.7415 1066.5388 736.4602 c 1069.7257 738.2147 1073.5213 739.092 1077.9258 739.092 c 1085.2305 739.092 1091.1565 736.1916 1095.7038 730.3908 c 1100.2871 724.59 1102.5788 716.963 1102.5788 707.5098 c 1102.5788 698.0565 1100.2871 690.4295 1095.7038 684.6288 c 1091.1563 678.828 1085.2303 675.9276 1077.9258 675.9276 c 1073.5215 675.9276 1069.7259 676.787 1066.5388 678.5057 c 1063.3877 680.2602 1060.7738 682.9279 1058.697 686.5086 c 1058.697 677.4852 l 1048.7605 677.4852 l 1048.7605 761.0592 l 1058.697 761.0592 l h f Q q 2 j 1145.6 707.73 m 1137.6147 707.73 1132.0823 706.8169 1129.003 704.9907 c 1125.9235 703.1645 1124.3838 700.0493 1124.3838 695.645 c 1124.3838 692.1359 1125.5296 689.3429 1127.8213 687.2661 c 1130.1488 685.2251 1133.2998 684.2046 1137.2744 684.2046 c 1142.7529 684.2046 1147.1393 686.1382 1150.4334 690.0054 c 1153.7635 693.9084 1155.4285 699.0824 1155.4285 705.5274 c 1155.4285 707.7296 l h 1165.312 711.812 m 1165.312 677.491 l 1155.4292 677.491 l 1155.4292 686.6219 l 1153.1733 682.9696 1150.3625 680.2661 1146.9966 678.5115 c 1143.6307 676.7928 1139.5127 675.9334 1134.6426 675.9334 c 1128.4837 675.9334 1123.5781 677.6521 1119.9256 681.0896 c 1116.3091 684.5629 1114.5008 689.1999 1114.5008 695.0006 c 1114.5008 701.7679 1116.7567 706.8706 1121.2684 710.3086 c 1125.8159 713.7461 1132.5836 715.4648 1141.5714 715.4648 c 1155.4284 715.4648 l 1155.4284 716.4316 l 1155.4284 720.9791 1153.9245 724.4881 1150.9167 726.9586 c 1147.9447 729.4651 1143.7554 730.7184 1138.3487 730.7184 c 1134.9112 730.7184 1131.5632 730.3066 1128.3047 729.483 c 1125.0462 728.6594 1121.9131 727.424 1118.9053 725.7769 c 1118.9053 734.9078 l 1122.5218 736.3043 1126.0308 737.3427 1129.4323 738.023 c 1132.834 738.7391 1136.1461 739.0972 1139.3688 739.0972 c 1148.0701 739.0972 1154.5691 736.8413 1158.8658 732.3296 c 1163.1627 727.8179 1165.3111 720.9785 1165.3111 711.8116 c h f Q q 2 j 1219.88 728.408 m 1218.77 729.0525 1217.5526 729.518 1216.2277 729.8045 c 1214.9386 730.1268 1213.5063 730.2879 1211.9308 730.2879 c 1206.3449 730.2879 1202.0479 728.4617 1199.0398 724.8094 c 1196.0678 721.1929 1194.5818 715.9829 1194.5818 709.1794 c 1194.5818 677.4904 l 1184.6453 677.4904 l 1184.6453 737.6464 l 1194.5818 737.6464 l 1194.5818 728.3007 l 1196.6586 731.953 1199.3621 734.6565 1202.6922 736.4111 c 1206.0223 738.2014 1210.0686 739.0966 1214.8312 739.0966 c 1215.5115 739.0966 1216.2635 739.0429 1217.0871 738.9355 c 1217.9107 738.8639 1218.8238 738.7385 1219.8264 738.5595 c h f Q Q Q Q q q 0.10000 0.00000 0.00000 0.10000 251.67600 744.74100 cm q 2 j 739.94 718.27 m 739.94 725.4313 738.454 730.9813 735.482 734.92 c 732.5458 738.8588 728.4101 740.8282 723.075 740.8282 c 717.7755 740.8282 713.6399 738.8588 710.668 734.92 c 707.7318 730.9812 706.2637 725.4312 706.2637 718.27 c 706.2637 711.1447 707.7318 705.6123 710.668 701.673 c 713.64 697.7342 717.7757 695.7648 723.075 695.7648 c 728.4103 695.7648 732.5459 697.7342 735.482 701.673 c 738.454 705.6118 739.94 711.1441 739.94 718.27 c h 749.8228 694.959 m 749.8228 684.7183 747.549 677.1093 743.0015 672.132 c 738.454 667.119 731.4893 664.6125 722.1075 664.6125 c 718.6342 664.6125 715.3578 664.8811 712.2784 665.4182 c 709.199 665.9195 706.2091 666.7072 703.3087 667.7815 c 703.3087 677.3957 l 706.2091 675.8201 709.0737 674.6564 711.9025 673.9045 c 714.7313 673.1525 717.6138 672.7766 720.55 672.7766 c 727.0311 672.7766 731.8831 674.4774 735.106 677.8791 c 738.3287 681.2449 739.94 686.3476 739.94 693.1871 c 739.94 698.0748 l 737.899 694.5298 735.2851 691.8801 732.0982 690.1256 c 728.9113 688.371 725.098 687.4938 720.6582 687.4938 c 713.2822 687.4938 707.3382 690.3046 702.8262 695.9264 c 698.3145 701.5481 696.0586 708.9961 696.0586 718.2704 c 696.0586 727.5804 698.3145 735.046 702.8262 740.6674 c 707.3379 746.2891 713.2819 749.1 720.6582 749.1 c 725.0983 749.1 728.9117 748.2227 732.0982 746.4682 c 735.2851 744.7136 737.899 742.0639 739.94 738.519 c 739.94 747.6499 l 749.8228 747.6499 l h f Q q 2 j 804.34 738.408 m 803.23 739.0525 802.0125 739.518 800.6876 739.8045 c 799.3985 740.1268 797.9662 740.2879 796.3907 740.2879 c 790.8048 740.2879 786.5078 738.4617 783.4997 734.8094 c 780.5277 731.1929 779.0417 725.9829 779.0417 719.1794 c 779.0417 687.4904 l 769.1052 687.4904 l 769.1052 747.6464 l 779.0417 747.6464 l 779.0417 738.3007 l 781.1185 741.953 783.822 744.6565 787.1521 746.4111 c 790.4822 748.2014 794.5285 749.0966 799.2911 749.0966 c 799.9714 749.0966 800.7234 749.0429 801.547 748.9355 c 802.3706 748.8639 803.2837 748.7385 804.2863 748.5595 c h f Q q 2 j 863.2 720.04 m 863.2 715.206 l 817.761 715.206 l 818.1907 708.4027 820.2317 703.2107 823.884 699.63 c 827.5721 696.0851 832.6925 694.3126 839.245 694.3126 c 843.0406 694.3126 846.7109 694.7781 850.256 695.7091 c 853.8367 696.6401 857.3817 698.0366 860.891 699.8986 c 860.891 690.5529 l 857.3461 689.049 853.7117 687.9031 849.988 687.1154 c 846.2643 686.3277 842.4866 685.9338 838.655 685.9338 c 829.0583 685.9338 821.4493 688.7268 815.828 694.3127 c 810.2421 699.8986 807.4491 707.454 807.4491 716.9787 c 807.4491 726.826 810.0988 734.632 815.3983 740.3967 c 820.7336 746.1975 827.9129 749.0979 836.9363 749.0979 c 845.029 749.0979 851.4206 746.484 856.1113 741.2561 c 860.8378 736.064 863.2011 728.992 863.2011 720.0401 c h 853.3172 722.9404 m 853.2456 728.3473 851.7238 732.662 848.7518 735.8844 c 845.8156 739.1071 841.9126 740.7184 837.0428 740.7184 c 831.5285 740.7184 827.1061 739.1608 823.7758 736.0455 c 820.4815 732.9302 818.5837 728.5439 818.0824 722.8865 c h f Q q 2 j 930.18 720.04 m 930.18 715.206 l 884.741 715.206 l 885.1707 708.4027 887.2117 703.2107 890.864 699.63 c 894.5521 696.0851 899.6725 694.3126 906.225 694.3126 c 910.0206 694.3126 913.6909 694.7781 917.236 695.7091 c 920.8167 696.6401 924.3617 698.0366 927.871 699.8986 c 927.871 690.5529 l 924.3261 689.049 920.6917 687.9031 916.968 687.1154 c 913.2443 686.3277 909.4666 685.9338 905.635 685.9338 c 896.0383 685.9338 888.4293 688.7268 882.808 694.3127 c 877.2221 699.8986 874.4291 707.454 874.4291 716.9787 c 874.4291 726.826 877.0788 734.632 882.3783 740.3967 c 887.7136 746.1975 894.8929 749.0979 903.9163 749.0979 c 912.009 749.0979 918.4006 746.484 923.0913 741.2561 c 927.8178 736.064 930.1811 728.992 930.1811 720.0401 c h 920.2972 722.9404 m 920.2256 728.3473 918.7038 732.662 915.7318 735.8844 c 912.7956 739.1071 908.8926 740.7184 904.0228 740.7184 c 898.5085 740.7184 894.0861 739.1608 890.7558 736.0455 c 887.4615 732.9302 885.5637 728.5439 885.0624 722.8865 c h f Q q 2 j 995.7 723.8 m 995.7 687.491 l 985.8172 687.491 l 985.8172 723.477 l 985.8172 729.1703 984.7072 733.4313 982.4871 736.26 c 980.267 739.0887 976.937 740.5031 972.4969 740.5032 c 967.1616 740.5032 962.9543 738.8024 959.8749 735.4007 c 956.7955 731.999 955.2558 727.362 955.2558 721.4897 c 955.2558 687.4907 l 945.3193 687.4907 l 945.3193 747.6467 l 955.2558 747.6467 l 955.2558 738.301 l 957.6191 741.9175 960.3941 744.621 963.581 746.4114 c 966.8037 748.2017 970.5097 749.0969 974.699 749.0969 c 981.6097 749.0969 986.8377 746.9485 990.383 742.6516 c 993.9279 738.3905 995.7004 732.1062 995.7004 723.7986 c h f Q q 2 j 1092.32 717.51 m 1092.32 724.7787 1090.8161 730.472 1087.8083 734.59 c 1084.8363 738.7437 1080.7363 740.8205 1075.5083 740.8205 c 1070.2804 740.8205 1066.1624 738.7437 1063.1543 734.59 c 1060.1823 730.4721 1058.6963 724.7788 1058.6963 717.51 c 1058.6963 710.2413 1060.1823 704.53 1063.1543 700.376 c 1066.1621 696.2581 1070.2801 694.1992 1075.5083 694.1992 c 1080.7362 694.1992 1084.8362 696.2581 1087.8083 700.376 c 1090.8161 704.5297 1092.32 710.241 1092.32 717.51 c h 1058.697 738.511 m 1060.7738 742.0917 1063.3877 744.7415 1066.5388 746.4602 c 1069.7257 748.2147 1073.5213 749.092 1077.9258 749.092 c 1085.2305 749.092 1091.1565 746.1916 1095.7038 740.3908 c 1100.2871 734.59 1102.5788 726.963 1102.5788 717.5098 c 1102.5788 708.0565 1100.2871 700.4295 1095.7038 694.6288 c 1091.1563 688.828 1085.2303 685.9276 1077.9258 685.9276 c 1073.5215 685.9276 1069.7259 686.787 1066.5388 688.5057 c 1063.3877 690.2602 1060.7738 692.9279 1058.697 696.5086 c 1058.697 687.4852 l 1048.7605 687.4852 l 1048.7605 771.0592 l 1058.697 771.0592 l h f Q q 2 j 1145.6 717.73 m 1137.6147 717.73 1132.0823 716.8169 1129.003 714.9907 c 1125.9235 713.1645 1124.3838 710.0493 1124.3838 705.645 c 1124.3838 702.1359 1125.5296 699.3429 1127.8213 697.2661 c 1130.1488 695.2251 1133.2998 694.2046 1137.2744 694.2046 c 1142.7529 694.2046 1147.1393 696.1382 1150.4334 700.0054 c 1153.7635 703.9084 1155.4285 709.0824 1155.4285 715.5274 c 1155.4285 717.7296 l h 1165.312 721.812 m 1165.312 687.491 l 1155.4292 687.491 l 1155.4292 696.6219 l 1153.1733 692.9696 1150.3625 690.2661 1146.9966 688.5115 c 1143.6307 686.7928 1139.5127 685.9334 1134.6426 685.9334 c 1128.4837 685.9334 1123.5781 687.6521 1119.9256 691.0896 c 1116.3091 694.5629 1114.5008 699.1999 1114.5008 705.0006 c 1114.5008 711.7679 1116.7567 716.8706 1121.2684 720.3086 c 1125.8159 723.7461 1132.5836 725.4648 1141.5714 725.4648 c 1155.4284 725.4648 l 1155.4284 726.4316 l 1155.4284 730.9791 1153.9245 734.4881 1150.9167 736.9586 c 1147.9447 739.4651 1143.7554 740.7184 1138.3487 740.7184 c 1134.9112 740.7184 1131.5632 740.3066 1128.3047 739.483 c 1125.0462 738.6594 1121.9131 737.424 1118.9053 735.7769 c 1118.9053 744.9078 l 1122.5218 746.3043 1126.0308 747.3427 1129.4323 748.023 c 1132.834 748.7391 1136.1461 749.0972 1139.3688 749.0972 c 1148.0701 749.0972 1154.5691 746.8413 1158.8658 742.3296 c 1163.1627 737.8179 1165.3111 730.9785 1165.3111 721.8116 c h f Q q 2 j 1219.88 738.408 m 1218.77 739.0525 1217.5526 739.518 1216.2277 739.8045 c 1214.9386 740.1268 1213.5063 740.2879 1211.9308 740.2879 c 1206.3449 740.2879 1202.0479 738.4617 1199.0398 734.8094 c 1196.0678 731.1929 1194.5818 725.9829 1194.5818 719.1794 c 1194.5818 687.4904 l 1184.6453 687.4904 l 1184.6453 747.6464 l 1194.5818 747.6464 l 1194.5818 738.3007 l 1196.6586 741.953 1199.3621 744.6565 1202.6922 746.4111 c 1206.0223 748.2014 1210.0686 749.0966 1214.8312 749.0966 c 1215.5115 749.0966 1216.2635 749.0429 1217.0871 748.9355 c 1217.9107 748.8639 1218.8238 748.7385 1219.8264 748.5595 c h f Q Q Q Q Q 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 347.52 820.398 Td /F1.0 9 Tf <74657874> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R >> /ExtGState << /Tr1 15 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /7e34a1+NotoSerif /Subtype /TrueType /FontDescriptor 17 0 R /FirstChar 32 /LastChar 255 /Widths 19 0 R /ToUnicode 18 0 R >> endobj 12 0 obj << /Type /Outlines /Count 1 /First 13 0 R /Last 13 0 R >> endobj 13 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 12 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 14 0 obj << /Nums [0 << /P (1) >>] >> endobj 15 0 obj << /Type /ExtGState /CA 1 /ca 0.3 >> endobj 16 0 obj << /Length1 3100 /Length 1842 /Filter [/FlateDecode] >> stream xU[l!%Kc˞;MQRĉEYQ'N}iFK -ђT( ]ˀb݀և.6 0i֥+P%['.OpH9G@�=`r${e�Ҕ+.�/*1-�'8Ɲ/ie �q[>/?ا11~$/1NaÖ́wYϔebI8Љ_He_b#`W;|D�>E-uvP[@�E9؃q=K?]?t Ρө/<_|s+\O%F=ϿGj  b^j3uI^tdh'~Ez☺TKnďw(?0x̫4(%8~G1Ʊg#2OgGZvFwއuxtx #S%! sl1Mhpt?׭0=Pkp `'cOw'5K-ƀt:%{P/JXWCXfAoI\ihS돆zۜް!�qc [l�C }zK0+.nē۹擣;ye4e;k5U]$SwlG^N{3cc0�yg;u vGLG/w gI: <; SUW& sBQL4k^tXO3Xm[$=>ra;EQI(tu#גkykNە-_F9Bu=t\h{Pxȵ'ۘ͸+m.oH:muS`{:]:$9K]oֿ~x~K( ps.Ǿ ۰}׍|L'wUc"5p s<Gqpخb d~Zk!8#SS#p\%z7q?!Jj[^dnCWX.֨Yu Y8zxh@޷p\Y۠$,IYj @TkL ȋ�/y빜p錅`>c-o1I ~愅oy·)W^Y1vtH)/\^=(?(ď,iOKI}J 0 aT(@6FO8wFWAFc C|DY3)!Sxς0h ?#yD 3OKjQTi9""+b%\A!~2&"^Ti9CV G8_C`G3$oUJc0&u‹Y$gye~RLDlf$\ gS/&)Rɼ&-f4T6%JUJW|Aְb,)-M)k"Mޔ) 9Lo!&pFJBδX(p9BYOiƅ+&<Lel7ayaaA(Y2+Z5[P`^0ܯw*f/d$U嬤Z^bVO7^QqNdcZ>f͚4|ț b>ǭEF5i@P\*^)*zFW7g 27X3xe7vlon:cWw;λ9󴵮QeE endstream endobj 17 0 obj << /Type /FontDescriptor /FontName /7e34a1+NotoSerif /FontFile2 16 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 18 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 19 0 obj [1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 492 1000 535 1000 1000 1000 1000 1000 1000 1000 1000 645 577 1000 1000 1000 1000 352 1000 1000 1000 578 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj xref 0 20 0000000000 65535 f 0000000015 00000 n 0000000262 00000 n 0000000463 00000 n 0000000520 00000 n 0000000571 00000 n 0000000843 00000 n 0000027385 00000 n 0000027711 00000 n 0000027753 00000 n 0000027801 00000 n 0000027853 00000 n 0000028018 00000 n 0000028092 00000 n 0000028217 00000 n 0000028262 00000 n 0000028315 00000 n 0000030247 00000 n 0000030461 00000 n 0000031823 00000 n trailer << /Size 20 /Root 2 0 R /Info 1 0 R >> startxref 32955 %%EOF ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/running-content-negative-padding.pdf����������������������0000664�0000000�0000000�00000025026�14163570564�0027510�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20190926002358-06'00') /CreationDate (D:20190926002358-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 12 0 R /PageLabels 13 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 733 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf <74657874206c656674> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 500.945 766.146 Td /F1.0 10.5 Tf <74657874207269676874> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /Stamp1 Do 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN BT 0.0 11.4455 Td /F1.0 9 Tf <74657874206c656674> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN BT 555.77 11.4455 Td /F1.0 9 Tf <74657874207269676874> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R >> /XObject << /Stamp1 14 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /ca7dbd+NotoSerif /Subtype /TrueType /FontDescriptor 17 0 R /FirstChar 32 /LastChar 255 /Widths 19 0 R /ToUnicode 18 0 R >> endobj 12 0 obj << /Type /Outlines /Count 0 /First null /Last null >> endobj 13 0 obj << /Nums [0 << /P (1) >>] >> endobj 14 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 595.28 841.89] /Length 162 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d q 0.25 w /DeviceRGB CS 0.8667 0.8667 0.8667 SCN 48.24 30.0 m 547.04 30.0 l S Q Q endstream endobj 15 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 595.28 841.89] /Length 162 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d q 0.25 w /DeviceRGB CS 0.8667 0.8667 0.8667 SCN 48.24 30.0 m 547.04 30.0 l S Q Q endstream endobj 16 0 obj << /Length1 7876 /Length 4803 /Filter [/FlateDecode] >> stream xY pu~{?HDP'"A�e@HH �I$�luԵ@*q2i34v23zTI&m\tf#}8Ҕ,i&޾o~�B#b(�)[89'KB|&yZ{ )1/y_" -o{1`BGQe:u6?�ZD<|(#K7Pr.,N(!M,ExT zgs}ܯ�8F̉M},`(>" 8Ves 0{N2ĖKRb[םBlO/|hZ>ݟ.:SCTkr,AvmҖfXLbKsn""AhYz(WOu_c֧mGUZiW.?l͡|IuC>y<gM=-UJsvQM4X-mlK`1%4I.b[J&EON;i>X״i-46]L,Wꩩ<FBkZimWwdh1n"876՗0,�>V>-qdӰfgClkˬ;D T6!$@"+ JS\Y^Y쎣g)0*F]YVƭݏOߪ?R]} S!@gSqf%CHdm 4{&3>vWIж6BDg0i*Q;?9sG\{rsM{-҃2CRQ7>j9)GOB?>@/=O>6 &GӲǵ;<X`j9)wç5Wk6jhrib J|UܩJӮWgU,SXWf׆e� �Z5l{aUw:Mce\르~\Vf7쬧SUvKhKSjFSAq7> MG A>g޶JhS\~,9rc~/:rw4Ȯ ̸"tfs 9P<N,;Z;j:2-k*<§Ni- SJ6s]E"s[(urv+75$ZՒMwl|k5G4jˡS~&&:zsy}$:HUO�ZæWβ&G$&}̖5Z@6slc9bAVjjr65yiJM/{42f66>Qj$GeJ\j:; t hvMMZj 훚-((k_;?, O$yx z�/|�p`΃SxބZ%csx&Mn o~-#-wg8S-O0K@W *JT@lmd6h ~ 䅫?Cṃo/d3<ÕlA8C0 (|\XG)8 x P\]𚂋?*#;\zbQp56Wt+t$sDp3 rrEPO~๠< (xT|0 o)x>t c�:Q/$C/VT2gA5xRtn>Ei<>^X)I'"҉H%C ی/MXR8 Aib0u#ω^I.EAX1Oũ7IM50;[^-ns!X;N&\46GtL'MmbXR}oK"Kh<F{aIX=@ 6Fy8c4IC4 GCKvo);!M۽!E;8H2:zyX(ل'Q ; h,iIEΒԁ!ddSV)p;(Lvo#Tb8{3E\$DCN)؏[|O:#TN#Ts21NL-^O-D0{&1=gS",_3X= Ghj>Bt4e lr;RtzcDQ3^:警=Ao=<890ꛤ'&G&=^::A{GG܃#(�q7HYZ2IK4XF"m+ggLDf-pb4&k%/FS'"K1'Ktp >5U伲S|€Zf A97#oXeͲjzq s0v - iSh,̟)LU)ž,gոz bB8I<Wy:n?'Ay<("QDݼ g>|a a*%.=Y+2m\XDyxsuM4;$̰-kR~&Kٙ.r_nF$/υH 'O"mXVlnƩ"Rrf)H%#4mH\Xtpf?,&D'b-sBGi&uI9=f Ko!RKX8J"\΀o\Uc!d.C6}cx_'+뤻Vb@=$":읔!5so^vhQ W!hPW<*|xZw-J /{X+UEa:W𾁷 D ȼ2G1!wѬeuxQkDsm߿1;+&MBnAߥ⯘">,zvϊ3+ϨiEEEHn\\\ J"K• ^p j& 2s x{?.VogYƜʘ5hKsd-l^a9aWRX b{>wYKOfb(\ScSAߨO=6ޤ FOZr_ )Z}A+78</ PaW*V'6ZNfbH;*'d# |GW y2عsгkHnƊUV۵Z=d2$MEM$iKBSǓx8*j"Cr/6ӷ샠-AI\7{x@:q`]55:=5RlЗ芋 r9JD/6x kF3Y !e|nՑi[5]9{+$:ꑨ#Dȑq?Ϲ�y]UÅB,A=y7IziOЍ|yRo$�yXǚGJ=]W=h ٰhظ6Z,{à\$yrJY+pJeZbEO:}Z.u[;K<"7HnlcC[ }2$VD޽~+RU!j7h_:eV%ҫ= c~쵖yQ;uy_lQ,X|;(Y-%Mjt}jYs4 ʸ?+ 2,Yk->ֲٲ=(a4%LH^| ~mHz3u)Z5RY]n^;`.i~}kjJJ]0 *' H@ -I\nBJ<N bn>)%dԳOf'.J7Y+CpF%;=n62Yn\H~l`8$_̵VjhWbxlø*gh]HH%%zfB+ S60:s7fi0=eUKQ ڇK9Ǫ[(KszS͐'V| ^&;`, `3UZ&ъbpJRD HTvܘ{xDg(qE,tXyS`ΔlΕ%<LZițfBh ,]J|`#0M0gxƤW].-,9hZ %knd7U<1"Ox_'&"{ pqT`(@&Pr}+.ު�gcM̚t*8.a}{Y| 0XCzL.ԵJM'Ez|~0kA*TZ>4gz(˰/tC�wírCqKY>�O{2<6~= ":|] 7?;&<; 92�BF'hB/roBߛ|g[ëG"[xU#~x^XF=< 7V|O<s.7`MA'JM"f]7>/%կ F)@3a!qc.|Sx׍7񨮪 mB a-sfZ endstream endobj 17 0 obj << /Type /FontDescriptor /FontName /ca7dbd+NotoSerif /FontFile2 16 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 18 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 19 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 535 369 538 634 319 500 500 310 500 500 500 500 500 471 500 352 500 500 500 578 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 20 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000001623 00000 n 0000001950 00000 n 0000001992 00000 n 0000002040 00000 n 0000002092 00000 n 0000002257 00000 n 0000002327 00000 n 0000002372 00000 n 0000002642 00000 n 0000002912 00000 n 0000007805 00000 n 0000008019 00000 n 0000009381 00000 n trailer << /Size 20 /Root 2 0 R /Info 1 0 R >> startxref 10295 %%EOF ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/running-content-no-column-rule.pdf������������������������0000664�0000000�0000000�00000032031�14163570564�0027150�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Document Title) /Creator (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /ModDate (D:20190704180933-06'00') /CreationDate (D:20190704180933-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 10 0 R /Outlines 13 0 R /PageLabels 15 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 842.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 698 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 192.5425 777.054 Td /F1.0 27 Tf <446f63756d656e74205469746c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 746.406 Td /F3.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 820.398 Td /F3.0 9 Tf <6c656674> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 522.214 12.388 Td /F3.0 9 Tf <7269676874> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 8 0 R /F3.0 12 0 R >> >> >> endobj 8 0 obj << /Type /Font /BaseFont /68f192+NotoSerif-Bold /Subtype /TrueType /FontDescriptor 17 0 R /FirstChar 32 /LastChar 255 /Widths 19 0 R /ToUnicode 18 0 R >> endobj 9 0 obj [7 0 R /XYZ 0 758.37 null] endobj 10 0 obj << /Type /Names /Dests 11 0 R >> endobj 11 0 obj << /Names [(__anchor-top) 9 0 R] >> endobj 12 0 obj << /Type /Font /BaseFont /f5c32d+NotoSerif /Subtype /TrueType /FontDescriptor 21 0 R /FirstChar 32 /LastChar 255 /Widths 23 0 R /ToUnicode 22 0 R >> endobj 13 0 obj << /Type /Outlines /Count 1 /First 14 0 R /Last 14 0 R >> endobj 14 0 obj << /Title <feff0044006f00630075006d0065006e00740020005400690074006c0065> /Parent 13 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 15 0 obj << /Nums [0 << /P (1) >>] >> endobj 16 0 obj << /Length1 3744 /Length 2184 /Filter [/FlateDecode] >> stream xV}lS?gqȇB̳ώ?8$8g! (_l??v h-Z@[>P"DcZi4iiCe&MEڴRHB:f{{ �dB$SZރ(}<53=,:!G�%]8gcB9MxK$nTڧn"G3`h6;:|C:ړ1_a @Uw.Fj@E@`v)@VJȠ3賦T+e>C l�+@Ԍzz_㈃<L^U]xL5ojl sWwK7oL].|+Q(kdoPzSV=sbh kE] `$T͒\A*)KbhE* ݲcf*^מdm=RAc 6sB9sUPkr}5zc$5 bMJ5ZI=`$x١'~:ꔿ39 ٯsW }٠ciu; mncQD} lAw<iLFZ֯''xuHo^ΈW/Dh@t_8cWFOpˇܘ=so)$'v5I9yzzyuKxklu76Z:[[O᫭_Vbktv[s{^~oAJI[4Ŭ`(y1A*u [XtKӭ ۃA-6Ƈt}:[kf‹Q_ck3=g.Zݣ_> s4,jZ|շ'[qZ4s$&:BM77Dyg\weo*?mB3=(ϭrTWI LRb*SeN>.|r콓aB]wsVn<^]KP&jn.e%!z:H.Yj|j*hXt֘0Z0[hȌlПԻ .=[F_5<ON->5rwTf\kEbo^Q5 ~ѩݴclUfޯlr:k7ԍ&QwgYwԯ:a!ݹID?n(N.UKy5'8F:R[ $s& HO�;}t]iN/\ Xa0=rH9C7q6$?,d,u e¨B�Y Gq]Z<8::,h E4^޾xC#r=ⲩϸC ) ZE\G+8 'x@i0[ NC TR ΀jQpC BIWC uD闀:)5sW'% ^ Ҫ॰ (\DPp-$R20{ ^]t.F _xVˁV ´+x<&ffx"zܭvP) ۗJcPs|Y>6!3XICFk7 8*"0! Ia;`UNxlyz1FļȎ Ov^VS1G,bZdS!O㬓}gęie=.#@vⳆՔu%4ʹ}t&)9$b8{Ӑhkj zedl$ aVZe$FɣLaDٳ5HdGkKlkɹ]KEv:HXK cͰhchC(/qi+b0<3I+*x..+BGD\y\߁ 7.,r<)'gI+q)Ge[2u.?K_YVz;4c! '|:N,Ol_&FiaùaD+-bJcraJqHC+Z+״ =R!/cDqWE5602>X{e2g1.r"Xx`�+΢|Qn~x/.>[x6Nhe˺ endstream endobj 17 0 obj << /Type /FontDescriptor /FontName /68f192+NotoSerif-Bold /FontFile2 16 0 R /FontBBox [-212 -250 1306 1058] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 18 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 19 0 obj [259 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 767 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 652 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 526 1000 570 1000 1000 1000 352 1000 1000 352 985 666 612 1000 1000 1000 1000 404 666 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj 20 0 obj << /Length1 3892 /Length 2351 /Filter [/FlateDecode] >> stream xV[p>+ɒ,[HF֒eٲum؀1ـc=.1fJN3CfZҙ2L: =tΔ҇f@[`ѳĴ}jvW?;9 �(RHb\R"r E.W% k&| 6>Se# m\{inqHDўE9"GОO&ҙܫDx> iB4TROx�*+ $RUr/UW>86dZP3K]}AZbIV94ՔPґorg]=}jM ߼qvMGS[ʉ߾A\geĸ/WG&  G *xDM9}J`gp1qSeJ}hG e/ٲ-ٽw=ǩ;?}gؼ[\' }4~]쬓5Gz;h0i|$w|$@)�r6khI|^;s{|zL%zQM4nZ ^WSgOηk\L]kZewHl9-9CHl5(51RZ C34<;Yy(FTQ+ T%&+qԴ5he􌊦kڲJo/L߳:͌S۰>3zfGAo^/4Ժǝmд8s UvIUrN[*iΌ}mMMr);y`i_DžS{ m09}rU\+)37TכYǻƽ6Tmo}xIz t"YCk $s[/l-1K$g:KA;s{b}%[›ڸFru|aã&᭹:=oK9 qyRo1xXU R++]*: >xM7i7⽤L ݽ@ qk&y缯|{3߇Oz~H2bk>n:Ժ(=^M &~sKBwܸ*HM e"-x5xFۉ|ozzpIsVMoD7|ƙloor*u)ݝ:"õXKjo_D۲G"gP2eG]ަ^RΏ/Lw8>trż 0?M!z RJ5NVXǪH)wƓck}kF.#S) [͐vƦăxdA/z\#_d,)U;.QwdCdlR ȗFZi \o`f~Z;scq}qg~tD ~hK$$HI>S qXJJ|~8G&&FyS knbOo^GĵY8ro5zba� _9qU)'@gE8 SPDµcX' ".5q)Đˠl[L ". wW\fUĕX)WM~"KVh[UK͈x +"^/E,ZKadt0\JEB 㰷;D" 0>FPHR, B)@2: h( q}ꬴ`@_x"`HOO'"e\J,: -OdH9ƅ"ce lCqs+kLT:3d8ćcP %q,no= ב41ĸ~&,T dD38) $%y_EpxrP  řL1{H _Ӹ@1bC\cp$=_v'e&,P<g _L8Ivl?Y_"fKڐH&bwjb}<Ҕ'񌋵٘:#'</ ?<4bY=4iT,RL&`oHҁc8LJu =x>ӆȓ={ GN`&R![4"m<8<>5lY/WE)ԆFO#27Sx k;JO{, /ιwqo}H۪ endstream endobj 21 0 obj << /Type /FontDescriptor /FontName /f5c32d+NotoSerif /FontFile2 20 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 22 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 23 0 obj [1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 492 1000 535 369 538 634 319 1000 1000 310 1000 645 577 1000 1000 471 1000 352 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj xref 0 24 0000000000 65535 f 0000000015 00000 n 0000000268 00000 n 0000000470 00000 n 0000000527 00000 n 0000000578 00000 n 0000000850 00000 n 0000001599 00000 n 0000001908 00000 n 0000002077 00000 n 0000002119 00000 n 0000002168 00000 n 0000002220 00000 n 0000002385 00000 n 0000002459 00000 n 0000002608 00000 n 0000002653 00000 n 0000004927 00000 n 0000005146 00000 n 0000006508 00000 n 0000007634 00000 n 0000010075 00000 n 0000010289 00000 n 0000011651 00000 n trailer << /Size 24 /Root 2 0 R /Info 1 0 R >> startxref 12778 %%EOF �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/running-content-run-in-image.pdf��������������������������0000664�0000000�0000000�00000033176�14163570564�0026577�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.beta.3.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.3.dev, based on Prawn 2.2.2) /ModDate (D:20190803021630-06'00') /CreationDate (D:20190803021630-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 12 0 R /PageLabels 14 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 842.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 623 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN q 18.0 0.0 0.0 18.0 264.4301 814.89 cm /I1 Do Q BT 264.4301 820.398 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 282.4301 820.398 Td /F1.0 9 Tf [<2041> 20.0195 <434d452c20496e632e>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R >> /XObject << /I1 15 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /b4f394+NotoSerif /Subtype /TrueType /FontDescriptor 18 0 R /FirstChar 32 /LastChar 255 /Widths 20 0 R /ToUnicode 19 0 R >> endobj 12 0 obj << /Type /Outlines /Count 1 /First 13 0 R /Last 13 0 R >> endobj 13 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 12 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 14 0 obj << /Nums [0 << /P (1) >>] >> endobj 15 0 obj << /Type /XObject /Subtype /Image /Height 64 /Width 64 /BitsPerComponent 8 /ColorSpace /DeviceRGB /SMask 16 0 R /Length 2456 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 3 /BitsPerComponent 8 /Columns 64 >>] >> stream xZkG>3+ Y bBH$HbL%UhY2V-�CH4وAŐ!}p;39=;wגּvgvfPA4þXoŒ F_~we^\WR%/O+xֳ}LCd`g>�5Q̭ G{`5@X`BBpN.bȱ �,70!3$c =ߟݯpS^df;2.[>Ըk>w\_2vqӀR "wȽ*u5@?dG#�.(Ӽͫi^YH7�)(>lE- xmY ?f)a@ "{ˆhs,3[ZR !�Pܻ[2I >B>~z02HGO}n-GOۼưP<H Y Esz]48}ۿ(+5q/QٸAn\a47�϶.wG]-0ɭpL 8!b"S6|jKJ"+g+�[d/$ұOŽCwM1a`ڇH!B]~L̶o${ɳ0C 2F |k 4߿ BuuwӫHmX P ~byH/2!xSreHxSk@AI[:ZpDӜU  / fǰ=<&A6m Oؕm,J+U :B�^=$W-8ٞĕ^e6WKVNK9Cu#OW_̱p;oC_;93 Xb<wFPhN��1/ŀze~+=*0‡"U"JRCU>H,*`s*'3HWRwJXCrf`0Nn&&,J//8PrqtUªJ9oWZldRA jڻYhT.uFӌ;ڕ TZ'?(i䷿p?.Y*) )ݭEsR\G^+/ FsGCHB߸i1s*E8hW.<C˭UX(�8! ? ^+i\жWWJf|dS++آ<UDy$fɊ{Q2g.FGD{Ⴉ?fWN^\u֕n(fq4Ħ,4&q_iBb :O=9~Yws;܍R{"$ef~W#^%1 IZ)�E-_VoXcrF�r/ a UX7NN"8Yj;Bw.-x,|˺_fͽЇQ,'Ku_ސ~Ę0t}qɕmQwEr:UH: b+hZV ͡p_Qu} 4&"ٗOgnAUh\�xH0\TB ݠ1~b42L&gkoG:1~ MeҮz|Gܴ>vG#Q`ڗZoD6h UᱭC+H<(:Ի{d?(p2PVsﻻm8U{6~EΖFT1QŁ [7Xd!$8wG<GO{_QsUIj^8/3RhF32^ܩGm]OqM\<&f v$5*c;AOTV9)ǒGIU*q\*$D*tYoĕYe6Nğҕ,ۻ:knW uj!@B]ttu s ej)tdG$;?(K>4EǵV9^*8&ߜ"荳6״FUu=ٰX^:?巜LA/(:)3G~<*ǒ0]cK,ͰB`U%,C勅Q9 +rjmj3(Ɗϵc~S aN}ULS( Sv2/bpyN͙||YM<'t4wUsԀ{`}(BV/%[:0U"%Z0ä<̄tHJX1zCq_i@7ah7<%'Eɉ{ Q-&qcN ʬr& WΩ+8\<uKWJK?!c>n; k{gK endstream endobj 16 0 obj << /Type /XObject /Subtype /Image /Height 64 /Width 64 /BitsPerComponent 8 /ColorSpace /DeviceGray /Decode [0 1] /Length 491 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 1 /BitsPerComponent 8 /Columns 64 >>] >> stream x1nZA݊S#A.‚ J� ȹ!<)9D Lv# o7R,hB(29p~٨/]ϲ۟u[Lz< ơ{OP!e[Pez?r5CGKXzX5{7??yq氒޿ 6RWr~&?Wp^MYK';rmL09u@/#  OUkeXkrP4)�#8z[p`S !~oߧxڻ7$E{Uw>A13j]&AhDt³̢qv]ǪKsp̧Pq̇0w|̛k 5pBX]eǃ n&/OK d0n k endstream endobj 17 0 obj << /Length1 7876 /Length 4798 /Filter [/FlateDecode] >> stream xY}pSו?=} [61W~lK6pmI1Kɖl)%!HfP'RJJ4fgvNgn#mi)0Mw6a2 ܫgc}=w=d �j@ gǽlCzD~@F\|2of,<MjohShS@\F'(cqq<yolC #r !︟}eHz�rH[M�y*�1pqo:8�[@65'/-yhݗ"2暙Y"9"i L-hICIPn]@VSPZ^Z}X|Pa|5%4/n\ǐk)f#Tj%,K"Y?fgӆ}=s1^s H&Hn]ԑbQD4lQ+ m6s"xmiRr,0s!W`E1S%kU>[B.]]g:zjO5M$oΩ-[O הb[VLe>uv_1+j+-h{)ށoVXj56ktߺy+kʚ-%}cI?DCܖnL?+#Nԉ)4MT01טo$WɱZHPgJ7 ER*- ղSeQ"o`\JL_Z$c0qgyqs?#00EfSC06W ͥ}wV6̭I[ܘ�JsD{NOӢ De8QPITu$/s] ukU?Fk]8}qՉ۷/yC<k071Zs7 ֭W@%ZXvU?׺o)G_-G>u'7.ihol)_ӻ%k ɾQؼq463)h8,1Vc #zgYxPˍ_z`vPX=ٰk림U;o]<;]zG{pO䛁u+4E%Mٺ7a,7E0ιugj 2dwmayRm†fLa0a BK:䘽 ([@kzÊ9ߨѶ@_?`=٠XFX~z6l]YBEjϼ{QhzxՉWWbW/*70,0"1Wj@l햫/Jʚ钵 #7ܥRnJJd[W`ϝr;$Xq!K)of,02t [t`& Ox ||M; 1ؖNt]ɆWAgN\ g*G8]2ՂJ5 {zdʆ)E.Z; N}OXDs.>a5Tỉ:aXIeDŲdJDye)O .L\pIEh\d@O ,Ҡj($- q+m-+4'W< ֒<BjT3$lU -PL(~,~MXU,h{| )kw<c '‘h NԮ蘟vMel~ 8Q( a^AŚB;?Ja0a1Ϗqɏw?rp<Lhpa ka?:1a0^n4y; je;28A:e8EgݒA4 hf= r48'LC#u+x{B/)Gn/Cq3}?Npp? w><p,l(ya{i c(>:tΓRq$5!܊x*ag!";);#f?l5 ͣ yő3<?&$O:#TfkV&y0NO/1&p!=L{8Haoe,8Г!?J?utn=(-PEfeޟţ EMo8h8:UtG@Gsho9hO?mvttd-nm ]-( GƂ,~JG©"HpyCQ\EBp|`hx?bi}0<Ȅ[(0'&se'a?>rF,&ۚeU:pl{`hE UPq~ Uqžץx:v`B+؁|Lnn; BhAGtvnp {U)Dt�=;2mu#<<!JGE11H暔?B[s_E$ϧHwف ͟6L(6չs)6 F1S,8f GG=m1\ y?(M1Տb?6D'97<^T7LD}{!6Dw=ɇ^nj`-cRDy kϲ!$uˊޤSNIKDדּw̒ggɑYD QYpt.J9XR68IdrLd 50=KP#h," ꪑGwϓMZ*PE-X[X+U,"Ȱ9+XnbQH#c!2/{eSHxunN6\'䇖]#j5Rhֽu|_ɒ7cyɑzr&=~y|BϑFt"Re'u'+'$y2yR$(ѓdN+'TϞ8sꉛ''Lz$KKX*a:/MhU (I^<=^7w'zp^,{,sl#oeG~f2;(nq88:o:ս=dM;ѤugA]38uu9Ny&j%J1 5 *&3􀣲kFdrT.sҷSskgOLMA.y%{Vd6,qbJ~X^+!6*cj=1'+ZX4!Ń ً|@e%ӯdJ* bsޞۺvvmֶ˖M4nڸa}CmT]lTj,)rdfi5j^Iv=\fE�)bM jܣiIiZ56ASuIT~*υ)򇼽U\Xш#0`2Ply7&3`:#ؒWKi8-@6,ټ>eFwuU-YyqJY&k9% 24<Y>E/mOɹ*9~!/WIV\X;%e:N~'Gbī 2'vt]IϤw&ydH:ir:+k2bCC G$w ۟v:O4*c/咅2; x-qn@G;ЧF#[ sd|a6- si'zH.kRVu$W>2 od^.dvs]VuTV[p)lȤ ٷS 8Ayn$! I6?PJL~�#tGx=O6KY/Ǔe :\|2LַVFfLm,HH>;Q\.ymmemIoD.|+G`-npK.%%zs54ȭWCڨ`t2=4ːҨK0nT!@ؐZeiXtnm.|Nij[=&/"Ukc0y: F1uUW MqD @\Xbpy$Tژ{xDg(qX$-p ='0gJB\;릓iRcK !2tl5edb`XX䠓RoRr66t VW:-}rԱuQ@ Dh󴺧Wa"pT`(@QH#W.;03B abf0J16c;0qHy,9CʙR+÷0|K 0\A HuաIM||V_e0~sg7uB5o xg=o?ODt;x/~ӿ o3LM@$muQ}/GwX}}A="?= |"[~8+{!xa/*'oy(h?<ނ+b?Dki?ƒpVu[ ^H5hZ֊YڅQTWU7aa&/9F endstream endobj 18 0 obj << /Type /FontDescriptor /FontName /b4f394+NotoSerif /FontFile2 17 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 19 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 20 0 obj [259 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 250 1000 250 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 705 1000 613 1000 623 1000 1000 1000 367 1000 1000 1000 937 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 492 1000 535 1000 1000 1000 1000 1000 1000 1000 1000 645 577 1000 1000 1000 1000 352 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj xref 0 21 0000000000 65535 f 0000000015 00000 n 0000000262 00000 n 0000000463 00000 n 0000000520 00000 n 0000000571 00000 n 0000000843 00000 n 0000001517 00000 n 0000001840 00000 n 0000001882 00000 n 0000001930 00000 n 0000001982 00000 n 0000002147 00000 n 0000002221 00000 n 0000002346 00000 n 0000002391 00000 n 0000005109 00000 n 0000005862 00000 n 0000010750 00000 n 0000010964 00000 n 0000012326 00000 n trailer << /Size 21 /Root 2 0 R /Info 1 0 R >> startxref 13451 %%EOF ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/running-content-svg-with-local-image.pdf������������������0000664�0000000�0000000�00000032622�14163570564�0030222�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20191109000512-07'00') /CreationDate (D:20191109000512-07'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 12 0 R /PageLabels 14 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 528 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf <626f6479> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d /Stamp1 Do q 517.165 0.0 m 547.04 0.0 l 547.04 29.875 l 517.165 29.875 l h W n 0.0 0.0 0.0 scn 5.97500 0.00000 0.00000 5.97500 -2572.89588 -148.62812 cm 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 cm q q 5.0 0.0 0.0 5.0 517.165 24.875 cm /I1 Do Q f Q q q /Tr1 gs 0.0 0.0 0.0 SCN 0.5 w 517.415 25.125 4.5 4.5 re B Q Q Q Q Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R >> /XObject << /Stamp1 15 0 R /I1 17 0 R >> /ExtGState << /Tr1 19 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /fa3fc5+NotoSerif /Subtype /TrueType /FontDescriptor 21 0 R /FirstChar 32 /LastChar 255 /Widths 23 0 R /ToUnicode 22 0 R >> endobj 12 0 obj << /Type /Outlines /Count 1 /First 13 0 R /Last 13 0 R >> endobj 13 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 12 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 14 0 obj << /Nums [0 << /P (1) >>] >> endobj 15 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 595.28 841.89] /Length 162 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d q 0.25 w /DeviceRGB CS 0.8667 0.8667 0.8667 SCN 48.24 30.0 m 547.04 30.0 l S Q Q endstream endobj 16 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 595.28 841.89] /Length 162 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d q 0.25 w /DeviceRGB CS 0.8667 0.8667 0.8667 SCN 48.24 30.0 m 547.04 30.0 l S Q Q endstream endobj 17 0 obj << /Type /XObject /Subtype /Image /Height 64 /Width 64 /BitsPerComponent 8 /ColorSpace /DeviceRGB /SMask 18 0 R /Length 2456 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 3 /BitsPerComponent 8 /Columns 64 >>] >> stream xZkG>3+ Y bBH$HbL%UhY2V-�CH4وAŐ!}p;39=;wגּvgvfPA4þXoŒ F_~we^\WR%/O+xֳ}LCd`g>�5Q̭ G{`5@X`BBpN.bȱ �,70!3$c =ߟݯpS^df;2.[>Ըk>w\_2vqӀR "wȽ*u5@?dG#�.(Ӽͫi^YH7�)(>lE- xmY ?f)a@ "{ˆhs,3[ZR !�Pܻ[2I >B>~z02HGO}n-GOۼưP<H Y Esz]48}ۿ(+5q/QٸAn\a47�϶.wG]-0ɭpL 8!b"S6|jKJ"+g+�[d/$ұOŽCwM1a`ڇH!B]~L̶o${ɳ0C 2F |k 4߿ BuuwӫHmX P ~byH/2!xSreHxSk@AI[:ZpDӜU  / fǰ=<&A6m Oؕm,J+U :B�^=$W-8ٞĕ^e6WKVNK9Cu#OW_̱p;oC_;93 Xb<wFPhN��1/ŀze~+=*0‡"U"JRCU>H,*`s*'3HWRwJXCrf`0Nn&&,J//8PrqtUªJ9oWZldRA jڻYhT.uFӌ;ڕ TZ'?(i䷿p?.Y*) )ݭEsR\G^+/ FsGCHB߸i1s*E8hW.<C˭UX(�8! ? ^+i\жWWJf|dS++آ<UDy$fɊ{Q2g.FGD{Ⴉ?fWN^\u֕n(fq4Ħ,4&q_iBb :O=9~Yws;܍R{"$ef~W#^%1 IZ)�E-_VoXcrF�r/ a UX7NN"8Yj;Bw.-x,|˺_fͽЇQ,'Ku_ސ~Ę0t}qɕmQwEr:UH: b+hZV ͡p_Qu} 4&"ٗOgnAUh\�xH0\TB ݠ1~b42L&gkoG:1~ MeҮz|Gܴ>vG#Q`ڗZoD6h UᱭC+H<(:Ի{d?(p2PVsﻻm8U{6~EΖFT1QŁ [7Xd!$8wG<GO{_QsUIj^8/3RhF32^ܩGm]OqM\<&f v$5*c;AOTV9)ǒGIU*q\*$D*tYoĕYe6Nğҕ,ۻ:knW uj!@B]ttu s ej)tdG$;?(K>4EǵV9^*8&ߜ"荳6״FUu=ٰX^:?巜LA/(:)3G~<*ǒ0]cK,ͰB`U%,C勅Q9 +rjmj3(Ɗϵc~S aN}ULS( Sv2/bpyN͙||YM<'t4wUsԀ{`}(BV/%[:0U"%Z0ä<̄tHJX1zCq_i@7ah7<%'Eɉ{ Q-&qcN ʬr& WΩ+8\<uKWJK?!c>n; k{gK endstream endobj 18 0 obj << /Type /XObject /Subtype /Image /Height 64 /Width 64 /BitsPerComponent 8 /ColorSpace /DeviceGray /Decode [0 1] /Length 491 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 1 /BitsPerComponent 8 /Columns 64 >>] >> stream x1nZA݊S#A.‚ J� ȹ!<)9D Lv# o7R,hB(29p~٨/]ϲ۟u[Lz< ơ{OP!e[Pez?r5CGKXzX5{7??yq氒޿ 6RWr~&?Wp^MYK';rmL09u@/#  OUkeXkrP4)�#8z[p`S !~oߧxڻ7$E{Uw>A13j]&AhDt³̢qv]ǪKsp̧Pq̇0w|̛k 5pBX]eǃ n&/OK d0n k endstream endobj 19 0 obj << /Type /ExtGState /CA 1 /ca 0.0 >> endobj 20 0 obj << /Length1 7068 /Length 4175 /Filter [/FlateDecode] >> stream xY}l[u?}Xd}ٴK?DʖeDz,S$KE3$ҖHN-­GGq0ձM%@ɓdJQl mm©t w,Ζ>{s}�XMǧC "ՈONL|N۟�MC$!4HQ82~ɠ 2T?"[CO$q ׾̋}Q`"JD �t M+u((؄taa`tM$ğ|w"19}ݹ�M]45�h8�[ڊM=.]A\mI%vEZg�h.[,%[+[_>E-iF_Ё(-6al4nZ+iU zCsؼV [JʊZk4ʁU./䃍f2V۔O[>0xa6wr8iۿxƹsˣuM}c55Z6;XZ^z%թ鿙ڋv?v>P ro.0CmD[앹UR13l*c{VU,ShԐ3xpE{/n~e88ښxԿBQ: M-rfn+iR[qO;~[V.:O9rssm'kחϑ:Rs72mm7SY+ahEH#6a=z}XNo'-{atV_kk˗xOfGٰ|dZ' ϗԙ$}YPtã붶Oy2ڧG3tѦ2zy^uol|0V4Z 1n<үǤ}l_^(Y[/\w/GtT Gqշ> I%aT�H'H:I Rw t sysyQ`{ na`f2;ӃHx6q8BppJઆpKPH5\ bp A p=H@k` j:pnJrMÍ@PCآ`kx!<*<EP'TË] ^+bh4|k:y^ S^{ t3d$Mw7M)mcjVRJ☀3(LB܅%Š3 S1:zxuTK r2 x:NJ2:ȓƛkDabXL|$d0#X<=@C$mkX C3͠yq$Űx[2$Sx5QgsQ w"<1beD3FS4DPX%OZ);!N)q׿N.%%4.8JB0 C41MJUp46!#[b[Χ} 03ǎtED&{mi!q;Ͽ4Rbdž$wiCgđʎvm8אOk t&}O!`D0=<XzCITt\ГXXItDޞ>:Pby徼Bldh*e0F5C1K{[hg@G:;Gz^:0L~<?@{{] T9I<'it:1e UN+I%DtNb$"$)+0:<?$c,g$ n-Ն96>ͷ/8i H6z?XeۚeUzqa=Dt(,4?tЪf_3-xzbB'x[#ЍVfrX܃Y/_0Nqy{0n{'ɥ'3I#S$_4+W>3ΎdI3!Ɵ!u n4JDRZZ؉t99XېlՕs)5&)[*:e''<6nlbǟQwٓWN݁"#Ŀ{eϧסPqh]IfKoG7$pD"! s>5G)G|Kt\X"Kc#g݈�P*ŒRJGQ<Y�gM{fK1\[:Ht#a-1U([CX[`I qF\6d2 s5U!WI7yI􋹏(Atd ߛEGDRսOf/g/{^~PPp2<qe..%.^yEEEHn_] J"91?_.̿4}|n^da$ӿ.xW\Hj| RNf9Is8(\Sv_Arxo.l /ψEHei1:8* nt#bwWa.7vMf_UsLͥ>ߺRRPۥbp$lёEˆj]4{U1S뽬t UT=_ ٹ9ܫ@Ɔ5faڼPT*N'PBjIYSo/LxOGeyMdCN>`2}+.>ZSx[րFCGztwy.ggP޷eWذcK]MEd]QaѠI"z-{TTmrww#5@PwHsJ\ޫ@͉4yMǪ&16hkln?qtc{%1omi֡`ꮉJԭzNG  S)ll"laK!'Ȏvw�ulZUw2[,ƆDv.prJUT Fp.4}fcAkqXbfEw6-̪]'U+WVwxu޻SUWoiA["! כ�kzн٬Gl0Z͎$g 7z8j1fL@5#U[1*{h$--et}j_t ?/ *8ր*Y;+=>3ҳ:<(c4{*e7|H|:B!Ԓ9[^F\U=(Uu-8j�6$kBgc3NewP;Aؠv[=†#Ƚd (SrB;WrG~>DV8UkTf,˭Y"^y64n,k=p1*'6wP0 7[TG�)_ DoYuzޡ5NwG#yLOXo~,Pф�`ClR56ap8Һ9f;[qizLTRٽ¦g"8͖%56Mq{KS1i8^üJ"U~6<>Z\G8 ^3UռֹjW{Vi(z\-Q23?)XȞ Ϙ%=qm<m2?*^;؀_L -89Q&�znU 3X؊})C4v�^\w6W0B3`bRsp]z7 Y XCzJvܾ@}Z(+jC ? 7`f*d4*uoA5dto~ra �[rb?q.G=%?]?}oDL WWbN|�!Ϯbaf,̑nXZ~Hh_>H"Jp~*}˛k:~!2+ؓgdWv%}�߃~#lӐ[_~*s*|5tZ5GV+ WPxJf{wUH%qt]%; rc�u,J endstream endobj 21 0 obj << /Type /FontDescriptor /FontName /fa3fc5+NotoSerif /FontFile2 20 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 22 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 23 0 obj [500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 613 500 613 500 500 500 500 500 500 500 500 500 500 577 500 500 500 500 500 500 500 500 500 564 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 24 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000001418 00000 n 0000001785 00000 n 0000001827 00000 n 0000001875 00000 n 0000001927 00000 n 0000002092 00000 n 0000002166 00000 n 0000002291 00000 n 0000002336 00000 n 0000002606 00000 n 0000002876 00000 n 0000005594 00000 n 0000006347 00000 n 0000006400 00000 n 0000010665 00000 n 0000010879 00000 n 0000012241 00000 n trailer << /Size 24 /Root 2 0 R /Info 1 0 R >> startxref 13155 %%EOF ��������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/sidebar-page-split.pdf������������������������������������0000664�0000000�0000000�00000053451�14163570564�0024633�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20200101035942-07'00') /CreationDate (D:20200101035942-07'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 15 0 R /PageLabels 17 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 2 /Kids [7 0 R 12 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 4066 >> stream q q /DeviceRGB cs 0.9333 0.9333 0.9333 scn 52.24 805.89 m 543.04 805.89 l 545.2491 805.89 547.04 804.0991 547.04 801.89 c 547.04 52.24 l 547.04 50.0309 545.2491 48.24 543.04 48.24 c 52.24 48.24 l 50.0309 48.24 48.24 50.0309 48.24 52.24 c 48.24 801.89 l 48.24 804.0991 50.0309 805.89 52.24 805.89 c h f /DeviceRGB CS 0.8824 0.8824 0.8824 SCN 0.5 w 52.24 805.89 m 543.04 805.89 l 545.2491 805.89 547.04 804.0991 547.04 801.89 c 547.04 52.24 l 547.04 50.0309 545.2491 48.24 543.04 48.24 c 52.24 48.24 l 50.0309 48.24 48.24 50.0309 48.24 52.24 c 48.24 801.89 l 48.24 804.0991 50.0309 805.89 52.24 805.89 c h S Q q 0.6 w /DeviceRGB CS 0.9333 0.9333 0.9333 SCN [2.4 2.4] 0.0 d 52.74 48.24 m 542.54 48.24 l S Q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 255.3055 780.006 Td /F2.0 13 Tf <53696465626172205469746c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 63.24 753.446 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 63.24 725.666 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 63.24 697.886 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 63.24 670.106 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 63.24 642.326 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 63.24 614.546 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 63.24 586.766 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 63.24 558.986 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 63.24 531.206 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 63.24 503.426 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 63.24 475.646 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 63.24 447.866 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 63.24 420.086 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 63.24 392.306 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 63.24 364.526 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 63.24 336.746 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 63.24 308.966 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 63.24 281.186 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 63.24 253.406 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 63.24 225.626 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 63.24 197.846 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 63.24 170.066 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 63.24 142.286 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 63.24 114.506 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 63.24 86.726 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 63.24 58.946 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 13 0 R /F1.0 14 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Length 1244 >> stream q q /DeviceRGB cs 0.9333 0.9333 0.9333 scn 52.24 805.89 m 543.04 805.89 l 545.2491 805.89 547.04 804.0991 547.04 801.89 c 547.04 698.77 l 547.04 696.5609 545.2491 694.77 543.04 694.77 c 52.24 694.77 l 50.0309 694.77 48.24 696.5609 48.24 698.77 c 48.24 801.89 l 48.24 804.0991 50.0309 805.89 52.24 805.89 c h f /DeviceRGB CS 0.8824 0.8824 0.8824 SCN 0.5 w 52.24 805.89 m 543.04 805.89 l 545.2491 805.89 547.04 804.0991 547.04 801.89 c 547.04 698.77 l 547.04 696.5609 545.2491 694.77 543.04 694.77 c 52.24 694.77 l 50.0309 694.77 48.24 696.5609 48.24 698.77 c 48.24 801.89 l 48.24 804.0991 50.0309 805.89 52.24 805.89 c h S Q q 0.6 w /DeviceRGB CS 0.9333 0.9333 0.9333 SCN [2.4 2.4] 0.0 d 52.74 805.89 m 542.54 805.89 l S Q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 63.24 793.926 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 63.24 766.146 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 63.24 738.366 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 63.24 710.586 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 12 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 11 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 14 0 R >> >> >> endobj 13 0 obj << /Type /Font /BaseFont /cdb335+NotoSerif-Bold /Subtype /TrueType /FontDescriptor 19 0 R /FirstChar 32 /LastChar 255 /Widths 21 0 R /ToUnicode 20 0 R >> endobj 14 0 obj << /Type /Font /BaseFont /b34495+NotoSerif /Subtype /TrueType /FontDescriptor 23 0 R /FirstChar 32 /LastChar 255 /Widths 25 0 R /ToUnicode 24 0 R >> endobj 15 0 obj << /Type /Outlines /Count 1 /First 16 0 R /Last 16 0 R >> endobj 16 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 15 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 17 0 obj << /Nums [0 << /P (1) >> 1 << /P (2) >>] >> endobj 18 0 obj << /Length1 7928 /Length 4756 /Filter [/FlateDecode] >> stream xY pՕ>۲-?/~đ,ٖ_qmɱb/YBlɖeIG@�%P37&f;,e3- v3aô øs~;2|;{9K�PJxv:_˫5�ɟ;:'a� f 8l Ew4<iP(Q} B2c@sqg#?Д [w >?C/~ 'w - Bc_ O,F_=# afC�t}�h3Q>E8jJ[ πLu>ff*hi!ЊMwt;s{CRYKʷ0sM]UWYoj<˸B]'"$V`+.)ĕ&WWνz+v=y􁚡Vn{pSy-Mݵ{[b~]LcY[W1fistWn͵W7Vvm%{!s]e*\P&ffx1W`$|hrsz9sWM"'"\EAMߛgD"ۛL=czXEK AE�ry::/RlIẸ̈-݄m0vN4i'?[Wh3Wt5۬㩲;ΪxC-}kl3DNv(ϪUY'*^}O#bЖQ!4H y:Zvj;#kmlinVzS3}vZ+ͤfmАBc:|?ܲ;pgT߶F2, \9Ca2;Kc =ukí{o.)uhzDҎ-Vc(;l84ENta|WA}zv<uThku5t cVg]/,megwZ?jXh)˸mufn [瞚A9wc>h`'B61UCO}ZĶo2$S5[vw4ݽk~1mk>lo<_|'_d=Qg+wgueJ3yǪZ(�(_bykHzKwh/-UbXZjJME%kkļ<2?mun nA|bzKϯ<[o8/+O]TodU+b �jɵYlB'Uѣ7k*}gqaMK<]ﻩh5MيHfy{=7^Zy0vvUp?]׺='%^2ƖB9fZZB\_wmulq, <*.W_iwpSE'y2}2'/x+\#~W9S tᠲD,(,PwkLsjE}ZZΌb-c?Ob8L=G&k~PUZ/K0J)>.u=##{@T)#�y"xC$qf`xC@+0#[J6daDAt4N=%.xB9PdPe9ߗqRW@1ɸ22)*($r_ >YF vkPw2'Y q;d<vp2 f. p{TƳ/ς.>{m-e< x6ρmd<E³X(Fg炂s~, ƃ`H0`>aB4Ke/Y RNi0c9l7G6`�p4\XxQO�.&\�z|4qt-gBpe$<r-N?F|:,7,׫_'x8:/4[`(A=ftRt`jm6RLmUf ?vX\&3$p?z-VÈEA7—<nóDh; ) 2]R~  '00uTTH+MR3F"NSL)YkH�s(XhXnv,sy:4$ja@xXv1+43ʂte-Q\<"/'W\gqq!B!L|BpEgcA/s|=8ƄD((CBp>-<0 WR,XY OS#%BEKp*e;'F % }#vsd~g+ :&!FsbB& ј,̅iUW_Ngœ~v?X"8]�?N iZ.ƄEԄ[(񥥚1'C&gOL7NB7Rpsa;<;h-b?6ͪuvpCh0!recY vMU پN?+u>=z.f~M]Ko F<0N]lMXa;8}"PA*@؎3clD7v7=Sȯ(zMLl4;$htKbYa܈H\_@HW@8oG[d6,6ğՍs)> /$xxZF;6vs"d?o܃謻%SҰͳMco}܎w*RD9aZ‘DykӚpr`b9e,GSn)E6EGܹkRk|k5Bfl*EJ5!7قmf)3p e j U)q[WȮ7z X?z`M/bA`؆,(VWz-pr[.sܿn#껫~^Ijfv=Yd;*~Xpd-Ex|vw~#W;xWyW/n-} SObs>~q>ΐ\8ΐg\>:ΐ gp4}Ϝ_?}47zuxOOr'KOroKւTZ*W5^8fFgx  ` PXJ\W/|MwaripN&&&ۭzwНGrZk4"{l~&b.ם{!r.c~Y*"JBYp+I"ǥ*mc$q n,StPjty$_wP `F;Kі.A7'!`4H,bI,.CT(Ned6.VшC'h/.V-zё}C{{[wWg]m- siGMuUXa(/iss234jRL'H>IQ- QZ# IV)_+# >&&\+iCə$miIۦ$ Qg cr`̃Sv+H>WT3" G]OpHGBIώ2ľ`f 3=iLvtv8ڗ \6V4:qrD;cAS)$5S)pBX6<)qK@ z$ޏc#gjET{翗ʃI;$#:89)ҊBS<!}ǗE2~ ۏM&E?KWRKS[$aਕߞK'"b1 nH\U#ݢMonȌ~@~bSHHKc4Wf1z%G9olp ݔ1.ORRT9}|/-Ma>JC!j1'xV9aARV[p0S萤98Au^KD5TCt#T ԙc:ر9-8,|E\tbf<YÆ$]iydq̂#IsOF'!8y _[ vsڑfr>rF ͋*'IެM30$o3xd NQNѧ`zJ*{;U,Z CiZv7 VpQ7MEI77x ![' _ba{ W mCF"";G5UB7uo_\i7Ɂ Ԉ$U. -m7F C_fIH.O;G'+Do e[״� +|Jy^^a(GQ RB4_,1^!0F`zKc CLl F$>Ƴ!h|>/q(E؅N "e^)Kx7ŻӸj RDLw&Ӓ:S aXyaQyNε? *6x uθYG5|RLJz>m&`XBWp-&w#׏b豃7.sq~#[Gy ?|9s^t|1O眎St*ꧪ{Ym,=͝Ub%MU\⚹%m))?19 endstream endobj 19 0 obj << /Type /FontDescriptor /FontName /cdb335+NotoSerif-Bold /FontFile2 18 0 R /FontBBox [-212 -250 1306 1058] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 20 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 21 0 obj [259 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 585 652 600 600 600 600 600 600 600 600 600 600 600 600 599 648 600 648 570 600 600 600 352 600 600 352 600 600 600 600 600 522 600 404 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600] endobj 22 0 obj << /Length1 7052 /Length 4187 /Filter [/FlateDecode] >> stream xX}pSו?=I?eG͇ٖd e[ֳĖ>cq!aNRJJ:!f䙝NnPff)f;Rd^=Ca7?{={{ι= �MWǧqQD�d m�Tl<(;�gP4<:Rca ʧP'!_C"_CQnuo:ǒ) aeeJ#�Eũ[ 9gvZPW�3>�VR)w!J?E@7E i%Zv^{ D(�h)7כMbU.|]{w;4:eoj@"v -k jRlVl޲TV }g:h;6aۿϰу/ U4jŎ{sִz7v7N]tpGƵscylfR+0t"jĖ͝B~Vo}l?%¨а;j۷s5{o}q@qRK:7WolY[PmoF혟q~̟JSM06N;FxT`@XYXhyNGEo:淮~`N5Latt}pikM_mw5Y/Enj-'Wek 4me"z-Zf�UH͘to~ꅢ'v~{]M7-O3NHHloO|!{S teg,P$[[*M胊*xyK@OvN2z}z^]Iִ)p>"0U _*DLᐦi`8$\ lg^(Yܵ8P\:M0q1i5%~#fQ{^ۂxM.&'ZA:Խnw/ؠh1A?+( >Dw>“ήNu>N!=YGƖa"Ѱ(@)(Y's*..]j@1JHkt į DT*JrYH B(UB(ԩxX*^#*^ OT:,5b@V_<+oj~PBks=Dd275oL]q 횚ì+I夜8,,1QH@&! ) f|06cM{cO 0lu!2QI.x0! R1 @ ay2=LaF $vǢ8<D'i]Ʋ(ZiM"_k MX3nɨHFbQlٴF9DEǖmfFy8c$I4` Xe3EXRD<X 7|{n(mcd A)`*HÑh D/QDʑԂAddK s+Rapfz;Bwّp*oZ|I$we<6mSV4$fBv<B$X?-RYQQתN2iua>J"pOc$bi\fH'6z2YLEh=Meq))4;Yl' EDd,1Һ.uyhwi{\#}n5<50rx{{�%'~׀4'A#ΙLXFS�Y~t"[I2.G&"t*L'qq91I^pӑT0a9ei}4N42JR-au9S|€$/m)˷4C|[ s]]xw�FbuC#";yv, {:chUJ/u=ئe&1;`kn]x~c= |GQ;\{?0-U9$t=;2mLuL#< RQ쮘$qv$sMʟ Qts /I ka'ҝ~v cKQ܆jS0N}ϥx"O%-Ȕ%968PZSxg~]N5|RuS(G{[?a u|cMD} 0H*0#lX+X 5YMYm`֫dɱ,1dwp- Fx>P*Ú2JKJP<դBYǰ"EG2RX\"B!:$Z]cċd]PEX_X5,"Ȱe,h@$kWʶ9dk7 [o|cz:iNtZz"z 1[?_|!.8_}\Px%2K_\9M1|qpV|Β[ggY=Kyߟ|F gu&{FdIMa덉jUMVf5INMpVY^ r,ZVzh/DѶڹi6:8*𺽗׼#[TKt^j2+[/x/]+v].U&@џ"Z2ONύxpR0O!'zmC{ {y|v+=>%߯aclUA?L"ɃIA͐#Isr->Q?NH X* 92 f37샠9̠l;tտt{l;:x}[ښ7Y-M7X3VWJW tZ^ltH�UzR2 ;[GFִ=mIht45RD%:O=kTwf=V`2۩Bԡ83抋z把Y-e#; osWi )C>h2]Jd])]R)i'\㻙S KBR(ߧAJYiJSUeQ;3c^ΔD$OĀͻ k:ѽSL ΌI eJJ2qz}8j>I<W 0iW_5ϧN"iT >~rc((3C/Ƌ``={*g&߳4< a4=w$dP|zB2(MRfe9ns]VBhף[p)lHr8t4!9p hSg΅~#&+0D;bJԽOf#!0G:J:lfȰH~?Q없|oCK\+5m Έz0;2ЄR0pWNPѤH|%%z:f)Bψ#mSu0:Mg`z*z= FяRwJAQԇ64PlW|^O_MD3(`7U'z|Xbpy$YKa}lm=<"3x|Ը%-s L؝3ٸܹJ/ľ{]nK #TB@] tm+7e b`l,[XrЌ e$ki)6J'#MxuIМm�'F|"scm `P221 Ʒm�3W.;y yL@LlcF:>ƳAC,>Ù8TGK"uw9"J"IVn`cxf"MOe &YT€Gw "@&p^X7ރ௶Q|oOx{~u ~<|AĀoi,.:=`N:\_bG8̒>XX|D\|DY>[Ѓ�MR!8 o,xߓ*2ؓgZohpҿ"P./[p *: _Q[WX[?Dk *ó«ϴ Tz]R݇³B@W`,x_xCx(NkB |Wʎi]V})I endstream endobj 23 0 obj << /Type /FontDescriptor /FontName /b34495+NotoSerif /FontFile2 22 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 24 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 25 0 obj [500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 492 500 535 500 500 500 500 500 500 500 500 645 577 500 500 500 500 352 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 26 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000523 00000 n 0000000574 00000 n 0000000846 00000 n 0000004964 00000 n 0000005274 00000 n 0000005316 00000 n 0000005364 00000 n 0000005416 00000 n 0000006713 00000 n 0000007012 00000 n 0000007182 00000 n 0000007347 00000 n 0000007421 00000 n 0000007546 00000 n 0000007606 00000 n 0000012452 00000 n 0000012671 00000 n 0000014033 00000 n 0000014947 00000 n 0000019224 00000 n 0000019438 00000 n 0000020800 00000 n trailer << /Size 26 /Root 2 0 R /Info 1 0 R >> startxref 21714 %%EOF �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/source-pygments-background-color.pdf����������������������0000664�0000000�0000000�00000057067�14163570564�0027563�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20191222180723-07'00') /CreationDate (D:20191222180723-07'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 13 0 R /PageLabels 15 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 7162 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 794.5242 Td /F2.0 9.975 Tf [<527562> 20.0195 <79>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.1529 0.1569 0.1333 scn 52.24 786.899 m 543.04 786.899 l 545.2491 786.899 547.04 785.1081 547.04 782.899 c 547.04 724.679 l 547.04 722.4699 545.2491 720.679 543.04 720.679 c 52.24 720.679 l 50.0309 720.679 48.24 722.4699 48.24 724.679 c 48.24 782.899 l 48.24 785.1081 50.0309 786.899 52.24 786.899 c h f 0.8 0.8 0.8 SCN 0.75 w 52.24 786.899 m 543.04 786.899 l 545.2491 786.899 547.04 785.1081 547.04 782.899 c 547.04 724.679 l 547.04 722.4699 545.2491 720.679 543.04 720.679 c 52.24 720.679 l 50.0309 720.679 48.24 722.4699 48.24 724.679 c 48.24 782.899 l 48.24 785.1081 50.0309 786.899 52.24 786.899 c h S Q 0.4 0.851 0.9373 scn 0.4 0.851 0.9373 SCN BT 59.24 764.074 Td /F3.0 11 Tf <6966> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 70.24 764.074 Td /F3.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.902 0.8588 0.4549 scn 0.902 0.8588 0.4549 SCN BT 75.74 764.074 Td /F3.0 11 Tf <2f5e235b612d66412d46302d395d7b367d242f> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.9765 0.149 0.4471 scn 0.9765 0.149 0.4471 SCN BT 180.24 764.074 Td /F3.0 11 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.9725 0.9725 0.949 scn 0.9725 0.9725 0.949 SCN BT 185.74 764.074 Td /F3.0 11 Tf <6d617463683f> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 218.74 764.074 Td /F3.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.9725 0.9725 0.949 scn 0.9725 0.9725 0.949 SCN BT 224.24 764.074 Td /F3.0 11 Tf <636f6c6f72> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 749.334 Td /F3.0 11 Tf <ca20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.9725 0.9725 0.949 scn 0.9725 0.9725 0.949 SCN BT 70.24 749.334 Td /F3.0 11 Tf <70757473> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 92.24 749.334 Td /F3.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.902 0.8588 0.4549 scn 0.902 0.8588 0.4549 SCN BT 97.74 749.334 Td /F3.0 11 Tf <2768657820636f6c6f7227> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.4 0.851 0.9373 scn 0.4 0.851 0.9373 SCN BT 59.24 734.594 Td /F3.0 11 Tf <656e64> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 697.3132 Td /F2.0 9.975 Tf <4a617661536372697074> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.1529 0.1569 0.1333 scn 52.24 689.688 m 543.04 689.688 l 545.2491 689.688 547.04 687.8971 547.04 685.688 c 547.04 612.728 l 547.04 610.5189 545.2491 608.728 543.04 608.728 c 52.24 608.728 l 50.0309 608.728 48.24 610.5189 48.24 612.728 c 48.24 685.688 l 48.24 687.8971 50.0309 689.688 52.24 689.688 c h f 0.8 0.8 0.8 SCN 0.75 w 52.24 689.688 m 543.04 689.688 l 545.2491 689.688 547.04 687.8971 547.04 685.688 c 547.04 612.728 l 547.04 610.5189 545.2491 608.728 543.04 608.728 c 52.24 608.728 l 50.0309 608.728 48.24 610.5189 48.24 612.728 c 48.24 685.688 l 48.24 687.8971 50.0309 689.688 52.24 689.688 c h S Q 0.902 0.8588 0.4549 scn 0.902 0.8588 0.4549 SCN BT 59.24 666.863 Td /F3.0 11 Tf <277573652073747269637427> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.4 0.851 0.9373 scn 0.4 0.851 0.9373 SCN BT 59.24 637.383 Td /F3.0 11 Tf <636f6e7374> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 86.74 637.383 Td /F3.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.651 0.8863 0.1804 scn 0.651 0.8863 0.1804 SCN BT 92.24 637.383 Td /F3.0 11 Tf <5441475f414c4c5f5258> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 147.24 637.383 Td /F3.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.9765 0.149 0.4471 scn 0.9765 0.149 0.4471 SCN BT 152.74 637.383 Td /F3.0 11 Tf <3d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 158.24 637.383 Td /F3.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.902 0.8588 0.4549 scn 0.902 0.8588 0.4549 SCN BT 163.74 637.383 Td /F3.0 11 Tf <2f3c5b5e3e5d2b3e2f67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.651 0.8863 0.1804 scn 0.651 0.8863 0.1804 SCN BT 59.24 622.643 Td /F3.0 11 Tf <6d6f64756c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.9725 0.9725 0.949 scn 0.9725 0.9725 0.949 SCN BT 92.24 622.643 Td /F3.0 11 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.651 0.8863 0.1804 scn 0.651 0.8863 0.1804 SCN BT 97.74 622.643 Td /F3.0 11 Tf <6578706f727473> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 136.24 622.643 Td /F3.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.9765 0.149 0.4471 scn 0.9765 0.149 0.4471 SCN BT 141.74 622.643 Td /F3.0 11 Tf <3d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 147.24 622.643 Td /F3.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.9725 0.9725 0.949 scn 0.9725 0.9725 0.949 SCN BT 152.74 622.643 Td /F3.0 11 Tf <28> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.651 0.8863 0.1804 scn 0.651 0.8863 0.1804 SCN BT 158.24 622.643 Td /F3.0 11 Tf <68746d6c> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.9725 0.9725 0.949 scn 0.9725 0.9725 0.949 SCN BT 180.24 622.643 Td /F3.0 11 Tf <29> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 185.74 622.643 Td /F3.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.9725 0.9725 0.949 scn 0.9725 0.9725 0.949 SCN BT 191.24 622.643 Td /F3.0 11 Tf <3d3e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 202.24 622.643 Td /F3.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.651 0.8863 0.1804 scn 0.651 0.8863 0.1804 SCN BT 207.74 622.643 Td /F3.0 11 Tf <68746d6c> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 229.74 622.643 Td /F3.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.9765 0.149 0.4471 scn 0.9765 0.149 0.4471 SCN BT 235.24 622.643 Td /F3.0 11 Tf <2626> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 246.24 622.643 Td /F3.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.651 0.8863 0.1804 scn 0.651 0.8863 0.1804 SCN BT 251.74 622.643 Td /F3.0 11 Tf <68746d6c> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.9725 0.9725 0.949 scn 0.9725 0.9725 0.949 SCN BT 273.74 622.643 Td /F3.0 11 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.651 0.8863 0.1804 scn 0.651 0.8863 0.1804 SCN BT 279.24 622.643 Td /F3.0 11 Tf <7265706c616365> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.9725 0.9725 0.949 scn 0.9725 0.9725 0.949 SCN BT 317.74 622.643 Td /F3.0 11 Tf <28> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.651 0.8863 0.1804 scn 0.651 0.8863 0.1804 SCN BT 323.24 622.643 Td /F3.0 11 Tf <5441475f414c4c5f5258> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.9725 0.9725 0.949 scn 0.9725 0.9725 0.949 SCN BT 378.24 622.643 Td /F3.0 11 Tf <2c> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 383.74 622.643 Td /F3.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.902 0.8588 0.4549 scn 0.902 0.8588 0.4549 SCN BT 389.24 622.643 Td /F3.0 11 Tf <2727> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.9725 0.9725 0.949 scn 0.9725 0.9725 0.949 SCN BT 400.24 622.643 Td /F3.0 11 Tf <29> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 11 0 R /F3.0 12 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /79de4b+NotoSerif-Italic /Subtype /TrueType /FontDescriptor 17 0 R /FirstChar 32 /LastChar 255 /Widths 19 0 R /ToUnicode 18 0 R >> endobj 12 0 obj << /Type /Font /BaseFont /ed08e5+mplus1mn-regular /Subtype /TrueType /FontDescriptor 21 0 R /FirstChar 32 /LastChar 255 /Widths 23 0 R /ToUnicode 22 0 R >> endobj 13 0 obj << /Type /Outlines /Count 1 /First 14 0 R /Last 14 0 R >> endobj 14 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 13 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 15 0 obj << /Nums [0 << /P (1) >>] >> endobj 16 0 obj << /Length1 7756 /Length 4795 /Filter [/FlateDecode] >> stream xY}t[ŕ>[ELQ^#&ȶXvb;ddM,[`KBI:PILJBؒBNylbBPr(҄RJ?&,3zvNw{}Λ;syc�,Uc#,D~@ 'GWv xfB؞ŸQ~~p. (/ D A8\r¡h 7|  Bۙ�_b;�&oJ2@QΩ;�/1�rÇ .5,<4= "h75{Zv/L&jO~GJDR2iي5dMScieyʥ5x7FyN_Wď5ޘmH6|ˡE]Qz753VcD ZR[B\}MU\̼bL0.};hYpyK9puC]uɣw mlVR_yLXwG? s kh,,NO45.o/.*+qE%KIQ jj\sۏMNǿDB{v<#ʯ?4@ -;^oܳw<5ݯMt,875a1T `/in`Nio.I˚8fܢ&;x7vuG91zv9iRN4C_u6&O u*8Ojf6+tP�J7%V# qf[H^|#pQSg&crhoUִ^t_i9N*;v ʫSiZZOuskF@CCTtѧAIF#o4E}G~!/&(וߧ}8:'JpQdFgiGJybxfIhMQ:\nY﮸=}ڒpkm6n2x-Tr#PcC,l6xs@2E G Y=qGf#umCOc$eg_W.Q+ƺ6>ג ;y ;WцӋqތ -\,VÖ3kgUQ߱M*sayssYLwjm"iFؠoKi ~)8Sa+moOnn [v}xrv׺p:q̫'4|/h66\"j@AJoO<]nYg-; ?Ei:=}8Q{5-r[+=鹥5Y';#⒆5J)G^Wh ;gmmϊ'Gvw8;NYa!;S6X4@~JAL4䱂 _*2c9:R]s83i⸫M*b`J*BCĐ}vc%$ObhLBaKA' O|N ?W~M\ͣLALiH|`Z5 i*ϰUtY/-"Y.=I%,ȫQh~E=}Pۀt-;F4gq\IgRRi27vw�RxH5Y@ X.0�۸2<IK[z;Jii'P�:xR'̨ߦk Tq ,#T\ 9dkU\%d֣,Yπ"T Q(PL(ZT<nzU< j=*ۄx6g4Y*Ph"%>⋄υU<ϴ“?FWBqGji8c]Q"|Zha"1C \XR؄!0jEdQQ.!.,P B7>>ۨ= k <-`(6F{'<c)Ym-O5 cĒbk5<_D ]]NqfEբۚz}Uפl(XMx"b�NAO #p+b!n5#9q[|X:}k0u;QP äRtxΓzӤ1$E+aV s;( vxKX,nݵcܽ#1_ l!:<p`7EEge֩ ua>{/QL" ƨ#4X`Qd<Ehfʛ rr&H`81 ejw,mlwv־n=}bw{QeTS_�͉Pm/ L,>JGCDþh`{cq"Ll!W^\D qy, #4Lb[j-_D6l0 l#(-m/,\ׁ{d3=<̛0T#ra5e^^I4VTҜ^.ãw%Vfl9؃`'[òe;~|M}Xcݍ{X;g}7~)taa>*g"|GF Dv7;Y}_)( &Q>fLO8?ұs '/"UU?N@I܆jS0:w.EG"p,Z ׆"cu=WQ\ yVkXՏaWAϽp;Z> ~%8}=~gg]0ޗ2ݍ=K@$A/))" 1K,X>@ $awì$‰f IW`MI/1�)&]I$GdlLH4)֐둴 IX$$\4%ue%!YXgrL"ItiQSd틭KQ:�|.v-|Ey D4߬RguAtKD/TSO yo|\8{!{@Xu?ɻĻ1|WCBbRΘ*kR:Mh.Zd+U^W,$]248m8%^јR۪~sozuuu^t I:6egl"%UP'y.CCK Mz$L1 yF̜)x .h,QU5Ou[drHpҼuP5x{{LOCے.ᖇ t^lYc?6 Kfסh4VN#TATEnaee bx|; b WEwDX1SUlp=[6wu;6٬V _jYnMkVaEeri0ߐ(;+3CjDtSU QrHTJ5L<x�dɶ:2jt5G45@[Z%*n,EyۚJ.,BdZP QlOX,7.ja&+ؒo3 7f�XĦ +nu[-e&@M]Ε, 9kpT{�CU9^EMD⠜_%,ʽ.ŕjbkW<]$ ǀˑΟ[xTDWaXӆM$l%aLNN"lECGͦ;\& C~N] ۸,Tب߃(n*3~Q7#S-Qoue�s]Հ, z\g\! p'dM+YLJ=a̧,AνTftm�ץh݂†$ \ȽΗt4*YH@k厪t蝸-0{YgV(`뤰\(Ǔe 8|:L.lahD%Y-lfjM Y&0.iYhHieO7@# Xrq;U5Ce^i]f`Zy3erH][7;z.K`-h@ڰ!`)+259R5f+gQTҩcMDi(3 OMTGd0vux & /KYS$?ͽn6ej +nv ̙Jʛ</v\m릉 ˑ`Jh]gYyp91c6g6!ٽ nx+*.lìmF"Θ!ǠY�=t>60RVpT`(@PeϚ^ <7eaFf4f4i1`Jc<s?14r#Dڀޑ6A#gI69[jcFoL:13H1ޛ0XKk؟ 'ړ!N p u.ur *d5NK&aip?{^8 q/}ނ \6x ߎw{r<El٧IVCGAZ9˹Vc1\ +�Nkz{KZl]qޫHGazlړE? xf?7ɧboWyUiZEsI+NW[{Iea~Sq1"Fw5qOݖj?~߯( endstream endobj 17 0 obj << /Type /FontDescriptor /FontName /79de4b+NotoSerif-Italic /FontFile2 16 0 R /FontBBox [-254 -250 1238 1047] /Flags 70 /StemV 0 /ItalicAngle -12.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 18 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 19 0 obj [600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 356 600 600 600 600 600 600 600 664 543 600 600 600 600 600 600 600 600 600 600 600 600 600 579 562 486 600 600 600 600 600 304 600 600 600 600 600 600 577 600 467 600 368 599 538 600 600 527 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600] endobj 20 0 obj << /Length1 6568 /Length 4503 /Filter [/FlateDecode] >> stream xW p[ՕI֏8v'=[vbI~ĶbˎBqId,ٱ?HB6q %diRHLh-Le2mfM3 e.0-P{e{{wιsC!(8NU@y!>1ЂX4pY g<nKfacL&[*qe:m z1_gs.i`|ƃS3~P M'}(cS\\q}Jüsj:1c!ѩt麟a-YY׏Pa`bD}@̌ J_0oZM*iɸ<utn*bQ=ZX2!T]ly-2[u#_ 2˙' )GePUU|̓7F LXel)B.A+i+h\iVӡ[٢ Кt.:C⺗y^}$CǧduQ5RqVY9LՎRʊ N^R+1U+JKh>7ջHW}MՎѻ GG ,X Y|<qPKTGm˄Sm#_a>�ϖfc*I&G!귁r gv ˷񘂁@?gwm\۸QP3mft&GL _:!^qlx4vzI@2@셸T<f8^SØN|*\twȋxo\n�n qtAk|$ C$رбcLEz/"{t{jteW۱\jϣb>CI M}  s$l/9zo@�s!ƽ8�&El)4Mh i` : RcA8ݶh]|݊x|PzGCOOt|f1.-ъQD/iv\]umؠ}[zmgYb6u-^y@z޵a3+i?\n#^eRZKGh  ]<oZ?`û]̉DR!.ŧ?8$QO / /_ D/ZAYz/z0_15�uT9Z)WZ<CZq1#T<3*be!#T]ZV-(_׏d.*8oZBk*+5~ڞ=j-Q7NfA5]ƇNO-7Lx< 2/4*Nel £eZCl/UȮWĤPm'3[iuԃaûqZ۵H$ꃳ|^bPRxIzHr/ T9 eIRU[q-`0oX3|vnɪF·| z`tFʘwZmp{`>ObpYēS{#)BRsRŸFfI9.ͤG An qx+QكPg6%ũHy=wsU!“ȣqjf]{9>)/uv$0ǟ3O ⳂGΝ B#nkr䚸b*ev>޹~8r?';k*e mlkcsHw~K-rA iWW8܍ހ#[dccdEkكqa  U\*jz)f*U7Fuc E8cxk2nMS`.ȥǒ9qg)ի|=Kp듍a ڽRi㐇4F76X`UN[U&|#Ac7ma[zR [ F*@lf|,JiߊɭT'mrWUVy>l i܃j{_r)RS{�X"GƧ oN4B~Jj+؇"p³:/do|ym&74;^:CgtߪjRJ)n[ +0hXw/YGUªO2G0%vz&I; `ݛ{K\ƺrqmgANI$նbT9LFsعsQڅ }44*F\BNuխE rGAP2-oG]m=K{¡ <6=B\{1֥_>٧&g9Yjsg 8ƺbá>okyppۏgME]}6ڬZܹK۪q$FCwf%t|򤞯:Cx<?WVk=F1jbqg:Tv @yJk6\z拵Eji59H-><4Ό> u XbP#@D\8K@m3n0Փ')`Vv8ݽ671C]&ggQocSh_uI~eNM`+^zK!ЅWE]'*:p!c3v.JL1SɄ yyJV*eC} krG>._* y{y' Nx@AC{4 -%яJAk!]һUjZh#,A;-#!㒚OIZ%'9$wO?1v54$#~O/Ji@CH!}ah6#Gȝe^A񍯠z0 FWOorPM{kYyœl\ EK&w|~X*;ne ӸiNq/:ӈ<y!c:P'Bݨ*ԇ.Dh� (zcL[yu6rH-r#Q N$$:2<$e]8rZB'PHt:?-|Ԁ7H>"BTyO1Rߐx9/J<*_xTPmrjtj,-cm| "`_jCh mGpV$wa ByTV@³G! ¨`֧3W=JL01y": L � ElXYyv%+Af4Xub,}OdaCX!TD!;@Zn &gR;QH`π;'6=5y@,Ӣlvje]%[FL<c땅[ 9]ʦ�n]IxadEh*LͰ%DnN'@f"Neqv*1NPml:!$y&afcW3xj&;ڸ9`SY35M=9˦'T, 3�jbt,N3;IV6Oӄ2ݾ5Ȯu ص`?BN$a9g`1ozOr0(l%�+w8в@m'MoID(y0N 3bR.>#<q*xpm$HORN오b," 7A%4Q fr9C律FV;v+6vq@1B^ ="kV “D3o_>\ P~?^~??X)3c ==? !G:R-ek@Q~)=|~<2=�v$5 Ồ&C{M03J;?o8w-JSVֈVJ\v^)js$~u!Ᏺ3yw=Ç/C:aC8iй?$]䴵94@8׳%CܪE0nPXYr^-/^E ̜ZZ�f"j +H9ow3jù-:�^y!KNa~vvߺu90J roVu\I0lNVͱ9'l%w)8" �q@Y`frJX:lo!BTllGeg9#!ג )/.2ً H([c/J96/7p$< us;=E(B^\1 VHG-fɋo"1C'*sl ThͧP nzL1lr$a `=-漰-I綘$f1rl,WĜ* <,%\aKl# endstream endobj 21 0 obj << /Type /FontDescriptor /FontName /ed08e5+mplus1mn-regular /FontFile2 20 0 R /FontBBox [0 -270 1000 1025] /Flags 4 /StemV 0 /ItalicAngle 0.0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 22 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 23 0 obj [500 364 364 500 500 364 500 500 500 500 364 500 500 500 500 500 500 364 364 364 364 364 500 364 364 500 364 364 500 500 500 500 364 500 364 364 364 364 500 500 364 364 364 364 500 364 364 364 364 364 500 364 500 364 364 364 500 364 364 500 364 500 500 500 364 500 364 500 500 500 500 500 500 500 364 364 500 500 500 500 500 364 500 500 500 500 364 364 500 364 364 500 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj xref 0 24 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000008053 00000 n 0000008363 00000 n 0000008405 00000 n 0000008453 00000 n 0000008505 00000 n 0000008677 00000 n 0000008849 00000 n 0000008923 00000 n 0000009048 00000 n 0000009093 00000 n 0000013978 00000 n 0000014202 00000 n 0000015564 00000 n 0000016478 00000 n 0000021071 00000 n 0000021284 00000 n 0000022646 00000 n trailer << /Size 24 /Root 2 0 R /Info 1 0 R >> startxref 23560 %%EOF �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/source-pygments-highlight-wrapped-line.pdf����������������0000664�0000000�0000000�00000044267�14163570564�0030662�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20191229020615-07'00') /CreationDate (D:20191229020615-07'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 13 0 R /PageLabels 15 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 4530 >> stream q q /DeviceRGB cs 1.0 1.0 1.0 scn 52.24 805.89 m 543.04 805.89 l 545.2491 805.89 547.04 804.0991 547.04 801.89 c 547.04 699.45 l 547.04 697.2409 545.2491 695.45 543.04 695.45 c 52.24 695.45 l 50.0309 695.45 48.24 697.2409 48.24 699.45 c 48.24 801.89 l 48.24 804.0991 50.0309 805.89 52.24 805.89 c h f /DeviceRGB CS 0.8 0.8 0.8 SCN 0.75 w 52.24 805.89 m 543.04 805.89 l 545.2491 805.89 547.04 804.0991 547.04 801.89 c 547.04 699.45 l 547.04 697.2409 545.2491 695.45 543.04 695.45 c 52.24 695.45 l 50.0309 695.45 48.24 697.2409 48.24 699.45 c 48.24 801.89 l 48.24 804.0991 50.0309 805.89 52.24 805.89 c h S Q /DeviceRGB cs 0.6 0.6 0.6 scn /DeviceRGB CS 0.6 0.6 0.6 SCN BT 59.24 783.065 Td /F2.0 11 Tf <3120> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 1.0 1.0 0.8 scn 70.24 781.03 465.8 11.99 re f 0.2 0.2 0.2 scn BT 70.24 783.065 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.7333 0.0 0.4 scn 0.7333 0.0 0.4 SCN BT 70.24 783.065 Td /F3.0 11 Tf <3c70726f6a656374> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.24 783.065 Td /F2.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.4 0.6 scn 0.2 0.4 0.6 SCN BT 119.74 783.065 Td /F2.0 11 Tf <786d6c6e733d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.8667 0.1333 0.0 scn 0.8667 0.1333 0.0 SCN 1.0 0.9412 0.9412 scn 152.74 781.525 192.5 11.0 re f 0.8667 0.1333 0.0 scn BT 152.74 783.065 Td /F2.0 11 Tf <22687474703a2f2f6d6176656e2e6170616368652e6f72672f504f4d2f342e302e3022> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 345.24 783.065 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn BT 59.24 768.325 Td /F2.0 11 Tf <ca20> Tj ET 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 1.0 1.0 0.8 scn 70.24 766.29 465.8 11.99 re f 0.2 0.2 0.2 scn BT 70.24 768.325 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.4 0.6 scn 0.2 0.4 0.6 SCN BT 70.24 768.325 Td /F2.0 11 Tf <786d6c6e733a7873693d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.8667 0.1333 0.0 scn 0.8667 0.1333 0.0 SCN 1.0 0.9412 0.9412 scn 125.24 766.785 236.5 11.0 re f 0.8667 0.1333 0.0 scn BT 125.24 768.325 Td /F2.0 11 Tf <22687474703a2f2f7777772e77332e6f72672f323030312f584d4c536368656d612d696e7374616e636522> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 361.74 768.325 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn BT 59.24 753.585 Td /F2.0 11 Tf <ca20> Tj ET 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 1.0 1.0 0.8 scn 70.24 751.55 465.8 11.99 re f 0.2 0.2 0.2 scn BT 70.24 753.585 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.4 0.6 scn 0.2 0.4 0.6 SCN BT 70.24 753.585 Td /F2.0 11 Tf <7873693a736368656d614c6f636174696f6e3d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.8667 0.1333 0.0 scn 0.8667 0.1333 0.0 SCN 1.0 0.9412 0.9412 scn 174.74 752.045 187.0 11.0 re f 0.8667 0.1333 0.0 scn BT 174.74 753.585 Td /F2.0 11 Tf <22687474703a2f2f6d6176656e2e6170616368652e6f72672f504f4d2f342e302e30> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn BT 59.24 738.845 Td /F2.0 11 Tf <ca20> Tj ET 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 1.0 1.0 0.8 scn 70.24 736.81 465.8 11.99 re f 0.2 0.2 0.2 scn BT 70.24 738.845 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.8667 0.1333 0.0 scn 0.8667 0.1333 0.0 SCN 1.0 0.9412 0.9412 scn 70.24 737.305 242.0 11.0 re f 0.8667 0.1333 0.0 scn BT 70.24 738.845 Td /F2.0 11 Tf <687474703a2f2f6d6176656e2e6170616368652e6f72672f7873642f6d6176656e2d342e302e302e78736422> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.7333 0.0 0.4 scn 0.7333 0.0 0.4 SCN BT 312.24 738.845 Td /F3.0 11 Tf <3e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN BT 59.24 724.105 Td /F2.0 11 Tf <3220> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 70.24 724.105 Td /F2.0 11 Tf <2020> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.7333 0.0 0.4 scn 0.7333 0.0 0.4 SCN BT 81.24 724.105 Td /F3.0 11 Tf <3c6d6f64656c56657273696f6e3e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 158.24 724.105 Td /F2.0 11 Tf <342e302e30> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.7333 0.0 0.4 scn 0.7333 0.0 0.4 SCN BT 185.74 724.105 Td /F3.0 11 Tf <3c2f6d6f64656c56657273696f6e3e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN BT 59.24 709.365 Td /F2.0 11 Tf <3320> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 1.0 1.0 0.8 scn 70.24 707.33 465.8 11.99 re f 0.2 0.2 0.2 scn BT 70.24 709.365 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.7333 0.0 0.4 scn 0.7333 0.0 0.4 SCN BT 70.24 709.365 Td /F3.0 11 Tf <3c2f70726f6a6563743e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 11 0 R /F3.0 12 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /215559+mplus1mn-regular /Subtype /TrueType /FontDescriptor 17 0 R /FirstChar 32 /LastChar 255 /Widths 19 0 R /ToUnicode 18 0 R >> endobj 12 0 obj << /Type /Font /BaseFont /1ccb78+mplus1mn-bold /Subtype /TrueType /FontDescriptor 21 0 R /FirstChar 32 /LastChar 255 /Widths 23 0 R /ToUnicode 22 0 R >> endobj 13 0 obj << /Type /Outlines /Count 1 /First 14 0 R /Last 14 0 R >> endobj 14 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 13 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 15 0 obj << /Nums [0 << /P (1) >>] >> endobj 16 0 obj << /Length1 5508 /Length 3738 /Filter [/FlateDecode] >> stream xW P[י>JH`0`J6\$` dSKb˒@#q$Ķ'q2v&q3in̎xix4iͺ쎛f:uν޴N8wBk7C_}?O:BX;;whbPsPBkh<}-}X?F"ue<xpiX?kvdRga=>\Hi{<%'W 0BZ }[4 fgoԟAHW OLE(B #bc?1 eJ.r%~8VCU EdBK6 ֈL\> 2vnbN#R#d5v g97/^dN/ķoGy+84!o�M'%M‹Q H0b؄Uޛе%gw o>D+?2=s+C̵/DDAW>癏P*Fc[9gLuLcmMj̙T]=[4niQ]--GkJiXّ;xlY7 (V/Ԏf09#ñe3xEl3MvA:,|w3Rq:o]w,$VdЫ q&smFs-vPk |V5<zpw;|<)Js<?slrIj`2p9t[ 0c;Ns|U'X%䠞qS&YR@pAҒ�DA%|c4dAkLJay餾 Cm! 4'Ŀc-G@r4Ĝ ȸyjnft9%6s5a 6///Ak+*T̅Z[S٤*|z8|=[>茸;Gѣ4܋ 9^ř?"5uOW<sڲځ,ٗ%y_88>+KR$1 n;`[- I&{SiۖAY԰wջps_٦c;=oZ'xI\a㧖Lܿtjbc! JyEz*0hlr jZ;i3~ed7aw8k1R_cu]鮶- Mh5Ov|@)iOwh6FدF˺=~Tek� US9U-nm, {'j\~b:iQ T)-ڪWWىO*{;?'?Vlid'9|B8OWC.k/EakڂW5zBoU==`Kྖ*gt hbO'H6]!H<Tj DQƖB92}YܹD'O~W> z@ 5#!pfX;2˷^)Nн"mUvȧ;:g&JFHc2~t Ruuon:ǐ8/]%jj̰ /y=ѶRc8r_Fq/BBMMGro&nNL$R<dɧ2onށh$ M?OTP/Ar~^ӌB7lЕH_*zC>ϙq&}F[7MOGì敏nڢYmsOFGw_X:=wk9a/!l^۽k o글!ĖfrpX.]pކ-*|fR.h]{\3L |[2o-wU39tWN?yҏ__\<\=ڄZPc4: gwi2o1&1glE£H(xYqUq[(}2[0"xBoB <<к@ e�44GZL/^#AJ6P'K/33R/5-B1Ȟ%V&=F|5`&;a%@?칸|G)?MjYu5bj%&v٩Ig/Da8B-yB>+m@,lȎPDЅ>w Wvx]14v�X6z1."`]L[ L27fd: AΠ|tD+@LW�Ϋ2] 8t%|.ӳP>ΒY d zyc̓.]dZ/$=5@rSTweBGCWe R+.hP2;9(kBYB4]#þQnDJaEQނ!c4V Z]aQ{ 6#^fC<!s58Jx#s0E�tD)W2v%SVdzYI &6J#p}Ua滊#d I+j&ʌGR dmAH`/I@�'hkp8�$3zJ΀ uɅpn<WrS y'�IðC{м/[` KT$.$gH;cH7ͦ BM'Ņ A\-l0fñt*{1aci { i6 fb`,lHT(;D:iºi{z{XS(Modz}:ȉ(sj5{ww0.  �:pơ< O 6 ;A/a Br.9#<a*xTr:@gQNRNHRh!Lو8Uv`貊rxVjZqX@�Qy𩏮@ = :~O?_?'a1J#/6{Vr}e[ ,rl>#/�uWcX|cq!~s/t|\}lOV�G! o3#?ʹ? (=N~~A?KݛK+zSBv\7(W^:d_O7$٫ߴxq@BO^sjF00 0y8APN!Y6yB%+ ^jc{*(,V�lg*(-DR/2PZ�eYNMX5>ǦJ0jkymjzca" 0rs4 D2ALZJ@iҊFҮ 5' jpn\= Zr2fmW˰p8>B:#d2-WKRj�BnfLH ,{U>cF0e86pA" *0hAo 1L_2 C.gQ%nszoÎ:ĝN'8_EN{<'9g) s;s!9b6$e@@g%o C �ѸD endstream endobj 17 0 obj << /Type /FontDescriptor /FontName /215559+mplus1mn-regular /FontFile2 16 0 R /FontBBox [0 -270 1000 1025] /Flags 4 /StemV 0 /ItalicAngle 0.0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 18 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 19 0 obj [500 364 500 364 364 364 364 364 364 364 364 364 364 500 500 500 500 500 500 500 500 364 364 364 364 364 500 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 500 364 500 500 364 364 500 364 364 364 364 500 364 364 364 364 364 364 364 364 500 364 500 500 500 364 500 500 500 364 364 500 500 500 500 500 364 500 500 500 364 500 500 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj 20 0 obj << /Length1 4084 /Length 2705 /Filter [/FlateDecode] >> stream xWYp[ϕl˻lKH[lI,/&ˎزtmXK$9 % /L $M@2a>dhzJdtX2tM0Cs9\��Y?5V,+�)]\>PR8'b9i�CTAY@y }+(B:;#tdg WQEI �C? Ï?|.}qX󭱸>nDl8օb|۞5 P| `c _!T_SosɅ"(֖|mׇ#&=`cI7ܫo=`< G`Ɵ;K;~}tqk7* F gk5\җ~kNľ9qtUk 8ɸr|>VfW*{xGN%z-b9TZޔוmmlTm[sv~s:PB5{\*)ұZX,ȃ-�59GU[̍-Y"Ro!1M-.M_8P6!A0r.n%tֽww ~pqn~ ih/ ܶQW_woss:m~8Wo9ol%{E軄FU׏ǣ;VEHoܯeCm:y]3CbYzcb{t"~X,r2`2,!EgvZ(o- k++'qOnGI[pBqw3gr}k]U\mZJ"~G}yzZu0R[6T-Ԛu'  pbYpG=J966lT76]qn:LQum?}iGdt&"/l98jc݇(�Do)CSJD~ĕNV-r=/GQ0rpS9q+zDoXgfG\k0;=\䍮mʡQ3Vꂊgpdef }|eD7�9֦Ʀ;Ӊe,[;C '^{MtP 0 ?K!ѐ̓Yr\- F)f։[;6 &l܆M`͇݃ͱUmO_=*vWtS*kJNVn.|ӵLȧܫx6Kqx'Wp\.W{}>#$QۉYJ~?)g[xTn&m~  F` a\0 S0 X@x`v wjYsY99^;W)z5ÆW),("Tg6bUٸ6C8} &Z!E_O}!y{He';-&4Sjب{ƆzQaC!I?O4c(֭XQpc(Vх9 atGЍFHmVv @h%niA"�(a0(nza`+8h۴OlZ>":N iTF5[Ϸ-$2d2$, fM"֥\$ֵ/e 4-(I&;�JVX;JPBYE.$⢕NECPR Иr["Lҕh~\o3E4J$HCI3=Ji4.ѕ$ GߗD"3Q+:oy0G*+u Nۇhz&Q6݃)7ruV+Ae+y+kz[c'pfg]tVM!valIy)VMXb2l83$R"qW83dۤa< m/䨌d/*3,`#gRي V-ﰼY8!vfv_bp5(['*rNԋ'5&gؼ 8bcXS,w ߌ VaR^>8&|J+Gs)aQ -<* \!(SwQG CT(|ڱR6݂_Xyќx{#Tv!~98"AaaqT'L {WD(6-q3ŝA~;a5o�?R]U78.'`XҌ{NFQz% GURv+$0KP6,5{^ {+psWw%RfHLפFę]>kH*sJquz-L{{ >xx ̅3{,R@̌A1U*7Y\3=œ4TR TRI0I)e; Fא%WFb2i Z#2E93mr }KC +d5Mѝ~)^v3rɉH̏)$)=}h4K), b4SJlFVl%9O=ÓD&4ȧxL>f1aEҲe(ŸKXlP_ X6gL̘D۬lC>#qOgIdf){<<Fw#|7V3>C(N~Rv˗,/B�*k= endstream endobj 21 0 obj << /Type /FontDescriptor /FontName /1ccb78+mplus1mn-bold /FontFile2 20 0 R /FontBBox [0 -275 1000 1042] /Flags 4 /StemV 0 /ItalicAngle 0.0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 22 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 23 0 obj [364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 500 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 500 500 500 364 364 364 500 500 364 500 500 500 500 500 364 500 500 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj xref 0 24 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000005421 00000 n 0000005731 00000 n 0000005773 00000 n 0000005821 00000 n 0000005873 00000 n 0000006045 00000 n 0000006214 00000 n 0000006288 00000 n 0000006413 00000 n 0000006458 00000 n 0000010286 00000 n 0000010499 00000 n 0000011861 00000 n 0000012775 00000 n 0000015570 00000 n 0000015780 00000 n 0000017142 00000 n trailer << /Size 24 /Root 2 0 R /Info 1 0 R >> startxref 18056 %%EOF �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/source-pygments-line-highlighting.pdf���������������������0000664�0000000�0000000�00000045261�14163570564�0027713�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20191224154056-07'00') /CreationDate (D:20191224154056-07'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 13 0 R /PageLabels 15 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 4882 >> stream q q /DeviceRGB cs 1.0 1.0 1.0 scn 52.24 805.89 m 543.04 805.89 l 545.2491 805.89 547.04 804.0991 547.04 801.89 c 547.04 625.75 l 547.04 623.5409 545.2491 621.75 543.04 621.75 c 52.24 621.75 l 50.0309 621.75 48.24 623.5409 48.24 625.75 c 48.24 801.89 l 48.24 804.0991 50.0309 805.89 52.24 805.89 c h f /DeviceRGB CS 0.8 0.8 0.8 SCN 0.75 w 52.24 805.89 m 543.04 805.89 l 545.2491 805.89 547.04 804.0991 547.04 801.89 c 547.04 625.75 l 547.04 623.5409 545.2491 621.75 543.04 621.75 c 52.24 621.75 l 50.0309 621.75 48.24 623.5409 48.24 625.75 c 48.24 801.89 l 48.24 804.0991 50.0309 805.89 52.24 805.89 c h S Q /DeviceRGB cs 0.6 0.6 0.6 scn /DeviceRGB CS 0.6 0.6 0.6 SCN BT 59.24 783.065 Td /F2.0 11 Tf <ca3120> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.5333 0.0 scn 0.0 0.5333 0.0 SCN BT 75.74 783.065 Td /F3.0 11 Tf <7061636b616765> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.24 783.065 Td /F2.0 11 Tf <20636f6d2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.4 0.6 scn 0.2 0.4 0.6 SCN BT 141.74 783.065 Td /F2.0 11 Tf <6578616d706c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN BT 59.24 768.325 Td /F2.0 11 Tf <ca3220> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN BT 59.24 753.585 Td /F2.0 11 Tf <ca3320> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.5333 0.0 scn 0.0 0.5333 0.0 SCN BT 75.74 753.585 Td /F3.0 11 Tf <696d706f7274> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 108.74 753.585 Td /F2.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.7333 0.0 0.4 scn 0.7333 0.0 0.4 SCN BT 114.24 753.585 Td /F3.0 11 Tf <737461746963> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 147.24 753.585 Td /F2.0 11 Tf <207261747061636b2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.4 0.6 scn 0.2 0.4 0.6 SCN BT 196.74 753.585 Td /F2.0 11 Tf <67726f6f7679> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 229.74 753.585 Td /F2.0 11 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.4 0.6 scn 0.2 0.4 0.6 SCN BT 235.24 753.585 Td /F2.0 11 Tf <47726f6f7679> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 268.24 753.585 Td /F2.0 11 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.4 0.6 scn 0.2 0.4 0.6 SCN BT 273.74 753.585 Td /F2.0 11 Tf <7261747061636b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN BT 59.24 738.845 Td /F2.0 11 Tf <ca3420> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN BT 59.24 724.105 Td /F2.0 11 Tf <ca3520> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 75.74 724.105 Td /F2.0 11 Tf <7261747061636b207b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN BT 59.24 709.365 Td /F2.0 11 Tf <ca3620> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 75.74 709.365 Td /F2.0 11 Tf <2020202068616e646c657273207b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN BT 59.24 694.625 Td /F2.0 11 Tf <ca3720> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 1.0 1.0 0.8 scn 75.74 692.59 460.3 11.99 re f 0.2 0.2 0.2 scn BT 75.74 694.625 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 75.74 694.625 Td /F2.0 11 Tf <2020202020202020676574207b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN BT 59.24 679.885 Td /F2.0 11 Tf <ca3820> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 1.0 1.0 0.8 scn 75.74 677.85 460.3 11.99 re f 0.2 0.2 0.2 scn BT 75.74 679.885 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 75.74 679.885 Td /F2.0 11 Tf <20202020202020202020202072656e64657220> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.8667 0.1333 0.0 scn 0.8667 0.1333 0.0 SCN 1.0 0.9412 0.9412 scn 180.24 678.345 82.5 11.0 re f 0.8667 0.1333 0.0 scn BT 180.24 679.885 Td /F2.0 11 Tf <2248656c6c6f2c20576f726c642122> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN BT 59.24 665.145 Td /F2.0 11 Tf <ca3920> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 1.0 1.0 0.8 scn 75.74 663.11 460.3 11.99 re f 0.2 0.2 0.2 scn BT 75.74 665.145 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 75.74 665.145 Td /F2.0 11 Tf <20202020202020207d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN BT 59.24 650.405 Td /F2.0 11 Tf <313020> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 75.74 650.405 Td /F2.0 11 Tf <202020207d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN BT 59.24 635.665 Td /F2.0 11 Tf <313120> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 75.74 635.665 Td /F2.0 11 Tf <7d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 11 0 R /F3.0 12 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /3df66e+mplus1mn-regular /Subtype /TrueType /FontDescriptor 17 0 R /FirstChar 32 /LastChar 255 /Widths 19 0 R /ToUnicode 18 0 R >> endobj 12 0 obj << /Type /Font /BaseFont /701ccd+mplus1mn-bold /Subtype /TrueType /FontDescriptor 21 0 R /FirstChar 32 /LastChar 255 /Widths 23 0 R /ToUnicode 22 0 R >> endobj 13 0 obj << /Type /Outlines /Count 1 /First 14 0 R /Last 14 0 R >> endobj 14 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 13 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 15 0 obj << /Nums [0 << /P (1) >>] >> endobj 16 0 obj << /Length1 5920 /Length 4018 /Filter [/FlateDecode] >> stream x7kP[י\ `| I\$$67! $0Ա$L֓mٴYzbgɶM6xƓYoݬMg< bsi;Yy|wa:ģ t:Ϝ=rrD_.l֮w8d�t8gc&4?;NKf̵T�<<Khl=O|0揆N>xBd .(BjBo ͤ>T|`d4Ū�> M̦A 1"9\ !3׬]dy?dSTHG` EK&Vt+EeH ҂[SHYZEEiq֭7`N-Mh@*U3:Eɭ͛lWntQnH t$Ơh[0}b܋!-:(=#t%``m/]\5._d>D�mKu315Xo1۬5r4Kͅva(V[+2zN{S* KǏ En[hsn!rF@gȺ]chJk [mF-{n)}î̶3V}JD~+qxa?\ӗ[KlWb+FO$6<GUWsCNc;|۶I~o'?mnkMI( ~dCPpVΪ<+8_|s9x:Ȁ}`d\pӕ[CtJ1e]-] tl\ߍULJ`GāE IHΧV@a]>d3ۻ[3keΛjjCuP<s /GKWt|[HKb= F֪0Nww2.Dk lیLlv �T)0Bˁ)Z3v |M 蘽@sL~%xD!Ss{ =>hk{D|PC4$N:b!(!Z&ךl5.gvgy`yTu{Ca?=qo9?|>m=/ TZAȳ=r}s^̵9|G݅kP9]X:QXȻϻ.zlXCQ=4'a,YT'LotyLեי{:A:oHJr!, X&;>ӵs,v;]nȶRuɈm%ֆj[.Zٓ@v>�U*GC@L )W^gme{ LNŭ8 ;6H*3 $׀}BXZUZVgqݵsb&Ǵo?[8xI_rȺ�6)\%vr6Ps5ΑYK;6:c>&?쪵U8gȡ^6@})A}YͶ&"@I^ٽ}FHlS[VZh2ͅ:]v1O6QZsg8 1b9L,b(\[ܐv9aO,ni(T};%cYzM*\ ;|q/3wҟܾN7/Jp>YJoJ~yYcBU𵈜BDH1TcbI:Wvf[?^^Ho][ڟvBGbɶPA D[{.KKTO? UE%؜Kn<N4j:{K!퐍QNa\[o/rc*Vr;sP x[ߦ}[k 1zg) =pQFٺ)7̂.z)+%@_ND 9/pdu;0p4ٷ4{'-~,7(6tշw[ V]j%|UqnYsF~][v Lxf_Abs/;O~K�# 81:L 8Ŷ+_]X*m$5F%C:mSK7qgG0C*"6bu~ր;Mx.d*{Xm6tTVceGOY[u{B5hhlp,t M킞>sAЃMxUxB*kv\'qSDpЌh=NW'84_iF31,s#K:%;%3$%W%w9fniB9H?3*4x+Eh/AkF.h*B,1W#.FvEFo"Q:-Z?FD\A1j M$03Y̚, K_JoJE-(;,ٱ@R niQqMD-_A1C%Nv}_pg\*F[P%Gpvun  ^h Cch|X>|+Ob: Kmt"CD&D<3jZ37x"^ "^rΉx)TKA"> JPkh֠[įCW"~} 4[C2k"MZ+$ҐUF_4 #HCkLͬc!N rvyPt�͢DafBNyT`Yb!G䅅 EјHU(MOg(B!~4%:㳓!lzV`b1@Eg3D0!, { cFx@ccCsx66J*8RM@Bљ9b'3UUm�/L`45C㕀գ*Ea6 ΁9+s >} B3pd%RX2ΆB\|"?2CH4ٙl42GY`qv~.d`W`d.1OH$l|#? lYFCz�!cwLg C eյcGz<Cvnuz|&0s5 BI`eVR� pC@; Qh 7C_'I6 +~*_M*KBZ&sBGh7A{hP0H} )% vĩ h-"!6D9(?x6 HQ?GEƊۆj4u#0#S[ =C&~?oq}yj~j90o?}<;á:_ڣ3c1~Pg$~~ʽyx|ʼP<>.? 'wJ@`G 3=Ol!~ "EiI4߀IXVjWnhp^:`7mBO$2s^Hԗty_Q J6K0Ϸ1%ԕ!T}-.ow/mQܽ>V )l`VS|ZcJbmSRarڃWtޥqTF7չG|>aXcԘ^c=cGQ RjYEe ʘ2%6%)ؔTߛB.o2dR[r Q-XWk Z[C@XO^68. tfP&ٮdKIT Pj �xrZm{5 a�fHMKr {UTα޾"m IpKrl' Bc*A v+dI2pw{BXUp" [oKSXcXQ.pྋyiOw{qs9D=p,!RC+4`!.{ɄL-soD endstream endobj 17 0 obj << /Type /FontDescriptor /FontName /3df66e+mplus1mn-regular /FontFile2 16 0 R /FontBBox [0 -270 1000 1025] /Flags 4 /StemV 0 /ItalicAngle 0.0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 18 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 19 0 obj [500 500 500 364 364 364 364 364 364 364 364 364 500 364 500 364 500 500 500 500 500 500 500 500 500 500 364 364 364 364 364 364 364 364 364 364 364 364 364 500 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 500 364 500 500 500 364 500 500 364 364 500 500 500 500 500 500 364 500 500 500 364 500 364 500 500 364 500 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj 20 0 obj << /Length1 3888 /Length 2579 /Filter [/FlateDecode] >> stream xV{l?K8N줩S҇__<Hy4ͣyvR; M]KԯNT犡[Ǥ 6ԁئe D=*։ X%C@Sٹ_ Cc}{ι{?j Nkh�HB|yWm_�JNSP9�eii&rG׾%oF +ȷ$BG [y:s/hJN9jE~k27v \PtFN+W?|z!QS? 9*\m*X~&PXM TVfa77T|+B׵)yZ# Pj05s ho-Ec44]]%Ǽ8|採#CN &^-LUWY*Սgѹ]L39tǟzHd{NOj ,N'⼄8:h躉`4v~m=C_ؿO(wlla5 _;}ż]s@csA8}{'F7hJ @FS+csV~֮3k ᆂ4q;yϰ7*Xs6}нgٗg1E#Xsy(.r:L>!hVG \ A.cq=%>}1OtS[׮.Yg0Dtu51֦n_9l)&#NZlqˡՠXZuuVph#v];Qx \xf%ݾB^F G8:a!~زZ܏87%g1RYx񅅩󅫆[s{�hj;SKQ|T/#c?C=[&b4m@ǝyUJ{͋cܘw"M}fR42<4N-jgp}91_W$O?ιٻsa!A>sުYR 4�D4 p4v q(Y!q0 G7'98 86؎#]X8>WN|5[A�b! /A Pq& P ʵ] ǬVKfWs0S&O~z{o"0# a)=<s#D K Hirͫrw|\ xUhU^^U^~KVUy)45 jUeL\{1ҕSu*UpHWwrZK-r&m o.b%'>:~HA!1X~Fck)At#5V|ΏXhG̶DRj$R!r"dn0Y!ZԦ 9[J r,6t$ # ap8'p=A/!U\wЎC ]uţWc5i9!uC2:"hkq5/e~�1\2<uc1ú hCW"v i4 9#4 edJcXNдIIJ<hT[ȄLKѥlao %#42K9r6z$TϩM"X8C Q*g:3X(_fT" xa@;ׇML^wt`DY >fŕy\9/9P6qLmXA7 np%9\2ؐ =ht"6�x4:©(RS\5_##fNʪ-o 1ԍwr'-V ?[]?T勧p<(ݧ[pރ9ߋ6^|2 8$~'=)UzUJ!uEǪ+KmjJ^HOHK RP>~A;X!%*~\&Jg$")M 6M楻%1J~.'&ݧ5q8.C RdwT?dx;W2 IU /s[?e7 |P"} 9v2poj */'u6T V�l ԏ*'mkq9-eǃ ;b*]l1h+%Zx&+6fjo~4^àI4+eր2x8A+UDI)m" VNRaǙ*% T)mQ`2!ʈ[MfsД眷1kL:3"VN:r,;" ȁ"ӫf5ӝyAM̏ ា]\k6<1)563W\Qɬ` ybMdWtl0n=Ku_I &1˙0z&:+HD̗+t2մ+!>2)2�{z^3D>8g?wPBJ|ݗѦ;) ,,:>a endstream endobj 21 0 obj << /Type /FontDescriptor /FontName /701ccd+mplus1mn-bold /FontFile2 20 0 R /FontBBox [0 -275 1000 1042] /Flags 4 /StemV 0 /ItalicAngle 0.0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 22 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 23 0 obj [364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 500 364 500 364 500 364 500 364 500 364 500 364 500 500 364 500 500 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj xref 0 24 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000005773 00000 n 0000006083 00000 n 0000006125 00000 n 0000006173 00000 n 0000006225 00000 n 0000006397 00000 n 0000006566 00000 n 0000006640 00000 n 0000006765 00000 n 0000006810 00000 n 0000010918 00000 n 0000011131 00000 n 0000012493 00000 n 0000013407 00000 n 0000016076 00000 n 0000016286 00000 n 0000017648 00000 n trailer << /Size 24 /Root 2 0 R /Info 1 0 R >> startxref 18562 %%EOF �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/source-pygments-token-background-color.pdf����������������0000664�0000000�0000000�00000036016�14163570564�0030670�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20191123234725-07'00') /CreationDate (D:20191123234725-07'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 13 0 R /PageLabels 15 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 1977 >> stream q q /DeviceRGB cs 1.0 1.0 1.0 scn 52.24 805.89 m 543.04 805.89 l 545.2491 805.89 547.04 804.0991 547.04 801.89 c 547.04 743.67 l 547.04 741.4609 545.2491 739.67 543.04 739.67 c 52.24 739.67 l 50.0309 739.67 48.24 741.4609 48.24 743.67 c 48.24 801.89 l 48.24 804.0991 50.0309 805.89 52.24 805.89 c h f /DeviceRGB CS 0.8 0.8 0.8 SCN 0.75 w 52.24 805.89 m 543.04 805.89 l 545.2491 805.89 547.04 804.0991 547.04 801.89 c 547.04 743.67 l 547.04 741.4609 545.2491 739.67 543.04 739.67 c 52.24 739.67 l 50.0309 739.67 48.24 741.4609 48.24 743.67 c 48.24 801.89 l 48.24 804.0991 50.0309 805.89 52.24 805.89 c h S Q /DeviceRGB cs 0.0 0.5333 0.0 scn /DeviceRGB CS 0.0 0.5333 0.0 SCN BT 59.24 783.065 Td /F3.0 11 Tf <6966> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 70.24 783.065 Td /F2.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1.0 0.9412 1.0 scn 75.74 781.525 104.5 11.0 re f 0.0 0.0 0.0 scn BT 75.74 783.065 Td /F2.0 11 Tf <2f5e235b612d66412d46302d395d7b367d242f> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 180.24 783.065 Td /F2.0 11 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 185.74 783.065 Td /F2.0 11 Tf <6d617463683f20636f6c6f72> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 768.325 Td /F2.0 11 Tf <ca20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.4392 0.1255 scn 0.0 0.4392 0.1255 SCN BT 70.24 768.325 Td /F2.0 11 Tf <70757473> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 92.24 768.325 Td /F2.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 1.0 0.9412 0.9412 scn 97.74 766.785 60.5 11.0 re f 0.2 0.2 0.2 scn BT 97.74 768.325 Td /F2.0 11 Tf <2768657820636f6c6f7227> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.5333 0.0 scn 0.0 0.5333 0.0 SCN BT 59.24 753.585 Td /F3.0 11 Tf <656e64> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F3.0 11 0 R /F2.0 12 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /70eb59+mplus1mn-bold /Subtype /TrueType /FontDescriptor 17 0 R /FirstChar 32 /LastChar 255 /Widths 19 0 R /ToUnicode 18 0 R >> endobj 12 0 obj << /Type /Font /BaseFont /032236+mplus1mn-regular /Subtype /TrueType /FontDescriptor 21 0 R /FirstChar 32 /LastChar 255 /Widths 23 0 R /ToUnicode 22 0 R >> endobj 13 0 obj << /Type /Outlines /Count 1 /First 14 0 R /Last 14 0 R >> endobj 14 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 13 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 15 0 obj << /Nums [0 << /P (1) >>] >> endobj 16 0 obj << /Length1 3312 /Length 2099 /Filter [/FlateDecode] >> stream xVmlS~ϵ8 $$)0}9CDA5$$|#8u6 +uV~OU6B' MGUI&1 Є:M*IǪ9}q5�;�Rї>C8L.#gH3-6kSqèoH _E};'[uu:nwZQd]�{ lLg(@UK8nn|A˛\}'_�$-~ Җ0;^lX�*G7KzlP wnRuu[@5<U]8wttO;dvbߺyKqQ7;+, Ԓ14BVkC|]_!WRM>?xzOс8vTZsU> M_?C}@?Nt>I5akfh۟z-OV_͒=ɉ5u=trf'"}Uřc@˟_st9&erkX<qrl8ҹcs5rw4LsFL9.\E }hяcG/5N8/C x iȐүՓJZ^mh'J!6Ho/\_ jwkPj;j=@Ɋ$>W<}�L >xĎ8A|F3.s%psnpm[j`L-j,dĒkIrԲrkג73BGӟ/)%Y{7 Dh|d?3yXaR`@ 1c(A+C0!a'qA gAl_.>d@b(5ry}в5յDzQGvxyn YLLFI0 =pq?I/TC�ЁJ %Og+iPL粴:1F4'ENu1mnww,;) ̛2\1-E kWG)1Uds8'P#trׂb.i4fz4tQ$fXF.5&h"]4 ECiC'F b-T%t<f B5DzVc7沏C>?ׇ 4=<08@={è{=7{0𮤰E䃪C\ĝ$|Mm-u8fg G'Tfǝ/KE5PP[w܎$!"[R %~9a/_N0$qđӰ2⾚e O[rm3]zȜ~ˊw#"[{iI@{z%?=}/p<*XeOٿ{,={la؏OE6T&>2{EVXv긛=EDgagPZ?q-v.O${ \ynƎڐ#r(Kw_ŝ)vY,;fYHP~::.̮j.[ϓXv+dEQ9DȷKC֨۬SG P7#Qll0A1ak"jPMހ=N&Y5BokZ6% ^ӮpW~6w ˮU6+Z Ul*U(GfC!0:=wT.mP!Tiw׬Rim۰LM&%\xvBe.gWs#cBor(ͬĆPO-(M̕)]-i+ -" Zb}0WgEo 4LY:E72]n4,dZ.1Pv׬ЀyJ|c WKm# Ti҉h4*oA:|H̍|E9^sB>|0\2͍ڦQ N^In[Z7 endstream endobj 17 0 obj << /Type /FontDescriptor /FontName /70eb59+mplus1mn-bold /FontFile2 16 0 R /FontBBox [0 -275 1000 1042] /Flags 4 /StemV 0 /ItalicAngle 0.0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 18 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 19 0 obj [364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 500 500 364 364 500 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj 20 0 obj << /Length1 5432 /Length 3656 /Filter [/FlateDecode] >> stream xWip[u>= PFp(2 �J\.*.A eQ� A-SJJh[d<ݸr5.,;]Ot4zCu[ՓIOq&9lw�6kBWkh~| 8 1? և2=x@yh4,=jCZk7.k"=\JvKwN$SUO��V^@ ]b:E68xH"}i۴f @o؜(PXTI!&&K~E@ @AyEe`g*rT<=<�j֡Msݙ5q\w*wp;nCŚ^dMtӦE^]aG=ck250!lxW[#Oq;0,�`Z6N5FM.ӡ/1kjz&»MdYz76K3ƺ͏>TX0;}=wj||AF'vcd*̈X ȯG/@e5[ FgkN>FDlMZ$]yIoX9B~! 9;O+s<Gcm]5y6fSc7r"lډa5㼰^Zjf奿-}\{gÝ+{q"GOv [vB.DS'5Hm6Q9;&Ǧw&nt6rz"cG[w|;&~j*e0h[[qi5Ϭ8hrI-&O[ܒdo\+g'CWc>SF6)h9ghV9qUc9v$l*+1g N++ƙeCbejwYU]i<|}BڭÊÀZЊ|]w.|=;]S= WV-MzQП~Dg+rW x҈#v'^~M폚'Ley"͛/soy#g$3gV_ 2= Q=+)N1\KBXlD"nrwt3Saw85Mlkj'ϕul1u-mbX5pLn ύnlnYX&Ee<J6R݈sq4P|5UbtOf~D"E+?ҵ5)%,"REhEaesXg]]uzlSu "QNJMF#g4W{[;Gv_4LjsM4h3tM3sm`5xYPɖHg9P#Jnv[ unŲ2Pn1W1?B\0x+5Ƭ}B(t!yzi>:ts>umjV ?[FuCwp* Hzs#?ؓO&[@K>i:6U{>{q YsOH s}i_HgP0ɰPK{u: >=ŝhiۤ&NoΜ1J 63j6t' f8y]GLzzxx&\Ao/n)A=7 AJ^+˄w|'NLs'NbvŋDA&،zz#n\]I ѣ6TSOOuvPzi?do7ՑVNݶW9yrUӷ-qs6o={ݤK YI3t ix^uRMyN> WupQ8w{/-_vn�&rPm~|ր[<v`av[Q1eeʎAY= ܻ0`O23@)\i|eBx~$Wpܺ5W}C�X[waJ eKu{LFT-οOa #rVo/8L$a_{Q-'b!1RRs/<:QwQ2YO^Yw@sb>$y\<W ίdq~+@Y#@%|%H<_GYMd�ɳ2Wy?b,S JyY+.2t~IQJ,"ſ2tTl. mRV32F#;|IXAaEgCP}Ve|XUg`1! odny!B.c⃐I&=\D$aWÉamRD4Sans9vp3R,m A% 7P qnw KbMÈӋ:Q,ْKm~+ ʡ,!|0R6E_4$PHDXJΦS0XcHXX%7ͥ M'奈Ea]-B0±t*w9bi? i! fc`,BjT(\X8H,cDge{G`C,LF}d1 pOD1K̻Q q Wfqe? ȱ!oeP2-0YyL"p%i\X#`YHtNLދi GYgt}N'~$,benD0Mj; J#[@_"'o쾓&tM Ս'9f-u38#S;PNj= MOSү$>n<r4Z(^椀IQ XdkPJ>b֋SȝGxO,ҼwrtJ!iV:,c|rTuD\91GcGTډCy0*>bEWƥiDf=|Dٖw|b7%)]?3[?u煃*@5,-{~3KV`0[0'(lq`0@UVY`ɂv0?;/q{).,JYbd[e!L,o Y(z֬BUM+_Tcw*+P!kٞ} ˆ]S֬A‘]*0*kՌ*hk"|90B/ YE@FH&(Is0ʛy+M"\dᬷ Y&DzŞ{TnЛ !#2s"zP㣌'B )b.L¥ ћq7hKqQU$`@bF21H*tfi4跚@'/s$TUk 2L630oxWt!N2F1rSq?~q/z/vV@N̼?+yʖE*[ż`go_�g/k endstream endobj 21 0 obj << /Type /FontDescriptor /FontName /032236+mplus1mn-regular /FontFile2 20 0 R /FontBBox [0 -270 1000 1025] /Flags 4 /StemV 0 /ItalicAngle 0.0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 22 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 23 0 obj [500 364 364 500 500 364 364 500 364 364 364 364 364 500 500 500 500 364 364 364 364 364 500 364 364 500 364 364 364 364 364 500 364 500 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 500 500 364 364 500 364 500 364 500 500 364 500 364 364 364 500 500 364 500 500 364 500 500 500 500 364 364 500 364 364 500 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj xref 0 24 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000002868 00000 n 0000003178 00000 n 0000003220 00000 n 0000003268 00000 n 0000003320 00000 n 0000003489 00000 n 0000003661 00000 n 0000003735 00000 n 0000003860 00000 n 0000003905 00000 n 0000006094 00000 n 0000006304 00000 n 0000007666 00000 n 0000008580 00000 n 0000012326 00000 n 0000012539 00000 n 0000013901 00000 n trailer << /Size 24 /Root 2 0 R /Info 1 0 R >> startxref 14815 %%EOF ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/source-rouge-highlight-wrapped-line.pdf�������������������0000664�0000000�0000000�00000043713�14163570564�0030130�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20191229014950-07'00') /CreationDate (D:20191229014950-07'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 13 0 R /PageLabels 15 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 4294 >> stream q q /DeviceRGB cs 0.9608 0.9608 0.9608 scn 52.24 805.89 m 543.04 805.89 l 545.2491 805.89 547.04 804.0991 547.04 801.89 c 547.04 699.45 l 547.04 697.2409 545.2491 695.45 543.04 695.45 c 52.24 695.45 l 50.0309 695.45 48.24 697.2409 48.24 699.45 c 48.24 801.89 l 48.24 804.0991 50.0309 805.89 52.24 805.89 c h f /DeviceRGB CS 0.8 0.8 0.8 SCN 0.75 w 52.24 805.89 m 543.04 805.89 l 545.2491 805.89 547.04 804.0991 547.04 801.89 c 547.04 699.45 l 547.04 697.2409 545.2491 695.45 543.04 695.45 c 52.24 695.45 l 50.0309 695.45 48.24 697.2409 48.24 699.45 c 48.24 801.89 l 48.24 804.0991 50.0309 805.89 52.24 805.89 c h S Q /DeviceRGB cs 0.5333 0.5333 0.5333 scn /DeviceRGB CS 0.5333 0.5333 0.5333 SCN BT 59.24 783.065 Td /F2.0 11 Tf <3120> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 1.0 1.0 0.8 scn 70.24 779.625 465.8 14.8 re f 0.2 0.2 0.2 scn BT 70.24 783.065 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.7333 0.0 0.4 scn 0.7333 0.0 0.4 SCN BT 70.24 783.065 Td /F3.0 11 Tf <3c70726f6a656374> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.24 783.065 Td /F2.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.4 0.6 scn 0.2 0.4 0.6 SCN BT 119.74 783.065 Td /F2.0 11 Tf <786d6c6e733d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.8667 0.1333 0.0 scn 0.8667 0.1333 0.0 SCN BT 152.74 783.065 Td /F2.0 11 Tf <22687474703a2f2f6d6176656e2e6170616368652e6f72672f504f4d2f342e302e3022> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 345.24 783.065 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn BT 59.24 768.325 Td /F2.0 11 Tf <ca20> Tj ET 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 1.0 1.0 0.8 scn 70.24 764.885 465.8 14.8 re f 0.2 0.2 0.2 scn BT 70.24 768.325 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.4 0.6 scn 0.2 0.4 0.6 SCN BT 70.24 768.325 Td /F2.0 11 Tf <786d6c6e733a7873693d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.8667 0.1333 0.0 scn 0.8667 0.1333 0.0 SCN BT 125.24 768.325 Td /F2.0 11 Tf <22687474703a2f2f7777772e77332e6f72672f323030312f584d4c536368656d612d696e7374616e636522> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 361.74 768.325 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn BT 59.24 753.585 Td /F2.0 11 Tf <ca20> Tj ET 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 1.0 1.0 0.8 scn 70.24 750.145 465.8 14.8 re f 0.2 0.2 0.2 scn BT 70.24 753.585 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.4 0.6 scn 0.2 0.4 0.6 SCN BT 70.24 753.585 Td /F2.0 11 Tf <7873693a736368656d614c6f636174696f6e3d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.8667 0.1333 0.0 scn 0.8667 0.1333 0.0 SCN BT 174.74 753.585 Td /F2.0 11 Tf <22687474703a2f2f6d6176656e2e6170616368652e6f72672f504f4d2f342e302e30> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn BT 59.24 738.845 Td /F2.0 11 Tf <ca20> Tj ET 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 1.0 1.0 0.8 scn 70.24 735.405 465.8 14.8 re f 0.2 0.2 0.2 scn BT 70.24 738.845 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.8667 0.1333 0.0 scn 0.8667 0.1333 0.0 SCN BT 70.24 738.845 Td /F2.0 11 Tf <687474703a2f2f6d6176656e2e6170616368652e6f72672f7873642f6d6176656e2d342e302e302e78736422> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.7333 0.0 0.4 scn 0.7333 0.0 0.4 SCN BT 312.24 738.845 Td /F3.0 11 Tf <3e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.5333 0.5333 0.5333 scn 0.5333 0.5333 0.5333 SCN BT 59.24 724.105 Td /F2.0 11 Tf <3220> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 70.24 724.105 Td /F2.0 11 Tf <2020> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.7333 0.0 0.4 scn 0.7333 0.0 0.4 SCN BT 81.24 724.105 Td /F3.0 11 Tf <3c6d6f64656c56657273696f6e3e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 158.24 724.105 Td /F2.0 11 Tf <342e302e30> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.7333 0.0 0.4 scn 0.7333 0.0 0.4 SCN BT 185.74 724.105 Td /F3.0 11 Tf <3c2f6d6f64656c56657273696f6e3e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.5333 0.5333 0.5333 scn 0.5333 0.5333 0.5333 SCN BT 59.24 709.365 Td /F2.0 11 Tf <3320> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 1.0 1.0 0.8 scn 70.24 705.925 465.8 14.8 re f 0.2 0.2 0.2 scn BT 70.24 709.365 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.7333 0.0 0.4 scn 0.7333 0.0 0.4 SCN BT 70.24 709.365 Td /F3.0 11 Tf <3c2f70726f6a6563743e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 11 0 R /F3.0 12 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /215559+mplus1mn-regular /Subtype /TrueType /FontDescriptor 17 0 R /FirstChar 32 /LastChar 255 /Widths 19 0 R /ToUnicode 18 0 R >> endobj 12 0 obj << /Type /Font /BaseFont /1ccb78+mplus1mn-bold /Subtype /TrueType /FontDescriptor 21 0 R /FirstChar 32 /LastChar 255 /Widths 23 0 R /ToUnicode 22 0 R >> endobj 13 0 obj << /Type /Outlines /Count 1 /First 14 0 R /Last 14 0 R >> endobj 14 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 13 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 15 0 obj << /Nums [0 << /P (1) >>] >> endobj 16 0 obj << /Length1 5508 /Length 3738 /Filter [/FlateDecode] >> stream xW P[י>JH`0`J6\$` dSKb˒@#q$Ķ'q2v&q3in̎xix4iͺ쎛f:uν޴N8wBk7C_}?O:BX;;whbPsPBkh<}-}X?F"ue<xpiX?kvdRga=>\Hi{<%'W 0BZ }[4 fgoԟAHW OLE(B #bc?1 eJ.r%~8VCU EdBK6 ֈL\> 2vnbN#R#d5v g97/^dN/ķoGy+84!o�M'%M‹Q H0b؄Uޛе%gw o>D+?2=s+C̵/DDAW>癏P*Fc[9gLuLcmMj̙T]=[4niQ]--GkJiXّ;xlY7 (V/Ԏf09#ñe3xEl3MvA:,|w3Rq:o]w,$VdЫ q&smFs-vPk |V5<zpw;|<)Js<?slrIj`2p9t[ 0c;Ns|U'X%䠞qS&YR@pAҒ�DA%|c4dAkLJay餾 Cm! 4'Ŀc-G@r4Ĝ ȸyjnft9%6s5a 6///Ak+*T̅Z[S٤*|z8|=[>茸;Gѣ4܋ 9^ř?"5uOW<sڲځ,ٗ%y_88>+KR$1 n;`[- I&{SiۖAY԰wջps_٦c;=oZ'xI\a㧖Lܿtjbc! JyEz*0hlr jZ;i3~ed7aw8k1R_cu]鮶- Mh5Ov|@)iOwh6FدF˺=~Tek� US9U-nm, {'j\~b:iQ T)-ڪWWىO*{;?'?Vlid'9|B8OWC.k/EakڂW5zBoU==`Kྖ*gt hbO'H6]!H<Tj DQƖB92}YܹD'O~W> z@ 5#!pfX;2˷^)Nн"mUvȧ;:g&JFHc2~t Ruuon:ǐ8/]%jj̰ /y=ѶRc8r_Fq/BBMMGro&nNL$R<dɧ2onށh$ M?OTP/Ar~^ӌB7lЕH_*zC>ϙq&}F[7MOGì敏nڢYmsOFGw_X:=wk9a/!l^۽k o글!ĖfrpX.]pކ-*|fR.h]{\3L |[2o-wU39tWN?yҏ__\<\=ڄZPc4: gwi2o1&1glE£H(xYqUq[(}2[0"xBoB <<к@ e�44GZL/^#AJ6P'K/33R/5-B1Ȟ%V&=F|5`&;a%@?칸|G)?MjYu5bj%&v٩Ig/Da8B-yB>+m@,lȎPDЅ>w Wvx]14v�X6z1."`]L[ L27fd: AΠ|tD+@LW�Ϋ2] 8t%|.ӳP>ΒY d zyc̓.]dZ/$=5@rSTweBGCWe R+.hP2;9(kBYB4]#þQnDJaEQނ!c4V Z]aQ{ 6#^fC<!s58Jx#s0E�tD)W2v%SVdzYI &6J#p}Ua滊#d I+j&ʌGR dmAH`/I@�'hkp8�$3zJ΀ uɅpn<WrS y'�IðC{м/[` KT$.$gH;cH7ͦ BM'Ņ A\-l0fñt*{1aci { i6 fb`,lHT(;D:iºi{z{XS(Modz}:ȉ(sj5{ww0.  �:pơ< O 6 ;A/a Br.9#<a*xTr:@gQNRNHRh!Lو8Uv`貊rxVjZqX@�Qy𩏮@ = :~O?_?'a1J#/6{Vr}e[ ,rl>#/�uWcX|cq!~s/t|\}lOV�G! o3#?ʹ? (=N~~A?KݛK+zSBv\7(W^:d_O7$٫ߴxq@BO^sjF00 0y8APN!Y6yB%+ ^jc{*(,V�lg*(-DR/2PZ�eYNMX5>ǦJ0jkymjzca" 0rs4 D2ALZJ@iҊFҮ 5' jpn\= Zr2fmW˰p8>B:#d2-WKRj�BnfLH ,{U>cF0e86pA" *0hAo 1L_2 C.gQ%nszoÎ:ĝN'8_EN{<'9g) s;s!9b6$e@@g%o C �ѸD endstream endobj 17 0 obj << /Type /FontDescriptor /FontName /215559+mplus1mn-regular /FontFile2 16 0 R /FontBBox [0 -270 1000 1025] /Flags 4 /StemV 0 /ItalicAngle 0.0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 18 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 19 0 obj [500 364 500 364 364 364 364 364 364 364 364 364 364 500 500 500 500 500 500 500 500 364 364 364 364 364 500 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 500 364 500 500 364 364 500 364 364 364 364 500 364 364 364 364 364 364 364 364 500 364 500 500 500 364 500 500 500 364 364 500 500 500 500 500 364 500 500 500 364 500 500 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj 20 0 obj << /Length1 4084 /Length 2705 /Filter [/FlateDecode] >> stream xWYp[ϕl˻lKH[lI,/&ˎزtmXK$9 % /L $M@2a>dhzJdtX2tM0Cs9\��Y?5V,+�)]\>PR8'b9i�CTAY@y }+(B:;#tdg WQEI �C? Ï?|.}qX󭱸>nDl8օb|۞5 P| `c _!T_SosɅ"(֖|mׇ#&=`cI7ܫo=`< G`Ɵ;K;~}tqk7* F gk5\җ~kNľ9qtUk 8ɸr|>VfW*{xGN%z-b9TZޔוmmlTm[sv~s:PB5{\*)ұZX,ȃ-�59GU[̍-Y"Ro!1M-.M_8P6!A0r.n%tֽww ~pqn~ ih/ ܶQW_woss:m~8Wo9ol%{E軄FU׏ǣ;VEHoܯeCm:y]3CbYzcb{t"~X,r2`2,!EgvZ(o- k++'qOnGI[pBqw3gr}k]U\mZJ"~G}yzZu0R[6T-Ԛu'  pbYpG=J966lT76]qn:LQum?}iGdt&"/l98jc݇(�Do)CSJD~ĕNV-r=/GQ0rpS9q+zDoXgfG\k0;=\䍮mʡQ3Vꂊgpdef }|eD7�9֦Ʀ;Ӊe,[;C '^{MtP 0 ?K!ѐ̓Yr\- F)f։[;6 &l܆M`͇݃ͱUmO_=*vWtS*kJNVn.|ӵLȧܫx6Kqx'Wp\.W{}>#$QۉYJ~?)g[xTn&m~  F` a\0 S0 X@x`v wjYsY99^;W)z5ÆW),("Tg6bUٸ6C8} &Z!E_O}!y{He';-&4Sjب{ƆzQaC!I?O4c(֭XQpc(Vх9 atGЍFHmVv @h%niA"�(a0(nza`+8h۴OlZ>":N iTF5[Ϸ-$2d2$, fM"֥\$ֵ/e 4-(I&;�JVX;JPBYE.$⢕NECPR Иr["Lҕh~\o3E4J$HCI3=Ji4.ѕ$ GߗD"3Q+:oy0G*+u Nۇhz&Q6݃)7ruV+Ae+y+kz[c'pfg]tVM!valIy)VMXb2l83$R"qW83dۤa< m/䨌d/*3,`#gRي V-ﰼY8!vfv_bp5(['*rNԋ'5&gؼ 8bcXS,w ߌ VaR^>8&|J+Gs)aQ -<* \!(SwQG CT(|ڱR6݂_Xyќx{#Tv!~98"AaaqT'L {WD(6-q3ŝA~;a5o�?R]U78.'`XҌ{NFQz% GURv+$0KP6,5{^ {+psWw%RfHLפFę]>kH*sJquz-L{{ >xx ̅3{,R@̌A1U*7Y\3=œ4TR TRI0I)e; Fא%WFb2i Z#2E93mr }KC +d5Mѝ~)^v3rɉH̏)$)=}h4K), b4SJlFVl%9O=ÓD&4ȧxL>f1aEҲe(ŸKXlP_ X6gL̘D۬lC>#qOgIdf){<<Fw#|7V3>C(N~Rv˗,/B�*k= endstream endobj 21 0 obj << /Type /FontDescriptor /FontName /1ccb78+mplus1mn-bold /FontFile2 20 0 R /FontBBox [0 -275 1000 1042] /Flags 4 /StemV 0 /ItalicAngle 0.0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 22 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 23 0 obj [364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 500 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 500 500 500 364 364 364 500 500 364 500 500 500 500 500 364 500 500 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj xref 0 24 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000005185 00000 n 0000005495 00000 n 0000005537 00000 n 0000005585 00000 n 0000005637 00000 n 0000005809 00000 n 0000005978 00000 n 0000006052 00000 n 0000006177 00000 n 0000006222 00000 n 0000010050 00000 n 0000010263 00000 n 0000011625 00000 n 0000012539 00000 n 0000015334 00000 n 0000015544 00000 n 0000016906 00000 n trailer << /Size 24 /Root 2 0 R /Info 1 0 R >> startxref 17820 %%EOF �����������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/source-rouge-line-highlighting-indent.pdf�����������������0000664�0000000�0000000�00000027067�14163570564�0030451�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20191228022531-07'00') /CreationDate (D:20191228022531-07'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 12 0 R /PageLabels 14 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 3805 >> stream q q /DeviceRGB cs 0.9608 0.9608 0.9608 scn 52.24 805.89 m 543.04 805.89 l 545.2491 805.89 547.04 804.0991 547.04 801.89 c 547.04 669.97 l 547.04 667.7609 545.2491 665.97 543.04 665.97 c 52.24 665.97 l 50.0309 665.97 48.24 667.7609 48.24 669.97 c 48.24 801.89 l 48.24 804.0991 50.0309 805.89 52.24 805.89 c h f /DeviceRGB CS 0.8 0.8 0.8 SCN 0.75 w 52.24 805.89 m 543.04 805.89 l 545.2491 805.89 547.04 804.0991 547.04 801.89 c 547.04 669.97 l 547.04 667.7609 545.2491 665.97 543.04 665.97 c 52.24 665.97 l 50.0309 665.97 48.24 667.7609 48.24 669.97 c 48.24 801.89 l 48.24 804.0991 50.0309 805.89 52.24 805.89 c h S Q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 59.24 783.065 Td /F2.0 11 Tf <7261747061636b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 97.74 783.065 Td /F2.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 103.24 783.065 Td /F2.0 11 Tf <7b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 768.325 Td /F2.0 11 Tf <ca202020> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 81.24 768.325 Td /F2.0 11 Tf <68616e646c657273> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 125.24 768.325 Td /F2.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 130.74 768.325 Td /F2.0 11 Tf <7b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 753.585 Td /F2.0 11 Tf <ca20202020202020> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 103.24 753.585 Td /F2.0 11 Tf <676574> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 119.74 753.585 Td /F2.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 125.24 753.585 Td /F2.0 11 Tf <7b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 1.0 1.0 0.8 scn 59.24 735.405 476.8 14.8 re f 0.2 0.2 0.2 scn BT 59.24 738.845 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 738.845 Td /F2.0 11 Tf <ca2020202020202020202020> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 125.24 738.845 Td /F2.0 11 Tf <72656e646572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 158.24 738.845 Td /F2.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.8667 0.1333 0.0 scn 0.8667 0.1333 0.0 SCN BT 163.74 738.845 Td /F2.0 11 Tf <2727277c48656c6c6f2c> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 1.0 1.0 0.8 scn 59.24 720.665 476.8 14.8 re f 0.2 0.2 0.2 scn BT 59.24 724.105 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.8667 0.1333 0.0 scn 0.8667 0.1333 0.0 SCN BT 59.24 724.105 Td /F2.0 11 Tf <ca2020202020202020202020202020202020202020207c576f726c6421272727> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 235.24 724.105 Td /F2.0 11 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.4 0.6 scn 0.2 0.4 0.6 SCN BT 240.74 724.105 Td /F2.0 11 Tf <73747269704d617267696e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 301.24 724.105 Td /F2.0 11 Tf <2829> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 709.365 Td /F2.0 11 Tf <ca20202020202020> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 103.24 709.365 Td /F2.0 11 Tf <7d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 694.625 Td /F2.0 11 Tf <ca202020> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 81.24 694.625 Td /F2.0 11 Tf <7d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 679.885 Td /F2.0 11 Tf <7d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 11 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /8f79f0+mplus1mn-regular /Subtype /TrueType /FontDescriptor 16 0 R /FirstChar 32 /LastChar 255 /Widths 18 0 R /ToUnicode 17 0 R >> endobj 12 0 obj << /Type /Outlines /Count 1 /First 13 0 R /Last 13 0 R >> endobj 13 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 12 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 14 0 obj << /Nums [0 << /P (1) >>] >> endobj 15 0 obj << /Length1 4908 /Length 3242 /Filter [/FlateDecode] >> stream xW lSϵc';qh9%&۹I;〝0Nlq lݨK誶B{T]i.PUt[b* UZ*V-}/My{�?(�H3O>ۈ�41(TBP$1F&O#= }(# R[nEVW]G:ƉdD#=Ea`rWp�p9N>mtb,LSH] *,g`9*uwe.k\0?[ًr W|0B%[wWQ�ƹJ8*CoүpEɺ‘QI˝FJbZ.ߡՎW r 39URF9.u:^%*ʩq]ad}`~fԵleweAμAv+BE&&px. jHt84oʛ.н9s:@0cwcZ9p1uXfd<00y#vqO?"7v e.aÖ2pGFrj?5i4ʑPZgG>=FϾ$ ͧR&%sB'\]UGbhMa!G;>5-sB.Ӧ U M},i^iZgN45T:syl bت8܌a/"Gr m}իƧZETcc%Grr5+oTj#"BzGKW\vձet*DM|chlױNOy3f$;*A[`~ޯn[[r! ںvzErfsFkh|B~xz(J;u"A28jv[`/عtyi˺<vCȗZF#<w=؝paQ%'V^Zsj[wWiSWr8~Kڄ/~bu )isH/șin >rm-C4!g]BWWR oXsxjK A%I(1}f۱cy tz\% t 8*Ke]ԣ$TWQ?PO4:MYgwVK4Gg;;B޾{c×/nr<fC;i܎5UhWSWp(*Y_[kƻ=p2{'@ JX֝= yR}=�bD- Hj4#†BdUuG- 5FG]}\5.<c\'oXih.RQ8&r^qTQns[ژƼh݂!Lx"FJ u�!HT;XV99O2SZ]m-o7H`hm4;;׵p;gZӹ87V\[jWk=ÉF ; pT~VR]N%>epy&e"SM F^&$'kLU`"Wq7vsbkVZZ"?c+M|)|P;R/�{7s0  K AowؗH.A%2YƿK q˳_,�B,Hͩ6%`X MMy^P,z#sxsw X=hЍz~�.!{m+l#D; KRđ|8%{4` q/9V>BB(|5|Ոπ3`)W("|!BPE)E:yX/»#U/PdtQ [}Fa=Ȱb{P̿ڥZunX1=Xa$<a%P? *gGō{Bw! mFHTD]q_:A=McAjIt MVYwh"Wiq r7l7P8vp)~әd86a9{ÍqJDњQ<21>5 x:P"1Ť-6vL|%0k1ItgT ecp“P6ƃA:MŃ6:G‰`N$(&btj2h~W E4LۧANXp"Dcq>Ʀ4 G~_,4`#`aXf;y.^(ZZiI %tSM75\}n k"d^qL7I\ŕݬcCʎd[yMpFO&p|3RlL&x}oGcR,3Vp7G#b#fB d#0ʏ+>l}z%Ųۯ'*tmDO\+rJjPY/qΘ~?fqap`tTDzEs|0U)˒G+ғҘEOt֛%EDzvy\z�#~ p*C/J%1oܜOȆ{~#$G^lI;Mo'qeHAViMyo+GM5ߔDG/.lͭߛg8^XuY$3N{e2=r!5N*k7{@ =ܽ+v1.{K$߶* (g[e^UVY‹4M^0Uhv_(-X4}/xaYy*k,JNl\,h-ǖsV<+ӒV9B2#/" U]"n<`Gdu-Nrʕit:".y8Z!k1!vCLniv$}b&EnNdrJb|!7:9R&S1=4Rz3fbW3XlדĀĤH]I*l: y跞&y_ ѷc͑0| K[w@Lje:/~W DZZHIr3!]q;z/@|sy8%mXdb^o&2 {]! endstream endobj 16 0 obj << /Type /FontDescriptor /FontName /8f79f0+mplus1mn-regular /FontFile2 15 0 R /FontBBox [0 -270 1000 1025] /Flags 4 /StemV 0 /ItalicAngle 0.0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 17 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 18 0 obj [500 500 364 364 364 364 364 500 500 500 364 364 500 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 364 364 364 500 364 364 364 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 500 364 500 500 500 364 500 500 500 364 500 500 364 500 500 500 364 500 500 500 364 364 364 364 364 364 500 500 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj xref 0 19 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000004696 00000 n 0000004993 00000 n 0000005035 00000 n 0000005083 00000 n 0000005135 00000 n 0000005307 00000 n 0000005381 00000 n 0000005506 00000 n 0000005551 00000 n 0000008883 00000 n 0000009096 00000 n 0000010458 00000 n trailer << /Size 19 /Root 2 0 R /Info 1 0 R >> startxref 11372 %%EOF �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/source-rouge-line-highlighting-with-linenums-start.pdf����0000664�0000000�0000000�00000043750�14163570564�0033123�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20191228013541-07'00') /CreationDate (D:20191228013541-07'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 13 0 R /PageLabels 15 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 4478 >> stream q q /DeviceRGB cs 0.9608 0.9608 0.9608 scn 52.24 805.89 m 543.04 805.89 l 545.2491 805.89 547.04 804.0991 547.04 801.89 c 547.04 699.45 l 547.04 697.2409 545.2491 695.45 543.04 695.45 c 52.24 695.45 l 50.0309 695.45 48.24 697.2409 48.24 699.45 c 48.24 801.89 l 48.24 804.0991 50.0309 805.89 52.24 805.89 c h f /DeviceRGB CS 0.8 0.8 0.8 SCN 0.75 w 52.24 805.89 m 543.04 805.89 l 545.2491 805.89 547.04 804.0991 547.04 801.89 c 547.04 699.45 l 547.04 697.2409 545.2491 695.45 543.04 695.45 c 52.24 695.45 l 50.0309 695.45 48.24 697.2409 48.24 699.45 c 48.24 801.89 l 48.24 804.0991 50.0309 805.89 52.24 805.89 c h S Q /DeviceRGB cs 0.5333 0.5333 0.5333 scn /DeviceRGB CS 0.5333 0.5333 0.5333 SCN BT 59.24 783.065 Td /F2.0 11 Tf <3420> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 1.0 1.0 0.8 scn 70.24 779.625 465.8 14.8 re f 0.2 0.2 0.2 scn BT 70.24 783.065 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.8 0.0 0.0 scn 0.8 0.0 0.0 SCN BT 70.24 783.065 Td /F3.0 11 Tf <23696e636c756465203c737464696f2e683e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.5333 0.5333 0.5333 scn 0.5333 0.5333 0.5333 SCN BT 59.24 768.325 Td /F2.0 11 Tf <3520> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.5333 0.5333 0.5333 scn 0.5333 0.5333 0.5333 SCN BT 59.24 753.585 Td /F2.0 11 Tf <3620> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.5333 0.5333 0.5333 scn 0.5333 0.5333 0.5333 SCN BT 70.24 753.585 Td /F3.0 11 Tf <696e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 86.74 753.585 Td /F2.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.4 0.7333 scn 0.0 0.4 0.7333 SCN BT 92.24 753.585 Td /F3.0 11 Tf <6d61696e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.24 753.585 Td /F2.0 11 Tf <28> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.5333 0.5333 0.5333 scn 0.5333 0.5333 0.5333 SCN BT 119.74 753.585 Td /F3.0 11 Tf <766f6964> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 141.74 753.585 Td /F2.0 11 Tf <29> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 147.24 753.585 Td /F2.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 152.74 753.585 Td /F2.0 11 Tf <7b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.5333 0.5333 0.5333 scn 0.5333 0.5333 0.5333 SCN BT 59.24 738.845 Td /F2.0 11 Tf <3720> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 1.0 1.0 0.8 scn 70.24 735.405 465.8 14.8 re f 0.2 0.2 0.2 scn BT 70.24 738.845 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 70.24 738.845 Td /F2.0 11 Tf <2020> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 81.24 738.845 Td /F2.0 11 Tf <7072696e7466> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.24 738.845 Td /F2.0 11 Tf <28> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.8667 0.1333 0.0 scn 0.8667 0.1333 0.0 SCN BT 119.74 738.845 Td /F2.0 11 Tf <2248656c6c6f2c20576f726c6421> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.2667 0.8667 scn 0.0 0.2667 0.8667 SCN BT 196.74 738.845 Td /F2.0 11 Tf <5c6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.8667 0.1333 0.0 scn 0.8667 0.1333 0.0 SCN BT 207.74 738.845 Td /F2.0 11 Tf <22> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 213.24 738.845 Td /F2.0 11 Tf <293b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.5333 0.5333 0.5333 scn 0.5333 0.5333 0.5333 SCN BT 59.24 724.105 Td /F2.0 11 Tf <3820> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 1.0 1.0 0.8 scn 70.24 720.665 465.8 14.8 re f 0.2 0.2 0.2 scn BT 70.24 724.105 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 70.24 724.105 Td /F2.0 11 Tf <2020> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.5333 0.0 scn 0.0 0.5333 0.0 SCN BT 81.24 724.105 Td /F3.0 11 Tf <72657475726e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.24 724.105 Td /F2.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.0 0.8667 scn 0.0 0.0 0.8667 SCN BT 119.74 724.105 Td /F3.0 11 Tf <30> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 125.24 724.105 Td /F2.0 11 Tf <3b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.5333 0.5333 0.5333 scn 0.5333 0.5333 0.5333 SCN BT 59.24 709.365 Td /F2.0 11 Tf <3920> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 70.24 709.365 Td /F2.0 11 Tf <7d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 11 0 R /F3.0 12 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /dff27c+mplus1mn-regular /Subtype /TrueType /FontDescriptor 17 0 R /FirstChar 32 /LastChar 255 /Widths 19 0 R /ToUnicode 18 0 R >> endobj 12 0 obj << /Type /Font /BaseFont /eb91a1+mplus1mn-bold /Subtype /TrueType /FontDescriptor 21 0 R /FirstChar 32 /LastChar 255 /Widths 23 0 R /ToUnicode 22 0 R >> endobj 13 0 obj << /Type /Outlines /Count 1 /First 14 0 R /Last 14 0 R >> endobj 14 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 13 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 15 0 obj << /Nums [0 << /P (1) >>] >> endobj 16 0 obj << /Length1 5008 /Length 3345 /Filter [/FlateDecode] >> stream xW{pSי?H~# ΕolX%Kl [-@A2#a˱$G`PBD<t6l73;pC2vd;M&0mI!e,nmhmksu!4m=9ׄB䑧BH8BgF LHPꍚ )xziR tzv6,<^;N~0:bZ}۠,$Ӭ}JH D0yЧ`p#D Ȃfm.׿B"iݑ7NH|$h1'GFy KJ~et*/GTUא dc]K6u?Fn !F^4Ң믿ξ52Nȵ9 F,*OW?'HoГҜn:^FӔfӚu.K4=a˩sʨZ<]B}X l GrDW qQUH|HS%:DVPŤZt8m]pW|F ?D,|*J.+^TN~~j:]a\5=<Ґ/oW٬{X_ V+aSvwO1mwz? 6 @G.H5ᑵp*OTN9]{kvJ6}`X{KЪo,>kxoYQnd=p?V۝}'k!VV Щj+ip(TQt[[0$k,mۜSaw>7svumcOǷ.)no۶NDkXu[YtԽsW#}jC;S=VT͸Sef˨Fɐ t:n%ߞbgrJu01|z_m}~wp42~.SAtMATzleE."%M3|ٷis2\Fc 5c{lk̹Xߘgy^^}} ,z뷬C_Uj-t�,ۉ<>UgSrA.6=OնٰO--љ4a|3Iǫu'MY9)'5ڬJrUY`xZۻ3 D3ѴSZ|rYfW\u^F7S[%Og5b154%gz鋮)Ou:ɕ/j ^PkkC{}ҳp7kiiIuZ8v#^==ʝ=}xCXW(hOxpwZO?l f-9?r,VuVG[c}kBK1㘃ȾI_n)ԗFQG~뙜$,ػu= o,.ߡB+${;#5cR =lm^P'4[>w87\k,w^V1Y 6L Uڱ1r(|bn2Ãf;8luh3t.4:GW~GrgOW<C-x- g2ӎd-49E/zCI} |lcOUF,yb7 9r-ք6ևAuQh-hNyTnUǪ*7^ڲ'ě~߬p6IS[7c.d=gr=FZ)+,b%yEiw{}wZ6WnEkki2ѮrZR~kج#ZX.Aů�>ul';H? d% _YCoP Q-{@GU>yϰ/T> �<RFT~D+T~>-긄l}L iU:=aԃbUFG򵯪2:ReUFO 2zR*ǟL.MffMԺMƅ1PNId%)3dQ!rfi%0Z8Gv8cXQ2Dzfk<J8Ix#3)E�zT_2Kf"" ۅV̽$ҧQܰ nBX mh̞Hj1La =@METPZ|ph 5-Ĝʅ1N/loiQ(X$ ܂4򷝴c4pNT eIà,8Q|EOE"b2>LE,Db>#aa!!6 &87-FLBj-SCK#L)}PZ'ñh,L$DGRXp~(N$,o`p\)aP)===B}8zao`t'zG| jb\D2oF-ܢSH7_ED1s8& ;8Z0x )6McVP!&Bj-12aE74dӊ7:f1T$Th!`UnD(vB "yr9%) rҍ߶=zz̸:_~/F\9)t7txs�HRBCk'?<*ͭI/?HOK3R@b[zXzH:(3E{($MMwj[ IQ~*H>O.8*ˏ�4vA~Y)zqgLH#MIU Eu|RNJ?9W$wW^:jSnğ~!_jkd{"]LG.?G#FY/6LLL2w;j0 (mVXj25 WfLW Ͳ1v̲U(P 9jjE@�xyu'rzz օS0TX]Xr,ȫdMà(!3LPFc6P @,1 o)ᔚ� ~/8't˭aZ2bNr$g]N@Lyh.g( › 7"$ UegР`F r ̲/C9�sdx' W0!Wxچb@nj<]n7\a+o.<o_|3@NBȦ*M2 ^f=k|#;0> endstream endobj 17 0 obj << /Type /FontDescriptor /FontName /dff27c+mplus1mn-regular /FontFile2 16 0 R /FontBBox [0 -270 1000 1025] /Flags 4 /StemV 0 /ItalicAngle 0.0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 18 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 19 0 obj [500 500 500 364 364 364 364 364 500 500 364 364 500 364 364 364 364 364 364 364 500 500 500 500 500 500 364 500 364 364 364 364 364 364 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 364 364 364 500 364 364 364 364 364 364 364 500 500 500 364 364 500 364 364 500 364 500 500 500 364 500 364 500 364 364 364 364 364 364 500 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj 20 0 obj << /Length1 4400 /Length 2943 /Filter [/FlateDecode] >> stream xW}lS?Iȇ;%8k|΋'M$q `!�acͨK7ǦkULzUUUIꘆ&4!V[G[g^?(6u=;{ �P�dSSa&nf /�YMs)њB @N%؂ā({P__x S(WIlD({k&'|@ӋP;2K^F@A/d1y^^1z~&\ӆ( STX5eVa#$Acs)2˂ 4y�J/=pu㸼�֤qhEɽ[&@%0:E &Vv]H7 i6qn2CXW�W&NCZ\a![yptMp"mHlD4 o"Φ{mx!T( jO$'S:PtҾzy02A Y*g99N$Ky|ȇ,8yq';v*p^ykAg]}ԠΦ HZ48KDsA_갷܊ ؽg`:g6ߓM f*Fޡޑ U4hEgY};gBZ].gޯ~Fڵ]vtO+1=�U UԌNM2+׮k7ؾnc]d<>3;K?Y_IK⽆^ N 9Uu?κށ?]صSH]=CꬖƱ2ki萻#v|G~ZY=uyHEЍSOא6>G3~\qUltG-қc,:mKXn.M`e\X6+on--rX(6) ?Wa/quX:(Jލ_>86W\6BϦN)gmij.0O8\]77U  >9kZÇIyg×/aL?|1sJDm3ya!H"?tckS;M['x( f <v=nj+˹ƆEͲa&b젼crUJ#;ضMh/7QoVZ=(+K</E6Ϯioh۾yf&Ln}h`Wӵ14,$]NCˡHw_SXVФVd*dsj]<8Jb39vXl[S_< \&B<$A 6*B+ K]2&rP66bk֊͊[;IUWmjuzfSˮLGuؖq7׽kJ^P!7WLX'\!.[˟c R+;V-A\.~F7Rm\Ef6C/ ̎a|Cܡm$O2zU=AiUOS^T�πpDg`LkVT}&<U,('6Uԯa ٩C9 9 ƒ|E˙b,4LNvbv{<ct=N<,B B0AHO!Zq4 p<~Fb6#U#! @"A'IDc32$F4,B akq�Q ǐIؐ;4x�8@ 8JVh¦RWCq6rcP4BmRÏU!c8FU#ތ~ywk><?GLn &m \gemx byL`^۠8Cq6.2Q|P,{8e(1Ytb?&xd.%�cPF?´(]:mHBD,{!!PBA>h 4'Be1T?7Ȍ#*}&} e3ЭnwgZ b.۫wmpgqf?LgC8Ρe[o3 sw(63~M,)٘1�Mߍ ΆcV(#VQnɊ/M!fBe|eV,vk !ÿ;߬X6< >(uIB͌fcN=\nG7lҘ~#='Mz[ׯ/4J+yԼ-=#=+f$$H#Ғ˕"3{MҞm&{B}GYZ鐦i!p=#9G%2wwf #(mAAሌ齦qf\ڎ(]ҤK }ِb׊ɢB~zgoߍ2@꣌kfܾ;Α (iB;ݓ]5)žEaZ%~קJҿϧxjC>BJl Kʪz"Xng*jF*jM3w(zҳ'|>˲fU-(FGw0*09ӕ\庣XtZ`Ur- &P%OJfu#ޤS6h2I. fWl,6!b^Ye J&bzi`w&d_LҤÉ \q%))d2ҋIL:!qYDzQ .RѤ7 "M%E?sHΪm!o-[�辰$D쮻W\K,7Yb2G#ލqFo9 . 73+Fb;"v`]n<sSg%)tJ)o2Xb^eeinO $, J endstream endobj 21 0 obj << /Type /FontDescriptor /FontName /eb91a1+mplus1mn-bold /FontFile2 20 0 R /FontBBox [0 -275 1000 1042] /Flags 4 /StemV 0 /ItalicAngle 0.0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 22 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 23 0 obj [500 364 364 500 364 364 364 364 364 364 364 364 364 364 500 364 500 364 364 364 364 364 364 364 364 364 364 364 500 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 500 500 500 364 364 500 500 364 364 500 500 500 500 364 364 500 500 500 500 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj xref 0 24 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000005369 00000 n 0000005679 00000 n 0000005721 00000 n 0000005769 00000 n 0000005821 00000 n 0000005993 00000 n 0000006162 00000 n 0000006236 00000 n 0000006361 00000 n 0000006406 00000 n 0000009841 00000 n 0000010054 00000 n 0000011416 00000 n 0000012330 00000 n 0000015363 00000 n 0000015573 00000 n 0000016935 00000 n trailer << /Size 24 /Root 2 0 R /Info 1 0 R >> startxref 17849 %%EOF ������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/source-rouge-line-highlighting-with-linenums.pdf����������0000664�0000000�0000000�00000046705�14163570564�0031773�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20191228012852-07'00') /CreationDate (D:20191228012852-07'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 13 0 R /PageLabels 15 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 5334 >> stream q q /DeviceRGB cs 0.9608 0.9608 0.9608 scn 52.24 805.89 m 543.04 805.89 l 545.2491 805.89 547.04 804.0991 547.04 801.89 c 547.04 655.23 l 547.04 653.0209 545.2491 651.23 543.04 651.23 c 52.24 651.23 l 50.0309 651.23 48.24 653.0209 48.24 655.23 c 48.24 801.89 l 48.24 804.0991 50.0309 805.89 52.24 805.89 c h f /DeviceRGB CS 0.8 0.8 0.8 SCN 0.75 w 52.24 805.89 m 543.04 805.89 l 545.2491 805.89 547.04 804.0991 547.04 801.89 c 547.04 655.23 l 547.04 653.0209 545.2491 651.23 543.04 651.23 c 52.24 651.23 l 50.0309 651.23 48.24 653.0209 48.24 655.23 c 48.24 801.89 l 48.24 804.0991 50.0309 805.89 52.24 805.89 c h S Q /DeviceRGB cs 0.5333 0.5333 0.5333 scn /DeviceRGB CS 0.5333 0.5333 0.5333 SCN BT 59.24 783.065 Td /F2.0 11 Tf <3120> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.5333 0.5333 0.5333 scn 0.5333 0.5333 0.5333 SCN BT 70.24 783.065 Td /F2.0 11 Tf <2f2a2a> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.5333 0.5333 0.5333 scn 0.5333 0.5333 0.5333 SCN BT 59.24 768.325 Td /F2.0 11 Tf <3220> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.5333 0.5333 0.5333 scn 0.5333 0.5333 0.5333 SCN BT 70.24 768.325 Td /F2.0 11 Tf <202a20412070726f6772616d2074686174207072696e7473202248656c6c6f2c20576f726c642122> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.5333 0.5333 0.5333 scn 0.5333 0.5333 0.5333 SCN BT 59.24 753.585 Td /F2.0 11 Tf <3320> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.5333 0.5333 0.5333 scn 0.5333 0.5333 0.5333 SCN BT 70.24 753.585 Td /F2.0 11 Tf <202a2a2f> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.5333 0.5333 0.5333 scn 0.5333 0.5333 0.5333 SCN BT 59.24 738.845 Td /F2.0 11 Tf <3420> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 1.0 1.0 0.8 scn 70.24 735.405 465.8 14.8 re f 0.2 0.2 0.2 scn BT 70.24 738.845 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.8 0.0 0.0 scn 0.8 0.0 0.0 SCN BT 70.24 738.845 Td /F3.0 11 Tf <23696e636c756465203c737464696f2e683e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.5333 0.5333 0.5333 scn 0.5333 0.5333 0.5333 SCN BT 59.24 724.105 Td /F2.0 11 Tf <3520> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.5333 0.5333 0.5333 scn 0.5333 0.5333 0.5333 SCN BT 59.24 709.365 Td /F2.0 11 Tf <3620> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.5333 0.5333 0.5333 scn 0.5333 0.5333 0.5333 SCN BT 70.24 709.365 Td /F3.0 11 Tf <696e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 86.74 709.365 Td /F2.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.4 0.7333 scn 0.0 0.4 0.7333 SCN BT 92.24 709.365 Td /F3.0 11 Tf <6d61696e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.24 709.365 Td /F2.0 11 Tf <28> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.5333 0.5333 0.5333 scn 0.5333 0.5333 0.5333 SCN BT 119.74 709.365 Td /F3.0 11 Tf <766f6964> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 141.74 709.365 Td /F2.0 11 Tf <29> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 147.24 709.365 Td /F2.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 152.74 709.365 Td /F2.0 11 Tf <7b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.5333 0.5333 0.5333 scn 0.5333 0.5333 0.5333 SCN BT 59.24 694.625 Td /F2.0 11 Tf <3720> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 1.0 1.0 0.8 scn 70.24 691.185 465.8 14.8 re f 0.2 0.2 0.2 scn BT 70.24 694.625 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 70.24 694.625 Td /F2.0 11 Tf <2020> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 81.24 694.625 Td /F2.0 11 Tf <7072696e7466> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.24 694.625 Td /F2.0 11 Tf <28> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.8667 0.1333 0.0 scn 0.8667 0.1333 0.0 SCN BT 119.74 694.625 Td /F2.0 11 Tf <2248656c6c6f2c20576f726c6421> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.2667 0.8667 scn 0.0 0.2667 0.8667 SCN BT 196.74 694.625 Td /F2.0 11 Tf <5c6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.8667 0.1333 0.0 scn 0.8667 0.1333 0.0 SCN BT 207.74 694.625 Td /F2.0 11 Tf <22> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 213.24 694.625 Td /F2.0 11 Tf <293b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.5333 0.5333 0.5333 scn 0.5333 0.5333 0.5333 SCN BT 59.24 679.885 Td /F2.0 11 Tf <3820> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 1.0 1.0 0.8 scn 70.24 676.445 465.8 14.8 re f 0.2 0.2 0.2 scn BT 70.24 679.885 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 70.24 679.885 Td /F2.0 11 Tf <2020> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.5333 0.0 scn 0.0 0.5333 0.0 SCN BT 81.24 679.885 Td /F3.0 11 Tf <72657475726e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.24 679.885 Td /F2.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.0 0.8667 scn 0.0 0.0 0.8667 SCN BT 119.74 679.885 Td /F3.0 11 Tf <30> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 125.24 679.885 Td /F2.0 11 Tf <3b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.5333 0.5333 0.5333 scn 0.5333 0.5333 0.5333 SCN BT 59.24 665.145 Td /F2.0 11 Tf <3920> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 70.24 665.145 Td /F2.0 11 Tf <7d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 11 0 R /F3.0 12 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /fbb4e0+mplus1mn-regular /Subtype /TrueType /FontDescriptor 17 0 R /FirstChar 32 /LastChar 255 /Widths 19 0 R /ToUnicode 18 0 R >> endobj 12 0 obj << /Type /Font /BaseFont /eb91a1+mplus1mn-bold /Subtype /TrueType /FontDescriptor 21 0 R /FirstChar 32 /LastChar 255 /Widths 23 0 R /ToUnicode 22 0 R >> endobj 13 0 obj << /Type /Outlines /Count 1 /First 14 0 R /Last 14 0 R >> endobj 14 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 13 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 15 0 obj << /Nums [0 << /P (1) >>] >> endobj 16 0 obj << /Length1 5872 /Length 3990 /Filter [/FlateDecode] >> stream xWkT[ו>Jx0F I<eoCH I Nqd4ec2餞b{ue:I&d%Y^4+=4x:gtm fs/ygs##CO{ႩD(L,n0P5LGe S맦Áǰ h`qw]PNsI ac.6\u@4㰾 Bw?@H}\<<UU}6MMEW? 1l^7P!/F?:2gaFBG:#2s+PP |St6loBd3+E\YG^?ϭ̷hQÙ|ʤ |_ sESZ$jQr2WVV.;&$G'7TM@䤯u‹ѡ>)aP&gݒ 5ܡc}?]xQs|}/2h _\k {]Sa[,|±ǙZ=o~vn@vy܋-;,}ի4(s>߃+_8@7=Rn[hs?DVgk$jZg-rrbVdϮlWӉ?>k~%u4Ȗ) *:T_a-V_ &сox.U6TpT6sv\-qg+{ pu[s9VY(r5欜U $ja>e'yZg 7 =rIqBjW*sJ;Ô=jjt6XreϗhIOy| vtދq`Y\HZVԪBfwf0֑]*;oZkk y^~;:?غ; CaΪS3�N7ub4җqd~emF)S$.jZ*W`*0E3z{x;&hitFцٹ+ɉ"F{k{ݸLwOL:/Q tꮉƝĩ2W"d1XB#DR$Q =5Y_s#^G S V! ޥU2H\^p1⫴V!&pp%Wyys$r=&^"(he~Vl s�m!WY_w15=W`�to|UnR~ !X,-rN56~FkT%#7nѵ&Zkly46vD>f@p5Vh=]&jX_K:v"jW U"/8)u^ L_"4+n݀s\ޮk2b&śEMõ06G=qWV|ґ_ɍH+VQdE[vhzȿW֕;~2˃"nUgК} vpb0V&5qRWܘ;7ni,RG]`~+0Ava=f2V~/8VNn8_9d~jɝOCYz |B]S ]?Piׂ*ֆ 9:? 1OWzܖR|'~ O7Vk R |Y>l՗T߸ ^&lmLߌ^22wFJp;F) FáqWiϼSr>;'>Kq9pAusz�_5 >U6ݟ%/^4qTu;8t6۷6{{>0(6v5wZ5g7Jr~XմYZ-9{2ټPȃo:W۲ZV+B4|k|V6b5@4-l&]kJQeZU=f71nkp\黗ۅX@9A6[R *2?UUDE{ sp%v |)bLL79<ȼ|(ɒ$%K-!͐-9_Hߐ~  M4xC"ж@[V ZUB  )h*q'~\K'{%"Yޡ4CRKU4*OO^•RFL|ch6#]$`}JUTL&{]&HU7W~'E U,ZPVzUs5FRK&o^doJ֐lP䋤4poTPچQF=C!4vk7E-[R XJ"1)1h Hg}XK@rIK�H'"] 8u(P1Vtjq6ߌO6ŻEz.~T{FSHD|$./< $~((P"-6w NTfn`oGCP)Sh%ംh b,yTa]>`�y/`DgEEԾ@�@l3 f6LcX*bp&05*DYZ M4GblYBawc�'091Q櫢s3ܘN$)8 ^̛bYӞ9įU/ pw̙]!XකNGY’1B 6ó3h$sx42Ox`P1v|\ l`6Ć"xdb_"Fv!fcq:%h, �2a H`f�aI2!&lM=liKّoగixZ~4s5{kpcIY �Іw8@ mO>$m v_M.KF\&sGxBT6A{xp-4H^(' v($ `&DlX SI; ? N�<[֐gܟ";oJcŵPm;`Rx 0BLt 2 !~ jj=@y[;?OT^7({Ht=-*AI)]+<޾H. ;> ?i~rn&�wsDiJݺi7%ga<S-|C//l*B_IK gEz_ /!W*{/tʪ|TߕRy`rĿ)%TU!V/ջߟBܶ"5)퐟}/"c +*c1<ί3$HjqlߘZhrԺ*_snΰ~1%3POvΝ2JjE0(jc*"J^6%)ؔTߛBn_2 dR$]yQ%Xb}c`Srvq= Mo= $ە pI6QuO�'G0YL.|HӲkEt-Es iu)%.ɱɞ$ |r `8@&_r I.gQHO5i_j-N'vEN{<#MS ,s[yLmRR@@g$_&1  endstream endobj 17 0 obj << /Type /FontDescriptor /FontName /fbb4e0+mplus1mn-regular /FontFile2 16 0 R /FontBBox [0 -270 1000 1025] /Flags 4 /StemV 0 /ItalicAngle 0.0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 18 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 19 0 obj [500 500 500 364 364 364 364 364 500 500 500 364 500 364 364 500 364 500 500 500 500 500 500 500 500 500 364 500 364 364 364 364 364 500 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 364 364 364 500 364 364 364 364 500 364 364 500 500 500 500 500 500 364 364 500 500 500 500 500 364 500 500 500 364 364 364 364 364 364 500 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj 20 0 obj << /Length1 4400 /Length 2943 /Filter [/FlateDecode] >> stream xW}lS?Iȇ;%8k|΋'M$q `!�acͨK7ǦkULzUUUIꘆ&4!V[G[g^?(6u=;{ �P�dSSa&nf /�YMs)њB @N%؂ā({P__x S(WIlD({k&'|@ӋP;2K^F@A/d1y^^1z~&\ӆ( STX5eVa#$Acs)2˂ 4y�J/=pu㸼�֤qhEɽ[&@%0:E &Vv]H7 i6qn2CXW�W&NCZ\a![yptMp"mHlD4 o"Φ{mx!T( jO$'S:PtҾzy02A Y*g99N$Ky|ȇ,8yq';v*p^ykAg]}ԠΦ HZ48KDsA_갷܊ ؽg`:g6ߓM f*Fޡޑ U4hEgY};gBZ].gޯ~Fڵ]vtO+1=�U UԌNM2+׮k7ؾnc]d<>3;K?Y_IK⽆^ N 9Uu?κށ?]صSH]=CꬖƱ2ki萻#v|G~ZY=uyHEЍSOא6>G3~\qUltG-қc,:mKXn.M`e\X6+on--rX(6) ?Wa/quX:(Jލ_>86W\6BϦN)gmij.0O8\]77U  >9kZÇIyg×/aL?|1sJDm3ya!H"?tckS;M['x( f <v=nj+˹ƆEͲa&b젼crUJ#;ضMh/7QoVZ=(+K</E6Ϯioh۾yf&Ln}h`Wӵ14,$]NCˡHw_SXVФVd*dsj]<8Jb39vXl[S_< \&B<$A 6*B+ K]2&rP66bk֊͊[;IUWmjuzfSˮLGuؖq7׽kJ^P!7WLX'\!.[˟c R+;V-A\.~F7Rm\Ef6C/ ̎a|Cܡm$O2zU=AiUOS^T�πpDg`LkVT}&<U,('6Uԯa ٩C9 9 ƒ|E˙b,4LNvbv{<ct=N<,B B0AHO!Zq4 p<~Fb6#U#! @"A'IDc32$F4,B akq�Q ǐIؐ;4x�8@ 8JVh¦RWCq6rcP4BmRÏU!c8FU#ތ~ywk><?GLn &m \gemx byL`^۠8Cq6.2Q|P,{8e(1Ytb?&xd.%�cPF?´(]:mHBD,{!!PBA>h 4'Be1T?7Ȍ#*}&} e3ЭnwgZ b.۫wmpgqf?LgC8Ρe[o3 sw(63~M,)٘1�Mߍ ΆcV(#VQnɊ/M!fBe|eV,vk !ÿ;߬X6< >(uIB͌fcN=\nG7lҘ~#='Mz[ׯ/4J+yԼ-=#=+f$$H#Ғ˕"3{MҞm&{B}GYZ鐦i!p=#9G%2wwf #(mAAሌ齦qf\ڎ(]ҤK }ِb׊ɢB~zgoߍ2@꣌kfܾ;Α (iB;ݓ]5)žEaZ%~קJҿϧxjC>BJl Kʪz"Xng*jF*jM3w(zҳ'|>˲fU-(FGw0*09ӕ\庣XtZ`Ur- &P%OJfu#ޤS6h2I. fWl,6!b^Ye J&bzi`w&d_LҤÉ \q%))d2ҋIL:!qYDzQ .RѤ7 "M%E?sHΪm!o-[�辰$D쮻W\K,7Yb2G#ލqFo9 . 73+Fb;"v`]n<sSg%)tJ)o2Xb^eeinO $, J endstream endobj 21 0 obj << /Type /FontDescriptor /FontName /eb91a1+mplus1mn-bold /FontFile2 20 0 R /FontBBox [0 -275 1000 1042] /Flags 4 /StemV 0 /ItalicAngle 0.0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 22 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 23 0 obj [500 364 364 500 364 364 364 364 364 364 364 364 364 364 500 364 500 364 364 364 364 364 364 364 364 364 364 364 500 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 500 500 500 364 364 500 500 364 364 500 500 500 500 364 364 500 500 500 500 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj xref 0 24 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000006225 00000 n 0000006535 00000 n 0000006577 00000 n 0000006625 00000 n 0000006677 00000 n 0000006849 00000 n 0000007018 00000 n 0000007092 00000 n 0000007217 00000 n 0000007262 00000 n 0000011342 00000 n 0000011555 00000 n 0000012917 00000 n 0000013831 00000 n 0000016864 00000 n 0000017074 00000 n 0000018436 00000 n trailer << /Size 24 /Root 2 0 R /Info 1 0 R >> startxref 19350 %%EOF �����������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/source-rouge-line-highlighting.pdf������������������������0000664�0000000�0000000�00000043315�14163570564�0027164�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20191228022606-07'00') /CreationDate (D:20191228022606-07'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 13 0 R /PageLabels 15 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 4173 >> stream q q /DeviceRGB cs 0.9608 0.9608 0.9608 scn 52.24 805.89 m 543.04 805.89 l 545.2491 805.89 547.04 804.0991 547.04 801.89 c 547.04 655.23 l 547.04 653.0209 545.2491 651.23 543.04 651.23 c 52.24 651.23 l 50.0309 651.23 48.24 653.0209 48.24 655.23 c 48.24 801.89 l 48.24 804.0991 50.0309 805.89 52.24 805.89 c h f /DeviceRGB CS 0.8 0.8 0.8 SCN 0.75 w 52.24 805.89 m 543.04 805.89 l 545.2491 805.89 547.04 804.0991 547.04 801.89 c 547.04 655.23 l 547.04 653.0209 545.2491 651.23 543.04 651.23 c 52.24 651.23 l 50.0309 651.23 48.24 653.0209 48.24 655.23 c 48.24 801.89 l 48.24 804.0991 50.0309 805.89 52.24 805.89 c h S Q /DeviceRGB cs 0.5333 0.5333 0.5333 scn /DeviceRGB CS 0.5333 0.5333 0.5333 SCN BT 59.24 783.065 Td /F2.0 11 Tf <2f2a2a> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.5333 0.5333 0.5333 scn 0.5333 0.5333 0.5333 SCN BT 59.24 768.325 Td /F2.0 11 Tf <ca2a20412070726f6772616d2074686174207072696e7473202248656c6c6f2c20576f726c642122> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.5333 0.5333 0.5333 scn 0.5333 0.5333 0.5333 SCN BT 59.24 753.585 Td /F2.0 11 Tf <ca2a2a2f> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 1.0 1.0 0.8 scn 59.24 735.405 476.8 14.8 re f 0.2 0.2 0.2 scn BT 59.24 738.845 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.8 0.0 0.0 scn 0.8 0.0 0.0 SCN BT 59.24 738.845 Td /F3.0 11 Tf <23696e636c756465203c737464696f2e683e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.5333 0.5333 0.5333 scn 0.5333 0.5333 0.5333 SCN BT 59.24 709.365 Td /F3.0 11 Tf <696e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 75.74 709.365 Td /F2.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.4 0.7333 scn 0.0 0.4 0.7333 SCN BT 81.24 709.365 Td /F3.0 11 Tf <6d61696e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 103.24 709.365 Td /F2.0 11 Tf <28> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.5333 0.5333 0.5333 scn 0.5333 0.5333 0.5333 SCN BT 108.74 709.365 Td /F3.0 11 Tf <766f6964> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 130.74 709.365 Td /F2.0 11 Tf <29> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 136.24 709.365 Td /F2.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 141.74 709.365 Td /F2.0 11 Tf <7b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 1.0 1.0 0.8 scn 59.24 691.185 476.8 14.8 re f 0.2 0.2 0.2 scn BT 59.24 694.625 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 694.625 Td /F2.0 11 Tf <ca20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 70.24 694.625 Td /F2.0 11 Tf <7072696e7466> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 103.24 694.625 Td /F2.0 11 Tf <28> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.8667 0.1333 0.0 scn 0.8667 0.1333 0.0 SCN BT 108.74 694.625 Td /F2.0 11 Tf <2248656c6c6f2c20576f726c6421> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.2667 0.8667 scn 0.0 0.2667 0.8667 SCN BT 185.74 694.625 Td /F2.0 11 Tf <5c6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.8667 0.1333 0.0 scn 0.8667 0.1333 0.0 SCN BT 196.74 694.625 Td /F2.0 11 Tf <22> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 202.24 694.625 Td /F2.0 11 Tf <293b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 1.0 1.0 0.8 scn 59.24 676.445 476.8 14.8 re f 0.2 0.2 0.2 scn BT 59.24 679.885 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 679.885 Td /F2.0 11 Tf <ca20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.5333 0.0 scn 0.0 0.5333 0.0 SCN BT 70.24 679.885 Td /F3.0 11 Tf <72657475726e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 103.24 679.885 Td /F2.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.0 0.8667 scn 0.0 0.0 0.8667 SCN BT 108.74 679.885 Td /F3.0 11 Tf <30> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 114.24 679.885 Td /F2.0 11 Tf <3b> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 59.24 665.145 Td /F2.0 11 Tf <7d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 11 0 R /F3.0 12 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /bff660+mplus1mn-regular /Subtype /TrueType /FontDescriptor 17 0 R /FirstChar 32 /LastChar 255 /Widths 19 0 R /ToUnicode 18 0 R >> endobj 12 0 obj << /Type /Font /BaseFont /eb91a1+mplus1mn-bold /Subtype /TrueType /FontDescriptor 21 0 R /FirstChar 32 /LastChar 255 /Widths 23 0 R /ToUnicode 22 0 R >> endobj 13 0 obj << /Type /Outlines /Count 1 /First 14 0 R /Last 14 0 R >> endobj 14 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 13 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 15 0 obj << /Nums [0 << /P (1) >>] >> endobj 16 0 obj << /Length1 5080 /Length 3367 /Filter [/FlateDecode] >> stream xW p[}%9,qV~ĒgI|ĖoWd94AdKƒYhi9 }90RH3-0hi;i r]=Щ?}#V eQā;Sy !;7wR'W"g8k$ds>ٳ> n 7@h20TmXj>Bˁ6N=GCwj+}!UU/sXwL%BS{Uz@[Ǧƣy'P$f !X609VoaNFe ʾb)bQKDD(O像EūjCIFf *fo!#Ĺ)h֨\|y1#= r5\vt0w0/Ɲ_Xx2r|byF^7<M<}/RY-& fӡWbMa@`3~';L6YQMXc,/ii] ?V+uuElϐ{g%op{vף@ xGzcnn>^<O<c|*}q?Os!oJ@?g Az Q|,WPÂʇLj>_?>is2xHn> 961 =:TC+ó9 w>26/dny 0H=b]-\Mkty q?�t})|ݸFKoYtTs/3k뱽ėVXTBVv h\w{kK\ղZړloq1!m( Un]RkXY|-w[ݝ;kpBwL/c�?uP2rU*۷4z>.W6ֽ[Ҳ ytGRT�+,p5[&ް])݃˜V6G#^rHW)b&nվEx6u{6+wyܛG7_O_{;kz-wrRD,7kM΁^I7o/O?+}a렆q`2e/|41[-,i/gE6Fꍦ&MsՁBy# ,(1i7QaЦ, VShbD 2w׷2|۟>ՆLmPπjlUI9jMe*=g3N?4##A׵? Q=zضZnH8%X^k܋n}2c=|@ ޫݷq~|q|13kv0䀣VaKs+]QO瀳nChϨOLy%]\|eUYss[;gi4ta-`g]R8A7)}aiEkn0Tn> _9`!hĵ*lie:Og-&[_w{nTwٚӷ5w S|c[&.s"c[epfHO-DMȃ&At=BлXKq/NSpOp/*LMR DFg;ahACk'Z%d]V MǠ k-2 )hD^/ 4T�V&Ї2#j0-8%]@o&_|b_!;hD)f_^-ⷑkIu)28e+YfNԅQrh� ȍ0چUgbAhZ16]!c%h*ǐ1l|%|h|R+}Oe~Zd~*2_p<_VYfW%|_EO-̕e4H<%hrY2ZV)hJ?d:5>7'+MD`;=Cd=A(^w8 $�Z{ej&P?! N0k1YEQ'@(3x?JtcɎxb<DlVl&5DKz&p}&٘�s (r cC"Zh_uf[(1HUp~(`OCqR=6pUѩəi�$2aɩՌm(`:1mFDa6 N;cr(�>n)O82M( c""?d$Id*F 6(7'3!3 ?$t2= HLf#0'Ih<I�2pC ЎFC@?9 +YVbeBYlnko#e-C@ݞav{|V0s5L' tae Vfi)� a($be_lRmV ?#UBfZs*GeL7{7&7e0h}AǙ$? a Z�0GT7$ˆ&RXCdr7) 8iD3mPmpڀS_gCzaF FzCVaH GBfo4S#L,OAa\ n+b9{<( 7;"k#LTScMfW Ƿ.x};{+zA0|0[XFM%\%Kp_=W#JM%ݔXCV뮼Ѳ̻^! S\TRxf #==mc*Q\ 5j'YB.iàW'!~K1,{}G^p"a39/-H>ER#DjfER7^}G |(eUyk|l,#Ie>Vurp�Fm>/:-Tmrd5r `(扤4HhЛ N6F!(ws3i # .3X8ͤZRCB;K3Tn It:|xfR3HB|!5(:+ƳFMA@}32<3Oyu ySP7I;BFICA~ki�tR�):!hz|J-AoiXћOftb8䬧^ڻnw`2zn 8caH@Z*YU` yB>Ol7<PD endstream endobj 17 0 obj << /Type /FontDescriptor /FontName /bff660+mplus1mn-regular /FontFile2 16 0 R /FontBBox [0 -270 1000 1025] /Flags 4 /StemV 0 /ItalicAngle 0.0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 18 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 19 0 obj [500 500 500 364 364 364 364 364 500 500 500 364 500 364 364 500 364 364 364 364 364 364 364 364 364 364 364 500 364 364 364 364 364 500 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 364 364 364 500 364 364 364 364 500 364 364 500 500 500 500 500 500 364 364 500 500 500 500 500 364 500 500 500 364 364 364 364 364 364 500 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj 20 0 obj << /Length1 4400 /Length 2943 /Filter [/FlateDecode] >> stream xW}lS?Iȇ;%8k|΋'M$q `!�acͨK7ǦkULzUUUIꘆ&4!V[G[g^?(6u=;{ �P�dSSa&nf /�YMs)њB @N%؂ā({P__x S(WIlD({k&'|@ӋP;2K^F@A/d1y^^1z~&\ӆ( STX5eVa#$Acs)2˂ 4y�J/=pu㸼�֤qhEɽ[&@%0:E &Vv]H7 i6qn2CXW�W&NCZ\a![yptMp"mHlD4 o"Φ{mx!T( jO$'S:PtҾzy02A Y*g99N$Ky|ȇ,8yq';v*p^ykAg]}ԠΦ HZ48KDsA_갷܊ ؽg`:g6ߓM f*Fޡޑ U4hEgY};gBZ].gޯ~Fڵ]vtO+1=�U UԌNM2+׮k7ؾnc]d<>3;K?Y_IK⽆^ N 9Uu?κށ?]صSH]=CꬖƱ2ki萻#v|G~ZY=uyHEЍSOא6>G3~\qUltG-қc,:mKXn.M`e\X6+on--rX(6) ?Wa/quX:(Jލ_>86W\6BϦN)gmij.0O8\]77U  >9kZÇIyg×/aL?|1sJDm3ya!H"?tckS;M['x( f <v=nj+˹ƆEͲa&b젼crUJ#;ضMh/7QoVZ=(+K</E6Ϯioh۾yf&Ln}h`Wӵ14,$]NCˡHw_SXVФVd*dsj]<8Jb39vXl[S_< \&B<$A 6*B+ K]2&rP66bk֊͊[;IUWmjuzfSˮLGuؖq7׽kJ^P!7WLX'\!.[˟c R+;V-A\.~F7Rm\Ef6C/ ̎a|Cܡm$O2zU=AiUOS^T�πpDg`LkVT}&<U,('6Uԯa ٩C9 9 ƒ|E˙b,4LNvbv{<ct=N<,B B0AHO!Zq4 p<~Fb6#U#! @"A'IDc32$F4,B akq�Q ǐIؐ;4x�8@ 8JVh¦RWCq6rcP4BmRÏU!c8FU#ތ~ywk><?GLn &m \gemx byL`^۠8Cq6.2Q|P,{8e(1Ytb?&xd.%�cPF?´(]:mHBD,{!!PBA>h 4'Be1T?7Ȍ#*}&} e3ЭnwgZ b.۫wmpgqf?LgC8Ρe[o3 sw(63~M,)٘1�Mߍ ΆcV(#VQnɊ/M!fBe|eV,vk !ÿ;߬X6< >(uIB͌fcN=\nG7lҘ~#='Mz[ׯ/4J+yԼ-=#=+f$$H#Ғ˕"3{MҞm&{B}GYZ鐦i!p=#9G%2wwf #(mAAሌ齦qf\ڎ(]ҤK }ِb׊ɢB~zgoߍ2@꣌kfܾ;Α (iB;ݓ]5)žEaZ%~קJҿϧxjC>BJl Kʪz"Xng*jF*jM3w(zҳ'|>˲fU-(FGw0*09ӕ\庣XtZ`Ur- &P%OJfu#ޤS6h2I. fWl,6!b^Ye J&bzi`w&d_LҤÉ \q%))d2ҋIL:!qYDzQ .RѤ7 "M%E?sHΪm!o-[�辰$D쮻W\K,7Yb2G#ލqFo9 . 73+Fb;"v`]n<sSg%)tJ)o2Xb^eeinO $, J endstream endobj 21 0 obj << /Type /FontDescriptor /FontName /eb91a1+mplus1mn-bold /FontFile2 20 0 R /FontBBox [0 -275 1000 1042] /Flags 4 /StemV 0 /ItalicAngle 0.0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 22 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 23 0 obj [500 364 364 500 364 364 364 364 364 364 364 364 364 364 500 364 500 364 364 364 364 364 364 364 364 364 364 364 500 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 500 500 500 364 364 500 500 364 364 500 500 500 500 364 364 500 500 500 500 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj xref 0 24 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000005064 00000 n 0000005374 00000 n 0000005416 00000 n 0000005464 00000 n 0000005516 00000 n 0000005688 00000 n 0000005857 00000 n 0000005931 00000 n 0000006056 00000 n 0000006101 00000 n 0000009558 00000 n 0000009771 00000 n 0000011133 00000 n 0000012047 00000 n 0000015080 00000 n 0000015290 00000 n 0000016652 00000 n trailer << /Size 24 /Root 2 0 R /Info 1 0 R >> startxref 17566 %%EOF �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/source-rouge-style.pdf������������������������������������0000664�0000000�0000000�00000045105�14163570564�0024731�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.beta.3.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.3.dev, based on Prawn 2.2.2) /ModDate (D:20190823000749-06'00') /CreationDate (D:20190823000749-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 13 0 R /PageLabels 15 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 5522 >> stream q q /DeviceRGB cs 0.1059 0.1137 0.1176 scn 52.24 805.89 m 543.04 805.89 l 545.2491 805.89 547.04 804.0991 547.04 801.89 c 547.04 728.93 l 547.04 726.7209 545.2491 724.93 543.04 724.93 c 52.24 724.93 l 50.0309 724.93 48.24 726.7209 48.24 728.93 c 48.24 801.89 l 48.24 804.0991 50.0309 805.89 52.24 805.89 c h f /DeviceRGB CS 0.8 0.8 0.8 SCN 0.75 w 52.24 805.89 m 543.04 805.89 l 545.2491 805.89 547.04 804.0991 547.04 801.89 c 547.04 728.93 l 547.04 726.7209 545.2491 724.93 543.04 724.93 c 52.24 724.93 l 50.0309 724.93 48.24 726.7209 48.24 728.93 c 48.24 801.89 l 48.24 804.0991 50.0309 805.89 52.24 805.89 c h S Q /DeviceRGB cs 0.8431 0.8431 0.5294 scn /DeviceRGB CS 0.8431 0.8431 0.5294 SCN BT 59.24 783.065 Td /F2.0 11 Tf <27> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.8431 0.8431 0.5294 scn 0.8431 0.8431 0.5294 SCN BT 64.74 783.065 Td /F2.0 11 Tf <75736520737472696374> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.8431 0.8431 0.5294 scn 0.8431 0.8431 0.5294 SCN BT 119.74 783.065 Td /F2.0 11 Tf <27> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.4 0.851 0.9373 scn 0.4 0.851 0.9373 SCN BT 59.24 753.585 Td /F3.0 11 Tf <636f6e7374> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 86.74 753.585 Td /F2.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.9725 0.9725 0.949 scn 0.9725 0.9725 0.949 SCN BT 92.24 753.585 Td /F2.0 11 Tf <5441475f414c4c5f5258> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 147.24 753.585 Td /F2.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.9765 0.149 0.4471 scn 0.9765 0.149 0.4471 SCN BT 152.74 753.585 Td /F3.0 11 Tf <3d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 158.24 753.585 Td /F2.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.8431 0.8431 0.5294 scn 0.8431 0.8431 0.5294 SCN BT 163.74 753.585 Td /F2.0 11 Tf <2f3c> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6863 0.5294 1.0 scn 0.6863 0.5294 1.0 SCN BT 174.74 753.585 Td /F2.0 11 Tf <5b5e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.8431 0.8431 0.5294 scn 0.8431 0.8431 0.5294 SCN BT 185.74 753.585 Td /F2.0 11 Tf <3e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6863 0.5294 1.0 scn 0.6863 0.5294 1.0 SCN BT 191.24 753.585 Td /F2.0 11 Tf <5d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.8431 0.8431 0.5294 scn 0.8431 0.8431 0.5294 SCN BT 196.74 753.585 Td /F2.0 11 Tf <2b3e2f67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.9725 0.9725 0.949 scn 0.9725 0.9725 0.949 SCN BT 59.24 738.845 Td /F2.0 11 Tf <6d6f64756c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.9725 0.9725 0.949 scn 0.9725 0.9725 0.949 SCN BT 92.24 738.845 Td /F2.0 11 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.9725 0.9725 0.949 scn 0.9725 0.9725 0.949 SCN BT 97.74 738.845 Td /F2.0 11 Tf <6578706f727473> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 136.24 738.845 Td /F2.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.9765 0.149 0.4471 scn 0.9765 0.149 0.4471 SCN BT 141.74 738.845 Td /F3.0 11 Tf <3d> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 147.24 738.845 Td /F2.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.9725 0.9725 0.949 scn 0.9725 0.9725 0.949 SCN BT 152.74 738.845 Td /F2.0 11 Tf <28> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.9725 0.9725 0.949 scn 0.9725 0.9725 0.949 SCN BT 158.24 738.845 Td /F2.0 11 Tf <68746d6c> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.9725 0.9725 0.949 scn 0.9725 0.9725 0.949 SCN BT 180.24 738.845 Td /F2.0 11 Tf <29> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 185.74 738.845 Td /F2.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.9765 0.149 0.4471 scn 0.9765 0.149 0.4471 SCN BT 191.24 738.845 Td /F3.0 11 Tf <3d3e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 202.24 738.845 Td /F2.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.9725 0.9725 0.949 scn 0.9725 0.9725 0.949 SCN BT 207.74 738.845 Td /F2.0 11 Tf <68746d6c> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 229.74 738.845 Td /F2.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.9765 0.149 0.4471 scn 0.9765 0.149 0.4471 SCN BT 235.24 738.845 Td /F3.0 11 Tf <2626> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 246.24 738.845 Td /F2.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.9725 0.9725 0.949 scn 0.9725 0.9725 0.949 SCN BT 251.74 738.845 Td /F2.0 11 Tf <68746d6c> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.9725 0.9725 0.949 scn 0.9725 0.9725 0.949 SCN BT 273.74 738.845 Td /F2.0 11 Tf <2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.9725 0.9725 0.949 scn 0.9725 0.9725 0.949 SCN BT 279.24 738.845 Td /F2.0 11 Tf <7265706c616365> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.9725 0.9725 0.949 scn 0.9725 0.9725 0.949 SCN BT 317.74 738.845 Td /F2.0 11 Tf <28> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.9725 0.9725 0.949 scn 0.9725 0.9725 0.949 SCN BT 323.24 738.845 Td /F2.0 11 Tf <5441475f414c4c5f5258> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.9725 0.9725 0.949 scn 0.9725 0.9725 0.949 SCN BT 378.24 738.845 Td /F2.0 11 Tf <2c> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 383.74 738.845 Td /F2.0 11 Tf <20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.8431 0.8431 0.5294 scn 0.8431 0.8431 0.5294 SCN BT 389.24 738.845 Td /F2.0 11 Tf <2727> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.9725 0.9725 0.949 scn 0.9725 0.9725 0.949 SCN BT 400.24 738.845 Td /F2.0 11 Tf <29> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 11 0 R /F3.0 12 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /90c5dc+mplus1mn-regular /Subtype /TrueType /FontDescriptor 17 0 R /FirstChar 32 /LastChar 255 /Widths 19 0 R /ToUnicode 18 0 R >> endobj 12 0 obj << /Type /Font /BaseFont /1622c3+mplus1mn-bold /Subtype /TrueType /FontDescriptor 21 0 R /FirstChar 32 /LastChar 255 /Widths 23 0 R /ToUnicode 22 0 R >> endobj 13 0 obj << /Type /Outlines /Count 1 /First 14 0 R /Last 14 0 R >> endobj 14 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 13 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 15 0 obj << /Nums [0 << /P (1) >>] >> endobj 16 0 obj << /Length1 5240 /Length 3552 /Filter [/FlateDecode] >> stream xW{pSיΕ,ټlɒmb\kɲlƒXvdH6"$ْ$#($ۤD@v)dmRf`:IMI04aR',M;;lw7ɤI|909|{s@�`5 'B3|3\ *OM¡}�yGg{,-\Ţy 1\W&BgH܏-o9\Τf3Z\O'C߼&g�tu]xmoIGgL'f&~`Dy.ޗu9�i_�͉OaNs˃h2 | $0 E%R{| CU8g@z�bq ɻ3.@J>&Ujrf*&;!4 \5X8|ix8<8|Gy B)qy.^CnCn"W:gbv'<{,W~ݳwzNcBrwm0zo9_nçO3z;5䋽dv[F#q&rsYE.?%}7!"_ }2by_Vx r!d#2±c͒L'zV(hł^(t s=1r1=(n_-V3lҧ{)2` :P`a'{Ͼaicu}DhIzJ3v?FBl1S mSe83uD'u Ql*֖{n26;Dowĝ}Oԕq[w*# M|mJ%F.^FU,|<4dzSx]Bմְ0DWq|%FOޙӧ Bi̓0=(K@GϜu|'<1`L޺ur;ݢ)g8ivNx; $)"֥h7vu3b UlDM-Xd :aws>Tz}>ogٱ}KSC|ZzKGy_ƽiKcsRg bQwpL B1yf(ߴml4=&ܧkyɧv1dzHUv +VJh*Zn=;Tb)$-oBoxbuXƺ6UNTs MWA<ݶusHd<kͮhYsC'QK`&-7o!pNcr(mpmoKUe'&XzI:Ș~Ů G,h@+J.x׷m*Z=ۉ_~TR(o]q}'OA.O6L]\nۿz�ƗPD,4.nݶ6mJf^Z5z*r܊Y 䨹bnr>y o]>֮u3ʽn|\B\=$EBgpr8{P3g<"w)0vsl&/U5LoSB |w|chdh{k@so?GLX%X|Kb,o!=9{%7J Vk"� ,bwM5>Nxs5ɛuN݃- ƃ^򖗯/9_!X to1r;O)yМ8:\lo{"Mzu J0\M n.W.MbSm֢;]r]VC/{zMOFO mիDK T@ x$-Ar|<GsspYx4i)BB>F+>p8-il/bkff֥؎cKb+WnԶ[_RtO+C~4ؓL @T"I}WFr ǭ8-?MHxaٹ1wmU-57S5+|r-� D6A={g; `F`v@�TBT:q F`B9kJВ#*]'Tq~ҵGEUz!9*=HJA1iP+ҥ&J_ W)Ϻb/iW<Ӿ*eT<Xԑ9O2]ll1]^0?H 4ϓS aX<PFh�a߅Yl bn1IE'Cid">T2ӕJOFy{o1&U˰1QfF=;0*A6?7f4|caE{M1Fߌ8V1쌄3sbK+n2 l@/fSd W͠snúS\E\cYtLGlj"3JGt<D#L42m2JRj&F|jCfs(Xx&ƧlLeD*CQF(HDxhz�eNwyO0+hoN= ~Ggpp|n?X5pb0nYܙyZ HGN#g[iͰ$IR&q' ,Q,2S>aV߻7ì(<pF uqhG!L` #fFFU(GWa gh2r_\4~zZ>iVN(:u"au8S?[QƇ= B8,&_?S8x{)?5SKyHxF<+~_"'zGc`k|HuqHW<o\-xİ8!>,G3:yLtQ$89pq1q; Fg侘82fS%>rp~Gԝ++vSA߮͟Jy}!_�?R d~)w(<!,RA_2p`^IW3Lu�X%(6 }A %dA-֗$bIlg AMX%>ARQ`9M鯂X,``rR׾ /ǺzMY GQ;tR Fo}rF`a5%MUK> h6IK,ͲOYQ+ J ,_e BWh [M5j>wgBB L@vD(Ajʬa,X,BÀBh͈j[~AU.RD,:+d>ۛBT@M*i0�@Bhꁻ=Vt"MKP`s+c^v 𐳞2h zS<v_<sGsKke˺V l})>arG�|r endstream endobj 17 0 obj << /Type /FontDescriptor /FontName /90c5dc+mplus1mn-regular /FontFile2 16 0 R /FontBBox [0 -270 1000 1025] /Flags 4 /StemV 0 /ItalicAngle 0.0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 18 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 19 0 obj [500 364 364 364 364 364 364 500 500 500 364 500 500 364 500 500 364 364 364 364 364 364 364 364 364 364 364 364 500 364 500 364 364 500 364 364 364 364 364 500 364 364 364 364 500 364 364 364 364 364 500 364 500 364 364 364 500 364 364 500 364 500 500 500 364 500 364 500 500 500 364 500 500 500 364 364 500 500 364 500 500 364 500 500 500 500 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj 20 0 obj << /Length1 3552 /Length 2293 /Filter [/FlateDecode] >> stream xVmlS~ϵa88)`}i\q҄u>0hq?Ra�Am֎Q6mBuVU5j괉1ҴJF_:_sry<9@�$D3Єȟ�Hc"k=&ӹhD8{cJfcZ>Aw$rpcLDI+]ԩ3x}>X �&;|tncԇqbWoq+_ڑ[>'2?iOQi,*c@eR !_ G1?+XĪG ` w AU�n6bup^"</M0@Z&SmMRz:=rkj@}^/9 }`xz8~|f߾#lڿ!Ty7%r&G79z$ˁ@�0QfU Og!cwwb *фٷx0or6U[zzv{?gu r$h*rc<(;]QOۺZgɭ]KgHּ:i]lt57TZ[]]-Jӷ&W[ۗB՛'Nmo1 m)f}qd¼[=XAAI>qҸ<08vH = olVv7<c\w4(zܸ›[;vwߛHdݩ'uSO &`ixJF`!wGmn1pv`Nw9#x*Kp4?t? +o.J{V p .^Ff8N)xan~M9x^ח!o �OSs2N|'5\1 p섗5\qp=롙l HW6J܋QMƩNrL ב /rو;z`.RH%J[t'uI't23AAV�)H@|kD1= =(C;>}i'*?Og&@./U|BB.D{iM3r,AwYn YLLFI80 i�8gp=I/T^wЉCK] ųoc-YPL鐺<2.g9y.tqv\Qw{&^.O"L*Jc8Yt䊱c)`_{2(1"׊,>c9` dH,b.dɦS"h^.dRE4HJ.e~h$TQ)=R4WsnY\,OE# :QQ֙\" #gsه! LCG3DӨ[龑&HJ{YNޯ5"q(D8@lidfp(|)vM?ءD2WU- vƙx ?Ux6,cR%v9d/=qDѧele+sK;kr9u#0oH5| gQ›8 [%fǞޏ6|2?apHRVcGRҿתz{)-K|$ޔH ), ҀtRzU lp"=3ҷ0Ke,-v.̀$}>'9N^:uO"S1~P~_<ҳGaTR?)ʌ I !Qf-jIZqo?Ng[zQ}"YJ^1z2to*C!<(oW+CaMMcɐ:z$f\= azU%*jm]lc1l:[j3Uz3O̿g,l-jE{H pUj휕YtSe;Cuh=v`/ @7T=1"RU2d$" O-ĵ@Yc7k07Xc^hZ t,-]0^i-"bDNdU/2>^)hGzfL h4hY8&kZpƦC%,hD,4R#̠l&6Jl#KnaoRJ'C}pd�^ c'#τ31{q@<޹yB N*[mc5TD/-Oj:X� endstream endobj 21 0 obj << /Type /FontDescriptor /FontName /1622c3+mplus1mn-bold /FontFile2 20 0 R /FontBBox [0 -275 1000 1042] /Flags 4 /StemV 0 /ItalicAngle 0.0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 22 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 23 0 obj [364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 500 500 364 364 364 500 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj xref 0 24 0000000000 65535 f 0000000015 00000 n 0000000262 00000 n 0000000463 00000 n 0000000520 00000 n 0000000571 00000 n 0000000843 00000 n 0000006417 00000 n 0000006727 00000 n 0000006769 00000 n 0000006817 00000 n 0000006869 00000 n 0000007041 00000 n 0000007210 00000 n 0000007284 00000 n 0000007409 00000 n 0000007454 00000 n 0000011096 00000 n 0000011309 00000 n 0000012671 00000 n 0000013585 00000 n 0000015968 00000 n 0000016178 00000 n 0000017540 00000 n trailer << /Size 24 /Root 2 0 R /Info 1 0 R >> startxref 18454 %%EOF �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/table-caption-width.pdf�����������������������������������0000664�0000000�0000000�00000104652�14163570564�0025016�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20191226030731-07'00') /CreationDate (D:20191226030731-07'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 14 0 R /PageLabels 16 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 10336 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 58.8516 794.5242 Td /F3.0 9.975 Tf [<54> 29.7852 <61626c6520312e2041>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 55.3964 779.5332 Td /F3.0 9.975 Tf [<72> 20.0195 <6174686572206c6f6e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 55.5509 764.5422 Td /F3.0 9.975 Tf <6465736372697074696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 52.0497 749.5512 Td /F3.0 9.975 Tf <666f722074686973207461626c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 48.24 720.146 33.741 21.78 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 81.981 720.146 32.8905 21.78 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 48.24 698.366 33.741 21.78 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 81.981 698.366 32.8905 21.78 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 48.24 676.586 33.741 21.78 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 81.981 676.586 32.8905 21.78 re f 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 741.926 m 81.981 741.926 l S [] 0 d 1.25 w 0.8667 0.8667 0.8667 SCN 48.24 720.146 m 81.981 720.146 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 742.176 m 48.24 719.521 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 81.981 742.176 m 81.981 719.521 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 51.24 726.962 Td /F2.0 10.5 Tf <436f6c2041> Tj ET 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 81.981 741.926 m 114.8715 741.926 l S [] 0 d 1.25 w 0.8667 0.8667 0.8667 SCN 81.981 720.146 m 114.8715 720.146 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 81.981 742.176 m 81.981 719.521 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 114.8715 742.176 m 114.8715 719.521 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 84.981 726.962 Td /F2.0 10.5 Tf <436f6c2042> Tj ET 0.0 0.0 0.0 scn 1.25 w 0.8667 0.8667 0.8667 SCN 48.24 720.146 m 81.981 720.146 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 698.366 m 81.981 698.366 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 720.771 m 48.24 698.116 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 81.981 720.771 m 81.981 698.116 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 51.24 705.182 Td /F1.0 10.5 Tf <4131> Tj ET 0.0 0.0 0.0 scn 1.25 w 0.8667 0.8667 0.8667 SCN 81.981 720.146 m 114.8715 720.146 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 81.981 698.366 m 114.8715 698.366 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 81.981 720.771 m 81.981 698.116 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 114.8715 720.771 m 114.8715 698.116 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 84.981 705.182 Td /F1.0 10.5 Tf <4231> Tj ET 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 698.366 m 81.981 698.366 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 676.586 m 81.981 676.586 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 698.616 m 48.24 676.336 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 81.981 698.616 m 81.981 676.336 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 51.24 683.402 Td /F1.0 10.5 Tf <4132> Tj ET 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 81.981 698.366 m 114.8715 698.366 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 81.981 676.586 m 114.8715 676.586 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 81.981 698.616 m 81.981 676.336 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 114.8715 698.616 m 114.8715 676.336 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 84.981 683.402 Td /F1.0 10.5 Tf <4232> Tj ET 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 274.9358 653.2202 Td /F3.0 9.975 Tf [<54> 29.7852 <61626c6520322e2041>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 271.4807 638.2292 Td /F3.0 9.975 Tf [<72> 20.0195 <6174686572206c6f6e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 271.6352 623.2382 Td /F3.0 9.975 Tf <6465736372697074696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 268.1339 608.2472 Td /F3.0 9.975 Tf <666f722074686973207461626c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 264.2665 578.842 32.8485 21.78 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 297.115 578.842 33.8985 21.78 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 264.2665 557.062 32.8485 21.78 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 297.115 557.062 33.8985 21.78 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 264.2665 535.282 32.8485 21.78 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 297.115 535.282 33.8985 21.78 re f 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 264.2665 600.622 m 297.115 600.622 l S [] 0 d 1.25 w 0.8667 0.8667 0.8667 SCN 264.2665 578.842 m 297.115 578.842 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 264.2665 600.872 m 264.2665 578.217 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 297.115 600.872 m 297.115 578.217 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 267.2665 585.658 Td /F2.0 10.5 Tf <436f6c2043> Tj ET 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 297.115 600.622 m 331.0135 600.622 l S [] 0 d 1.25 w 0.8667 0.8667 0.8667 SCN 297.115 578.842 m 331.0135 578.842 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 297.115 600.872 m 297.115 578.217 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 331.0135 600.872 m 331.0135 578.217 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 300.115 585.658 Td /F2.0 10.5 Tf <436f6c2044> Tj ET 0.0 0.0 0.0 scn 1.25 w 0.8667 0.8667 0.8667 SCN 264.2665 578.842 m 297.115 578.842 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 264.2665 557.062 m 297.115 557.062 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 264.2665 579.467 m 264.2665 556.812 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 297.115 579.467 m 297.115 556.812 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 267.2665 563.878 Td /F1.0 10.5 Tf <4331> Tj ET 0.0 0.0 0.0 scn 1.25 w 0.8667 0.8667 0.8667 SCN 297.115 578.842 m 331.0135 578.842 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 297.115 557.062 m 331.0135 557.062 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 297.115 579.467 m 297.115 556.812 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 331.0135 579.467 m 331.0135 556.812 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 300.115 563.878 Td /F1.0 10.5 Tf <4431> Tj ET 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 264.2665 557.062 m 297.115 557.062 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 264.2665 535.282 m 297.115 535.282 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 264.2665 557.312 m 264.2665 535.032 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 297.115 557.312 m 297.115 535.032 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 267.2665 542.098 Td /F1.0 10.5 Tf <4332> Tj ET 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 297.115 557.062 m 331.0135 557.062 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 297.115 535.282 m 331.0135 535.282 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 297.115 557.312 m 297.115 535.032 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 331.0135 557.312 m 331.0135 535.032 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 300.115 542.098 Td /F1.0 10.5 Tf <4432> Tj ET 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 491.8076 511.9162 Td /F3.0 9.975 Tf [<54> 29.7852 <61626c6520332e2041>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 488.3524 496.9252 Td /F3.0 9.975 Tf [<72> 20.0195 <6174686572206c6f6e67>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 488.5069 481.9342 Td /F3.0 9.975 Tf <6465736372697074696f6e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 485.0057 466.9432 Td /F3.0 9.975 Tf <666f722074686973207461626c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 481.9835 437.538 32.691 21.78 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 514.6745 437.538 32.3655 21.78 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 481.9835 415.758 32.691 21.78 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 514.6745 415.758 32.3655 21.78 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 481.9835 393.978 32.691 21.78 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 514.6745 393.978 32.3655 21.78 re f 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 481.9835 459.318 m 514.6745 459.318 l S [] 0 d 1.25 w 0.8667 0.8667 0.8667 SCN 481.9835 437.538 m 514.6745 437.538 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 481.9835 459.568 m 481.9835 436.913 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 514.6745 459.568 m 514.6745 436.913 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 484.9835 444.354 Td /F2.0 10.5 Tf <436f6c2045> Tj ET 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 514.6745 459.318 m 547.04 459.318 l S [] 0 d 1.25 w 0.8667 0.8667 0.8667 SCN 514.6745 437.538 m 547.04 437.538 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 514.6745 459.568 m 514.6745 436.913 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 547.04 459.568 m 547.04 436.913 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 517.6745 444.354 Td /F2.0 10.5 Tf <436f6c2046> Tj ET 0.0 0.0 0.0 scn 1.25 w 0.8667 0.8667 0.8667 SCN 481.9835 437.538 m 514.6745 437.538 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 481.9835 415.758 m 514.6745 415.758 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 481.9835 438.163 m 481.9835 415.508 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 514.6745 438.163 m 514.6745 415.508 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 484.9835 422.574 Td /F1.0 10.5 Tf <4531> Tj ET 0.0 0.0 0.0 scn 1.25 w 0.8667 0.8667 0.8667 SCN 514.6745 437.538 m 547.04 437.538 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 514.6745 415.758 m 547.04 415.758 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 514.6745 438.163 m 514.6745 415.508 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 547.04 438.163 m 547.04 415.508 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 517.6745 422.574 Td /F1.0 10.5 Tf <4631> Tj ET 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 481.9835 415.758 m 514.6745 415.758 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 481.9835 393.978 m 514.6745 393.978 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 481.9835 416.008 m 481.9835 393.728 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 514.6745 416.008 m 514.6745 393.728 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 484.9835 400.794 Td /F1.0 10.5 Tf <4532> Tj ET 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 514.6745 415.758 m 547.04 415.758 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 514.6745 393.978 m 547.04 393.978 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 514.6745 416.008 m 514.6745 393.728 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 547.04 416.008 m 547.04 393.728 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 517.6745 400.794 Td /F1.0 10.5 Tf <4632> Tj ET 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F3.0 11 0 R /F2.0 12 0 R /F1.0 13 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /c46a70+NotoSerif-Italic /Subtype /TrueType /FontDescriptor 18 0 R /FirstChar 32 /LastChar 255 /Widths 20 0 R /ToUnicode 19 0 R >> endobj 12 0 obj << /Type /Font /BaseFont /6bb57b+NotoSerif-Bold /Subtype /TrueType /FontDescriptor 22 0 R /FirstChar 32 /LastChar 255 /Widths 24 0 R /ToUnicode 23 0 R >> endobj 13 0 obj << /Type /Font /BaseFont /7d308d+NotoSerif /Subtype /TrueType /FontDescriptor 26 0 R /FirstChar 32 /LastChar 255 /Widths 28 0 R /ToUnicode 27 0 R >> endobj 14 0 obj << /Type /Outlines /Count 1 /First 15 0 R /Last 15 0 R >> endobj 15 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 14 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 16 0 obj << /Nums [0 << /P (1) >>] >> endobj 17 0 obj << /Length1 8796 /Length 5465 /Filter [/FlateDecode] >> stream x9{|Se&ڴMX7Agڦ҄aK&mR$4)P)`⊋u]e[t8; 28atсaqnnK8{|}0T^S6o @i];#w63›nwv:q?o1-D0 Ă})0F6-7{}θEʫEvI~ $!l`~#�3R�4u=P3pj�Q÷^d �j <4Ȩicb�qĤoy1pR}5}u mW^>BWb�E uꗇLˆL50]=ʥ:30nD[L4 "-(!K"OZgF3c_ VCVO:ƫބ�B1YF 3t6IR}>r.`lrޮGWR!ybk3]] Rz)YEN@s:E̖E5H3P]L). o={tⳓoXǜpW[?}>;JWݏq 13a6JL)HE@,Փ'㲊k2$*ij;y9}YcX9M>y2j]ͽ\u~=}(ۏS2KH%Bl<!alk1ϯ=xf'jxUskH1w+ }A6- XS_d(L02/f.N}qN;UhUg}=]g"ryp7lu-\sV%b'5/ֳjMA<#*e4gV]q dkGbQԞ~Iڝ~Τ-hIiJIƿ>feP؇h+l+(B@mA>[x⩗~GV':-\x]$q_˲mR[ҧ><CTbO[].m<pcr˧oXYMqVr$=KM$J٨'Y]ҳ /Ju?zt$7yܾHL.H:C\,mYI,aeK )-M(}i'jҭ۞sՙSR?`|b;~\#^qMۊm*4*S EPF9kP$]>=W>�TL%d`_S;{pᜥ!akdt^\*{񎦵[7 ?żچj m ⪂O!ўgۢm$x;HCKnww4=HS2 >2Rkd8 {i4ekW^aXզAԣcqWWc58pPѡEY7D].Mŝ~xݙVؖmy ͪd_Y*t:H3Ӳ#Ah>rh+nt<zIY&a6?DyZi~V�0B2i.=sk/VI~O\5 ҋh%`7myoK+G&M ?8Ƴ~ T}u#GJ̔<$bfBW1Lj 6o2۩F7/ m<5Q|ysd _?ǪJ&YIƱKR\2s e"?,IO,Spo7Pik@ ڞ=آEi>5CL/S񖣼{՛G&^Wkx#;m[lj{^Sn>frVcǽ=u]UEwR4 N5%t%_lg޻5L}3Ij`lt"_d; ;5<C&o3Irf sMg&v}-aqo F'3ACgz:4} A1!>q^?4ʽ / (s!1X* lkcE~ț[@ B4X9} j�Om"W`U "<d ո?J ufl<'Ͻ鸎Ƈ>û ny^M<JgC1TjPˡ`Aﯔw$yCϰІPx(x+x7(xeX( UE ^jRjH&[(4$G|$1w0 >t sFyg|4e~,vK ~:c*̣*Nm > 5/Wx}nWϟ7?z{әǗt7;uNGT|0npA�C_:c(t"dtBӋ]~rӉ耼zo˛.E*/Re 7t^w'r s P>{7X ⑹ aC7rጿ<rBzy1)Tn+,\`/Msein?ovIݲ7xP=-쇻պed?;N÷8}])݂*;r{T~':L4ye<T@8anNq<tdz8y@`X~}^޼No0"^d˟<drßy /2 DZ" Id}7~qh&Q ӣ foW`IS'<g?p9yi9sz9䜟ߚ;0F<R=|z72ɜï44XZee-&oh++M-zVT_;ݨN?wwz4N7wyÖ}Nw{hSCV<dۻi=PkaN"]kN�B 9Qfre#[ͷ;YiX# 3)rs0_f;QjP c:b\fP.zY "eؤqG؄oklS33+t^}=W( D闡 ~"}nY_ywJLNOSJKOְOxDJd[hGN:ygO"n@a@)܌%gݽynCCچm1ɯ<Y^|Rqd9%q#]9DGGW~@ikD~сzWL` h$)`!Lg">u%87C =#a2JH!!rwm0"R㘥qĎ]cd)#0ز\r;2ME8Zbq$$TeD#D3R!B~D8Rrd5Yj,@ Oʳ+ |ox7Ns˄-]}sg-UZ;6ȕ#L쁒Ii3ٿ(ix>Dxgy^6bJp45n^-uEMJs<GcՑxmBx q(6b/LbJ<kʖX,-,-Ɩ+-h&oԒꨴjL-I8kZ~˓bӱc̜!x. %(ypŜ]7 5׉daci*QC˪Fyu0Ϭ6}fkI)lvH@|6VAD6 EgESz@xHm` ۿ+)k0K6K~ZSMud%-xAyܜ9Yt}Z.N3=:*2BVq,)(Tbfe 55숰OBxb҈|LO,Eʮ(KÔD/%9Qŷ*~j|RhK|<2e`:z=)J^$QZ +HtTṔhFL#FȜeD0sFLbE6hwM6ce^ߚccJy *dB,y7Uv#9BG{4యYc0] ܍OA˝bPi)׺ 9u7DQ.N:C9i7`{>!Z!82mZgDC w^ٙ*V*j]dblwBwl"QŻAg>u@𝣥ЁxzJ ٭"NW^_IЕ-+f C0w-O=4VqBCLˣV&U5yf @̵R* Ȍ Ȇ1 vo+9bMv8-Xҕ8)+123{;])O4>Q'OēetmeS%T2o WU&Q()S_*BhIWƠ%:Һx[^,m� 6g+M4(N/K[YkZeSQ$@qƛ0L91"#1l+jWD(_Ɉ[4U˗6|uS\T(<SE875OEMUrs\#:f|N8(Mp Km6ˊ3d+jMr <PgU٩+VXsӲi|Fu e.( 57@SθTi= Uv,bh#]l̶%25vͩx#u-9Gi0;ZlT5Q2X�Oʩ>h)y2܉'1#9ʄqq8.+q(ؿgS+Js#GD",CF&F r1Z(/  I$7gcPk>Oɥ?WU!TUoMq] 1H:ֿWwO L;�ȇԳYzx[dmDǿLN)vA] O6<_§ q}j{m2Oo97]|I 0ǡg{q%|[ڱ5_5<TzC 9El<; ozbVgOafz45cיӲOI91rgO"&9q˒N ^I endstream endobj 18 0 obj << /Type /FontDescriptor /FontName /c46a70+NotoSerif-Italic /FontFile2 17 0 R /FontBBox [-254 -250 1238 1047] /Flags 70 /StemV 0 /ItalicAngle -12.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 19 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 20 0 obj [259 600 600 600 600 600 600 600 600 600 600 600 600 600 250 600 600 559 559 559 600 600 600 600 600 600 600 600 600 600 600 600 600 705 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 612 600 600 600 600 600 600 600 600 600 600 600 600 579 562 486 579 493 317 556 599 304 600 600 304 600 599 574 577 600 467 463 368 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600] endobj 21 0 obj << /Length1 7536 /Length 4416 /Filter [/FlateDecode] >> stream xY P[WzϽWBedk0^@ &F8Xr< zDvol];_SLMNf7umgqmvg'iILdvq"?GӤN8;\@�` <;Ey"o}=O�$:i^;�yB/ t-ҵSS_~[H *{(*'!@gH?7'FHo Bz  {# }gX z/c�ql":jk(u{t{( @hA� Z҇| Jm֗ G.|%GW1z9Yn7o)aA͹S^tBE5G +ͤȼqa1 qTc%E\'ffͺ|c`tVVdsyu}i]a)))eL=eEŠP(bZl W_"WUn[:^4hJF3X`3ZY'dUE+"ԑ f*9ުn9p嫋Q,{[M-n.5z[{T/h_,^5+s_9YHEkW ``#VKT�V`@jU RqU #h\'p3;e39Lq#/9h1{o;~{{rחh~)|-\m۾}108? '-[T ZI6Rqƈ|k<vԬ4kG~@xԛoă>Qԇ?db5ʲ=s/jRqksb Ptj3m#˫-DƲ,2 '+rhqMѸdTzPwLkmKy?UH7!݊uM+S})N櫌Ē[knIR?brWX(̨eKt`R>&Q>5uu%m!lU%uť҅0y:nz݌\#o#*, [,aV*oR:΅ơ͛8XXu:'CSMϳS_) <L%xU(d4^hָAc34KסYxd+Twd�ԶT>KU=F)wU;п4sHǸ'5WdFu !$$Uҷ T:c@&zo!/d0q;RMUX5j!RNƖr."[~R#*NG*./8WOUp^E[*.^5KJɨkyT<Y`'ϫy>Tq|T< ZφZU`*xT 9E\{U<ZŠ/#*LxBD,*MYvFbɩ]vzLN3<nt-P  - >A&hefq54rBAiv91`K_$@,8}('sa#2Ħ_$I싢!d0<I͔sއa.eZ'>D|lwуsU˝"G@,:ڍ0 iƱ \.Zq꣉bĭEqG·- |�* 5 As=Npn;O)K2z)쾄N , uO% Jd.Nq+C:(fz;ّD"bݻ2k Xye&PD ^.V?r3 FEY UU-Cc\|<1F@voʏ#6` OaytE L$bV/@8 1 Psmzz4Y݅D,869 ӪvuhG骧۝=#t{P{߰Cv!E<g 7xFb4NY/ND2ģDpN“3I"q'#{0+}AIxsՂ59.?$0! 4H5m~~YUMq^m8o6 fXǫc ~U վLu9ڹ.nv CZ=#B¾i'8^x#j;|YW{xpdЪLtbz#'2mq?B/nvV\)(r[N|8'˥h3v"- X.f$ϯ?}a7uv!{K>f 3M8x/ch"n-ؤkF}a9W[=#~YNAjb,6~ 9:ɦl|k]q^-~?k&E0@ &l+DNcO뉀À[l]æ%`H(ir MiX1,XH/c •ҾPLWVBY2bO`☃l2Ue-xTbp1 px4_lA*6ڰ>9`rl2k$啢m#!]ihȻw~v2O.//z=D~-^lYiKq;y[LW{Ϟ?~^9ys]9'z?{aET)){OS OD 'I+'/'3'Lm'哄$'vN; O'kGppa#etdteԢ5L^2)M Li o/_k7h =7kh^]FGgGŞaptxvX4RX4O #FÈeDm0Ah3\6\38ׯ0[L49>7쪫뽐UW!zE{H9#GWYr+rOljMfqb,+O<O/Y2 p"1-13+Nv18c¥::6.aö#쓘vq ֻwvڶۺM7[k4׮^%W+K 󍆼e9l]V#zJWj䞞F>|�^U*](6䜸Ӗ-q#mֆzꐩr. dǠG첇*}|.pbf3);U:=SI׎rrg@PsLsv 2-cj+nd6{JlKE*N%Af:<F/&_0˜./};݊ýIёLT5]YKR/J;Jh2M~7Whvax.v%I߅Lrr.77u`a.I:Q)Ң:ۅž|~"Tw)"&1=<_  lf?vcH( _Mgf(\\\)a++K۽2fN*R/;0Ə1oTF%3YNfRRESa]nJa[FN}>6,&!;ϞR@ꕞLqb9r̭S)V9Kdf9.7ߢnS ;4SGW,fۇ=S^y245Q <v&kƑt'JɏrMfAhu9uɽ;Fg8qmʈTt:L.+Y:lFLGYYwR7 e u*oaٳ(MHc2{̙^e*:%o !RUGm|cQu6`aˋ Ug5J7Ȟ;4{]I&\VZMqw[:rCGL3]Kz;똓ɡ99~@ DvxVe e #(#!$t `J-b/̸ I1`J0x;[ji! `-sD*z9С ocx[2< +FiiS[!A<BHƸԧ 3G%d5\?_\σ:oR7T1 ,v 1=B #n jpN<z wk٪>sV(Js'Qǚ;Qmaj^,aBjMڟiBYX#쿦0OI+#aZj_4qcX endstream endobj 22 0 obj << /Type /FontDescriptor /FontName /6bb57b+NotoSerif-Bold /FontFile2 21 0 R /FontBBox [-212 -250 1306 1058] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 23 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 24 0 obj [259 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 752 671 667 767 652 621 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 352 600 600 612 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600] endobj 25 0 obj << /Length1 7508 /Length 4503 /Filter [/FlateDecode] >> stream xY}P[Wv?=}!0 #x�'$Kǖ@)Ic͚4#q^'Y]7Mw3xIf'4dnffvf];ٙ$iҸH=봻>qws9'�A?V �R4>qx͹9:"�hP84<TSP& i\(<?#(?2wZ6Q~ e_,Hf[rs?|ke+@*  S,}.3hO>O�cG&ik�U�C�KeQhuџ%.h*4V McbE7FT_CwկA%j4mlZ EMI +ǥƵ뎊m;MO=Rn!T }[*w4VTTmmöJ0 [`A8_#hj!mbKY*&4mD92~ZS o CQ[ʦM= Ʀӣ[USGO.߰:؁=~^ّWٴv{pFORCiIIq)׽4 Q[k,D4V4rvK:omņͳRʪ ; -奫_/67 /[֨2a~xxp͊ߑw>ߐFctpϽ6 ?T%ŪDp9+j^kg#4oo=_.0;ʅj'o9޷{j="]޶{ x~sE̷~8W3F;l+ϩ59%U"& bpyEmDԄo26׬zwgGcߛtLG;귥6Wa{W7ʭ\;Q;&)HKzׄ|"kc)" 0Xz;;޹/bG_M~'ϒFm 8Z[dZ(v+1+X\ο/ U;FoU:zՊvsEYhYIY^iӟׇ2fegqj9mUG|Im 99O_0N6:()xl 1H*1ax KH}TÔ]269;>"ޕޝZ9o]9ɁGLZ{qUx\ TԧMWdB�!W-*AP]! Og6  ̕wwtB~ό3W_} Pq^YMFb;~8=Wp ('O\|8" .6*Г bbRp5WCiWp Wik-1A :@>T9NRp=] }!υJ=υ6˅'oبy*+2+SeӪP|(N(x>4kCIq#F''2jtu%P0  QaCAnF)tao B;"xZRA:u�}d:ta OM|8L!wE#<Gi=]r2D8a:k$Gaے`<Fha s48'MM [ppi2'htlcI"}v>Ģ׿N`"<m<p,l.0i'4$1M�9LHY$Ïl!nE23L`G`ɬ`%m<`5F'- Zx%b!xHr˟ftF,(QעL"Iea> =yMB0{\!LG4X<e"<$ГS@0N u`$;PGoeeޙ,N$)EMV;iv;{utO{ڇ\=v'}WOJ祽=}: 9q< dl" ~t,]I" G?2>UĂp-J$ 'I.GևSq:LT3dHD$߾l$1 l#GQÈ|[ q]'x,a޽; <ZTry]`')=s[܎=rA7Z;ºP<=sxøhU;q.BLp|2nv$RQtIL|(;&τ:evƸܗI( (ka'ҭ~v c# aĦ SM8Du\JñdœOqKcmFbJ3zlb?Iuҿ:Pf9~ vW]r֍7�)ƌb-crDyk'XMpu@-gȑ 1dHz`=0G ȉ92=G[99k9.C�kB P7C\PV=b9\3`N{ CEL C4FE>F<O^l_U, o}5"_" ׹:d%2! ZL;? ? ̧t ^%jU|h4]vgLDoLrgޜ)X9>G |NyY2س3gQSSBSw\?9%XO)r'qIՉgN^9yd椚BT$ѮXN+g*Lxyf.Z/sT-A!` >r�~,˛j4[GhSRh ;K+ns vw+wj2KJ܅mh*p 3W  Q8/uPaK̒f\YmfW-r w{fyбWȾ^9 +kLcðz:D"Y/8=r-$Dm->Q?95?A'2`EP &2dy!Pel XRˠDmX^kwﮞ.nٶu[6ojil֭^#U*ˊ r9:FыuvrOVHL>!eR]iEͱ4YM&1Vhv$:Kz}&y)o۪.,Cd^Q]v >;ΠfŖN͐um7um3薱ieh2yz|ƻSʚNY)iLG86%SZyd?a<(I6\X{5%'}zm)WM+`M7rHԑL^^*fGÀGf^=fOxe/D)u`/# #;%;3]݀@wOM&cVAAde|a6+ >sqz{$fӓU=Ɏ>>旧G0e r IJҭ/ץhUO Leu G-† \ȿ}j j V i]2$urwm6.6lXJ3 a6>"bc!,{Carq QelԞbFr#FWM3M ^#.<1g Iz+y^W4N:]^;׳E1:Th$1K)u#E/*lHXj,;Zhڃ6EKH,:4LDnk^uvSebc@L@11RR[s %%"gs5.vnI#B@{d`nRh'4ZY)'VC\EKz]uxuHub�G]:}ޙ5yX9*0LL`LC(踾+4Uqˣ1<F`tVbyL@LŬcF,>ƳN,> |^P?" #A'`+u0|'wfq õ=2إg췾>XS wp sfPwO:>a|oGx{.~~#AĀoSY|]7ywL_w@0< I7̥7mD 糕 P;:^i^o3 z;i]1v8pk#xo ҮpP'0Cz.z%]{v{!bA)֔hҼ/<$D %yRBlĮ&녟3#ߩ`q endstream endobj 26 0 obj << /Type /FontDescriptor /FontName /7d308d+NotoSerif /FontFile2 25 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 27 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 28 0 obj [500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 559 559 500 500 500 500 500 500 500 500 500 500 500 500 500 500 705 653 613 727 623 589 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 29 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000011228 00000 n 0000011551 00000 n 0000011593 00000 n 0000011641 00000 n 0000011693 00000 n 0000011865 00000 n 0000012035 00000 n 0000012200 00000 n 0000012274 00000 n 0000012399 00000 n 0000012444 00000 n 0000017999 00000 n 0000018223 00000 n 0000019585 00000 n 0000020499 00000 n 0000025005 00000 n 0000025224 00000 n 0000026586 00000 n 0000027500 00000 n 0000032093 00000 n 0000032307 00000 n 0000033669 00000 n trailer << /Size 29 /Root 2 0 R /Info 1 0 R >> startxref 34583 %%EOF ��������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/table-cellbgcolor-override.pdf����������������������������0000664�0000000�0000000�00000027065�14163570564�0026352�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20191217020040-07'00') /CreationDate (D:20191217020040-07'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 12 0 R /PageLabels 14 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 1617 >> stream q /DeviceRGB cs 0.8 0.8 0.8 scn 48.24 784.11 132.3043 21.78 re f 0.0 0.0 0.0 scn 1.0 0.0 0.0 scn 180.5443 784.11 113.8663 21.78 re f 0.0 0.0 0.0 scn 0.8 0.8 0.8 scn 294.4106 784.11 162.5968 21.78 re f 0.0 0.0 0.0 scn 0.5 w /DeviceRGB CS 0.8667 0.8667 0.8667 SCN 48.24 805.89 m 180.5443 805.89 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 784.11 m 180.5443 784.11 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 806.14 m 48.24 783.86 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 180.5443 806.14 m 180.5443 783.86 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 51.24 790.926 Td /F1.0 10.5 Tf [<64656661756c74206261636b> 20.0195 <67726f756e6420636f6c6f72>] TJ ET 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 180.5443 805.89 m 294.4106 805.89 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 180.5443 784.11 m 294.4106 784.11 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 180.5443 806.14 m 180.5443 783.86 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 294.4106 806.14 m 294.4106 783.86 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 183.5443 790.926 Td /F1.0 10.5 Tf [<726564206261636b> 20.0195 <67726f756e6420636f6c6f72>] TJ ET 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 294.4106 805.89 m 457.0074 805.89 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 294.4106 784.11 m 457.0074 784.11 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 294.4106 806.14 m 294.4106 783.86 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 457.0074 806.14 m 457.0074 783.86 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 297.4106 790.926 Td /F1.0 10.5 Tf [<64656661756c74206261636b> 20.0195 <67726f756e6420636f6c6f7220616761696e>] TJ ET 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /cd0610+NotoSerif /Subtype /TrueType /FontDescriptor 16 0 R /FirstChar 32 /LastChar 255 /Widths 18 0 R /ToUnicode 17 0 R >> endobj 12 0 obj << /Type /Outlines /Count 1 /First 13 0 R /Last 13 0 R >> endobj 13 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 12 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 14 0 obj << /Nums [0 << /P (1) >>] >> endobj 15 0 obj << /Length1 8792 /Length 5434 /Filter [/FlateDecode] >> stream xY P[ו>'# O<?7’Ml $@1 YNpԍ`;&mlI4n:lz3$mv?NiN&5^=0v>s=;{%�@ .Ny۶*3�i|rv_:&`8a20ٔ9@(mb*`sp@BҶ G#0ô` cH!- X}0v9'@"Ӟ)_W֛!mP: `B �Xp| @ 1:81D !Y?/1  Ub2PbH1R c|Ų^'# P؏Kh@dt:̧&siy\l.-E"i|)r\eEU0sQk;g-]WxS-eߊ)bm>mQ~#tZCmiMke%8Cbk~C_&FP}F׈ΪuPdڒ/*)hTRtuLy=Om't)h>@a}ܻw'm[YJu%z.WKf9|b7tk}O_Uo<g;PUS͙MsjJ측ҾrKWCsw >?9* C7s!SKh,D𫪳I9XYi+vm<!it{k8;cKEOekMPx?}! Kj!8y7^_|bsy^<X%$RpRVOݼ+LUUDOfW {6"\}6KNrۋ:7>E*PS|O8RH:ƀV&jVb#׀*=@ͨpGot]C\`{徎}K}yGIɭ蛳_(((ReP昺*o; CNmI3}Qˏi{r*wmU}I}<cçeiybi&g9+yqֳ 59hXVtB8I8D:V]8d>tͰ~6;YWn~CBeRfaZYJNޗۦצZ36;?*j.O+u֖beKVWlߕSu1v{`nzGBNz֔Č$ӌ$>#;oPѪgNeU\ES# I|Cz?etM,uRw;]ic<hb?LPѵjGn5^/MbіԜ-E⦡q[R JKa]J 8-u$q|L[>4$oWou[Log-E`ʌ/+'k}[X9?4Pc#WK6&[STZI2; LАwŋr3>ʵy3ɱLsF͟ډk�{IѷYJZ‰n(ORfRN}*;l.ɍYy*r@*+( ; 5J6cM+Xi�$2+)FaPn;Z.g7ܽMWOĒa?33/B/kj/Q,ÿa^)$"=Yp'& (6uEu{m4s[Eim^mINj,۹qa[Ū4Gu_n7Z }Mr`CTŤ`ѕ+Iʇgz:1Ne8^ϖ=f#߂R`fc,݁PV>>spx{Jk < : U/Դj#luå{tJwˣ ~&D ir"=>o?Z xtk0! mpnpg" F!Ы a �t_:{zE/tt} f ˠoRa/E;r{@њ/#KPqJ8pUWV6Ğ"g^Q?^{<)@ءZ ڡz%Y"ШEW<V?9yI^W<{ _xY #DRUAĥc  ? E ?t\.W ?~p?R PaG6_QI?𓸯(dȌTPs9 '"Ҳbk 0>ۧGbOb/ y ,0tvWn g7vQ0c9X 3ʇu @$ B1 �JPjIa7>3 a0 =Dfhg?=.F L,Zi i,E[2 i\ZCF>KD$̈GըD1=L?,zHMyBF7gxnbcv >Oen3u68JA<0eD<:ayőYq]74JͨÃ'hܥD{ÎH0OD"03xͣ)˸/bACTQ)ӌ`PiZ`٠|JYSx=u7 h LGāXOGe?#3^_HLā.'蛎 wEQYfGBi1q@l=m=AqOcc`}@{m=H.V,hNH= a1SI? mѕQTLxqA_h 2O#}iֳ8p E>T3䄲Z}ƉCFoIGfɈ l[Ө`GaCssPƢoK:#hUD/\Ll`[&FSڱ[xy:F̟Xv#ݎg�[S?Xwkg=ka \Xwb}hUDdBlG!)Rv7M W1 03JS2ٙ0Nۺ pa摰W[ HiB8NY0f8Wxu-/GC`$l'́и뮴ƵPAifVObMW?']D'#_=u@S$IJ#OV?kx7cGMD5HFK_"gr^Z*8V`]uȫ*ѮeG2,3dn4=dZ3qt R, 2 L&iI$(7 !(!1ȋ+eV*#`ͳ1%|AϲX(U|yd{_x5fX[Sj:NTIu^Z}5Mk5^#׈j{}nqg[.>E4O<=z ]p W{q#7ϭR9r`ᕅ] Yxvͅd;5'o~:3IcKjNF3^'K[O',>k^nr�orlG<oݓR:d=+USJԱ$\H/OsC[qpqkdzAsEsS(7A@ϥY"gLΥN9wLNZZ28s.ӧik}):e/61 thrሉ=$| l: k) g( X"*zr<`2Qy.L?45QVؔVb575ZjwQ]UYVj1I ]VV <XlZܢ疅<Ғ wHNYt31NI+J%iJZ%Vڒb.6I\"{>m\>kfm!IH 8BgLDErxbńf_R L\ IA=a ^AlVvWsmzUR.'K6LncJOMb󧖴06%z%g);SLrd "W%]6Qtޞ*V?Œ޿q'ǣpFG@-|$̻=Ks#vDz8ji['r)uOe-}2gl'<ɰCoHq~V7 bj0Ѕ\\3JY Kܴ4[YЛyY0{%;b|#ύ`<O]!i? qdEeU‚6HC浌Hcz_lwJKvwx"%r)A6lX=싥q6>"eԴOj?dCaY2Jmtf>OczS b|W-V) p٨f<;&^ܕcSo.Tᒜ> JDf`\s@ܡ.5SU)cE'](E؂ K9ø4jE'kh\(}6Ew(Ukn[Ӧ$in\SRaL#bֺx#f q(U)$4!^']yDG&0`A[Lʭ^'n_c΁y\RZ. w=4b EF q^jKZ&a:&$M%Ř%roJN uO :/qkv7aUʸR&%DJPMH2yV9+0Gxk<K\]q<+1c^Ϲ&.㐎THS'IN(|5`dtRR|d^k>(? Ua3̨.޼Atp` q\ѭĿ]k|~Cxoc ~s~16e-pgoM}M!x3ߏw- ybE,< I,q+u#fs@j.[ǽ:/T}3-uw'a]J_ ~#U8˷ i7|n?<ނ+|<k1Vj'p?<]NŪu4rsu %GFl.\np\! niꗪK endstream endobj 16 0 obj << /Type /FontDescriptor /FontName /cd0610+NotoSerif /FontFile2 15 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 17 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 18 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 562 613 492 613 535 369 538 500 319 500 584 310 500 645 577 500 500 471 500 352 634 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 19 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000002508 00000 n 0000002805 00000 n 0000002847 00000 n 0000002895 00000 n 0000002947 00000 n 0000003112 00000 n 0000003186 00000 n 0000003311 00000 n 0000003356 00000 n 0000008880 00000 n 0000009094 00000 n 0000010456 00000 n trailer << /Size 19 /Root 2 0 R /Info 1 0 R >> startxref 11370 %%EOF ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/table-cellbgcolor.pdf�������������������������������������0000664�0000000�0000000�00000027065�14163570564�0024535�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20191217020155-07'00') /CreationDate (D:20191217020155-07'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 12 0 R /PageLabels 14 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 1617 >> stream q /DeviceRGB cs 1.0 1.0 1.0 scn 48.24 784.11 132.3043 21.78 re f 0.0 0.0 0.0 scn 1.0 0.0 0.0 scn 180.5443 784.11 113.8663 21.78 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 294.4106 784.11 162.5968 21.78 re f 0.0 0.0 0.0 scn 0.5 w /DeviceRGB CS 0.8667 0.8667 0.8667 SCN 48.24 805.89 m 180.5443 805.89 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 784.11 m 180.5443 784.11 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 806.14 m 48.24 783.86 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 180.5443 806.14 m 180.5443 783.86 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 51.24 790.926 Td /F1.0 10.5 Tf [<64656661756c74206261636b> 20.0195 <67726f756e6420636f6c6f72>] TJ ET 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 180.5443 805.89 m 294.4106 805.89 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 180.5443 784.11 m 294.4106 784.11 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 180.5443 806.14 m 180.5443 783.86 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 294.4106 806.14 m 294.4106 783.86 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 183.5443 790.926 Td /F1.0 10.5 Tf [<726564206261636b> 20.0195 <67726f756e6420636f6c6f72>] TJ ET 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 294.4106 805.89 m 457.0074 805.89 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 294.4106 784.11 m 457.0074 784.11 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 294.4106 806.14 m 294.4106 783.86 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 457.0074 806.14 m 457.0074 783.86 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 297.4106 790.926 Td /F1.0 10.5 Tf [<64656661756c74206261636b> 20.0195 <67726f756e6420636f6c6f7220616761696e>] TJ ET 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /cd0610+NotoSerif /Subtype /TrueType /FontDescriptor 16 0 R /FirstChar 32 /LastChar 255 /Widths 18 0 R /ToUnicode 17 0 R >> endobj 12 0 obj << /Type /Outlines /Count 1 /First 13 0 R /Last 13 0 R >> endobj 13 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 12 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 14 0 obj << /Nums [0 << /P (1) >>] >> endobj 15 0 obj << /Length1 8792 /Length 5434 /Filter [/FlateDecode] >> stream xY P[ו>'# O<?7’Ml $@1 YNpԍ`;&mlI4n:lz3$mv?NiN&5^=0v>s=;{%�@ .Ny۶*3�i|rv_:&`8a20ٔ9@(mb*`sp@BҶ G#0ô` cH!- X}0v9'@"Ӟ)_W֛!mP: `B �Xp| @ 1:81D !Y?/1  Ub2PbH1R c|Ų^'# P؏Kh@dt:̧&siy\l.-E"i|)r\eEU0sQk;g-]WxS-eߊ)bm>mQ~#tZCmiMke%8Cbk~C_&FP}F׈ΪuPdڒ/*)hTRtuLy=Om't)h>@a}ܻw'm[YJu%z.WKf9|b7tk}O_Uo<g;PUS͙MsjJ측ҾrKWCsw >?9* C7s!SKh,D𫪳I9XYi+vm<!it{k8;cKEOekMPx?}! Kj!8y7^_|bsy^<X%$RpRVOݼ+LUUDOfW {6"\}6KNrۋ:7>E*PS|O8RH:ƀV&jVb#׀*=@ͨpGot]C\`{徎}K}yGIɭ蛳_(((ReP昺*o; CNmI3}Qˏi{r*wmU}I}<cçeiybi&g9+yqֳ 59hXVtB8I8D:V]8d>tͰ~6;YWn~CBeRfaZYJNޗۦצZ36;?*j.O+u֖beKVWlߕSu1v{`nzGBNz֔Č$ӌ$>#;oPѪgNeU\ES# I|Cz?etM,uRw;]ic<hb?LPѵjGn5^/MbіԜ-E⦡q[R JKa]J 8-u$q|L[>4$oWou[Log-E`ʌ/+'k}[X9?4Pc#WK6&[STZI2; LАwŋr3>ʵy3ɱLsF͟ډk�{IѷYJZ‰n(ORfRN}*;l.ɍYy*r@*+( ; 5J6cM+Xi�$2+)FaPn;Z.g7ܽMWOĒa?33/B/kj/Q,ÿa^)$"=Yp'& (6uEu{m4s[Eim^mINj,۹qa[Ū4Gu_n7Z }Mr`CTŤ`ѕ+Iʇgz:1Ne8^ϖ=f#߂R`fc,݁PV>>spx{Jk < : U/Դj#luå{tJwˣ ~&D ir"=>o?Z xtk0! mpnpg" F!Ы a �t_:{zE/tt} f ˠoRa/E;r{@њ/#KPqJ8pUWV6Ğ"g^Q?^{<)@ءZ ڡz%Y"ШEW<V?9yI^W<{ _xY #DRUAĥc  ? E ?t\.W ?~p?R PaG6_QI?𓸯(dȌTPs9 '"Ҳbk 0>ۧGbOb/ y ,0tvWn g7vQ0c9X 3ʇu @$ B1 �JPjIa7>3 a0 =Dfhg?=.F L,Zi i,E[2 i\ZCF>KD$̈GըD1=L?,zHMyBF7gxnbcv >Oen3u68JA<0eD<:ayőYq]74JͨÃ'hܥD{ÎH0OD"03xͣ)˸/bACTQ)ӌ`PiZ`٠|JYSx=u7 h LGāXOGe?#3^_HLā.'蛎 wEQYfGBi1q@l=m=AqOcc`}@{m=H.V,hNH= a1SI? mѕQTLxqA_h 2O#}iֳ8p E>T3䄲Z}ƉCFoIGfɈ l[Ө`GaCssPƢoK:#hUD/\Ll`[&FSڱ[xy:F̟Xv#ݎg�[S?Xwkg=ka \Xwb}hUDdBlG!)Rv7M W1 03JS2ٙ0Nۺ pa摰W[ HiB8NY0f8Wxu-/GC`$l'́и뮴ƵPAifVObMW?']D'#_=u@S$IJ#OV?kx7cGMD5HFK_"gr^Z*8V`]uȫ*ѮeG2,3dn4=dZ3qt R, 2 L&iI$(7 !(!1ȋ+eV*#`ͳ1%|AϲX(U|yd{_x5fX[Sj:NTIu^Z}5Mk5^#׈j{}nqg[.>E4O<=z ]p W{q#7ϭR9r`ᕅ] Yxvͅd;5'o~:3IcKjNF3^'K[O',>k^nr�orlG<oݓR:d=+USJԱ$\H/OsC[qpqkdzAsEsS(7A@ϥY"gLΥN9wLNZZ28s.ӧik}):e/61 thrሉ=$| l: k) g( X"*zr<`2Qy.L?45QVؔVb575ZjwQ]UYVj1I ]VV <XlZܢ疅<Ғ wHNYt31NI+J%iJZ%Vڒb.6I\"{>m\>kfm!IH 8BgLDErxbńf_R L\ IA=a ^AlVvWsmzUR.'K6LncJOMb󧖴06%z%g);SLrd "W%]6Qtޞ*V?Œ޿q'ǣpFG@-|$̻=Ks#vDz8ji['r)uOe-}2gl'<ɰCoHq~V7 bj0Ѕ\\3JY Kܴ4[YЛyY0{%;b|#ύ`<O]!i? qdEeU‚6HC浌Hcz_lwJKvwx"%r)A6lX=싥q6>"eԴOj?dCaY2Jmtf>OczS b|W-V) p٨f<;&^ܕcSo.Tᒜ> JDf`\s@ܡ.5SU)cE'](E؂ K9ø4jE'kh\(}6Ew(Ukn[Ӧ$in\SRaL#bֺx#f q(U)$4!^']yDG&0`A[Lʭ^'n_c΁y\RZ. w=4b EF q^jKZ&a:&$M%Ř%roJN uO :/qkv7aUʸR&%DJPMH2yV9+0Gxk<K\]q<+1c^Ϲ&.㐎THS'IN(|5`dtRR|d^k>(? Ua3̨.޼Atp` q\ѭĿ]k|~Cxoc ~s~16e-pgoM}M!x3ߏw- ybE,< I,q+u#fs@j.[ǽ:/T}3-uw'a]J_ ~#U8˷ i7|n?<ނ+|<k1Vj'p?<]NŪu4rsu %GFl.\np\! niꗪK endstream endobj 16 0 obj << /Type /FontDescriptor /FontName /cd0610+NotoSerif /FontFile2 15 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 17 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 18 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 562 613 492 613 535 369 538 500 319 500 584 310 500 645 577 500 500 471 500 352 634 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 19 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000002508 00000 n 0000002805 00000 n 0000002847 00000 n 0000002895 00000 n 0000002947 00000 n 0000003112 00000 n 0000003186 00000 n 0000003311 00000 n 0000003356 00000 n 0000008880 00000 n 0000009094 00000 n 0000010456 00000 n trailer << /Size 19 /Root 2 0 R /Info 1 0 R >> startxref 11370 %%EOF ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/table-head-border-bottom.pdf������������������������������0000664�0000000�0000000�00000042265�14163570564�0025723�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20191226030725-07'00') /CreationDate (D:20191226030725-07'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 13 0 R /PageLabels 15 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 1664 >> stream q /DeviceRGB cs 1.0 1.0 1.0 scn 48.24 784.11 249.4 21.78 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 297.64 784.11 249.4 21.78 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 48.24 762.33 249.4 21.78 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 297.64 762.33 249.4 21.78 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 48.24 740.55 249.4 21.78 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 297.64 740.55 249.4 21.78 re f 0.0 0.0 0.0 scn [2.0 2.0] 0.0 d 0.5 w /DeviceRGB CS 0.6627 0.6627 0.6627 SCN 48.24 784.11 m 297.64 784.11 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 51.24 790.926 Td /F2.0 10.5 Tf <436f6c2041> Tj ET 0.0 0.0 0.0 scn [2.0 2.0] 0.0 d 0.5 w 0.6627 0.6627 0.6627 SCN 297.64 784.11 m 547.04 784.11 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 300.64 790.926 Td /F2.0 10.5 Tf <436f6c2042> Tj ET 0.0 0.0 0.0 scn [2.0 2.0] 0.0 d 0.5 w 0.6627 0.6627 0.6627 SCN 48.24 784.11 m 297.64 784.11 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 762.33 m 297.64 762.33 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 51.24 769.146 Td /F1.0 10.5 Tf <4131> Tj ET 0.0 0.0 0.0 scn [2.0 2.0] 0.0 d 0.5 w 0.6627 0.6627 0.6627 SCN 297.64 784.11 m 547.04 784.11 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 297.64 762.33 m 547.04 762.33 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 300.64 769.146 Td /F1.0 10.5 Tf <4231> Tj ET 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 762.33 m 297.64 762.33 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 51.24 747.366 Td /F1.0 10.5 Tf <4132> Tj ET 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 297.64 762.33 m 547.04 762.33 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 300.64 747.366 Td /F1.0 10.5 Tf <4232> Tj ET 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 11 0 R /F1.0 12 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /2c2a4e+NotoSerif-Bold /Subtype /TrueType /FontDescriptor 17 0 R /FirstChar 32 /LastChar 255 /Widths 19 0 R /ToUnicode 18 0 R >> endobj 12 0 obj << /Type /Font /BaseFont /9f798f+NotoSerif /Subtype /TrueType /FontDescriptor 21 0 R /FirstChar 32 /LastChar 255 /Widths 23 0 R /ToUnicode 22 0 R >> endobj 13 0 obj << /Type /Outlines /Count 1 /First 14 0 R /Last 14 0 R >> endobj 14 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 13 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 15 0 obj << /Nums [0 << /P (1) >>] >> endobj 16 0 obj << /Length1 7164 /Length 4147 /Filter [/FlateDecode] >> stream xY{pSWzνz%?G-m 6.ȶ$[% $€dҮ$N۝nXSt&Mv:f )v'6m4LIIM&ub96&J|{#�`h'PR,W 6�)˧q tb"DV�4(c2'ϐ~鍑*"> Љp<5 M=7 -Ht&>x(&bi_Յ9@ ;)9{^LNź�NO'j]�:Ƈ| jYKA7Ŏ�a~ A=zKeDW"K"7eNT IeG{aZqd#U\"E yeԴRv`_k̭2 RChRݸ|xHkLź CA\<K#)5}5 cbKUs}͝X`}mE&=82PohazщB-`hey+5[IޮLvXFѮmW^VmXZisW8@H)G\ujswйOee{:1_ 6v}c/L 4<V7rV^>괿@# `-DД mG.D`'g;7[_K+)C c3]6􀫾mCёI.mM=Xs>Ի vjo޴zy;ܺl^zccA,$H& FRovhQjKW}H UUcwWqRغrc'Vד=L^_Ug%" ѐ&j6Z?<,H!ȎO ]ٿ2TAsD/ ~GQUp}s@@~m;Q|& V# T?< Wry g?9܇u7#ҹIų�0&2懍s�#HqpF ß�3~QE+*.Rq &@-iQq-}*jr@uPA\7̿CVT�ʅ-*^�[n/VB8,Ao*^{uk7~8-FU|_PuӚOT6%СI_"9NE2m6ڟHLMҞi:Xi:&19l>H@f!Q`Zu;@|d ( 2ڪ4deu 0Xȩ$ 6 .tzx"3DKch|ۋ)|%\,Z'!?ҭ]U? Sh"N[F fX1H;&Br3ն2|hh& ˱P{41yg*8#– B5{!7 _WAwCNG+bY)eIf^{ Aʄh$`0kJyTjE!\p+2G;(>v#L&e?~:kHlSrƆ$l23 //+*O+#lH(kS7N11> G_;vAG,W"dx(%zN4Fr&S4ǽ'x^x^.Vzeh:`(JⴾCݞzq{ZAw`{znѾ!BE{t=hrIQ~Mi"EtGV:{NŧfBSERNŢixE3 Tlb&EgPW\bMFCNv̦q@:ί)Vo38ͪ*e=xF8K4 ra;ea>f4VeT:CkOzqڇ#{B~i78ZLFW<s}8"02ZNS'02)~"#(fw{ŕbw$LI\6o|.jFjjcv# __'g6̨6/̷꽔HE5&RSa{4rVn4)䳜O<b<|٣O?_{ 65Miq5~/i$0Bʱ&+2D.bO,!aK`;"[tu#9#'sĔ#+#>ܲh\>,X&=;lm@H'Ĉbp,ıoY[6[1  ^hp9O|t^iB&6b<}=s O&تuliH FU8Vڷ>\[BcEF;wE_pinܒͥO􋹫 ׹)"Q߆}@6sD]|!o:+(W>;yE_ӥs^XSgPwvA8}6gEӉ?-<~u'ߚ͋yr}y2|ya?/zya<y ֝tZxRYkru:թS7mɑIQ3Iʯa2РFxK s&s^vWJ>S'`~{70 {׍bN[J$ZH-x=̓ؠyH!F)|/dϜMJǯ70Nl2ӦJ L3NX!'23233GJ3!d57L^Wf9=3gP3y=c#Cw9}={{wWvؾfmmٲAU% zV#bZ+HiZ-VQhѻ%(9y=/i_$& ݭ-)QCШgR*|i:$,\AUH:ױHt>O.lm"L"%Ȗ=O-ήmPX;f%VJ$gAW=WItx.\͞^4x8,CµYљ>6+[%sYiNi[gD6$oȠGw#!5>6uaxYD]`6I.gN0qb0+.Yч袑"+Y0[J2#_ cj0ǟX8ܨ?OWhK`5!8WW9>ƙ[-JA?haɉ1~"̍c=}B2)%-Rv\Up*& sV [5q7h*-az3EQmmQwRs\f (SlRR)zrF=~D])PW)6LYV[6sD0Ҩeh\l8>&gT0I7[{�U$`EzMpHFLyoΫT b�MPNn} QVֽԏЫh:e*軔jY j1 -KimMՍq%``%6⭁j8^͢J,U#~ ψ 5޻;a W Ll3J?ȁ{U6AO)Tbsmf81!A;<n37vW Aook ^| 95`'</�)%}B/S\P22iC/8WNO,a#0(1*& cvT]a? D�qDM" H{+V %W)z{z RIZ[ɚҧխOmPCP3kwP6YGokJy~O65|uz_q�VnS+Εdd/Ȯ{)m 6 wH'~/[G{Y}yz/+_Y:͇υrA+יuҽ#<&;s<X"COfυrƵ˧�O)T endstream endobj 17 0 obj << /Type /FontDescriptor /FontName /2c2a4e+NotoSerif-Bold /FontFile2 16 0 R /FontBBox [-212 -250 1306 1058] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 18 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 19 0 obj [259 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 752 671 667 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 352 600 600 612 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600] endobj 20 0 obj << /Length1 6984 /Length 4132 /Filter [/FlateDecode] >> stream xX}P[Wv?=}!00!?1 0/!,9-I6kǙN٦̶<ܙdvRgII733cw:6&{'{ssνI@�`ԃM:B6"K�~|b&Ob3�ax">$e�4N)Lo| (D"rۚ[&y (~}N2ʁD<-\P'忔~:M�y!]H9 Pw%r;PF>NOz�^}t;ǿɄ1VlOV5߂%@qY*h,W[-ai.Jj>G=zi߀Jjn*4RUMsx4TI[ߓԙ*U4>f)4bWiSy*#,*`GP #hi&bsM **4D;1wRa922wVlj>s}(_ ^ث:}+^Hx{1W؁ƭC>Kd H_HJKpuݤTTc'l-ؗgpٗ V쨪@޾J 6UVߵYa%\Pv3o?(7Տڠ:cqddxߐwr_>ym ~*KK4ۉ4[p9'njNnu>˝ؖYrf@ff;VUt?g窱9=M+׼Po)~R"od L LՄi#z<J2>ف#h_Bu4]=o^]Jݕ/-G`F8LJF9em#ZZA&ԝ�R6g@�{'=f.3[ѕ5y&(pF8G^Rqw߫�pMEC׀ObQq-fB9iSq_m롊DU=87@)YPq x*ۄ*7M8FxH8P)*i[!6x*gT|pQs/ /&w;≙dt<;vx||Bݱ1mC+E䔜C68$`q<\ҝPkB'�nn) mL`=2*%k /S1G-׈BxH&qB $<i]�28 Zi#_ K uxeݒ9cV F8BE6Ǯ{phi: ɓ4^U3Ex;Ix8n{o79)1:,'2B<R&tF4:^BʑԆAddKp+ҹaFqfz;BkH�[$Nq8wm,>iv4$nF}xq!mq,]8U8}*==ySMB0{#x,M=p`Rf2c)T,$'i:"SOw/OȱroN;Y(J'S#jnOmot{j~0=647!CMYK(q|_Lh<I(K�,VVJcptNcSq\EBNNFSl!Wb!\d4Lsy<>-'c,gSI:LTdDDn4߾l1 l#+l1c0b6,"\׃{~5 PhXu:hUZ/e=ئvmp;ckj/Lns>#BhGGtv>c݃=LqhU;I.G$Lq|2/nvʯ}_3ƎdI3!ƟAu n$rDRBj'Z؉t|ll圜Al0ڔ;DTϥX2Hl-{86RPڸXՏc?I/:V#Mow@0DR 3@6 W$pD<!  dJS, ,zI"9HfI[ 1#fκGT%!E(N>y(+<'E{9b@"GL x,y4X|x޶x p+|ogdز޷րH6!c92oḻ́d+GDg?u|s&:nDwCEDRV*gofW W_ E/T z<~~y..%.^Ee \ .d/ %z;9p^s7:=e]2շ2xg\Lʽ6d+lxeg; ׹+e,ԇ!1C} Z4['[8\Zq  -v`aA4Vn$:C'-k,"+['x(-*p^[ϖ-' {֞y}vG<J##yYhG)=J֘ņ2hR_$u,e=RHʚ\ xgOOMM X" 92V+ӷR샠5A)k98\~w348@oϡN8ze{vjnjm"UY*KMEyNы.JM@H]]uLW!Z]@cEh RDw'G}>TmM ֡`*8Bԥ#W|sC6œ1RI9͵oN�:6"V!e`r-]mR(9ytpJEס9%2 yfkAH )bfDW&RlUKNeeVr+cZDV$OĀ'kM_�kѽ[L ΎJ$e 2 z|8j>~ƯO]>EvH,{̖b@Z,lg02;lկs}zf{V$fǗQ4!Ʌ>>TfG1aLJfY_L\Uݡ(U5z�f 1q\')^OJHx\+~#H@j.k.øp8"E<|]J(%RJ<YLJÔc(r+r돍,F3FGٛsMO~'#.qe|R0pWlQ~K>ϒ&f)Bǰ# Qu0:Mg`z*j fя&R{ ڀ Q-ԇem4CN]ScR-Ke6l[rW]TGX�j<5C̫'ɒ_P1ckcQuxY&`U:"vݽM3ǓaJhy,{`#&3<c2s4#u2µyk=Z<$rzpAN{^3þk:-{88*0LL`LC(5,pc12F`l^aeL@LcF<>ƳEC,>d~P/QԊޑZ爠+PܮK ?9\p=f)#uOdL.:O*l)w 9%p p\*Y럆2,7ބwWoy{ۧ)^~ص�< ?f1~V_ t;<Sptu�gleBrI8xѪ=/D{r[LBq^XAGai_毡4{ `^EzD#o}0t%KGIK-%AW+ս@xRuz'f[?/I)qY.H>Fn_ endstream endobj 21 0 obj << /Type /FontDescriptor /FontName /9f798f+NotoSerif /FontFile2 20 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 22 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 23 0 obj [500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 559 559 500 500 500 500 500 500 500 500 500 500 500 500 500 500 705 653 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 24 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000002555 00000 n 0000002865 00000 n 0000002907 00000 n 0000002955 00000 n 0000003007 00000 n 0000003177 00000 n 0000003342 00000 n 0000003416 00000 n 0000003541 00000 n 0000003586 00000 n 0000007823 00000 n 0000008042 00000 n 0000009404 00000 n 0000010318 00000 n 0000014540 00000 n 0000014754 00000 n 0000016116 00000 n trailer << /Size 24 /Root 2 0 R /Info 1 0 R >> startxref 17030 %%EOF �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/table-stripes-even.pdf������������������������������������0000664�0000000�0000000�00000025073�14163570564�0024667�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20190919000854-06'00') /CreationDate (D:20190919000854-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 12 0 R /PageLabels 13 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 1856 >> stream q /DeviceRGB cs 0.9922 0.9922 0.9922 scn 48.24 784.11 498.8 21.78 re f 0.0 0.0 0.0 scn 0.9373 0.9373 0.9373 scn 48.24 762.33 498.8 21.78 re f 0.0 0.0 0.0 scn 0.9922 0.9922 0.9922 scn 48.24 740.55 498.8 21.78 re f 0.0 0.0 0.0 scn 0.9373 0.9373 0.9373 scn 48.24 718.77 498.8 21.78 re f 0.0 0.0 0.0 scn 0.5 w /DeviceRGB CS 0.8667 0.8667 0.8667 SCN 48.24 805.89 m 547.04 805.89 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 784.11 m 547.04 784.11 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 806.14 m 48.24 783.86 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 547.04 806.14 m 547.04 783.86 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 51.24 790.926 Td /F1.0 10.5 Tf <666565> Tj ET 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 784.11 m 547.04 784.11 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 762.33 m 547.04 762.33 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 784.36 m 48.24 762.08 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 547.04 784.36 m 547.04 762.08 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 51.24 769.146 Td /F1.0 10.5 Tf <6669> Tj ET 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 762.33 m 547.04 762.33 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 740.55 m 547.04 740.55 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 762.58 m 48.24 740.3 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 547.04 762.58 m 547.04 740.3 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 51.24 747.366 Td /F1.0 10.5 Tf <666f> Tj ET 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 740.55 m 547.04 740.55 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 718.77 m 547.04 718.77 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 740.8 m 48.24 718.52 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 547.04 740.8 m 547.04 718.52 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 51.24 725.586 Td /F1.0 10.5 Tf <66756d> Tj ET 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /cf94be+NotoSerif /Subtype /TrueType /FontDescriptor 15 0 R /FirstChar 32 /LastChar 255 /Widths 17 0 R /ToUnicode 16 0 R >> endobj 12 0 obj << /Type /Outlines /Count 0 /First null /Last null >> endobj 13 0 obj << /Nums [0 << /P (1) >>] >> endobj 14 0 obj << /Length1 7320 /Length 4326 /Filter [/FlateDecode] >> stream xX}pSו?ßX2 0`dI661-I2 zؒISܦ$YdBt33;:Ig7nӝI7Nl3%%&L7ܫgcS}һ=w=�@#hPB" k'&LJ??P=5 �4F}d*}X*C)7E"RHve-S A"@<g;t OP&4�XhJzPFMHFft/`DRJ|A+?G{<㉉oiT{& 1 1�J?E4k5]y%85�T^g*7ZlBl5c;>PZ*үmY#l&UTU Bs~u.>@{>oaD?p޵e>+C['=KLO|/TyvFcOvVam=4Uvvwtl~6&e̖*Sye, Ûo<w0]ne[þ-:bZftԎU?xjk dެ3n-@cˆEF[ ՀYʭYdpA*V:Xj0XjIfXxŵtdžƊ ;ڑM,5#_\fh[kJKk`fMM#^Ñ~P,Xܡb/UK&+;,~avцFvþƝG(7>b坋ϭog?{ =l}3|/u*zYm ].n~k:�v;ݵ8hiTMmu@e#T0ٺE-ތv\({6tFضxm?\O$&XsgO&_ɴg^I&_N^f~|V8iXӮ*[yXDyƈ%xU:Pc1F^lYG/Eq-g+o<Ab>tE~WV.!mjqu/>V< ^pRSYK�CE+'# x1i=%~&V<N'3fka|,P [I30v(^m(kqw<_kYs 7A?J:pD,+W ,^0 W .@\Qpl\mWp5T.kRp TNׂvԒS�rN \UBA~EP))xljPb8&V0 )x t[~zըU );Q2X0eRHw<1NDtgcNOLJI:̺RtXJISR LC0HcXwKBz7$H(!c`V'"X/JqIZBSXOǩGJFǡyxSp(KP  y8hTh"0284Zi M _ K 2nɈLE1dm #M! +cޖQ̈8gh4JG+b(O4r7; !%wp wwHDz]F;xX(ق(`Jh$Kc(0ˤ<iIBF"O;Fagw#ʎtFDv['{c)ۄ!qϿ4RbNJ$iEgđʆ6e8VO) t& O!`x#x,M=e2:&RL,,%i:"QHHBMVzwp4NFG3#Pvuzܞzy~ô{Qr�s;EsT:ߩ'it*1e /+I%xtNb"!%)+0*<?%%c,$ n,Պ9Q6>ͷ/8i H6z ?XeۚeUzS�`lU Ph,4?tFѪb_3Z<\=|{MLbvÚɝx~cُ|�"D|}.~C�>a:[BIr4z&wdۘByxiwCTJGU1I1cH暔?b[ٙNq_.E$/Hفp-ӈe Ŧa Q]:Rch"xr6:tDZµ'ʭĚ~YL':;=wB)Gϴ|_ u| GYI`TbFرH"kyKYI+9i0sLsdqp7@t Y Ā9F]KBt(/R):%8e%)Fko^v V�WVAR$QccTW޷:to`y>’@\s[xAE6 c52z9shoD;u]u_'-׉ZkV> */U9;8BB_.*u,=k|V(:{\t ?xziu |qQQhz/[sEHN\x^zA} .ܺa0Wxo{⪍ڷ"g,PZ4 2{xQIBc~! xǻyOf|Je?RUj |W}||AG^ASl![\+':Y|utU-*gUj:!9l/ 1JQY y"pvv6;=~99'agl7ϭ@*JER'R(!)ȷ|Ft&s<E2`AP &2yːL̦Kf`w>gxhp𡾃i?б}_=w55ڬ۶mkMrlMIqQaVV+HAYU0Y !Ze|]udjt5д5˚DOۡ@"<9:C PC>\XɄ#:2 R::+)bK`[v11Gw;(\æUuPX;)`ipewA7rQf:s oeh\ác~Y±Y3}T.7CWոrInNX=%5uzf?1(~xs5RmS`M7uԕ fCQ\ii6DàG8g]d}0Bڔź0+BFBhc0t~n(3C/̆+`d=o-TXRs!yf^ Q/}f0ٵt-u)ZGيnQ+`!Y=>Wpk^iStH5PKk·ދ{ށ {Hsц#BA Q'Ą\)v-Ǔz|2L!8mN:,j$g0|<(Cס9w}Z `1:l ¸+ǩ`~)YM3qd}CG{N]缃F4ra]! U�P6Įv,傺Bj~|N/ir=uJEɫH5,{شLD^)`_21(d]Rᩁ4b~f^~QbA?[s %U gKs2V:W{G{f >O !nXI2Ft0M0gxdv-,9hVtεy�k->o9<64g'y_Ǽ+]-9*0LL`L(r}vޫ�cKy!01us]z' |=,azD&bzG#T..DbZ`fu@V?* 5zh^tP r7b]8c¥c=x¿Ox 2 7U/q;K.<0KzaaqбDY>:_Ö;./oxߓb`Oziև1A ؕ_w </vԼSPW0M.\UO:_crp/<$LBPVi}_xHh / ϣ]8S}M}S% s's_k>T( endstream endobj 15 0 obj << /Type /FontDescriptor /FontName /cf94be+NotoSerif /FontFile2 14 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 16 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 17 0 obj [500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 535 369 500 500 319 500 500 500 944 500 577 500 500 500 500 500 634 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 18 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000002747 00000 n 0000003044 00000 n 0000003086 00000 n 0000003134 00000 n 0000003186 00000 n 0000003351 00000 n 0000003421 00000 n 0000003466 00000 n 0000007882 00000 n 0000008096 00000 n 0000009458 00000 n trailer << /Size 18 /Root 2 0 R /Info 1 0 R >> startxref 10372 %%EOF ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/table-stripes-odd.pdf�������������������������������������0000664�0000000�0000000�00000025601�14163570564�0024475�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.3 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.alpha.18.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.alpha.18.dev, based on Prawn 2.2.2) /ModDate (D:20190530162818-06'00') /CreationDate (D:20190530162827-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 12 0 R /PageLabels 14 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 842.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 4253 >> stream q /DeviceRGB cs 0.9765 0.9765 0.9765 scn 48.24 784.11 166.2665 21.78 re f 0.0 0.0 0.0 scn 0.9765 0.9765 0.9765 scn 214.5065 784.11 166.2665 21.78 re f 0.0 0.0 0.0 scn 0.9765 0.9765 0.9765 scn 380.773 784.11 166.267 21.78 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 48.24 762.33 166.2665 21.78 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 214.5065 762.33 166.2665 21.78 re f 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 380.773 762.33 166.267 21.78 re f 0.0 0.0 0.0 scn 0.9765 0.9765 0.9765 scn 48.24 740.55 166.2665 21.78 re f 0.0 0.0 0.0 scn 0.9765 0.9765 0.9765 scn 214.5065 740.55 166.2665 21.78 re f 0.0 0.0 0.0 scn 0.9765 0.9765 0.9765 scn 380.773 740.55 166.267 21.78 re f 0.0 0.0 0.0 scn 0.5 w /DeviceRGB CS 0.8667 0.8667 0.8667 SCN 48.24 805.89 m 214.5065 805.89 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 784.11 m 214.5065 784.11 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 806.14 m 48.24 783.86 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 214.5065 806.14 m 214.5065 783.86 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 51.24 790.926 Td /F1.0 10.5 Tf <4131> Tj ET 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 214.5065 805.89 m 380.773 805.89 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 214.5065 784.11 m 380.773 784.11 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 214.5065 806.14 m 214.5065 783.86 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 380.773 806.14 m 380.773 783.86 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 217.5065 790.926 Td /F1.0 10.5 Tf <4231> Tj ET 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 380.773 805.89 m 547.04 805.89 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 380.773 784.11 m 547.04 784.11 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 380.773 806.14 m 380.773 783.86 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 547.04 806.14 m 547.04 783.86 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 383.773 790.926 Td /F1.0 10.5 Tf <4331> Tj ET 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 784.11 m 214.5065 784.11 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 762.33 m 214.5065 762.33 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 784.36 m 48.24 762.08 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 214.5065 784.36 m 214.5065 762.08 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 51.24 769.146 Td /F1.0 10.5 Tf <4132> Tj ET 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 214.5065 784.11 m 380.773 784.11 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 214.5065 762.33 m 380.773 762.33 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 214.5065 784.36 m 214.5065 762.08 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 380.773 784.36 m 380.773 762.08 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 217.5065 769.146 Td /F1.0 10.5 Tf <4232> Tj ET 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 380.773 784.11 m 547.04 784.11 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 380.773 762.33 m 547.04 762.33 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 380.773 784.36 m 380.773 762.08 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 547.04 784.36 m 547.04 762.08 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 383.773 769.146 Td /F1.0 10.5 Tf <4332> Tj ET 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 762.33 m 214.5065 762.33 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 740.55 m 214.5065 740.55 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 48.24 762.58 m 48.24 740.3 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 214.5065 762.58 m 214.5065 740.3 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 51.24 747.366 Td /F1.0 10.5 Tf <4133> Tj ET 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 214.5065 762.33 m 380.773 762.33 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 214.5065 740.55 m 380.773 740.55 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 214.5065 762.58 m 214.5065 740.3 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 380.773 762.58 m 380.773 740.3 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 217.5065 747.366 Td /F1.0 10.5 Tf <4233> Tj ET 0.0 0.0 0.0 scn 0.5 w 0.8667 0.8667 0.8667 SCN 380.773 762.33 m 547.04 762.33 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 380.773 740.55 m 547.04 740.55 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 380.773 762.58 m 380.773 740.3 l S [] 0 d 0.5 w 0.8667 0.8667 0.8667 SCN 547.04 762.58 m 547.04 740.3 l S [] 0 d 1 w 0.0 0.0 0.0 SCN 0.2 0.2 0.2 scn BT 383.773 747.366 Td /F1.0 10.5 Tf <4333> Tj ET 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /e9c75f+NotoSerif /Subtype /TrueType /FontDescriptor 16 0 R /FirstChar 32 /LastChar 255 /Widths 18 0 R /ToUnicode 17 0 R >> endobj 12 0 obj << /Type /Outlines /Count 1 /First 13 0 R /Last 13 0 R >> endobj 13 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 12 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 14 0 obj << /Nums [0 << /P (1) >>] >> endobj 15 0 obj << /Length1 3172 /Length 1880 /Filter [/FlateDecode] >> stream xU[l)JV,C)JՃ)ʵ(іE=-S1ҊYGBҒnR ATim~0ܢq?Q4@SR0m,;jK3>.�LPH䕂Jv"#�Ҕέ>1)'40 3[3ycОA{w&*[߭A=,Arh8}7OQyR�5uMɫ侇|5Lnцz5_txsGep�~_ 46.gG 'F Ϻ=A寴Hîd }[=A5^<5] [g&mȏ|[@Ĺ \S!sO3G*ȟf%nG}v`}W'><V<ҽ\8O^8qgƃ'ܾ9m ]}.HP4) !kNo*nIpQx 9ɯGF壾Xp|J 'C}AWLP}g<:sFN?>x婡΍2{c+g¶H:}N wosbn&t hQ57fvPuc/;@Lxt6f\ZGJ}F~~zE1h޶}w wvʍx|K{Orkؽ/6yYoxp5Af;lXxB& FLܮ|zBkXji-XpgGgc׾qlyY9zVDM'6-F#^{mgq}T#%>5}H (c \d5ɒ캗|L/P)"|Miwc׾wR7퓇J-Kƣstk mޅCxopt9ؓJ]')Nd\)828L1ABڷ,|\e:L3/?Ρ-qL&?zo_?@3qI8}廸ybvvrwM7/y/i;v_gZɛ^{.Vjq^@~ds '`Ρg?d8 s0A3 FnGH&0k`638I=c0yh&nnׂwV-|ad.p+,p1 !U !~[@_ex5[3QR̦3 ]OTqJKHH.'FK%1)5)(P(Bج L?}xaWus5$\EA$st}WZ**r{nbL-fSt|Jǧb,jSt[; nPr^Ig7F25MyܖF> "xplrֿWW}_,g NJT=N`H~W/72RBJ-hWOzjc7RpxAREx1ߚąx<=iM4T%0`5"W>X2Ya jR\\ihøɠ>&CkULE<^DLr31( rBORXJy ]hA&2:S 9Tx 841/--Iy.dVy$dyP}be<kh&PF%բhdTq$pb+ I^= ˔dqLҚ!C3)ܚ^Da_7P^L˹5%yfjt,TUlT S"3Xx0ûgtqXOn<'\_ߨn joZie?V endstream endobj 16 0 obj << /Type /FontDescriptor /FontName /e9c75f+NotoSerif /FontFile2 15 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 17 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 18 0 obj [1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 559 559 559 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 705 653 613 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj xref 0 19 0000000000 65535 f 0000000015 00000 n 0000000266 00000 n 0000000467 00000 n 0000000524 00000 n 0000000575 00000 n 0000000847 00000 n 0000005152 00000 n 0000005449 00000 n 0000005491 00000 n 0000005539 00000 n 0000005591 00000 n 0000005756 00000 n 0000005830 00000 n 0000005955 00000 n 0000006000 00000 n 0000007970 00000 n 0000008184 00000 n 0000009546 00000 n trailer << /Size 19 /Root 2 0 R /Info 1 0 R >> startxref 10678 %%EOF �������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/text-formatter-button.pdf���������������������������������0000664�0000000�0000000�00000043103�14163570564�0025446�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20191222005301-07'00') /CreationDate (D:20191222005301-07'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 13 0 R /PageLabels 15 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 770 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf <436c69636b20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 1.0 1.0 1.0 SCN 0.0 0.4824 1.0 scn 77.2985 808.14 m 104.068 808.14 l 105.1726 808.14 106.068 807.2446 106.068 806.14 c 106.068 789.86 l 106.068 788.7554 105.1726 787.86 104.068 787.86 c 77.2985 787.86 l 76.1939 787.86 75.2985 788.7554 75.2985 789.86 c 75.2985 806.14 l 75.2985 807.2446 76.1939 808.14 77.2985 808.14 c h f 1.0 1.0 1.0 scn BT 78.2985 793.926 Td /F2.0 10.5 Tf <53617665> Tj ET BT 75.2985 793.926 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 106.068 793.926 Td /F1.0 10.5 Tf <20746f207361766520796f757220776f726b2e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R /F2.0 12 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /317b88+NotoSerif /Subtype /TrueType /FontDescriptor 17 0 R /FirstChar 32 /LastChar 255 /Widths 19 0 R /ToUnicode 18 0 R >> endobj 12 0 obj << /Type /Font /BaseFont /67b5e5+NotoSerif-Bold /Subtype /TrueType /FontDescriptor 21 0 R /FirstChar 32 /LastChar 255 /Widths 23 0 R /ToUnicode 22 0 R >> endobj 13 0 obj << /Type /Outlines /Count 1 /First 14 0 R /Last 14 0 R >> endobj 14 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 13 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 15 0 obj << /Nums [0 << /P (1) >>] >> endobj 16 0 obj << /Length1 8708 /Length 5437 /Filter [/FlateDecode] >> stream xZ}pSו?=Ie[6ْm -ɟKɖl+ؖd)bBȮKHl)m!vә&Na4NSȴLdYlWĦ}=s9+�+(dC}a;" Ӈ&@txܟ=ͫ�i_Aҩ]ytTЯ � 7pr/H .˖ODi_$wo!YL !R7�9[#`K f�k"29s�P(@J*'�6C�|EPX*@~zR@nddfek u?]L"S^ĕ�r_dfQy1芣=D y�\͖b._ʼn%fV,b~h)YDuBVPW^>RW%)U,H̭5,f" WWLxUt=g&֩yۋr EGՆ::cqc7Z[JKemWI#WgkF[*-h*o")Y|ne9ho(xҺڭ-&U`G齻:r4}pԒU\]Z#4v=·s*ز[04Y:-ǖ5m+HڍeGdHڍkhoYէ.El'8~ =m9gߺoX9}_l%|&2?Qo^5LJT)TS 4ԀP̯W=N,uË[bKbgnOܬ{}lj4yhkSՅ5TErsSi*1PO]`"uݒ%MfT"ҷ n7,zR7WqTyn<emЧy<J&kqFFu>334g%߈THU)+kJQfT3ø$.Pm ;Me-\#6U1+5(nayǓ^o'7z<iMNÆ]uиm!( {c oխ-"ĢﬖIgȱWTashs+Z''kaHDۥ;wѶ=+˿u>Bǩ7>?8|4z>;Om5 k Y2JQBޘҢjeI*,Mi=2o66Vtl;[%w&CZ1uʖG|sMZWU-3k_J[WS;ZueU붏uO<+[ý7&}0޳3Z]֊z!shGQQZo"vtWiqt[dqSvkՆ1]hoY z�#V|PuH5|C>&@76 E:'#%I3J2?p{ժݪT;?T,o-PE7j:DLQ"]gx/y1 Wb]U{ Ks GC,DKMSFud2ո@[.KTX4C4R4()D$f^TsPܤVܰ^HQۨZHKmgo.-w_(*,?x597)*h9`$כsO%#h}$ /cZ˯e JUj~B"+叟g?`'t/ OT)se/}vu՜'E;bs͍x.idziKusFޢ"G۟Vqo@B6KvҊ~[W-Oq\Ulst1'wꑙdz &4)%,@J/+z }Rt'#5T(J[,{h?pd>-ٹU^{'e=le紣Ü߃N8y0rG@x𯀝rCRcπZpcxSZ3hrr_Ƿr σg<JkI@yG@O s+9Rq%V�-'6Oq^SWv9 ỌWbns=@)U'tB/A? < 0eY,p$NzJ F⬌sxbsx <lezKFɸ J u2B**А%$$󤀝q5272 Z.KS+4#ats?th|B1_-x&Ox&g2E)2)#ɩZE'BYhPL Ƃу! 8Q$LAýUc+@ R]0 `^+"9+ƨ >( 0a&0F.Pprne&a!3<3P%%2IM38mb+@޷-PxV6[bR48%'菭5c۶ &I tXUB?~(ۏ 20n_ |7:&g6,p4tHalD cBIqjF~H8Ŭ'S` 5 #Ǝx0O;4O23`܂-,(Kd3 ԟftFEY"EV*3˜X|. [LT~ 9\f3<\hth<8COQ!>\]B$8dM2T feY@(0FrgV*Z]]JaWpg{X:47p CB{k)7"t+`͉ "`,&Bh&2 ?Va"\I,MƅiW FgB1+\L(3z2|0i}(<Pn_,Ռ99%o"'s}m_q74>Ǒeňl[Ӭb.#g]#wJDnWYv_, g1*.ۗgm W. hJQ;vao߯fft+!lK߼~DlF'ǜ;Y<TvJz'ʨ3Q#c([ +W}^3NK2;alR;#˕dϰЊ8-ٛubs̆9٦d1 Q]Kh(cis8:iwR6b{Qq^F'{<شi_v㇐f?V>}|իx>ԏc$"Z$3†7GEBώiK p_"$�ۆ[J I%^"ȱ%Ht(I-9|HecKH6RY&ȓxQ@[X*Lx_'\vГn6IA,.C*Q!(ɳ92A O{yHx_[<Y Q:|CB{&IDu)Wv^%+5oUû"|B돽HnpR3O?N?Υxx<՜=vV?hprL g;Cΐ} /,酧,\_H,()Gq0_D EBB3^$/Htꃖ g OxNه(y5n%@u/tZ=6πoq/ s|gGdC]P!nMM#p?}%kɾ}=Qx(%d깔RHdt6[R{wF:m{-.8#ccl\,X,7L6Albk"3`C $'JH?C~6d&.F?bx(31uvtwuv8V[KsS㎆U[-R&Ġ/h2R)*G/V:DOJ}T쬢G Ixky$؄6䜸Ӗ$*(HE=)8"HNW2" g) >;[LOkۃiUtIbd7 3Z7:i` .)K!hg"%UD !j:+_|JT!ڥÿ)ĕJLTjM==$Ҩ"wE22j>u{睢/%F_Ș80Y>Hi8S#-aΐ33YÀ@wO l0tlЛ�6iD|t啑|792rsOh~4FHgss+U] )K-8k:e^Èwu4'W.*!:|B TUJdq۱c1r,Z-8,|EHZf<Y˦$mqydqةf1Oso1=La{AKPX+jaNc:潁 IpWN^AIެu>q=dTE%`zJjZr:~5NmJ)F5 CiZ5 ^|OpRe>J޹"MEIީ3WU%Âgi�:Wx#V 8 BU+qJl^6,>r\PnԙӤ[\7[Vy㚧EY ]tmѱJA3Ft1M0gX/l4[hrbW`^ty7Vu\!=mUXErbpFNv{_�'8µF7%P@ *i 5׽d8F `8^_⒘fS$1Q*Bcw/LFhCzDfؼH8U&ۤt-oI*`fRUyx^?,?i!a)/*_[p qx].ſRt?omg}^_s�? Y#�~V_ <:�~Q<?C7�b8"k^n"V͹VQPm^5m<'Ñ JPZ~x cX"{ a*/ '&\!Gy7s|>TO{Z8-ViU);f+yIo$؉CqEq*orcw/{V endstream endobj 17 0 obj << /Type /FontDescriptor /FontName /317b88+NotoSerif /FontFile2 16 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 18 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 19 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 500 500 250 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 613 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 562 500 492 500 535 500 500 500 319 500 584 310 500 500 577 500 500 471 451 352 634 579 861 500 564 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj 20 0 obj << /Length1 7108 /Length 4135 /Filter [/FlateDecode] >> stream xY P[Wv>=c@`p3`G a` $@Oב@IIq٤ze;q8:mv6i;<&;iәNII7 PϽz`:LIsss3�Zxi*kRȏHIhz_!1Ll*@f�y:>|i8,GtǑW <3tei?Dd*_Dкo DOީ<@n; N|p>woGx([ P{�[O8�~Y č*__m(O{l6b{[t|q%,X'L̇w91 m]BKi܅Y7jJ  !*aK aGz1fq5s0tho=oL<xpS3}>nw><iJ[ǧͥ'}5c1{ΆߘotZ52o3MyU4 MC=áGS/<KBƭ3}XSy1BQl&l{ҾΆ#hAL_wۛjrV0t<CWs=^o-yI';׍ǚFԎ?_}vmzG/uLtՠ~w?5:]W *bo9B֒ɒ[S6q"Xov-x>9a`?uut\|$zox@oܩֱ aY#1RLѕo\Et{7wapLͨX]UOV-5£յomӖg y|(><75ҭM+'{~z95[̉rHߒMdT7ͻpD[\5 9_{tehe8/brD KqjCs(A&;M �LևsyƏ0vL-vfzqeh drm`x,N Ω8R x|OT\"s]5PDvHka9Z *22z!O:zU<uSűrɊBKsaЩy`*GgU<V| n*ѩ⛠Sxq/xc/mTZ/'P8E4ӁX,4#S씙q&Jq9)'A3A p)4) 4 9`T"38JrNQF[ǰy8QL0IaNh  Fz{2,r=�A<|#FHFbt&< 1cNm&fmdf*$ T"ă46}g*X8#5*"5 ?1nitf[D2SʒvF.�Q[ l H/ f45Bf@laE*[3$LGp`Ry*YxeD^.8?f4r;f F MYQע.ƣƸdj.}oO"6r<c)M2Ȕ<HMer ё<U*4ۥLn,I9E,qQz類a#odp;F=>t AwT~JIKH4>a/NDz;ItdfCs".'$ ?IRŎɉYV'bs :~nfɰzyS4„$9l s]!GxgYZg {xu*w$zR ]?.=}uq?!DZFށ.qpFgeji N0f[FIpaL$1EExt;UJqغ$)~C3M�E{\HR_PHB8ήݓ'>̩>e//{)9SIs22c%B Fr?f l! e(sۗZcCKGݜwZRkŠM )A5 <z" F+ނ-װ¦#`x 9! Y]-Z,E, 7IO;D3bh1*r )BY!x&q1/K2-  8_hpL|{EN}=@MʱUknaӐhnܺ9d-%?"?kYh-ǿ4t~IYzK7 '[oޏM ۭ"z^X? ?3++W_Q||Ewko\ F o874m.z+`  ={b.\$o]vQ_$/^u1sQ^$.z\x} /^ߺp0zsF gwyl#3zMZ޼ӣӢftoA7[Xt ,>1?!z n;wkTz[<Ťch)XFdZ n E׊n18@0_Nd_pL&>3T+Rbu찢;B=yp*.s*A$G°cz}d2eA/U* Y8Ö;$GR)Ŀ71TVdv#쓚3%8]zܮёv[_o@{mod176쪯)+J Ey9zV#bR*u~ES' 62^ +VQVԜޠijZ4vBgcKTy&Erx̋9GӚ: c4 jۨBԮ ~[XG2)e_ ']\[Vk큠2:*F_cC)l\}ܤS$0 ]h>hIiSP x1sӢ=RlRvK6e#V;fWL̪s|m%5H4)ސ~#>Fcx~bf~R)iS:nèg-fR?S 0P7ۏžy~"p�vK}bߪ藉lg02? ]:X-&"ꪤ$󫒵~ tyӊ3e~k,A)(Kץ#Â¦ ),;|T {%4%_ Wؠ w!a 9/4YpF)xWJ޵|2OQ)} Ync+S{/y7˜E4}Z27Zi埶@+lpy`= N+ i4*VI^NJ&f)BtIα}Y3o0#y+f<*E*HH+lLGYYvR/@jnjmղ\c,4٧A@1U9,"o 4! Ud'bQ^, Qʰ`*; p~ vi:Gr̸k3Muh vVrgǽU>*'q{]+9:}�@O Dv& e c(cqdr~Vy.pS8Zad1+؃Yc I_8r4~B. Ե@&%O{| :2H9ilx$mKV4?B k/^־ |֯f'I=?~?<?ˊr[W5逐 {7#w[@n "\C;|Ue e5%\cFTW$na4\(tR]DŽMo*&pO,Ҫ'͇BP/|Wx;PfRϾx, ] endstream endobj 21 0 obj << /Type /FontDescriptor /FontName /67b5e5+NotoSerif-Bold /FontFile2 20 0 R /FontBBox [-212 -250 1306 1058] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 22 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 23 0 obj [600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 585 600 600 600 600 600 600 600 600 600 600 600 600 600 599 600 600 600 570 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 605 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600] endobj xref 0 24 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000001660 00000 n 0000001970 00000 n 0000002012 00000 n 0000002060 00000 n 0000002112 00000 n 0000002277 00000 n 0000002447 00000 n 0000002521 00000 n 0000002646 00000 n 0000002691 00000 n 0000008218 00000 n 0000008432 00000 n 0000009794 00000 n 0000010708 00000 n 0000014933 00000 n 0000015152 00000 n 0000016514 00000 n trailer << /Size 24 /Root 2 0 R /Info 1 0 R >> startxref 17428 %%EOF �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/text-formatter-code.pdf�����������������������������������0000664�0000000�0000000�00000037464�14163570564�0025062�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20191222005327-07'00') /CreationDate (D:20191222005327-07'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 13 0 R /PageLabels 15 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 1188 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf <416c6c20796f757220> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6941 0.1294 0.2745 scn 0.6941 0.1294 0.2745 SCN 0.9608 0.9608 0.9608 scn 94.1745 805.456 m 114.1745 805.456 l 115.8314 805.456 117.1745 804.1129 117.1745 802.456 c 117.1745 792.956 l 117.1745 791.2991 115.8314 789.956 114.1745 789.956 c 94.1745 789.956 l 92.5176 789.956 91.1745 791.2991 91.1745 792.956 c 91.1745 802.456 l 91.1745 804.1129 92.5176 805.456 94.1745 805.456 c h f 0.6941 0.1294 0.2745 scn 0.8667 0.8667 0.8667 SCN 0.25 w 94.1745 805.456 m 114.1745 805.456 l 115.8314 805.456 117.1745 804.1129 117.1745 802.456 c 117.1745 792.956 l 117.1745 791.2991 115.8314 789.956 114.1745 789.956 c 94.1745 789.956 l 92.5176 789.956 91.1745 791.2991 91.1745 792.956 c 91.1745 802.456 l 91.1745 804.1129 92.5176 805.456 94.1745 805.456 c h S 0.6941 0.1294 0.2745 SCN 1 w BT 93.6745 793.926 Td /F2.0 10.5 Tf <636f6465> Tj ET BT 91.1745 793.926 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 117.1745 793.926 Td /F1.0 10.5 Tf <2062656c6f6e677320746f2075732e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R /F2.0 12 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /20c880+NotoSerif /Subtype /TrueType /FontDescriptor 17 0 R /FirstChar 32 /LastChar 255 /Widths 19 0 R /ToUnicode 18 0 R >> endobj 12 0 obj << /Type /Font /BaseFont /5bb89c+mplus1mn-regular /Subtype /TrueType /FontDescriptor 21 0 R /FirstChar 32 /LastChar 255 /Widths 23 0 R /ToUnicode 22 0 R >> endobj 13 0 obj << /Type /Outlines /Count 1 /First 14 0 R /Last 14 0 R >> endobj 14 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 13 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 15 0 obj << /Nums [0 << /P (1) >>] >> endobj 16 0 obj << /Length1 8420 /Length 5254 /Filter [/FlateDecode] >> stream xY}pu{~A"$?A�HH$EH$$�P8v(T[MUO&GeơkOd<WL7IIęL"}8R"iȁo{ �dC-(?4#S�ev̅9 <g}1�PG[HePPn 5?PC&;ǣy CCG\SCe_4O&ʔ/u#׾cs�9 Ftqf g:Kh_[��NC *܋%qГl$5L2QB38g\� yƼ2cqo\rտQ)'SO$ Z;zWR wJ+ZV@뭢&!'Ghhfy+8g9@[;@ ,65[ o!973zֵ CuiI>er-kkiA+BS:pۖ/Yk''wt)CP5crr*oGɻ_(sԮ=^8҂&y6:eTS^3&cVV:y:iR7pL'Z?۳0{ڊF0R 9V6k>em^ud~c۶?WdFI[bbH\{\_]`jsG4%rJ5 ?ߌvM?T4BKUj#£M-h_ k=I5"'ndIjOi@떜5?~أ?RBJ;扃ѿU6lSWҬiM/^-I S?"RބbYʢ"ٯ|jNrU4eWmSWkEe/d izM~UNu=@CA9k֭ ]%fC˺R}p;읮wO݊ŠyYlӢgM$Cg(/jSZƎv{n~\>[ez޲{}b13_0m<S(lsrx#' kJIᚺ;p14gS1y!~{sm%ݔw1'p++'-X'cI oy#Ƞ>C֍ZJk&;ڶRIfw MȘ|*&s\_Ykmla*h[.hMa)̟ތHvW\0ٳpvC7{k| :ǹ^޾J,r-2%,!if(dpWUw"C[ݱ](5ֶKh[eC+ ܃~_ uڭ8@w%2M󭸳 9lo)2@ʞ< FwgDuj`dqeɽѡ=BMcm/i-cU-Bv*}^=rC|glLWӾּ{x6z|H侪tB P}sKA"'6IZ ;BSȮk G˼IsdISSe+'=<4r{qu84Ṽ+h\LٔwEL"m}Fā/MS1Թ:CTuɗr-SτvЌ{rT S4p;P@&9J,<a < i$a` [as/2Bֵ39FAEn:;O ̊/UR}e#js$J*\ې']]c}Zj?% )&oqa^7_俏N^Wp)b܃WVA8ʿ vy8J-Xg݁Ǜs_Sp9�WW@ �Ot&[_ g RO0C>Tr 7Knd%S6<s_>t%g9>W.Q*0c0nw`v21/+& : d9'e?8g2vxSy̟d\H%FWBiq%H@Cr] $$Nxk2g2Z.Gӡ+ p2>.P@3Ix#2M2=@z^sQhO$z"KuBo$2;k~^Mqa<ƎD 0 s=~R^l >A! `Z"gRA:e�,ÑDDpcFFfƃ6 H؞H88E`6A0c:VlZnRpoK&x(,͘#NGs}Ν&Jxc(.D.cGfo);~M#Ep1}pow{0 A}zYh('PÂݟ spD S' @4##"J{)&,ǎ]v$Rve.Y<e2YV4$be@6B�X?-RYQU8M }<E>{[ĉ`Laz8#$ǂ4_Cp=cBb.(h0RJ)w"ܟ,'bEP]BwU#qO{ǻ'.ad\O `FМ<q!B M�W0ٶ 3Lth&4-óYE4[Dp8PŸ`lX0i}" P⏦j>/]8 ]He6il3�[4昮 >GX�w1P6:`ZKqYY`f2{6o|N0 q,QǷi|g-js |ChU;1&G؊3cl Rn, ]1>tKf{'ϖ.3,\`\H\_@ ݑ 'O lXmJmƉ?!R|:&xhZGClq y(-y|b;{-<)dW[6~B? <BҦID>uiI-f K o#W$p !ض&RJMGWI*9JNvGbZ�PŒ\rMP'd8-IbL3N}syBODC:QyY*i}xsYc, Dd:<Hukx[<ي:d.g-;H>$C!Q$?}Fn 7zhS>Yl-9M">}}9.3dg=ӚO~Z O?.i.q.%rRgDP.C_O]To]L^TRy,$𮈴Dz#|1ѹ'KԊd xu$ߴ=1, Z\m}oV 4??yv69:voOp|_oFIU/Qm zwaC;5 nzb\nw[|Np ӅDIVȅ 4NJy\*s6OR=.{~2!OzϜ;zGmJh4V4ۗ &v&#qSR5`Q?x0N2`AP &2x"Pu0MqMt`sx= ^eѾugKsS]b(/!Kt<MnNvfFzZT ROR}}f*~�gHy$p 5gѴ4mD#CFp]VȾ1E }{X]Q΄lF!8tsvA">!9-9|v[{Xj&֤J1L*; peҲ_1î7~)G&aGR3J!DMr͛KOh`g XZzL3IU]:3<(Ոvd H2(,};O݈_FTeOVޥ%(8|K)QЈKYYKQzF=k%zWH<Y'~ĕ99?"[4: th?b)cfUYM^і7[ ܴzFwty$EY@tSOi(D[Q\ڒ'ZLW@!AR[)˒ 9M=>�y[Vi(Ctcs:$5R) \vr˵VaBv>*F%ؽOj#.r7I#oZ%Yv:XF4F'sAq:4$o,7 o4@#x픸sܱ H%>}�W%)'Iެu3tc<;eS NQ渇FS4RZY5NXJ45Ҵn<^F3*zTTISoMEEeYi4�}M|qH wW$ۨ΍EDv׉MB7Liov fa)Mt-QrQ&_yzSЌ~L1K6’X]vCt-0H'5u/eyܵ@x|s#\ۻ< �6r *PqҘui֪`�ưu 4"F/n}{C|;Bsp,)C vKb7wS|w WQ\A !~3ӟϴP�נ)߽A�h<@&p\Ӯ?J[om`I</# (~u aax C!"~6_xR_: W>cx$On`N8G`u\ ^*75| Sg%uRdϢ{H߀CpH_- _{p`w _vp.+~N˥TsqJm,x{{G;q(+nrM\un%y497 5 endstream endobj 17 0 obj << /Type /FontDescriptor /FontName /20c880+NotoSerif /FontFile2 16 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 18 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 19 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 500 500 250 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 705 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 613 500 500 535 500 538 500 500 500 500 310 500 645 577 500 500 471 451 352 634 500 500 500 564 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj 20 0 obj << /Length1 3368 /Length 2096 /Filter [/FlateDecode] >> stream xVmlS~ϵ$|$1Ό )4ΉpBbHҐ8"ƾHm_c�([,*?hҦZ?ۥjG5Ub4nXJ몖u6&Et?ɹ}qα �:n؀7O{߉qI~Npы6kT.">/ԆQO* ~u:>xsF`IFrQ-h.>qI\Hr]GpTJ>ԟD=.e /u<K�<aPsuX&>K&.4"8Vd{1ɇzG<H"i}pnZa>"/~iGZwIm;Fry74oGs" G&n A3m x Fa#Ύ-[{~zF vIgIQnm2׋ l&v:εa~ky9{TQEX=$0+ҴpB ύpS6]mnot->-x,} ټӷ1>ϒ<G;gxvp[7o',e lAM�*fr :(k'W ;S X8d3L"/Οoڑg+{0"Da/J-m%V^ g#΃pm]۸}=e4w炍;G6Dm܉<:h"u6^:wFa˫3$j۬.ru-_KjyzsmU kl.߰m<P|۶@ۆأ˹LؖNCD'Dl|dhO%2 Y0`$a;PЇ; 08ǑP:�Ř˫e4ҐtB9^h4dt' <; CSs=5+ &BaJ"V AЅNʕ^AV Kߍ<ꎙ޾d{ I\+#kHc^I%_o't_<[tv)B-PgsY(˚F+z8 *shI+r+o4˔"G U4&q_eS4̜ќ!ӓ9#K5s-\:T $VFBA+'sj>?ύz^(H'cBrpxphOJ OX\ b;+^vmJWNH)ͣeX =MepEkR(%enmRa5lx<nuҒ([-4$rvFWm5˓.גbeyeh/+ލ8~ [kQ[ݶ Dފ!84n7Q &YgטһK gߝdKgƾ~a0 )i<..=þ4#KT4W8$mۆ>,ˌX 2r`#佈yd#h? J@oUw{YQv̶>y+jO4듒&^?ڼﰺwm>l}n,~ C/L�fD !_WD] t+/gMWbLMX7j>40GN(&H[p9ba+u L"75SGc!ICεP32%`:e*Jo.qW/f]{ŒPEA:y钯?|oWXPdj0e8*PӱuXmĄDU ~QTUK4pU-;-"j^Y#B^)M(ZC*[RV%+Zb}0#WЧɊQUl: c6Svne,K\Ih%QłDUI5>L7/p{_U>I{+d,U޶T7Db\/BDn֛O%;f0{iX<{/Jp2i|@۴kl"}W>4o( endstream endobj 21 0 obj << /Type /FontDescriptor /FontName /5bb89c+mplus1mn-regular /FontFile2 20 0 R /FontBBox [0 -270 1000 1025] /Flags 4 /StemV 0 /ItalicAngle 0.0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 22 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 23 0 obj [364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 500 500 364 364 364 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj xref 0 24 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000002079 00000 n 0000002389 00000 n 0000002431 00000 n 0000002479 00000 n 0000002531 00000 n 0000002696 00000 n 0000002868 00000 n 0000002942 00000 n 0000003067 00000 n 0000003112 00000 n 0000008456 00000 n 0000008670 00000 n 0000010032 00000 n 0000010946 00000 n 0000013132 00000 n 0000013345 00000 n 0000014707 00000 n trailer << /Size 24 /Root 2 0 R /Info 1 0 R >> startxref 15621 %%EOF ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/text-formatter-fallback-font.pdf��������������������������0000664�0000000�0000000�00000012643�14163570564�0026643�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /ModDate (D:20190708041754-06'00') /CreationDate (D:20190708041754-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 12 0 R /PageLabels 14 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 842.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 142 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 796.11 Td /F2.1 10.5 Tf <21> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.1 11 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /fbfaa4+mplus-1p-regular /Subtype /TrueType /FontDescriptor 16 0 R /FirstChar 32 /LastChar 255 /Widths 18 0 R /ToUnicode 17 0 R >> endobj 12 0 obj << /Type /Outlines /Count 1 /First 13 0 R /Last 13 0 R >> endobj 13 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 12 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 14 0 obj << /Nums [0 << /P (1) >>] >> endobj 15 0 obj << /Length1 2404 /Length 1444 /Filter [/FlateDecode] >> stream xTolSU?躎M*澽}mv+sbl߃%RJ?kvAHH^Đј(?;4&10Q$F!>&]yg�TB XT2j8&g'{7}SdpLqoM؉UkR7ˈAܘI?G9b:< :*\P\�S%2|-Ļ'a=_(0rTt;؛Mf}{3\(R 6@(W�i."<\h25C*5lnk%R&C6VB@JMZcB0yǧʷCP)Y[3 M㕃םh96昷izp{5<#O:{g{z\%U1Ni)\>;,'WN7?ˤ3&8b۫\!qA>=/vrD( AL` ֬lsG/)0WL+Ea.ǿZ2JZ ";� ^y>i&h qPI66oA-?mV#vSr`!֐tZ0|F j,kTqKZ;po(tCryI"l$H-V( 1|bLS󳉼Ǡ0<Bq!~/d- q xrL9<H(BǪ5>=w Stv-m0Gyi] A{zw:hugr?1ND؂'Si^w&i;f1uu <fNbj09{ZwK#}Hշת]y Š;H_ϮXlo",+}a DKRVDfW3Au#'9� d5lkLa *z<VT;o{%a<Wz%U0<]OY8aêe~U}T)w\T$2[aU?PUg+'vxU^j G1;=:1balRNW2QMyXL$1 eM}e b.QT]%)"Fz9kec6lۥhb*tRW3cjZ4!iTtqS*=SׅzQt /1C%zH.Qe`%2*'i4)/58Pw5/MJ캷~F"xHј:'NCp$Bq'wS3HQqFv>W4w'#g%1dVfb_\iOwpI7K} endstream endobj 16 0 obj << /Type /FontDescriptor /FontName /fbfaa4+mplus-1p-regular /FontFile2 15 0 R /FontBBox [-109 -288 1403 1075] /Flags 4 /StemV 0 /ItalicAngle 0.0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 17 0 obj << /Length 228 /Filter [/FlateDecode] >> stream x]n <$i.9liC~@NЏyx?(38,72>N&Ufщq\3pxq#H>p>E[J?` X߃EWz]/aT=!Ȧ[-I$fdJ^93 %oUS, Qz^=g٨_G.H -KM>.bT_nHo endstream endobj 18 0 obj [290 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj xref 0 19 0000000000 65535 f 0000000015 00000 n 0000000262 00000 n 0000000463 00000 n 0000000520 00000 n 0000000571 00000 n 0000000843 00000 n 0000001036 00000 n 0000001333 00000 n 0000001375 00000 n 0000001423 00000 n 0000001475 00000 n 0000001647 00000 n 0000001721 00000 n 0000001846 00000 n 0000001891 00000 n 0000003425 00000 n 0000003641 00000 n 0000003944 00000 n trailer << /Size 19 /Root 2 0 R /Info 1 0 R >> startxref 5081 %%EOF ���������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/text-formatter-inline-role-bg.pdf�������������������������0000664�0000000�0000000�00000026242�14163570564�0026743�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20191222010409-07'00') /CreationDate (D:20191222010409-07'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 13 0 R /PageLabels 15 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 1197 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf <72656164732076616c75652066726f6d2074686520> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 1.0 1.0 1.0 scn 1.0 1.0 1.0 SCN 0.8118 0.1608 0.4549 scn 157.025 803.5212 m 207.74 803.5212 l 208.8446 803.5212 209.74 802.6257 209.74 801.5212 c 209.74 792.0302 l 209.74 790.9257 208.8446 790.0302 207.74 790.0302 c 157.025 790.0302 l 155.9204 790.0302 155.025 790.9257 155.025 792.0302 c 155.025 801.5212 l 155.025 802.6257 155.9204 803.5212 157.025 803.5212 c h f 1.0 1.0 1.0 scn 0.1333 0.1333 0.1333 SCN 1 w 157.025 803.5212 m 207.74 803.5212 l 208.8446 803.5212 209.74 802.6257 209.74 801.5212 c 209.74 792.0302 l 209.74 790.9257 208.8446 790.0302 207.74 790.0302 c 157.025 790.0302 l 155.9204 790.0302 155.025 790.9257 155.025 792.0302 c 155.025 801.5212 l 155.025 802.6257 155.9204 803.5212 157.025 803.5212 c h S 1.0 1.0 1.0 SCN 1 w BT 157.025 793.926 Td /F2.0 12.075 Tf <636f756e746572> Tj ET BT 155.025 793.926 Td /F2.0 12.075 Tf [<>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 209.74 793.926 Td /F1.0 10.5 Tf <207661726961626c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R /F2.0 12 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /0362ac+NotoSerif /Subtype /TrueType /FontDescriptor 17 0 R /FirstChar 32 /LastChar 255 /Widths 19 0 R /ToUnicode 18 0 R >> endobj 12 0 obj << /Type /Font /Subtype /Type1 /BaseFont /Courier /Encoding /WinAnsiEncoding >> endobj 13 0 obj << /Type /Outlines /Count 1 /First 14 0 R /Last 14 0 R >> endobj 14 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 13 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 15 0 obj << /Nums [0 << /P (1) >>] >> endobj 16 0 obj << /Length1 8728 /Length 5322 /Filter [/FlateDecode] >> stream xY p[u~WE<(ů@_��  �E+zldevI=i;Mi4f$q~ii9$d.iR4߾g={} �/Rsw3"? ;gWh=ef@Qg\G ?F>3iH)sS.L@ي04W$^p,N io.0Pݟ*� ќ�#`{}$|nׄwNEօ_?<]Wۇ}A^䏫ATZ!NK_^LP<j2 %L_jB| ME~LvnMuJ|Vq:S\ZWTq9E\31XljZGî@W6<M?bN/*VFZ[.k{HcϪqn2bi5疌X}b_qT]lWTN7|V|K*NsK6QuH2Uj gXh8v9=М{mE+u:Sk,pxi-֚[u> ?>o+tyz,YdQԘvf &Wf ~./NΫ)-3V"O|E?WJIf}5Wל`X_HKn*s Nʇ#a q-m̠os ᦦW Uj)WJu1ԡ E$DOk]%{otPW~ SwqGCgw_2o=DONp$3U{j U=t6`>**VFpź|}\r 4?k8iת<4:4k*wg5xlEyoUNiPX+Cl*,M/VҤO<J�?ø5m=귭̍%JqK&\ڬi- 2j+l-(xp6]b>xomPXf,c>T4lg UmV"!߫߹W1T`$~?Yv3-B}lOnSX։~Äqj1̻ww7w]]Nlڛ\NuzЁ֬L}21f--g.y<#>?P-@͠%#3DE^Z-[Ͱtjr:vugWvm?;yQ\P ?|4|K 󱦦ԯv\OxܚXQ8B#4%gm=d嘺k---F}5n˿[Ł.,W5}S7qW:tVn|[[f?^w y}n̸#0X8;8_0H.Z|nmn:v)[0\_ *U9K,Ղu8J٦--⎁ Щ=ȷl&ee'1r "HCM{r9}I> -^.#$u=[:JMRzusϏ o<swmS47:^=1c"F*gݷHglqm_{<4xhfཽYK3(yFq~UgU*i4d뾔C&"1񢆃V\ZlZKdgw-gkk/WYj2żv+m?0TB.4eYvU~?PrY"/y|sy ?@Q?S_A 'p{P]3wtШxNo ܛPfŗqx\X}ϷkkI~‘ɐLx <CS)nL@-y[@ē>Lq(9Rqo558VH^[Op\>^纻\x}0#1KA]dbsnfփ(<R' dqO'8u+ ɸAƕJd\ ]U%bu`'d\9䪌k`/'A6.I+dל'cOx x qPWx*2Fs2}Q#OC![8 NąjKUOФIhFhSL ѓ l,@0 3PW㗴*, d?Ӹ�(@&vDf9+Ƥ�>h$~0 a`�405EYiG>RMCӂQb�Z1K :iMm`8$T,!N&G7YA 1;b0&xDžVo);}�㈅qA}?f@,8FP 9/f8?&M85 ZSa,:oO�L<i24si2<gH$lfGM1iBgє�`b|N3O=wlj``ztCqh'zr>DL@p @(ܟP>*pwc`, Ncv,:ڝ=J`hkT8>2>0p #mp338R>zB tBT$ńpTEf4s‰"TpR}8H :щZ qs/@4Dz!<.'jœQ's}-_pl(fDm~iV0]'~|�Yfm U,7g6},Vt0JAuߩLns{ds҆\}=mlCmU;Q&BDي1Q69D7V7D_Qx[Lb$ݒ !vKyF9ˍdϱv!d}Cbü)nKh0bYS8:mcۈ\h#EibgIg?4&N2hyR4'jG?x65$"ڳI l+Bd"/bI"- we\+$`-ZwIu]'kCUJ.3FZ3P ERQ'8-I2bIL3 粋r315\ś$B]%Qg}+2~,bw$kx8"6t} od'ZGy̵f>uq J pV߱>w=k:QZDum׿ 9;g^&39SIOd|I%.S|ǴE;"ĵ\DȭK8%p]zq.)..=tmCd~ Kǻ, $ߵ3k]VUHiTrZ>`pbx;fKH?փ915R;].t+&ǕI2\ښ Go]z*Z?jƭ > Ëp 3DIVȣˣΊH:,'-Ç$v/ cWTtK]>ɏ+vr.txbX]$v4Vq m $j |?~|~HAe M9CEկUqF#Cz{:v[Gu[kKsS㾆*dSVZ[,63i)IJы+H^IQ*vw,m!:ejvM+jNݡiMhZ75Vhc{vQX!X`=`uE)P0ȟ  ̢kG{)6H6Vrr VS&#dOaniMVK>44vuX#v6fRR$53))u8',Wx~E ފT%އ}yY)B*RǙJ*վq>H(,;W|v'#@NQ\.VLV\\NM]80^+믞I=;Cvbg vK\I0C}:CgCgӚ@ tV0tf؝VsG⼴m9Ѳ+b4EIQs>1 Q+3;2F Ȫ$e){m퀙B,jA(!4hqwr& J"Q\vX}r3y1DA; d#RرOJtYm;);Yp,S#y#b8~j֯/ Zة\`cퟒ^W$MxDwCY~;b!>tS80#u 3D#9AE-B'VĎ,%uo-4;Z77T.8vYی*iٺ7vl:ǐ6 CCнė஁fDO*ŀg:sa#utY&0`@)uV:Wb}GsFԸ(d#MwL)hƈ>L1V+¢_}{X;v+qXV- G8óܯ�Vr *PK#(h+֪`�'0F`rK` CL F)}{C|3\mmpT)Y tH)bS|WQ\ArEC|?H>ˆPy0|I?*z!.d!nkkw1Ͻ4ow[ۯX} �9z]oPh;U!7lg>e#xބ_G61?b \ ݰk[k%-x)[^s_ؒwZ1ZO zEF _8~#lvK�9 | Vdt>/ބ|u>C쵏=@ \6QerTQDž* yI?rCġq׸_*eLU endstream endobj 17 0 obj << /Type /FontDescriptor /FontName /0362ac+NotoSerif /FontFile2 16 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 18 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 19 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 562 613 500 613 535 369 500 634 319 500 500 310 944 500 577 500 500 471 451 352 634 579 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 20 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000002088 00000 n 0000002398 00000 n 0000002440 00000 n 0000002488 00000 n 0000002540 00000 n 0000002705 00000 n 0000002801 00000 n 0000002875 00000 n 0000003000 00000 n 0000003045 00000 n 0000008457 00000 n 0000008671 00000 n 0000010033 00000 n trailer << /Size 20 /Root 2 0 R /Info 1 0 R >> startxref 10947 %%EOF ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/text-formatter-key.pdf������������������������������������0000664�0000000�0000000�00000053305�14163570564�0024730�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20191222010442-07'00') /CreationDate (D:20191222010442-07'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 14 0 R /PageLabels 16 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 2130 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf <507265737320> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.9608 0.9608 0.9608 scn 79.3355 804.956 m 100.3355 804.956 l 101.4401 804.956 102.3355 804.0606 102.3355 802.956 c 102.3355 792.456 l 102.3355 791.3514 101.4401 790.456 100.3355 790.456 c 79.3355 790.456 l 78.2309 790.456 77.3355 791.3514 77.3355 792.456 c 77.3355 802.956 l 77.3355 804.0606 78.2309 804.956 79.3355 804.956 c h f 0.2 0.2 0.2 scn 0.8 0.8 0.8 SCN 0.5 w 79.3355 804.956 m 100.3355 804.956 l 101.4401 804.956 102.3355 804.0606 102.3355 802.956 c 102.3355 792.456 l 102.3355 791.3514 101.4401 790.456 100.3355 790.456 c 79.3355 790.456 l 78.2309 790.456 77.3355 791.3514 77.3355 792.456 c 77.3355 802.956 l 77.3355 804.0606 78.2309 804.956 79.3355 804.956 c h S 0.2 0.2 0.2 SCN 1 w BT 79.3355 793.926 Td /F2.0 10.5 Tf <4374726c> Tj ET BT 77.3355 793.926 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 102.3355 793.926 Td /F1.1 10.5 Tf <21> Tj /F1.0 10.5 Tf <2b> Tj /F1.1 10.5 Tf <21> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 0.9608 0.9608 0.9608 scn 114.405 804.956 m 119.655 804.956 l 120.7596 804.956 121.655 804.0606 121.655 802.956 c 121.655 792.456 l 121.655 791.3514 120.7596 790.456 119.655 790.456 c 114.405 790.456 l 113.3004 790.456 112.405 791.3514 112.405 792.456 c 112.405 802.956 l 112.405 804.0606 113.3004 804.956 114.405 804.956 c h f 0.2 0.2 0.2 scn 0.8 0.8 0.8 SCN 0.5 w 114.405 804.956 m 119.655 804.956 l 120.7596 804.956 121.655 804.0606 121.655 802.956 c 121.655 792.456 l 121.655 791.3514 120.7596 790.456 119.655 790.456 c 114.405 790.456 l 113.3004 790.456 112.405 791.3514 112.405 792.456 c 112.405 802.956 l 112.405 804.0606 113.3004 804.956 114.405 804.956 c h S 0.2 0.2 0.2 SCN 1 w BT 114.405 793.926 Td /F2.0 10.5 Tf <63> Tj ET BT 112.405 793.926 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 121.655 793.926 Td /F1.0 10.5 Tf <20746f206b696c6c20746865207365727665722e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R /F2.0 12 0 R /F1.1 13 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /b13b23+NotoSerif /Subtype /TrueType /FontDescriptor 18 0 R /FirstChar 32 /LastChar 255 /Widths 20 0 R /ToUnicode 19 0 R >> endobj 12 0 obj << /Type /Font /BaseFont /04420c+mplus1mn-regular /Subtype /TrueType /FontDescriptor 22 0 R /FirstChar 32 /LastChar 255 /Widths 24 0 R /ToUnicode 23 0 R >> endobj 13 0 obj << /Type /Font /BaseFont /77bad2+NotoSerif /Subtype /TrueType /FontDescriptor 26 0 R /FirstChar 32 /LastChar 255 /Widths 28 0 R /ToUnicode 27 0 R >> endobj 14 0 obj << /Type /Outlines /Count 1 /First 15 0 R /Last 15 0 R >> endobj 15 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 14 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 16 0 obj << /Nums [0 << /P (1) >>] >> endobj 17 0 obj << /Length1 8092 /Length 4947 /Filter [/FlateDecode] >> stream xXP[ו>=I+c,@`0d$ENiI8lN'$NBn7mi6ffwΤI5Ҟ{ :}|sι> �C@X]�ȶ/�\t*}%�>ԡ~.<rl((ʨĄy0]g<QǢ$)�=[$0wQ~ 4=�1{bPKˇ(k:63{~P<u2I33 >�򰪁ϽȧUG\}՝@5rlܼ|(.qfϨ_eXE5"زf"k~巇'U!Hjr"j,BaTQxO#ɃGQL#B1@[K`[) ,KCE*),?usk<~I`mZẐ[&R"%"oCR`.=/v?=7'uՃ=9UmٞБ7*=3u_ xΌg/}C|Ou�dqgѪ&+m9%Xr;e-ʃ]7e]kH v4}T+[o#Uԫ'b1\Z-mRyWԔPdi8 F(Ud�0Sh`ȢW&=T`&lYJpfT93Ίʝ[OSMr<X&N F],X,eЀaƩrpu!Ccgaon{v*.Scɮhkxn]{Զ]MyyM_ٴΑ>A* ȆJևmSlmZ%TRvhvNӏ.sf+~WFԽcOnt^ٳ[Jj1z<c/ Z-';oo۷3d(j,ĕDURS@Y,#T܈ʧ~KVT{=;+RK]KwĄ,s\xK //&L|~MluWB)12[]RRX^[ѬOIC8j͗Zk�pͣP/WW0RUq\ݪ煚Mצ֙֍dX:l#Mm-ζL^m~b?6X{}尥#`M:x%mt_}w쨯mkK@s3/khUw{h6n.}C xVR HI(u6k׮T{ gk|ՒIw>v{l^űJ6<|kam(<UfksZ֔KW,*mŝE$b%�ZzUzΪ{!yuG|;j^yuCd-N(/:2RC.06y<:o(>+8's�$TI:. Dž"ãmR}j=z z,ނ:qx,k/xj055 9R/'0|"R<f3j+╙c& Z% 7/r;8x^ 2iv*BQ�E`>@` �$pmb N₂d)$Kp+ .NxCE<OUp =1*Ht)tħԳ, rU٠ <v x$(xυ*' ¯6*fσvqXɀx^󅯪Y <kN %둞hl1MҽM{io4:3)3횛c)ABPd(hB !aYHbI3z5PLk]slWK!|I,`&1 E-Xhfa.f`  ~$&c|`&t#h!-- ڋ`I;{ h6a248"fcdur q;b8A4C4:M#9?h;܄q(.w?ۻCLwmcdG)�@2@gÑ$?th0c4Fh#gL fa&qdz?[Hf�l2;hNy*:o %-H/&bnjF>ӌdDєZ`d|^7H.ϰ=O pF#IN'C,_SH\Cq QW "B4+ƂD2\Q Dhuiw@'tklkhcgx??<v @Nߠix>6f >W:$ MSt.Y,b|8&k%χ$g'CKB.%\BߙsrVYDNN}/_pBlS(GfmAYVr]A|�FXb;m <ς$zT 7W_.S2XǓuOq.w9}ىKqkF{z7!<)\Wv\z�><e n(^)r3ŶdIC/]g{8Ϲ\HB/υH $'[>,(>e6})1ǒ s"<gg,۶΅<J3zl3b2OtRx|K/ݸ#{ϴ|Ğ?^ٿN7]KOJ`1#lXx m%$•4W <V1vir&MtiYs5rq]#]Ā6ʹr]R!T�n:\'ǡ$9esl8M.[H˂xVj§Wȁ7P�kbI qD\&*XV {Di{hV^^;zmIuf}oV.?Uo~GW u`|kkU_=M<OO?}i={S\*qIwIhz/җ%D^~yo..._^|s9f0Y*J]mFrRQR43d5|gUAя]mn5B 3MQM9<6ψG<v_u_stG?ľޜ^ ]j-qBZ ˅ CW oQ8/MPaϖ5Y%OLլ؀5rL&5.VFʚdp=]! ߹ {瀼;}r+6V9ΕR%_$qwt7&H# S25Ϩ\X8 ''P EF-d!w>`21}.>x0]c#CG:.ۡΎ߶bnl]W[K6Vt9,Z%" r_VJ}}L6~!eVݪiC4mMۆ&vhol?Ktb]Q^?Z.`4b(SCv]rho%7G 46JN.Vs&b+dw'a�|6,8AydF_cC\ ypG&iJK`o Jq,XZzT.2]2yHnĬm3DV$ ~jt�:ޥ%DKjDuJ^Ŕ È{_?odT&/=故' CqX[f@"hd?jI䳣ތ/̆+`|g-oY~ 9.ɪ@䳓OPH:.Ea*k쵹f 벤B3 8@m6z@B3̎Cr24@>S&X9V,#<|Ez{#-G]nGK8ldXbF,F}iXWZᯬ>;3\ڃ9XX*!rz FC>D6믣kF,{\Q~L3qfF2f0=emzCEԉK9FQԋ6!SGȮ1yQ5Kuk&>g\ 6Se`e[okp@L@3b1VW I>iʶ/GD!GiYHy]`dNa3r/7ľۚכVp-1b~XN2Fr0M0gx,l,[Xr%?$\wӆX` w76׽"FWl1Qk:�ظ@oey_�6 e (1\ ,oUqS1:F`jU`uL@LlcFl9ƽA,>_.},ǡ/ԉH+D9R[Ε~2Y46<sH5PCW`;,_Qhà�Í2O?ҮW?_m|o_y} }aUw!o.gu7u[7>cN Ol`A\ }#t:@$G+z&@/:'Yd&ihm�c<+Gn3]:{at_gP W[cR{ k}pWZ ^j4h&ˎYQ8TT7V^/= ? endstream endobj 18 0 obj << /Type /FontDescriptor /FontName /b13b23+NotoSerif /FontFile2 17 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 19 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 20 0 obj [259 500 500 500 500 500 500 500 500 500 500 559 500 500 250 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 604 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 535 500 500 634 319 500 584 310 500 500 577 500 500 471 451 352 500 579 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj 21 0 obj << /Length1 3380 /Length 2078 /Filter [/FlateDecode] >> stream xV}l[W?qMqYMMRY>H:NGjyK ؠ>! 4U@kQ!>TiTЉLBB]لXν~ɢ?w9{s�ujydf91щ1L}�>Oe3G} TJתNK~YL쀧Pu:=ٽo︄Q4(GrZVl8 T�\>nMA z=o2Oنv~�;eRi{,&7C'dŇuiMpщH$vK1JL-{I7^ܻ$6"].cOOo{ n9p3>U+\?yG-gy.JMyZ65r3 -GzzʑLR>7.KnyOl/)5P9% mHk{[vK'/JMWe;e*4s q=^}ux<L #~.*`w|Ig~r| \y= egV#y7T~3 ]Dj+%ɉwA⍇t4q)Uª ȷ𶽓~mx:`a)y:@8V z%lظgr%/ٸ=/ظy^q'oNW@= Fm[H-§ȨmS =不-at#gm.M#lr޴m|۶qCOmᰑ_.)sglf]}OatPd΄'G` 2 IH ;!90>#!,3Fm99۪ ɥV@#IF9j:0On(t=~na`b..` [H7=~2#z6r+zA1]Ct ^XOO7RIr)wv ؟,^&֯:/R-b8 ;"8Q "#tr炮Ӣ0Ok=@rt6mq tQčfɂiХB\E>d4m*tLQ fcɤY#NcD  XZdqm426>+ڄF92>rp΢NGƦ"`8<x('RX"s-kӼ 6c"G,/'+?>2[W4_5qz렠{܎ą)ښ":-J> aI1C0$!iG}uV|,q-+fX֘s?YjD` Zi˷j#xFiǷގQ?;F>>a9 6r2{ cV=R[\f?CM]}K2Ilg_e/}j5%x<#h:{9޵}X%سΓ,"prCF_xe)q~ 9TK<~Wecm zl_QRoG4$¯Nkw-\o]{NnY]t>o 0iUDzezFuj eӖ˷U͓5qJ@>І'TUo,h[DX|~KR&у[%F ҆TTW~!-ՃvчkU)U,*U(u ~˥\i'pwznacT*Wv(U)Mn鷪zoPL-gDŽ3ђ^(y^SZ k5zX["M * >)j4J'ܮ[}4%Zv2'Bhq \Azۼ^]28F3gf Loۛ4:9ZD0q$xIָCمO~C pJ|3 &Q/D\.UZt&sWZ@FbsQ> ^D!|(<J(ɢ1kmmVB낃F�TO/8+ endstream endobj 22 0 obj << /Type /FontDescriptor /FontName /04420c+mplus1mn-regular /FontFile2 21 0 R /FontBBox [0 -270 1000 1025] /Flags 4 /StemV 0 /ItalicAngle 0.0 /Ascent 860 /Descent -140 /CapHeight 860 /XHeight 0 >> endobj 23 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 24 0 obj [364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 500 364 364 364 364 364 364 364 364 500 364 364 364 364 364 500 364 500 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364] endobj 25 0 obj << /Length1 6420 /Length 3620 /Filter [/FlateDecode] >> stream xX}l[u?=~eKե_إDʖL)DSIt2OF([2-tTg0y�W)Pt+4ep[ĝ{$Kto{#�#ܜH9 B" ;S3Kg_acMe'dh}�B ʖdZ`>LLQM& (?/|pu_NC9ԣیQi>ه�"UO"]\>5O"l.t's-�i�hF#8�[ "?/6: `oh7'C.!gۿ=9n j6`RhD\M̭CkkCU}p`aN118C  I=`nBKs$@1 A 7S,sBq�0#Xd|RK$\̤voUY gQaN z嚎 q7@5yL H:nZ $Ͱt3xe@Yq ||U(xx58:^ /tZ_x kc|I<-/u?x<a:8df_67O%*=y fS g&gjS J~Z;C zXS,S L[=L}lcTK :ΡA%!QPrL)├PDBe3Yu&&D*tsȐL3huŦ4K _k X2n)%_He3Y8l.p?=|x\t0"S*S5/Ǖf'7;|L)2FvEIJyq'b7lQ D98JJ2=*d*b8 N䐑-1ɭP+)aqf;[P+v3c. ^D6J( ɺxHq '<E* D j1>;Ċ̞P×ͨ4TyTjBГL\S5РLEyNd'}8Y<UP"ƈ{zC{{`;= CtXP 17<C(hPCvМ<U.೿P<MsS)�AEyt2[YI!L&StJ$rWST-J&OTYr";3,g<-"n!wĜL]6aIfSx@9#oElfYA#xlaЎ</]8ZU8e^5wpz$fil`�=x~a=|0"aD=|+}>~Aa:[A*sz&wdۘH#<!A~얘 v$sMʟ tev清itZ؉|lf㜜Am(6UcTȧrjYHM9k7(ZXsAVO᝭>,&N_<W X#!?.{ T}fo"WO#i҈Z"]Dm \a5n!HH'GaL.LFV#~\Y%ؐ n�CkBQ0ESPVjĪf\IJB{bAzbF KXD_ #Ĉ<|x4JX8 ݬ." [Y²ŀ#c 2?fgPn#{wGLo-.{Z&]K @r{?~u~>QU&M7ȩ7&ߘ~Ckkk 5:нtĮ嫂*A^%ߞyÕwWF& $š]*Y ~|Wl(Ќd|d_Rθ;~3.p9,g64^(tS)Dx8^ GBqu?1Yɓ]psWSԇ]a!|np~~^ExVџm&FH :Esy,G%-jtI# |;h-;p,67Z(TH\qe֑� Ϩg l,*Vh"C 9|l (`q0h7 c#C N}^O_otѱG?́N}{۞[[u;j,f ۽/F1ͰW`$# obCj:q5UӍ4M&nh^j?Ht`{#Eo?ۆ\؁ݎ#%QN1-TI}JuG;,T`[>)@'![Mm^9FhkuwAL}S3.Ӆ;0sƥBDe[ҷ_h_Whǫ9k`lc)flJ 1[YGLmO5}R'Q_)V˳JR΋Z,Mլ$9/ևk&hRF'$!3n@G;Чv;[E7͎F*20njBYi 1 FJ˲6;U ɪ}jK +u)Z叧f܋nQ`!%+>>{vң0d ЎvmQ }nYwӅ#(\RNkz7>D5iGi.L%[o$g1_{-(;U^^8Dm a}{H|Rk+'ifQJ%ʒMs4/ J3yH[SYhDQT"@}ؐzm,V GYZv>׵ m?*][H,LLD=j\vS}baaX@L@10҈HQ)I5HGDwiM`u9S9lsyC_%Z׀H,c$i93vlaAK?^n+\;!@ގv<z$ritM.DޱK-}Sy9*0LL`Lc(X7,5p1:F`bQ`uL@PcF%>ƳK,>MbQЌ/шt#_ V^Fe &13H3hdJt 1(o@Ih+�zqe.o"|Wv-Oy?bn?%'|S_z ӟw}5Gl^92�k_}D9>[Ї�۩>m!']dױrϴ=v6ҿ+""֑+p ::_[ÒX[?E41~ _WO 4 S/Wd`'WhF!55 /Ǎn| endstream endobj 26 0 obj << /Type /FontDescriptor /FontName /77bad2+NotoSerif /FontFile2 25 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 27 0 obj << /Length 225 /Filter [/FlateDecode] >> stream x]Mn ˙ň5B,I{�&E�"dאT–?0Cgfq[6>^<Tfщq}- Ek;^lG}}I[Jw\0R`Co:72X}/m| A4aL&m00#]sa,q�3?:3)h+~̖3EjghYj ySjzp( endstream endobj 28 0 obj [259 200 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 29 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000003021 00000 n 0000003344 00000 n 0000003386 00000 n 0000003434 00000 n 0000003486 00000 n 0000003651 00000 n 0000003823 00000 n 0000003988 00000 n 0000004062 00000 n 0000004187 00000 n 0000004232 00000 n 0000009269 00000 n 0000009483 00000 n 0000010845 00000 n 0000011759 00000 n 0000013927 00000 n 0000014140 00000 n 0000015502 00000 n 0000016416 00000 n 0000020126 00000 n 0000020340 00000 n 0000020640 00000 n trailer << /Size 29 /Root 2 0 R /Info 1 0 R >> startxref 21554 %%EOF ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/text-formatter-mark.pdf�����������������������������������0000664�0000000�0000000�00000023556�14163570564�0025077�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20191222005808-07'00') /CreationDate (D:20191222005808-07'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 12 0 R /PageLabels 14 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 498 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf <6e6f726d616c20> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 1.0 1.0 0.0 scn 87.804 789.86 46.919 16.28 re f 0.2 0.2 0.2 scn BT 88.804 793.926 Td /F1.0 10.5 Tf <686967686c69676874> Tj ET BT 87.804 793.926 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 134.723 793.926 Td /F1.0 10.5 Tf <206e6f726d616c> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /9f69d5+NotoSerif /Subtype /TrueType /FontDescriptor 16 0 R /FirstChar 32 /LastChar 255 /Widths 18 0 R /ToUnicode 17 0 R >> endobj 12 0 obj << /Type /Outlines /Count 1 /First 13 0 R /Last 13 0 R >> endobj 13 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 12 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 14 0 obj << /Nums [0 << /P (1) >>] >> endobj 15 0 obj << /Length1 8092 /Length 4820 /Filter [/FlateDecode] >> stream xY P[י K27AHMxK$۱%�% =;idyTzdNv2l&dg$馻m;73}Lgt[δM' hst!i+ιG�@#٥rI.3"? %g֏Kzq16~sy*֐>tB8zm)xzY<"MG=g<| kHc$Q# .=U)ҏbكByxr<'ېFq7hfO%i/�8� j,V(U/MN.X�sӪAbsq<hY ?W_暲Ny =/o%tMP(imW eJvRf bMhmi&-6Xǽ]Sn+x섽J ZL;9)o~R!R8=/bqᢹcz- $@&YwU5 UEEi\(XT2Fn2.Sc܎6jQ!fX]CkK UTQUUEع;+++ruUvώW<s?^}}Tp7O:d,yCHduۖ{gJ'C^voq ?p*kv,V=>}mN}IxLK^@Wk./[?AZ{)+[K#,?T(MeVnn1\WkԚq/^.tbhuVw9hoǘ:帣1LMMiMS]{:+*i>nN ط0Pmohcz`On6XPG4�ةaV#uRUe\ZPo*-5vӒ=Q'T++oöȈXu [Xw YL!<pM߻y7 B`GF~w91jM#Gt#_<qcm6AögK^84XWoofgb4?ݻ4n9ozTMZ?o?B5ϰrl} ?:+V" Ӫ+a*L#k1龞_ʾwoe/o+ڍ+?u?'\DTGGxD{{e '/zM�uf(iNBS'^wu./Z;j:6vhbGi[mw<VLj3ׄ`˜o;P&b+R]@sc/L]0< ~_%Zt'HoQu~|^DX$>Y$:2CB%tijEfS]j؅�TupH,ܭx;P^9^3/|+}Q(yǘRKiU3V]#@S JRWAl?:nd:|sW~w)nP~9Ƀ|O90 0xg/ٲ9ERYu⼌2.e\k2+<Wƕ%d\ zbqVWȸt/5PE"2䜌@,9PO~"㹠 e< U2<e\ Dž2&{2]¯np&χŨ!9/BfQ Ep_lL<2Xl~1L6ڳH'PNp}e8q<,@C/MXSFj0 6 ֬؆Q)C`%cG`$PpMS86)X4<*/#yjۤA Q. ji ͣ(Xnk2'"(m5G(z†h;4v(ja.1AC`.m+EX(; spb1Hgn78NDt2\l' %3x ,9 ]D&pΜ[BCYIjCAL\Z$)ptQM#l r~={m%|8iGEbvIюG ԟ6tF Eّ#]^8m—døD2n!{?@,`L.`zc$a/p4LEC8M.gp.Y,C4+lBD2Ia(rC=U3iӃI:31329 7:AM{Fthp@T'Nç;h"AcqYZ^÷֕Ų$ó,] FSyb9_$!W!) &9=;GYZ4p %?c srADn$߾l$1 l#"HGa-,80<wHh@fBf!&3Z%e2wz9(4&a�b<?'Az\|("QD| g�?C8x0jNS3q#\8c QW>IϙeG2o ߺLefDBr-Dt9y!%=GT7ϥl<LE[,>oupl$eqe80~dQLJ_xW?_;!~3o"=GO`1#XKXRH "bMZkdpx 9! [urabD\j.CkB*/G<ΓPV-b3bNؽA"AL( Wr*k[=H]"@7X, \a<\Ǣٍ (yRG1#=r=^˼xjQUr\%-WJoVx% ۴~x.733BCO:=ʓ<q \"/e. K)zſx.^xb梊$5RjJb]1ixuer<6-pr)8$XJK*T[)*+2q156z/{x{UcL ~sɞf[L"@o}J]tz"gUJJ9Q5bZd&$1<*U{X?*{o?{Bq vt{WˡןH$Ʉ$Hl" K=?JH X*ˉr!'OX-`- ,%,p>gb|lt~츽mMva_mMmbd 9J@/6DwJ5IY# X-n!%N8@ι8YN'6PH8EF)>}e ' 0quT"ܧҮiľ�<aO'.}]w}Ur ز Ic>h6 RCEJ>IESՆҏ`&`qܴ•N?"[:)ZDK0C[ }$T:?1 m'uC`]77vԝkj~~zم1Z˼y(KiucIB.n|h.oj ?$q_ 5p-~I6Gʼldesdkz@hy|iIY=]sAieN Q'h%y)j5PIUnY'`)i' m75%b  (ZK6qV8#E<|]\bV<Zǧ$}Yydw9ԕfFr#c8{3WW[oN&sƕ$S]9G}F YR7뮢jf$M<QAY�v Fb0= ?2n숽XK,: GYZvP7Q N;X lJS3 ~s68LqF 搢O !w*a/.P1c1:,tqx`ΔvJ"nqȓfEY tw,6eb`I:,[Xrд8J_~l"C<zWE<9{C@&/_ |oP�G2L9`*9Yq,g#0&d1&& bdX@Y!/?q(G؅VΗbW{,f3kýiK`e? FT.H^W}g珂à �kízCq'g &~koޟ{{ ux?w=?|< DtxMgs7MYwWo ӿ[X3'Q/tmtpV.L�덢6&ޓT?#m|U!4ȱev8vЯW~ vHO25x dt{e>`4~cWV^Qeo(/4jmeY_JRFĥ& uKŽT_s endstream endobj 16 0 obj << /Type /FontDescriptor /FontName /9f69d5+NotoSerif /FontFile2 15 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 17 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 18 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 562 500 500 500 500 500 538 634 319 500 500 310 944 645 577 500 500 471 500 352 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 19 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000001388 00000 n 0000001685 00000 n 0000001727 00000 n 0000001775 00000 n 0000001827 00000 n 0000001992 00000 n 0000002066 00000 n 0000002191 00000 n 0000002236 00000 n 0000007146 00000 n 0000007360 00000 n 0000008722 00000 n trailer << /Size 19 /Root 2 0 R /Info 1 0 R >> startxref 9636 %%EOF ��������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/text-formatter-width-text-alignment.pdf�������������������0000664�0000000�0000000�00000021652�14163570564�0030215�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20191223144537-07'00') /CreationDate (D:20191223144537-07'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 12 0 R /PageLabels 14 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 462 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf <7c> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN 1.0 1.0 0.0 scn 54.1095 790.86 72.0 14.28 re f 0.2 0.2 0.2 scn BT 85.1063 793.926 Td /F1.0 10.5 Tf <6869> Tj ET BT 54.1095 793.926 Td ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 126.1095 793.926 Td /F1.0 10.5 Tf <7c> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /d42fcd+NotoSerif /Subtype /TrueType /FontDescriptor 16 0 R /FirstChar 32 /LastChar 255 /Widths 18 0 R /ToUnicode 17 0 R >> endobj 12 0 obj << /Type /Outlines /Count 1 /First 13 0 R /Last 13 0 R >> endobj 13 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 12 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 14 0 obj << /Nums [0 << /P (1) >>] >> endobj 15 0 obj << /Length1 6744 /Length 3892 /Filter [/FlateDecode] >> stream xXkp[u>{$Hʐ ^QDPH !|�Y�`<$Ѯ+&*dF29SxN}vTZiiL~dXϤdW$ь\yɘD..)4?r}o~{  xc|2Cg�dc|b*Ӻ]Kb"=![6*:dq0rec"!E?Gyd|F#_Etw;}gQ9Τsy 7f"`e@6 3h`fRgQF>?O/q�g46q?*joz-5 @[Zk/:kn#[ߵ&8Tg=жC8P.kIjMH eM[Q<b؏6ɔ{'^=jsQ3QCÑVCKێn~\z0*cwq%`ˡm8*fh8²Q6j.o<j6iIhYݍtMG+jm1~v?qho݁ fdp} .kۄ^Z2˞6 ^iL$\z,,GhdoS%K=jdzɤ$Z86˭_ F>@jZ@('Je3Bq'q <ȯdp)1n |gc j(qQpf_*�xql; |_` O)LĪ"\fҩZ0A#I*::pK :zC~`v n�L#7)ἂWBcVnz^vՀo >% |Ko ^ [u ^ u_Ngx"OG{Dq;휘l(G=+E id! qH@C/XS4 {L`;2+% [ b{:~)A?Ps$Ćxa"P@dM <'SqBW< )4VmiqKaMc͖J\2{a9Z=aG|6&#i:VJrD;Yx4'sOwId<EGcfxX(نGP+D24QKQ:6EWHe<ڑ#l nEFa W#Ǝ|'ܹs8w}<=Kyv#BpHȟvtF(KPNc1N'י?X73SyO"YDr\JГTT|B~oHr_Y>ʽvxh2& #mSvufz;;':;Gn?.w%QL$y|h:K$K�$=VKwHXrNDRB$HdmJ*L#y.glTd#V혓 yǀ$ lQNˈ[Q~YV%H<5}kyܥgDz(oC}er>..3q{#ЋVer'ޟX7;ū}�Q_և#LqKhU;Y.Gdq|2/nvJ_)(&&9>g]\vp '/#SU?nGB8V) ܆bS2Q]rd&t66r s'e8IF'5^LMPY~;|XӡP~(]&RĄZ"MlD- \f5n 0OHR@. %b,"Y$"l'YZ@=j&j*ԩ:e51 V5+]&zԨ!:tEKkhGQ$|{X8 kiEE+2lYgC,jP-hF槰J hCv{5=CyGwG*>Q~*5O[Ϧ?7*<oNj^ox]xv fN_UW·WW+$|<R"8rf]U_1{wliVdakп!tOZ[6tRx+NKw < CZQUr˦ FkTTU*:u9:8:,4#Cmm涺@- jA@FXBU.[DC7F6o^WɺdrQn9tR^!p!_23]}>Po(v3ryHLve䖑- Q?_(ΑӹӨ Xª ecl6ocA[A9P00wq::3<aoiΦbl5To4TuZZ^lv0weNb* ,;Y#0Wk5[,k:W4C{K3uTKP3.1DxYWVA愋$Lݲlo-vKf3Tb{.13Gvuv UMHT ]5앫EnN)keIf:\swa,lȩܢ],*ݢK/̸sIn]nX}+-IdMQŏF <XDDdX׃-="|izLF8WUU̸0Yۗ,結l 'eMCeCDh=lֆu4 tje41`YfMp:l!Y;#u62<2=,b4}`QV7y}|)"Oa>}B4՟Xbqc-}FTD0Sؔ ՟,ڍi[t 3ЖfVyv%FVΈ1DI3IZ'3˝el!<̒n[,~HNc$Z(QCton?M쇐o.1!l⩌Ѡ*;CHR%%zs=4ʭ/N+FɽF Z4IOEBE#ԃkYפbpuW; 6!nɥ1y ^w2k姥Ya,3,�C&5CfU%1$& 1(Q:FZ,tXqxY`Δ=6j=\^{ {iQ/EF.*{e`<\k74Ss:YE-`;eˋl#fDrqhI.O6Ћ#]8|89*0LL`L(蹾m'4Us12F`|^(ceL@L]ƜcFɜ@]Q?%q،?"#vA[%DK~ʸ: 4X4ŏ-g&~-x ['q0e•zɴ~�{{>~^{C>W "F|-g�o\/_<aN&$__M+0CzaqiбtDf9ZS!8=^_5pߓbqid:ҿ?yEخ [}J&|tރ~>` "k_×e 'L^kiiu.̂w(Ea=aBiL_/6DŽ endstream endobj 16 0 obj << /Type /FontDescriptor /FontName /d42fcd+NotoSerif /FontFile2 15 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 17 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 18 0 obj [500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 634 319 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 559 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 19 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000001352 00000 n 0000001649 00000 n 0000001691 00000 n 0000001739 00000 n 0000001791 00000 n 0000001956 00000 n 0000002030 00000 n 0000002155 00000 n 0000002200 00000 n 0000006182 00000 n 0000006396 00000 n 0000007758 00000 n trailer << /Size 19 /Root 2 0 R /Info 1 0 R >> startxref 8672 %%EOF ��������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/thematic-break-line-style-dashed.pdf����������������������0000664�0000000�0000000�00000022630�14163570564�0027343�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20200103003232-07'00') /CreationDate (D:20200103003232-07'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 12 0 R /PageLabels 14 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 356 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf <6265666f7265> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.5 w 0.6275 0.6275 0.6275 SCN [2.0 2.0] 0.0 d 48.24 772.11 m 547.04 772.11 l S Q 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 742.146 Td /F1.0 10.5 Tf <6166746572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /4d9883+NotoSerif /Subtype /TrueType /FontDescriptor 16 0 R /FirstChar 32 /LastChar 255 /Widths 18 0 R /ToUnicode 17 0 R >> endobj 12 0 obj << /Type /Outlines /Count 1 /First 13 0 R /Last 13 0 R >> endobj 13 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 12 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 14 0 obj << /Nums [0 << /P (1) >>] >> endobj 15 0 obj << /Length1 7424 /Length 4492 /Filter [/FlateDecode] >> stream xY P[ו>c6`bD cc̟lKI֏͚l6G7$d۴fw6!mltv2̴nY۳ݝmԞMО{uvtt~sν �h� 01hu9�8537K.l_P]NU\Fӳ{?R(2k=� &Ƀ(bSDهr M$[č;"Yiߣ| w+҅s�zť؟/췠lC{<ه>+MO�4NLd_ly@`s`(0@ô%$uP1ӚMUbӤy*DJo?fzZ>\XIYӎa/)Tm,J+[;BiqIjBXiZw#-y;z_qzm}cgǬڕ_bsHy/l%V-;",ڇں[[˪F_ȼpT64oohk B{0ꡓ[(0[jS  2Sq6Gԡb4kzسҞ=e\Yҋ{ J=mn Kk]3xf0trݻuޠPĿoihA"wtx&k_6S̋/v}kf3;+gԢݕb~od6n# 3Ⲅ}foUtΫ?x.gyT=s޿{cuQ]Á"FRqscn,޴U[ݾV̇PU,i-̕hB[JM,M1`^qGު 暺=w%C}G( GKV"Jx\pڌyP"S\Y"fQO~ um fq\xOjoOhkKuuגsd3OʫqFv5)dOM^]{9bz&͗-$'^)5+߯oݚ ̎U;v*CRim*>/Ut];c=UJѬ#+z}:!mAƴ^pX2J`%:GK�iR�_BNB98zPLݹ�FVVsPN#:x=<瘴r3Z8;5OkU c|֨A}znAJ&k@Z-| L6{b8 =aAn#kkbQQ( 9''\o\3񂂫`*h\ yd\E5PN:\ zW9PIŠN8A):BsD(T\.T*xX G{<<:O֞F/vՀo 3 A ^[rfsGcsthhAѩ#93CYWK )~R YQ! S0 I |iĚB7F %7D`,Ddk\.!IC`&#ÓЏ<I,<\# Tj&æ AFɹ< Gh=]r�"i4æ/5G\%R<Fha'r48',菝͡ݻv5 d<f4:f s$;q8X7Wwo7:!%S:"go3B<RfdN#ILest4%M"9Ȗ8ͭHfSvQǙmdG2kXXzw[{-Y디!Q+Ͽ$Rbǂ$7iAgDʊVe(Xב* d*~-O …`Lcz$D'w˗I'Siz}t &E}Y:z#+-dp"0F5ZnO%=u{g;Bvw:0L{%^wJa4'N{=?8 f,<նhv%4 OЙ`d*UĤl8{%φ$'x\4)d-Z0'MO6N6f>rF,RmͲjzp}0rsM uPhX$?tѪb_3J<\=|{MLbv>Qy:N<?GٍO[_0vs~baZNKg|G&qYDWw7;D?ʯ})& >f\gB?|2;cYՈ$F?;N򱑵sr!ؔ=GTWϥD<K&,%n96PZ3xg~>D'EGhQgnu]rЍ7 )a-c&D6"c5.dDH!2D!+eRL[&ˤc g݂P*š" K P'<$\ \#1XHb9p ru5ȣƻQ] A2a<o]ǚ@T/aQ [չ5X̛^f2B4+ .e>t{2.D{C5窌8_)؞-p )zSdɧN>'OƞR_Gן/'yvDϓ -c /\ZY0Yx7Xjj )ޱ)cQgZ4)yvv2o(Y%!d RpQ,cX65mjl5_:RFm}E%5fp3vlm2x˚JŤȫo*  . .]+RE@џ/#D_ͽK9^9gLNUVۆ2x-sk[r6֘dž~btD/80E U$aN@3'SK2`EP &2dyːL̦K3r9>gxhp@_~wOwuumӶ{WΖn{Mu՝bX^R/*ܐj*bSt\bOO= u@@wHuL\ެiC[4mYMۚ&vhN9DD }!omu56`2,vPSvN;[ϳv)򱙏-y[$;o۝m6ieU3|Nd׹B)e]4L3t%=!1<UAV9Gb\+:{Q+:͌wxmSYSi3<GWoF B.ҁtp)3?.R^,(HǜaᨥwdYL6e.MC}PADO42:_ tdb ?dq!_VfY~YV{Jg~gmx@hz|iY]N<?tB˅Lbzc1ms]VCa*k-8j�6$BGx#-" q΀=9]N1gC?{ށ [Ps# Q'[Ř\"vœ {||2L.PFVLi[o$1Oc{!ߛДL w02;`3 Mƀ!r &G ,)ћ4N#^;tȷK1:U[hD!K)t'T~T#@]ڱstXj>|Njr-uJE7jX{VٴLD{7e:21б�v@L@13R(~qʶA[s %#7I뜅nv ̙lX\kb-n։4#B@2t*6e b`I/l,[XrдEkis^6F%#]uxu-ТG|"];&qT`(@Qq}Û6yޫ�'cUĒ:8.R4z' :2~LرHm'J]r} ߗŵ e޴)~V^?NЯy6CJ潛%@*ZRr?n6G=2|aEw#==?7UWL?/+BlsW:VpV&ؑV*ǽ+:bOcOzi֋1F _~qEخ ׿|J3 K : (*~>`AiKV~ ~JD[~!q`#"<DJ8՗WVxYXʜȌkC�| endstream endobj 16 0 obj << /Type /FontDescriptor /FontName /4d9883+NotoSerif /FontFile2 15 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 17 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 18 0 obj [500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 562 613 500 500 535 369 500 500 500 500 500 500 500 500 577 500 500 471 500 352 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 19 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000001246 00000 n 0000001543 00000 n 0000001585 00000 n 0000001633 00000 n 0000001685 00000 n 0000001850 00000 n 0000001924 00000 n 0000002049 00000 n 0000002094 00000 n 0000006676 00000 n 0000006890 00000 n 0000008252 00000 n trailer << /Size 19 /Root 2 0 R /Info 1 0 R >> startxref 9166 %%EOF ��������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/thematic-break-line-style-double.pdf����������������������0000664�0000000�0000000�00000022647�14163570564�0027375�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20200103003207-07'00') /CreationDate (D:20200103003207-07'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 12 0 R /PageLabels 14 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 371 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf <6265666f7265> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 1 w 0.6275 0.6275 0.6275 SCN 48.24 773.11 m 547.04 773.11 l S 48.24 771.11 m 547.04 771.11 l S Q 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 48.24 742.146 Td /F1.0 10.5 Tf <6166746572> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /4d9883+NotoSerif /Subtype /TrueType /FontDescriptor 16 0 R /FirstChar 32 /LastChar 255 /Widths 18 0 R /ToUnicode 17 0 R >> endobj 12 0 obj << /Type /Outlines /Count 1 /First 13 0 R /Last 13 0 R >> endobj 13 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 12 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 14 0 obj << /Nums [0 << /P (1) >>] >> endobj 15 0 obj << /Length1 7424 /Length 4492 /Filter [/FlateDecode] >> stream xY P[ו>c6`bD cc̟lKI֏͚l6G7$d۴fw6!mltv2̴nY۳ݝmԞMО{uvtt~sν �h� 01hu9�8537K.l_P]NU\Fӳ{?R(2k=� &Ƀ(bSDهr M$[č;"Yiߣ| w+҅s�zť؟/췠lC{<ه>+MO�4NLd_ly@`s`(0@ô%$uP1ӚMUbӤy*DJo?fzZ>\XIYӎa/)Tm,J+[;BiqIjBXiZw#-y;z_qzm}cgǬڕ_bsHy/l%V-;",ڇں[[˪F_ȼpT64oohk B{0ꡓ[(0[jS  2Sq6Gԡb4kzسҞ=e\Yҋ{ J=mn Kk]3xf0trݻuޠPĿoihA"wtx&k_6S̋/v}kf3;+gԢݕb~od6n# 3Ⲅ}foUtΫ?x.gyT=s޿{cuQ]Á"FRqscn,޴U[ݾV̇PU,i-̕hB[JM,M1`^qGު 暺=w%C}G( GKV"Jx\pڌyP"S\Y"fQO~ um fq\xOjoOhkKuuגsd3OʫqFv5)dOM^]{9bz&͗-$'^)5+߯oݚ ̎U;v*CRim*>/Ut];c=UJѬ#+z}:!mAƴ^pX2J`%:GK�iR�_BNB98zPLݹ�FVVsPN#:x=<瘴r3Z8;5OkU c|֨A}znAJ&k@Z-| L6{b8 =aAn#kkbQQ( 9''\o\3񂂫`*h\ yd\E5PN:\ zW9PIŠN8A):BsD(T\.T*xX G{<<:O֞F/vՀo 3 A ^[rfsGcsthhAѩ#93CYWK )~R YQ! S0 I |iĚB7F %7D`,Ddk\.!IC`&#ÓЏ<I,<\# Tj&æ AFɹ< Gh=]r�"i4æ/5G\%R<Fha'r48',菝͡ݻv5 d<f4:f s$;q8X7Wwo7:!%S:"go3B<RfdN#ILest4%M"9Ȗ8ͭHfSvQǙmdG2kXXzw[{-Y디!Q+Ͽ$Rbǂ$7iAgDʊVe(Xב* d*~-O …`Lcz$D'w˗I'Siz}t &E}Y:z#+-dp"0F5ZnO%=u{g;Bvw:0L{%^wJa4'N{=?8 f,<նhv%4 OЙ`d*UĤl8{%φ$'x\4)d-Z0'MO6N6f>rF,RmͲjzp}0rsM uPhX$?tѪb_3J<\=|{MLbv>Qy:N<?GٍO[_0vs~baZNKg|G&qYDWw7;D?ʯ})& >f\gB?|2;cYՈ$F?;N򱑵sr!ؔ=GTWϥD<K&,%n96PZ3xg~>D'EGhQgnu]rЍ7 )a-c&D6"c5.dDH!2D!+eRL[&ˤc g݂P*š" K P'<$\ \#1XHb9p ru5ȣƻQ] A2a<o]ǚ@T/aQ [չ5X̛^f2B4+ .e>t{2.D{C5窌8_)؞-p )zSdɧN>'OƞR_Gן/'yvDϓ -c /\ZY0Yx7Xjj )ޱ)cQgZ4)yvv2o(Y%!d RpQ,cX65mjl5_:RFm}E%5fp3vlm2x˚JŤȫo*  . .]+RE@џ/#D_ͽK9^9gLNUVۆ2x-sk[r6֘dž~btD/80E U$aN@3'SK2`EP &2dyːL̦K3r9>gxhp@_~wOwuumӶ{WΖn{Mu՝bX^R/*ܐj*bSt\bOO= u@@wHuL\ެiC[4mYMۚ&vhN9DD }!omu56`2,vPSvN;[ϳv)򱙏-y[$;o۝m6ieU3|Nd׹B)e]4L3t%=!1<UAV9Gb\+:{Q+:͌wxmSYSi3<GWoF B.ҁtp)3?.R^,(HǜaᨥwdYL6e.MC}PADO42:_ tdb ?dq!_VfY~YV{Jg~gmx@hz|iY]N<?tB˅Lbzc1ms]VCa*k-8j�6$BGx#-" q΀=9]N1gC?{ށ [Ps# Q'[Ř\"vœ {||2L.PFVLi[o$1Oc{!ߛДL w02;`3 Mƀ!r &G ,)ћ4N#^;tȷK1:U[hD!K)t'T~T#@]ڱstXj>|Njr-uJE7jX{VٴLD{7e:21б�v@L@13R(~qʶA[s %#7I뜅nv ̙lX\kb-n։4#B@2t*6e b`I/l,[XrдEkis^6F%#]uxu-ТG|"];&qT`(@Qq}Û6yޫ�'cUĒ:8.R4z' :2~LرHm'J]r} ߗŵ e޴)~V^?NЯy6CJ潛%@*ZRr?n6G=2|aEw#==?7UWL?/+BlsW:VpV&ؑV*ǽ+:bOcOzi֋1F _~qEخ ׿|J3 K : (*~>`AiKV~ ~JD[~!q`#"<DJ8՗WVxYXʜȌkC�| endstream endobj 16 0 obj << /Type /FontDescriptor /FontName /4d9883+NotoSerif /FontFile2 15 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 17 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 18 0 obj [500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 562 613 500 500 535 369 500 500 500 500 500 500 500 500 577 500 500 471 500 352 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 19 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000001261 00000 n 0000001558 00000 n 0000001600 00000 n 0000001648 00000 n 0000001700 00000 n 0000001865 00000 n 0000001939 00000 n 0000002064 00000 n 0000002109 00000 n 0000006691 00000 n 0000006905 00000 n 0000008267 00000 n trailer << /Size 19 /Root 2 0 R /Info 1 0 R >> startxref 9181 %%EOF �����������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/title-page-background-color.pdf���������������������������0000664�0000000�0000000�00000021472�14163570564�0026441�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Dark and Stormy) /Author (Author Name) /Creator (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) /Producer (Author Name) /ModDate (D:20190706193800-06'00') /CreationDate (D:20190706193800-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 12 0 R /Outlines 14 0 R /PageLabels 16 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 842.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 2 /Kids [7 0 R 10 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 413 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn 0.0 0.0 595.28 841.89 re f 0.0 0.0 0.0 scn 0.9373 0.9373 0.9373 scn /DeviceRGB CS 0.9373 0.9373 0.9373 SCN BT 327.449 361.6965 Td /F1.0 27 Tf <4461726b20616e642053746f726d79> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.8588 0.8588 0.8588 scn 0.8588 0.8588 0.8588 SCN BT 463.6323 327.2249 Td /F1.0 13 Tf [<41> 20.0195 <7574686f72204e616d65>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 8 0 R >> >> >> endobj 8 0 obj << /Type /Font /BaseFont /184e9f+NotoSerif /Subtype /TrueType /FontDescriptor 18 0 R /FirstChar 32 /LastChar 255 /Widths 20 0 R /ToUnicode 19 0 R >> endobj 9 0 obj << /Length 149 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf <626f6479> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 10 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 9 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 8 0 R >> >> >> endobj 11 0 obj [10 0 R /XYZ 0 841.89 null] endobj 12 0 obj << /Type /Names /Dests 13 0 R >> endobj 13 0 obj << /Names [(__anchor-top) 11 0 R] >> endobj 14 0 obj << /Type /Outlines /Count 1 /First 15 0 R /Last 15 0 R >> endobj 15 0 obj << /Title <feff004400610072006b00200061006e0064002000530074006f0072006d0079> /Parent 14 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 16 0 obj << /Nums [0 << /P (i) >> 1 << /P (1) >>] >> endobj 17 0 obj << /Length1 4964 /Length 3043 /Filter [/FlateDecode] >> stream xXkP>ww%�@< X$  @2 l`a�dÒ6I[Mb'ړ븍f'tp;m&d3iI#&qIf<Yj`_hww=;9.@�@@d" }< @2g秞w686fsqL?߻#ZxW:m?{#PNf}lw`X$s)T? ޘ;�M҅ڻ U%E(;~ȝP�R/R$%A )�!Cx}>$[SK5vk&VŦVl&֐]r&3jPițRh׫ 6ON=ڕ_ɧJI[`^Ɩ{<uhojpN]i99(%ؕ6UNJ5$<Md̷^8s LNm>;y9ԥq#/rXju{S=B*H<>ݼߏ/֋(UjjI%d![UPJ]ڂw?P�2'wZE2׎ x͊o\HނCk*VVѧDm.ZUR"$U |;购4N86?Q{iցܪm l#柞SԻ:wUO[o vߎ>c۲դqzu^s4u2SʌgKT9JN:-^"Au6>"b5d`jmkbwcYJY%[2\4ZNJvl8#etGc^f_|VyŶгɓ2n=#y UP<NvK~*L*h;F�fz _XgmN: X9SIutNj44p:|Kc)!Lzg2a_=ϞϜD >9[w!7ި6-"Z &$E*MTHʓTrO$&VU%Ii<Weiǜ?8ln[r}q{B߷ a#|鏱.uJe$B\32yki[Ԅ/[ݟB.ٶkP킇*팴ڇj2k|兞ckۏ?@ֵ/y%Biq~Qs] q`z+&jE]*+ձy84b+s`Mȳ{\۝j~dz"Bgz9�W(,xn<b.Lc@2Qd!#-^uI&.�uԋDilo.av4 +y-1nI)n" Wx:+_pb'y etgr8@iV뺊c e@^ԹR9R Z~1Z{kr5򖥀 c{Դ7[myˀKd87|OrQ})i/݃=w s{;kmdWpKF:!l_⒒,ۢxF7|o Wg:;w6U7 w5e> Gq!m:ѳsuusggcG?AmΠ R9aEj( ulyMj rUs)6,uuƢ$fyozfʐy;fÍԯ$sRYU-n|J[.Rm`.T9TŦUTuEZt'Z]y(I޺-I:$MMhmUhߌ~´q޶\�S-DGc"pvEɻQ]`t$8ZJMB N>Ö}m䌥SXgI9\p"BF'Lx▞1 :˅uL/7o8Pu w@)WKe)K~HQTHS &'Lp ~z⡙e^1}[gUzZטvG<9Ax8y*9:>Hˤ2[7%I|٪%~C�!g)Sw$*|> zكP#)$߀&<<'Yx\ו|ydYȀ9|e?m9ʟ%I:q߁)r*EB1Q{oR~rsww3ԃty _y>о*=ƿYKƗxigQl%p/ GD q dSxzAiX 8usI\g@E4".tbq IK!c $*A9.IM.x/D<TԢd(E\fO0JXS@M}$)PGqKoej!PGo40E< F?+iq#?VZ**pxzǶ&Ll,w^_4yB�qLc%Vf #> >lB&O wiVLhC[: p<)|0F`7=7 Ӧa z!NBӬ]f-K:)Ӧ^,|}?/ Clbc:bŻcQ Jbç9WljyAt zx; z3lxj\/ ba\5!mǭӛ|tUf7 s(Vs! NJ-&yv2M8).8fx nqc,{v2<M9bF"aPqČ+&qSS?ߐhyϞ=`: oG3oڎ!6ޱ:P  Mlc" = 4YL&E'u 4?/KVYȭ5\S8:mM;Zݛ6y]ՄU]=H6a՘'skv}C$ kٮW & L endstream endobj 18 0 obj << /Type /FontDescriptor /FontName /184e9f+NotoSerif /FontFile2 17 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 19 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 20 0 obj [259 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 705 1000 1000 727 1000 1000 1000 1000 1000 1000 1000 1000 1000 763 1000 1000 1000 1000 543 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 562 613 1000 613 535 1000 1000 634 1000 1000 584 1000 944 645 577 1000 1000 471 1000 352 634 1000 1000 1000 564 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] endobj xref 0 21 0000000000 65535 f 0000000015 00000 n 0000000248 00000 n 0000000450 00000 n 0000000514 00000 n 0000000565 00000 n 0000000837 00000 n 0000001301 00000 n 0000001597 00000 n 0000001761 00000 n 0000001961 00000 n 0000002258 00000 n 0000002302 00000 n 0000002351 00000 n 0000002404 00000 n 0000002478 00000 n 0000002631 00000 n 0000002691 00000 n 0000005824 00000 n 0000006038 00000 n 0000007400 00000 n trailer << /Size 21 /Root 2 0 R /Info 1 0 R >> startxref 8520 %%EOF ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/title-page-background-image-size-position.pdf�������������0000664�0000000�0000000�00000100122�14163570564�0031205�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Document Title) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20191113002109-07'00') /CreationDate (D:20191113002109-07'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 14 0 R /Outlines 16 0 R /PageLabels 18 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 2 /Kids [7 0 R 12 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 213 >> stream q q 204.0 0.0 0.0 240.0 0.0 0.0 cm /I1 Do Q /DeviceRGB cs 0.6 0.6 0.6 scn /DeviceRGB CS 0.6 0.6 0.6 SCN BT 350.129 361.6965 Td /F1.0 27 Tf <446f63756d656e74205469746c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /XObject << /I1 8 0 R >> /Font << /F1.0 10 0 R >> >> >> endobj 8 0 obj << /Type /XObject /Subtype /Image /Height 240 /Width 204 /BitsPerComponent 8 /ColorSpace /DeviceRGB /SMask 9 0 R /Length 19044 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 3 /BitsPerComponent 8 /Columns 204 >>] >> stream x e7U]}LLfr$rp�ASdA%x*ʺDPs<!#r $${&sOU9jjzyh:5u~>2)2)2)2)2)2)2)2)2)2)2)2)2)2)2)2)2zc}/]R|RVJӦeiBd$Z&A6NX[ i"˕ƥL/HQ\mýD$P ð, U7)Urx mjd R ' Ӵ@/Gd_ᕪz˚p~>'06Fiw4 <SX5~nc>\&" J+3[�k䩂)Yl6Xmۄ3X?TF9|@ `P( 3Xf3T*�<G=Qp6%aer$dp8F#0H0ӧ/g)elLJlT™8E"PZ+ Ɛ@N>8 3@*'>3g`0�`2s>p�CE]zyO4@aԀ\DeUf@VzS Ip@ ,@BU\&Ȁ/*{8\Ee\04FXY-2%TFxl6$ d2�8Vyc!6 rW Ni8 (KBeCQN@탬 �R�pLa2iߏ7ΥAiՕ`z�C@cj&ڀLU+#lo) XEHQ~�d96U?j/<[ ,a1=[U8ֲXxC ӕր>48AV[TKRqSU_2*蠎}6`ĵXjjJJ-5d? 1~Iʱ F"h Rʼt_*v9dvIFyM4 LGөDJEQZ-kdw򇩀Ȁl!J)=Bq@Jcy pVZKfY͂lv)^Ё @)-T3-k{@uꢹ\Q$gdǯFY#1 2 :#A\Qz#?1`/b sG\W.\1 RCWp-OqJ{{}&T _dBte@#pH'+^L�M&ScJԂYL6&ys<�k3C7sb|YN{? I+'on7p{Vr0+kjO׾ǁr4CC]{olڻwW34-[z�f xZ;vʫc/Y.&5'˗~\PX<^0A\.F:&/)Sp|HF.&E9s ݭ[lҗ+::첏RKxs4>ASN |߹䒏oOE$d}}pΜ9~P_bSN]ri]2FҠmԩM ,x뭷+#5.K,wSO=e@ B7) fV}}Cºx?ᏯlΜXg�vE{ 5ahI'.pk߸b6;;g}~uJ2z߅r(w|ZW‹iYrRP(mxo=Iv.N^:644N>c}uם{}[1:;;+_`(o5k…Ο�v{w7{饍ӧb_%7VRҲyqW H$ >i֝˯z[Yz݂Cꯏx 5 ChiӦz9nڴrѢE/*jE[.Lc ^z &Pg`0}|r}}Jvٲ� AkX`X]CC}"%|k}-ӥV0\Z2%A=,>d7; l9iӦ6446�hV>j֬Yw7{N+�롇e ei ^i^?�"/FAH hmme3Huww$a;*VX -[ *d˖v}sxoN%L2]{mo<9xэF25bZ+( [T�¼O?yw �|zC먐V۾}3H޽[cNl#f>k.H4&?@<�N0~{{耍wqrB* t4d0(; :qM0o~3\l,ZW>Rώ?kFf̘>l}ݏAly W6d ,}�ه>AشeoWV n*.]:2}rzĪ3EXaC]!ƀ8ygl^{-�\vITJq{Ц}IqGhf[)HV"ٝ9iGZ~#~xwGdFxDY/V^yURt$ol\u7Œ 8;֞ntMmxn~Y'{c>׸4#L𚥶A_H$z�gVog!H1dqC,[kj wڥ3˖-?'qw#ZY#%ʕ7ky]O30�'Nu\8Xcdi&Ki vߒ8x{J<ʜ߯v�O>dؔio?ȥ~bDP MO'�2;54`nJsf>WW<_ҠiMl;b̊ܬ6q!:XGvεQS5҅yk|UsYh-&5]hZa }RW�^ =BTPk_kZg?dvm淮߶}ln2D"GN\`$/�"Lj.@&aAAcǠG]*O.Z&9ז.49e$@VҶb<"rzkV.p@MRJ9 b9leHuљS{.մ�BA}grń$_�8 < r䔕l.μk?!:7< 2.<>xNl A>=*XrDOsHݞHw2T󘃊>0kY]R"HR̛*_1L (%hJI)e F2Ɇǻ|kj\LAzYlXmey4�]󁢐]�0$pb`Y�/2f20zs[ƘPP{?^F$ 2o"fh,�,JؘY S,Rәhj񨈘 .dkڰ P_c_r� `ei]XPjfȰiaXutM;obSs L[ c "��pR:a&0KaZw7"{*)Q1N2&9t _Lm,0a~rX בvƸN.2ȼkô;S{ JS@i8sN!)ͶVz2ִELASNɔzcgapP( fxrLwfB}ڎ{XPlA6JG24jE{. ^`Y>ٽnSdCTF#0i &mѝw ?LPD #@ Mo8AE-C`Jk[C̙d]|IHAfs/ȽEN8aaa긃>㉮?Ȃ`4mhh:iʔ)Di!K?g(rjd`IrJġk?\LtFec\ꃁ ӗeYַ^xftJCPf02#IQZ91kuK3gd`+E"a1;By%ZhsCh[(b.xCǞ^~S[|1~|joOٲ;Ւ5;d8 i(a=u\*/!P{ !{"Rt:F#8_ kdyL0{lTF]U9Ri GD @xXD ,PÀ1+di4 J9L:_jx9sv*.Іq#3<G?w6�2�XOOwggg<4V@oܷ{ ͜P Ci2uԍl*b2zi0|*ω1q1[練W:@}C,+عq xLZ,VY( Ң@~9N L8Eu 7Ms Im%:]Viɠ 8LrHj㵒o63c@Gf( 0-qmXN[<C9ˮH8cNA!�-[{S.p 07{Z*] `^q:sӷ]-~hT1M OvEq�Md ÷`\. ɌY-C7^Z]66$&2adxq"AZDR9~21m^u̝,L[b{|%tgg;5{|'>e?Af: Otdf�M6YQ45u9@ EJtѸ< {Mh~h{Ù~_@&gL vttn4_aW� �8V~͘!U=Sd_`.0ZZ` e'ӏbϑ@e2  ɼAN9Gsm d5XjO<cQ$01u c't;PZL2T𞴢ؑYgkj?+?Zc2Vdқe޼97<W7�dd pi+WRD[.` Ne{ʴKzH~anZ0 /ühO}͚cz\8"ـS͞={�J*Y:?iBgNor`; QdA?|Q^xY L>)K뮹 hf 2`m ;i I]>~C؀_V>zYd�~?+x7cMzE pC]-k^‹\ 0:w(/w֫Dj d!]}[n. {!b̿'jxfl9eѢEw_^(Y :Pj d&kINm>?{zp ]ḵ¼ّP  DˬY3e4L|\ 39".Y駟䎇\n Bd Zt3 oɟg~ ?Viv7Dj?\TUgkh,O󽏼 cg~~S~,ǹ|v#*g&bNo}W\egh M ]3$e<X 6cyi(o^^fdlA& pr,ߛdR͞g2/VƟ5aҭCU <gXێ;TLfj`⩧8}J歜O9=C(ͯNl?rg c0|+0RF3=8zAlْW_w8c"X]<Yh+ͲrknnyQeQm3Wu9rͿ^n]Nfd6@|J1E)q ,X=tņ o[UEjp˗شdSTΪD̡G rbqa3%SArǖpU5>O<ܛ빬Pfo\T 4mi`_ב2 >Xʄ0OKG}tI OeVx!lYU^OJ5o'ƖԩS.]<9T3(XaӢEoVH)x?y|yk?olDd̃gd`Fz<a;EM}u&p{hSW_1xLń9*QV1|pόfʅ g2/E@Pr!OK _GX9Կ?oW?IbellLٳgg2N{7d*mR9+/_Ÿ-uR-4ŏÿ0diHZ Pa^1CdyG|)d "̆[nit?;)D@BrS=%7ycV,~eyh-e!;uX !(DI9PL"co]57R0 ,)!]֫TRFQج6 c{XdEp8L#G3A mU,Ƙ`hѿ{E%-oiyn#_Sl`6lݺ p4 7dԊzT~IU' nDwo+X]jٲ7|huGr $q5}[ OxkVy(AkkQGk׮GQ0 3# Ktf+Fz_W͏>c ]x$;w섩A6{yn=enQ_ԷKrmy_6mj ` ENR(zA揍i4C <);/3<;G0 R Уwp,> dɒ%Hvuuw̘1=U40FG7Ut%〰H$s@ϝ;`5vEI^$(vn 3:ݻb~ qJg'zGww7m+d̬J P9lbu)S^}DO?}*XE aXK?~(yNsZ {䑿 7@RKK \2Pu,Z*ߠJ峢;i5rէ~a##ayܮ[ONz O3gjdym۶͉hg'C_H%LUd윻śx�6owΜX@$"}⏭+k�Fp`x{}y_ße#�^@pznukL&|1 $z^ZbxD'~J xT@9sPVcc̙`cXVXxzh {C*VjVL OQ`˯7OoS/XSsΧ1o}ONA/+FclgbX2X,L)ͣ1T9“>v̯BaWkGϗ^zy3x搀-{zzyg[4;Ğ<LN5 %sTG$缥e ŗ_AK.^v-o V>>{cmڴ ne9#p`qB2{Lp@]£omnݺ a#*H_4/]qy6-s �p�2SФ`[l%_!,TȨdcc`|itz=m`/}J/1AIғN:@O$p<``ЩB{w#n6 =ܰF/U2x!]iFH׻(F\kZV}WN6#!={w O`kkW> އ=XeGW]G6o{Ն!SNٰIQss eV]]fw: kٯژ] 7ily[qꩧ`^qO؜1sd={;DvX`RUL KV07Xj۶y}cTZ:@y`gMgg'W:[xJzRELitj_ь{w򒸠I/%<hud \͒9 wvv$76{/Rwpx޷`RORbŊB6K$z.µFsVCKhfe/(> aRft2VeT DoXbmi U akl򂘌OU8zU2nJ0a-5k455^, /d3.&^]ƛP +tA` 8uJ7.2)bɈdA)ooii 68҄>vȧzdQV?577o^ϭe}F$EJSdkI:$&}3pyzꊟ]ʬY3UnTnW05L֧Wƅʚ5JfY66D/npeX9YYred|=Fa;T,3Y'/gϝ;;ACYl1`Ced:̧3Ȭbu0*4es)#q-Ovҹc.]66 lj-گ|'3 (x"Ƙl^^c7}ݿ'4~p6l#x@_a0iҳ1(ZOc0 軽V`nȰ khh eYcR߂sLo>s!/ éKvH$vj47,WÆ!K`2dQ2JzT&%Jx{ͩ#2ko/˔)Vro˲H P&7n3fJ^C6ޥmq)2&$ ( H&D2JΚq ϭ c@W *%?W^CN �t:O^1A1(ȦNEL&3kI)a]]`s�{86=Ѥ5؎x<v/ iO'e Ǝ= wR#Xq,^eHG1coe]]h 0xD8M(tj)M<W*LOO0:L38e{t~_vZݛߪmH8d!x548EȀɛF@]/Pz4N^,kRL;fDGxy{[32κB#+:ɮ]O�tS TL.Ha O9@li immyf^4»j ;>Acgr? û}N(^ṚxRX9(,=7�x<6w={_}աC%J7&+Gj|Ҙ(MS"`H#hECY>mg(wdΝrr9~;'f۔D6lx3/O6Ͷ-00♼t߳<Y{onuuu|=+S1~ 㻗 Lx #( Yq$׬C;PI*p-9<A.!~? pC?i0G̅[�,Ӕ/Xt挰) \nx)ݐX#ujye /$}nḿ &ڹ ?={vOx$ӲJ<ԃHA9G4?Nk@[mY'b*`2Ƥ\V:aupDDB2hPH uU b̒9Ke3"|YVobd}y睋 8I|& gzlL"hj8MJx-3=LoySv#LLB&uǎjj!&?IiKfPSKhK/=͛w{~RŦ_[YC&M6# FFseј5sΪp`LlD`%:I=M{6S<+-e,kI|I`/æ>uNgGOҏ=$~O oo{&40$Fu%aI#gcM$<+-@-Hߣ{"i帢ʁcnt F8W-i/c_ǵox0gƟl2=w]Y1˖`GNsYFPYv[ŶeK�`]Dyw-Ѹ.C=_xnȞ.*q2d2v4uR0 U?|e4Um4*dVNZ`f֬&t%gE6m/:Vg%*,czީ:\z@C5oW?ޮXnJ*@֘RZ>$%E+CG,?:TK-c7Oo)J$)9[»-K-Ce5r#*\a`~{uttuu%ͷ9>l[^ǘ9$&EKAз#MZ8*h`H i U&}같Fi/#g5ۛnOCmdGؘYT@碔6E�cKSYNf 4ː2%H(?V N3B,kz\�LTaAKbL_W g:[J5˳B @axޜ%bQK|']֬9[o==sN ]5Zļ")|s164ʥݣ Ef#Gڹivgg [¶Ѓh8ӆ SpZϐAñ49xνh^pW}m 8O~| C1<&~&{02r譜Z2WQVug᫗<y4J= h*aMW&(2SLe* 2eȔ &FSb2In/U< / X\pWFc]28m&Gi8[ָ^4Zt.Ϊ#1!I Eb\_3?+@PLpX*VˆpH >  ,`"lr_2z x ,ue]}8!A<!ArEISP]]0CML A c;+'J97ƚR!� A ,$MzB( !-#`NV?>4/Si'�X]pҠw{Yr+VuUX<1(~YdGDJnj`o|p]~sycM")"%Ak1J)zwJyaQ?&+v�&|'�+$XE#1ÉbQVNn�~C0,.<E;mocY[@9Nd˸b+ g Ż]x\^ճBf ։򓧆n<~5uz0X�~ǯ)Wȵ�/%@X� T\ *)wY7K`r9nKhj4'un@ zꉲz!,H+�I}j}mo2<WeJٶ&0f`yMdFm߫kw7Qw\W/ C[4q.Tsz7&`T[w*p:Yfx~ S '-GG"?  XCJ;bz_?~5b+"wS2ciHdL�,CΛ}SnnPQZkCf ӎ9{SNrs@6(p)k SNVהNng<刟 3F8>XF።{rmmƭ~ lo8"jisCҪycLwv}qeq 9L##ȯBRIhm>V,fCHq6 4ZTI!}9"̒^]3DOҚ3CΘ1U{?ڵoֈ>δrЯVKDC0T�B pP�\~B@hؠм6a-#QcK/d&tBsClZ /e4"Q0ۆGmv 'mݺuR fȳs*+uѱfn8"`;10J`�3#z.f|9$I@)x}+XYShHN= p9f,์.Ȱ9#໕LDJu`%@ GHQ7"@,n@рFu `WtRʵ^uyohjk>#f<te 8)6y"+8:3sC@]8"짭;xg+{P\6R・;ZÎY@X;x7 `N?Qt9~ᐗ3r!3~yh8d\W]HdRaD:)Et8 DŧipAmٲYLmeފ,l ?3ߐCa�S8 cGePzm/"M|5 rT[V / `iCf^z; 2Ψ#ӧϞQf=ςe̩(/7Y5Mb lΘX[dZ~ E5gSƬ'y#e'096͞tuTEg�*"ܯr{oϱ Ƀ3GlSnf2>#ơ a#/BN2k+B6uMFvE,D̕/<L[ U9Fv!˯WPb-w.y-y',HKH7D5Ga4+ LTB.'- 7dƽ ЮʂqRah`#g,>w84vUq{;L6XX;sMAt],PBS{k%QnEsrwH#n#J!~b~k2)AnD�Pؘ5#uS%POms-]p3up#4K i6sJ _?z'>y[K;uM.j_wS]c �sUy&ek"UBiM3?n|"BhER9AaJ7U$\G2C i(5kVb#-J.b/쓛6m?æRG9)&ّTRPu^<GjǙCPoխC|J3d,f46.WE(&UjN`FY0"pe׿ P1Yss>voca'ܔL  _J@`bzXDALJ7R:xTFCW[QQЙF�7[58@ ӟްv1<a~۷&^U([\[[ʬНvPF+vW#a8s(lFi�ShW2Ρ\WWwg>Sk_a{Mgq[o&UǤ?/s@/^]GȁˆH[jmLF9AiZRuҲ?9{Qܳ~y2Y<g>5PL4N^\S J(V;9g,BE4Kל p kL.`i#ymGJPar]w}% wnsRtK+;5hbWŠ\×mY8D^08HJz5C ,8I7RT::hQS{864:|땦ԽjZЄgiys(,b* �O QrYEk`U Bnڛ1.:qѰc($##<3t&K./'>5X (Twjd $LYT@N6P*?GY';dLF2v^Y"&lTX A!cEa>,8qf@CBvsú*im۶?4h{4iN X*WÍ ,P\E.q te[Y  &TtZSv:8Si]VdsvbŁNT"(̵�3RXP,ֺv1EGqcmb8]8ed-*ZR 'MchE؂iC TNdNBY�%%?Ł ;aDNsѻ)x# /#aqPlXXOOW利vF#_b\n6 Ɉ+^vʅơآRpF&"J^);w+T0`LZ% 9ǹa$ցhOWjEr+8Y*l Pr _\j.2W8k+ 8U R,qq xB,.XdrB oEvQe$n�YI�J pK! ل- ^Ru=Ԁjq!Blk<Pٖ-[¿2u+̴<R/Š:]c[h# q%69帓68+t=lN`crJx.2ٟSn;͍JƔϜRNSjd8ڕIgggYOcƗ.xpQ8|R缤�Z}%sz+B͈ڐ-҆hFbꆅ+a=QRs@/)ape4yh*$[s Diu ~,ӟ/Zڃ[I'Ï馛'< zѮ^( /ܡJEY0gu4\P3TWBu!n Kډb;P\-Gq8 ]mI #(ҰCey�9UHu"g3HSq"E-!f7]?kŊ'x 'jyH$xos{5퇐)1{bL߶[tǕt{WQ GYXH92ʬD"cF.yٍ#lO.֝$<@ĕbѳ$܀bE@WB{h)iw:6 /lUW]p1,_XtK,M/tXF|drxkX׸:Qz qhb(ƙmJ*vA8HA>̢#,CQ{4rYҟa l2lTڗn,P qR 2V43ߘ]it{8HrHƹ?#҉WƒOSڜꔅs;HO`3fDX,7DQ+ c :CNA;1R{O*V-fJIFcD]  <-\&% 9z^ZA À, fYzFsq<Ùag9Cl(8{|8iM qoAZqu(r-isPso>ڳ)R(uHH:@!O#ؑZpgqU&lq$~Ae%r#b*AK05$Hl Ԥ--K-rb) d<lBe�Oq_n@i;CrkmLrJJvGsĀ]S"j*kJO[GI]o2Kr4c:RoL0JdAL}4U$cU0|OaTLdS fB"Db)ڕ(�Lp�|ەc?jȜ5ݭХ@i( W|GǤו.R[T!1 1МP;kg9H10T(9E#xBpɌ3_hwn*~g"T(NEm-K:s4R Eπ47#襃Nk*/ !_C4Wpbԍ>JrJ,f8 NNKmyپ�mOJŀ"xٔ KKq>oՍP}gSbV36̵ plP{,5%73B ğ&:7*ҤBqK5y!!nE�^-ݴ?΂Ӝ|n9U" vA\Ûghppo,搽pbdPQjFW < 4iTߗQ JxKSA)lRA)2:P-j 8[V<\% JPlSo7cМ2N^EG뢺j@) 9NQeEP%`7 BEUc XHĴ&amͰӌuܰ>pRK,C$x))vgB0A]&myխeoU\?zhxmiH t:i<�ӛFVOu~jye;S m25R^#Xj¢b|rxjsI[|vR1;=fN �^fVK,`JLT“Sn�6X29pHdm60q XgM NU*aQЛF%$w"U60IKhzl ꈰzx,[Fzƽf.^m%1D_ Igú7SV8&xuxM�&<6Y2`˜vcZ9"3oX<M>~n^Ho9L[WiT%%_] (y숮yN :XdrqSI'L gi*F䑥W\vQk �aX-Hѣ:SbsjWw!Ud9$`2%oO~򯫴UѐXPU]X0ZS39tTsS%{+8+AE EQՕ|ל-F3h�eJdI]ktw�қ΀ T)&Bᶐ9j794X)iԉ=IՓ у=+);⎧�vyUn!䔨 S󘺐 )x*b.!͝s'؎siO!{HZ"eNu1B k?&2*D+Gҹ:Ob3p !tjF/WpCJ7fk{x9"Ma]IW!3)qMZ:JсwG/f5H@8t4j#zê8Ci'c4n E* ԼX &\ĕF4l kmmNk UPSL^q~ps5'9V9rnHd7+%Ð`e2'1Y_ hpm>x<p2FH�eez9Cɩ9~mE 2>S/ߙrs̊ p hWE] >.c kRAFFI9)HceFtW5 Hpn8d0 H3BP@)t␬2M =okL`_TCe9A "i`ԃDaq&՝.M1p9L$Ӫ-ڼEɇ#yઃ4#bxU|$<}dUN-d\y~$CLEV'[a><%tgF҈dQYu C48j8 Ҙ{ b̛[:}77STvt _p2cQ2N;*M><F4OW)6piPl�n5zu%su uT%W/X\+c e 8;+9³K!"xUe]a,=ڠ #A0{9,Hi eBp7Kvyr٩AM Vm'nHQ"#@hy3r Y &C*|\kL9q<kM5d܀DH$En;өZ&XITjBR—K{x |rJXեf<9g-<E'l׍3TQ ΂ |e(P=o5z|u |+M۰m(i9+&eR&eR&eR&eR&eR&eR&eR&eR&eR&eR&%hx endstream endobj 9 0 obj << /Type /XObject /Subtype /Image /Height 240 /Width 204 /BitsPerComponent 8 /ColorSpace /DeviceGray /Decode [0 1] /Length 2902 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 1 /BitsPerComponent 8 /Columns 204 >>] >> stream x{P<rD*!yd4`Fkb)ZGmR(֦&4Q`'iLڤƷBѩ޽wϞs~]o_yYō7nܸqƍ7l:8jd~];Z[O]bz ș7ᗛ'8zC 'fS~oʛ:]R/1KWO|]>bb6Lggh^EL�<¯ڇy]ZT'ڡ|EOdBfk")"/Ͷ xq/n#.ᮎEB\-�ͬcmF]橛$`G񨑱n,�n2*�dP%i/`�/ih]?P#5cH̑LiӦdHEͲZ,&#u3}ǀp(g9"3!*�߯Hwl V2Ѵc XFC&&h&&h?LL}H1j2c y2a bGfOc3P2یGm,@1W�b`Y յdQ("Xf|@ɸŸ%;Q%s:'iDsgƀFc!oF͛{pbnRPަC_-iί u a~$Aqj81#:8Wjی\5g4L'pbQKw;#}3pbک+816d,ipbXw6\�&8Dlj8Gˤ3NB[S3@6[l N d7&ܥb({z281Ţ\E'&|yi['0n>-m j.UYSXY?ȯord|1%HLh}5˟4Ĉ&mVp&ٛ<3e_pWv9C/=C);C�/J�Zd%cݎ_`쉳Vyv م xA܈\2u9!(v5�\'&^sX֞~ۉvY_&3}O+ 6[dg͙bU%WbO{o` WpHny1fI %ۙ ϝ#w^Y103xy0N=DR<Z�iO*�ۋRfJ(7y@L| ކz+5ekM]sJ<dJQ #_)1"Cc@)\ 95cM]d+mȄ>Iќ*ngQd-'W[@K6V&2^LQD(�\3xhYwD47\$�Bi]D+谹4E>/OPh KfH6*%%!K@y3; .&8[H)�@YA쁱?]c&VJg3U@VoL�JLrj$�1{,bJ/-&)z(�ŬGY7,{;H,A=SLd"�̕!R gc% >1eģp0 gFs05 [&�t1mPg:WJFOU2m]zCjg2|qӈa'jA4J[=Xؼ=+&ii1fΎƌQWnRNev g!p g>\b6![M;�gy!&|i:3dF*cȚbƿ? o3Sig|Z^)eb}Gi.X榇'9=΢0jD'9Eݯ1EH�0!;Y tC? Og|(:  kGjI,^P�<ܨcAj�3LW=B)F$#Yޑ�;/C0k5J1_0wY)*Xpv_z�gM.Kp~s_CBoF'1/CD#$~T}I +b-?ă}>mQr129[I�C#`k652v/'1fqw=*DaïWɦ5Yj+Ŕ o<+& ]sM?W8 K&~h Q>_\1Z7,"`h\q;aLtԯbxek\T8;̎5ca1۟1ymvvu#ALKI/p 3ݱPپмZۓZ pY]_=X#67=V1d~F{}yɭFˈ҂ģo~|%o5ӛңTRu{'>Q@` £ěp?'/3A?Fa%$C[jXB'"hs9JgeOL},-ΌwJxy|ܬTxVX[*Y/ɹY$c6<G314O}/홯 KqU~dz%oE$ukUq#M]ly^[7]:m!/}RTp!|p1䧏);#7/,0 ?{BO�%﫛%e˭|4Af$Fh9pOŷpZFݹwnX62 rߗZ77nܸq/?oh"S endstream endobj 10 0 obj << /Type /Font /BaseFont /0e53bd+NotoSerif /Subtype /TrueType /FontDescriptor 20 0 R /FirstChar 32 /LastChar 255 /Widths 22 0 R /ToUnicode 21 0 R >> endobj 11 0 obj << /Length 155 >> stream q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F1.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 12 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 11 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 10 0 R >> >> >> endobj 13 0 obj [12 0 R /XYZ 0 841.89 null] endobj 14 0 obj << /Type /Names /Dests 15 0 R >> endobj 15 0 obj << /Names [(__anchor-top) 13 0 R] >> endobj 16 0 obj << /Type /Outlines /Count 1 /First 17 0 R /Last 17 0 R >> endobj 17 0 obj << /Title <feff0044006f00630075006d0065006e00740020005400690074006c0065> /Parent 16 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 18 0 obj << /Nums [0 << /P (i) >> 1 << /P (1) >>] >> endobj 19 0 obj << /Length1 7908 /Length 4717 /Filter [/FlateDecode] >> stream xY}pSו?߶l`,0`lK`l#ےlc,# -VbKB fPl)%viegv8i%fvg:lavw%ML&֞{߽{ι�@T O)Y+y䌎 RlPIawŔ�"ʱȁNE+?EvlZ@a@Px<E،Շ_ضZ]@8 +.ҍ~q;ҿHY<B4@M yj�Y G'|s}jxFGM; l1�ұ}׳pXJ*ѓ�+)9%i@#|Zu Og#9[!_7|7@ zF+dQ_WS,e2R.$9$U^sb@gh*./~su^; \}y>:ZPYQ_2~c"UO,ğ^D[(l&y bqE\}֠(#»b&Mksi*OB*RSVW(1ddӵ/vSqVTfPӪE#ӗ]VSi3<rMGLwiֶnk^Y1K[[-Gէ6kol))wKuc@L3)V'QYa"BtBqM4N~$0so_oJ;vmݔ|ӊۯ{U;]]~_;'cUjV7cXL�cpy/2a+ssusoCׯ__[>z-|C:xL*XgdV2ubSV@(04s?y+qL&\k/ywefDK(N@{W'6_'ܢK-2oWVޔ]~d;_X^ӿٴcEdۮAnpM%56OWi6QR5o߲ذ@|oE穼d'<&]T;4.GϯlmXqdx>++ж,j'*f�UHỲpr.h]UBa>s+υ^ll|%:nhcX)|_e"μLט-!Lk2fڐ_(qe=$}vGz:=Ez!/zLuP{VbZ+&,%APsk`wucqlfB]EsK YS>?sM̳;m%/UnFWwl-~z)G"V2F CwSx.CTq);`p àK:TI"baJ鹗Rw|C/wW@?ӌQa'&5C;TU5ků`|$* ([,L:ې<-8(3ފ{>P|FYu'ر  z?}Џ;�=`Zs%= 2Nл'e\2.@&q2*JH%e\ Zq:WA>iq5hSn'A1<I`&Ge<%Ow2xx e<pkT-4(~-i,|p*TTx:4*zd<t)x=od< e<jj |cZ]YUMq/h8g]a {CA�pBQ/UXRh�E0 l 2u¨0X{Q~,=`D F@�r8F6 (  r0&OG}QZAIَ\A:nEy~,)T{]_mɠ7P9F cCfSq9\/L4r{Ѓ404FP}vA/ z7= Ft랸h3 %�Rn0#n:G0M^:HzB#(Ԁ2(Mq[]Fa5{YbG$n"`CF{ Á 7bDCFр[ ŸtF�E"QV�"ĸpd G]!?$Ng` G-0y| {a Ș:ўgg(_de[|C#n?-nN[1mmu΁�=iў~mFJ[\N>4'D\8L!XؼJG񙄃a߈oQEDp=8 _h`7gi}00( PKS5`Nɋ]˗--$2zi?ߌXMb×5˪1k5 @ۖH(G^B?2#|B"}qn^j+؆m fcT;֌nn; BqkAGtv7npb݅=Uq8u�=+2m yL <XlE~a%sN??|2; DD²<r'\؎E?} b܆I٦fQMK/ ¾qC 4jnk\X̃4pDZf~mD'YެO -ouBgC&"Z$z3„@rAU, c%>KHޘ]19{ɚ#ii$:Ql@>$$ LtI<i"9S0#ȑEKK* WrX+ybZ+,m, d Ȱ%|oYQrrAunU Rgc^wLIuVs5 UESzg`:n=<zy!SdȩpRs2xr2 89!4^:A\'ȭA {z/W;~㷎ǎ-<E&s" o_+JRƊhƫd6vHjk G!{݃onM]f+,a-´#/Z9hTl/ٯoUEG{jQi;Q'5:<{6ɲkjALֵ,aK֥[Y�W(1Sˈ̒flee]I.)wDH%6VvJ#wrih]%UkK`SЬYp8) E $\x x3G&'ɞd,raD q9ǐ12.>-cP,L>`޾kkgGbnkm1minjܰicJ|5%b}Q6[V)rhuQiKR;:*-p/\!%R8]iBΑ8MqN'Fh(J4ts`{,:oomNd j3SEZ\f7&yS+a&5 iؒ։0#@rS+)J,n簘uzSͼ ڸHI&%qLtbY =ǽ!)86DOKeRhJ.gEE*cRt}HH?qˈD ZEjԐH5bt&==ׁfcoIg5FZ1sv9$J܈QQv&xz tTg?:k!$>G <eNIp<;J, w.#*)K:=}|-M a>=B!jOuz1M7UTk-8j�6$D*XC7(ɱ,Њr,\flr,3Fva|f>(%غOfgs!0I&kX%-fZ,i$0?(v}ס&v}jifaDȥ^29QStx,)ћ4=N]6ocltSX#:tq1RrI2u:5P+6F,d|5nm<hTJ-^%BU,:ԌD9m:S*즲bБR஁b8ϼJWtcT2:ܘ{xDdgqXB-r ؝ 3%knsvN/wuw&i4YEpQhy,Mu|`#Zݘ&3<c3&4*vzȹqyTwʁ.5ZQ_H͘N�zdq^ B9S�G2LR?ɜ_ `*9aq,9& )㘉c(叡qP#αrGHDlF3DPKUJ[[⸚Id(?XO+gZȃnX _.QPp vvPk#_$'o=Ix*~=?_xR Ngs M=!k>e g0bI&07^ho"ak[&)nQ:{Li?oVҺ;i=Av{ПQx6HB^r2\RzxT8TVHVky $u-"$#fbQ^SRGll_lH{ܽ endstream endobj 20 0 obj << /Type /FontDescriptor /FontName /0e53bd+NotoSerif /FontFile2 19 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 21 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 22 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 727 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 612 500 500 500 500 500 500 500 500 500 500 500 500 500 500 492 500 535 500 500 500 319 500 500 310 944 645 577 500 500 500 500 352 634 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 23 0000000000 65535 f 0000000015 00000 n 0000000264 00000 n 0000000466 00000 n 0000000530 00000 n 0000000581 00000 n 0000000853 00000 n 0000001117 00000 n 0000001439 00000 n 0000020747 00000 n 0000023914 00000 n 0000024079 00000 n 0000024286 00000 n 0000024585 00000 n 0000024629 00000 n 0000024678 00000 n 0000024731 00000 n 0000024805 00000 n 0000024954 00000 n 0000025014 00000 n 0000029821 00000 n 0000030035 00000 n 0000031397 00000 n trailer << /Size 23 /Root 2 0 R /Info 1 0 R >> startxref 32311 %%EOF ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/title-page-background-image-svg-with-cover.pdf������������0000664�0000000�0000000�00000046715�14163570564�0031276�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (The Amazing) /Author (Author Name) /Creator (Asciidoctor PDF 1.5.0.dev, based on Prawn 2.2.2) /Producer (Author Name) /ModDate (D:20200209153502-07'00') /CreationDate (D:20200209153502-07'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 18 0 R /Outlines 20 0 R /PageLabels 22 0 R /PageMode /UseOutlines /OpenAction [6 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 3 /Kids [6 0 R 11 0 R 16 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 612.0 792.0] /CropBox [0 0 612.0 792.0] /BleedBox [0 0 612.0 792.0] /TrimBox [0 0 612.0 792.0] /ArtBox [0 0 612.0 792.0] /Contents [8 0 R 9 0 R] /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << >> >> >> endobj 7 0 obj << /Type /Pages /Count 1 /Kids [6 0 R] >> endobj 8 0 obj << /Length 75 >> stream q /DeviceRGB cs 0.0 0.0 1.0 scn 0.0 0.0 612.0 792.0 re f 0.0 0.0 0.0 scn Q endstream endobj 9 0 obj << /Length 83 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d Q endstream endobj 10 0 obj << /Length 3030 >> stream q q 0.0 222.5183 m 595.28 222.5183 l 595.28 619.3717 l 0.0 619.3717 l h W n /DeviceRGB cs 0.0 0.0 0.0 scn 0.99213 0.00000 0.00000 0.99213 0.00000 4.87239 cm 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 cm q q /Tr1 gs 1.0 0.0 0.0 scn 2 j 85.526 490.2517 m -18.564 488.5339 65.423 473.6417 60.506 454.8647 c 28.105 448.7009 -0.377 491.6847 20.186 518.5137 c 32.657 541.8737 74.294 545.1957 84.732 518.3684 c 88.7642 509.6346 89.3759 499.1624 85.5267 490.2514 c h 74.527 497.5018 m 97.205 522.7128 25.591 536.1728 45.489 506.1441 c 54.1799 500.3056 65.925 503.5822 74.527 497.5018 c h 176.857 499.1948 m 150.142 491.9517 134.406 459.0868 152.318 436.2788 c 142.5712 424.6218 131.745 443.6536 135.605 452.8588 c 128.4438 469.4768 87.914 436.1208 100.62 457.6439 c 124.749 466.1973 119.881 490.7539 117.72 509.0609 c 130.532 512.0882 132.491 477.5719 150.381 493.2179 c 157.9413 498.204 168.028 507.6609 176.857 499.1951 c h 217.535 446.7088 m 190.667 472.1358 184.589 399.5508 215.2168 421.9728 c 224.4021 425.8932 236.0188 448.0478 217.535 446.7088 c h 243.17 444.3138 m 247.4122 416.5908 212.786 397.0658 189.8 410.7398 c 164.874 419.2402 172.449 465.3918 200.492 459.6958 c 214.137 446.7458 246.131 469.7088 217.454 474.2628 c 202.016 476.666 201.532 497.5998 219.889 489.3778 c 237.866 484.1433 253.085 462.5288 243.17 444.3138 c h 375.56 408.0288 m 373.1829 395.7928 367.7727 360.7848 353.251 373.7328 c 358.873 392.7268 376.566 436.2828 340.827 432.8508 c 320.634 427.7023 327.784 380.3948 306.175 389.8048 c 307.3168 408.5868 333.858 438.4078 301.7164 446.1998 c 270.1634 451.1284 280.3174 413.8578 266.2544 399.1558 c 251.0944 410.0358 267.4307 440.0048 274.8059 454.2818 c 302.2759 463.9269 383.4859 444.9194 375.5559 408.0308 c h 401.443 361.9708 m 409.0532 349.6378 373.869 293.9018 375.381 320.6068 c 384.5938 344.4928 396.992 399.3688 407.617 419.4818 c 430.869 426.354 465.117 416.3192 466.453 388.1708 c 469.3728 362.3268 443.909 332.6738 416.892 343.3158 c 409.104 346.4104 402.344 353.3608 401.443 361.9698 c h 450.43 375.0528 m 468.114 399.0528 419.592 422.9728 408.697 396.9568 c 398.034 382.7858 406.7464 362.4388 422.381 356.4088 c 437.27 348.8389 447.885 361.7161 450.43 375.0508 c h 503.076 430.5548 m 515.779 415.4468 498.8311 332.5558 477.038 340.0578 c 481.8008 371.3168 496.503 399.7008 503.076 430.5548 c h 584.185 337.4418 m 480.095 335.7239 564.082 320.8318 559.165 302.0548 c 526.764 295.891 498.282 338.8748 518.845 365.7038 c 531.316 389.0638 572.953 392.3858 583.391 365.5585 c 587.4232 356.8247 588.0349 346.3525 584.1857 337.4415 c h 573.186 344.6919 m 595.864 369.9029 524.25 383.3629 544.148 353.3342 c 552.8389 347.4957 564.584 350.7723 573.186 344.6919 c h f Q Q Q /DeviceRGB cs 0.6 0.6 0.6 scn /DeviceRGB CS 0.6 0.6 0.6 SCN BT 377.912 361.6965 Td /F2.0 27 Tf <54686520416d617a696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0941 0.0941 0.0941 scn 0.0941 0.0941 0.0941 SCN BT 463.6323 327.2249 Td /F2.0 13 Tf [<41> 20.0195 <7574686f72204e616d65>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 11 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 10 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 14 0 R >> /ExtGState << /Tr1 12 0 R >> /XObject << >> >> >> endobj 12 0 obj << /Type /ExtGState /CA 1 /ca 0.25 >> endobj 13 0 obj << /Length 3030 >> stream q q 0.0 222.5183 m 595.28 222.5183 l 595.28 619.3717 l 0.0 619.3717 l h W n /DeviceRGB cs 0.0 0.0 0.0 scn 0.99213 0.00000 0.00000 0.99213 0.00000 4.87239 cm 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 cm q q /Tr1 gs 1.0 0.0 0.0 scn 2 j 85.526 490.2517 m -18.564 488.5339 65.423 473.6417 60.506 454.8647 c 28.105 448.7009 -0.377 491.6847 20.186 518.5137 c 32.657 541.8737 74.294 545.1957 84.732 518.3684 c 88.7642 509.6346 89.3759 499.1624 85.5267 490.2514 c h 74.527 497.5018 m 97.205 522.7128 25.591 536.1728 45.489 506.1441 c 54.1799 500.3056 65.925 503.5822 74.527 497.5018 c h 176.857 499.1948 m 150.142 491.9517 134.406 459.0868 152.318 436.2788 c 142.5712 424.6218 131.745 443.6536 135.605 452.8588 c 128.4438 469.4768 87.914 436.1208 100.62 457.6439 c 124.749 466.1973 119.881 490.7539 117.72 509.0609 c 130.532 512.0882 132.491 477.5719 150.381 493.2179 c 157.9413 498.204 168.028 507.6609 176.857 499.1951 c h 217.535 446.7088 m 190.667 472.1358 184.589 399.5508 215.2168 421.9728 c 224.4021 425.8932 236.0188 448.0478 217.535 446.7088 c h 243.17 444.3138 m 247.4122 416.5908 212.786 397.0658 189.8 410.7398 c 164.874 419.2402 172.449 465.3918 200.492 459.6958 c 214.137 446.7458 246.131 469.7088 217.454 474.2628 c 202.016 476.666 201.532 497.5998 219.889 489.3778 c 237.866 484.1433 253.085 462.5288 243.17 444.3138 c h 375.56 408.0288 m 373.1829 395.7928 367.7727 360.7848 353.251 373.7328 c 358.873 392.7268 376.566 436.2828 340.827 432.8508 c 320.634 427.7023 327.784 380.3948 306.175 389.8048 c 307.3168 408.5868 333.858 438.4078 301.7164 446.1998 c 270.1634 451.1284 280.3174 413.8578 266.2544 399.1558 c 251.0944 410.0358 267.4307 440.0048 274.8059 454.2818 c 302.2759 463.9269 383.4859 444.9194 375.5559 408.0308 c h 401.443 361.9708 m 409.0532 349.6378 373.869 293.9018 375.381 320.6068 c 384.5938 344.4928 396.992 399.3688 407.617 419.4818 c 430.869 426.354 465.117 416.3192 466.453 388.1708 c 469.3728 362.3268 443.909 332.6738 416.892 343.3158 c 409.104 346.4104 402.344 353.3608 401.443 361.9698 c h 450.43 375.0528 m 468.114 399.0528 419.592 422.9728 408.697 396.9568 c 398.034 382.7858 406.7464 362.4388 422.381 356.4088 c 437.27 348.8389 447.885 361.7161 450.43 375.0508 c h 503.076 430.5548 m 515.779 415.4468 498.8311 332.5558 477.038 340.0578 c 481.8008 371.3168 496.503 399.7008 503.076 430.5548 c h 584.185 337.4418 m 480.095 335.7239 564.082 320.8318 559.165 302.0548 c 526.764 295.891 498.282 338.8748 518.845 365.7038 c 531.316 389.0638 572.953 392.3858 583.391 365.5585 c 587.4232 356.8247 588.0349 346.3525 584.1857 337.4415 c h 573.186 344.6919 m 595.864 369.9029 524.25 383.3629 544.148 353.3342 c 552.8389 347.4957 564.584 350.7723 573.186 344.6919 c h f Q Q Q /DeviceRGB cs 0.6 0.6 0.6 scn /DeviceRGB CS 0.6 0.6 0.6 SCN BT 377.912 361.6965 Td /F2.0 27 Tf <54686520416d617a696e67> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0941 0.0941 0.0941 scn 0.0941 0.0941 0.0941 SCN BT 463.6323 327.2249 Td /F2.0 13 Tf [<41> 20.0195 <7574686f72204e616d65>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 14 0 obj << /Type /Font /BaseFont /dbee4c+NotoSerif /Subtype /TrueType /FontDescriptor 24 0 R /FirstChar 32 /LastChar 255 /Widths 26 0 R /ToUnicode 25 0 R >> endobj 15 0 obj << /Length 2279 >> stream q q 0.0021 0.0 m 595.2779 0.0 l 595.2779 841.89 l 0.0021 841.89 l h W n /DeviceRGB cs 0.0 0.0 0.0 scn 2.83465 0.00000 0.00000 2.83465 -0.00389 -1544.57051 cm 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 cm q q 0.70711 0.70711 -0.70711 0.70711 599.20931 246.58236 cm q /Tr1 gs 0.26458 w q 2 j -108.3979 644.58 m -108.3979 680.696 l -97.2609 680.696 l -92.3991 680.696 -88.4388 679.1085 -85.3799 675.9335 c -82.3041 672.7585 -80.7662 668.5912 -80.7662 663.4315 c -80.7662 661.8192 l -80.7662 656.6598 -82.3041 652.4925 -85.3799 649.3172 c -88.4391 646.1587 -92.4328 644.5795 -97.3609 644.5795 c h -97.2609 674.668 m -100.932 674.668 l -100.932 650.583 l -97.3601 650.583 l -94.4001 650.583 -92.1594 651.5504 -90.638 653.4852 c -89.1001 655.4365 -88.3312 658.2147 -88.3312 661.8196 c -88.3312 663.4815 l -88.3312 670.9395 -91.3077 674.6685 -97.2609 674.6685 c h f Q q 2 j -55.2149 644.58 m -61.9618 657.826 l -67.8901 657.826 l -67.8901 644.58 l -75.3563 644.58 l -75.3563 680.696 l -61.9123 680.696 l -57.7616 680.696 -54.5039 679.7617 -52.1393 677.8931 c -49.758 676.041 -48.5674 673.3373 -48.5674 669.782 c -48.5674 667.1693 -49.1461 665.0609 -50.3037 663.4568 c -51.4612 661.8527 -53.0322 660.6042 -55.0166 659.7113 c -47.2031 644.9273 l -47.2031 644.58 l h -67.8899 674.668 m -67.8899 663.828 l -61.912 663.828 l -59.9606 663.828 -58.4972 664.3158 -57.5216 665.2915 c -56.5294 666.2837 -56.0333 667.5901 -56.0333 669.2106 c -56.0333 670.8808 -56.5128 672.2037 -57.472 673.1794 c -58.4311 674.1716 -59.9111 674.6677 -61.912 674.6677 c h f Q q 2 j -45.9379 644.58 m -32.4939 680.696 l -25.5982 680.696 l -12.0792 644.58 l -20.0167 644.58 l -22.4972 652.0214 l -35.5692 652.0214 l -38.0497 644.58 l h -33.5599 658.049 m -24.5062 658.049 l -29.0207 671.617 l h f Q q 2 j -8.6809 644.58 m -8.6809 680.696 l 14.8591 680.696 l 14.8591 674.6685 l -1.2139 674.6685 l -1.2139 665.3419 l 13.0731 665.3419 l 13.0731 659.3392 l -1.2139 659.3392 l -1.2139 644.5802 l h f Q q 2 j 17.4881 674.67 m 17.4881 680.6975 l 46.8821 680.6975 l 46.8821 674.67 l 35.8441 674.67 l 35.8441 644.582 l 28.4027 644.582 l 28.4027 674.67 l h f Q Q Q Q Q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 48.24 793.926 Td /F2.0 10.5 Tf <636f6e74656e74> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 16 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 15 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /ExtGState << /Tr1 12 0 R >> /Font << /F2.0 14 0 R >> >> >> endobj 17 0 obj [16 0 R /XYZ 0 841.89 null] endobj 18 0 obj << /Type /Names /Dests 19 0 R >> endobj 19 0 obj << /Names [(__anchor-top) 17 0 R] >> endobj 20 0 obj << /Type /Outlines /Count 1 /First 21 0 R /Last 21 0 R >> endobj 21 0 obj << /Title <feff00540068006500200041006d0061007a0069006e0067> /Parent 20 0 R /Count 0 /Dest [11 0 R /XYZ 0 841.89 null] >> endobj 22 0 obj << /Nums [0 << /P (i) >> 1 << /P (ii) >> 2 << /P (1) >>] >> endobj 23 0 obj << /Length1 8924 /Length 5466 /Filter [/FlateDecode] >> stream xY{P[יνWc +yyӼH@$N֤<8[M6n6fw%N֝mdIõ=Ԟd icwu{$�@ T .M–􉩣e=o$>4e �ISS09{p/">9U߇4·mӾ\< $'^>7C9<rP+̟p$3�~p<<17N`s@S9v8&&z ۉsPD yb<k ԠD-S�R!MG8jқfy^r3K_P]}븥oX3TiM25UZRELBTX o!7s=Vu9TA9d\zz<1a%FI?Ilbx8e[cpdvxxTmOw;{+�T`&z[SF_mJI J'SK2©%07H -FKCrJ;Fc=u6Y^kJIaGU~1M\_߸:],H —tQңּ BZ-6F˷~_01\8Dqݔ=Bp�S M7du0|+nBM T^ʳp5;H zm̶~8 <}TSez^ogϺ*~˯$ub_V R~~Ӛ?;RꭅLJF}|͡}bZ(‚AQkLJ89g;1nۿOWZ}_4C MO~ٗ>ssuoM[]ps~ԥ{}ME9sD׽&ЕIZcx.*M<Ye$^v+?p^;juJO\ Vtw#$׎devQU`Kn[}-eP#|F` Hrq՚4&52YG(Wk1Z{kS#OyY^\Fe; 5)[si[2r˾%L[ ی<g-i_Y$l2us_~{CeZZy妴;{fNkzSTpddl,c?r ꓳ3SSJgݏ!'lS&؎sڊM%; ~oꤌ]9Kb~˾)5>zks1qoPm:[wojAQkvlwjZQ^Nj(7ҭ#G9ybEvI5ÍLa8Nsa=\a|ڜxJ͢ٴnP)ky|'tI5ס7^N][DLgE<s>^TmdS6|*v{ns}>TϝtyoJ617f6׾U} }n{aMUm#;6#[^R3]Ÿ۪~i\nZ`˚ms_52jŶ^Oe u*Y~`OQnЍuKocAVJjݶ  Ǜ+.iMsVS {k|gd;N}WggJ}a"2W PL,j2 S3K ꏝPk(ikOgZګ+ s3خAiwfJoŤp&er1&X3^AVe1,.7QL)ܑn^I$y.wz:9Qe<^0I;K=QoETvF[6x@e.fm6\9Y9h5 kԐڋ,/K 4#:1Z%ek"UW[fhw ,_.6g&q^ll]̒" 9?}s�LWnc~#t _d'q@O_�j##0߆CB;=`U ; Viإ*]98Ŀv(1 ml©W�C=~‛ΐt*xz&؋.r <#z^U)ɯ9T8Nzmm`J\S[r{ha'8=J݆YQ; ] }JV2f"HqZ8#sx{uQy U@K6)�bVp$WA6iVp5Gk  IOLrED*x"qy |(s*xr*x4rYd+<^O!]IO$|OSafJSZxk(|4+*mT@SS�h r8@+ G!AIaJlEhS@f` ,kFd k 3cKO(8~%!WGS6(=PhUMg&rq=(aI:Zui(o[ZX@$ ͈!)E%',@z br`T􉱈ECn oL<X7է`? wOq(l;  %5x)L}18a(~q&CCIE,wIx=�d,Z9b` YYPD+a ؟tFEY UY8u§Øhl }TX~Y4gh_$@e*8'gg bo80g3geE00Gg1F"rfļAc0Oli,G:{]CH@sPcP[{{C=H9c/AT'" GѨT&` 麊㡸%p`,8|3 "L+3~:=:д>( PZ0''MdK7N B7R`mMs Vhb϶5ͪI;{,3$woPȽB%f~3Z2}:v Eha4#·k/S݌s�;""biEft~| xxم#VqD z&vdavL#J=i I~G 19c$3NfǶ.34f\HT_4ViA8άɣ2f8GDu.E"p,j,Ȅ}Wو-4a0IqnF'i/L�+W>0|6!ÄQvQd }ĀaVƛ##gӴ%p--o%+DB\}K$m^"sKQ&u !-!iH$#OIuD-b3N}siiDC"Q# "uxsЄyֻ-B_Û)s[x (1%og-!zoDz ŕm\OkNT:Q_qJx׏ܷ9wkD3wOLv^xsd?óg=+$gug+g,uv,g;Kϒg^;gN9ڙ[gVΨ(>Nf{2rcxjCm!~ vmX+jT rԸ6ř {qAQRƟom$3Y1l\+k[.U!oouBɩ22]zU8~kki\Sڕ[i|Nkp \QE`iiעfeKɓr mm{e2s/Sek}-{zd?vl3օ,hDX)H` ҥ]EQ5~F(9=̀ A.l(!.(rلR_JQK)-v hos:-ͶƆuvZˊ Iyl^MLШU^,sHN(xe@jo/Cxydč6紭qXeC풸H.yD}B#R0qȞ2yxrᵣ$mЖ6 Iؓ)j$98HH|luȩ A+)[e )pR\(<ԢF~yΝORX~2KԮu>^Ȫ|$+s#Su]'w~)yoqenTuBr|؁>7Z\yQv>uIR疹|8C$NYYa@G;Чf35 FqƋ`zdKG.dttB~_rOQ̧i($;YO׋+V( -8k:e^Ljq}KB1TCrxÓ(@,/K=oǎͧȱPa>/(hgᓭRX6H-kj9n6E&Ze)dNW4Ha$y3QݯCjUP ;Պ9Xw\яr\tͲ̓"<;I,v2:w*J8!qmD7g=ȨC@tbGjV'0uK*7!]*zԔD9F8qF @U10=zUtK#MMmaQuhY&0*A);K+1zlkcuXOpIy 4m;FV)hHN ˘f Mq^Kzƍa1V:t2,|- yF~] >9Y؆cE�C9R"%$u1<1,a#01*!&1QʞDcw~<^qBԈޑNRENZ(D83dc:Av9�У`VuIN0iwĵvٰ|+a ~k9}e%C/'":<gu'UYOY�_w5̏Qx NvXZ.G$8VZP~(sx*y_o;-uwQza]B߄/�~#Wfե;_̕[p :�(w e5%WmX=sߩ3p j:S-{\H1 ^Lb'pኹp+VFU?Uw: endstream endobj 24 0 obj << /Type /FontDescriptor /FontName /dbee4c+NotoSerif /FontFile2 23 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 25 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 26 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 705 500 500 500 500 500 500 500 500 500 500 500 500 763 500 500 500 500 500 612 500 500 500 500 500 500 500 500 500 500 500 500 562 500 492 500 535 500 538 634 319 500 500 500 944 645 577 500 500 471 500 352 634 500 500 500 500 511 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 27 0000000000 65535 f 0000000015 00000 n 0000000237 00000 n 0000000439 00000 n 0000000510 00000 n 0000000561 00000 n 0000000833 00000 n 0000001115 00000 n 0000001172 00000 n 0000001297 00000 n 0000001430 00000 n 0000004513 00000 n 0000004856 00000 n 0000004910 00000 n 0000007993 00000 n 0000008158 00000 n 0000010490 00000 n 0000010818 00000 n 0000010862 00000 n 0000010911 00000 n 0000010964 00000 n 0000011038 00000 n 0000011176 00000 n 0000011252 00000 n 0000016808 00000 n 0000017022 00000 n 0000018384 00000 n trailer << /Size 27 /Root 2 0 R /Info 1 0 R >> startxref 19298 %%EOF ���������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/title-page-logo-align-left.pdf����������������������������0000664�0000000�0000000�00000076640�14163570564�0026175�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Document Title) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20191027232628-06'00') /CreationDate (D:20191027232628-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 14 0 R /Outlines 14 0 R /PageLabels 15 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 251 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN q 153.0 0.0 0.0 180.0 48.24 550.125 cm /I1 Do Q 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN BT 350.129 361.6965 Td /F1.0 27 Tf <446f63756d656e74205469746c65> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 10 0 R >> /XObject << /I1 8 0 R >> >> >> endobj 8 0 obj << /Type /XObject /Subtype /Image /Height 240 /Width 204 /BitsPerComponent 8 /ColorSpace /DeviceRGB /SMask 9 0 R /Length 19044 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 3 /BitsPerComponent 8 /Columns 204 >>] >> stream x e7U]}LLfr$rp�ASdA%x*ʺDPs<!#r $${&sOU9jjzyh:5u~>2)2)2)2)2)2)2)2)2)2)2)2)2)2)2)2)2zc}/]R|RVJӦeiBd$Z&A6NX[ i"˕ƥL/HQ\mýD$P ð, U7)Urx mjd R ' Ӵ@/Gd_ᕪz˚p~>'06Fiw4 <SX5~nc>\&" J+3[�k䩂)Yl6Xmۄ3X?TF9|@ `P( 3Xf3T*�<G=Qp6%aer$dp8F#0H0ӧ/g)elLJlT™8E"PZ+ Ɛ@N>8 3@*'>3g`0�`2s>p�CE]zyO4@aԀ\DeUf@VzS Ip@ ,@BU\&Ȁ/*{8\Ee\04FXY-2%TFxl6$ d2�8Vyc!6 rW Ni8 (KBeCQN@탬 �R�pLa2iߏ7ΥAiՕ`z�C@cj&ڀLU+#lo) XEHQ~�d96U?j/<[ ,a1=[U8ֲXxC ӕր>48AV[TKRqSU_2*蠎}6`ĵXjjJJ-5d? 1~Iʱ F"h Rʼt_*v9dvIFyM4 LGөDJEQZ-kdw򇩀Ȁl!J)=Bq@Jcy pVZKfY͂lv)^Ё @)-T3-k{@uꢹ\Q$gdǯFY#1 2 :#A\Qz#?1`/b sG\W.\1 RCWp-OqJ{{}&T _dBte@#pH'+^L�M&ScJԂYL6&ys<�k3C7sb|YN{? I+'on7p{Vr0+kjO׾ǁr4CC]{olڻwW34-[z�f xZ;vʫc/Y.&5'˗~\PX<^0A\.F:&/)Sp|HF.&E9s ݭ[lҗ+::첏RKxs4>ASN |߹䒏oOE$d}}pΜ9~P_bSN]ri]2FҠmԩM ,x뭷+#5.K,wSO=e@ B7) fV}}Cºx?ᏯlΜXg�vE{ 5ahI'.pk߸b6;;g}~uJ2z߅r(w|ZW‹iYrRP(mxo=Iv.N^:644N>c}uם{}[1:;;+_`(o5k…Ο�v{w7{饍ӧb_%7VRҲyqW H$ >i֝˯z[Yz݂Cꯏx 5 ChiӦz9nڴrѢE/*jE[.Lc ^z &Pg`0}|r}}Jvٲ� AkX`X]CC}"%|k}-ӥV0\Z2%A=,>d7; l9iӦ6446�hV>j֬Yw7{N+�롇e ei ^i^?�"/FAH hmme3Huww$a;*VX -[ *d˖v}sxoN%L2]{mo<9xэF25bZ+( [T�¼O?yw �|zC먐V۾}3H޽[cNl#f>k.H4&?@<�N0~{{耍wqrB* t4d0(; :qM0o~3\l,ZW>Rώ?kFf̘>l}ݏAly W6d ,}�ه>AشeoWV n*.]:2}rzĪ3EXaC]!ƀ8ygl^{-�\vITJq{Ц}IqGhf[)HV"ٝ9iGZ~#~xwGdFxDY/V^yURt$ol\u7Œ 8;֞ntMmxn~Y'{c>׸4#L𚥶A_H$z�gVog!H1dqC,[kj wڥ3˖-?'qw#ZY#%ʕ7ky]O30�'Nu\8Xcdi&Ki vߒ8x{J<ʜ߯v�O>dؔio?ȥ~bDP MO'�2;54`nJsf>WW<_ҠiMl;b̊ܬ6q!:XGvεQS5҅yk|UsYh-&5]hZa }RW�^ =BTPk_kZg?dvm淮߶}ln2D"GN\`$/�"Lj.@&aAAcǠG]*O.Z&9ז.49e$@VҶb<"rzkV.p@MRJ9 b9leHuљS{.մ�BA}grń$_�8 < r䔕l.μk?!:7< 2.<>xNl A>=*XrDOsHݞHw2T󘃊>0kY]R"HR̛*_1L (%hJI)e F2Ɇǻ|kj\LAzYlXmey4�]󁢐]�0$pb`Y�/2f20zs[ƘPP{?^F$ 2o"fh,�,JؘY S,Rәhj񨈘 .dkڰ P_c_r� `ei]XPjfȰiaXutM;obSs L[ c "��pR:a&0KaZw7"{*)Q1N2&9t _Lm,0a~rX בvƸN.2ȼkô;S{ JS@i8sN!)ͶVz2ִELASNɔzcgapP( fxrLwfB}ڎ{XPlA6JG24jE{. ^`Y>ٽnSdCTF#0i &mѝw ?LPD #@ Mo8AE-C`Jk[C̙d]|IHAfs/ȽEN8aaa긃>㉮?Ȃ`4mhh:iʔ)Di!K?g(rjd`IrJġk?\LtFec\ꃁ ӗeYַ^xftJCPf02#IQZ91kuK3gd`+E"a1;By%ZhsCh[(b.xCǞ^~S[|1~|joOٲ;Ւ5;d8 i(a=u\*/!P{ !{"Rt:F#8_ kdyL0{lTF]U9Ri GD @xXD ,PÀ1+di4 J9L:_jx9sv*.Іq#3<G?w6�2�XOOwggg<4V@oܷ{ ͜P Ci2uԍl*b2zi0|*ω1q1[練W:@}C,+عq xLZ,VY( Ң@~9N L8Eu 7Ms Im%:]Viɠ 8LrHj㵒o63c@Gf( 0-qmXN[<C9ˮH8cNA!�-[{S.p 07{Z*] `^q:sӷ]-~hT1M OvEq�Md ÷`\. ɌY-C7^Z]66$&2adxq"AZDR9~21m^u̝,L[b{|%tgg;5{|'>e?Af: Otdf�M6YQ45u9@ EJtѸ< {Mh~h{Ù~_@&gL vttn4_aW� �8V~͘!U=Sd_`.0ZZ` e'ӏbϑ@e2  ɼAN9Gsm d5XjO<cQ$01u c't;PZL2T𞴢ؑYgkj?+?Zc2Vdқe޼97<W7�dd pi+WRD[.` Ne{ʴKzH~anZ0 /ühO}͚cz\8"ـS͞={�J*Y:?iBgNor`; QdA?|Q^xY L>)K뮹 hf 2`m ;i I]>~C؀_V>zYd�~?+x7cMzE pC]-k^‹\ 0:w(/w֫Dj d!]}[n. {!b̿'jxfl9eѢEw_^(Y :Pj d&kINm>?{zp ]ḵ¼ّP  DˬY3e4L|\ 39".Y駟䎇\n Bd Zt3 oɟg~ ?Viv7Dj?\TUgkh,O󽏼 cg~~S~,ǹ|v#*g&bNo}W\egh M ]3$e<X 6cyi(o^^fdlA& pr,ߛdR͞g2/VƟ5aҭCU <gXێ;TLfj`⩧8}J歜O9=C(ͯNl?rg c0|+0RF3=8zAlْW_w8c"X]<Yh+ͲrknnyQeQm3Wu9rͿ^n]Nfd6@|J1E)q ,X=tņ o[UEjp˗شdSTΪD̡G rbqa3%SArǖpU5>O<ܛ빬Pfo\T 4mi`_ב2 >Xʄ0OKG}tI OeVx!lYU^OJ5o'ƖԩS.]<9T3(XaӢEoVH)x?y|yk?olDd̃gd`Fz<a;EM}u&p{hSW_1xLń9*QV1|pόfʅ g2/E@Pr!OK _GX9Կ?oW?IbellLٳgg2N{7d*mR9+/_Ÿ-uR-4ŏÿ0diHZ Pa^1CdyG|)d "̆[nit?;)D@BrS=%7ycV,~eyh-e!;uX !(DI9PL"co]57R0 ,)!]֫TRFQج6 c{XdEp8L#G3A mU,Ƙ`hѿ{E%-oiyn#_Sl`6lݺ p4 7dԊzT~IU' nDwo+X]jٲ7|huGr $q5}[ OxkVy(AkkQGk׮GQ0 3# Ktf+Fz_W͏>c ]x$;w섩A6{yn=enQ_ԷKrmy_6mj ` ENR(zA揍i4C <);/3<;G0 R Уwp,> dɒ%Hvuuw̘1=U40FG7Ut%〰H$s@ϝ;`5vEI^$(vn 3:ݻb~ qJg'zGww7m+d̬J P9lbu)S^}DO?}*XE aXK?~(yNsZ {䑿 7@RKK \2Pu,Z*ߠJ峢;i5rէ~a##ayܮ[ONz O3gjdym۶͉hg'C_H%LUd윻śx�6owΜX@$"}⏭+k�Fp`x{}y_ße#�^@pznukL&|1 $z^ZbxD'~J xT@9sPVcc̙`cXVXxzh {C*VjVL OQ`˯7OoS/XSsΧ1o}ONA/+FclgbX2X,L)ͣ1T9“>v̯BaWkGϗ^zy3x搀-{zzyg[4;Ğ<LN5 %sTG$缥e ŗ_AK.^v-o V>>{cmڴ ne9#p`qB2{Lp@]£omnݺ a#*H_4/]qy6-s �p�2SФ`[l%_!,TȨdcc`|itz=m`/}J/1AIғN:@O$p<``ЩB{w#n6 =ܰF/U2x!]iFH׻(F\kZV}WN6#!={w O`kkW> އ=XeGW]G6o{Ն!SNٰIQss eV]]fw: kٯژ] 7ily[qꩧ`^qO؜1sd={;DvX`RUL KV07Xj۶y}cTZ:@y`gMgg'W:[xJzRELitj_ь{w򒸠I/%<hud \͒9 wvv$76{/Rwpx޷`RORbŊB6K$z.µFsVCKhfe/(> aRft2VeT DoXbmi U akl򂘌OU8zU2nJ0a-5k455^, /d3.&^]ƛP +tA` 8uJ7.2)bɈdA)ooii 68҄>vȧzdQV?577o^ϭe}F$EJSdkI:$&}3pyzꊟ]ʬY3UnTnW05L֧Wƅʚ5JfY66D/npeX9YYred|=Fa;T,3Y'/gϝ;;ACYl1`Ced:̧3Ȭbu0*4es)#q-Ovҹc.]66 lj-گ|'3 (x"Ƙl^^c7}ݿ'4~p6l#x@_a0iҳ1(ZOc0 軽V`nȰ khh eYcR߂sLo>s!/ éKvH$vj47,WÆ!K`2dQ2JzT&%Jx{ͩ#2ko/˔)Vro˲H P&7n3fJ^C6ޥmq)2&$ ( H&D2JΚq ϭ c@W *%?W^CN �t:O^1A1(ȦNEL&3kI)a]]`s�{86=Ѥ5؎x<v/ iO'e Ǝ= wR#Xq,^eHG1coe]]h 0xD8M(tj)M<W*LOO0:L38e{t~_vZݛߪmH8d!x548EȀɛF@]/Pz4N^,kRL;fDGxy{[32κB#+:ɮ]O�tS TL.Ha O9@li immyf^4»j ;>Acgr? û}N(^ṚxRX9(,=7�x<6w={_}աC%J7&+Gj|Ҙ(MS"`H#hECY>mg(wdΝrr9~;'f۔D6lx3/O6Ͷ-00♼t߳<Y{onuuu|=+S1~ 㻗 Lx #( Yq$׬C;PI*p-9<A.!~? pC?i0G̅[�,Ӕ/Xt挰) \nx)ݐX#ujye /$}nḿ &ڹ ?={vOx$ӲJ<ԃHA9G4?Nk@[mY'b*`2Ƥ\V:aupDDB2hPH uU b̒9Ke3"|YVobd}y睋 8I|& gzlL"hj8MJx-3=LoySv#LLB&uǎjj!&?IiKfPSKhK/=͛w{~RŦ_[YC&M6# FFseј5sΪp`LlD`%:I=M{6S<+-e,kI|I`/æ>uNgGOҏ=$~O oo{&40$Fu%aI#gcM$<+-@-Hߣ{"i帢ʁcnt F8W-i/c_ǵox0gƟl2=w]Y1˖`GNsYFPYv[ŶeK�`]Dyw-Ѹ.C=_xnȞ.*q2d2v4uR0 U?|e4Um4*dVNZ`f֬&t%gE6m/:Vg%*,czީ:\z@C5oW?ޮXnJ*@֘RZ>$%E+CG,?:TK-c7Oo)J$)9[»-K-Ce5r#*\a`~{uttuu%ͷ9>l[^ǘ9$&EKAз#MZ8*h`H i U&}같Fi/#g5ۛnOCmdGؘYT@碔6E�cKSYNf 4ː2%H(?V N3B,kz\�LTaAKbL_W g:[J5˳B @axޜ%bQK|']֬9[o==sN ]5Zļ")|s164ʥݣ Ef#Gڹivgg [¶Ѓh8ӆ SpZϐAñ49xνh^pW}m 8O~| C1<&~&{02r譜Z2WQVug᫗<y4J= h*aMW&(2SLe* 2eȔ &FSb2In/U< / X\pWFc]28m&Gi8[ָ^4Zt.Ϊ#1!I Eb\_3?+@PLpX*VˆpH >  ,`"lr_2z x ,ue]}8!A<!ArEISP]]0CML A c;+'J97ƚR!� A ,$MzB( !-#`NV?>4/Si'�X]pҠw{Yr+VuUX<1(~YdGDJnj`o|p]~sycM")"%Ak1J)zwJyaQ?&+v�&|'�+$XE#1ÉbQVNn�~C0,.<E;mocY[@9Nd˸b+ g Ż]x\^ճBf ։򓧆n<~5uz0X�~ǯ)Wȵ�/%@X� T\ *)wY7K`r9nKhj4'un@ zꉲz!,H+�I}j}mo2<WeJٶ&0f`yMdFm߫kw7Qw\W/ C[4q.Tsz7&`T[w*p:Yfx~ S '-GG"?  XCJ;bz_?~5b+"wS2ciHdL�,CΛ}SnnPQZkCf ӎ9{SNrs@6(p)k SNVהNng<刟 3F8>XF።{rmmƭ~ lo8"jisCҪycLwv}qeq 9L##ȯBRIhm>V,fCHq6 4ZTI!}9"̒^]3DOҚ3CΘ1U{?ڵoֈ>δrЯVKDC0T�B pP�\~B@hؠм6a-#QcK/d&tBsClZ /e4"Q0ۆGmv 'mݺuR fȳs*+uѱfn8"`;10J`�3#z.f|9$I@)x}+XYShHN= p9f,์.Ȱ9#໕LDJu`%@ GHQ7"@,n@рFu `WtRʵ^uyohjk>#f<te 8)6y"+8:3sC@]8"짭;xg+{P\6R・;ZÎY@X;x7 `N?Qt9~ᐗ3r!3~yh8d\W]HdRaD:)Et8 DŧipAmٲYLmeފ,l ?3ߐCa�S8 cGePzm/"M|5 rT[V / `iCf^z; 2Ψ#ӧϞQf=ςe̩(/7Y5Mb lΘX[dZ~ E5gSƬ'y#e'096͞tuTEg�*"ܯr{oϱ Ƀ3GlSnf2>#ơ a#/BN2k+B6uMFvE,D̕/<L[ U9Fv!˯WPb-w.y-y',HKH7D5Ga4+ LTB.'- 7dƽ ЮʂqRah`#g,>w84vUq{;L6XX;sMAt],PBS{k%QnEsrwH#n#J!~b~k2)AnD�Pؘ5#uS%POms-]p3up#4K i6sJ _?z'>y[K;uM.j_wS]c �sUy&ek"UBiM3?n|"BhER9AaJ7U$\G2C i(5kVb#-J.b/쓛6m?æRG9)&ّTRPu^<GjǙCPoխC|J3d,f46.WE(&UjN`FY0"pe׿ P1Yss>voca'ܔL  _J@`bzXDALJ7R:xTFCW[QQЙF�7[58@ ӟްv1<a~۷&^U([\[[ʬНvPF+vW#a8s(lFi�ShW2Ρ\WWwg>Sk_a{Mgq[o&UǤ?/s@/^]GȁˆH[jmLF9AiZRuҲ?9{Qܳ~y2Y<g>5PL4N^\S J(V;9g,BE4Kל p kL.`i#ymGJPar]w}% wnsRtK+;5hbWŠ\×mY8D^08HJz5C ,8I7RT::hQS{864:|땦ԽjZЄgiys(,b* �O QrYEk`U Bnڛ1.:qѰc($##<3t&K./'>5X (Twjd $LYT@N6P*?GY';dLF2v^Y"&lTX A!cEa>,8qf@CBvsú*im۶?4h{4iN X*WÍ ,P\E.q te[Y  &TtZSv:8Si]VdsvbŁNT"(̵�3RXP,ֺv1EGqcmb8]8ed-*ZR 'MchE؂iC TNdNBY�%%?Ł ;aDNsѻ)x# /#aqPlXXOOW利vF#_b\n6 Ɉ+^vʅơآRpF&"J^);w+T0`LZ% 9ǹa$ցhOWjEr+8Y*l Pr _\j.2W8k+ 8U R,qq xB,.XdrB oEvQe$n�YI�J pK! ل- ^Ru=Ԁjq!Blk<Pٖ-[¿2u+̴<R/Š:]c[h# q%69帓68+t=lN`crJx.2ٟSn;͍JƔϜRNSjd8ڕIgggYOcƗ.xpQ8|R缤�Z}%sz+B͈ڐ-҆hFbꆅ+a=QRs@/)ape4yh*$[s Diu ~,ӟ/Zڃ[I'Ï馛'< zѮ^( /ܡJEY0gu4\P3TWBu!n Kډb;P\-Gq8 ]mI #(ҰCey�9UHu"g3HSq"E-!f7]?kŊ'x 'jyH$xos{5퇐)1{bL߶[tǕt{WQ GYXH92ʬD"cF.yٍ#lO.֝$<@ĕbѳ$܀bE@WB{h)iw:6 /lUW]p1,_XtK,M/tXF|drxkX׸:Qz qhb(ƙmJ*vA8HA>̢#,CQ{4rYҟa l2lTڗn,P qR 2V43ߘ]it{8HrHƹ?#҉WƒOSڜꔅs;HO`3fDX,7DQ+ c :CNA;1R{O*V-fJIFcD]  <-\&% 9z^ZA À, fYzFsq<Ùag9Cl(8{|8iM qoAZqu(r-isPso>ڳ)R(uHH:@!O#ؑZpgqU&lq$~Ae%r#b*AK05$Hl Ԥ--K-rb) d<lBe�Oq_n@i;CrkmLrJJvGsĀ]S"j*kJO[GI]o2Kr4c:RoL0JdAL}4U$cU0|OaTLdS fB"Db)ڕ(�Lp�|ەc?jȜ5ݭХ@i( W|GǤו.R[T!1 1МP;kg9H10T(9E#xBpɌ3_hwn*~g"T(NEm-K:s4R Eπ47#襃Nk*/ !_C4Wpbԍ>JrJ,f8 NNKmyپ�mOJŀ"xٔ KKq>oՍP}gSbV36̵ plP{,5%73B ğ&:7*ҤBqK5y!!nE�^-ݴ?΂Ӝ|n9U" vA\Ûghppo,搽pbdPQjFW < 4iTߗQ JxKSA)lRA)2:P-j 8[V<\% JPlSo7cМ2N^EG뢺j@) 9NQeEP%`7 BEUc XHĴ&amͰӌuܰ>pRK,C$x))vgB0A]&myխeoU\?zhxmiH t:i<�ӛFVOu~jye;S m25R^#Xj¢b|rxjsI[|vR1;=fN �^fVK,`JLT“Sn�6X29pHdm60q XgM NU*aQЛF%$w"U60IKhzl ꈰzx,[Fzƽf.^m%1D_ Igú7SV8&xuxM�&<6Y2`˜vcZ9"3oX<M>~n^Ho9L[WiT%%_] (y숮yN :XdrqSI'L gi*F䑥W\vQk �aX-Hѣ:SbsjWw!Ud9$`2%oO~򯫴UѐXPU]X0ZS39tTsS%{+8+AE EQՕ|ל-F3h�eJdI]ktw�қ΀ T)&Bᶐ9j794X)iԉ=IՓ у=+);⎧�vyUn!䔨 S󘺐 )x*b.!͝s'؎siO!{HZ"eNu1B k?&2*D+Gҹ:Ob3p !tjF/WpCJ7fk{x9"Ma]IW!3)qMZ:JсwG/f5H@8t4j#zê8Ci'c4n E* ԼX &\ĕF4l kmmNk UPSL^q~ps5'9V9rnHd7+%Ð`e2'1Y_ hpm>x<p2FH�eez9Cɩ9~mE 2>S/ߙrs̊ p hWE] >.c kRAFFI9)HceFtW5 Hpn8d0 H3BP@)t␬2M =okL`_TCe9A "i`ԃDaq&՝.M1p9L$Ӫ-ڼEɇ#yઃ4#bxU|$<}dUN-d\y~$CLEV'[a><%tgF҈dQYu C48j8 Ҙ{ b̛[:}77STvt _p2cQ2N;*M><F4OW)6piPl�n5zu%su uT%W/X\+c e 8;+9³K!"xUe]a,=ڠ #A0{9,Hi eBp7Kvyr٩AM Vm'nHQ"#@hy3r Y &C*|\kL9q<kM5d܀DH$En;өZ&XITjBR—K{x |rJXեf<9g-<E'l׍3TQ ΂ |e(P=o5z|u |+M۰m(i9+&eR&eR&eR&eR&eR&eR&eR&eR&eR&eR&%hx endstream endobj 9 0 obj << /Type /XObject /Subtype /Image /Height 240 /Width 204 /BitsPerComponent 8 /ColorSpace /DeviceGray /Decode [0 1] /Length 2902 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 1 /BitsPerComponent 8 /Columns 204 >>] >> stream x{P<rD*!yd4`Fkb)ZGmR(֦&4Q`'iLڤƷBѩ޽wϞs~]o_yYō7nܸqƍ7l:8jd~];Z[O]bz ș7ᗛ'8zC 'fS~oʛ:]R/1KWO|]>bb6Lggh^EL�<¯ڇy]ZT'ڡ|EOdBfk")"/Ͷ xq/n#.ᮎEB\-�ͬcmF]橛$`G񨑱n,�n2*�dP%i/`�/ih]?P#5cH̑LiӦdHEͲZ,&#u3}ǀp(g9"3!*�߯Hwl V2Ѵc XFC&&h&&h?LL}H1j2c y2a bGfOc3P2یGm,@1W�b`Y յdQ("Xf|@ɸŸ%;Q%s:'iDsgƀFc!oF͛{pbnRPަC_-iί u a~$Aqj81#:8Wjی\5g4L'pbQKw;#}3pbک+816d,ipbXw6\�&8Dlj8Gˤ3NB[S3@6[l N d7&ܥb({z281Ţ\E'&|yi['0n>-m j.UYSXY?ȯord|1%HLh}5˟4Ĉ&mVp&ٛ<3e_pWv9C/=C);C�/J�Zd%cݎ_`쉳Vyv م xA܈\2u9!(v5�\'&^sX֞~ۉvY_&3}O+ 6[dg͙bU%WbO{o` WpHny1fI %ۙ ϝ#w^Y103xy0N=DR<Z�iO*�ۋRfJ(7y@L| ކz+5ekM]sJ<dJQ #_)1"Cc@)\ 95cM]d+mȄ>Iќ*ngQd-'W[@K6V&2^LQD(�\3xhYwD47\$�Bi]D+谹4E>/OPh KfH6*%%!K@y3; .&8[H)�@YA쁱?]c&VJg3U@VoL�JLrj$�1{,bJ/-&)z(�ŬGY7,{;H,A=SLd"�̕!R gc% >1eģp0 gFs05 [&�t1mPg:WJFOU2m]zCjg2|qӈa'jA4J[=Xؼ=+&ii1fΎƌQWnRNev g!p g>\b6![M;�gy!&|i:3dF*cȚbƿ? o3Sig|Z^)eb}Gi.X榇'9=΢0jD'9Eݯ1EH�0!;Y tC? Og|(:  kGjI,^P�<ܨcAj�3LW=B)F$#Yޑ�;/C0k5J1_0wY)*Xpv_z�gM.Kp~s_CBoF'1/CD#$~T}I +b-?ă}>mQr129[I�C#`k652v/'1fqw=*DaïWɦ5Yj+Ŕ o<+& ]sM?W8 K&~h Q>_\1Z7,"`h\q;aLtԯbxek\T8;̎5ca1۟1ymvvu#ALKI/p 3ݱPپмZۓZ pY]_=X#67=V1d~F{}yɭFˈ҂ģo~|%o5ӛңTRu{'>Q@` £ěp?'/3A?Fa%$C[jXB'"hs9JgeOL},-ΌwJxy|ܬTxVX[*Y/ɹY$c6<G314O}/홯 KqU~dz%oE$ukUq#M]ly^[7]:m!/}RTp!|p1䧏);#7/,0 ?{BO�%﫛%e˭|4Af$Fh9pOŷpZFݹwnX62 rߗZ77nܸq/?oh"S endstream endobj 10 0 obj << /Type /Font /BaseFont /0e53bd+NotoSerif /Subtype /TrueType /FontDescriptor 17 0 R /FirstChar 32 /LastChar 255 /Widths 19 0 R /ToUnicode 18 0 R >> endobj 13 0 obj [12 0 R /XYZ 0 841.89 null] endobj 14 0 obj << /Type /Outlines /Count 0 /First null /Last null >> endobj 15 0 obj << /Nums [0 << /P (i) >>] >> endobj 14 0 obj << /Type /Outlines /Count 0 /First null /Last null >> endobj 15 0 obj << /Nums [0 << /P (i) >>] >> endobj 16 0 obj << /Length1 7908 /Length 4717 /Filter [/FlateDecode] >> stream xY}pSו?߶l`,0`lK`l#ےlc,# -VbKB fPl)%viegv8i%fvg:lavw%ML&֞{߽{ι�@T O)Y+y䌎 RlPIawŔ�"ʱȁNE+?EvlZ@a@Px<E،Շ_ضZ]@8 +.ҍ~q;ҿHY<B4@M yj�Y G'|s}jxFGM; l1�ұ}׳pXJ*ѓ�+)9%i@#|Zu Og#9[!_7|7@ zF+dQ_WS,e2R.$9$U^sb@gh*./~su^; \}y>:ZPYQ_2~c"UO,ğ^D[(l&y bqE\}֠(#»b&Mksi*OB*RSVW(1ddӵ/vSqVTfPӪE#ӗ]VSi3<rMGLwiֶnk^Y1K[[-Gէ6kol))wKuc@L3)V'QYa"BtBqM4N~$0so_oJ;vmݔ|ӊۯ{U;]]~_;'cUjV7cXL�cpy/2a+ssusoCׯ__[>z-|C:xL*XgdV2ubSV@(04s?y+qL&\k/ywefDK(N@{W'6_'ܢK-2oWVޔ]~d;_X^ӿٴcEdۮAnpM%56OWi6QR5o߲ذ@|oE穼d'<&]T;4.GϯlmXqdx>++ж,j'*f�UHỲpr.h]UBa>s+υ^ll|%:nhcX)|_e"μLט-!Lk2fڐ_(qe=$}vGz:=Ez!/zLuP{VbZ+&,%APsk`wucqlfB]EsK YS>?sM̳;m%/UnFWwl-~z)G"V2F CwSx.CTq);`p àK:TI"baJ鹗Rw|C/wW@?ӌQa'&5C;TU5ků`|$* ([,L:ې<-8(3ފ{>P|FYu'ر  z?}Џ;�=`Zs%= 2Nл'e\2.@&q2*JH%e\ Zq:WA>iq5hSn'A1<I`&Ge<%Ow2xx e<pkT-4(~-i,|p*TTx:4*zd<t)x=od< e<jj |cZ]YUMq/h8g]a {CA�pBQ/UXRh�E0 l 2u¨0X{Q~,=`D F@�r8F6 (  r0&OG}QZAIَ\A:nEy~,)T{]_mɠ7P9F cCfSq9\/L4r{Ѓ404FP}vA/ z7= Ft랸h3 %�Rn0#n:G0M^:HzB#(Ԁ2(Mq[]Fa5{YbG$n"`CF{ Á 7bDCFр[ ŸtF�E"QV�"ĸpd G]!?$Ng` G-0y| {a Ș:ўgg(_de[|C#n?-nN[1mmu΁�=iў~mFJ[\N>4'D\8L!XؼJG񙄃a߈oQEDp=8 _h`7gi}00( PKS5`Nɋ]˗--$2zi?ߌXMb×5˪1k5 @ۖH(G^B?2#|B"}qn^j+؆m fcT;֌nn; BqkAGtv7npb݅=Uq8u�=+2m yL <XlE~a%sN??|2; DD²<r'\؎E?} b܆I٦fQMK/ ¾qC 4jnk\X̃4pDZf~mD'YެO -ouBgC&"Z$z3„@rAU, c%>KHޘ]19{ɚ#ii$:Ql@>$$ LtI<i"9S0#ȑEKK* WrX+ybZ+,m, d Ȱ%|oYQrrAunU Rgc^wLIuVs5 UESzg`:n=<zy!SdȩpRs2xr2 89!4^:A\'ȭA {z/W;~㷎ǎ-<E&s" o_+JRƊhƫd6vHjk G!{݃onM]f+,a-´#/Z9hTl/ٯoUEG{jQi;Q'5:<{6ɲkjALֵ,aK֥[Y�W(1Sˈ̒flee]I.)wDH%6VvJ#wrih]%UkK`SЬYp8) E $\x x3G&'ɞd,raD q9ǐ12.>-cP,L>`޾kkgGbnkm1minjܰicJ|5%b}Q6[V)rhuQiKR;:*-p/\!%R8]iBΑ8MqN'Fh(J4ts`{,:oomNd j3SEZ\f7&yS+a&5 iؒ։0#@rS+)J,n簘uzSͼ ڸHI&%qLtbY =ǽ!)86DOKeRhJ.gEE*cRt}HH?qˈD ZEjԐH5bt&==ׁfcoIg5FZ1sv9$J܈QQv&xz tTg?:k!$>G <eNIp<;J, w.#*)K:=}|-M a>=B!jOuz1M7UTk-8j�6$D*XC7(ɱ,Њr,\flr,3Fva|f>(%غOfgs!0I&kX%-fZ,i$0?(v}ס&v}jifaDȥ^29QStx,)ћ4=N]6ocltSX#:tq1RrI2u:5P+6F,d|5nm<hTJ-^%BU,:ԌD9m:S*즲bБR஁b8ϼJWtcT2:ܘ{xDdgqXB-r ؝ 3%knsvN/wuw&i4YEpQhy,Mu|`#Zݘ&3<c3&4*vzȹqyTwʁ.5ZQ_H͘N�zdq^ B9S�G2LR?ɜ_ `*9aq,9& )㘉c(叡qP#αrGHDlF3DPKUJ[[⸚Id(?XO+gZȃnX _.QPp vvPk#_$'o=Ix*~=?_xR Ngs M=!k>e g0bI&07^ho"ak[&)nQ:{Li?oVҺ;i=Av{ПQx6HB^r2\RzxT8TVHVky $u-"$#fbQ^SRGll_lH{ܽ endstream endobj 17 0 obj << /Type /FontDescriptor /FontName /0e53bd+NotoSerif /FontFile2 16 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 18 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 19 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 727 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 612 500 500 500 500 500 500 500 500 500 500 500 500 500 500 492 500 535 500 500 500 319 500 500 310 944 645 577 500 500 500 500 352 634 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 20 0000000000 65535 f 0000000015 00000 n 0000000264 00000 n 0000000466 00000 n 0000000523 00000 n 0000000574 00000 n 0000000846 00000 n 0000001148 00000 n 0000001470 00000 n 0000020778 00000 n 0000023945 00000 n 0000024110 00000 n 0000024269 00000 n 0000024339 00000 n 0000024269 00000 n 0000024339 00000 n 0000024384 00000 n 0000029191 00000 n 0000029405 00000 n 0000030767 00000 n trailer << /Size 20 /Root 2 0 R /Info 1 0 R >> startxref 31681 %%EOF ������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/toc-running-content-font-color.pdf������������������������0000664�0000000�0000000�00000017250�14163570564�0027147�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Document Title) /Author (Author Name) /Creator (Asciidoctor PDF 1.5.0.beta.2.dev, based on Prawn 2.2.2) /Producer (Author Name) /ModDate (D:20190711010046-06'00') /CreationDate (D:20190711010046-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 14 0 R /Outlines 25 0 R /PageLabels 30 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 842.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 4 /Kids [7 0 R 10 0 R 12 0 R 19 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 310 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN BT 237.124 479.502 Td /F1.0 18 Tf [<446f63756d656e74205469746c65>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN BT 262.474 450.138 Td /F1.0 12 Tf [<41> 30 <7574686f72204e616d65>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 8 0 R >> >> >> endobj 8 0 obj << /Type /Font /Subtype /Type1 /BaseFont /Helvetica /Encoding /WinAnsiEncoding >> endobj 9 0 obj << /Length 1813 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN BT 36.0 786.846 Td /F2.0 18 Tf [<54> 80 <6162> 10 <6c65206f6620436f6e74656e7473>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN BT 36.0 755.982 Td /F1.0 12 Tf [<41>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.8 0.8 0.8 scn 0.8 0.8 0.8 SCN BT 44.702 755.982 Td /F1.0 12 Tf [<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn BT 551.774 755.982 Td /F1.0 3.0 Tf [<a0>] TJ ET 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN BT 552.608 755.982 Td /F1.0 12 Tf [<31>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN BT 36.0 737.31 Td /F1.0 12 Tf [<42>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.8 0.8 0.8 scn 0.8 0.8 0.8 SCN BT 44.702 737.31 Td /F1.0 12 Tf [<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn BT 551.774 737.31 Td /F1.0 3.0 Tf [<a0>] TJ ET 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN BT 552.608 737.31 Td /F1.0 12 Tf [<32>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d 0.0 0.0 1.0 scn 0.0 0.0 1.0 SCN 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.0 1.0 scn 0.0 0.0 1.0 SCN BT 267.802 823.11 Td /F1.0 12 Tf [<686561646572207465> 30 <7874>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 10 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 9 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 17 0 R /F1.0 8 0 R >> >> /Annots [21 0 R 22 0 R 23 0 R 24 0 R] >> endobj 11 0 obj << /Length 521 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN BT 36.0 786.846 Td /F2.0 18 Tf [<41>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN BT 36.0 757.482 Td /F1.0 12 Tf [<7465> 30 <7874>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d 0.0 0.0 1.0 scn 0.0 0.0 1.0 SCN 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.0 1.0 scn 0.0 0.0 1.0 SCN BT 267.802 823.11 Td /F1.0 12 Tf [<686561646572207465> 30 <7874>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 12 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 11 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 17 0 R /F1.0 8 0 R >> >> >> endobj 13 0 obj [12 0 R /XYZ 0 841.89 null] endobj 14 0 obj << /Type /Names /Dests 15 0 R >> endobj 15 0 obj << /Names [(__anchor-top) 13 0 R (_a) 16 0 R (_b) 20 0 R] >> endobj 16 0 obj [12 0 R /XYZ 0 841.89 null] endobj 17 0 obj << /Type /Font /Subtype /Type1 /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding >> endobj 18 0 obj << /Length 521 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN BT 36.0 786.846 Td /F2.0 18 Tf [<42>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN BT 36.0 757.482 Td /F1.0 12 Tf [<7465> 30 <7874>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 0.0 0.0 0.0 scn 0.0 0.0 0.0 SCN 1 w 0 J 0 j [] 0 d 0.0 0.0 1.0 scn 0.0 0.0 1.0 SCN 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.0 0.0 1.0 scn 0.0 0.0 1.0 SCN BT 267.802 823.11 Td /F1.0 12 Tf [<686561646572207465> 30 <7874>] TJ ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q Q endstream endobj 19 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 18 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F2.0 17 0 R /F1.0 8 0 R >> >> >> endobj 20 0 obj [19 0 R /XYZ 0 841.89 null] endobj 21 0 obj << /Border [0 0 0] /Dest (_a) /Subtype /Link /Rect [36 753.498 44.004 764.598] /Type /Annot >> endobj 22 0 obj << /Border [0 0 0] /Dest (_a) /Subtype /Link /Rect [552.608 753.498 559.28 764.598] /Type /Annot >> endobj 23 0 obj << /Border [0 0 0] /Dest (_b) /Subtype /Link /Rect [36 734.826 44.004 745.926] /Type /Annot >> endobj 24 0 obj << /Border [0 0 0] /Dest (_b) /Subtype /Link /Rect [552.608 734.826 559.28 745.926] /Type /Annot >> endobj 25 0 obj << /Type /Outlines /Count 4 /First 26 0 R /Last 29 0 R >> endobj 26 0 obj << /Title <feff0044006f00630075006d0065006e00740020005400690074006c0065> /Parent 25 0 R /Count 0 /Next 27 0 R /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 27 0 obj << /Title <feff005400610062006c00650020006f006600200043006f006e00740065006e00740073> /Parent 25 0 R /Count 0 /Next 28 0 R /Prev 26 0 R /Dest [10 0 R /XYZ 0 841.89 null] >> endobj 28 0 obj << /Title <feff0041> /Parent 25 0 R /Count 0 /Next 29 0 R /Prev 27 0 R /Dest [12 0 R /XYZ 0 841.89 null] >> endobj 29 0 obj << /Title <feff0042> /Parent 25 0 R /Count 0 /Prev 28 0 R /Dest [19 0 R /XYZ 0 841.89 null] >> endobj 30 0 obj << /Nums [0 << /P (i) >> 1 << /P (ii) >> 2 << /P (1) >> 3 << /P (2) >>] >> endobj xref 0 31 0000000000 65535 f 0000000015 00000 n 0000000247 00000 n 0000000449 00000 n 0000000527 00000 n 0000000578 00000 n 0000000850 00000 n 0000001211 00000 n 0000001507 00000 n 0000001604 00000 n 0000003469 00000 n 0000003817 00000 n 0000004390 00000 n 0000004701 00000 n 0000004745 00000 n 0000004794 00000 n 0000004871 00000 n 0000004915 00000 n 0000005018 00000 n 0000005591 00000 n 0000005902 00000 n 0000005946 00000 n 0000006057 00000 n 0000006173 00000 n 0000006284 00000 n 0000006400 00000 n 0000006474 00000 n 0000006636 00000 n 0000006824 00000 n 0000006948 00000 n 0000007059 00000 n trailer << /Size 31 /Root 2 0 R /Info 1 0 R >> startxref 7150 %%EOF ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/verse-background-color.pdf��������������������������������0000664�0000000�0000000�00000022747�14163570564�0025540�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20191231153416-07'00') /CreationDate (D:20191231153416-07'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 12 0 R /PageLabels 14 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 659 >> stream q q /DeviceRGB cs 0.8667 0.8667 0.8667 scn 48.24 805.89 m 547.04 805.89 l 547.04 805.89 547.04 805.89 547.04 805.89 c 547.04 763.8157 l 547.04 763.8157 547.04 763.8157 547.04 763.8157 c 48.24 763.8157 l 48.24 763.8157 48.24 763.8157 48.24 763.8157 c 48.24 805.89 l 48.24 805.89 48.24 805.89 48.24 805.89 c h f Q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 62.74 791.0774 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 62.74 771.5403 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn q 5 w 0.6667 0.0 0.0 SCN 50.74 805.89 m 50.74 763.8157 l S Q Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /b4e9da+NotoSerif /Subtype /TrueType /FontDescriptor 16 0 R /FirstChar 32 /LastChar 255 /Widths 18 0 R /ToUnicode 17 0 R >> endobj 12 0 obj << /Type /Outlines /Count 1 /First 13 0 R /Last 13 0 R >> endobj 13 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 12 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 14 0 obj << /Nums [0 << /P (1) >>] >> endobj 15 0 obj << /Length1 7156 /Length 4268 /Filter [/FlateDecode] >> stream xY}P[ו?>Io W</@Llc,@`0_BXrz )pBYvxq&:mL7yxgR&;3f?=v:m2֠=A:M{~=s{@�@/ORP�HDw͹G�xEt!wh2 ]@oDyt8 _Cx{ϼwe@<LA;A]+(C׊QBt`<@O(?xP y&ӏ}hY=S,5-o|}�4^dDtWTcj/0? 5XKj% iNп#cg2G1:�ZhJZf.r1vK].+l~dg3+*b;w>~q+ܸ64h-iEĊa(WȇlCrTYӶݛtSEyUT华VϬo-udnf fvRnc];aِcil"\I*f[A98zpcᶥ|b6YqӁ@-KO9,SCΓl9;';+:v(o]:+߻׼Oyة|j{S2`]hw!NJHh{۸X+%n`K%Nʛ5oG鮣{/-\w ׯ =h͝ާ=FHuW~8{"[ +ZwrٱA̖Iyú~1ڲK廫6l]y7+RO7zr6hzǶʂʆmXV6ؑEw5{I|6Xf-CS6Ҫ6V{ϾxBZ5 Kㆂ\>p=2pgf?2aOfJ:HB j{~5nx^�;;7_| odo?uv  &xw96q\-t_?oD2[Kc 4_Ouz@3yK ǀ\Z~ȯH rSW  t+[Y]h].'P༆3N PW4\Kp�pM3j H로kLįsD4psn2rUÍ|`E ;i}! χ*C'CG UB+BMO5*r4rgpmسubS 뉎X]I6$i%dNAf!00{K]C| z `V;"SXJ IZAXKŘGID&V <B#T0!M !q4fhtp2dlQd Y:k4D( ^v~%J"E[>hq>COƚ`-'<1dAJCt0q&V;|L )oawN! -w/wN%%8}N8J0 ,0MJͲP46"#_bXXʦ:v1Ù]#lT*~nm½ش}RIѐ]_ )bdž$ӆΈ!eu1"&蓩P$L? .g$ESH=L(<_"J4Kcq%U*Աϳrݝ,IC`U{Xu{z<uXHwknqy0w f~cJI0!|M&Y,"O�|l"]I2G&"l* N*Jb:  #`JȓJ"z66`3Ȅ[([KaNMO7N 7ͦG9*#o3mͳ*,t=Ga[P="/DZrEYG`tK܎c�xr;X܃OZX0X=sXb ZNBHgbG& iDw7?D?ȯ }[3Ώd3!*AuqarDBZZy??NѕsraÌfS0NQ]>H<%#SXb>[wl$q-<q 櫟~>D'[M?,nsM_ Bg1&I 3fKoJ6 RȫXKBd@HǖW͐3bʐE")^$"io%8Pb, )F�uN>xIpۄ] W =谖 VnM0E#, 4:ȱex[ٌȼ 덎 SI<7&iI /(A1\o|}"y&eUs?$긜[~yR|4gϞ~VgLğ{FD\2]W/%rRu\"(KW/ūu.^x틙z.ӁL;b-TAʽ7drt*$Yȼxr"]r^ Irxoh,l_,nKXYa1:8*xz{o{#P+jW1ȖFwcc{M^Jo]\|.Z|Xxn?yj~S[ۻUsUYKqpV{}|бW񩁭^5 oaôu~#tdV\$y2Y{ZH.#$d[ |>~jfDH@eYMdGNP[ktIA6w-p}@Ѿ#=]nqPi׼n۹c{6ZUn.1s z^s�STvr* ;^Pck59Nӑthk:撙!;e?S?.BV\a'SITpp"|~^ܩ|^>6dg u`OJ5`H__ףNR5t9Ep׽~rcڂ S MKt V%;]P+W:Rk9k<OIT}IfOD Z5PcxӍM2sBfnLf&9=_P0Q 7YT~bݘADlb-/ ~Q7#S/܂PP|Y_-Wa4{Z)垕U]MOHvչ1̧y(dZ*KK~_2'a~;G‡MB(4[}h 2p hHlGp;j1r7qD0!8ETWrJ<Y'hTs qmjw9̕Fr#0FWMW~''؉9ݕ&Ԫ%r,VG S<)ћniVaJ;G|wlո>KS5Z$?*`nlX95FMhe>|N/k.Rאyuv/<ߚ(v3mba^j@"˹WOVdfc#"9CGiM`e;SuZV;Wؽgr'ex;)gb`ΈI;<[xrJ_|R%#uxuмn`gG|W(6� 80 Foy0'zu8 ̸_Y̴QtY!0~ac<],p:9#GT"wyB jtrsp7p<3l$uM.zʠ_lk1Pwp sKfR.zoÏ[E{gk*XG xCĄo3Y}]7e/ӿ +XYx ΓnX\MۖJd8/fH;~=㮉檎7={;LF^Z8~;\G]xN7V i׿vi(܆+XaxTk]Rh}cG2~ #Eݧzfj4 eޣX!ljY}~/'qnf.dȌSN%P endstream endobj 16 0 obj << /Type /FontDescriptor /FontName /b4e9da+NotoSerif /FontFile2 15 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 17 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 18 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 500 500 250 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 623 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 613 500 500 535 500 500 500 319 500 500 500 500 500 500 500 500 500 500 352 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 19 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000001549 00000 n 0000001846 00000 n 0000001888 00000 n 0000001936 00000 n 0000001988 00000 n 0000002153 00000 n 0000002227 00000 n 0000002352 00000 n 0000002397 00000 n 0000006755 00000 n 0000006969 00000 n 0000008331 00000 n trailer << /Size 19 /Root 2 0 R /Info 1 0 R >> startxref 9245 %%EOF �������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/verse-border-and-background-color.pdf���������������������0000664�0000000�0000000�00000025601�14163570564�0027543�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20191231153459-07'00') /CreationDate (D:20191231153459-07'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 12 0 R /PageLabels 14 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 1011 >> stream q q /DeviceRGB cs 0.8667 0.8667 0.8667 scn 48.24 805.89 m 547.04 805.89 l 547.04 805.89 547.04 805.89 547.04 805.89 c 547.04 738.29 l 547.04 738.29 547.04 738.29 547.04 738.29 c 48.24 738.29 l 48.24 738.29 48.24 738.29 48.24 738.29 c 48.24 805.89 l 48.24 805.89 48.24 805.89 48.24 805.89 c h f /DeviceRGB CS 0.6667 0.0 0.0 SCN 0.5 w 48.24 805.89 m 547.04 805.89 l 547.04 805.89 547.04 805.89 547.04 805.89 c 547.04 738.29 l 547.04 738.29 547.04 738.29 547.04 738.29 c 48.24 738.29 l 48.24 738.29 48.24 738.29 48.24 738.29 c 48.24 805.89 l 48.24 805.89 48.24 805.89 48.24 805.89 c h S Q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 62.74 791.0774 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 62.74 771.5403 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.6 0.6 0.6 scn 0.6 0.6 0.6 SCN BT 62.74 744.5609 Td /F1.0 9 Tf <d1205061756c204d63436172746e6579> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 11 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /Font /BaseFont /66ec5a+NotoSerif /Subtype /TrueType /FontDescriptor 16 0 R /FirstChar 32 /LastChar 255 /Widths 18 0 R /ToUnicode 17 0 R >> endobj 12 0 obj << /Type /Outlines /Count 1 /First 13 0 R /Last 13 0 R >> endobj 13 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 12 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 14 0 obj << /Nums [0 << /P (1) >>] >> endobj 15 0 obj << /Length1 8676 /Length 5347 /Filter [/FlateDecode] >> stream xY P[יϽz 0F6\qIyӼ$aacun:ql674w'%mnt;nvtijg4do&1hst:}]q=w{$�@ X@ ώL…)c dM̎b&DhėqS@byJ'G\@<gHIߑ0w<AZu{0%H{áH|BS@oO68?;x@wkӁ;M�Y[�xhxl bpT} �n;!@]ًEqbW: %Tk ItB~gp0| wL7 |ՒZ{Kw+GSON dV5r,]*'c:Ѭ5YY9WouT BuIq }PSĮ+.* f$VVp~*P^#WGdh$*X\qFMxZsӳ'.Mw-FWPgev?w£<g (8KDP]z_pq5]:U1jC'݀X{rSnA\|ԼuBw0u01¿cOLȫ-KWWPWy[6$d^5,Vfq3ܲ1\+-P-\_yrvG}V(7~SYMڼO&LۛX'Q?}dW(v|?ϟgU\=t6;CO>bM ܅ݏJø(UhBR DgRUۊTF]uUMJ~wc3(Mu~sj^BP߾jq[~o$tR/b>nP?`k4g^zϸ uP2Wm.ji-D} QYʡπbQΥ:ZldMS=ݵ3;eVl(gՒY/͆no}jwm6mjq_Zs--%2+:O{Z*՛[OI C/w}bChg4Yo%Uw_#'!g}v۫-nyK_?1MWSo<q񭇷on 6M/kJ.$:̿tݷq] ]\h3!_\I9Uyzj W+QsGFƲ=7_]_|$'|{v9%TEm%t}7 +ʰr"93ճΕTS)}yc~;2sgfoٸU` =OL<-<|Yh^^\uoąSY;0go-]Vlcm5OWJJλTK(U2oZW^~2zqn#ed*p.(M3š}GZhNzg%ԭKx/B҂R;u[“Y*K}Q}y~XΏM bOPS2yGq:5FYrHj$Y./lRVŧ Dv?I^ѨΣ<({{f'8͘Ut}Hk}{l'wm`y|ϡ gה/o1ޮ"y44|>H@-n}\k8ͲNquC@$Ul"&^~07dRو5G'UyF1/cG[}s{3ظ|25`Sul*8фVJ9ő:j}14#R.nX':ٍj -&%MM]Ȼt:TQxn+9O>,\7-8bª�t vL.(nC("V߄Cv8ĝ3�蕥lPԁYq4ݢ:͙\Z^IhACXM,L jqşOaJ)[+ 9y \9v'dflq) EX,PgC7B?a7x`| 6,8NzF z D2^qc-W@" +!T˸rH@K HPQq d+2O�* Px"`D$~&I7<BƓşqś2 O*ítpl<*lTlB15b'&:04a !ކ.V6 !>:` FfD&9:+¨�>(0~0!.\!r2 f&|l̠@L MaTy7ʅ5Rv)&i4P{5 LG)dAFk h ڣ&0R3RAL>!:&}ZY);}h�{"¤[9?omHplJp|mcv!I/ƃSQ y~/ BqQjB>H8δC`t 0+ Ѹ`Fufoc5&c YEQD3>&rǞ&4FE Y^85'1?ٓT#? n5MEgh4zo:@e"8%gi!:Bo80g3 w$[?NgGrf,Z2awv7 4:Nw@hu:z{r=CBWGLQi!p$<Dд Oi�8OU w Fa756]ӓʔ? LOѰ L 3( S(G[5aLI`ED >Gbň ,iT3^'H7>{}2DU*Xt53ʊ0j�e0RTs{ߩ.F7c|:ٞmgf_gP*;Zŭ3ͨ#hi4$+Mho6 3BK2;a|,ua$G"'^hE3N a6wjN"6tu_ՕS$8a M{FB}f/Jztc8N}$m0i]!$|f'L֬#YGtVl%9H"/bK,m w9EBnꋹ9#Y[r-%rv_"D2r\ȇT! n<I' hKK` p  r5bj7 DJ'ɎW7M>z7%x"Vx}od#JAmt|6QMj&{篥_#J5RuVu%~_W}coۜddzO'N'G>'OB=iqW9r\g=GΑ/ygߘ+)>Lfz2xjCm!>7fՊX xq,^>6o?8�άp+QmouwV2hܽ+ne릋KۈJF6UٕYtV9vk3iWӸ+i7(dz,/.Fcע:6%JT褭:%{^!_:y l9=wPǎvcGy!Z"H.91@$b@3GgfG~dlraD q9G&HF E9`y.@_oϮΎ6lmjlYc{mMul*/+).*"stڴԔZTh2 RWR}�^ ϐnI26nN+r9D+C}y`'6QX${=?c="F a0 3n$kCy Ibk =D /F:\nM ]V >PyY*2UR3BW[°ט}9>7nJETzy@*mvHv ugI") 0!VD :мssQpy|âv0ypb;!I'uf{=W}_hخ7}0!hSn{4j6I2#WFV{Ef3') ;m|'xBJq.#]abj ͂NHS洌H3"r+ABynޅ9oÎ'Ⱦ`1 ]1If1,ĖURAMIV #,lѕԓѓ'G/v2vmJ`Fgb <Q)߫cV A!A,vt9Ů=*NQh_'Fb0<%MFpz~-JB ZtCiX |OpR`d>J%TIC}E(]o2į2yah_ j ơQP 1 dнQ0`꺋Zc,4pxƔFZJm^% w s9G@@;$nݞgFa`̰[Zi3n6ҵ2tZ˰,TrN<9µz[eP@ *i� ׿l8F `Y,rqLq)☕aB/匣?gC4!-D"b#ZGl\ *YJ-RB&7q$sg:ȂKf/)rNYu;j[Y�~eA<Co~u~?bS|BD'0*\yx~OpVqpD3llE!8u־f;xN<O_Y{i( c\@ o}~AFX/#ʗnb72|et�NȽ z?Bk7|>T>x{VqK Өt,U?BjچQ*4$"6bW\U\窹RbPlX[2vY endstream endobj 16 0 obj << /Type /FontDescriptor /FontName /66ec5a+NotoSerif /FontFile2 15 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 17 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 18 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 500 500 250 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 613 500 500 500 500 500 500 500 500 623 937 500 500 604 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 562 613 492 500 535 500 500 500 319 500 500 310 500 645 500 500 500 471 500 352 634 500 500 500 564 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 1000 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 19 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000516 00000 n 0000000567 00000 n 0000000839 00000 n 0000001902 00000 n 0000002199 00000 n 0000002241 00000 n 0000002289 00000 n 0000002341 00000 n 0000002506 00000 n 0000002580 00000 n 0000002705 00000 n 0000002750 00000 n 0000008187 00000 n 0000008401 00000 n 0000009763 00000 n trailer << /Size 19 /Root 2 0 R /Info 1 0 R >> startxref 10678 %%EOF �������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/verse-page-split.pdf��������������������������������������0000664�0000000�0000000�00000041607�14163570564�0024346�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.rc.1.dev, based on Prawn 2.2.2) /ModDate (D:20200104235841-07'00') /CreationDate (D:20200104235841-07'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 14 0 R /PageLabels 16 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 2 /Kids [7 0 R 12 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 5550 >> stream q q /DeviceRGB cs 0.9333 0.9333 0.9333 scn 48.24 805.89 m 547.04 805.89 l 547.04 805.89 547.04 805.89 547.04 805.89 c 547.04 48.24 l 547.04 48.24 547.04 48.24 547.04 48.24 c 48.24 48.24 l 48.24 48.24 48.24 48.24 48.24 48.24 c 48.24 805.89 l 48.24 805.89 48.24 805.89 48.24 805.89 c h f /DeviceRGB CS 0.8 0.8 0.8 SCN 0.5 w 48.24 805.89 m 547.04 805.89 l 547.04 805.89 547.04 805.89 547.04 805.89 c 547.04 48.24 l 547.04 48.24 547.04 48.24 547.04 48.24 c 48.24 48.24 l 48.24 48.24 48.24 48.24 48.24 48.24 c 48.24 805.89 l 48.24 805.89 48.24 805.89 48.24 805.89 c h S Q q 0.6 w /DeviceRGB CS 0.9333 0.9333 0.9333 SCN [2.4 2.4] 0.0 d 48.74 48.24 m 546.54 48.24 l S Q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 58.24 785.0774 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 765.5403 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 746.0031 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 726.466 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 706.9289 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 687.3917 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 667.8546 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 648.3174 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 628.7803 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 609.2431 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 589.706 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 570.1689 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 550.6317 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 531.0946 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 511.5574 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 492.0203 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 472.4831 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 452.946 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 433.4089 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 413.8717 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 394.3346 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 374.7974 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 355.2603 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 335.7231 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 316.186 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 296.6489 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 277.1117 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 257.5746 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 238.0374 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 218.5003 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 198.9631 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 179.426 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 159.8889 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 140.3517 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 120.8146 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 101.2774 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 81.7403 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 62.2031 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 13 0 R >> >> >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Length 2277 >> stream q q /DeviceRGB cs 0.9333 0.9333 0.9333 scn 48.24 805.89 m 547.04 805.89 l 547.04 805.89 547.04 805.89 547.04 805.89 c 547.04 560.3729 l 547.04 560.3729 547.04 560.3729 547.04 560.3729 c 48.24 560.3729 l 48.24 560.3729 48.24 560.3729 48.24 560.3729 c 48.24 805.89 l 48.24 805.89 48.24 805.89 48.24 805.89 c h f /DeviceRGB CS 0.8 0.8 0.8 SCN 0.5 w 48.24 805.89 m 547.04 805.89 l 547.04 805.89 547.04 805.89 547.04 805.89 c 547.04 560.3729 l 547.04 560.3729 547.04 560.3729 547.04 560.3729 c 48.24 560.3729 l 48.24 560.3729 48.24 560.3729 48.24 560.3729 c 48.24 805.89 l 48.24 805.89 48.24 805.89 48.24 805.89 c h S Q q 0.6 w /DeviceRGB CS 0.9333 0.9333 0.9333 SCN [2.4 2.4] 0.0 d 48.74 805.89 m 546.54 805.89 l S Q /DeviceRGB cs 0.2 0.2 0.2 scn /DeviceRGB CS 0.2 0.2 0.2 SCN BT 58.24 792.006 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 772.4689 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 752.9317 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 733.3946 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 713.8574 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 694.3203 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 674.7831 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 655.246 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 635.7089 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 616.1717 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 596.6346 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn 0.2 0.2 0.2 scn 0.2 0.2 0.2 SCN BT 58.24 577.0974 Td /F1.0 13 Tf <4c65742069742062652e> Tj ET 0.0 0.0 0.0 SCN 0.0 0.0 0.0 scn Q endstream endobj 12 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 11 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << /F1.0 13 0 R >> >> >> endobj 13 0 obj << /Type /Font /BaseFont /b4e9da+NotoSerif /Subtype /TrueType /FontDescriptor 18 0 R /FirstChar 32 /LastChar 255 /Widths 20 0 R /ToUnicode 19 0 R >> endobj 14 0 obj << /Type /Outlines /Count 1 /First 15 0 R /Last 15 0 R >> endobj 15 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 14 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 16 0 obj << /Nums [0 << /P (1) >> 1 << /P (2) >>] >> endobj 17 0 obj << /Length1 7156 /Length 4268 /Filter [/FlateDecode] >> stream xY}P[ו?>Io W</@Llc,@`0_BXrz )pBYvxq&:mL7yxgR&;3f?=v:m2֠=A:M{~=s{@�@/ORP�HDw͹G�xEt!wh2 ]@oDyt8 _Cx{ϼwe@<LA;A]+(C׊QBt`<@O(?xP y&ӏ}hY=S,5-o|}�4^dDtWTcj/0? 5XKj% iNп#cg2G1:�ZhJZf.r1vK].+l~dg3+*b;w>~q+ܸ64h-iEĊa(WȇlCrTYӶݛtSEyUT华VϬo-udnf fvRnc];aِcil"\I*f[A98zpcᶥ|b6YqӁ@-KO9,SCΓl9;';+:v(o]:+߻׼Oyة|j{S2`]hw!NJHh{۸X+%n`K%Nʛ5oG鮣{/-\w ׯ =h͝ާ=FHuW~8{"[ +ZwrٱA̖Iyú~1ڲK廫6l]y7+RO7zr6hzǶʂʆmXV6ؑEw5{I|6Xf-CS6Ҫ6V{ϾxBZ5 Kㆂ\>p=2pgf?2aOfJ:HB j{~5nx^�;;7_| odo?uv  &xw96q\-t_?oD2[Kc 4_Ouz@3yK ǀ\Z~ȯH rSW  t+[Y]h].'P༆3N PW4\Kp�pM3j H로kLįsD4psn2rUÍ|`E ;i}! χ*C'CG UB+BMO5*r4rgpmسubS 뉎X]I6$i%dNAf!00{K]C| z `V;"SXJ IZAXKŘGID&V <B#T0!M !q4fhtp2dlQd Y:k4D( ^v~%J"E[>hq>COƚ`-'<1dAJCt0q&V;|L )oawN! -w/wN%%8}N8J0 ,0MJͲP46"#_bXXʦ:v1Ù]#lT*~nm½ش}RIѐ]_ )bdž$ӆΈ!eu1"&蓩P$L? .g$ESH=L(<_"J4Kcq%U*Աϳrݝ,IC`U{Xu{z<uXHwknqy0w f~cJI0!|M&Y,"O�|l"]I2G&"l* N*Jb:  #`JȓJ"z66`3Ȅ[([KaNMO7N 7ͦG9*#o3mͳ*,t=Ga[P="/DZrEYG`tK܎c�xr;X܃OZX0X=sXb ZNBHgbG& iDw7?D?ȯ }[3Ώd3!*AuqarDBZZy??NѕsraÌfS0NQ]>H<%#SXb>[wl$q-<q 櫟~>D'[M?,nsM_ Bg1&I 3fKoJ6 RȫXKBd@HǖW͐3bʐE")^$"io%8Pb, )F�uN>xIpۄ] W =谖 VnM0E#, 4:ȱex[ٌȼ 덎 SI<7&iI /(A1\o|}"y&eUs?$긜[~yR|4gϞ~VgLğ{FD\2]W/%rRu\"(KW/ūu.^x틙z.ӁL;b-TAʽ7drt*$Yȼxr"]r^ Irxoh,l_,nKXYa1:8*xz{o{#P+jW1ȖFwcc{M^Jo]\|.Z|Xxn?yj~S[ۻUsUYKqpV{}|бW񩁭^5 oaôu~#tdV\$y2Y{ZH.#$d[ |>~jfDH@eYMdGNP[ktIA6w-p}@Ѿ#=]nqPi׼n۹c{6ZUn.1s z^s�STvr* ;^Pck59Nӑthk:撙!;e?S?.BV\a'SITpp"|~^ܩ|^>6dg u`OJ5`H__ףNR5t9Ep׽~rcڂ S MKt V%;]P+W:Rk9k<OIT}IfOD Z5PcxӍM2sBfnLf&9=_P0Q 7YT~bݘADlb-/ ~Q7#S/܂PP|Y_-Wa4{Z)垕U]MOHvչ1̧y(dZ*KK~_2'a~;G‡MB(4[}h 2p hHlGp;j1r7qD0!8ETWrJ<Y'hTs qmjw9̕Fr#0FWMW~''؉9ݕ&Ԫ%r,VG S<)ћniVaJ;G|wlո>KS5Z$?*`nlX95FMhe>|N/k.Rאyuv/<ߚ(v3mba^j@"˹WOVdfc#"9CGiM`e;SuZV;Wؽgr'ex;)gb`ΈI;<[xrJ_|R%#uxuмn`gG|W(6� 80 Foy0'zu8 ̸_Y̴QtY!0~ac<],p:9#GT"wyB jtrsp7p<3l$uM.zʠ_lk1Pwp sKfR.zoÏ[E{gk*XG xCĄo3Y}]7e/ӿ +XYx ΓnX\MۖJd8/fH;~=㮉檎7={;LF^Z8~;\G]xN7V i׿vi(܆+XaxTk]Rh}cG2~ #Eݧzfj4 eޣX!ljY}~/'qnf.dȌSN%P endstream endobj 18 0 obj << /Type /FontDescriptor /FontName /b4e9da+NotoSerif /FontFile2 17 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 /ItalicAngle 0.0 /Ascent 1068 /Descent -292 /CapHeight 1462 /XHeight 1098 >> endobj 19 0 obj << /Length 1286 /Filter [/FlateDecode] >> stream xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; JÂ31x; JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?�=/ί~:o?$O endstream endobj 20 0 obj [259 500 500 500 500 500 500 500 500 500 500 500 500 500 250 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 623 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 613 500 500 535 500 500 500 319 500 500 500 500 500 500 500 500 500 500 352 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 21 0000000000 65535 f 0000000015 00000 n 0000000258 00000 n 0000000459 00000 n 0000000523 00000 n 0000000574 00000 n 0000000846 00000 n 0000006448 00000 n 0000006745 00000 n 0000006787 00000 n 0000006835 00000 n 0000006887 00000 n 0000009217 00000 n 0000009516 00000 n 0000009681 00000 n 0000009755 00000 n 0000009880 00000 n 0000009940 00000 n 0000014298 00000 n 0000014512 00000 n 0000015874 00000 n trailer << /Size 21 /Root 2 0 R /Info 1 0 R >> startxref 16788 %%EOF �������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/video-local-file-poster.pdf�������������������������������0000664�0000000�0000000�00000013225�14163570564�0025577�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.alpha.18.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.alpha.18.dev, based on Prawn 2.2.2) /ModDate (D:20190527235743-06'00') /CreationDate (D:20190528000248-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 14 0 R /PageLabels 16 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 842.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 112 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN q 150.0 0.0 0.0 150.0 48.24 655.89 cm /I1 Do Q Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << >> /XObject << /I1 11 0 R >> >> /Annots [13 0 R] >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /XObject /Subtype /Image /Height 64 /Width 64 /BitsPerComponent 8 /ColorSpace /DeviceRGB /SMask 12 0 R /Length 2456 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 3 /BitsPerComponent 8 /Columns 64 >>] >> stream xZkG>3+ Y bBH$HbL%UhY2V-�CH4وAŐ!}p;39=;wגּvgvfPA4þXoŒ F_~we^\WR%/O+xֳ}LCd`g>�5Q̭ G{`5@X`BBpN.bȱ �,70!3$c =ߟݯpS^df;2.[>Ըk>w\_2vqӀR "wȽ*u5@?dG#�.(Ӽͫi^YH7�)(>lE- xmY ?f)a@ "{ˆhs,3[ZR !�Pܻ[2I >B>~z02HGO}n-GOۼưP<H Y Esz]48}ۿ(+5q/QٸAn\a47�϶.wG]-0ɭpL 8!b"S6|jKJ"+g+�[d/$ұOŽCwM1a`ڇH!B]~L̶o${ɳ0C 2F |k 4߿ BuuwӫHmX P ~byH/2!xSreHxSk@AI[:ZpDӜU  / fǰ=<&A6m Oؕm,J+U :B�^=$W-8ٞĕ^e6WKVNK9Cu#OW_̱p;oC_;93 Xb<wFPhN��1/ŀze~+=*0‡"U"JRCU>H,*`s*'3HWRwJXCrf`0Nn&&,J//8PrqtUªJ9oWZldRA jڻYhT.uFӌ;ڕ TZ'?(i䷿p?.Y*) )ݭEsR\G^+/ FsGCHB߸i1s*E8hW.<C˭UX(�8! ? ^+i\жWWJf|dS++آ<UDy$fɊ{Q2g.FGD{Ⴉ?fWN^\u֕n(fq4Ħ,4&q_iBb :O=9~Yws;܍R{"$ef~W#^%1 IZ)�E-_VoXcrF�r/ a UX7NN"8Yj;Bw.-x,|˺_fͽЇQ,'Ku_ސ~Ę0t}qɕmQwEr:UH: b+hZV ͡p_Qu} 4&"ٗOgnAUh\�xH0\TB ݠ1~b42L&gkoG:1~ MeҮz|Gܴ>vG#Q`ڗZoD6h UᱭC+H<(:Ի{d?(p2PVsﻻm8U{6~EΖFT1QŁ [7Xd!$8wG<GO{_QsUIj^8/3RhF32^ܩGm]OqM\<&f v$5*c;AOTV9)ǒGIU*q\*$D*tYoĕYe6Nğҕ,ۻ:knW uj!@B]ttu s ej)tdG$;?(K>4EǵV9^*8&ߜ"荳6״FUu=ٰX^:?巜LA/(:)3G~<*ǒ0]cK,ͰB`U%,C勅Q9 +rjmj3(Ɗϵc~S aN}ULS( Sv2/bpyN͙||YM<'t4wUsԀ{`}(BV/%[:0U"%Z0ä<̄tHJX1zCq_i@7ah7<%'Eɉ{ Q-&qcN ʬr& WΩ+8\<uKWJK?!c>n; k{gK endstream endobj 12 0 obj << /Type /XObject /Subtype /Image /Height 64 /Width 64 /BitsPerComponent 8 /ColorSpace /DeviceGray /Decode [0 1] /Length 491 /Filter [/FlateDecode] /DecodeParms [<< /Predictor 15 /Colors 1 /BitsPerComponent 8 /Columns 64 >>] >> stream x1nZA݊S#A.‚ J� ȹ!<)9D Lv# o7R,hB(29p~٨/]ϲ۟u[Lz< ơ{OP!e[Pez?r5CGKXzX5{7??yq氒޿ 6RWr~&?Wp^MYK';rmL09u@/#  OUkeXkrP4)�#8z[p`S !~oߧxڻ7$E{Uw>A13j]&AhDt³̢qv]ǪKsp̧Pq̇0w|̛k 5pBX]eǃ n&/OK d0n k endstream endobj 13 0 obj << /Border [0 0 0] /A << /Type /Action /S /URI /URI (spec/fixtures/asciidoctor.mp4) >> /Subtype /Link /Rect [48.24 655.89 198.24 805.89] /Type /Annot >> endobj 14 0 obj << /Type /Outlines /Count 1 /First 15 0 R /Last 15 0 R >> endobj 15 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 14 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 16 0 obj << /Nums [0 << /P (1) >>] >> endobj xref 0 17 0000000000 65535 f 0000000015 00000 n 0000000266 00000 n 0000000467 00000 n 0000000524 00000 n 0000000575 00000 n 0000000847 00000 n 0000001010 00000 n 0000001337 00000 n 0000001379 00000 n 0000001427 00000 n 0000001479 00000 n 0000004197 00000 n 0000004950 00000 n 0000005119 00000 n 0000005193 00000 n 0000005318 00000 n trailer << /Size 17 /Root 2 0 R /Info 1 0 R >> startxref 5363 %%EOF ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/video-vimeo-poster.pdf������������������������������������0000664�0000000�0000000�00000715533�14163570564�0024722�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.4.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.4.dev, based on Prawn 2.2.2) /ModDate (D:20200924085752+00'00') /CreationDate (D:20200924085752+00'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 13 0 R /PageLabels 15 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 115 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN q 498.8 0.0 0.0 280.575 48.24 525.315 cm /I1 Do Q Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << >> /XObject << /I1 11 0 R >> >> /Annots [12 0 R] >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /XObject /Subtype /Image /ColorSpace /DeviceRGB /BitsPerComponent 8 /Width 1280 /Height 720 /Length 233930 /Filter [/DCTDecode] >> stream �JFIF��������  )  )/'%'/9339GDG]]}  )  )/'%'/9339GDG]]}��"�������������� �����w1qTR{Mw YdĩL\ uKx Zj3Wjv0a1`q؎2("h1tz f 4AX[*.W2'HEbCĹ#0<DVj :kTNN$ Q&hxT걂dl*M4j *.`Xyb .6j"-d1qVrP*,XUހoRv,-kxX հFly햾J5Nd56B`Z1W,əf';Zq{M۞H"E8ey#ԫY`LH*J9e#cEb<J3J bk)#`` 8kXxs 5YõM0~Mf,q �vj"fk2ZMc\ҢEd6SCmluLB֪W_36t:Ȗr;&ل+聗`+10vʦ. 2G6Pwу|ۓ>%' Z)}5e\Zm2U8bUx:~a[?(¡t�Nwʇo5g-q ` ē%Pb6^Ì2ɚ$^`Ҟ'B͉sJ�pѳQU>\$ $3Z%QmUWS@$`$<l6ʴ/)lSMQP2[5`fCLW-$-XYP3N J±bYEJف&K~4E#boۣR}PŹS5|'2B>)s;*؟q+@Z%F-IyXpŹ{gP_{tE%35Za#0)Ei{[v_hzd}ڄ H% 9Z„-sȂ)pY}! W8F&j`[̡X%'@ؑ{]c$.lYcZu8 lj~ I\Prt5V\s=rM.`pHO']# '%C(gϑδWDf,BW ,ȬLh\'d Ɋ{F&yׄ ? '%i#nh: 7.CaX ?xV'%虣*!_3�iVs>_)e1+A9볚yYYʖNcUf[֕Ml4 Uk V»wiv7'Qw%aC EAkJqBGqV,C0Iek$Vl+zJ&SR&q 2֗'@ d>u j"É;yq ;+UQL"Zw掝ˤ!fBgKrPa2`2U?")ZuzzOVEaoHu5g+̘EדQ7f5{tbeE]/!߾Q/81\ɍcc2"ʿz~ױo�oeJ~ ePgoNl v--/[W7 YiҶTM i@ᷕ*G_c^RބJ duDmY_1FIL vWXBNKGCc+],-$UV PcJ>z\Ӽ,aV?(V؆]VWѹL']V٭+F/IfxI[*ixNмlZTJ ZtLM4g+FġRՄk5Z qp);Aj(ynW+�nvMT Z֭ aEvdA| DM؉i,KzNӵw受}{ϽqYteelx_UO)eꃸ2/̕qT끵sD#\=|jN5S^l3W*#fAR2>Iәjai*X $d~/I){{R_ʖvvk0$;ik)}{Rau5tгI׋gU׭ѩnWjliyӜvAgoX^e z!:&s23y':mu4 < 2@>Xw)a@sq@uZIB$E"7j P72I AL-( aJδn݊kRxr9)9]C֥{v{O'YkH8ՕrD!b`ӌ3!nV1g5~QRJ#vƖuU)Qfrb),0jj#uI چ,ݕ0#vFaOwǴNVgz^{j,",1cq}kߋTڃyEt %%CA%綪[R*Vh!k)k2 A<ڒ_"X\#3}g/ƿ>dzw)VUee'H1Z4&k+ʧ2EYW\k--'ҍjekQ_+\�9D`ٓ7vșuP b݌ّ?_K{x?e}eS]P.*Z*N.Xe՚L0O_5dH1RTTu;%`r[y\{QU'% q+,N0q64΋U ˪.}#./C ޗٟV ',k}Uz2�!YviBG|(,J6q셯uVOrFJgQm[΋D";d}ʖH,/p-#_wϼ^~C1N2}m̪U:^y#ʚʙax" 5kMu>BYUp)VuFGc:խT# P�uyLKaǜ`C[_8_XG}Q;b״}w[ &$g3Qy D0@^@IYaEanf",U]p�ftֵ4ʹ8rFGd]xRgZFݿ[K_>g%"ԢڱT6ph&ȼ" iV8zYS,Yٷ{>mq{F( 8upNP%#p\ ~z- k7m=2^MDNyL{ٰCki4_wL04Lyrz nח ERnTaxJAh< }R]R&DuHy2D�&٫,)4d3iJ�nSe~>> -ptw]kuKyL?2RZQ � r1 8JZlC SwlfL u̻ŐrRGi8ڣ]h6 t:d{Z"mea?*mGYYvOD\o gcJzvej9)[B&38S/+f @6Nݝv5)*ؙi3[Eči0 #kD]ZY.]!"Jߒ~@៦>?2*WVeY} a,Ll2ǫnU)}g*ī]'h\n5s$ XKI+o8x BnY+Y�ruvMLe .k YB ;s|.S�A}*aϰ$y*yJ[%9)2@Ifi8W<5f¿^й ",jA"beApM<c&Dϐ^80hI,2Ѿ QۺYūz=n8 M%(ddK*0Eٲ!ÔL=Xk[sQgjf2Jk4cbYm,bapr!t׮eV[λ.:eeg>:�={ޔ!i}7J TK{Mn{ η8^%2ӈ&?U;Y(SR/D X6E ^EbN4zTS]P2rX퓎k^W.-}%¹V Zl5ggQCgtb /CZ 0Դ0b%TlkLc d:0Axᦆ"ǜw7JqX*S2o )V'۹s}+-_Kes׆Jힳ *:uVua2s}FLUVVqypy-rd[rҢ'mky:~dh쉊!Nu?=ծSx?EV6zG*"VE l+eQ%mM<+X!qG`AMYxSo*DB s!M)B6 "ϽFkjUgYtm{JS~w(2x%}M\ꪶEDd!Pf<5lY4G3dg5\@j^aX]ZxoH7Z&Xg+c]5u{˞aEuA`* 2fυ|_`-dp7l\GN*Yxn |0VN5 /ŋ8`)`'jhi/ @U"HI['٫>O$Ŵ٫Gve2΀GϹOơe}-a4PpY Do)l+NaN~Z b ejNX$ ;/aL`nVA7G�^>v̩+3\N f}ΑV` Ԍc]ie8W*E�ŭǂ!UC^S Y&2HVY%jHB}@ͨD=znP6$XB E}GTk-Zvqe/ Z<[0\< iw\jd&Y!$`T鰣,H[SR^5#XGҁav\1+H qR^ NL`d.BWHf40L0-,x̲ZիD}9^ )I}4֐Qӛ}{u-\urj5̈́`(/XPdl%dm&PЕ^%S_ZhL2L%j ybHS"HOӣc7ydO4j7y�A|B-XcVmR-McY]ԑqu5+5Ӵ5I7EDdq0DP=C1:\o<ѣR`Fm6̠qDƹ?t|tI'j4nY_-S_|Kr{e>QvnTzW:/TM2J*^]Tr�*jnq|Vi<YvWYw?.~kd90ڸ<#6}+Q$J{r>;@&/=[ϣOG[}r>GgVvih^*�ѻǸ2c|ެ[|޽WK9}I͹ӻ&[NhM8U$\6oVդ1%8 $5O_';?Kx?/PxW6wsո_O~˸^Ouα9Js:2̟r-Hs|-#׽O}(}7pnek \Vym>=S)ݕ˗N{N(qbGեT CXwG=ӲU7ΏuGChS#?/xΧKfgyw/[glHs_y :Re`LU[q:0->,ؾ>b-]ً#>o{/ʴ=kg 'M8W0y6-Ʒtϙk6}!Ը*ӕqoJs7}}[xGتp~pj#7~qԈRjC=_(nqBY|\}m|γw{7<n/랻񯟻'\S}k|ʫ�Q4+&L\^i)ֈg>XHS^(Y2R_}{g8 {3rAscR4`wo@x~T'[R)y׺/ɿt>7o9Fݸ]0UCpD5�'}[׹L.!#8Α9'[>R*ucWgSc]al].�7WrnU颪j;Q5ֺO>'F#>|\ v/N_~MV=S/{rlyf}\IK>}0G_`Ǔu'Z޶w'~JęgԻ>W$2TSG?kG/axGfK(>Ͻ@ �ֺW_l�,_GO׺o˺ڛU}ZgFŇU5l\{b '*r<`hݒ抏{w]?K|TGv>?N?jP /@w]׉r~ MeG#WȧŸX^7LlwOgi֕{>|:S;S}!q9)9\fX3#Jo0gd./.&:]O5xZ�w,|_]`#`T~Z;׵}Rzb12 ~?̗ayoi~CVRWb螭<m/5xڛF47uՓZ*Mk@1x~jJZ�GEEU8rvwpΏʸ`9g_Z:-_=7\'ȡ:4/~܋_kf:/ oK^m}$WӾظӽ9,m)WbB9JF9]JB 1PU!v�aN*-4Fư#֐\Yq,J[G<h/+I$hy 3lLεu5[Oj-x?+":qs[(dE,%<1O'J9gg*[^ 3X&XGr#^<$R2yeʘsd�$fՑkchqg�$YÆ+,Q6 ~8#cV"`؀nnڦQ,ɬ@y U'#2&8"Lbd"b$1q".CbErH)YzQi:UV, hhKq<c_C"WH??4'$�6D5c^O?o<!xO ɀc�_潲IZ&9LLFZ, 24s@a`˝LΎꝊwKWl$ip2o_?=H%Cm{UE'JoLv4n+ݍ~_Z;jo󻝱7Zv^~r},w,.e@,86kjtsweeMEfz�u+}NTDp󴃔븼T %ŝj6bt[l,m]ECO>oN*YW?_?x+}9睟>Yq8i^|u=gv.s4^);?\Zת{kn/ܗ=WצzOϵq @%:_7Ϋ֣:m��R$~WE f~ “e2xF}wL쿜1o׻|ەKSꏙw][ M 4?\|mMo#:瓫\vzӺ:l4{0o=Nc>j~ʻ7)cZ6>&N?rd{-ߓ N9Ie(o><JnA{%y6=w2>OO�'м|G�MOߐN_7}qlM�UoWg6|Ÿ'_nkU*|{6k9R=Jf�v^kմnwꏭs!O UH䇆ηM_Uhj3ԧΔ}kxSa}79V Qoqɺ8o{o=_Ź5պj:,9~-I6E_Ϸ+q(3J7E)͔t"~;8_i*k=HLng(j,/(ZFح=_Q3lܜPm\+!!>[>:lK(86i{FVOEyMZGrc!<M栅sfmMGsyň**=mVŅwI[z5~_|w`v*%Hg9Sũ\0,Ҹqz9_Rv։}u_[ߖ) a01,|l@ekJyWdY@ֺc1ũhKkNq',cҌLf}!kZڈ̈ؔge5wSls}[Ҭ=Y_�=Zt}I6Wc*ȫfU$"”ڷSLmf1װ0!F f-49 Ď\T<`׳G9$v\Gs1-_OM/;Mm[|Oy ݿXgW\?t1L+YϺ_(ۍf9E  2{np2Z&a:Us>#�/޿׺.)<>%6텭+)h?X%I`Y~o-)_ ]z?~LT<>9G?|{/�Xw7p;w1 ’cVkZ IWȴQ�4Aۮt&ױ3 ̻Ntq c(a[N]*o?A"'�K￐v4A}|/>_MK|I}\X� bϏWW:,|NW^In $\hk Z>CӲ$ֻv.1r){K9{v ]|;˛ERi3z~sc\5i +4ox!_}<V\U 9iE-%W*ScesJKcwKʣg31%)JqzFv&DU$ R6 +ch&(F> 'U1?C9/ L/4f `FIDKvaoUԭڂe넦RQMsR}ytCsvN8W^,C[-h]kġ!=2ZW!#=fWBvNYI0Eb%1KӚ$)4)*601IϽ3/g,dsTN. ͍+F(d*>gY]+S]Y48a\Z,ī S<?be0ulԁ]um9% -xLJ+^؝%58̟VmȰqB7y$%+)D^lϭ뚶aM A3z9(NLG aڙymo{ō6Waŀ i NXOSnRŸ́fa6F Cqb3zSc<$c͜NI>e mu];K+Azait +f7H&ƻ"fTQ<QMc۵QHk&r:^ .쎗11?fQHXq nP<CyZ֩g\gžݲnZk TK-ծinO{_GQ̥{8sFv$ةEpgc5.WѦBSž]Cpb1qcmDE8X6^,G$!ޫ326/v] V^s!^NӢHO Y(d<z,7\[manGO+<6oqX}]lKa,g91(zd}/fs[kib3LRsJݝս(QVWR2*lt?`x`iMh%Y,o_[-뎹w]zf|vYaFIKX1bX=f2}ޗ>l)hb,e|d͢&55r +HbŕliX`Nv58p̬�;Ri5V}6}GS٭,Qk6rAK1:>=dHىEE)%XAؒQ NF\35( 1 P"׿qDToqZA;[4}[)R6 W�q.dMGÿ_4*F]Y9urqcBx\q,̲f$xBuW^z+֣jsQTq,HYiwO*!b⨵̊k!";10b,I+\knV"C<"ݞ9>\Rr^ZUo5vqy6O]NO8j;4V@`^"بEkD"4vS7q^"eWN3H56w[> \|N!cűlɰ"A&d?3"_^R"Xr\lZQT1[b17~oJD땹5f;5*bv*"+-\ZUUUeޱXc. tNG`(g`*qʮ(&ˆUP@B΃./\e*6o:sug 7u-t{umē)&Wʗ4Ŝ%/5Zh9xm X{_Ԛ0Ɗ'yBp=lk5#~ٵѹB!n^j픉2$z+K-x>]6)757W|e* 58f68Znv{L,4Bilھ7gO5طpnC~'+ETQuKXY^Gk@=S(222;Pjj5t-Y[Ł-:-ϞܹS+FUN֫!z`*,i{)Wr[׵a[6r5duA,j(;g޸`5jAS.K%mEկm[ Ar kfM:sՇauv҅K�Wq.FJ[v6'ik~$JZڨz:heu#H�g ?Yjk@3JPRb),dDA37@_K_k_Rl;Z-j3b\ͪׄ[kkFXE-Mt|#U VڅkgQ꼤25x-qbjL>E@X[DR!<1Px>[bct}\uOl:63h^bzКwOj&[{R<;l,Tmt҃wb>�5` $"̫&ߚڭXԷn: "N]}]|nG*^NVhW+lG> iϙ g^+nrhjU= /uCiK|*>Sb�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<��!"1#2A Q36B$57aq%&R04'Cbr��;)d9hPYS̹|T.\ $R]f8ڕq1Fe+QIvrd' $eV'lXj6m-l.n .ȠEV=T]\[6 Jb`I.8c-Noah){~{qh.һ*2kSY"y^0J{]:īj$dfr<JY.^۲m8V  U{~K$Z!tH>Ԓ{N!}|TF' ٔF&3L"F^FT~�> oFe,w e�Pw\oL x€kbUJc0VxLn$;#8 J5E&HBv ; Fl0i i!-``d-DJ1u!Wv$ GQϕX%0D8hG_R<e(uQD4;F&݋N8g\"މR=h%ZP̽s[{1RO@b@VSN)SaaTy7t ѭE�6yx0g�eh&wCefʮAc gvI.dFu""E`7۴sQD 07C2HMC00nN{2e"n �33OҖBujyK[8I^Fkݭ{w2OL<.j+w%9^) uTO�Gb49H;@,DmҤ4rd +CGAK#L*} ˨f:!"<yrJ2G%Q`̌%c�U2{ `a4*Uf#CMB)[H%誐M*4$M>4YYsꢀ_]}Z`M6Cl(HPjE-/"ؗ̃y̒7Rٳ ( v-UT ](g&4$V&,; 841 41ʤ80ƑCj<unԅ*8I d2w*DiBj]\9p2ے er)<Qw{kd6P],쥥iXYUX_ "ˤcՌMt("b|Y#* J l-/頫fG`ܴY9չDIG.J"O֣1`a_$Mw2Otֻ HH Zҽn}TDX0�rS2Ӵr1壌Y}A *H@h XHåK9I`ço\%_ԣs$]ڗ- DUi!&:?m<B"fi./̊uVrw~Qme#Jo> ¤U\YCIV WE/$Zi\rv;q* S!BzR싗B?s 0R€0P$XCQ uT|B|{E&c Xb57'h= \zdjREFaRBaRm!apB&־(e LC“ *̨;1u@uia㲱 >|ؤl+Kj!n ,X5&_+>h[ysF̷uݘŬ@Xi66m%! 4^ ה@arWdV6Mr EE$`_CCe(>Q̃r.;.1<B PDNTA,K�b1BM;4R"iR\<�%*8UB̅$l;Q$=9V\!|z( �ꀩ'�:fL'pDRUH %vV9kx䏴m"jlhFTh] cUXc,.|tV^ #'lYGh~*gLK? YK:,[ OmEpƨ5X[֝'zGuQr슴Kߨ! OLYXk3iQTт*8C6L2J rc/plIy^ZHW陋CKZ\l3�c~[S(PXIq*)ጂdr˰lD6zpҩZg9N)w@B؈"Reo\.vP Q&:e%)USR0*S[RFVB>䳫DUxI PDAv x! %`5:,lp%(]&4GX$ џV,`W:My!D'h%," I㷔MI`s$iBƅ#XǩY$`;{`�{vd:Х 3@@J(l4lN!ص4O|v3ՙNddRV !egf@"vwljRc5bg=*L_)TU3 cI"eUX t$24{2Gx@n#`K�%XЄP6mDŽ3E@jQJX^HF�g. A%*b!0(h#WR2"@2Y�!rJRhM,Yj&\XuYк"r(2mJ&yG˪4r0HqDaP̍tl`vX(MlԽW,K+,p,hdhI鞫Y]P eubm$i1BbAB0Q\kEvU9UERVf@S:6pdFIQ ;M]ck%DUd-Q%E5 Xw^QϙQkGR.tCpFaPu&vQLJHphˮvRTi�BDrd̫50PpD̶겲0*L}SS.1FsiVQrsHȖRfޢX*2TLnia+~.ucɨoZ`.&hjzE<%<wx]Nv*DXȅiS" Zy `0΍hh&.:KJ݄ C3@F~۪(.'sEDfo1V!0f#$V8.ûjV*~.VS,ch+"S&~ r RC6Ļ)(yXlLqHB>u�#eA~#mGw")cVڤᘘVOh3VB Y YFY D;WӼV3rlKh4N^4bibI'&WC,gJ&M1n0CVgCiHzqFM"HGq*d,*HDZviq&2X1"{�U`ɧEVu;3mTYVJiV5¹iRfHYU:őjʪ+#H*XH|PE¢ RV]ZslNI(<Sx.WmTmO[,h8sC|a!JMSX,DvHjN d?bʆwbH{TE,@rqq=E .VF,dIFQ%4UɂYc̬A (YT7=L KTy3:#{k .`"DZ200bQe\2oL"]8EV`3(3 H jL~֢J f,Ty c^7ΖҕeB1 +;z1C){�J]$Sfbg1`]'a#cY$A.$O#lT2`>2j>I'f>y< '4p"> 鷡UY#{ o#akz;(2@+M  2*/ᝆUof@E}*&!(@{l$nai^)r+9*#V@m``Y3CrB1#}u \@Tht2BioVTFib]"pIEfd:4@,!0PƲK)Eg wJ̣Ղ� H'&DF>2lpp%E]llJqN !v "M駗�.VB{+*ùN!c}ĎT攸z[oZ DEZqSg9%Ӵ1/4#�8S՝L5wbdz}<BF\@U "`Jޭj'>qF`|(#.vB. s!HɊvmyDURB8vFy1"*+[iOiIcDa<,a$K!r24 3HħJonFyB%;!JSh61bKQ\o ˏ[|8l`xFsQG#yg?'苚ID(Rj$==o_*Ǎh? i`(тOq DYtnʌ$"<ԍR#н 3+u �ḪϬM&@ɼuݚ ~$l;:vb);$Mk4̚ n.Ƚ#� T+Ā˜&CHDt^s5Q3֦LkLaKW ePݟGG%7s<i\3.fUa_pl)_+ #m,H;n0}I-Ɓg:+E ~ةxK*$D,XlQ5;F!gub|eD16/)YsP۟{F�̤zɰ9q-e")ϥ."R,(CGfhp3=VINv 6eA$bȎk@Z6LAFHCɆ)-&=[P6c+pA�lăBm$v]l%q'm.Y6pqIZq%) %܂ƈ(k28ÒkWob] {gq9"]TKo)W@I =}@ ]iI;`1 9U+Me؜�dd{~٭DHy$URV9ej$DR0[muQ"_VGb@n۳ DQ+,ڔHh"J ybM[Z`Yva!S$Uܼi�V冣 pܫh3Bzҡ?`˵ I�Ej4aUdTXI.e^d+BV�%Ȗs^@TVRK I',dϙ@�Uj8فDqCdUi $z,•=#=Ъ^L`װh6]&%4I"o?O8;w /3*˹lV97edg8iRDQ+&WyHtaZ#N%1 gEAFtBA\kfg23l^0{o FosmWҼAb&]*Aڰ&##m8e3h7BEшb\#"ឭt20Vj`2uT.dP mNU0PK,J7%[v$gEy[$ ⑏t(6PddbTq{;w!hUBd% H2 JډH9p" e�]d+ B0%#e|:tX "G~BGQo$xSp/6YGʫ�UT**@W\6 $A[%V)!;;  RBXX2cY~=`#^3R)V 5eZL֢]V5PE/Ev<qUz6EIi@ ~)ܕw`aѢiB^1 wGM�DmTbR]DPXr$} Dm"#;*E\fp4B L <p9UJ⧷`Ib@7vD"]U4P23 *&Ĩ4a^>]FRcJ *`JV2%R&* 4$$xْDRȯbUgVm  P0?iYmC 4!e�$Z4DFxy$Q`+is2D ؝i*Wm;lj<ALDENٕ㶉(6? 1R0pL<.COss!<%%WZݖQuOyu\}̈v_mxSKJ>nYX -=ʨ U*M�isF?kb%e2ӯ#me$�"-QM0kQ3 2X7fe{ޤ�N[�Hu V2db'sbW휉!%P1Ld#ʂ:KN /`P̍=+1J*.r3>3yPb $g^ߢCaQI= $5lfF@1O}"zdN 2[ AJd]q쐇%S$dM%Ĭ߶W%s2Q4n=HõDvxugK + BuVF5 ˂ Gz;e%.ĉ^<NAvI5,:S*$5qi$^'th@+<hVbOM-1]G.B~SQ$,2IBҖ(ǣQ#w*#hثdha&DQR V P|<D$^[HI@wAW4Am�<_FT J}g#Y XD iQ%_faI�CQ ) mQ�%걮/nŤr.Kb,WVqA"ح+n2ȵqA$t R> foӝI$9y )9$ g,Jb"~I%N .A,rvFD9FsS#Xe[j̚j{n"QLjPIqi F,8`�.%)Al�6ݔ(.Yц9QmAѹ̃!J(U 0":@0=5,jtFev@KXYSlN^W˺J(@W,q+i$+c'sTBԒ']+oݨ2Ԫ�̰yh+#H^Q$`r<y1K)9uHlnBAQ0 7. 1c9l7lЕRIu-$dXPX<j%ɢ nlHkڞ0F)2;v82rw46"(i=*wYdd[@2ƥie ƧbaE Lir1R0XjEE+NU\$T#$xs rk D,;`f޽MQޒGw5n ƿ-'GDsq8iLśbyi5~Vmp..n̿p%nKi4ؑHM2Y̑j AiF/|*Gp)1Lv;k4f-X#qQ{QX;''%tmw'�,}BUu##CB֪=v𷌰t>cSLE3/e|2� e$`ԨJչDfsqaU[:3j:�ѱSVv2-&0" jՎHziZDYh\18RKO*P%L0Ү#wރIݘXôF9`<JYY` i=}B j0SᜰodYdMb`΄)X~cUeeTȝ�YJ"E(dʌ!@{="Ȳ|AC7q^hVBJebA S\~2hG"J~ũ̎1l  !k4R\iHظ%\Җ26&(fQhۍZ0�N{mH3lX#v;j^jNS�WOODߨMu/25ӜVex(|MjqٰyUh4+ a2PHJ"<T֑wԛMF vj ѧT}([ri?USPS:?OQRI0&b  E> iHf@.&T�%M &j@,wt+bJ�{R9 F�# "'n׾: B::BP –&P(e R?sc-ib'kL5Cܕ&@ZI]Ato jb%%mTRDj$�9X@ VC!DS4lc: D !3(" c-ҳ#yTQIc<yّ1Pa1RTXѣ"YmxQ!JJvv A+*2a$ + EF"< EQȤzJ%,Ėf-F B٣*FiUb%ĸX7 P|b5B gZ1҇]5 FYQ*5`zgpe5>2330*r\]WV/xnA"nXωYn0L%hsU ,al FhC|5ĝOꣻF%ι{(_EJHX4GqRʠ ĝ+x�#d*EIu%A.T{d3$-GnDdD.fqR۠*E+ @f 22 Iр_$%M K(EBYv: 1n<1J<;*)�1rTR1.$5*.9aJ(Y0-ؼnR쒅Lz2#2( IYujDKeqKļP*ų+I졣"k+ElR21If $  HNʬ=J%KJVv1"+qGVQ jE{%e |H} Y*g!L1BywX�LԠc Xc2h14# fGd2i�;*:0#B#CK—1X`wa3 dlT5QAcmY(SS6@ϐ ZD < J1P d{**G�tuHc+~un?\Y)#x\T(BS: �@hE %%�$`])G ]8Vh\.$7E,rQL,HA$ji_aRnYGc]j]AP$Eȏԉ Y�#f!݁"fViCDQLW)&F,*Bh J^WBF, !72Pp@RF5# cĻ"꽀PN첡xqQ,$b>iT`wRp})@6CEad6C'Ae5.$s &1=dcH\yTlE-HEvF*DU4&b�p+*Q, yH,aHTx,KhGUGF&Q".Dbs6]+XFPJd/gdMQ+~>QD�R᱐ df BtR2D#}T껡O%ՀشlsSN)AEwJk;O ѽt`tN)�v ~&=HA9C. Uwb! P�Xɑ!v2<eChQ�ԫ"SceSl q�l;w& dNhFmP^EGP+QL] K}F %IS9,D.(-.31r0a$MH% +TXrΑve k@dL$OĮ+yX�=<N!G64%@T3An$k1 .GHBc8eRDp[MMpHTkrtxݵ0-6(ā?kfqƲMHbDݬH�rŠovfRJ2A)&&전uX^V5\w=eS/h(N%`m l1HUԖkwRcTh؁"NrSw/R<|zh,Y$~61UH '4`O3`QrTaiI$ƢS`C ZY0rAv 뺺ZC,9oo9/R$;�-*f5>ҽ0BF9 QQQE4i,J E!#.SF$BZ\.$vAC2vPńP�wPUB&د3x+@ d$`dW,]e ʪ ǯ"2TTIRFqOɈd HrK($R[+l©eU|(ԨBmn1 1: 5*kDrf!GAƑX J!\#2r$PJ\9ԖQ*^qɃY,_X̱!C<<uWX +*!a%c0;{Z`H25O71W43 T.UJ^&;{"2#]$Z5\%֗ܔ%G+c"̥#1Z&9tQlݱ0^vh-3pPʑ *\$c$5,1sme.ua#Ǩ�B*T;|"ub TdlѤ>2㳶Tqs. A ?=%v\mq�.)nr )qxBMQ!_ {(֙˖%uSEp>q L7PGfjDMX) j q)H\i<*ƹH A걤LW3jen#&^$H'mDTr�gAgU+)cIaG54 J0.߫xӸiSB;6@wB5 /sϼrF}drBU U5#։ p={ 4,&q"M*J. e\Ѡze3�FIg j5xϫ)c4QƯ#lX/TP%T¼H3>dd\6p# 4iQQ$VE j$dUc2@{ġ3L*{ue9aWX[,!qM9cR[l)U6cK1*vVdKhfّ1,#lUE *@*X)8(N1ER(u|ԑc8\ w1em8{p^wHd'^JK)` I\C,_s#?XGfבy丩 BV@/&QhI gbs&uU ]CI(pbt*3$"~oojм8#Ѽ9ViQ\�8 i •v_UZu$aD1`k$nGdFu:FWbf4 B4̮C]EEZ\YXlyrX-)edf`ZF7 D@8!(L.0$tP;4o4 b{,E[t=FQ+&h aQY\v߸f=*1g,4ȱ1VDQ1uAWɨi0!\U 23.6#GHDO4,OMљ6AO^YHTP=JHخ_RkDFc1#2vŬH[Hf_Q씊Ć*FB&^* ;)!E hԀ4p)nhNG%~Zܥ"7\<WGXV~< }mڵ :<d5"�w9`C+  Q^r`!K۷lX`L.u, Wo_=\ƯHf 0UƕhR$9}Yb!p°Wx3)t(U0yr"dc"?Y0#b*\+j/*& jgbI/4qSpJ*;1@,hLXJ]좴 ۬jvvm@җ2=ݼʹ{NG<Eo.'LP糉 U}Î,j+I5P[*ݦ l[jBu'AH\ɀ¬:4LMTa .cKy6"ljT "Zx%aeK$z\EEWcX#/W,H]G( d;۔4̅Y%Fy$>* +jH‷p㋺{z!]̎[W*DRGF0S5ԴA"!UebE)@:[2溻k�R#PpʻP�GD,k�鋹ߞ קCb wo.oC`Qj jDIhN@dg\hmhJZd#Pք_>0%«DXl(uf#iKE5m"dMYCF0#cmEV3i4Z$#34ts+Usɍ.XQ#<mw"NZ04X3&2=ElaiɨiJL4Y!yHeUqjQ73M! RPtaG22)$v(6qn=vEأJ#<{hQ5D-ATJPL4TO@D+ Dž 2ra*3^B:i]UkUM&V XfSJ8#&.V0LJIl!TjZh%xSlZmP[eY KߚUvwTJu,"Tb*F=Ƃ/o,C=~&BT vE; ZIui>)pTkvj`,/vzG.:^5biew} ۣ8'xto(e*oHobO2en�$}uEkkUǫDd�L#V9>B,\);nMYYCq~_GB1P!nU Q d𡋨FUhBŔeI^TM#TP vJWIQ iVjMHy%HAQǣe"Ev%#=c!uuYX�L4c&K#Yb=vdiFD#I-s�cJsywecT*#m"n[>!}(fXpq@nrƆ2Mb( eį&_ٲK@2D5,tuf,򻢪e� :Bчn�mfe]f?)bҟun1|*R"x*$mB{}]2a}br W FViA R"Ď{1,=ҴUCݐr$f1gwe8زH5}M1ԢЭy5Xq͢zr6ù~C~zf:棔I9s%byUi/OpU<e%34Hk6=үW39m9x*#-TO'_-AK3)L@r{ycQ-QHԇ:nDke3XFEv ,҄) St*a9ldIvp#ڿo\K.eCSk#x-F4Ī2.B &)V9B]DHC *-jFW/3.&t12K όA$$,QDΧ1UQmlս%tI {L60` Q($1+=HS=g`\WJh8ҮyԸ#Rk;.Q 7h(2߹VO k2 ˢ+~ۅ0!P a8숄Mjhxr!e^Y!J ZB(,AK7}븇+Q9 \RDg@(YbXe^pKY<LJʍԠ!cR&*͠ ԩrtuubqP8mCYr*ElR׆h5LVtT<vm<?8(9>F{BjG ׼UKr\Y5GykxFzU,p loe]S|\GNI~_.63i2e!6/(\&1QJUfms.ڰV22½+/iI+/CD($G$(2ZFS2HJPf5iܡIua2 DUI;(*cdVEHrL62J#m^&#vy$mcO L3P5GvPFdr5 ꑒ"Z+*γC 3DŎ$¬h@ ݑi+w㵝mktQbFI 1PeI-ʦn+J]hNBڦ$̯]LzFb'ݒ5^@�%-,֣N ̨ HbձfI+>*m@4uԊ2$Z1``]gFq JڳًKm%?; (\THNEf8Iޭea8H rv6:n)1Bl^ǀ-9>~b^+,]*ĒI;2FyZy^SP$Q�Oo")# 8ULಪP%v,A�&cR="hجVp#р3_©9 VP%AېR0 K9&*&du'i>dN}"#T`l[OiZ#4t!xh#nRҦ%Q:A݄QY0@V:o-D\6(&>�#35vBj$!qs:F"P,IX.W]iIyXO?p fTR a,aUvlQ]HG3BƋq%B` +FƱTRi(F\74xi4-#S+I.OqF;W4E(,2sD&6K5B,.K<[_D}_%>3"))v%]_{vUl֧TGAW :uԈ֔ #*j?@jEebj7q@cV{9#-{ǜA{{Z>StA9|^2#e+m;B.+"k䭹#jq<!qZGyqtH5`CJ I *Ft)M&. +j\.ԝQJ#d1Q"F7TXԕ  CcpUJ#&]u=]E*8G*4A+ͨ(rY07r#Hpi2ďA a8D9nڐ3`xY(mM]1O)4b2X:ej:FAVO!^PT,I-A,3o)ZU)"ze]j8P[φ!փ$R T9 u@H_aMu4zxh{L6{@P #a%[%|.cj5}J�]jLeC-5]AnD"؃DH Z:,k*_YR#$bUTLƠ Kp}W] <L ?°eSI$T WMLnwP Ty Y %xwTJEW?ԏseqYEgWDz#34?@4O'<?^u:_X3pj¿-}h\[e�`Ztͯ#tptgQrSm3h;WkY�PVP5$LcFP)4|f=|`V)*^# "9.00FPU6DXe"z픢і6,)"rd˖r޵oR.UF DZ<AB4O@֋lRƥuNT@Hv֝Jb5"3hӸ(YfEXG]qBLmyӹq!8qcw)fvwIR.maᵕ|EFƒ+*V"Q""̡8} $ouAI( &jlSQJ\mթd Hh1@.r݈_}Wb+G)(321v<e!dֲL# £m]&8s]128!Q`Ga5[\-\myfxJ*L)%$[]cNdpJ͸J)�nH$j*|Xvuv_9[i7�NLWr…Mh~Hʋq|eY|Ò\q<@@_s|t[^N)b UErs[//܋[pZ_z#"Xj4L U_ڣԆXHbEMYFJh싕F~2'4@ WTRTMMC77Wvַ4/0(s 3)%UrF ; 3AUeHUX2hŪD TRK/I ,gW ?˨&TҨ.#VPsoLf DY>Ț>$b辍.4z##%9#2K09ʲKjggXpHPډg R6FvR1 ԃGC�GK-WjAke*n _#d]wt^HYU=<<2:BѧH|&J\pdU%-dUq,7w ;CXLzbQvDXFvD+`x0$8sax ΢O+R  ;JN_,w|Pk]L pOuӧ?2JÌy&Ʋ-- _k HOg<θUx9$RjqEA0VӸ\"'@2c�"c`4+ Cc4jGW'`F*8O,g՜NRv�4 {.P˔=LddZPR-*Mjm\&"-g (26le)d*@\&bTPobPEEv$pˇHoݔ#NYKxaQȎϼV9RBSiTkǀtք:J#q#�]Ga{"Js%6$&Ier3F$h{fhEQ%X;pXN㼇Fc 2#T@[h%P2<MbK"'-/lŭEcb뷄|�J II$,*3)A#bpCG[R&1=Sx(J2D6,@2#kS3d{S oĢR醤Jcqs&v_l-r{6YPęi }(*7ftMVW,WP)^#wiǦlru%ҹo~ndFJsr({;y8^Q~2qSB9GDbM r^'Y4~B˧xn:1�l^I%h],WXX* L|l4mU6n}g`2GvJQJ0;nRD 9Q&L c`\J}M+1HײѩGA,Yr}||\Hr'җGPE\K&ҳ>͉K@/A>cF9i벓5p$bRʓSYxV K4dM ~Y. Y t`)vtV6p19+x't(C"+_HZ_2%wI E854Lt;] 7fZy 8PVP%l$5OԑݢF^_5 r4G"1k 'qT,.UKMchu*[T0F,ԑS9e%GvA$-DݧPRDg;gUV@<Gu6pk2xj( F2C W峹U  @gOoSCkr+h, x"~Rnt!o_],@H[[q}{KBCuu#xF #�EpI l(0*<�̪yNڠ+X ԦA#;l]S&B+)%cшw4HPPj<X~bx0ɲ ,E^̈4޻lV*{;< *}4a=1%eUv1iJ-jNA  UCRY,,oq-Bp#PI%EY{Gh=-υe~HVm{iaZEt+?)ʈѶ2.7girΤ6™%uhEh4՝KmRY5fL2xUl-2Jt�&vB9Va-y}u 7`.KM4x1=9]Ǧ]TFh aOi 8"Fٕl�+/ffwe@i #bE?Wp*Vj>OpPJXXЀ#'H6q]ح<qPYC s,v�Xg.V AOy=%:W0Wb!KH ~V |n>(Ց]=UdȊ$m3:e-+}"SO/- }?J#<baVcG<B?pш7&B֤8w׹ B'e쀥D068b(Llws4Wv gʢb%臧F 0Hn¼K V9."įZi&Y+IlO}$@ș5 1YLULT]HҶ a:DO큢eW+#(4Ӭc yu5FB\#2Ĉ xŪTV(V*HV4PQbBBևթ 3e12J 1W,+c @5,o&LL eUtU1#*H(3H˅Zu|)YrJ$  3,2h4Xl,k"cUޠT6X"L 6iY4lu��kc$ l͚v C!B9+1,^? hO'Xr<'>WϷ3""8p\U)p疶;H丕b:=� Q;>�vA U<6X 2+b6J5 gXA+JvW. ̏>xH. X(ֶ@D7dSԝtDds š<[4erR 2JVMK ~C_te-NK'm{g9)&J\wDYQf(jK #:0%*^mf JN �aCuVB򯷬jX,a(%0` rKI/,yvc?%0혒1V- aSY{& S7-DP.O4H˜(r$ʬ"3SJReyU& ΪY`\m�dvrK'̮Y@Cʴ" o@}n FiggPKAQe \@d1"Mk *VbBVUi}Tg�0<~뒶Q&HEySV@v`# UY7 "!Q @cpk̢ٯ>/ w߈uXr]Se$qKۑKdVw"S E3' /Ca{5]8OCc~ۓN'Gg:DY35zd M']}+(@WlShT'g-RG-U%?!+72`g+/n9[ "X<2Ln"e2;ȯw eYUrI4u +`!(ˤc#&.Jq�XK&#٧FdZ$|fA!`d2g,dʀ%GNgH t6C'^ʷmDJ5 +&$YV]$`֡pv�Ps৲".CK;2e1ԂVEcRkПo',ZlTƮ),p+-$B{Skq[V*Df9h9jil~%+51W4=FD� @!3(Hdg}bxƱHEb'W!VX)\J�c!7po�#Ų}4A$XB93QNd> %e ϔf J wEA@ё#�%ּ/ou9$L!  cOEı^NXt36'mܝZE<I&E"#V'&= ;2@L†'upUUC(JϿ37XPmWW)1=1E2>dőԽ(uReT> we�hu]g$DbH2%$\Ƶ9HYχ.җ}MDԊF%X_GjJpV'/dƆm!+n�MxpH l G>ZGx&Z6Q°HZdz*EHw;NTdn\*$SHZ1Ʈ}I$Kݍ55 a @#5:'`bhG&(/&L]V7ٙJ˹֑pT+9N*i?3ml-b<Qb53RR:.݋ K(9x.Jx2j~DD$M̂W`eR6i ((<iH5 S&wk!R]urvr8J66ؾWޮĆ Z%Չ*/!V^q3O7PM/)XIB�@ )%FϜ/!6%w%9.AAI(+x5k$ʍHjَX WRU{/0ȥ^\eݼD(#;^}_ j J̅üHkؑQ8]ʶ,"H8Քs׹OdYơK_NEbf 0D}d&|f=6,l6ڪt�s(H�E.Uf"[ؕ=@vyFdJJH͵ZӈU F6"�ɵĆ62B6hԫIwJ2a $JFSw \v\Ӎ2,ՑuIXVrd'qJo+dȮbr=h3JV,`Y?nr1]ܪFs=, :2Al7l3[{ϲ{%eMG8wl*]aWwyX1aOq66qV-Hmq?eq䦹!D�T.JdG2@d8{TډTR"uHg|SZ0,ʧmxen_BBaFYDnjTD& "Nn>7]G IN3@Ԓ^J䃸[ہ^J�zyZը$ceH9 Al3sA܌w2?l;H]d1K(Flg*5�cWܬMH[č,_,UuRMN왨؍vHS0/Ge/}#,3bЬo-AG Ye,k+&M~ÓI)bM<\ QXBH v ;FX"<ӎ.r67yfIc2ء*f 5Xi[x$n+83fH)or " sL+Hu# Բ!ɿ'bIz<rH!Uj)D<2J$P5&Y@25R%} ̅u.T+SCV=6i0rWz|#q�~_IYn:! ^z.qCz[dt텷O|)36:f[vNj+{Rc q:[K{Fh)X %@I% rѕ EVVk0O18v�q9c,Ȼ3Dz_gѭjF+i?\cX8.䯵8'LdU|m,Gq*5�'&uI_FM+"U4 2J5ig#gCٚIe!Y;^ T1&pA$D 9Y ud{wN^  / #KfZ,ᨩReuc4Jj۹1ɨXɐZĻp6ggKBueXDH`H+),ij)P�02sJ/9,do� ".#H4sq:*XQsYs)EX$\ҤCWQ'u]_AF,'\(i#[BHӠ (X t&F'lbLrSQuUSj@ 2v8U!3OY+p=2�c{":s-^0e 7;ŧPZGwz-Khz_'rN25ȆY%-'#ٶH$[ME] J=aASbmRlkbvb#Wa(]JŽ%~l>V VmMڭX`"RVsSk8^Ca;ObF?k{OYo8ΙxdCna I#.B6*S �v)*.$C2BVT TTL}2$Y6%+wV#q2jyiYLE e,)J-VQϫU?p#8IΥB>h*ԇ LKT!biDg4ü@$z %lE�Z=0.6Wʹ(/,\[̀d`@aQ!X>iGKŹEp%f Y9!]u,_$a*Hb:NP&zw rYTlnڝ,xݑHu|6 ziέ?*cR4Gy2<h)Nu!$Vӯw W\|{7ۋr7-b!̖/q~>)6"ymx̭"7r,0rKbebiQ4i3f0F|kt3m2\jcHг(F"J")U δ*3 ]1JHPҰ;p T"P [N's%\oN5euaӼWPL^wlI$8B <.A@ ]^v*IIAZ#2]F2:e)aSHW<pɘWqnk+|ҷL Jf&M# #*UJGkQG,tL)i+Ku'Goeh `Iܧ2 vS�@CJ"Ļ-5wPkw\QK`5b@cY.%0PxKUwb5]ֻ,12WO+@ ?S%GvD"+�$T 6<gG>ɶhBAJ%U0;eH3w:JX%\lrIG8z1m8b>I-+b\ PT7:9 7sAv1*P+f4GaɓUU*"ʤb P9 \"5hU[ Avk}0MF052dEvPlF LSKni6nɩbő|Pd; _EF $}tLTMTJQ%q_X> (C )ll_.zL%[MW/ A7؞Mvf9ȡ`3Ȯo*j,@SL %첓FFYF@TwN䂭TSHM&dbҳ_d0$rL&xEGGn'=BБAՅ4˯1.CoVSݑ2SWrj^<)}cBTc.--} 7۷]@` Cb:ukv1 -I2mI)vr Ϗ"bXu GK;F"{g,[, dXҢ:d/$�qp1 f% Wd1/yKGr?W(Fj&TT%lߩRDRpߦ ,猯s�2\ea:(;e%n;nĐIHaG0fJȏqcԨ)7" 9c(T>WJ.�> ^kۆn8Fd`Ogh# ݦ$ 1]RWT4d{a l%�(]9,XrQEeCpn*¤w_ P]F̮E+u}j5Ff`y I#˽+$Ĉ8YpXsiwYY iwVBK*0,U4TDIܕko&lovV]5n}`䤒M7C rc{^${O(ЈQ`(loIZx�im^9dN%}R&ʹbJdQZ !К�4a϶#Fe23LH(2zbdŰa!αդe9PjPj!7S�T`C]Y9 Cu @FZ29=a`7 ɯ^2 Us$Cueκ�Bl&#r٤YJ�rkm@Etlu+(dPWzB- '@{>s3 ڽɠj,ŸR�m4lEjIff@öTKf7[qe|s'D]ٽ<,1rD7-]W6ʘeb}1c<gfG7k HȈ<ӘaxY/au$QLdb1KSٗf2LrV62([KPx ]h\J `]+ ^Z]]bؒ Pђi�>xy[V+:a:WHη\KvF⟆ 'Sxw9pv9aJ'#(9F=�G@^QQ;c�gb)CPA $$fww}+=-O�D_AOxws}{z6}5uc5Ⱥ�}YR뙞_>?Ÿ/Oq=njD#-�A;6N Yʹ衎Gep7KM |<E$Ϊ7^^߼eeToiF' s^4!T Tq),ϋ@}nx+D׽,R2l%IawO֒ q&?Uz047k9 Q R8۠�tcف|0]76Ho%RH0N'aHꙧ[O Z+E�8."06ۍKmW{k;M\$2C*}Sȶ!T,�s^{ȴA"WkOjP?/�~Bq5$ZA?!w}n/ܗot<pqrE%&!dmO3hZL}JkCk$kⵓ^8_? {!"Tj"]v�5,k-͸e yh>F"H0-g?c&9yRΪV5ۘ�dx5tY< f` V;yIq?Ө7 r f>]UtI�Q{jvH4ed8�Q]~J=bCy/ FMU2RVnj>~gG5:34TN N=DIg;᳭E<898&[yq,RF5&? $5!̑;aJ dE$mq(]O;{}bDmقV  {A\Ӯ<y<$Y02AeR٣v]}W)j궁V-s%u[Yǧ:.BUyj~TGR&<~s,qX\I '֯S$S7ː|ĮӃ◊Tj9k~. ^nK M/l XH Ο!./ r6)lђgOAO�YDa"nCq[4OnI3D;|*Jk~F$GУ5Կspi.zЫҽBq]P5:r#l֐M fȋ*%r@\C5qmKߊKa 9.5IN ոED䨴ݕ}ySua:pdhT:sP3TMzJ^8/Y:÷Q:N"<P q~Q^Ṋ9_Gv-�LNG۩.?k[_/h�Kղh8F)j7IqIi嗔۹;<{Z%/4}ĶgZk\%j66gslo%"rKwVL@U`T1PU@|eS,�Օ:kJ`FYC"5#[r)-\L(T`7EmALT(q$F9!k@m1]'O9!N &P*`0qw-6BpE�N�LNh> ӖOko43KpR8Fc#L>5*<5_qr6אW;n-tb;:+rКhՖL"!'Fjn,l]wu;$q9?}]@حf-t=V�PmciOIk?5I.9ˑ r KEty8NExۊ$)"yX]31j<C{Ƚu7/gh`+ *텟':Vı5`zLq wBp(Z@|t;g>@7.DP57*.fNt,I4RD=n<Oguk 9YlHYxI~�yVu0ۛ+8"(먹\k.XISHdU(+r6K8!΀`HSD4%L>ʮ!bhg zR&=ڢFT H}gZF9BǨ ~0.+fZTв�+|2N0iv|-p|1ɖb9[B<r~F+�#`?<?9+*یlxﶔ\|qnº+3u4ں q&F0[[+ȱ>2f!jBW!@j߇Lq]H$ȣ:sMȩ*LVHZ N/7|�;dk'N]s]yP@] s}/mE=1i{kh-"H`&[׽yf.rӆc[xVV kamDZv%pw8]H;\v66j6Z]RW@2[6a9&8WKBOQYttұ�+nAUQUV{s*Ac#�]:㈺`3)re\5<WwT1r\@z+5}:ȁRuT^q%uGu7."ïg'@d0nn: w*Y)"tXHR ,7X,DD�Tl/FIY=PυStB؎a+/ %UEmcjC#mByD18c@g 2Kz0XKq]ulYJA峆bV:f{k{#޹6ߒn;395WNIB9o=\uIڽ\'E�xߧUxߡ?Nb^JAS޵5 m�zWn?+mBur٤1B!YMeVl.f+\ĝ&`T3]�1?4#'s7l$_ڥIf4,!#itI(\+D!(z?1ꠟ{nČo�)JhܽrׂzrO/ Ԗ.gB<#a(*$�I纍9m, |Qܞ�RRxk+ev,4CnC#MqNM~مtWguA-9q]s]H3W7Nrۺe x�9/Zk�eJopy~\:ľgp$b}H*ÎgG, }]ks Vl#*5bw1]F<?�Zx@6"aXRH%# q>d*5&\ H[ZJ 3S!ՙ2:+g77ϕe,9~GɋyEOxT9dC?7:>bJ-#/Gs�xKD�8Vbaq_ 8OXD' 1m@ʹǪN} ߢ!2|Ө]SpѵrH)3з= `5},8<:ݭ An=g~ Ϫ�:#c?qmgX9նHye`Y]Dt{Uݹ0tVK똨mZG/Rg;UUi#ܗkciquI2rZw96vc@]Kٷ`W^KwE13RQZ' Q Zz" WCq%uuf� \(XSDӨ8|eB+R?BzJoӼZ5uSC6[O�~RU.Utf?ij\ݨfMk94oW3ؼ'czq WDLu?Nj?t T\\?i/!X D~rOvڔ̚M;bRA">k˩Bd)JF3G�e#9]4>J�|C`r^v:FK3#2c=+a8 ž9k{+H9I6?ؗӬ Q@ Ȃ NB X.khm"][�5W胑, rXK�*c%NJёrp˕]U\t? ]YwZۍ'At ݎGju<%y̧/{Dֆ8v]*$D= �_N|:vr֋2JǡnDFܭIV.k,Tp44C1/1Ei@�-^]IU!%g`���?,^2Wo,�xBjṓg-]Eym4\[E"Edmp:,/ 8nMH{ڑ G(+<旮D�xT nUscg=I7ӟ7x7i=W/+3AwCm \u{:ssv0@ +'y"Ra!:g^{oGmG:>~Ynw%$,!eT`ЙnTWn@&բ0vwLTb3r2Os I.0V#J-E]1R}Ve6-Y"|'e$k@0ku4ʙ^Y\ܿb+Y>&.~*pY[~߃c%u~|N XZn2L^7q�G2Բ[__vVזsm,sڹYC-@#:l̷q<v4ߛ.f2 )=]72WE ^K\+۟Z'ѳП�6>@،�;ۧ[5u$ĈͫRG?*ӢȌpS=z8!CvЫ� Z2*&۴\Y4@5"5!ڮo삛xJϸJ*XG?\xjmLs⡕l<%MTK?Wx8nhQU1Hmn)mI+K%saa,/TlExT,c�ъW3]CㇼmjEFzw~>?-4"-'Ds?qj 5aY#_#1RqJZq\ehQw$�"QQNVFVTVĺ\kB9vl$iR)p E<Ck^SH4@4,)ub'k< FZ1B0h>c|S柄#e`2!o W8ui@ �Z%dm{d>_cmDa!mG\|h}:EQW<]q]3 ӗftH4x�.>6HPKsrUSMAAp"e9{/%j8i7~_X2l4un%ԑ* _DAain/y&Wm~2OȜm�ngnXc(b5*y8vk۹n�.k\Mu/y-}cl ]Db&'(޺ͷCjcW?:k:<I<2E%oeu%̣tO,QNVi@�`TEo/+t=jB8=㾝KV%Etw}:vj:黷<]ӬW+ǚ 먢Sܟb9{>j.h;'EҼJ23E0 *D\γ6zBơvumеfYJhvYNc;2}7-Ke11;kc7&D>A$.+ )bIiBf6FXp^0RKen4yD$Ex�RơX ''u?/`/^;ح!ᮬ@ܤt~ iSډ>zmMsg3Xq+s  1*3\ŹJ+8r+.yaA'{vӤvKXUv! $G_yXIv�.#BeC݇w[Nr.bI`K,ۻɄL?Lk2_\;KK$FZb\9pW$ :Nk+6,823W>mFIGG?q(WUX/�!J�/ B⬲]/{Sۨ8MJDmOua8P5k6B׉-~> ㏥oa6p?ykrzEs:ZMܐk K"UAPDb2;E=ˆ֖d1MHJ$,Yǭ2c*Z,@>2˂')Sx"]wEpœ^Гz.c;քjU~ Ե;dAVc< p=/±u:�9 ՈV{r}CM[+_!tlI YZİGs<w&q* ڊuTXzo2~'N{[3 HpV s$hL<[Wotșƍے)3WU?�ٟj&!gT[I''""#PYl04*SI\V5k:S(~g=8w7"bE*cLB'#ikOȗ w1 `ُ 2˨a*L�s7 o,&x�?9�p0iزz )rC�`LL}�>(rxgv ٜcT( `]A n^"NGp1>B]t{Z棽烷r{cA8,6 dIsRy7SKPF@tlPN>nc:%̫ȧvAqq+�GV29�͚Hd 8;-@, $i鴊6hu@JA!Dg6p>GxQK|ZKX6]0A�u!>umZ )iT�/pgbIB<HJȉ�Y?Fr0WemG˯[E9V2uC Yx@/?pIG j(x6k U\.j_%ejDnBO Y$iJ2iJw8Qdè`[W&2WfWWR$#)\ 0i ǀ]mq| p+ [-*F 2 ծԤp?i٘$rǗCcTUIz¤1$`�A"6 h5�H4|? ?K Pr*F`q[/(/'V^#)t5 MLRrGw8bItAH %VFO%24f,B;K`C<2> uKxݰ^5<,hYi5EќVu RPty2YЀf+V9fQ6mdDZ J+GIYmMӃlN� pYC| b5«2zT�|W9+ȥ%s <T1VSPr JKk<dk+iqX e]Gfr~`}h)Z .ZLvZ<MH& ( +jѱ,J7e85E23/qR_)3X @ FIJ\n0&b �  1Ex2v$ƒiW i~X,X0P-nuN~tPS's#.] ujtlm@,WѲG7+pp[ԅ ,V,?AFT ]cf%K).\azvc@� (q#]I. L+<ةJ d�:S]2.avom }, " {-0(PGlcТ8.҅�{gj1DBFV(+t:uXqi%Jg�pؒܿ$rQj.J {gBؙu_jl+#%c>iA=ħUPrriH�R%\g$eʹ 9� Y/`hA3{yدWRd伯C7LF܍r77F7(ʯq~շGp*h8'x`rE#gՑ!]C. ꓪw ҲyT0>mzvَ\1l7{lF4)%IJH9�Y=TW=@b~7!A' 젷L-|k.珞_ u1_\g"Bߕ1Ylø 2 Q0|zp<v϶|3 <X~G1 W;>|}4�$*z1``e@Ⱦ)+Q!,?T&՘,TB@ }o 0% ]d kNóEpFaKp[56kLXP%JH$C?w-FWI\B5X,,MS5$쐹Q<R2eKw2ZUC&aXȺT[~SՋmy8wi1 029@W5 . όQ�zB\P"5u#F2r"Ѻ]y:9)9k'y m�zcr\� 9^)EzS?yq|\osqq\\W,y�Gm>K985smٻN^x?8c2Zn㊶{g1f :�+pbZT 3\mܵԐAKnV! /̑DCG8KJdU#7!tC }CkJr)ӳ[ys>]Ƶ{euOd5Gb/2#55SM\u=Kھmno� Υw+D.Q\,ony�Km 6Gck=Ȃ Ekp +AOڍoyEnP!XC߸Ki^I!4l_V8kFg"8;ӳôS[=d!(O t''MR)%sgۖA(Ά{76`^1\̻Yi\V<و� 771kI Lr02<F4B S*.\j$Zf4GI2;EqRP�5D=e^)]\wH95%6m1P> |P TvUonP`*iy<xk8WR!(�Ǣaˍ n�ŝSH쏨B ͼ|mu' _6H#зd5qwh1H$ʺ.)E gHqvo3pKg]QrWv�]׏cgHdu(SnZP相qʱ溠73rqg+/Ed=fB%M>NO\Mt7Kޖk_Q`pߋ!A>_i+-J^<5%ݔ[Hrdܫ[0vuƕI&Db}q+e!"Ib4^OD�(;ГH�t]mnֶ0YOgWZooXZ'e-qcq\1܎5{e~~ٺ?: +� 9dGFGl1 #-/CHM⁘[_6<|nv^{:m%/U.(uߍߘ^I)9WUDϋ^Kn>_D~E9k{m.N9yla'F(qІ+`%CYueb/y92d%xP98Ih2Qx5YI[r0 )NP7MELqVidĪ`5gPRI Kx,꘥f pw~7ssjÄ\(7$5Zf ;q2d fF94 ~//5a<\^#pϗ9+rqY'9MK+'\u=F =: ;Y]"q]-]C�>y>}N/?/kMZ�"cx1 &8_NC紶xԂD%īU%k'u NP�GФoiO&EK?]1?5qW)2T9N3@3VX縨_]fZv5mro+@dn]xP2WEv_10}HqjGWyd`ņ�^gt-5z䩾8/:>�eH6M7ysEص+L �&b<>9&ߊn#zUZr7VOɭTp<UQfLJ[+~,Xtm}T|ª жf \0NH8nNØ[I8�'<!;| {rG2Ԓ{n/c#,xArěj[mz`y�1Qkv+a"9>?a1ps7]R-0-@Gh{ \ zxz3o댂q b#҃H?r,qp5n1-d#22 эWEdѐ+8[^>jX۶gXlnfi Y.A"5kF! bHmi$2OpEѽq]5˞ K 7oXӃ�ב@+_3pl'y׋0?L5]7նC<-+M]K�RW�|+Wx?^{uX}+4Q5XqBz}unKhjE_m<O-\�,l ;xИjbW�6U/{w~n[yǐKlg6QOه[^oy z_SԥRIv:P:(ȧXDdq_N&e.ap7w=Y K(z6Ys[X Vc7,cHBnKn^^BmFn"^&NP4[ ~4׺zif:Vr<q7kWK<q2uz7BJ'çeI�u)^ p9l'N ;?ntz?^R96wYa:;ZrZWR_\pXy9xNU~Ibj' N{%7͛�U=4/:_G2R[3 '}?/ni#`~cdXف|ù$Mg*. _D$cnuW  "5(U0HIAⳓ_ڳɠHYUy(w6+]]89{lN;5fY|FQ1m"<wqo'.WhLҭA&X]sΧ7晳9.ifh2ʂ⸎oPOZߤ{İbN".Z:ۜ-YA9':׍l9N=?= ]%?X3t_z6O8B<WRs2q5I_G{k7Ȣ}~w.OIErL`'3җ}H.H0t}z=.I q8Gw- $`;/qU}C7zwb-qGwvw= Ikk~#`AoK&nߐImuQϛI?t{"3<r][qt$J{gw+n\ ៾o W\\GiO/v,dA|TI9nJ㕹/7N?ΗpיYKl-|#\rIZ_:-%oxw^5MVfK>Exk4O_7cW<n>9+w%NZHrqY{^ͯP_4=5̷v\6pf'W;PUն!#QW6x뮝^WxwK~n)s%⸈&:˩k[cxny[n[KnNKyyƃp*Ol~kZ j䖫M6Oʊ=cL_}fR./ϴPYFў%QTxHǚx_Ӈ Gr/GeU5Ey'}g[!_&BM kC3_|g \& #X\ډ 91sZ+LjSe� #rs^+⇜HJŧ'snhYHnxWP`/֏Hi]v4ę!K}uբ̡WI!TlS@eP YJHֵ8"VxUvɣx u&Q]0h }'`/4BX 5c#'&? |hˢQcH~%cen TZ�e$ DJx B[8rh<V#*IUXl H;]Gö8ն/AM,XjM7fCuEw5.ɤcCbdvR٤p8G94 CAeR'j>_1l$v  �*wB=Z x(@DI܂2 7W)n-=#$i$w]2@ˆyfTnQ[qSa=F>s5>ןkG۝KG$q)$ەI)Qɕ$KNh>|P$VƐQ94?Z7)Cz#k䶛=Y҇Ρw㧴T|`-Ia5Ŵ Y_Iu/\TC=YEmfor"9ʈdTn@%`j+WPU+4qq7e^�/>% O]<M-s^i{'Sf }KdrT̴ v1_2/R4-@{ ɢځ@qNҁ 0ف9)1$@ id0e{j0�JĶMO'#˄_S#F9+c5 _cرe@c @Ĉ�M:"u;frR IL"U#$L!n"B3Zb0(٧ga)8 SNc-Ǽ7QzRTWdH�ǜP`z+>03?5H=&{@+LQ+⭭/ȷf.IaCˌf&m4o2?˚"kj¾+5m;[ʲ,7c�r":zAՁ!XO:{=#eCOIy[�qϒH6.xxNVh;/mƔ�..⦂>A˧SȒOlm1_$�ŞqpYBW)U`pIq*i\2濽p=Em\}V|Cc*zwFYC=PBT=5gy^kBdiLNA%v.JcGv:{+-G[hV>wlwN%rɠĮ�mCdcU5l}S"5 ?'5Dq V@nA8j%sZU% �.Z/vCƀnE ϻ5x:PJE_Yc!VSŻZ _$Pή 9I)ch 2⿽dХ�xP)$~|<V_2kkr)F*?&q)|bPXJF|ӂ+>+'9˓@>+ c +xqwtU�=mws^O<gWVnR^Z9V{ h$@$bH?9n"˟:nN8`/zk�5 _tW#wc/\ 1?A򜤓S\՝Au PQXs7O}u-̔镥|VvOۋNNuQs,BXzS9N#n~~ꛋr Yz>;~W#~6g腁 Gp=Yr7 ޯ繾 qn9ր8*\2L.2Zi;u� M`BNC# �Fb*)Å"ʨ[qqR䬈܎'IT.'"ȢFE);Bp4t^vF�>j9D%j/ܭ Z n=^YHf>UTH¨hwBHk?L +!�"sXmoS6OT3X*CZ-Ӽ_| Wc1Ji])~pEsD� AǙW֜b�՟93րyYwGK~G7;e2�[p<AjCQwmI=Yq̀LxM5Υ")ݜ5q5rw~q s=KIw~%a:wnsu.9;{x\G/5w㫬H�ueiF'<YNU7&�j瀼[K۸y~k)ЗWo}7]+#GNVَ2<sd+-r,؇㏕ 'w(37�!�|FrOo!cp(=` Q{ HUDFQ~)"[,"u2ItQ|8jv6Q' ҡLp+VV]eԿW6?L}q5j QEUgjO q9p"?2 M0@kC*+䷴5R*³hb1[b-`j{,E@k_5Q'~?!*6Lir>g>9S"4OXE-F"@PYX5] WVtRn$t2uw竣-Ԝ$C9&2[~R]{7uO'� ?)u=9v<6~zDC/h|Eg<Qr~r'Y^t{i-ͬG1~8?7^+ƹci^Bt{D�r2<]MKu{iʭ/~'u淚)೾fPѼR?C cs ml4J�8ƌ<jiiL�ɔ'ዑKVR�&j\*N.WhB� 0VRϾ{dLnX2*(Ot &H5KS&J}![ !*H{k"$ܫ\,\GF$ V=I6ΝM[dk5ן|c?@+5ɣ_y uB-<hUq*QO Rg1{Ӗ@\`fiRE9f55_vC%{M[toKt�VOx,Oۼ=Sꈝ-ek+~i>\qwOs5S6<ũ᥾|]. 8&Fn/ Ǜ8?�Ts D{�='�VӢ::}GwE{ߜHr+zG98�W=^tGu\v'ȉI�ngu]5W\U7WVHZ՝iЬLsڢp6\sC?7rrLIVe#+(A{lդje WPDય],CbBzBvl{&&H+[ `Z MeRI %T.22ʔ (l6Ըd*U%Uʩc>>rg.pC,2zmV82*2QI۸K6ڢT $vܕ%>6n4-s,Qo u5REg>~|qX5^GqQJS_O"aJϬzԍ&R1QQ<Du5Ni b>k|P8Q+&z@C a*b7 dgW[bԖ,^6H�1QpW8Lfs'?ѳPf42qRfJ~W5_& w:jw.AN֣w]قNF ɭ h)R|J³,]B܂gaQJd4C {\e8a&`SM-)譏>3BGB8 ||)Pp#,Ad )7.}.rXwBhqu1�K+Ɇ"=^wr߲VxjF3NؓKα(J>(j\+~|lBںsu)zd4 OLi~i[?".{A7;%6&R޸mW8|VhP�~coR >j8ҖE*i형H{}SŅ� Pk'p+'*˃Gjd`1V<d|}2"5'�FAbxH.FݽxvrǤ帮vx=cB_ɭqE<|uɋLCF@:b> {U4)lK<DGpbl`Tr+c},�q^   mՠ:f1loˆ1;`@*b\"I$X�ѓ%L׺\ͨ(>ݼ}1iJ12o7r y,m1qk18vвvGguJ k>+55>k}<"䜜4 C.jeA2@yygEљ+�+RGmuO!…-[/%ϩD�r (iJ<`c8*n؅m702N\eaS8F[2-0qXT_MH?l�ۈ7c̈́r1%ò@ԁ9c>qΦ@P@5׊f4Nh1OgyNKW@x:@yit==bv銊䄉AfZϲ/s(}#1Jp)\p2͠\PeD:,@,dl%><=+%I!ġn(pt?cEgXUi"I>0G@?Y|(+DlO*䯪cx(/OW ԗ|Lw)<scV$ГWs ո$�5%p~5y81XWA5�biGD~)$T3zȻ>AP�Lǎ 8oa\1vz!ɩ2 ?L|'[z|x�V~?FrkC!Fh>3H r>+=k4>_  ҟ4y#^i/fg2 x,J(%F*v5p2ϩRCdד& LI9}Jc1d3K)Q1/Ԯr.ƔY W0fHVxZK�cF}uVD5IRdRe^+41eL}{/(ĕ/G"<v{د?O0)�zך>~fd֧Aik89Y1 fɠpklT*;p&T~<Sfgk�QTPJTՠF`QC( * Ԁ#- -RCX1H-EXѣDeӸ}_|<T1M]:Qk##?Bi{]c(K |f J4`0n# ɴ_{3myȠo2,8Ϊˍm2Q#d.2ftY#l-+(Jw�'RYw |M ?#|556c 4D{1LC#WŠy§Hڭxo 1P䊵s4M`<ןed+₳g+T0Ϩ( lǃ[TSRXkR^E"Qy|?�BAcVjCmp. c F֧mqr6̄ј}1@bш"5YJ ED]EK qDOqJ�ePq`lk?ASgf';~|>+oY#2<3JD]RdV ɫY"TCXIzC[k1fZKG}N{R3/V2Qi] Q\JK<g Qg' pPꓨEYW�%g`qF#<1;wM禍U,F"AIhBDR08 JYk|<}<}?;庂>_YTU!?O&8 n3]۷^+G'O2�<`sI|\F\++F0|׌}?x8`XKc" T3h3QL,TYiJNEHs4j*u'kM$HY,Ъ*FeA$Vek{ ZmY1-(mF55Ql Qx CF7;5X ΍o(e*`&=FŌ~PuMcϨlZ*ıHj-0%1HBo%"LK |ԗJǼŕԭ<#4J4gq,FZ"a&I%kbF pEb&nJWI"[Kj .wo0�?P|bh}MDHCx"_T1<nld|}<R0hbHHB#gIJ4Dxk懒S[�E+c,&W (ɂT NҖpfbuj ebM*4(l<Sz 1QO ksY#j!jy_459|k| lC&戫`N2?aJc?OPKgEǙbX5/aGKbo7i1 #X3A�  ƛ>r}Q Y/`td(&r<a,*պu"1IV/o"IN~i#P4!(fZL) G`#Rj{m�!G Q^9d`dWLW7)A5kOOOO5}3Y׊QJb`{Fd~5"b䓚_q�Z!R~X@L)5.sH]*hΤ SAh|PQ)%5 q<nAkc+#5" Yɨ/'2>V&I5@䚈 Pe[J�1+\V+5bkkJc?C8j7L`TNB2[.\1,yԫk 6ccDcE')3BG_綋r710Eoo@ti'2Ze;.0ASN'cR.._ryr ȹBU3iIo&d I4R�5b f TLB`S]n)WCMi( #kx|y-Z#| _F+5bM|>@1|kFy6I(1.uHveɁ5;y 'ۻTJ1̮)&F(bO2 LH ?h+"%~ܫ�E%0@xqo�1c 38wyL9p8ȯ@3J 0FVZz:Ly-@U-$ρV6Av CDcR8]|0xSR< [�4vh'hu!yP*Vc!Faq'zBϐ c꾬3u$2II h>klqwKpQ2Ѽ1`9 ¯P6,RD]K)3.cx'2ݣ.dFY|ǻ5/)Up^9e<z�oS3d45i7\[GB>|Vcb_E9Q?~<bh`Q�JudR1Z P2?5Y4<@7G cWF!4`QF$P1dV8FN5riUHIŸm>wD4מԷ2d*ZR LFi]s<D5YA2NѝjїP}\n<T y^F.ײ�cjr{IR bW qjmqX]6f�5ż p~Nh7,' VtݤvcKQ)+j>C ԓ6֚F ]P 8c%,k N5Q)k�1S n !`t" XW  H6 4XI-(ɪ22/ 9҅)3IܖH/j,H~{ |!u i9^Pۉ/#@#SH� ͼFqu&=+*y+( JS- G6rsq#E^`mhNJKYg[2[^jf¥`� ZR20,xZKy+2( D$}bxH#QF!⌨rɂ0$?$~i-?b5aPL#IJ<bPevf-]T|'g:|<$ϑY$>4ׇ*N6tň^wzPߴUsz +JP TV_ڠh5lbи` 9qC> iTB2OS8+VZ `z a%�կJvj);-\KRrn;} >i+TX(Th1I &22?*9Su32>h9rwqA@hm$1X綗Y`)_(8qJPh((MYY3(,HDwN-M1~˻/eY$EyK_-1^ `ݱ0Wބ`PS*�4mɦGqKb39=U{tD`ԺԓvwcH!lx#ZJ-I%c23Q2$(<(}C_D8$ Q5NJy|⻌|`U5ܓ&*12΀oW4c950EBGZHfj H5fs;dD ,q43;d'pEC%F.i_٘ 2Dܚh$2L%]LϭI ZWδ(y_11w<u 'w : QRcS!F`k԰(PUWhڂFPggZD7%_g\$[;0=Gs:NT8g g Rgj4LJ7 9EW<P$S23Gi9p LyHPL�eSAl0Ԅ ~$!ЊhtoP*)_|KPEgq�rZԱ9Z<]QFU5} e#1t 2s3!HQ߉E+4,Oj#׮4}}_o+Qkk8BXxU6aZ%Ւ7B0:N)òfh,R.3™^`3$H>Ksmm)e{ ZS[WjװNƑ ARv#b+BǍA3mFl:wuuPH$$J%T~䠇9`4x| Hۨԑ )p˾�*H4J01Ƶ{e JspB'WbeW`(RhN5r).2#yxc�O.f.2{[1H&T<ܖ[S*fjKTȘ'5FI/*rRϘ-L@WuZ>ꚸbA|f4iqE4*w@�''X|K&P@dFWح(!cbHh1R?18=BTϕJ]BʙqQ!bA1{w֌9!r0 eem<jMJ;jZ ) X0FM3[|R Fj2+PyFv ,&!q,zjMV YPb-jq�-9-$a,736ΕhڹC4e^U+s.%gp* &kr5UP. qHe3 ,C##y,ᘆ_\%료i.LI|CE'δڽ*ۺT/HƬBĤS[Ĝ]zi R00Zv֌ƕI>K79i4{(ͼ?)*n^9q2JaQ9%QqIneuYe.NdZ-"'\茪1؜L[81E54cP1h$o }@)ԂqăR$WmD-"OIb<34럕Ɣ54]|%9oj�gБO\#yYGYY@QQj@cu$Eq&d ƴTL䧫s収S wFG Зo � XE3*&6YIk3*@o^c $%3c"0Tl Pĵ_l `Lp*3Pol;~J+xZU*6n-^HR["l`HΡ=L7"21"Qr_сeʣ?'4U,[q['\yRH 4}\SԬģ$iP 69xn9#Sj aE0v` aFF9Fi YX2O!RJc&;vq)VlFt1QNӏܱ]嘱" .Mn:R yٲdU֬&,M2ld��38aXRN<&|ϐAhOS>kc}#2i kVqR!o$(Aߎ?=Vn,1T1bIPԒ9)}afRPO`*[cH+hY;�pQFIAŦF -I8:|bbEZG�b FJDɗ4%¨+_ҕ84@")}[yc['Z3JIeZ!eXllVIt4BJ Ѭ|rv}ȻF ϨY`oK~6=Z֢6;wja"fƈ B9\=Ia=@�j8h \FG{Pp`Ykbj H5c*N>$e-*іpP LIv1ZB=6ҕn e q% 2 nCE#հ)"N,{.XN!g#)f)W"Ѷ2M7")Wtdu�k'†c0cZj0S`Ig~RG$r+ nmuܰeC Y;R+\J*e}_U,iف5Qq69.ضi>C+4y5<DV{E;Kd\Biv$g6 {uHH0#FǕyGdI/  b<0cLV]UG�1V%*>QQ<PSj@$ v){�RLX%Hϊ󓟊\.if[PrJ_%ɭ©(AR8pZ,1I <$\^!ωn"GP򶒼yaK-UK$$ wlݚ)Uh>Tݤ&O`D c2؉|$Aw$^ eap*2n"h`U* 5$e:.O.3[ji99PPeDx"Oq*6:Ηf$ZpXDRP:mRiJ{uy a#(P}\4aUD}MEZ2{$oN 1c J;֢۫.f"( X3DT0_,<4%52% gl;ivS8+X(qM2>)-Q54OaI #6  \;VH cT燼X%5{!YhC+Ƕ(S{ 3]H"WH@[ ok dЍj�*JrKlZbXڵ. o$>’c {b-j"WdB9Xv""I-�%gZhL)fȝt,M=` sJFx!4F b1/ =;s7G!ǁ�0'c\uK\{meG`\QϮ)/V,md[!o;B8hTIrLޔZbR#ճr�*`e'Ҹyy(}؎(GQ$MC ~<ᆰH(;4AdQiMZ<1#η0WCol8kkw5\FpV$LRD b�vN 9vdU!{,x*c XP 3CۖSsS[H#~쫲q QePlC!q'�k˛zzڡT|vs74 j�# Cc .6� 6.1[Գ.LT5D@a.�1@�h94Ym0aj2%13աpE(eO.'=y|R>+N(aXS;361~ɥwjb *|{bjxR8"ulջb\Wr#lnm-.;ErsB9pLn Q ˉ�G cnFIa;qG]FҖ{R8D)Z0KI*cD$uFؘV5 % &i|aKcCk)%03,d�VWVL[ᐤYʘ*Q@xek̔|Ul<i8eQ;*E6V(.l%BP� grX'Cta!t< Y s9B'مVCMXMW@ٵ x) C\dl+H*d"FjU S#cpəVziP7)J,NrA4TzgYy౴\}q�P���!1AQ"aq2B R#br03ST$Cc4Ds@�� ?1QQK)2I4VZOrTo3Lw8"R yǪ2�a I):#S"�CA�fXPaٯyOx%5 iR�HJ>(MP )舫.mq ,%WҟY{#1i!1-O~s.;$ȶb~I,3O0 jChNfv>F�ڍLt0(UṳdF򲏬 jmhC4:*P}MkZ9i\!ڎ[�XEL SԂvu0 itl uD;- SⅩ "W0@g,7f̘h?@k) 4 WMMku"C#2p G55Y%a,BdEЁC$ _tA!/.D(>I5Xyh,�.D[fT`ʁ6P,I,Xp$aZ[懰]u~N H@P cDXp&Q^)jfhvK&ZQB. DiZVrՉY -ޫؚoLl@Tbh C'nW ꎗ[D4u\<@S`{Ax/ hy)�^EGE%J(fِM!(N)0!"pG8Hfnj,9 Vn3((N ԰i:44M㙓OS 47D$|4 o^IJ  qETo5N2`cebj+A5J \f/)#ĚC�渚 蝰3R-E'25f 0bD BhI)H 0kmtʰ-XBK`E, &i2K4HD6̮ i y)&SO$_vI%a7àeKx~ItB!eO['N[rDjDxzQ:~i5J^@NpEc}Uxjy�:T,FHG4AuM VVjҚKisQ#1B tV�^/u95PP)5m<>@ V`,@ J*d7%Ɔ ,Noךn鴈$eFޚ"8E]pgZ*Wj ߒo%PX'@d#ҥȎ6*l LRe"u&D ҽSΏRnSke!Yl�pCo'B$)-qDui p6)JSuJNXMMD,1sRCsTImrrvO(N~:r)7L͢$R#ƞJwa8w KBK31xZL'I0wZ$]bdUsFVhk ¤y.9!k c(t<lTQh(DfS.jb ZRn!?+ ԩ'ޓ{=�4k @uX<NNa@dA\Y\@dFRk1*tWuyjvUYv^["\[ejA(V¨d',$z" �n}L&b>aKDkYQ4UkJ!0Oftu˶iF$XCJyuPҫHtL^S4lq5bT%qG%J9:& TADX.7.f59xV&9m:U=Ú"/+:ܦH e9$i<CkTܠe67n~-'~I9Q9MbZ"E 95D8t*�h4sK51UGT6\tڑ*GOOi v C @4H0;tf gNhV@2 44\c._&ϢLDkE�l%y4 8xxJ|HexMcZbξ>%؀^k!?O$kd~i YDo !Q]id ~`9qY=kݐˇ Kc)"*PnCGQc:$8}D@[Έ;{{S<iɔmsȮ, ]<1RjM [F`q$Gh*O("#,^OK&"e3DY+64lIJ9˚ed,"D&OEV\04(П#"Ues}[,ZFTmI(9n5;8�ku#$%b .l^�^k qkN]& _',Rs8\fAPם7xBdSklUIAMI# DCh0�+>VV5}SnjIS/DNӲ9SA+*7lx=Z@]bT��O]xf|2wҨR 6Op#,jblnf2)-dXyn,M$rMHT9GXF6U5�LGU>@4i`4E 9ŬGU36B Ac-S51p|\ќ,\YH"vOᚏMqCUYabNcShY2 i(i C8bWPj,+ԑ'o2kfg>K-/R\)rP;FsG 4ꌒrӪ-дV}"y5x].(j :}Vڊ\�?#<\[jc 1vV~eiI]}Y`vQ5YdlS?+h@8Mm`;niTuQt8 iqDxflza &|t4@ͬ4<M9\NX{*A@�@o1eƶ䎜B$TiͧD(EXYq)5*sSd/& >@?h|w9.kZY"<U~SPLUs:Pkbz,^,M}9Ҟo\hԈth !fS%.{Le+D�yLzڡI5.M7<<+pWDx2#iy[ϒXa<7,4V[$HN&H!LSN^ԙl?s[œFl " mj#,]1&,I#ppkIwUCs-2lfEP:}㕤p/jCB]HIҊD,"WNQ?Y짃Ӥ e>8w1KSl'K-dWS$Q |!=<v_ Da6w&r|MbuO~OTDXn6>HsLQx'J'>&B V+j$4Htڃ.}1֨m-63D|DBÒ^G=Y2*g@&V%f",!CLnZHoJ|RihM&@ )7OodreW3 o^ `W(H7m"*/t$E+kMtOT*a5塤,J8N~xI$K̬Xˢ6RQ˴>hi�G0k^%̋޶@hJOՓD op:G€i2iF5'6IJj`mhYtC3B:`˵  чa"O}df~K3~m 85N :&?;لD>\t'܆bC 7L%tSO8DV*QW (?Cԣ+S}Û"x1,la 130AXSW^2{1}Qɚ&eJ hY aE@L!BZTHP4@V(6+tQd\͝']%q>D L!LLsx|0nă j{~rК Ӳ P+Sr{uҨDJ.ѤҜАjNGf+`N 5N z9_f$v�9EŶDt|6 +sMDѧAb}7m[ 6缩5z hp%Ŵ}w@R֧N]0#mSʞ[q#eb&5L�Lf<5u]uz9$c0Bx 4!ׅOqh<+ipG4ČԄ7ߢ͚dȓ @ &e9[ u+4|"&?A'4S :' PkuO2`@�.#{"I 9L$ il ^�ky`C)0{`Mv]ƾ։qCZPwV_XB3h&{ƒr:S#B0'"!7+Sl%<sd]b oast@ u u 4h9(H$F }t %.Q0D[o55&s#drKU4:rM8i]1qK-i rMkYYTDu_|9E6u9wPEjxģdƮ7,GIvDL\V H aKjQ#qnQ1FE&H!%꤈"yC/*�3|!.))5 ta<Pnb4 OqjٰdR`R|m]bE`sPBNh.9f "/T@!ئiM˘p6䤉%9aDqL_y\:lJm\ȴ;&pm+ hى!ÔS$RfVhvLփ1raM@}2] ,[]RC%+'DT&ͭOfmDx&48=S24xW+.yiZXAm;qmB X 'ܟ颉Y= 5wIuKkʮil:6@6.T|ζt\9w4 (\r *>i4 inR9z 䟙RJceq'+] 5M<[&f}& !5R�mYT5:r^InAxvYFoƽ͘EFbn&O>;3M# ‚SI^TN!2Vs% 4Ձdxq%l:/MS� ]i5PoB(e�] ef6ę:'#l 1q5f I-Sq{�5H""Y#%asaiJ(2l:j=Ʃ,4FO nlwnaau4s}$9FfTMB 6XPXbjU_dT*xfYV9tCŃur{'L5<$L(2Bx( UWt`T#އAxKuH:7 Y&Qf&/R=rR/Y5<AnSВn0. Ԩi.%q:q9jE&Q{2F頶խNI!B)M]vN.MNIKHxhK775X$|QqmUJXQx“C4[Jv8/X \Z4{V0VPI!'>H<,aW> 07`ހh:"�@$W)\Nhu{K5L kDfOytжsN| Pt\N Bkw]H9@@WTQ{ Dm0/?7:jY$9 mQ6]#LܓdZ+[7`ֺ8 "V䎨 *t4֩D^)^'_s }OU"-;z>#O52-%�+#6DRM#)126MZ:u$r@ gg*MhS'u ]3a�lԩ"@=PnDS6G~H0i�ި$sM~POJtMXhS}Qp3G42[y#2.$OBtNE;f,/k3EY6R5Qy BYޫ@&nc"g,.ވj )y4(@S8@H ש l5.Xu#P_0D=:nc`N3f 4XNK"$@G!ZE< EZRp uodvjOӈ|H$Κ'8HyX5*ҁ*D9Ci<VIbQ<" )EFQGiI'j fCHbxyI<BWC.PJj#գXA\u% }%7_(P)Ul@1mA;|$i'tܯi ?3&,it@q249Ys7e0-ozp[WFNfR0ZsWi#DC�&[uLs"]{Zk(LJê@. vjG"sMG$!FF!3R]H7k"8{#/ M" Cc#-A @ע4ŏc� :N%QMWt*+Tg\4rkLfZtw�IsEh(>6 +O SOCSr̙ި Yۚ3onh0R2@׭FX 8(]9CfɱM P0j2k9^MD1lzD.-#;A䇈6A3}lh]rhܞNhw@FR]F\$Cu[bf; L3f4&-PɴНy]`,а4pt&Ҿ O$o)tR 1PD@el\J1F ]ZA!ժ-fע�( D|ԚA5N!IMUF5 "osfPրHT6)tC`Oc6H$AurOUIun_JIG"7\BD- ݺBjcU5ג<6:jM+2(O8GotO ?4h^h:(9R\֨hGu@q<1X`9~WD4q&otIlPӸ0$4<F*r%:�<co4@%rX>[^-@G:SZNYO#(5Zds&Sd;ڎP]SDK03n~k OxAhekj" *Z#4Z}`~Q!ę?$L)h)ԛsl®Bvڄ3TVbV-5:AioyMI{ #7v.{hn+V|M'X1-�dZ1x@yO CEy[ZY076nm<= {vc%θ@ �%Z)y>VipcB6nHb9XՈ6`LMsmTusi:"Srےafx -u0X?$f=e2"dUxy&�>T@?%P'eclXCDO#]T6!b=L"b6!cAINsgwТ@4NR1sC.SWMqٲ)<a1Rdf"+!'OYArE@,b,k$"ވ;0<.5 sLCj|P3xb)'t $4寖f4!yM۪wB'^Pf]K0uNj'E&�)ŲČ06 7GK'.$ԕ6&t$pU)t8A'8ZwPxI-Rmh2<Uo5)5)l{1D-ä?` T-Уjk *Jfw@ޓ U?,�PXbcЦf-Ҟ]wOeRz/ 9sLSMy!@J#Qٝ�5YH ޵< ho_xbʿ$9e PuȎqYYL(?hxvLA3<cTNĬ1vPuqpMs惦І) ֏f(лG c9Qh hҽӔ-Df [D<E;TxÏ 3t*;& G-+@ҕa6QBkp\GX5+g4 /?RuNh&c1vQ \}v !3fh2\!>M` c֍sNR|CEj'q&:o>� js;&-FZQ0 @( t!X �#-iQ7;EAl66fJ.U..U8qs6 etPBH&ap蜤ES\[[]LR$t DXs谄u7@@+y:rCFD3;l7Hԡ$D� ?%ͬ3 PH-6麣N\)Tm޽ E}%:^ur]O$k@\@ ooU8[޻TtE:mq+HH>- :T]<q=!PGY;IӬH�4OD"7Y*O94ČPz"7P�yiG[:7~2#c%FY)�4ܧd{iSR{)AltPPaAvm0nIyp1!</isT4*mw:3� hw4lДfLz'4t"͔ATA4$ߪ][0c$V0(53갲2,d6 8̈QFQZePk�WR\`)kOrxND]I ]ܱf]FBG#N Z!<g$4B"z(9']\!Zb]0 bY4qJBP`vviTܧVc- 5 K nHlL�$ pr)v  AQ�wP]0 xҲ( f!:T&ѤUdcb�d `M&t0/ɡ A)�rQ~imO2A-+⩪3"rڛHGoSXajuJnWyR3 @:ۚh4\Bk* x} 2=a}ր@7+Jfv.O8xh5&Mh+H|M\)C4:)<.tJ3IK�7)-{g-<R]+b+>In)I(;"<QߒJ:[R0҅"fSI5#�2<Qd 6MbR BpptN 0ESkT4[)m+Nhߦ&@ʄDr5ToM7F Sz''.A+!B4gb5sȉAbgdR NЈYcpk9l6i J.PISLDJy,!YAZTE) mNI dIbhLGp>7Zjz>Rh%a^]eAF u )yrS"w'Dt,Xlzj t7YS neb.7*sYlw9hkFpqM&jq'V$S4h)(A!A$LH,Aݼ"'Di|l"ۨ>JsU;NG cFK+@pBwR>mmz'"%?kZ�b9T!? |2Ϛ"ZpVOu%-3&MdxA-6ĬfIҦwO4qMqxu茛 |Sa'.Oi x2@tM=q(%=  6X4i@!.1=4Y38eq�{8E\k#)$Zb�,W3A6 \N`@A�4©#ؔ#4iQV--<X8OOt9dVfD{>#{tD)Fo0aHfP.giQ�|E@ʁAV(ͽtޤsꛘ8XU<;NA-Mj f_ H#^~8W\Pf)Dv!]LTEלsⲙiJM4F4 s ߪ5!쬹]jsUF6}W \?.LjtO U@yۤʆMpH?(uKf&Fŀ Z�v^ lG6Y M HN:#r $wB@<\t踨rҩĀ`S$tXC,TA(@EMuBM27^&N$O a 0wF 3WX`,n&7N,臚(#踹ޝfɌ(ΠwA�^FP -H xi[4Hy $mo$ UrwAL& Q>EwURX6c,3&bHآ$W-UL;8<g`d-ѹ5$~JCfE|W'V &l~R11sNR�73= ?xZ85D#z ew ñ$+L<31$&gyp�!CåXMd4'2$pG ?vM<.h ~(w:'(i Vy+c1G;əӢ#/�hW0&VF2.u+QT-LL'CZ N69ed'lx~GƏhzSUvM)3kA75l<->ڹQkΜ[ZthA1_2 Gāf54aX2HH:" �< lXLAĩ\5 $|xk]7<Ft{hpMuElNGpԸT)%\%eq:B_T#T l8ޛX8E)ѮE4 Z6A&MT3TkwMDsC1 NFF:aۢ]4HB]0B|@e'S犮FHȐ9&<AM i>uF)⿫寻uCY`:oi,ay'>مˮ$=Q݄8P{^,勄ZĶ@tB5֨lcHju0&bpQ(fkIGtfEbNZ @A&bDtc^7G5(35^^H\ۚvIuaqycZ>ֽLIUPڱ4dy`{8xm* h`T6EٝL>I+ME8ﰘh]bI}ۛ6[Ԧf?#C"IFZhG8 ;U0 (qtBSkzez,RF8b7DJLǹaS ,S{5-柕Pt]9& "I>Ԇo7B# &#a`Kf)9͂aA&6Ɠ>˴XELfTD_QDYLtx>(גm8� }koL2Wk"XwM}Q4 9*S4d 7 Mu HtmIBf`b:s+0 iI=Pmuئ}> hql$H4GREEX L%9Z)d0sxjTG.s&=PkX 1kIעļM"ҫ Lu"z�c}GnL�\ʤ@,G7ڋ!Sm+Np :֑qj)`4DEȪc ifj`辅.#3WM+83D.!:5Mk�:F&H HLq:+L6 t ^`Xs_-3]B}kd̺SnJKޚ!CGuC W2Ivfh@9A:,H3'yXp$~(xML!]Ƌ3so$ .o#![hP\կpCmy%)Tx|Zbo [Mn+ SDRab^A.fy0+g0Z'AsY8&"1Di֩02f杯 C:#h/%3'҈u6xB=O'8(fvС&cE%JXdLWa9foO9Dq{GVLի۟T '5*:7&s gh bx�zx6LL@Y<<_gaL֢vP)3PЂQqpxeaT愆'T2SZ0[oT5\`Ҟj j3#9fi1M͡ɤML%5�|sQޱgTHGN +׭P-n 87sMviQ8 Fׄܳk$YhD;U}(T'x4:'r͢$؃aorm I;`=C:WVAPg"EP ?oSv]osE$/R-0B./.魭@:8|ɟJ&0p!rڃz�21ټhFD]4uDSfڪ8|I5MF@?QM. Ь6pgJ.{(q~:ZƧt+L!p nHu)Ylkq�~E�"n"APtL1by^UψR4+v8SܟL:"=k:R.8#txD�O/pyNۭj$zae2[k @^,9>i/0:kesB 1?}�rx+!]U@4!VtTJt]PlI3+22dWi�V?3A<5<3;?Պtr#(ڗ$#D8 3[PtDMbM*5 5s̀Op ?13Bk.a� 0u=J[55y<Z. 8;8T8d&LlSbA>LvdCiTpq@w'Lk4C;_(e$3}?@ ͶUtp"-ˆG ZŭXe>_}kIBbךy{dſYs AhƵ5O(1KJb sNoCt+%B&hfvSY/2j$DCDy'q_`]ǔ}_Smi ARgd#1BDnHVmWPlBt0hIhv+)ќ Jq^o("fWnY$DQQ }8]m tІz)(DךfB�$k!J G9�Hqp/$"H:)6L8dkMQ9)N@:[10Ec^ j'4fo`ɃxC 䏆ITi[A<�V0])j*γmEef�`�4Myћ%2u0=]fi4G -#W[RM+4ǜ_TAYLlg0&`s?zĴ\FSҽ! ̈́o;+ MrRw9 k˪1 A T]]#G3F-Ʋ],Q.[ì�"x@& |!->Kd>ǚi Ke#Y1x() F:$X+6:,!SƓ;5dnvA4lƥ 4:35#!)/ukI 'j*!P,&i=B9i{utFF 3 Ż=P_r 2rAQT(¹ƨ{F@'4i)Q4s}-dFr4fljJ!h4"c Zm SL3;tGTJ$bbf y1G}+?a$VztQXhOŎtf.^ӡԃǘj$gRnB>i{ *&H 5hm*P"#55։U ȑ�J�WJ~iq%1Ӛ �X{EEh[zI6@\1əTehU-Ta YbEbgS1@b׋J&ap嬌9 蛐$F,41уdYĨƎ)43c: @MqNqD2s?ByYQZ/?=(kE0fy{#YttdDd7'BEid \"Ŵ?(:TyB xޤ@&̢ n �DSIQQ3[갉qo&q7$`@P2Üv:I%4XUv1cKQHPcLڃt|.L _fEdzBתP!&FH IXd8C|GtKF5͸F1j b5Qs( bF NUAȢ,h= Ig9D;UaA@ÚЄKItO8922 iV޽y+DbhcI$ H 0 _[S$qkfiL6/Z!3ƼdN[sF=a7٧4[3tOt3A 2N �StE`ӕ.pϗh(d'fzISF#"iVGʈͣAI'3W8|&A':Z^bCt`MJ/`;)�7?hX>c2sz++M.鹞tN"k;#x9" [S!djS`kc?�mj Bj#t I)#H,I'UjOS =Q&7�euDEI 2˪dI8hkqtC>R-I{"6׆V%QSHHӇ2Pg? 19yypL hfD{(."9sM?NFKC:Nh/ 592ɊkyA&ǪjFf+jV tnJ+&@Wu)͹�dE -?5ZZ% OJ  A]_1<h5q#MMN`xPI=GZ5*"\ٴS TVaq8FcTXgdkt5ӖEWdMh2YXEsђ@ЄvB0_K'CEaq Q4AV6N"%1.:@UnB2|ӠD vG0p;S`ctAk�gi4JZ�|Iٸ_4qbn'N""~*)JzXJF*8M�vd\&ۑ-l|x4/\'ueGPZDlS2<?u:RLu:,L"D"(/ {hǚ h^c /n#s=V�dS028@ASD�}JC^km|ӫhӢ~-daMO4mTĽuMbyHxbXQ,s*2LWu NtCkmz\El6: 5�uS'tlS5@06CO"#M| ]g܏7; Hc]8d] dȡ̎yOjF}{5:ouZI5XE V Usy|kr4[މtNQEG$@sL@k䆼C(6�/,^e ûkE@+#"i"ӺdQ3-T>8pyMfT@ O=H ÌChrMtL((ƑX׻)dcqL"NE"J :X'NRsL͉R ə]$hitAS53jl܋LP) [1@5)Q"1,"qdlfaWMV %<&]ᙕmdi)-.РY&/0X:TAist4n骫f-A!D1.bj X4LoT[R++,J$tDԎHY#-OAM?49@D+h;BE4N_Zk<@ "kT<Gz]PQkT EM+Zu!4 lbi��|^keф[/.-UBswV3 \ྍh /c7(!f>�ٝBf7Tth"oN ,^CP]H q5<BaT++6B)c]K_ Pr�Ly'ƨi34DN&tEw1Xx V/-3lcaedL 8 PhI&YAnLNF G4+FދEp53*8bWfw*4. $ 4ggRiD[<iFQ- ^w Rqj|P)"]&b6\+`#Ţyuz;tÜ5Uyœ6^*)5 'iuG \L-{HM Em(x 3)YC5P s,p�:�k M8]>D2q0eO1, |kdV'g;e:V88XrҨhH&9b*0 ;')hPZ_zoyX@K7[rF2(2FG[f^HZq0 茶A\L`@7->K6iG;E" *H+8v"v o"Sjy 'pUʚ fb2A@Xt-ΧtI;c>e"KA:nsPѠ!�(CI֝i\dm1g\<Hl耥]F?37ڭzk"> EylG}NOᮤ'7ňʺzhN;O\ S?cbb�cI_;1FA 1#L*jjvRk<ԙ4 2fM]faٙ۱yߎe0_C$憾D9sj(KW@2)hk<3*x@N45օt�p-OT)X|RbJ{q5K|uh{&K Ye/6z(,\N1DDD08d(t:DM>',#3nf-O%A5$(L5To'.6c01Mcڐ@Q%F <G7U&,  (E4LA6F^&5K5v<4] 3TdDtAL 5"Zbj-708cU`-NfLEg.͚Alsr)d"KHp`$eIo]-6RۍŮӕ helɵ1Jh߼`H"Dnׄ� S$H4Xp6j4CEh4jQ 4a|0t6AqnĪ24M4hVtM%:R Syn$)P[#11Z\և|DU4ӢlHȽ<7f:) p誶jB<QB, `_%KS5BfJltL/EM3F$.Ս1:E&8jgԊ+;@ Z'd$`87?gcB/&(eD|,n5g]& o#vfi߄㇛&ni9Xs5qw&-S{dPsUilƾ GGIגxx&�u 03;XBu@pE}: D`+4 P(uhgQvbiL2oYBz*@n=P6to@^SkMtM<dV�Kq~ nD7V7K@oDxeᦗN1ާ 뢶j 8E\·Xy$^v5/a沶^i@&E" #[/sSth"k~aHMH-h¥t&]C!2' Ӫ'rD8<IN_wj' cY@#5@ Gyu3{*[J { /�=ޔC W.'IDXH&&H :ODoSr=SkRYC$/u xyo R:\a!ZŧvF@E_0Pq3qL )`kDZ9[n<UX84'6҇IGrN6"rd8U1K ¼GRz'89"hodu=mL׽̑b?WXn�<^i'OdV*HlPz5٥A$@T�fQ+c a;̠$.YJLU˱q;&. N υKF;F?cBqZ�fLZ1.iڟ5  qԙ/tL.Ã>"_{(灘ѧT{ѵznwtCڐF"?$tD/e2!4\9wvXn/<f@N+=UU@Hk >CY:(D}N]5E|^P~aBPCXDDH9֢E @3ʝT-qAO8 VS t`+q& \p# =jMtN&aS4mD>�9B@&P'ɩ`5EOl�*wNb;r(A2[SY0.;[hn L"2pVZ,i#HX\& f=塼"�;7H)Y w.ɳ8XMTi�(B gPH}oNR`rArԧ &N2jBvQ�rNVOC~h [Io]a6[brɱ $C5$Qpξ��܎HpwDK4!=?f0,oRsAQZL"!yӢ`<[2PY4G沂]5x 4'1'! f:Y&mF2{BĬ4pf0ftk_$lrwZQ1H^i'iu6}Dn6Qilp,^2.Oܯ[GtlQK~т O.q5?`82{\erlЙ5Gb%H�iz(I*s7=JHS_:7Ɉ7wf'XdrCjT Ph3tnp|mpҜ 1 `9X(q9iOtk:B&#:9ىWֈZI'w*"jUY<+I&:"~Wކ JKb9Tf Go g7KuXg;#.&S/$p$ @;TPBmK|5 X#VlxTm@"uO$~(ܟD8 @ҺnQy.kn%4A))żTFVHvO.1tsr!s)yRrӲj}y,>72d(#Xy')N&8zLVPq(D�cM4Kap65YIcɁk,H/uIZj!L &_wDY[B IMzq4 Gp&f}a0"!1Z`LE:�"x9|^9,8"1zKn$\Y3WZ9+֐e8X? QIg"Qnf[u=mThdĂSfkȾ'F>\& !p]5+årKb 8a/ctž#?;?k ?ad ?�_&(THXn{͚$?P6F\KtGXàēXNŹO5ęBGג$Bɝ4Yb DWU ADhI"BcopFEuMpD* 3ꍌ15.4G@#^ik14l.s8iL k/I sr�jak)EVѓ Fj -'eVY կM˨$U0EN)1ƒçDx�4S/Уk[SHqy"KOrmGGe"k j7 ,!Me6hh4^A0AԦaB z؁E IvZ8mP(F_2[ڦi5'ŷ8M>24iCtldIi@A19tLɹ,B0*hrX5sxktі8XI0 NV<z]_(bApڥKYE] ]tN#{Q"tGMj@4k]&Fz]VMs$CNHAYdN}i8�|: k{Ф&9@A:;f ^WHM0O W&{5E- 䰭"@ubˮj(6k:\.1ӪA1 6ءExv`ZV&lϋ|<:Z2{GFJqmnna 3ϒ_iaL6 ~ }f$c}T' ̠4g n?Vxv,,L1Cך?Wcۚ~SB$1hBrT'EO zX _M $!j/ Ҟ]TmTX-jUo@4 #ʎ Z.sum ƺ22 H1\sP/RQr IU#P\-�s4j5q`)! ChIah.qR i"XDZWiXDZjt A.3jhl'p^nHL1F Fܸa 4 BHG1MffatK]>2@T<6$dځ@58ǽ=ZZCQ4}ah2cJ҉ "-pW^9`>1H nHwYAè#  Vڈf˨gpr[4{-&m:LBfv6AS�tFi uź,BbcKLo4Ff74 `̛FoL߆M`Z bKz,.uܧ5AqTH kj([DL&΃hxdt1C2/Y{ _eٴe/ d[-{[[J3\�s+ EOqGT汷GF+yfwT㹩 ݊MZ !}!c+bvXN"w0Wd{Rzfjaa=Sa3 [t"6Q&ߢȦR An�Sq;QVG]FtуwP[P( �hPu~NgIM+"M tG8-$4RnmMJe\�ktT*i<Ae5JgqۣIuL-eSS3eJa#yͪh&+s{ Z\20H3\SDsbgIA34yȻ6`ONxvNub*E&UrS6DLASEwM.h<pĦV4k( GP"A2o;('qI/D3k\2veք ֺ#.'E5( չuӲ$HQ3}kyO0+IلqnڝT2 x0S^kuY 5D `R,2mXyS2J !aO/#7tT2Dny'aɉiP Ђs^q2b%<fn u ؍_D&{td`uѲcG(<#2n7 -huʨ6$ q*5Dƒ3P.+h&Z �R<pJS<Fod3:<X\Sx>af짇{xx,x`uN,$iUbV + 4/L'`kw@-hF=,9&ԙ~j4AW:e L+H5d7 [i&(<TDISx NE-]C�SumIV5aŴQxD'xO`:6>h@E5$$& BÇS&98b6G>LLB:8BK]I È 86+':NXt>8g\aA'NN~~i{TI5i -Բ@:pݢüQk\{h�SNqf"FЀˣt)'$[(5=aEDй-Ч9Ln8Zy .@C6C"uYjwS 9@n[O^k/sLDS39b4n,vlD~�F{GN|x9ebC,@�-$Ff66X>,ߊRMwIڒ0FA^ oW&#He؁1#ACht&AAn&vOJ3E[s:.pk֫(8M4N™6fleRjhw4O7Fa7Xn(Q˞Lh Iߪ`iQ=S;M;tv7ob2ש{0 $Wi ѩ)ĹI:qc~( :יY{&r~#ɒ^I= x`sf.m@AH@VZ x�njF`5٣�A-Qf%j-uN\;Eà䋨49=a4@G-Xc6XCI5O9tu�@u\+daV-u0T�&fKg@X&c4XԮ* b�Xq,6k>N֬;r@&Xp N\5AD@@tTíŷ lw# [<&yLLt�4"xSHGMe!կ$ix8{Muh.IS`-{^i(OXqk0@)LԎSd+|շ]Q6@FZR :L;֩\wwO$̠ 8M<#AU'DHhoLU4^#4QDR=үmOknK Â�4 7{\n˜x DG;3%>4-(`Ր-Ĩ7D Y+- ִ)+Lr4W_zUTD) E\ hRrgټ+sMtP)A4(u3darxI\ޛ)A!F>C@R+P3C<`[(Y2&]%\@@KZ0ʀy;l@HP +DdiD8?SQ٦~8ʟCRsXc@<f#f +&>R/|,GOhvwe,i)g`Ո qLlt '�SZcT<7Nj}eZiqjsBPZtXyZSlră#D3XTјY2Ēzk1&H'A2LZ` ܳ{(O$tvJ525>A- VD WTe.&O1;*#]U4IPcçM=J<YEO<N&("AzeT+7Tf|('YdI59S< jgTXhvpOh$˂EOx4B ^lZZ"Q6�9o}1na;&M<5W5@xyfgͥ70ūu4:&U8TWiNH=�jb-3 d3$LU kXS'Hq@Vp!1aKASV3mMJ 6akAM'tZ'UE5>j_d@&(?W*ۉqq[dCA;JP\4y' LK O*+B":β�TuXPEX'КUsjC<6>eMPF2 DH(a<(4MВLg6  sM {zf4%1ft=|=扱 *A$FkLp7kG&<5tƛh.vUq(qB#nbNO~ѷpœAV#W%kľK3X@" \EPA#űM'i4T(�g<:n)f5H'sM@u ܍a3YF6XE|.�z&BeQ!&P3?=Iͽ Q& ַr`j _Ρ7ߜܲ&=Q5$OU$TYI{M0 SPL Y˒LuiGvp`.!ӪHV!"mOnWo:Q V!D"7秒Hf'u|&S< _^(Ӭ +699yi8ͣE8t ϚbL l\ҟ�&e Q3JoiV.anz תygOrpMa6.Hxx 5ÒqI&T̓1nGt@::sƜ͓3PvA T]ҥ0@ Դ#OwuEpu;Z~+0=D d3֕(+0+F)kC9LƺI$uM"(O6Z HnSLhIOTƇ/f"pUN"%&44zuYgB"'Z O:!6 4|]5D>(@:{qkHeB`xq&zBЊXnDV&tBfNrLPCG)ŐZLdjj5N9s@M\>%?PNW`roꓜEJlc**zpŋ >AvL^DaA\_ɬ][3౲;^Acn�w {։%=x=c4>CD@z!/fdjr@/)NB0GJ@Ъd6Dќ o&U)T FLO& o@gnsDD�D eY>+Ĵe CV@H*4O9ϯiUÕk:aĆGp@XSZ֥S\? >o4j`(~HP#9a%j#ZEѹI MXP$U L:e462'-3Ψ;SkNkB@s@hIM#YYn@dL] E|Vkn\4TPZS(؃&kk %״8dSDl�uBb{RW&z hx[,rmU( >v46N!evaWh9&4 \l\ *fN.PEl<*Fw Sp3JBIRL Wࡹ`e27N:E2EPt�s�HW44&nm)и6z7ta M[k47_234M\Hnna6F2SPxX?{4EwvN�;on] =.aN}VZ[j*$[[t$A)=IkEVfZyD� ϹAJ ~0fVaPDS75<>+D_64\& Djhe"5:<v%0xh]F2;8c]U+J.\퓛$?pS;Cpߔ2Ѳ4옘J�Kah%c~<S'ܤ cDNhADD9&P H6)0f ÅPO�MX>)IZ~(i0ת|R�Tᰭ sh<#D� EOsY努e5)iU.a5ĝAp\e"i,3."OsOLDD?d&4EA_�� L|Rl-DHַ(v 7k.lﵨfͿZE2W6)g+^ @lF~hf / VbA$9KZd֓(g%A&rA'|j?4.U+::L|6KEVn'fXU$JIO{ѓ&Ԕ K' F]Чǿ- p-r+`|.yܦ("hJ&Ip,CPDfuSa?b\Ѩ.tT6fU"�- Ba`q[qQ9Zfn-z"A..C&2`ϡC0¥6@aaK\ ;\",&�*MӈvTM!1cDܷ%2�\PMO54 t頽|! .0I&tNpCN7G4+|;L-?{PsEFh&D ӋżX�wuL9ȸx3A s0v m^rwB0})/S]l x(J5Z'qkrT?i@*N  45čjPrS&ebu[qL N)FrNKGK+T_Ѥ0He 7C+b!i'E'0z"ga�MSj">VGe[0nQB"]O4ᡙINi�ju&RuiN3 M 2 B-UnM-8;-UVE-g52!(r DM*b tItQdl1T3x5GT934-La<G˒aK$An 33E51Tbi}j = :i|�XxN0HhjH>q3Ú Sq DH6D]einP);|Cs,m3(f ɠLS#hNU*&PMQ D6/] 1Q7(5 KH3#P&e`ϵ:PE":,W�^k+}9Ji1@9 A)An oҕ(b67cM?@ (Po5~I"F-MvGd;'M I)8f:�$ A9kS!c@ef%K rN" wY7drn+)K`ӢlҧEډ%^#Dav`|3; ;ɉޫZ## 7(߂!&w?T<2cX 6!:)&2ŔF;+uDN<ZP&cΒh|dP@bD:oUA~J6F$V9>iM(ɄMfcTO.!䁬܅|aΠODӐ$ u 3 @yQ8ixOE DuPjRhE[m= 4�ILHt^lub,'t^-G=9 V$5 ̬I|fi5uLIdoꟕ?0 pYi]0G]{N``QsMqNE% 4qTsN!z )-iDR40ccdIP{z Pnف4>k :aRDsXYlv;uP cT;D-a8dz0P #]4p;(SEFlo!ljzAwL*3U5' C͉˒5}2ɥTS4 Qh%e7k ;/Y{ᴋV` f}eADqm5M a8kr~& I.qi˱ߪ.]5{ wv<# qX(:'+ ,2>5q)>͠�#6FYꛓ+m'! X$!Yn44 Цhnt%"@/% vL<�W{ 2i`"'?6ksH[!6rq�Ӛ||Ag48ܓ'-LlJqq.Sf|eo0?WFCz!J,jϢB?W@($ xwЗ~gd3SEQkm*/R"yz.|}TDfi{#G5[ & hNH NEyfB ;3E9#܍3PA`(-%D8 Ӊ^ECL~yL1=z�e2 Ff<ѱy(ƑRcu@(AkLjЎHmS" LTkD MŖ)ɖhMivXMXQY<H?YmHX.%v}�-A vAyM5,q1J;AMALq%2�\=S幫Кu$'CrYil6$u佞!1djMt'Sb|Ӊ 8Lw2j&7u|415LM<! 5Ot@ًy,Zh<nUT3 چt@BZEjhBj5Ea|yGa]k{Vh5 8J'O$',~(;@9'iNR ~ݛ3Ɠ" xv.؇]]u7_KvQpj5_L`cab, ##_9uoTOŞ~Pl'fZm 4ؾ]ia2!׿euC(u .-Mk>FWMPX _nhO-v佚rGz�9U4Os1z l8r8S]Jq 5J v5dZn#Y@n.$A]7/G+6NԴcbÁ4P mUY9^tjHTKtN^̇kU~&R L~N�*}vC I a7̀QAz&Ά=pPf.XLd(D N-]S}749AvOOݪQ6|2*( v*GD5m9Iq{Z',L#IBFp&;l6Z{d?4B``$$"2tUq0? sPת0cC[X1WXNqlA<MTJ oi!.`fe>qQ¦a ǚ� 6904䝇zPJm,Cyl;(_$2Tt襌 );#bliK荝-ЅY(R"f/F'c \H4WWG2Դ;5#ZM:bǢ4(m�XZ7 'ߪxa|`KC#r[;c\ghDß LqB-9kp�.a5v֌x`L\Z y f&LF`|%̣7-V5&LJmpSp`f@C4H&P)Z QkT�TJy>%.X R\&&�S|'1pFd7Eͤs$kr!0⢇?-uk{1Áh@W03`ߢ`'�Em/p;in8fʝsJ+拷Jh$̝S ߔF3~VѢub[ˢŒyYhft\Y($]5[SQ7]TnXB`9_z!*iRةWC4SEK?W^р4 o]՟"Y.-gO'{ c+ڣI3k<ND<"Ak2 :߅k(š ЉtZ#dZhu-林RӬenIZYfA2ׄK~bwS0HxB 0Zk$Hh|5) *=3&<q@E%x<a_uE"sL/ :'K!Eh}uLj"bs;挰HeEP<LPG_g??$G4p>} ^�nl&_D)s0N5+4�8XJXT: ZPlj(R?:.>˜x!0OAeSuG"biCR4kꈆk?$(:H1]/p4Ǘ5o/p.ɞ:t\/u~.58b:"hN{2n& o'Īxtb7ɠNZ$ \VDo(rB0e/u`0Sl#R�LȂh*t6>h85&&8ƻ|V!;zecޅ柊.4=F鄝68s^tMAlkhlYV-)0l�3i*NmOtIBpm:>3@vf;]ϩYW@y:]0 ˬ~(Ni#>ƵL4ꁱF]p) D?2ֆ+䳁 7L9[‰kbgS � "߯4憃19A(qΉFŇeq=,h|դn^ kktG#C')z!q(}A_4D츅1&TEWPT"B7A32ݤm{0FM d 1NK=OR߻>Oz0y`{<P[U0\kMlmHLiO 8Fj5,&G5DsoEΨ#--\y"/ÙiRcH<"h:(6T_dğ0DBcgW8D�4.ip&3Cr3ԎHD9H  kѿ4s ˚g a]DMxodD|S�TIb|vꛕH VS0 $+ R4 VT|"w4C[U49PůY!L`=vVgELp<@+Q i&齔VrnS4k@ "/Hq7z4:K6D>htP<Fy"=ۢa~l@tD19Kk9g3}ˤڟ+ -J1=iVm3 <^(')IԒF䅏ƨDqL<BD+{D7愘V7h?4Vj|D^))t>@h;Oz( " /?x`uht\\$l0j/h;'?L)tZbL:$섇joNZ v3”G]mD0^5 itb�AX>eZ̮p^QUfAy/=Z'Z fWjޞAC]Sʘxq de^S"Պ xhk*D|9rE֐#mP]z,Iq(ꎙ#o :tD֠!䅝$Ko*a.ҫQDYK&}Ȑg g? P�0G� :k'�@+v<V]7GFB;䷰?^NUB<]K'Tƅ6z]^i) A_vFEiM11ƪYMhPl $xQ~( ˗7DDLlm6Cҥ: qkA"FE%sSUoOĚO$gYFkkѴMu >ur< Nli ru]6aYEIUWdXH"FDÍ"s+4"C&IN1Dsk@q1TXD^}iMeӮWq�+cbrSvlY�ݲ)üFD'0�70?~eVѢhўi)!5|5ٱ3(( Ő#^#Er[CΈD  sW.>'yKj�;M['RTyK8QbFdÖ"utUgHT %X %4 Lƻ͖wEQ5]&`9,i�/fgvMS!楞u遚4MtgXz~jx5Gu;]MM_?"Ӵ#`~hMBxdAmroJhǒ˕<:vq ri 1C8ϳ( Duc(6q oHOq˸[H1P֘58e\@@NN54'Qo&~j>ג.viq0(eԨ`Ѡ-.w @djYTE`.ir--(7W`xav |5.#bci-ے2d Ebcz0Ctj%3d$0cQdF$ Xm'zsFESfM42 9uObkP4BKL/4C,Vg,3&SeC 6M 5>2Zj! }Ha@Ƀ ӿ1G5xq#v)uCЉ2}Wgc up2M 0[VhȮM&pp'n-WfsݞI`>&瑩 9�kAӑ`NM@XY@m�}hΫ #  NŌKL롲M\ۚ\ȑv]� mev, � c򈠽p"!pdR�& DT4C曛+1$\0P.Ƀτ A.X%vL�&R8nVмM>*Dں<h:Jp(a6XWmʜW� wടcꝝ|^[q-CD0j{e,#riDL3`aC@p纾ڻ&.a-0* �bA.?jTM47�[v|?􅁇e B̍iY8KO52NIsًdUv<ɃÁ|~X\ag@M$iZ*?Z9'T{q3Xy  6+FXv%1p!27X,My!K 䋚**LG Mgc[OR֞�0Z ׅ: 桛5Wyiٴˏ]fkyb q�ռȬ7Kֈk[FaƺB,!_49EtDyÚf j)$@H9:_ԩ STlG{'Mk kE o:&�uiW$ �vU�"H6f\@M)$$n:)ȉԩuRfTDHuF鑍?jy3ov>w{Gv,a�mӄG)fcC mI_ ߇xGo&O_?q0r7(P;L5C;F7yBy<{g;;f;7v(;Bf+!!tF <�)U]%noa8WU7:A?qc0Oq?CCpi-qo$bSEv\(8hk@�w<4nLe+Wh|;ᝢljNv̂"jk5:&EmAW7sPSor&">QrL5:K~v) oUܽn;|'~ .;NX1ê@h4ԕ/5z/:_ni:wɖ[ht q!n@?]07{ &m~ヾ.3|;�cbrKڑ!Pj$괎~I]f+)h4J14SxZLO^J] :ɍWĮì3Mb 'VF츫P~)!.gKo.po1bU1i ⮩œ^2忒`BHX4s Հy^߼9D _߂ }햸AUjJֈ�=ܵj:YUx<Wx0s]a#+ Fv83#K˻8C, +vbJQu3j]G/!\|WyxGø�2E${N. xf _8?Lk;Vggd_q.hG8AsFHhfֈh�w4?xMZޛ�2+D)EV;)S{?V b x:"�SNdl6Uw?<mժ&k5ւ 5B!oq_Mvk�P{F5f(~aQ. M⃴�ĖCr]=>JLR؍kc� ëV#q0kPGpF6v�=؊oAO5rzH(i�c{Rq8m8 JoGgij�>@6 s_7t'gω仭`tXx3ɧy(|;q03|N`Q&]rexɲm&O-PLs@NJ:#A1 |&[;͠N׉٤(FDuOtN.<?4K\x菆2 )<=xT^]Ȫ[R(54�*kPG4kߩw q@;+ENb"wؓ"6DN�>laUjb;jMa�=ďZ$&u;ί ߺ⦑T$@-dK/ #] ~EuiQl:#A+uDSL3;6axp0M_S kf<9 ;CG@;w=ބq7y;gv&oKZ�Si3 j9�()xLw6Dȁ5"8�;Kᕦξz ;D/-Ɇqq$yK1Xwx9x (HB s�O1q1ӻLMŪ� ݟMiC[ tA¿O�:G^9|7_ex֨{�{,3P�bC}#:iJ;2�ܦcѰ�w=E9jLѿys(7NX /Q ד0ӽ³Nc_a5LuFq)eLz֊9cXV"I65蹑mS2*F@F(Q}-b4DD7qKhGk-Į&N^`6TqX f?|tO{AkAxƼic5)@Dy_ `2ҟ.GaWqF��Dk]U2_;т;ٝѩ!05yĠvQ=+m?qaⴏ:(tP7Gi,)vuppX8iG촔اBC!gZ}؅J-OUa Z=5q f͚@;MއX?#(�MZD&'|WM[Ĉ^,L_B kWO@jMoXc_VK8pp~MQc|}GvG঴%Piu)34_HcGeΆ E�2Hc]ɴO 4:/û~(",HpNה7.CC:ފ,s{X־oqf&_sk,Yh##嘸y pPgxs*)G)6yh:lJgp 'P+E-Bn%u,a�hhPM5BYCiR$6"&(rM4Du/tI)V! NRHFg1  (B@7 +EsxmTXOyMh>MA[<�$3MB"k� 5oͿ0%mAtp]GÒb(mW}O�/>/48?�w�p[pǙ&«\\oxN}SE|ވdxQSpDy�wr#.G\8#�h BJ1pwϸգ8ڢcs^cpjćV6sOmtDax5`#N |W\1vi'&G+ TC󂅆|мO%&4 OM:#pcNcd�FqS*[a4v>ig H h7' ‡GWWw^Y\�}ڀI� 佟G?}J&K5aDLSQ�o?KHG4%Ani8G?owߒ&um!O �wpn#G+5`kk~Aא]Rcq6߁�v/z8  iumP O9# G.U'=*&x%$Mcܟ=-C`iA4nߐIGȬŠZވlu'S04$Qڏ$PBlQ{<7HNJZ3YW WHQED Lgǘ3}@p�r 8B]\~/'j�9١4wvl|jgQrF]ϋӉn4pk!W:9�%9]CZy@2'ufp?.i)ߵ @ivlg!oz|{ccXxg0fd�[ "mP =͓=ȓ4B oEϹḧyNψ9]`K<""A);rCb<Vg -qxtUЧ 5( joh7"(P8XG�p$dhSCvbӻb19-aU~0߆WݡE.pֱp3H$k\enr07[ɜwvOÛBz Ku@CE?W_b tEXBp�tnaԕv�w�pD&쥾J`z'~�Oͺ揬<K\Ai͓/U8KD�M9 U4U;EGkTa|>ΕN0Kϑ(6ү()@n�3 QMsꋲ4PL $ҝW#O!* 6iPZ7qDvJiF`S!WQStis5^릝fLXNKhkdCbO^WV�N-t[pN><3{v?b jӫONm TQ}/q�{ caZhs.d c=�gģ(`gV_a a #tںxhxSFV]`5.04VOT<Low|<nld<@+c1[?C+fˌ(.fz#1򾣸^ѐ0${]S˄MQp'\f)!Nɵn|g(poТ 'N&~;3 č6*b%k)-U' �zs�.g[@;L@^o eJ�g?Z:j'uo Pտvn 鉡px0c-0y 2:ùya4F.Sl\A?iC֎BŴq qٴZL-qԷL� IOˍwEBDb7<] v;F,ᅭ;O6b>QAOMFskb{FR)Y_DVTujmO|D w_!?$u[nZSu2M g6Q g`ҫِ7<r&v42]kS\ڣ@ $L)TQ^h."FRDR VNiF~I+4갞Bl)14tఌfmUV7?~;yH/�sfY?ΜlGſJ&SӇce14::@߯49$_�qIMZh<V\bp=�`NlCN!4Ղ@<:%QФrzn�P :U`?hkd3DR㉊Gq0LV3# 8WRSfin!f YZ"#MD54 CF0k%q=Ċ߇..0-5(E(N!|\Gwk0ӈ+~�d�j_�5}1�E *v�;8<�+t0�emϹ3/ȡΊE$7|Gq⚈4%vg=8d׈8߰<n#W/]5 |o1 tQw~PGt1{I ӣ�ڍJ(;g]Pw xrF4Ƀq70cݬJOs0mmIO 1I>(LnC1�Tn$;WMe4׈5Se1k0'.LXK8S #,i8 4I��#**'*D܀tD4^FJt =@p&MDfտ4)sPS9MOe?! 2_OQbG|B�xX~n d1o%^&Q"bТ?pc�Ͼ~(f~;Y kA^N A߂g\3^� G[�u߫-H eO]?{q?ex^ָt5 2 xACJ J�):70)Eҽ[ ݆׍0h)c@4M(nWt?u�T]i%vq^I {F0Y;]`G jHDsZEv0f?j#v,0ELkqX"V+Eӧ;xOsoG)�DFT�No}%nSIc@�INc�;B?vL!с1\o-OR*iZ ƓR7_uzm %�ݳ~(H~k /Bӿ;0'6�hq"6tSBKG0%>_Eq=?LRg:VX`Á 7kG 06.3&�=Q%ICs6I<#_42SyBiMjtX*A ۘ c.fhSWs|o"@ɦ�M1P8LV_Np-q֕@I&/;!d8#<=4#~gb 4l`_ �ȡ!J� ]gf?p�A4FhxZn{Ga77g6-s3G~ik6m|;,њ/5Z[Nj(bfJO$xN�uq^z1ԧj&~pj\ǣ$$PD�% /6KpnCM5I:FQ΄,AoAKns>Muo TĪF}s;7H~l|9xsO4::"'~Ƕ(;j;E@OF[۾ n7B6 =XӮVo(Fd56/x\G"0i{4&*-�=}S>%^4*�Ɯ?""5Z&AqУVjӺ?zQ>Nb)us8k*iZV.Bկn ;Wy'J|Q 9~& OEAF`R~IT'xE4|"vBbkrL]a 86Oira6 7E5( m^ DKB3e؉ XW5W[MTJI#dth=Q: uG]~HO;TPc?<L>E}ٱfg⾍b\.r�w QlkDHto]Ci?]43wYf lnQ^ҘX-&:{@fw/ M]2nsmGEۆ;A1_FvgsWѝ˜Wkn vT<o2zNHU.-`ЇjSAXntkN7̱݊38i&!}%Ǹ+ +Nc^($%lc@ A혝9򘑢s/^ξYw .WǪu걉 yH7S~ud&jg)�Ҿ?z읗�۱ ug }9F)B$.n6<Vo_Nv(}&f(s(<^^ID)<Kh[}7ڌ_ZR\<W Wӽ?}-nMb֕혘3Uƾk"9M}ig-K RoGekEjp?+bf.�#X Y>$u꾕Xm<8mt&lWźs<D<VWjynPX1_M}.+ _,(3YY=X-q 3I_M2_ |%@̄"AUh@M�0M_IbeWf)iWg޻?fX혘9[_ E0e4thӢi<[2 LsO7�7(li0"tLP,S<, bm#DCLM;,1+IO>AI\YMfȞFT+ܺ^!ĜƓT ;&yQZrmnPOD So%NRjѳHTPsUf)НDJw=ި�kA�)[ 窽hsS":Z PMoPod@G(IU5YDlA\zӚ :&Wڊy\6?sLBQrX`7Dւn3@?4FR2"@]D )(;4jj?Z)G=!0ѪTJ/O9"-U֗&#<kt]m.QuY@wFdUXh|+$4iWe$B]hdiZ;D5k{'f:tl7jgjS2yJsjS6D&~&M'R?9Ff6N2 DA&9WRbz)&(P 9FD$F2'3 ""&|A8ImǪ%ELfcLjK*64^&Ra0@;he`D,86MA>BTQ΋#AA@/l7XDͬxEUh]Nh[fHCNV-A4->0n<׵Q:B#L/~P%o}MʤP"M)+Au* ht?4᝖ 2tDjy A6^_~P~pbWe?wEb *i!4LQ@l?. "&`"JoڧϽ: J $ {G5 tA&ipXoZ@Am2�Zv@^O  ҢL.&U<>b#.&sS{sO֟qgwXd Xe�|ʝH#Mm)̐ ]}6#D}êd.`$zBJݮP%:ZG4`A jFqxrCY:Ch &[B363UyR괠LN隊W ?W?^:Z6Ke_06ґIB'BlK' P740.bfe{Lǁ]`{':8@$XtvDΝ@N7% 6<inV扑}o;&L�$H{VZHxOon,Ro> Qۢ1:1T '. 2keZXm!еCNPj?4iyWL#q<lY!*d,#eh8OhBWdڛM8bQAjOD)†.?Z' U>XxiMm��꾄hy�M˜dȴDٱ3MXcDMf&q6\ _T^6DbG&:uOLX1>k0XTX\+Ͻk.F~\I9=O G5WpLGJF'BbIl:-L<MB {OD;6.8"+:~?bWb3ܱ[Z+CGRBd֜Nዓ)5P9LPX&xɢ({?@�Se4NX]<Oz04ةb v4 fO^*RHTMy(%phL)/}/ת. 7S[ lVQIMc#`~o^�se}� v�S*OI)cH0I <LEO5n E` Ǫu]�Qu m h |SɑkoF.i(ADqh;-|ɇuۚ}P"]Pn69A"SE⟁L9u' sp?r [Z 4] ^ sI<TJ1S_4JZ6Й٢=)Ua QN'}(fiU`hf 45k2�$θ^c)v:f蝥uYe:/{Ohjwb869L~M�Zh3<05XRTetCG˲% )n\HtԚ'�F-o@PҜR4M7fG9Ѕ ĔÇi  Ws+ zf1s4D#FVT潘!c}["V+?ŌrbP-ɺ"0g@C15IG |豻7h !`:5h/ LÏk3<f, �qVҟ9LU%G yz!ZWY�Vy=Ϳ|sVw S5,�hޥv̈́.2xsQ[_ �hV?gcs1E9k}dsYN# Xm8M~NyeqGY�(&v\-h3$;V, y9dr� UÆ=2~HѾL;ݗ_E7Haaaiè 沈Rj83V:ϋ b_V406L5V cTzE D:COi:dy{DWͲh&75<Cdh 9vxa<fdTV�`E@7l>A>b%;xD~P.&bEDX0[ת5oNxI3iy!K܏b5-'U&NbWRB$ eC["$Ti1:$ZL":wiXIbL!<]�vh+(] q&Ok.�f]9'҇d晊 fo 79<Hfk!18!15a8}`3tۛunkL�sq0�d_ �ھ?�VՉ]0g�EWX�&"Q87}*x[ҋ fPWi`ٮ- ;WՏy!�rz)�šO]]nw2;@  w+h~+Sԩy!Y�j6Mq']#F$�:q0q ;KnV�wҒzy6})[<^۠q^֣  Վ-];CiWs{;Od^&8J{"v!s\�ؙ?4ٚ=Q'0!=4_do\"OOy21) حJsf'1ͼGbbx^dG-�e_ǚ%-͈T{rtV3Mpe.lM8l_\~Iy'>غ~tHy|ZBg6̠axxOp'M vh׍Xԗ{#pxŮx;ck8ɡX,\oniٿ l|�PX؍óvvT8y߶I/>3�.^b-m5X'<0;�⚾cv@~'_Q9S>REeca"!hIMG?n6WB/8hw@A;ۖڂSai2P <ʷ$w '~JE V(!G*!9MQmׂomSCqϪp޵Xt J3WT `Ef05hK�bC 'ۊNl,B$4>h#6,& ֵ_K�Ep<C8WjZ�\X?a걿eNAKh&@uW�{P.�!? ίxq-_  d�I\'o73U�it_N\V2<GdzǒTP #_ĵ/3κ/H[DkRω?lsD;dz/j1Uf5v3[_Gbi ]uTh�u._?�qֆ4Vω[Wt|�Ð �o}}U;6`iՅh?V7FN(p ߗ8Ɓ)'mi#[Fuް~>]/q~?5jh'y4Gﹰ1 5]0?q?οc6҇<EC`;N*ٿS!(iO am2N�CcOQ8kO͎,p8Q}3.ŁJaq j g�a~(wW9])�ڰ RiDd+@@҄*Ll!yl\`>e<?%�_q6a0KBhYiF]kZ+Y@G4<"9ZFO5o.J/j! B8Y/ 4-*o&։?r`0SIN*eccf aavȴf /P,F4sh x`lLG2=L�E8W/샲cacMX|ۅ ]`5Π}/l+]-7_Ev\.ӂ>;GEyl4>k�+Ok^v3'=( sn8S�^!ӚdX7DlobQ4^/DȖؑ2iT1#)ί%1<_)o8?v 7X'l(q8q4XxKཬW8|/:/?,>aW߉N_Z>i׿2Qλ,"DŽC">?U&q<ٔa�9*RC9 <fv@&!*M9,'Ȑg)8> <W*W';?hyv_|8a0XN9U{xm?$/M� �&CG5؛"$v?T$*H#sfرn~Kу 9t3sxqۍ�FflTf(vwOHm+�H�U)@}kR�o(Π1پL-iwTG@Z]7/�@|8A *(k+a:Uۊej*ҲB` Bjk[& (Nk4ك}!Hi%e:dj]ú9\DE wU4>�m[5XA)tݙw U8$e,3R`�/)g>`fXdy]DK`7,L ${GWw݅jY+-ڇs�H෵[ER`w0[�g~y<ma44/p;rvSRehfo!z#a؊Մ{K;F�<cZrcŸ3x'ݮ"zng[ KݨF7iwv<W-F6h Xyn탿s0>kK(+lxحisX�#Do nUg ZZs4r_H`O�}˵;4wK0Zp ChL!M!N ZE~fh9�KϰvTUvsH˫'m%UHX+ L"&6X?S}ؿ7W.7هQ&yfr0Оu;'Qs[Ϫcs4ȐMئF೴8k\(by.߁M>8av|L8j~2[Yad(bM hv�Ռo:B,ۆ#k~av)֖_d8zf#]~;j6UJzk awd4h;0b-H]q9GbC.sl&Zᱡ4_ 4{8nw*c~[ޫ\.͈q&t�aG ;V$`UX\Lnxa-7�ۈ iSfo||+e|0b╕pnxɇw4 SUdT)0c30{PZ|K{Y2,n<m#æovcWt Ds 3Cq~WO4JhWmh^TV(Xl.=c[\pm[WNg@7] uX 'Zԧ蝡^}t(Ʉ 1â~\)s\`ZZbQ;�}5>ODNEB_|ƢkiǶb8U&J2I~W8ڈ﫡 sWtAzvvYCu;wSe4:U .˅ Lk+ 6PKuF 5) LO^�S$oKSsbիB9z]4$ƨ*9ߢ0)wXuEri"+ΚHHjyRxJVD lTҚȨ`\fΡ0eM�9VLYZ"1nZDsq.֞ Mi>F9Mѫbd&Bªd8t!6*((!7[1P"ïD$FRcT[u*ɠ fCUje|І-&jzQ*!࠷D$8R�N@!4B\T&5kLVZT6hii665�V"»'1SHT]DӺE@Jw]!4 MmlE\rS]CiP5fVb'dҀ5f'ވ=7XN <tDEȪt~ [DR:krqxE QSj*#dI榋eL!H^dSjq#_�Eǜ<|Y%1Oe  O6{%n"|'5$I?.JO%Z+%a vn ]=qsѮie<*1nP g3($᧪p7(DhMM: mkm]hA E4ݴls~;s 8(X,k L2)'>B%ac+W+0CD,pDaFa A豍Pq~Hc)->Rj#;mJ1YDSzꆕ@g"&gK f`A:L X' 5Lu~kh|wP;B. " �B 'zI4KY6kJ*60nl5V&<{-DMlNS3ZL% {2 tȝmU`܅�9$ΗN͙4Kc4S8ZBtVۧ7AzwLw{E)=F͘a7 L͹tߒ((R C Qy p࿽? 3%;xjN s 2-h&9ŨH_EP�4Whuy:;7\K5i(Ѓ_G{AOc,Cohv!�If;FXc߄>:�XW} iKHSџHUgn3L<:din;=ؤ\x:o766K=Av?�z2a9t5XXݟ' )�X pA]h_H-"a`ix"B͓4fMz'LPaa8<^dv`Gaa{h6ߚ.>T!1&xm pQ?�@E�w# L$Hc&YGO<W 2XЦiKӺw.h G|L> oB:*Ɂ<н[sB~|^ TUZ fy'@QE@eu|2q# )YLp#@CrB2Bxu?hgR$TB�`w~?hk\w- 0L5ϠCg ,edk,�VM,r�`4kP;`X 6Fa^%~++ŃխG+1FO=<|@˟9Kaa���%d׏pF#5O+0\yBU k9#fnF 0`--c22"KeYV�}# ([ =]7x a}0�?�U'h�1G8х9O|_zS!LӢ 3mAPwL4n?]¾�ʘ5.<Xmiyh!gn 9\xlu!4LB�<Q(ubB35%0E\iDͽS`| uJD;ki[4RiU\xa.+JCT^^Io})BhߜXQ@Q]~(X?.0bڈh @EHO# &Tu@4fmlhGU2E-h Ff/)nMxZwb#2nPt`)1l5;qkۉڈptx�?t0b=Ÿ[ODmZkN`??qz�A~Ÿs�avQNoq+,\'_ p}0<#{m(fwSx;a;#>#$[E,+ui'�W߲��>Ŝ?gR:f]a ͐s �yILj˴9]l#c0w&# Ϸ|in+I ?* g)\I52Q-x&$ӫ @oBt/0[ʶ KWTY"e?d$6݌̘%jQ )Ôب9|r"dUsxZ*"?A2gVRɍlWTt"6 4Tf6} o!+ye $IU@˺u7@iʰ�:lZ}Rȭ`؍l/8KBŴGF.b`;�GQ"SytGO .2]H~ܾ_p@?|#ގ_+PCXe)ٱ]¿�KU$}=LdYqŌ̇o� <ې Iz%$ԟ�"ݧ ƨәֺlb`_޿�w�a_O��;𝉍a A_X8FW&q\4 OQ(}�'ZYPc>mXnkۈX8P^ʇs2Zi l* %Sgˬ<@C5U�A_  Z$Uq 5Rxmעy5+4 bz'j(c A4FxʃWR(�n<xܑ!%bEⴥJ"Bf)2o.!$rXrf $Nɹ@sS5)}6O@MDe2ZLi0d-7Mh&~8L kT[G08 !%${p@Ȁakg:ꎺ5S߿N}n>;'l}1�~}{Y#\|gt7D#(Tb �!^R'јX~U~};`Pqp_De90Flvw9jv;NX3�/ ãq۰GߊOP�W}s{9_'z 8N"'q_˃ `y&�nf~caGa AdƠmg8s'f{w&3bd29"Wنl=X>�hC]~7?>vvn"<l?W\.+$o0ٳcYT\hODe%4DAdM`((Pj+]1'YI;v~ "dۢh+MrEl"9'k ic5<)HGRZ cR~(#_ՑحA]<'@&O4);zkY8ɺD71w|'jեt(ĝ-1!U%85茶8\P.e�#-tr>P}!{&ɤ[e#-^dz}X>(1_u[TmpzrUkJ?`#:"SUy7^/D1u9me0v3N^NDOq.)8´'UN.х{c8KW+&u� #?ukR5@MH@o|jSEMEny#W:ڧƓj4I k%4ZP*TV䯔_ $iV 9/%١捦b4DP@CE%Vf>ivuqL#_zUiѥ"M#d"TmO# j|Pu644^A0<$ \Mu[!QOCcDe_wei?V0/U"WO~5# >V"G>AEEa7mStӚ4|'Mk)"?ft]-0Aןq~;ɌCq:XvKDߐX45uPh8�iSMMG%]L98M�bDRnď5iDkHUphT~ _Ql3H^6=}@"aGɊ-hDu"D#9MjQ40'0D`vO{iD@?{t9m|95::o>jr])"Y Tb�Ѝ. n)f f�^)!*hh�ZJy.,̕v=>(i]+T-tM}>G+ U3Aܦ[f&i�xn:WDO.p~H}PL'ΙaOi s~ FlGV}(�S@EQJpЊMQ1GT : ytB[{W*Vd@lcI5Nm}Q]tȬ<- ck4"C8]a(NfV2l`̃@i:l]dPE6Sc-LxR!7�&C"ુ@wG?AAch*[_:! _^en.iׯu~ٝZ戗?VDnHu V\&IWܼQºD  ?�BO. D!L~h4Iψ H#ްI(i+BM-T�&-MEѲDBf4x'ЎWd!xl.?o4i0MiT� tTP"M$aDklmc1w6o ÈJ5:응^Nd4I70CAU-1T ʛ�N�Ԏ=E>>-øbNN&#:!t#zTRCUοh}vo߄c4QNowt�$u^?+f<?,C�SE¨pڿ/oCqiKMi2Ks Eˤ򀠷C(M:i^\5Pk5QEԛ *@'|M%/oYS5VjR,l ӑ&]K#"J1{I!MB@1$*N1V$p$<315ZZ`I2u=h#:)Q)-kyO #_(Q?%�4e>i`L-oDc r4$xaDٺBw|@W(q(t+txG#wjlbM&9wo 7ԟOx#R pi֎/A"lꅄ" Hk>iQ 1 "sl k%.$Ą e7WlV%EOtk$Y5M'uRu@0 ֻiȸ0mM4ۉ^O_Nt@9G^،)Lݿ{'o(JI茺} 5G] a U2ִXwMӯxIre4[7i@QNmam"S iwnUɧټwJCd}dHد.BXp҉|y,F]MB17m<Ӧ Dlh &ҁ0. �etFKS`)[&*sVF:<B;y <uX�W8\DzVybP"Sb%`g^KH4.E}_'슬,*~v%,DW콡U.޴Nz)*$zd׸+ M,cu2:zyA귲|\q!3L#׸)A~!0>JDa<3{my#;]jHĈښ?XsbZEVlLffS8fWЏ,#蝘Y&{Mh"AXffB 8B(b*ꌓ}y@ FFolb*R8Z@`w�?O&}eyzTNWd%E]B:y+@!\y& A0ג]a{Bk(qMPI('!:Nn# MUnH Pl!]STrB9Brȁi�8ذ�Z:f}`LH 3x�iS,\Aƨo�*bDhLőy&ݴ $@'uJz&L kTaoA}SEywGd9!BMSlFD�T>߯=B4V#޴+$u|ƘeX@7( @^,m] W( )wp' 5 OB40B9|eTU<]tjVCY]3J""SK3,N65G<UCO$f.WWmUuZ8zX֛|S`q\κ'-O7ȨۈQ<Vcߢ>Kna4gq�NYDLZ8ג"~J<<mQCwG=T=Wwh\^Q@2B45 cv^O1VMAtx5^RWD޴͂uN56jo'CT{e(_^DF4q ӺuvX|�MmjBPP XMB0-mDCUq=iP8$I#%*gPIϤ̩VP:/E t ӻA5i!ݙOQ(0*,"7nsLO$LBh#ޥk 6on:~ETm(&"*T|]ӸΉ`h74}vF;TP)}U67GU !t+ [uJTJ% D#Xd JFjVt |w > tW ASHFUD P*nhsDrSRQ";PIE� )4mǒ9*S[#T֪^hSO!46UCU!oT%mkrLq"PhʂRKgܞ7Pʠn-۸Qy#R%<h]gkגL;ܜɷnnQj=]k7ErZ :`'C`B@qlSΨSp2U #I^_4 3!6VJ9zx >KT挠BƈuF9YN5 ZQZy';'xʑD�Bkur^wVBHRSs#7D)討PLZX5PtHl*(I.<DD|Fe>mҫ%4X#7L(e?1U.Z Ut>H `IqQz&"ƢP3RH^)CB5GЦJ j5RWa0Cna(2G4oTN\j3SdfV5 ;1c |J uJ40* e9+jQ{EITELlCJw keDK@OcwV #QCQW!CC.5M{U v (iuE� uW*;Y:StOZFfح"JE@Fi}Qk!%{'-U[^&Bmt\ZI`j`oFH*F)hl4DIV%�")!_rokUSTu5@@Ӓ3N u: Ӛ5Q5Q1d\dJHI&$B%bfSr5N?N&aɇ*7~P&Q9O{M;f!ϸCIM5v�i@AU"V6A "r;!Mbu9+!&fO q71NQy-Y\1X#InKǚƤ'p,ӑؘC*c^TL܍Ln'uBk@ EWL"_EErvCD8o)֨L!jӸ͐3p3 3*&ELY@h$(!tM(p'j#B5,36nmm.}䰃`Tk {z(e{Uu>q"q XNZh3棑T ԵUҿJL0gt 5@T6V* DئA֋3N~)FenBT?f@Ֆ4=ڡq5P@v[j{E5BdzXTcnW]Gy4pB9ruQl4 ׸&h57S)('L{u3X]{%B-HӓS!Ԫע!=ʱ=FI7*u++¯&V.5NU %kkEh8.BV#̀j4b" ʹDE OzZTz KFjxmy/Di3;UZ2~INEȭޠOBZjMGiBdhU$_9ŐuIchSêQtҌB|ѺL5 j8ͥ0fKI ѫV# QhU+SD[ej7M epy/{C(G}W)twU{{]4N@MF4r.y֛Eىo{<JOpMzʲ<oD;pٜN!Xu"]@T8{NsnK˒#DwŲu(+F9 l5I3KN: \+QBM`hFZQBp̀鲡/A›p*5M@ԡZ/T+;sAa 8~H[U{}Oq p<z] k7T}�D^x:]TVϢ?zBPQD4*Ci\Fb5X{@$SM#5'I-,&!JJ֟4թVU^(E f PDѸ9NN[yqQ^%CqT/^4Zy'P'I,%#^2Zy2R9:?4Q@bNVFne:tODG$`W4FtcUY;[-*ӻ5GuȣauDDm5M+-z!t5l6|ܜBܷkM@0DH&&#h0?aŐ@ &KF*IB)B7G[#P9suJ ttL52ӬH'3+gMI_0:'J@bfC괃'CrG Ggo Vܱqc.& $ J(&7�eVdZF}QfjHih7SU+i\bZB;n& �>I怭s3(;r,<7Zlpn5/>wTNP,Ye*q4GJe!H@E 4t9Jk" b/n*j:SAiB i ÄRJQn{$UD(4bY$ʶ] 2Z(WT Fʜ&krq4&HlsB)^�&Qd?7WL- R~u.,'4L*kU(XP)�Ӓa{6$4:4ie!9EuM;+ ?~fa2%4 Kb6(I&')Fcq %L~N:e853 \t6<M詀B("he4=χ(Zkl$h5}{ "?W[E]Pz!v6anV'D,~kuJYjSFX)PMF'JUDJy /Td&߭5+;h_D9#]~uU7=2uV$^!a.hk@-[(մ?:${CAh$Wދ}Q_acs)E!" AO?YZ7(j hQmD<fThmڠqq UjH(ÇuL S*٦ L{/7>hLMs`53G=sGfsWp٣hk%1Ck~ppXpRTĨqUԏ7t0Ew$cy\`:CУMJ'3]GuCÆ'Vg]BZhVQL%a}aXypBXNګH?%�(����!1AQaq 0��?N ܈Y}66{ o<a0~>|H]=UԨ7�u^4%2$=90a1&͋ZݢCNfy>X�M6Q4J n ܐThW̘uOpc�K}Ɛ(:6EbMB=l6\)/{4&XX _@1M!:sY @R5 r`Ǡ*(bc3vb]Lyu -q}#""պ„X #0DF�Ga$~˽b'`V{̶6|PF%mq\(]jHG;] h6oօHZ :]B[#+5ѐ�ڻ|Aa`ThbGn߮1YCD]}4 wf^F̢#wߢ]ڷN]"tr$H}ޜB�>އ3 _w2F!ڠZRpBhJ[D[-m-B:>h\VE2F1>�G@6DdB>r9#͵Xۮ��(eM�Iq1D(4 FbTɳl24,I�8M7?L0oP�邉B7Q(G F^n�_ (zK% #bYta jy'r�Ea︬P;Cf3D~f@gb44mI > ,BeXP "m/ W^T!H4. ypHSoȅ,!ū !bVA=7r!/A ;B�rPv[S]9T 1Ggă0U[�+6iTMj%@~c@HN,�JyK">syjj%,Eu6pD>l^PZLԣJ8sBo50c#h ODĢ >V2AQZ|"R`Ayjq< �qI!iD_n @N߮n"u)iߘdBh^j2%-UݍIF.*7aۂD�PMcW*URGM 栆8gHB [e']DM?cMmiGNXP Q#7, 3z/tD*<=jAbKxNhM*RܗcB.DCHFF(驂އxO:D'$U!?[D"AuLcuiO*Xln$  NiGv�mhJ;ib!`IU(hUް� Ӽ\VX?vI J(!%bz|>:\g^g�m@2Mu^-iQ<(V%+@YH<s7܄ Tڴ'Y�J T59*``rBR(.ԟ2=�'�*yM�/~LE腴{)t7�UJ� ֘5™6RC/ZQF�U@]7ٍ"� ?54B-�!q6 XdncmE6=;{0Sʴ0{>$35v&֏\jb4BF E)-İ>c G+Ǚ �A[<puЂO9 [Gt}]zx*dBCnX~Mģ1iEXSQ va]�B:uIXۏC N#7\*ݗn֣̔` .�Ѳ2A0v ްqR|l$$j\0X'csU\4 DAե`$b/xrƦCepcZ92ZSJ �- (@FI2G6"aPi hޣC;ۗ6(7+z7GWSCKp'6PDYGǼH4 w^"�Hzk6 l :/_Oy-X+y'Or{YHbMKvt ߾Xaָt pl'`w/<nJhF 3N܊"{DuLV!D 6v,)SOz{ё e=|DyOč�3]?|?jSS #PF☼ЩRKD/unl!c(لqA]f3:kYtziVĶLJC_=ɲjwX2c?p%|$֗5GAw<_~d-lQkUN�S|XT)&�jYA�ީl$rB ]h(ۦoX�+>JT�ea" Gs�ZlĈ"LP m4 }7κ4q#6 6ǭ?t&! i};qY� c_Vz?T:tlB h%)3N1HሙPMAi'X$T xBv� ̎L_^O; a(*zI w�!+֏f͋A5UiI<9 QS!DОs,�u!gKKnyp6'8;>UըNgbirxN9׸) YwD0O?‘af� jhgF"-\Fʭ0Z4y۹0V".Zɬxiz!^:R}[)ץ[pҦ�M3Fl*gt$5;D>#8|վ`ӮZa5wa 񨽍( d(Хaa=ɁxZ#2h�.bXNxHWƀm=4xK(rS�̀̄| #?uI[zt*b@ٵ#pf@CgلStlxX#cB:B- 6DO`mКK"2{0(M z M ЯH|*Dۦ?z #hq0 ˜b5 }ÁAr y2l(Noq%+GUCEԯ!0=ƃBJ-o`%7a9IRo`;@pH_ژ5UN�Ot# P=1Hm-9۩pMV6RK`Qw-  pLi a+J;�޸ <T�6űМ(!4MI.QẀ"{d-1j]=nEZt8oM[�qI '{EZ)>L`NԲE GDo& �@KQ.`:@L&Xơ(0f  TƈJ@߄{pQD)ΦLE'Hee~iG#lw-�Dox=$]} -:n)k-B7M_񖘉P }`Kp!tRY\1QlqFP $Fwj'Gduu$WTwx(u� F �4}DcE})+:Mf0r NY7>/QM6ۃUsm}3_+LZ^) C$opx ZH;D|zX&@\␊[ījFmhc ptl }B; EEH*8'4_cjͮ> Ubؼʽ2Jmd RVY.;`l!:4|;Zh/SA\m Q;*ʡ{a˄ XcKGGBȚ]FS*.!?`e@%JBZ+G@C"! HbjȪYY=@tGEY<T�6m ?4H MueG}[Bպ⦠`OKd 2%@{GeҤ Ded �Mr|Nm kc󁳸sZgLyGrZOK)/8c-_ȡ_Z,D *S[XA$Sa*1*(,]ah#]o1IfM27 `$@y& e頩Ad`O0vYHkˊ  ]tى0dpXs1)NV P'+bi$?�`:4Ҏ\@$4T1X2EAP[(Sy$,%&SEz!'-� "b p1XD�Cdj6� OW@`h A_|z  Y�4(EB!G'% y=Ku59Z }yb @B:`h[.Ɓ/ݽ KQ!偸&&ϹB֚Wd.ָr0(h_{uPoۡJtfBjR Л0V_T0*�GxX.@(h-N!Ev+R9� b56#6ߘCG:Cr}+ Xh(MP -0Ex*+C掄۷i5)'1 EV?{(/]cM5AdJF,+=ZJynx@cqV1Zbe$ l'N.�t~s\E RHֿ]+Rz A)]ȏE7`19 yH_a5f"h1n .'"X ylik8miG#`*4{܄n6ϕU~Ln9YV:{p$e>*=F<k&$ZfOծHp(4/@`C�̠7_ܾ$?ueFP*U]f�cj(jF؀Tw_JR T{CU!E>}Auk"K`H�*os vd90�-Dq6(W Xk 8ZKO,&m5_�K̄P`u.+qAV?CHv.#mֱv`w `1i '/qc�oCŁ!Z90hɶ+0 oD [[ IWxcv7C<p+ ƹTRF%uCiOGt:ُ#ЉS%5>Z{6VţEVPrPp) �"M,V^ IB?EVXp҄cTM{  1InWEw!@,%rܿ4ڴ2ORHu"�a A�zO]#pNKHv3 BTiWfLLO<byJoEN<1 %@2/@ (*<;^\^"n*:C� q9 1G3q0(@\Нt5H<>8x :} ?ۀ$69SKFj^% [wP=ՠ0J; V&=P-U@T+n񒪐Boh2/bZbB)jddQ3 "fMXCߌD�ㄭGR*U:?IM�6mԤqlD]>^ Qx�*ΈQx*1b<�>O{9:]㸋O(*� MSIXMhy;ZL{Ye5qG屰`'V]b 0[(�Rob`Q'3xpDHsQmA̢*Zl5#:`r#�`&8Cp(�QEm2@ SCA& Fet'"2 M]!4b$*JF4QJK$ o�"u:>aRA6noT{p,;;/N1=<V u~w;A?)@"V\VA $jġb=]o1 4JA%P>xEޥ0�(F,y|rexcՉKCC| ]C4pHn�1Z3Ju잖N1 CF? j!,9  A{F@tow"lcM8U h_ q6*sRRi ckLW ]y3kH)K E)69)</u$ *Ge Q)apC0SZî?ii"X_0� m d2n5!ā7z݁C 0[ \J";p 'ք '(;Gx�B^ky @xmUA/ph,UPDPI%#Lrph@}xpL"R'-CF^sDfj^cKvŴ5-0Ull�ye55tV0 ^<j$6bVv!yBOf&i {MJxzL7yxΙ`~}t:iUf Vz48\+;IOq"* Ey k*c}!e�`wpB+5vJ|<'X4:g&x:ߦ.K7@)H!B.T8`@mZ-TmMABuy"Vٯ$h�nǓg2i>O{.!jPl@ߜ s|opƅ`|�Yj i|ȇh&~GX#Jij?bP\Q6 o}rи&f-iM˾&˚EsN{H/׻y` '1bcDd6DDd�M[ $" ,Ϳ�7ȑ,o J%"~@ZbnkpPRߋmlө]jP@ XkMQ)OqN tE A,-۱2 Uצ5L Ͳ�!A6#FrL@Hm| Ca S;]`!+ >W�b�pR@A� *1ЗAR[^02GF�]!"5w)!�UJ@Bx7 -Cs#ۦG)@W{521!`4HТ=f#KX68SId6{[7S �yb+øC $ TnpCj#`A r!p`Cw0 P �N% ݃O”AL5<1B�W Rޕp '7BD'90�[vmNA`v&nBS :w]O@VI*O )r#Wm%zuVZ$]3B):圽sGsC�Q?ݝq脀%�鍧n$XtG~|1o|3A2y87lHHw-@0P>}{ڢkŦ-rcLB&_mD>+BeDj q1EżK2Pmy܃(b0j W_ѶKZCz,F@_ս&1*&दT7Gc{F]`EϸaAn$~c]CѲ !ZX:h!hNo^]e`T"6-ؒ׫(JqbESƬ@ ]5OII@ũg0#^EӃc1#} ~\xQh� Yeeqˋġ3^NeHY7񃸡l`">4{ W\I XrHujoLBSMy�*v_uN ka`<E :\f |~A5 �BYh9֋�EeBH" !�G c\ .WڔGRn)�ln?Bd P :% ƽō)>8p<| D Wj�$ႭB5�o0Eq񼲀 h�Xib`MY'|4`WQ /_J70EFJx&eܳk;kɟ Gm�qH�P5Wj�q('H%wz�.VX} BV]x~XB5 Ѥ׸ey.sJgh?f(j%#bQlO4̂HF ‚7pdkYDt0bCkg̛v tPW1 itu>HZ_ۛ�IW� <"+ls'\j{v��X6nߣleپfP˹4P2s#8? `\#Q"w^SjW|"C]- U)6i4Ɉj/@`&[E@ _ $>ln"} m7ܹ5W3bf�')v ?pT,�%zg'RneV ƒ"Hݮ>΂z1cTN0Qh7-JAU^i @cO-�;4e�hA]U& E4@K@]\<0t4A4/1RoZ�bY}򞞧iIYCu޿065i{TRy#WPnk㈳:dJ >@*E%Nq,*4T0xƀjb@qb֊q $'sF ,-`7v^@o0`Rhd)^ RIQkpz7G,*}؈q=E#s~oP(y%f?Db"#HjE8 M\-?1ihSЅZu/kej*UlE@?dT% 7ˌ 췼&j؈~C$>4& "=ܤЊ^rI<<>\B6!4B:wpeX5�28Hl=NYp 4\k"D½'R:]�5km+.QRbj|/>rpWVDt"Pdu1Pn7% l2K&ЧGP�ך=7S]Y {RhZ�5OqI� q+uhC [:b/ENst u2JB P№ىr0: C8ġM͞dP]yikg_w P"rbo u_3h$n#qd_I!�4:-7U h983P=FÖ'S�C �WT9BGR5= .H:GL^@PX[f7N50fjR^0)M 1TIK� rC�zfD46PgdPA'rAu1Y 4y!iDDpw=i M6/ g%|>k;@1$Z iw̴/G[ȀM}UaLCJx{`v2�`E= $.٣Lu>`*$D]0l]߸e$Zjn�1X(kR`LH FaKZ]J 6P](@-"w_6�]!*6CE0E16I7@N 0.KTX Y<g1<#H>Wy^qe R($ �7s$Ooh�&sս*sxkL#tq�jhMt Yy��iw:7d� \i=T���AZr!J {4 �"kN*L��T,iڎkSݸw Aji+-qvJDkuLm;j+p>QNeRہ^1b6cmGjk(ӝFQ< HQKlGB })r�3RS`RZi|91.=ZWtmT oBbGNeB#Gpp1(U&#aݝ¡af$ &%DD#}ι@v飉 gscX5ɁMƒd Cּ˜=VwY7/6bŷK� qaaAU 5>ehԄJ0[MRF\B#ǃG0#<*l.KKMbր`4O3bRj@#ZD7ܥC*7vN e$STQCk\$( "[l�"k@:vOQ_HˆG&HU�o]( ǦRVξçc\"ɢ ƛ^h ӹ74Fm0 .{>aT8bCo̸0K�T(]Qdؠ?U)fYَ=��X]LPJ яHI%@.w  jj=˂7!Z$;G̱V�<Ѝ"aR,0,Gid)nkH^5qГzC-$C@N隷(v"v r0@"V@|) p@E76?԰ޚ{0A^sH/ eˮc/6~F?}Ȑ+o0@*-40*z?A%l<n ~KB/ O?cz!8Ņ"CcD.+cz-쏲0ّkQcӸڔ ``2T5i7aaKդۉt>]㋣j1 p0~>Ɉ<Y|"3,EIH@_DDx娀Z%J z,8}@F2l K#�($ n˩D-xo^I"/MP>db +ޞj*%tC͉#1Gaj(<@UP}j<qJ#͞TE ݬ0C`Y�CzD�MxU*. O[ܪ(& C` no0*e'K`ȉa=d>xtQG'T]IDoP(_]Qwb%P o9>*X9SmE}ur%F ;f M%AJt£'H@a :b%iG ixa%qZ�C-Z ]WCD]Y9 4(e .ͫadI U"n~a@ U$݆ف7[7dkUOdI`{u�_P ب&+Q^/u0kcQ IrcElnNtFTgp7L` qe5h %`RHal:BM@C ́h@v-F!X/te(�uxj wQT:|CVJ=#'TD68T&]/Iym tAν3O<�XEJ6?1,^n\&Xx0Y0;v^Igkb*}pP5"5fB C  �P;ہF 0 P^l!Y1�XhH5q@{YN�DPڭsiDFFge#iGk-KT@܅0Q_&�A\ bh|‡Ү?p 0TkyXM0w"jp7CZjPh求j�y-G_jX&0t`h mi|[ lmo~[khMln,"Ǥ5~'ɅV@�)ڭIqD2,RKQ*L= R�pAحi#AH_ɣw!,M%(Xz@^XuXӨt‹Grī 90�mۣ#9x(:-:^NI4)Jc$R�Эf! O)=156B/8UY Kno?&3٬Br6N7$3l?ŝ0NPt. VH~Y ielVVq� î0@]JO=Yچ[!>yfSg:I A;-G�aN owgjcqiqT y$\pDHQO3c�נeL�έ2tT]|i1wC]**xu(]D{8ML R2 vPxr4@$ACM ;bt!ט&j ּT2 O}.bB0UE LѺWaIkm): /c�ގI& G9 "Cl Ô EOYBYt tB؝JH6}ppqoQkl>Z75V @G!b^+�L4�0 "qm0u3=(FǞd_G)bdGYq �sCi:PO`V߮Mjmjt[ht;YQeYZ�C7/b$_y#d]LP ]��C q̜]Vd4znCuAvԓvmxhyD|N2|>XWu-DaLM(o<Ӣ 7btSJXf[ fTK7{(- Z)QɎ]o@{$SCɯ*c\�Pҷ8�=Z QWq�T!$*Žz�TSDq"*)^.jO�f98T-AxPbOMrA0k'0fbw 1R,=L-XMaf4X wy] 0U$@3ȦCAt]k\.�uΙD>7 MI:0iQbGQALITKX0iBi1Q~SXC!c;s@E""Ʋƫ|MERRliYڱz@_Mс(+�H" |*Xv&�EISk!U�vٯ4\ 0:(᫼@Jj{i]ysg/4Ja�tn]8�m5#' R}];U%VT%4c7�`OY OɛH6윳h?`; ue&i5M^[A�J"IQt/dg/pm@DcP2k��VI /@ESV`zQn 9 Xm!�ي] #`l+d]5L A(N$ SU 'w(N.Tͱnmw4aon@cnVq~5}  ea/c.1)B˂[st]~L(N܊U�c*vPK9d;Rd>Y&DCߴ(HޱQ÷4CIZĒLb><Uhh_1SGl#7=UPi8_wevs �$.ݞpVFGۀk_Bvݓ沬D'�c=> dX10Ju9VԣfWc2 ,R\vJn't߶Yש G@taWa1}BB3m^JrQ (Kܐ3L vg@PsgQ/@CF|61AaD@ol߽r `* .0VPO1[k Z }~e@ MwY5E6. ( >Oy٧Mv-f fퟘԡJk #.v.p\ކ�C{^)QlQӯq:s5ƒ{h@n:m*Wdf;D�*=$:QG P댚- ӰwmupA$ KѫPڭȔl.T szS@e_ p 'Ƀ tL PMpT-wYxz $aTBMĺ5E&07 p A~6ěX:u *G zH] B/`қ*Mfڅ)bW14~y� 9h!.%Wm}F5k.{j(܂;R u%ΓV!wf0Y Ls@:ڽwzz(׸NHqk.5iHa{HR4AEO}â( q.d`ѣFma�<F9F w}  � ޟ='E7#;( <'x0?{5T(#XT % JH}bhn"P".�lpEN#-o1b(SW;*/\9A,%8=@鎷bHҒHix;LnZ7g9iƲCh>� JUk5O̖(Q0 *H_<K+?A lm FW!8R"?n1Vhad"&5�XP D8Pg;ᔣtJyNoX�9lw 0"dMEq@P_̇"Nr%qCeWGZƕqKC?x+T5e:hlA ?{/@*dkwf$-C'b5J1NMPM|}p!�Tr>0/t~SX' 0E�~aVriw@0mB,޲cEv G K +1 6<0wx%�y/pޠOCcb%N#qD6&VŻ}7щVO$v@AFx]*? 3] _1Zͪ� 3j:&o ߁fɜ&"KbM84mG Pm6m2ȡޝ >a�Pާ9Д؏[8ve 7? z�U"=7ЈzZlQnr,`?mL)TX ߙSH|эZtCr"(lBmNb\OM/fAZ+cdZަwAT`&EV"k}&Єj2cI֞z�%19f ޡMEn\9HI]& +q D Pa>\;[0;jjIN`ɉ@ۉU "7BG\] %!8}fޝ\`Pw�&HE :pB!޼P�P�Tt}Qw8!Jm|[Key&/jڡOc+dI", oF[u":5nŀSxEĘ{zw̓!AzBLH 1I)YZSۏ{LldSSH7׿MIZ@% i𘚮uE$];gQ%k[z,?H~B�O(6LZޣbY$@O&A55k w9]`liI**WÂ�?SbTD �p:QtD&#%Z?r%xoGߡhDiۮCh?v I?4INn'psWBS"Lpv C  8}3Mbx ~_ H+Md&Ϟ^D?`POpBk~(P;EA�KQ9t_8@옵#`~4.8&jJfxː {P Jڀ(ZPU'=l\_h`/0WdK%}kȘAIJ�@?`~-a�-7@%u_5 ͅP)? 9 _`h@KGApQ#Ndt�Qw_k#P <pf[@{qDQ@�G~e mY� A@؁PQHsR &"=nk(3n�-/@ @+Sn:S:FD%J`@--vJoC 2Dyn@EѺŅ>[e5a!yȢ4.~}pBCPK(:zTC$ =n4jaap"<U6 E8HJ9@`5;!gpU&ԾE�{�=ӗ0JmyTy;q 6 S|P!hyD2K54_~c EIˆUJz#B"VX<|�);��NW4gԷ:*Mċ]u(~ 7DPuiXĶo{vhQ(G8"nfĵ �Hs b.@4`J8:1h18`,4x2-e/5 .e CPw$#`;qdpd Fg_irlX4vPh*,=~uwXꆯ:k)IITTOR!p@EwA�=Cfy Tt�%:$H'WhM<ɚFuZ\6)=c1dF hy\HH7a9Q^>`fѵN=+iى {n@`�Cup &4ůEۭ7`ETvl^<1=k\Ew耨칻Ԑ5DS ެI>K?1!*p1n E_GBA DhE$8`ӂ[~fCc5]Dm �C:SnVDE.‘Or$4$xaT-b5&U`#@@ /?+r@qx џ9ҩۑ+Jkb|Ȱj(*{Ҁ@ hCAE;#eGBa_NW̅jܷX8^ X29R|yw[/a"a<#ŝ Hɮ @wH')Ӎĉlq?_1NcOM$)IFF&44& 3`Sb&�_YWuv<uֲiT9mKH~aWUlN7XtB|P}iOٮ莟!(Vo= vq lB/;HywHZI{r/ k84xa1kKX,^KJIh'rMȆ%&87RS%zsX iKm߸R6OfB]A{V*l9(&F�R,$� hj]}oo~TUy;){*T"vn$OPzw/0 2{?J!;}mIJM n@"!i:7̡)]L_}ġ"M`KK.Nw*H{yZ+&xe�!tB*0oQ(]wah\k%pNCߘx`o}  y A>)54.Ծ�@jn'1(TFК%aUCZ?f1D '(Z?_cPA؟�Ib&?q&E$:Az�p]$5-T&4hWz|C njۊF"FC%YIU0BQ=r(p~=Df> (xk5_rdf{6�V1�"YZ*Cوhؑ^Z+ښkH.טx`v5r˵k+zKp QB>zc`GXYɎV uy${=w_|F?[ZOjG/U[!�%@EۯA\=8L#S( ~l&TL"UtAmVu`QxUcN=i"0(a.sH�6RcuW@=xyqw oqpk|vMq(W]!NFVD(-u) N$IJ=667nHzL\eP?;+N#h>ↂ~/s}Q,]oK6;+g<AP9<]Oq$Q$0@Y%Zӓ"M.Ox� lU8@hk:DE=Opٹ�6y߳n*CBHOtb _p'"ll:x/k'V[tk& (@~7MS,XYxm| 1e„繿'n=; Oٿ]ͦ(i<G-)f~C� h]�I#FhNEu)X GdZiw @GZno1j'& *$j>m@OL4NH `uO~�&p 0.Ƥ@j?g�x![Jq߹qK"j(ѻ~+,TԹA}T(!)=|Z$gn?Lxu>6\: ]\"D[?>Pp%ȞBQ[*HAqp !9j"RiM~d1/$Bjiߘ(:S$NLC5!%QvW[D3]�D_]4I1،wv2d))o3t|@DMa-5qF hEM<5uE2ݧ~0lAHl󹨝kf*jaB'+A7h&aفEiufEH#iSB�t]OmVow$h'IVYP! Ov"MtBD 1@J2TS_Ld+8`ye2F!M׸#&#z '"QlXYcv[RJ^�E*mP"D- NsLva/zRA Df)1D)SհKhӻ5IJ"MwYu,@Wθ֑).!2i#_Z:Y~wlM@FH5H1GRժ8�H]9 mpaXjmV�Mo^ y�B09یQ|!Y"*{q-6h07t|-ǖX#H$=-7`2 fж:B,n|V(Jp̦O옄}tIrVEFt6oa yc&1"QjƷ^НULk*m Ʒ&(Eg2 ޲M| =g1G nO\19?c<Wzc\_Mf=~ qFiE#nER)%SrJ쨁 �)@`4 _q2LM+f: ܒ$1j q[.� /ゑ3A6NZw?-�G(ㅒ4Яik!sb�ɠh>_Tf̰ yjQឺHiS}n!/N{�8e2)%~^߲ohc]$d�΀>~��MHn0\Ь_\PP�T70,^iRd w嘲40O(ASaյq>xm՛bE� )rhV59 |w' L�@DCbp5=1GS)OqbNZTq1LIM7D%M`}У˾tON`@(w((J ~df ;5&d;-mQ~_1JSlE !!8huZ7Ɛ 9`�R(SoajQq]Fӧ`/ª=TiJrpvQ P0�+4EuPꠡQ"6}0V.wPIuBA*!a v9aʩ翋N6CA`SeA 7AP֕Z )l``E*AD J:هDA*v]b hB=|byZ�P*dXx[咱|P >1 @0$0�I Wp9@w\qɶID>sA7B}1�Ǫv<P(kEC(Dpn>9ʼB*tązB%fB Lht}y ֮La zkZA&+HF}9H)J90�<<22j2� qT ֽ7:b[đ#]n`M%U# 8@ ,^H8LZn@b_>a#o{!R\j"1气 ܌@^k(aQu1O*oѶG2 Ab Jt :Ј;KLHrt3G7s \OcBT^\fU%S!�Ů:T,b�VN}ˊ%9Ro9-v@BA|8�h&YJP@Ѱ]a4(�hhwMwr$?o B-M֦S( Dd8IyJAȂ{΄l0 �ۅو&/tȢPrP$(<P i{mŜ68dnn]bJu8$-Ĺ#5ܯ (G`i�sH& nOr[G{KHKϦ�rd8&LG c-Ilj+nDe{aio#"oXE~a`Š]=0ݔ8?bQHobD{ozŨ"ݿ3סF "t=!G  VS%Vm& q $ *]\]:&@3\oȮ2-u9'ºqB%V*G7` mh Og3P tPƇ>PzÅ4:餕o<xb8&�XA 9I:,HgEt'v>ġ"QtS*Mc"SgmM=H%3:m ' |12A Tа눼@aNzɓuh=ffȮ}z=LUFg)D{fg.)Ҍ;(viqQ�@0eSD^'C~%l۷p)T{V5$ ghpg % Uȶ0="$DKK@r?C%R� O2wx{ �UZ1"k>JO5 @KEåG2BeO"Ax{4&Y�k#c!PVW}8y8oG_'x رMdW:rB6ƫYmV+j\X�d{p$PIbrE q!6 /N_9B@^tn.4VOQYPH15@⇮iv_"kc-ha�ƶIL[(?!1x8"�H�ZP#Ct@(ߣj?N25$ &uJ�WS�vS!qUGjI 1-]Sӛ j' ɰTF;F Ф~e: ʺ+{><H0U@Lj( ˺mB"DĂ\iM=q:(ybDgSDTqՁ/eI$aƅZ%6u.eS*}v.2`kLF0 Mc4 mJlߘ R*� ª#%W`CNncBHU&C@� nIA#L;0��f�f(:G|rp�eA 6bO��CAP  f[n�R*j Yx̊E"WB�Rb�KWVwTygH@?<ű@Z;nhʼnjtjg@W6|&2X2O0!@F=ƈHV+` Zd$E:BQcJm|up1A"Ѧ҃Z+,Mc=*d \djːpQί%Q CD] 3֡!\M.-.n&0�E)2kq1蓜5, JO;RT0/" 6#O:zvI*+]'&ni% y'Ą (4GV cANN?q S5] 2p% Q 9O'[D&\i n~k]^aC@F,)^`K*u&", 3G0 X�fd�P MB)N z BA7Mt4*4 2GBA}�M'L`Ŵ \mGGu+"[Od1 ޔ'�M im01C׹LH_>=SiJwH�ڴX5@D!\A!M`PNE_^P�*+6V%Ǎ6v11逕r $DDo^SS��q 7%kdl 3CsgMcn:>-�h:`!Yy eOp#1Hn܁=1؊.fHx AL<Z ʏ3p6Pi�_}6֩dQM͊^cb1!SGC0o?˂# —D7,2X<y)!#͔ '*pX(TP|jC XsT$:PЁ>x$J4J͓ %‰J9qF@M:| ?Z+eN,�mMDTY:"(N\gFHh.�qU�@S5E+&-lɠ)hLhTRk𞇘-GC(ň VB�u}? -A�^_X7MWgZ V&K~A-'k?z#FwD o> AAg�0dEKl;UYȂ/mAw�jg}Vy n1bM LHj{עf/O_;u^c�u[ +]ggشp� \2LٖDD#3!1T?'`$; /ɰGd4=:t)T;Ƽaj 4KtL-�HjGqBJMdddo %Uk^]0: 87LţڷHa,/J&cfS yz`˂@VuӷGܷ5h$ae?utl?3 v  94(]Z[(XSG_DBYCˬqSE:HF*RES_6Jn<LlgB:Ͼc "T�;YuGa^Q;ɉUMQ16@o1q0D ;e&CB%/Ա_'ÜC^/Z6D!* :ny(t@^FAޝ}c.тRMwˤ� jAٲl �kH9�j� Ko%H"QJ,,PD-ۂ8DqN:`lqNurՄ?Hpo҂ۄRڨ@vh0AVa'A51Cȷ >FƮ8v`)a�tI(A@:ak&v P5 {*eiHU#{9$-O4R4'_`D5IDoq Q>>}RI xUM0C˹; 9Ǽ;FǗ2^*4PO~܆s(^NCz̀ U2j. "b s rb0Ʈ:}) AEa]}b^ f`At* `e$EZK J:_3Jg*=2+d@N$)A `WCKO)N[}aM�P0mh;4aeJSCASFmǣ[Iܐ�j@s @JֱFuB yq FGZI*pqp$Cz@V@O6c51 UU$.ߌ# %O]r6oy)d뿼0E#Ms�_J~P0cd/^P/ḸKVRZj]GJlN] �%` OeD�!n.+B 8$AbPE $> 5%(.~hc:.!K3)oM2a/l�aaDCbop(ݸP3T D]>lPyx`"*B5J+d<B&jY/?c ;/*R F/1+bNڮWu6m Jk-4M&RZ'A k%v]99+ M 50;^A-?uqGc5`6] 8 x*Hk` R4A' des1W~C8K 0�  fXT76ƆSxs�yk@F'Z[Ml~(O[€K"ݳ\2Zw\ODt<?qخ͎f&"t(j>0# N%(Ux s ױuɈk:uU k ,8Xaּ0O<>}1 Z飫Js+dnE&TB �f^< Z_p�@PB?7X0`ڠ{ >b&vźe UorY$!}(SU=Ch;#_V݋fp- OwqB ALl'q6R^ҋf5S-fHI c8$'氦(AGf(8Rh5utK TZ!9HN+ 7䁷�A'@] \ 5ˀm3Vr tj[PUP .zUb#EE>,GVwPilN1bQ]Pߦ pY\!}+háQmC.ֿw65bj = BTr�q%4Vv_MVN0PʏZé�Ť9 xa\��"Q\# mN<WPS| I+Pmy2Cvoי�[Pj\@^ùYl<>q&/gm;ɐ �GS$)p F?|n(b;nAl1N?g6@w�=HQ~5% %~GTޣhGvH54e9LM30Q m�-�q4/eZ(<z 2 u1I+zT<vq/m0Ҏb0(P_/a/3dLD�.@l�,zjId.| L8{x9`P4"n7 ѓl˂ B!*l\H(ygQd]q0?> 0iIy湗dp-V]:xbEu(sG"Q mf�U)vIs}�\-@UL/`ѻ+�B $bDSqzĝ@FaI MUs"l}ێFprePMH28n,PAh҄&@ۮ{ yš:a Ӡu,q>d Hpx4vx6Xpu5�bBPFʌ5 SơjaŴP}£E mwMI(>C (I=M,E I9? )PN_9hA*<˜J[hiJy޹xbEַ(Y!pA(ڡ-sJ%�?ZSJqF M&p4KSB@v. J[N1濹 h"JD6I&�>Z]%5\tBxUz^GD�!uepp0EX6@&難R0C_;CK @hC#ɇRA9 0BeTpđ'skGo_ɐ;AF^׸KHhR�k=j}��j,�@a\¸[z uQg=(Gpќ �)0WU`X9ˢ"T:o 6imUvɭ_�SNz3\D,S拫**$eB<WS,AϹi"V`_Lh4`i51 D[Ҝް$ E; =PGM` Ri90NW8k b.hD"<E۽Ìj?0<}m:!y?OLR(J 'I[]J!fGʿs$\H]|X>eo!6d KRwaBg_=ˆD߽ ZGNѸ#/fvzmL0E ]N XUH@�qsW[\"@  )dv/}5Ckx#ۃ�)Li8�?ǿRzb'S1Jd48W#=טfHGp]~�y d 1B-xQH5/:!#u6إz.`hq@*Y{\VQ�L $B#m*]_1zDf!C1EI}1b$DiEdZ,@}N%@ 1�#"'FVoL5'(ӾfV�pz;/2@SXZ#b*)բkln +EZ>Î0T/ɯAb2οш lon`F�xS!=EE@�p%^*kˆ<Y &"˩D4ivUҽ#0 ݿxA-qV-_U|4>oa.OZp~ C(n*6 u0 V-  rMW�fE1V"Y=5ݢ<Mf:)K`7`ڏM]ӳ�kA܎^*v2]@I'|? [n K7tq"@Xb5,H/�}Ǹf*$gr zZ',9Yg A.A"odKUZ!۬qN|HUyw 9-!:y T`;0 7|F�6[= "xEP]o\wn�D+f `$_8diVԎ,H Tu0:9 4Zm{ʓYUJ v}$hLH,H"@!"!&ᮒ5pHhk ,d+_]2o=qB[B tzih q`61�-�NF m=0@EM'wD 9@۶LE�SnpD<wnt�8LQcjsf19)VT))(w뻃x+a_q@M70LwX[l.kR *<@JN PB ~;ƁjCm">洫<l|ñB 64":=|j:Oa=@@^!(Iu(JDlX8%zp<`FC"ַ1c}6.mscU=ksT*PUPÒ 1LГ]d' tb*Of$ "x;RaLVR/ !ltېWV>$g W *YtJEou�hHHR�,'#'d�4᥏bHn4Oqv @>"B� cƷQ"Uh PV^<:l"{y*<WS䣩n0UƁ}J()Z|5TM5]&Z5KH+ʻְm@5ק+l`H%s}5�W}tVPvs_c*{>`@]~+\@`朁.:*N�?1 6#ABPSk $R [abԅnM SX+�S�PLw>5apAYBw;) (Q>�QIIG ت@"4\(TUEx]oB`ak_ T2!.y0D..GR4T`j p0�~<R9!i4jZ;j7xcD s$�Y!b2;dG{}J7؀ a gn 3̕{K\�m2w Ak vq,kmJܤGpF9Ub_p@w,0"%:7dg-%ءZX"?m665D?eKjTC8|4$Waߋ00J ?qP#ad QuR?cEmaop6_e!,=@M-]jLZ :La{xj;e@m1 ֊�=JS �m:. fN( 0 iJ|@ /hZ6 Fvֱ QgPuL֍ ]X&m)]GXn” S _;h"wBX #|�w EmZw-[CQix4( ͱ ao=H.&zq2JDH3ymmq,_RU F֯3iarDRSƉFJH 1PӉ [BJUb4mT0Jt|¡$r%@PMey]cP9%f\XT1`opICfsu҈N+( 5s }&%7U zEeµs,a.O)ts( k [&q5o1 .r&2t}qj@<md9ej3?<�� л{tdB�(1Ú QuZ%vU[K+ 8St�1K1T:19ߚBf=Mb4 %7WO0S*}ow %Z0�Nsvi (v{AA_g0�uJ*(˖gpRM1bt fB4uA�Z ڝ g.d6�hpoE.c^e�}>}U"TdUnw!j |\Z^L2!fY/(Oi (QDdW``!jt5]w[USW{88_棝AD�90b,OhG%BN i4p95U3J(7b�nLe?�c FcB~lL<j]LSN #u!6Af B֧D@kAib^8pZ AWp+i.)pM C}4QS#TG` 2U4w" vj2w⎂f �eߒwR-چ@mrfHEx_w^sQA8P*,ǘ';oͪuU{=!%!M#P.vLjmlaJ*� U!r;qkPb-R0V`51PRHЪ|PB jZ�$[؝!:&Q>'~P oNk NkM T;+}uR&IN"h+ { 8,$Ed^⤕� ;OzbFH�\D8<-IY09@t9�_fO])vb%08� b~!-NGmb qFxTjE#8=@_ѫ�Ұ_Te�Hw۝@58ȒN. Nw*ks : UK kB|#@y+6GsGE}o8 M~">}L�HZ 6 u2-M]6K{(64(ĴQD_ k͵(v`!u/Ko5+^Nd4'%qPr3 P|cr#J:O[@&wpRoo)RܹEn5p-(XA+0M ( ;3\9ȡz)Kp3 #H<?qDžpZbmDFa|~‡ZEsGa'8(Da= *ՀSgݻrc P>blh%-ޠ3On(4.5;Mf %PkYE<QTUA qyJ<ŌZ }1 AmڙRz <͏[O?tCai]kMVFXeUJ7хȤ0|,OR 𩻯&+LH͓iF�\Sgk$"BOɅC"戄x 'O16Cb=2+ %m=oEԠ{{p@J|>T*(P Gx�"[q /PnTW׆8�<Jx:;v)dBݼWKy3& ;�[itEuM0�X�(Y`rLl;[M&RF~+:_Z{6],(oTAuu˂#<j>c+K^{[zሓBbG|$yo{$ZF+LXYUʚۢ "Z ⨖ņ s0rS[7tQ&"v/$wm)w0чwY;vS:1�; )hS@h#A[�^V` 56؋{LY R&\K^ AI;( ,aUWL,({, ��Mk{LaV,o7�kϹ�gm*nΦQ- _^@]0d#0HMb( Ep|0,nESwJh TMO(?zӲWuA{j3bO`{Q1 ~]TPdҝlHa)O5n(#[oFXEq׸hXqs l3>+�RSoD}i�yӻtf G_ۀ%$ UFF$tAjI"pB7in|ȏ(5YSWW Yؿ�JmAж4&38L.-t� <M-*ҝfDCֿ3c>hň-p*!\A0v s'#o� %P͘kĵ5j?}�ƏZ߅L7cݽY^spB) ^Y*ASTQ,5rKJ"G?1d h=~>LC'G(IE0cc4)_K@J9,yE% [;xVWvݓ\˜ @p6=(Q! eXEw.{$Q!i%:0j#f* [(n9D("0q >'Eĝ�$np�=3B至f G`[r J6p!"Wc$N�90=”9/CC*N&%]6�h41bPAO.TRͻ2?~a,/[h'"-\po5?1; ,qgj~oq w3!ʍ/`b?]#fD!" Kn0t ۶�l| 2;,mj6D@n6h[٣#s ߳ƌ>} U d˅]<rvqQ0=uBU`%&ָ 0Ƽ ٰ裠ydl DJ� J"`�* )Ojn2l%@Mwv?:׎)yJLٽ fNK,~tQK]C~+蔍V MwLeO(WI~)G:W"5I4� BHɏA4z,w5unP"BW+J^2)�-n@AbG%]}dkEtR�,(0f1P혒"ѢY˜D*n! Bռ\a<XA;MЭ ~ƹ8-\Ǽ\-1{4"E9nloPQһVi �4=ZnN y3|Z(CN}kH6&BCfĮH%ݜgMգɅ`9H/`x0Ey'{Z}*b({GUs^`VdIj )Hz(�j{^.0rq50%!gteM}]h Xd@�  @oؘ2AۭW(!f 4/Xȟ��!R edȉQVyS&B@qV1 fLea`P91�2`77M|{dI/͐*˳r{A#y& 91 kOSmG}Ǧ�ݏd٠ClЫ0=ti0 "trD�6-`!DC6AB븼9Fdg8v�P@Ih `ϸS5qx[OE(& "h@} @^u.*vu r-q:\7h} ?"Bzak 3O bBrr] ѡ1 :5iD+KLaSh2=Є X^+hqxb ]: fZWI$Qp;$)cK|XP M?XFlѰ{I@*&Iʏ`,G]8�.خ[!եF-eBTi)":&2F}yr8�r$k�V˛Э@Etf'ߺhTl')5FF(=R(3eF*ΟD+2ڱ>'t ~('@V6Z](r�2„P[d,`^s/~ ֪lXK 9ơZF,Pv2>5<5`{6wH ̋ꥋ_׳֛0 qu!&'kv&|&BL#Pڻ\( $TdmkEb4nә5N =QHb$T:C" _Kb:VDMs\K%�wa]#*QyWIi)LP@"RN'"%Cz7/3, Kpf"E8:jTw&rƲOWɼpruܖEy>7 Io 3sA#^ ݝDw|\s(h*�xi2zN%d A>owhUFv.Y  Y`!;SQ +mMA[%i ;™O9& " 6huģ8!;z,ۭ{5rA))/W@2nR'zWOok2vvDPާ"$hg#?�5(128~e|*Y@W$/S{+?f.jC1Qu #!?= "'T>ְtH|0dFdV,;1C6gHhC~b5/`huC,"'|۬btu�5|Egq G]nt5ЌvQ%cP %�f6Eyęj#ʛ-7uPmpi8۴4 }d$Z5ӯ)UUM =D Jm�ՑG)6%o@Qf[�X $.E&Cx A@5 W7{>:f T "Ґu>k<bl0 h|W�]%]3I(6*i޷P6BVH@%ZG�NP)xouhEo\eɓTT ;i5y\Da{do9H�Ub! {ߏdʰt;ɐY@lAQCgcZ$hק�p CgfD#yD{nLG� cJN,B_kniZD9"n"Z #CB*dY(izan*|YFiHo�(c_ FD;GPv ĴCQ&~ �l w$SWprB?R0g8�+qf/'pKB!^RAH#@/`R K潓HB<*"A[hRUr2Y'p^JX,JTp*|. Pe֭9P lmZEo2a\C| aDo lAIh}˦hA ?wB5&rsRԍx B)}Eoyw\vpss�5>41�(-t�=фɛ�Yܠ I'k$!A <Qg8P~Xbc=>Lۯ[ Ut}+-0n=@Q�@{׵CvսM�r7M 0$J7 $!OOpGu}1*_\X�.)GC @.bϪ !hxysH!+  {7{RFhp tPʵ�q &'ʔ1WyXy?Aks؄:1U"LeSpR 豫˼7ӎ pR&bE)ʒ4bn`Iuٴ0ÿߘq0kCJF r6(kc /HNf??14bBP4u�K#4 {p n�^=@O�`,;(ՇU=QwLy o{˄AFlTG}YS�RPT'IJZ?p3 Y bEjl?5SB^`l#Ĵ3y)ЌSبaFA4a~HeS}i~bL֌h5} k9@Tۯcڅ莜yrBglB@$OTd<O cFR.AM̆;.9t& OT]] .V|/Be)T]]#eC ECO0!^~\*ƲI^xk1_|O]0ӧ\ 0WM yoL;VGW#v"6(2{KSb�nh(4@+p9mP 'pULCPAHA #ʘJd=_Jt:,{#!._prjM6m*iBra!`h2<=щ|˃],6fK5L61l{I)VctbhwѬH=g2FEK?1 $lURR[Ȕa\@Tnkq`C?MZŌ oo% ~!DY= ^DZ<L ؽ$Հ �Pݷp5Gث«7_^w31v]9%$3@TVfMTvz\ЛȒ<{<v;CCgJ2"C[fnb.R0 XogI�C2 <K4J]y ܴB$T#P&"Q%4 ّJ-bCOI�4_~ 6DOQ;P'3[}{ a6|A#/Dqa>lNϟ$O0Y�ssi2~RM {j�_iH*J ͙:ߘ'cQ_<1 &ˀ_`!Oe5ND4~?2e%{|@ }bFx PG&U ,ۧ\`d@3ׇBB6^`B]˱C@.K eq#AK\8h@j4tu1#�˽ˮdV0Tw�µu5`M09S0('1?KBlqAڙ4Hf= >;dP6%Hx; Z;ޟ xߤ񊬱GWIbg?4<�mO cAGp6IѮx2+8d'OpK5ˈH<;ώ"}V �]ȁ#�ỳ@u @+hLbpGr4A'+Jo{3R$-tf/j&c0l6Oz XhuNgI? LMDE8]+x7/ya ] !{qڦ4qlMp4܇Wt]XQQ7U:e�(�1M `Q'!vP;)54CK(?\�蠮',Nh|#otX4/ {9tp( RB{qV(*m`v04vkSS #�z*K;D&@c]G+00NbxHRL=5VcdĪy$]ʸq5xJJ vlhۀH"gӭa'T!MK5 M`a:5o "XYlנ=LDZѩ6F.y@F*Y�huD¥8L" ~( ^CfT5! )+BeiN=PB+B �EMZqCPoO9`Ɂk�ГK{C jusLi yF @X J-<Ц?rDMMABƬ EB K`<7a `J,t?7<5CA4sDNO&EF52_!{0�bVn Np>8"^2fW]$hkKnyTH/}2xet QEul y>,7&T]f&+Th9V*�7y) &c89Ϙ\z,IRk ?\/ (@I\@ OGV("la,NW;Y70!< iܢ@xM�t㈖8F"�oqݸNk?dĀ�&UѿfT c+<{tb@)D bp(_a@- 0i9"�R .*BY8 aK@`YHJ놜in|>Bl|!]ĦOOf&lQZ\.ZH S(<+@Y+$)0jn+}'X^;4+Mv.JCjA A׉qˏmE�<A>͘@LL[P&Z{܁j�yppBRͥNvu5K_O9@FM6np>SoLH 'T ߳�*>UK>h( «D~UT7^'@I*_1IU4(F[~Vi<?0]A;Km0�#ɂŖ]>ip@aH Ť|@)/oq hyM%#efA4̊ҚOOwU yIp #~}ypi1v·F�hH;n^.|,\Z_f!P!ɜ=|˅B]2@hi.PoA!HRjTK{Z5PmF͇e+DA:.P e(jwB9ME4@7wy2T@E@%a$u71! 6r\[�<'fA10LDͮܡBKR5HE%u lfrN$(ۆ�сJG,w�!O7f@�A[B&$@]_^]7ԠIrوī-D7 "!> `BiR7U?R^{hjcz1P N.)U?LH6ܓ U<cMSQT|)8* ux!cDN"O%BF·q'sV ` .QEV=aVaZ?jܯb 1(?#[m*P>hEN�a Xa6�Ɉj.5kQkkL֫Gt�0Pب9?948ia 8N@]7RtL%1Bը/-R IqՐL̒l;�Y 2~LRd�HDWP84JFݿYݏDBk0A><$,Q^7tW<*ǿ*ˈWm%7;*�m~4|Ƒj Gµy,kl41p oF`T!)^RsD@Q X�-xP[A1 Ax̆p #�K4-yY}ӁT ?0|ְzI *0xŐH>+ �_k՜GB0ggsP'7aא{ T;SU3AjVsM `hpR㡽8$ӻGMSp3M("uFH-D@ '<xt�^8$?!yu/CMpMwɐD@hbn @(B}/>ɰZ뫔,$΀0`遉Р/,R(Կ4*E0Xc˅i;CH(Um&]bJoEqFpH,qP ;D^|Ŋa}�įۚ,Id+/U%sz)*Bǀ88G\�u,X;8$@AS4�*ɬ=(" `I]^ә$̂ ,ז`ƛ$VD;( [$+ݜo;͑vRЕ.y,e²k�3F0(^m(KFd`4'$7!@c6cFTxGbDJ:ⶢ?k(LoHVލPܔ ܳ6}yLHp~?U~֛ļWR.Y:!lóAvЂoR̺E16MXK*}j}Rbް&kAD;@(Y׆I:j#.ww P[D@FPS- 4$2O5Uq֔i?~oP_чxe0P~m?ሤנrc#Ou-[L*$ 4W]'am7F%ފB�q6Mo`d‘ كgO5jӚkL@$AI˅ d��'0o!pOk{�\<"ɓ~=% u#p#+U}řwҨOӸ")!$k,. -YWEsG88p$$&ǔMM],lFܠ0( 8lF T?I&>&~6pQ5ӀkS@xSC`~cjk-jA;V�cu$`~yĺ [cS$T`*p̡P=kրt- 4r4 w` &o)W CgJ@JH݉&j An<5r,7&V)Y�3bb7bl)F|~ aoSD2�E&Z63,0_0!8H0#Mf79 l".Sg+(Zr@ 526<wp90L#6�u13a"�AKt� : ?!h K*K\$rXT|ݿ= N(P\$C=j h桑6Z mR@W]%rVSK8SDgc oTФcYsRC)�",�ሰ(OႹ50/ #靖Ҽ=a�if`h:c~#1�Y5C\ YֱJ&,<Ɯs}"HۭklB4滋8ThtdD=&́%@ѧqz+F)?2<0VD�'_Lq:g^mq29a9Eq^U4g?pCo97> OMbcǴ=CAHM-YTɨ_rHnۇ "sH+Tn ፜X cV0@:揱IS?\Bx2R TAS|2�\#ã� U* 1#0OD�p PV}Ʋ 6{ciGLZ ] YO�97,#^6~0h74B ZcSn71d;9ƒBO<<H}v]<q4O'aKZ&E@# P@ۥ h6 vx<&.dhC/x@hg!�lE8` ̽κ~d9/SeLK HZe~<Ji9!h/CzN1]冠%w{m-;!�2L' _Ą*ݞC4ױ8E@=qpB �_7}VCz45Cĸr $ծ,2zYW)B�ndxzB8i&؊e9ܢfBwHvzf՟ i vفA �7E5�1aw]o'Q7vvPSR!R_On;О(\ڇV%X j�LDQ1q'bͶӈaC :Z!apiCLm*h~p#w߷ t=Xo A�۪q@SAU!Yq:M:3%2P!AM@B`L)|G!<2*"_eq6JI DZE#.r (%m<MQ>cy�<o'D~iN XkE�@ЀK]IXE1&+<㙴A xzo�J|a)Dx/rD䠢6t6ɊFĄ[Zѐ-jNt}p(Q#Uq�2XV./HtN,oMc.qn?n�Q)v'm0n 뚀P<HM*OLo-4?. M ax~fa,j><@f٦Ctatiu9!'Z,Ȋ88M�]B *Ϻ{Nc%P#6 ޻Rv^v| XyaօJto|WDK4&fP#]ÿp+‰z"F܂= Cq+J&O$�M {F5/uV cIyXG}J�qtp$'�x;QD7>9M@�v"�?>7濸4B( 871R0�ƂO7ؐPԼX]y!*<ZpJ#d}1�i�@tдo&6{DQ]}pƵd-Uau A4>$4TWN$ jwb 4 M_unI`㈖M\cQÆ͈;dZE!->YHR:@ܪ$4TS{= Q5T-oW#wrfwc\aX�ogbd915MN%E 7pO06$C2k;FUc_ x>O@M K򼙠p-]ӈvWEN@a(WBz1Dpn?3BV#fBhLL*6|6 ̪Al""?¿p'TCToqʊ'ZɈH_b(�WacJM:x#E` a5S|on@TpBf!]w߷|b1@TAo8e:6 > ^9 f}S" MLH&MbfbB?pɡ#b." ?urBi hOwRkér<:ǎ{tXLƕ 8qDl}hTωUH/㻈bQc4AbrKmJhz-ovcR~=#{t"D^e!Q5@֏9M|^SQl)FTQ�dl2 RH*fj}qq%r@MMO>8Ȫ2lMC\B0Db%^n@ ~.-Izvࢣ.<uDѬ`�0Cbw-d F5P(5 AP] ܘD)[|\&-n:� 4odhT<! HR>` R>Px !SD<oLtSa>dAPkK"";){56A}f@N2_ k$;`ߜepU 4@C cvHn1<ƍAehX$n; &W0,T&u=0Ko@(WL=ƕ- zIw_7ꍫe v(Υr]"%`hĐquO0(5Z *6O]GM!;0�dgm4UEH3x 4oC EV ;q2PjY0Jo]2dxO4*[-=Ko ! lhU)j/fV)aP iϜ7bآ@&D1e97r ,j~ZORNt0@�I̡ovBPہFZw�QC۠G!rnj/pUCNm'0j]2|&f@ kFEnq40JUR͞E М~e1zH]/.!ؤDSX2}"ȿ X5 �8Hv9�$!cih\3\*ыd$0RnE�ً1uܽ=yLt,g(l-h*P{RZ<7 Њ ?�)H JS[ɤ ӆ9uTti\`[luE[H!Z[g0j,*�D+=S[6ko$ 4D?O>IT:oa0ZQ"WVH MpEњIw%7X�iMW.L -W$p6 C7m.l { γ~vm�kC1$:oVN *�_a!x �jW~h"Ζz@i2+!Co:E.DP__syZ$~ֹ0ģN+7 z~׆0҄Zhra8ڀ'q`h1KT� dk*%Z 'јW`;{J1an{sqE: A LKx2YE%{A: )44Q /*q�٠ag<] Lz,aSRrMW|:`L{�nA-jF6%B qGS[ QS91bR]b-`li`t} "Ο l$@}~>z bLTO Jfhϙ &Ss6E71"tԼ 0!vDCa_<WgA;t?5WTk| ~im)D@X@ wFoXhUF6Y%q&)/>JWM"Q@VpedT?�XjB0*P%;XRNb(AVu4#ol"Z/M]qTk݋cZ�XGa U)([nuVI覱8 o�/Z*s�:K-w8< Kd{9R "yt\F&RUrq)Zʳ^f"!k64�1+rg�:lT)L4tw]t|Nⲝ + qquiLvJ.Zh|}ן1h!a[CD.zVZ�KIP4E@Tqz~vlD XQ; :%01`T|qGhZnZPEXD45Yo84)"D:}3d�?Wgqm Fֆ]xy83D>t  /Y�yD�E14RX�~tok-rx0]DOr@Np`;5�Ȱ]}^9:F�nO&59?=,4.e!v{ rћg.=_‘"A5 l)|5xeL pD-ӺۣD+)l*=>J7)iacJTh71Ta`,In'?J<np-u'0z@5A�  Iv칪Ո"l'=.۶FFrt ^ h6BA,քLj( @]7b'[5@|Ėw_q!�iL8�MB!]{3JQ00k &Et *])G^)`{ D! {q mcxpS{]&1G6zަ;(R22DE(\d Tz۞YK^Fz5FP;8oyyu׹* C\.\IdX8?pyG@@`hC q ePk�N'B& *C�[q$jAe) k]OZ1(Pm�6S|Li:"mfН�y}HOD?{0(Fxx�B,>YLK �D?5m]hBXuf8J/DL$cIU Zu@,ٺz\2*ĻX$@ދUMrGQ@_WM!уWMb^],, ./SGK,ޝi�'0H[1@DX�T٧^ VxO D.~?�p@ Pe 0v 0]ƴR Oϸx\a{4Y ۬`PWSQmq\{N|ej+LthC這 躆&c!8 \v^4Pkl ~┃2Y%ǀJ'j!d>>`%^;.'�z{%t<;!D6�}y/SŏDJyËlT( ]BIj`u[ )E8P`} 9 ~!ᆗQMtBԊ#~4`G<�JhM+ܖ ݚ ѶܘhCE {/<�  w)pXPb(}\5C._{ܙPA/,_ĥ"�ѳ xV[�_ c&Ϭ0j4q7t-F?6C{y@�yn02[eC0dRbQDYH1WB w4#c(&żweػbk"XI5߹@ ) Z� w&%` $d 2F:(n 8� kuـP2AӍB AgD>5#BMq3Ih>bq JCh�?|…W1| F :s (&8ŧb& RAgDxЃQZj(]m%%Pn:oXb:JMLSD@}w(fGU|�M�V<ޏ0&P`QG@g]c1&DI}КpD#�~  $bm ×FHh'@ !nsGvz٭dZɪY_uYa8t<,QՄ #r`Tw܋u2 `%_֮3z(B-$Fu FyqDTj^Ch6|�@_T}/e#NC)Ewgn=�GS?-�_٫9Dnu^i)E- p%Bxb*R$F&MOېZQЅ=!{̲۔!#%u{lzX|M{ nJ_5{E(@4Qz&- ([X�4ġ5MT�̂IT NsxgRQ$JGr8O h`ɤ'�;%(00tBs#D5KpVޕ= "/l?!c $7tA"ymM#*Emy]윺27!~@V' aw\:K]""ۀf 0 IG ;brOw1MF"^(`krղWpp@4t�\X \y܃ GV{ܷhDr�R gv�h4ŒҞ>;s.E]On׉,M ?7/\f5/4QP-y P|{ {!b&V ,cSLB1lt{@"1l"mx_Bv{-Q@ Wxk8#�8� o9iY!Upqe@|ۻb޺}4�?MO` Xx2h#C|4o?J%7lA^*ܰ6`Qz~nR^9 ~7`5VZ�P48hJΐ *4A�09~Z,@[ ^ W (lf: WU.01vF.0 cA-!KȐHH�J~bUֹ6(ˣEHn& 5AGSkWGo7Z {jwwA* MpyPjB^|~ AcrX_i%(+I@-AԆvJR4> $Z1@�+7r�˕TPאƍ2m5@~P4qՂM|@dą:JƢpDN5_ ד֛Ҳ�"h5UC6PuTVyC �4K)k_P7 ~9+4 * .0v)MvFأ[�CH<;n"vx35|}%`N 92nj<"e\R~bo\@D�Ƭ0`Վy:j14D �C�,%ɢ([ oN&j^74{ h��熦>'P* |2Vʩ�q$RN)`\ZD�n5UcL`/; `հPƩ �q y[UtҿЍ$͓ҶܺZzV(u:Ҕw { (.\4 DF>4 m4|5DFn;0Ԫ *Ab:}r ~`('xs!Fz7nO<+I!e&sfQҫ-UNv 5kvg+J DGWuvTԈKrm@ V+<,�y)`1 `: z@KZ;yx^@cD)~㑑M+} L!ۼB757E L AlvPUvn`.$3.Q#^g' av„UP<^_pVcKtly*QST�8�e"TdҰ1M�TtXzKD � >59�FɔFO ^\ S~+T -G2E pyUAt+7V4ӚZ i?u".N@^9}G oDU=P`A|1ZAMazPHRʋ) ,{nlӤ@p,l*w5�Hwq/I1:lJ鈀tf3Ƶ"K?yd<q}Fvq/ l 2 d5�u(إލ4dX'L"hG~`*T [ۢ ȣߙt5b~Y`疗E?qFa̢`1>SRcj-NQD)zT*QZ1 RJ_eG �Պ "˂&K=�;7j=D@*N�pmc|d`[h*kZHG06 zMY}Pw|\�N͝jRH^Ƹ$RQ]̮a%)C,.\v9( p#@7+JWf Gu$+Wpi eqENNѷTsa5E A("vV.xK�䆒l%=$T5u�2֩5;zFDӷ AMud")@=R~?\ȋdU?L+nGqH߸ց:)rd EN1<* Kx ɧ(sڼMAm:{AN(ٺ.<;>@W^?r[x45SjkNj^!68 ^⏩Jr}PƦ_mBhX3B1Ckw !Ш}2?p�bT:|>!$*5u Р,$$H�Dr\GJ>4JHzxG�h 5;.`V}\] ؓ׺gq鬸U̬!FTTnȜ(wUU(vKtul]qZ dZX(f }vCmWg=a5@ݛ !wa� 2$nXTV7̊d* 4|7 9(#+( +7*NRL U% "CA|&f=m`[ Bv �!�ߣ1[yLK^29Vםq%¤ F 4 #̙kH46#`AGc'ۜw-�|K"6~OɆ1t]`DisH.Ѿeo֬RAL;2SFV\#ohq&R&M' Vh|U@4$qRH{ j{oxn?=]GCMWP:a-~VH:?AA\nQTbs bɏX&~M㎲+`4;0@Whﳚkp l5 м<;QZ`&&æF N*3dƛ!�;eS!th:*w%6oGXޘiڀlq4tbf AθQ#| sHG&oSMe8i7[._:P{Ѥ&::[0 DT^/;n]& @z?5觬b` C[W+.J -o. aԶK c81oaSt1Ţq �a] pVjk1F4V!wU6*x#%daP 7/.&)"-87cf@H6s 2 F8�x+<u㕄JTujU`@ZY8= couZD�� e *pjea8OcL!Y1A.j*zQ50F򖘍s[d!=>` �]b6]һ8 f!Ga缹NYhk�bn(7l'�6PZ$.gS,$ ҄&p�c#*!~j#bP>_%VN$GW*V5li+� d6 mmܸf=X2Ai{C7 p7 "�|5a ;|6&O*xh@8.j׫ϟ G|MP .8 ~k{��X??rktWb PCMsw*P:kc&��+ -�H-ٻ~:I3W8nzu *+}"R G!B�9EŠ$(C؃ @K�̭ 5ogP ׆ɿWpwpH 8`*Ҧ F"ROQ a?Ϲ;t?ް̆ƞ?2n�!Mk7E#fAԿ0b\iCogG)z9� a�w}R5ZE~e M&y^X'^oADyRպ^aj!P5M\Zcb֤q!b: K]J!c !Sƚ,柜2-ogRNPkhR!49]̰KQN"A@_0;6cCsٯp`(' * ` Q-B}q2A76Jw""E!"}CCE-Q"T= KN2L�A\2mI1@=ݥYd"yB6  ELAð_jQ 9JB hD "4p  N>iTR~4o>*wE}\(*&I M0z Lmky]ײϙ# biGfa!@X h ^ÚwBц$ )_.#uG$+_7SFu?rKBIZ(.P0*?'Ăޙ\0a)mw.n7͘Hah{�_R2A! :r U@hCupkv#q i<iu6*k\dT:"4ME{[*]v|ļzƨESrUW }>PYMIX{ܓա�>Am99]J&{2" d2j $:s�4Z> - ୅_FaCq.?NĦ�LՋ!%'1JBBF봹TlEi-@#ǂ f^.Qoy|M]{WZ9ݨ׏p�#A�4޿�; qB,hوDW)'�E&F({ ? }H&ɠ@4 wD]%`>&L&Aݸ'=$>x˕^:ZX J\IcRC_ugЃ}�P!6 olw<!BH8]a p|a ۬3npDV/{Jֿ"3YP(K~e ".7㾭AZ�y4fh>Hr;1t7޴+{ HxvȂ  h)[ \g$;K7KH4^c"0hjF!N2֤#2]Ʃ|�!1wrS#; 2@d_�j0:;� g=2 idT4ň\Gj; mJӉeh5Pcy5ŨRwwQ`xe\ډ/XCcJ,a3 � g i!u1$R@uO"oLݓ#l&x_-U!N&>V_@\V*K=(׆a @Dm蛼R]8y}IP@fsu]4' DSb~U!EqP;iH m}�E%JmM`  { t8MiIھ`[(;帮D(C4w@5(U0#^Kw-V?)1lM {�\؈?O70<t"ϦBIS-N(FXQ.s2Sr57$뼕06my1`ËE'G+uל&?Oƥ n[ 8�kxS91D@܋"݆@+FؗŽ#Q ]<ttܝ|טl\4+f�k2=r[*Wrj?1m1Ɵ૰W@0U�[{Mԕv�DH*%L7:�ܗPdS6w{Ts M!<5ܑ$B_K`mCA�J#N〆 JF]j㽌ܸS tVS l/I@nP#jI 226ƣ kÀ!欽ް (ڔ D �*zCy%U-[?3<$r,!^qZ0v4Ӵ > ,70}jQ4|N)}bȕRߓ2qٽcWm>*fA ^'9خ8.A6s@>#OKd޷b & k#$تOS@&>+n`܄kuųbQ/(;4J}P X�5iC?DШn@X hujQAEPlj#KF;ѷqv4=}@ZS1``ٺzu?QW# ~LHtWEƫTs�(b@((yB ҊPoX@ه'PnP.o4,TM$,K�cFDP@ 7EV<T2β DL'ɀc@Qᔺfb�'pSxwCj J~ykM)I ;v�25;cZFռ ]8&isړxWn}`ѾҲA'ܙH7`)l{DБBq��3T+I�6< O 0dEU񄌁QS8W964.5 r9.r'^7(Qj '@|GUv�X�&-12Bf1ZRߊ�Hh_QO9 "h43YN֏u$@+h; NN'0ə�;ѓ%jY&��3G#6 p#B }l\w_ķ$߹#hhG3]@w,h㞃6 O%JAJ{ QډgsԂ@o2bAW`$R+Y`).> �A@ <Gm4t[�$3!?dQJ_Gf01Ģ yٌ bw? -o1M"0D|Poabʂ r*[u8z1D "D@91 Ż͏do(j#+OYe-Ȑ"`VVI\<�Z Pp�@7wEA�0vt?L.un,0/bWXa o ͦ~LB !DJ[6Q;~YLpCAZ[|‡x'¡YYO܆<G HroB) s@�P=\~(ri7d J$}`d85yAb0!@TA3sAx�Γ Ԣ<2! 17*I٠iؿ׆DD%{M{.mO o%`.D(Hu!iM/5=[Q۽b,J]R</�4X_ miۭbJJkۂ}k1H jDߟ ;/}łt;Ƥ(,|P�)j8]`҉}M\µ WA2-+O:|�zp�ÎIJ$^�?0z�G:< % �?⸷Q)y)Li .]wTHT;:SVP'_`ԩ@ ŕ>RG~(ZA[yh?UE%} SP� `BJ_tݿ#�}ο?0}s;�d"LIJO $5L��mA6tlk\;Dx:�Guu@x(wPHrtm"ZPj`Zri8Zg>00.D2 �Zq�~6R8Ʉ4ß�TC?ϧ P%YC/�3�:'̰!)t ΞVK�6PolS[:b&>W)I� cZR2QྙoL*>w�#Tq"fHG7,f(fǖI?N2 2D��7OG?Tk#H\Әj z{IYoHR(`�^8'4Hw:Cט�iFR%{ŲS!=I o1ჿ �!r4,0\Lk0(7nlYe]bF qô?.1;i~m|L 5PD:va#C*?Ru �9pP^o͓!ig *x{;Mt�}"X~*&f@ |w'3t;i~}fcOADk.~aEñ]56}zp�&u/]w eM^?�PTh]"|*h4nrt@04䁴{/6CrXo(zPj-Z�pƲ_ka|0�J x‘0dHW kCT:ۑFBz`eXK$f|v5�nǐ �ݟѱX�_CP`ݗgz8ؗS- ^ph�d!+dԪ�XxX�h@ .4;<bN8[Ɍ @DD]6C9 C�w {-&՜ėiѶ*Zb.sy[J�@�w}0`A8j9�wfoq'=Ƙ=v_p_' 04z҅ly�ppHY3Y#OPzU{� =ڈ@uDoUSl3} _s5S`1@`ux-$GZ+�fk�2N*"ࠊGLI�@F8|nR LKLM6jK0\�`=\OkA\lU4[nBJ#dlRC?螦8LWt:�K8 Ģ dNՙ@a~8P "]e8(+ U cС7;A  kĔMJ(A[�Xo/JN |~`P6&GOS s$JT1&gImB+�PJi㮀bb}-<"Aq5pP*=VP7q<:BMa.w,sE�R=DY>1n=;_XC"W6?t�H�(+c1 GT&bAA.�2HN ?=�c?u>bCSŽ[r$%?_.XbZ YּB\oMr ^ub"AqAz%:`]iZ1X\uA!�e^_)4 iTZm,E� ̮:*~9ЉB~K4}.| ,6,-15ĭ@'3ycH I>_ h z��sJ{ &w Lh/3z᭧."T?~'|\1l@X>"~w ] ?_SP\u#}VU=cX�Lk]-  }DJo,PXɍwc;} I=39hb4҇) T!^2�֙8�5/>ϙI,HӌH21d6d k1,0(WԜ 771:)Lk`]#3${9:q�nlF8غf::7k\ИoTX5Ev\x�P7N80<pP%ݨC�IjD:YX#Tp?nۿSb ߓ!kGOfoh(:| $ٹ ,o:#Ždh{, !H5vLhHϘ�@c\ u�gJC`퇨:t=P(>3AGu?ϙ�*ͫd!R꿽Ҭ!tx�"(91u�` G`T0G`:_6cKkΓo1Mv �}S,f{%!)[.z U~b!^(H"�qH>Ӫmm҇DŽ#IEP 2Z !@Ho?e0#ì_<6`O-xr�NGstIiE*b*<;IP.-vF]�hfξ�r�bNĒۉ/.͍dh?/L h�P90/$f�Dڄ%n/ZM%F^︠Tb-90ġ4%McؕPT˥'xodI%SSᚚ�-Tp�RW|_%f4閔/ep抩Em5@*X@5T*TC@(.izWۄWm#;*\btR=1CH {�7y!uĖI5 Lܻ&iv^ @P/3& 6rܒ{�<ޟW'gXt" :o�Đ_rД\z�MbnL"{1 g:I*I �ѪQ.&@GKÌ�;*_q(&r4*St<?_P[v7>ҚÓu"Ds��^��JhVXy1}�6¡H,D&,13a]�uCRNiZǯfhR� S|C%L)g1i,LMTFM#.h88IBn2a JW8 kX~D}0Zb W,SE i�,=1 `AIt pE$&B)D#Ft !{ýܯ:z%#ϿŮWHFSm٣Pp-`# .߆ƪhjdi~bXD& : qF=j'׵ `w!@tZ�\p@* 艦o5m˅�6W︒ӃU\# !:`!л k_1j,? IpezD[�M??>B7oɿqL#NxL��o<O˳ox?GfO d,O � apt&㹃%^,SɝkK1A_OjP�WxRюǜ�v *_5܄"yq0,� z]bDk8a|8,#`?�/ 4@MÊS E6�!nIK~Y +Qw㡫n;65A`)~X:^70j : ulTHɭMGߜk !1p?QMA.u(Su'&kswa���fR~qL֚Z�v&]CbyQ=ӏ~ ^g]{'}q 5IzA@5=�>IwW yn(_�g@fZ>ʓ'0m]#PYm4vAG osm$CK #iDs>K#:1d)K->r5ر1`:['M,?ư;UȦ<ɒ*ԉQ6.,@{CKq !VBj tHY(�;)ݩTob~@�EV)i"+@=�̺& 5awm4%tD3x$ohԯq ;xeAaPGf(%5aMM�)=,M@|#Fh4xk0u:*v5 �7� , : }rEkP .R1uĄCXARU�&KWg)E`Vb^և�Y$nYQ_3ZA4m$˧H�Àa?s >v wȺ!b,1E ZLc.s !+3_TYܝi$R@uZc7ޟ?�zš4j<[[/�nE�,� l`>_x%:_EL'~7YtYb2p l(c1f�P~%fЇ�Oͩu9/O^@*jDw℉NFH#=A�mF+!i'E?KtVg1@l?WɄ+3r$@?�8GV\<ҁ8?S"t�޲3keG!˗^voKa�5P.%!yF Ct`,Cj2‚^'[MњN"LNM)%S]{AoAaB-?ˈm�IْE(/d yr޳}]}}_�8r43MA8H2�W0D0(QE�zChCF!ՙ`��)m2ץ)@I|g_M]Oftfz�90e&I@D;�jBYǞ~CTmd汨F@]5Š�kh0L**!!f&=qQv)qbR NE5BB u[}"#Py+5 qm/ޥ�8ثeA  % �L"m8Sכmy° X,;k=owQ7o? ZZUIKF_:J>3*˱� +ˉEI ^W\Ta�3;kHY'at#UWa}S()u}tȺ?„:N'`xQ"Rf8Pv~:_8upGT`I�IV.؞5NͺʾܙI>7e2\hPvΘ=oc '- ̓)ڏ_W񬀭V�54Jq(hᯘ@�$U1ZS/6 L=`) TUi?/^ip^.Ӟԏ0Ry+ԡ�>w q5*bZƪ}޲5QxcV?�PUtF_,Lthכ=L@�||2 ?.B�:h� %ˆ/u}@rOʯ3[W�uk~ ",4%KELЂT`f#!N_e=: :Oq(ۑH�a)<0𦆬%H�l|�1ݷ $adMeXDzRks$<i0V7F7 :>]*ZLajA@�'�D"DJ&X� 4)H1*Kv挭~5'KYu1 4  pzPP|'S!N Dɩ o#G}p8:VOf@)~i<҇ݸVTœ'j[d\KiٵãaHimL0T2hImD](_I<AJ ߇1d SI v_�y+_ x5od+F8�TTڋ�YB7q ͗e<Q TCunWJU(P FJ7XXap0[u�SEŊ܃;؟z6@~>Yb-QI6(_أWxj#=���7hbE'�_%1&;UVc!ń Ă5�7S 8)/W."sB0N_ W`$�{�ía=�u׆0M:5z"9 H�?*�C~�+ [C.d{(+�2+߁\;`�64@Fp�w5?fZ!�ϰ.s5AJ��$=&~0@� Kn&(=?UڔF0@uNy(f��Ik)}mB"_N4< Td% 4B'}Ό[vh¥ {OG�0�!R( $L& ;B҈;$MX{UMc#k-|{�b�D8 }o}ȚH F$~o�w;D�CIrA XfүC25k?R#lg Z׺8�y|@zJ#ـ ߋ؊둄Q/eZ*HN?ݶbH+Ah22�/M4)ĸg0 ;^MSFB3w?!A+`7l6CFkY䚜wT/fd(r�1"(c1L*&$1cAP .sX kVs `n9IT^/ TGmKM"ET8vL` R"֛zL$Тoi`|(nk'�M�QE?+E4TX!ѽHE m�ل|Dƕ  ۿ2(T"wh|ԭ �gxpY/gHjA;�:)Q<6b|>?.BQG6v)}a<?Mيhn'kffT��\ G V,(Q8 RYd .~�N ߙhh^OyA ��QPRO4v8_G0͋CΪLMqӁ޺prq{ j\ukXm2(UۡE?0(U72w}1e)(�C0;$h B|(Z;G} �s6!~Lb�_ l?UcݻQ%/ I 5iLgHR�7�o:iF�q~8FgtGk=KᯏgI)}b} � D%B?!߇޴.l7gϙƺEzO~e�q l8p+�ӏ*!wocj1LE]Dn=RQo꘿{� H (_7 8]f�p+i(oeFc;a͸�U}Ƕ�cSWQߺũSu%2!;Gx��=2P*TQgo"6t2V�` (_j�9pۈ7ɖ8j8Xl)_Wq<Ӥz`j[| :EjL@(ڼZ-lt!tG;0 4]i=:.փi&c~8⤐{[cG�@@$<&ϹIHޝi 1Dv GBNGNVPJNUQ, `BL(^XI%dpg[=2Bj#�ir@AOCtP h1"(B< )�u)J]xY<>* (OfI[|27Ϲ/ i?慬ł7b) z|#W^.c)G�i:p(|f|mM�zIRj_*I:9S;1 :u包7Di@B+�L<"G?p0d�#;�v;6uƾmS�,oXw7N>a#P@;L6^X�%a>+(pUtHJ=uI]|׷>qL m,6gjqƙOSmrO'*\n!-e_1cևn&d]&'0MDzu *STM0W93t}"w h"gMyǓO-/8%J?9<M0%7BѮocXԿˇ n [~aE#c8aEI=& !O0%-Z�7k <: s&�e&@%�;!O}}}?@�yÑS`Mv8bHDЌ}0F6!P40/ӈ?->C?0M*]@>Pnt`*L,Ϙ n_{eh5)Bw" Z1M4;wfiT{-]zHJ7AOqb&KDdZ)Vˎ>�j�Q D�@� Z <:a �EeOpL\ I||qcDtvc7rWD6(_.0V)h!k~ v`$2Sc�`4FtER' (M{HF�ÛE޹yV�6k3]р- :lbg&�V#BA�%s~|(aHT?N i ѣXБj�X�QѴ!iLNIf#h<d=NƷC+LjU'w�XqII_Ԃ{p\�f5fҡ o⚸F6S#yf9tvv26K{>Mh2N)C6֙ ̝\@+0j.�S}waT64KηTI0ܧE=[T,09~NPd*-U/3Aξ8/wlP0w{AwZI2 ZɅƓ+#l(BߜqJ2PI<EvnΑG"NN(O bM"�&pk\9 AY"',%𕮩 `]{Sm\vT$˝}!練WK@zxKr*,jyˌa db̴ 1s^.-?cK&!Ὗ& w:0?XXAD &x \ 0_=IEn�H Bb p3Kq`VrpS4@+X^C BF7N~9c&D ~%KaQt*2llrDo7Ų6bNhT*�-:IKc(m֣9U5F"l�CXQP`޸, ]^bhnPLLT@3_uTZُcz()AGk ?zs+[ʨz:HPo(Z|4D_#x~7RU3q%Mn`%|k1kCyBF]<T$sDpEͩ �f;3]Ycgd1Z9i]^#4%M28KN`KMyd%Wº$l&V�!.%h\ӳFFL_`nў ҆d]gk56mZZKᇑ5�6FM�'-\il xwQӇyo鋧92*^b}@(Щ@@nJ*Zsow h?c ΄�O16{i�m, pQl4}n`:ejOVBl)|q3ֽ:=s,0Ch?5X3(kbDD[ ܞMe-S&B$H~yQ)+>c/ut{_0GR/UD�65Z%Dn1( ߴ*(]dɠ.<@W[P{BFЪ A 8d\AV$ݽOc)EܨDmM}M \qnw B[Hؠ,$Em*݅uX@ ho%MټMAZ'vMKH4hW%qO1X2S~i@I?̵7xSʞ_p꣰ˈx*j<JR SQ3g!Iy�HcB] J5 S�S -Dhm?d@}~8dA�58%h5>]'Q}|1-QkJT֬nU-ާPo,<u 7f X)3AMɿ9-F㥭 !P(s2Vc�jA?pJmOp}�6x BH #P֋ }2\05M1@ W|�B-H8b "-((Yzo~daQT`فR!@O?GqR9N*DuL "Rgΐ-T]k`.6A~=F@$]oPϐR٣c�@5Ae u ?qB}¢10X%6kIWyJ<ĚѳO.-�{0A>$+9`Xct̲b*^b} aPhN&+W4ؾ#ڛszJ >k< w;q \T9X{4Q_n7i�n!a }LYˊ,TukqDCcZq񣲎b u&0HAd]"}ǙV4Iַ XÁ iHf 鰁ˢ\U~WJ,� $xjWKDdQӷMM|᭛&@fI*D:,_qbwE|f3dVq>57�j>F:Q ߞ~NvSVk�2٭8+`k(-xx$SݿBU :Ih^o9f#� Igu G`y�Gh'chpHu!;/"Tr~O�6_$,\bYނhu�,$1ulo Sc\B*+@/c\y-)aL~?lnxPʩ�ո) uˎk0?bǝSsnN �? TƩ| Av~$K]$ibe@_>e%De *wP̂ ~HU穥,v*UIJi?T - )?e ?@d-ŭSY{ܐ� *}hIX7'x3J)Q(Iܯz3X3߸$Vmb u|]#! ;0E*C6Z*X j~:@i�N̘O_3tHn]cYIG%ZFRHا#; |ӧ.$1lfQy}/*I iıPN)�� Qw1Ah�!W $�`h;_9L �qPl60i@i�Bk~Ċ=�A�;*#H` O5}8a7)26{z?4j"!ϙ FskmD�q#a:j>�`X|@@~~8$ i6kj~�ȸ tXA{qm(. K?Hiތhlt=ŠPm"@6_b"/\zKN#W.x O(x:͝ nOJ$T>#b.bE*ӫF*"Z|CN3 ےP ]M�r�e#OUܧyN MۦզԫqǴ*矮2 HqwE! �FF$\GCrܐP ~OԈxdFۧ�hVb1miU+a96?]a^/Ƣ;q&%*pAnI pgnJeƲ(uP9}wY0KZR oOpL Phc<].=@e]‚I{#nPDA 55Lp"�kvkX�2%uܹW#�q ڐ?hqFڒ=/pQMO;An@ k1[3K ؞L}kͷwrug1� `${#�fzW`�W"Hj~{rxbj1O R�(hj0: 〪*{MOq)4+jƵVs�pQ@pP{N߹CnZ͌*tntט"j$鉝@6O �HҿOݹ*T8krue@0$xD/ �Sw�1 Z rqKL051T)@EUoی Sao{*GYkٶ4 cP �oRD&^a@:k1S#DR6ˍ"ofV@ ޢ`ka4w*] E-c['#-r~{  'S`jybsE1*u�q@)5@:6tdQC4W5$Xk0J{�rmyn5~Eʪ,=6 KFN~ ؀SqFPNr` |)ldN h7g !EpPV5bZ)h kE֫kM!{#=-]TpcAL~5t .@k?&ʋ@Ip6m+S &gq`  .H'=={uR ^ltzGI2UaPlTU"7;Szŵ5 JtA#$-x�"ۊVw- ≵?-$(!hŽ�rB'LuvϣI҇rkDj'Zp"(7M5![Cׇº ݡa�!wj P}ipJ�!F(5! l^O>ҩ#I-#:y0T,\X|" ¸|}1sDB~s*`@'jtJ4$jVoF& paT'_��qjj8$4]i#QBuo0Z"_0(".}§=VFa;H!5˜U� Mn�']@۬uX= ef $1聡MC4sE JGB Yw~s(llE"ty#`,2}Lk䄫E7-kf؟:%ʒ0ĊfGL2a 1S|D wFHJJh >z- 0[AO2$ϰ!ml(%b"7 bH~qO.|"�ٖ?bNF{5<�ijnbHSCO{S\LwApғt]y湎61 aB �+AI#q" 嘁&YR+dG ?jF9bRaD +s6T+ 7pvC-JcH=%{S.(Z;RS5oK_uQ4?oyYlU##B-ZwZ=Ȅ2D O\+8[efA) 윿r,}jP @( !a F4zL[i`'f|5:ub @'0ˀS p Q,;~D ֺ�0�J"R O.9  R )*uq4O d-c% dhS?]G7$� Y01akZm5! ZA-A@:%Rֆon5Q0NV= r4"ӌ>(oe $ !�ۼgB7jXӚ1.MVFc$!ӂ$%MF]B 7abZR0z͸EwCO%.f$4JND p|z ;E9!Կ<b%4 Yy (zc"�kq ^UGOu.Dr\T"pCj E�;^!'D?ӎ#fG fhB&lH A&8+̢T*Ki"x�Ay1m}p+DG<cqP4 (bOr%w@="#ġUܘY=F(]ky&�"r4�:@mCNB( [z̫ bmG0�u_1i0|r`FH;BƐRb f7P pN|oU<2U%;^XDu0 ;/`J.RO\@E i!A' S'LDN$ }_ * -ہIcmGg 7B*nuSQa/(XsZ�|{ gal0*k[LGaY?P_P {Fy0D 1IUP>l!S!p/q =T JIjL⦎ِܗy` 5Zpm`ܶ8wq9G(t7�)�f', j�r:UoTNJ #zciri!%LY<WIq %8SXE2eM֟(aT]"HZQmu6 W~߸oO�P�t1&3c `b(9۞t"]@rw� Ӥ?4ES5Z� bd,AFL Z֮BbcZneaȵuM~b*Nd 5I }MP~MZuC" z%ǐSCi{JۅWnw| R/AI禣q.CHYjN\!Xr0 VİW�S`l (E|M% ><ΐ{Oˁ4/8dƒBCGX:a _丁@I\1,wi4P4a6I)kdtМha{ΚnOظΠ{НqnHL5JLӔ"I@#�(xYGxZ) 8/ː~6B_/=ʭam\(i|{dJyFL$7.:7U]` QZ�Rpx],X?3Ҝ \YZ�0:0SΤo̢GCQ)`Mŀ'1Pn*J=!.˦D_BP"]� )( AphuK|?&@ FQ: '8~PH mL(ݞߘK;XQA1�ɉCZNt) @T ;#}ʰ�tUup!LACh6wv_iul*mp6?L o{rDVeuQj#Th�uQ ۓ?ӂ;z8rfUF2ĕkZd?�s2i;@J,.߽� HsԾb5>h?.3=IĖ6;_fi@!#5 mTn7OrqfJq8tL;Y}e}&GLM@\2 4Wk9gx*dV?q P�iݣkX[ Lȏ^/u/޸,G 4@*�LW~ wq ks>Fe Q܊)MA*KM]U4|DDNZ\keI *f3@'qaF EcEK4*A40_^f/aD͠6aɄ[e%X>qQ&Oȴ$6#)?M$@P|*K3@E[\d!WK=뗉 ugB>fNbl%q)!ohD!2zsG}͸W#=dLLԷ ܅mҸODz~[Hc";K29`4s6Zgr:|W)3'OLm < @�xtLdIbkgø?G�ycӽjnsZjf񛧠@z8ohB>bX耨q,i1r[,RKw^؅ e#bSA#h뉥3$1@W`{Yf:df p8"4QDKk,,ꢴ<.m퐗5rbY`jǣ<JZakid|ʸ€<60Rbx aP[qj.8YqTiS*v JP\1 wUUoBĤ,#z~1읧Uy4 FH?O)}$ }?1VסuM5hSRdTB| Zw4ѭfB&<�$Pj(]�D:xk%q]t4*1fT4!k((Ņgfu 1�npl|= J.S/9-D'8O]^<�ȄH^`j2:`2v<1SN'*1={qK-F�thZ^Sv<a/ᐔp@U4EA �w"ڒ^>Nq M{Ģ64 <mi WW4A\ʢR%w(;hK0-뮸�: &;Wa6�(k9x> TQm/eo]*e,o?&`x~0qP۷L)iI'#CGSm߸Q̕[&/Rn`S&7xM#OėH(e+C'42ف5& nJ<$1c�_�Q֡m9(JƞN@(̄D:'Y_Ͷ0 1pCi -l* +%؉cO�~ѧ\ ]"mO@LԒȃ%(ߚWL\~m_`>OiU�ы("9Msuz ^ iWގ0)G/鼣g@x. hřU$`@~TƋ M( 0ʹn̗ҝM?U+AZ""Si3�xT�]a0�^ Pb:\wpV(^.Yj1x X;Ī?� L %Vǒy5I� 5ϘX( R* ,}Y1uˇ9�g�>/pԑ.0 *guĮI55.vý+$/_y$Ȯp%a?f <�"<�ia@ʕR# BEӛ/A糕p �UqqZt$nl 4Eu\7_qUxT<Px:kQΙn_< (ŸH8A9 m�iӭWJr9.Uk/x `H4aDL4 C4Do~#NnʕqA6ܓ J e`@sql`ODa( O<ꢱl6`Q�WK`jqꭅpsY N%$6֮8s/wk#ul#cMI~?Js~m86 "DJϳ{K-q�<(U=3߀'K׺<}:@@vv0bg[`Rލa0EpWj iTH20H\ VQ'�]b.T>;Q 0Q)$Q%]iZx#T\3#:wڻpo^a݈j)TϚ8CPٍ]|ҋZm*t-Xtăn_7* e CJ;Нw$BZ�jl R0$7!bS@la=gj%1�&a̧͘ PU૵~ox/fƌɉSA[aԦ Y. �@K>8S[RMc)3B~=- BGyJS4X0M^|;cIL2Q~㉍J2~REhhPD/ mp8C7F\1Le\ϊ*m 9z=pѸ 5|V`hq7qP,VmͶc1[jO^{(V U PH!:L Y dwCDljAvEuƯvS�mz  JGq$}̈Šc84F�>kǘd$h)(+)qւ/htKXɨߢYJˉA]grE5g)Z(ݘiz ,2#A9,"a# 6 wVs!�g5,wqI`74V �j|)7W)~2�y@ '}ݷ"߹.ƻq!*VH= טnFة�Dā$ G ݻCԺ"X.�2r f t^W̚NhV RWp[ +uy Jdx+c)h Vs|TY"lX{PXM`IP l<^~CVoxEtxdͦi.'O-+ �dn**E*Ҟn }O�k ?Ӛǻ%*. Q(~b~BH&jqj\~li`W) ,�5wjq,(b0XzۋI~I=8>B�Α(}i�Ҧ(&I1�#+{JP\@XI�w`(@�ec�l#(?HCb<[PAa@6kU&yՂBĻA2B%/0|F Am\$YAK�ƛG"\(((j| ZR1j�F|X~[ac 鈒oݧ~ w=46.[d!֑B] Yp]bT0uۻ{С0o|4-v_w z$N�p(BNkuX �޺A8h[15os@0KJb(D6:l՗�6̈*H* & "T/۔ؚM9�:5he^}�7]V~?4߮�cm;ew i=a@h4xayRw( H6kxZK1U"{ )p>Lh,8d�B%nmH<l;!*qkrCNb&eCWʴ&-~8Ѷ?zbv"7IJ6 oCtow#�H1E .޿rUT%o%!iv/)* TB8(|@<qu"l#�x '?_ KwO*di4'y]eLD U=!nu"{+�'7 +V i}ԉ!I =6 NCPטNPir0"b*' &Sbnwf.e(T=4C8fCz&)4}0J�BS_2,0 )txY={<ˌ!Zê{TBvͷHtFw_\XX�zbf"qk !6ᢈlR<&!&w6x Т]kzD4>3)n?ǸѺ8o\Ux cV7 l\�ЋE RS@�dzbr; #z- z늊CX-hT7ώ98E4p+P p$RR hfGp#4My"~z_XItL^2C:TM~ζBnmb3^�p=@ +g je@  >$qu^ߘ2*� {hIVgټ1% hT!EaGoCz $D:~o" :V9 Lf̓e)MR61t�ᲙKbN0W(uO�_PXOxJ6|ټf"E!^L $Jm;%}׿�K DarQBO`&sRQJF�h@c/7ؐH*mwtķֳ\O_ ASg`\`#DF�q ;>#Q0s DM?rwm�NHo 4@ۥKv@T|BkD0�قBAZ*b.VϿ 2ɮ 1$Qa88PAin([`VvkpV]Ũv^e(SA Y=:,���UC*m�&"wO ttU}ƅrLܥqy@l~e");j+�=! N�2.M%TjkCӺ�n.1$_`ztn"L  ﴪ'́\0pZ�Y/j;РF%6e&XoQşY/fӘeB:z(cR$BGZK:ambEް|:LBdKi;Nb$<a+](Ec5QVȨson i�Fuuf4Z^|u(;DnbтASBҒ$v8 0э֟_ Ҵ}W-Z_2E݇ [_] *H ɸ�0>>0rW'yXGX62>mLxi$ 1MB cN՗c0PL$ta-<<qRo6 ۼ" h�Ww4 է]`L*BS}6Chup @ ׏- y"o ,lS@l1•|$%DA6O,;;+$GW�v9b %,�mͅ`~8VM¨ nF 5(6Muִ()wn 5_591lRwl&Bu�o ;^HcSQ)i`ߙDX-0aY/Nri!^X=O~�&@ ;)qrOp_jL ]@ ]7 !~2ξ ʈƗ(I4kEj\$.L 1o�rZU�X�~@P?Ʉ`=p9RIO"aٲE{{1k@4�:Ě~UW �g_-`/MaILI.'TNyQd$2\�)yiE7qWR+ %qvb) X!wj"Tf8Ɛ-*ko6q/dπXXrR~U/DBۯ/�p׮fH"iL+_!1B* [?'(X@0P��#4(#db;YYLMx#NbGZyۖ6G?PbZ%v(yV#{a"P#gi݂Ífގ>v�lQW#pˬ>P~"|Io� mw-%؉;kOav|!TC�q<n,OaxdK^ËB#RG3ew+)RR6%ź?Й՟~˼_d?[B -V�r3=�3oUhҐhw/* .o6xdhZ!Zʹ,{~0ނPPLKcC"~Cvk" �ucJXh]LЀ4̱??%DWX+ P<? tΚ Y6� ;2� DZ+4�,?ihP t3@Q*ED7wGF OcE_D`5"+RDzԹ7D|ˬ�y`Xǿk)[4{-؝o3l*ƁR ʐpBH^˕A~Ceb 8y `nA`gRE&ÃX5#cyL$#+¨  w$+*۩$>ap�^s6j({-F׹9i#Ԙ;;?,776W J\`t['�:, YgS"l$V(\b @EuKqKC�s^jǟ?,hxoc�na1Ggy'@ pСqWCn͓6Nѱ4P(C(" o> 1D 0ԟu νEnjoʐD&S�_@ٛAJ+u<ŀ;�;Oke"}�n&,P!Q�U2OO.FF~P/p#�wEֲA.ßP]lP(=6<d|hmMWj}`l=qҟ~:| ?U}O44Ed(]J?IɈ1w2w{H_>;'ok$2C'�372"ɟ�pg+;:G"&)! tg5;|꧐%E5J ~~T[y*<V^ ]D<4�s�ggѲ{9hz &0AC¢bc.Tܲ�M]> Cc\㌂6�&Dn�A|�2鄅E $( ߸(D@ 0hdߝŪƴPw�kdHАS`) :M]Myu5byy�M uwZ.0.�BASbQ{9˚*RELnA,l065h>讅e OAX.X̀1~I ; L*ZQmZ Rw `̸�!g('vEF:EԚ0`UF޾L cO.$T;Wj\PWK}$/@X|f3yu_%/[4 : I$nLFX+0-![+yـp8e'#AwVp ΂*ɬAZ}Ȑ?)Sh5YS|iASxp5pMl��o�Ѐ�[N4u juCh�2 �x@֋�I !ݼ07GBe}ǢH!zn @&G^,' 7(A4�@pHЇ'$9�UiB+r*.[ NNm=�$$"fQVFRfh@P51 jU/{���l{Ҡ%\jW1GTY2~` k/J$D6?zx�/4�֘nAi<{$� /)ZY}]Th/QOǦoJh'MllTx`l>o/[vaI_p>?b:d(<�ɱ_cxԘ;qO�u==ωEs�M 0�Մ`]G!�-%Wzz~e%8P!G!yq JÇͪCMkK} Z տ7�t?<LJ @2m4 -}]Jx0*I:<lN›ph=٧�3yfB�zO Sr/F m[I"o5EW TϿqEz) K�eB(H#BjINxMV}n!?Ӆ[ġa) !TbbeêUlf; b!SdԐ;N>o!JBJC(-0`PXZSt ""~I@ҷ8h.˼N8bʲ.0b`CSَ5J{`;by?#, %\OD+@Քņ49_0AZyQlv=s �L~B1d'?!eq 4pAZS?;C $Bj'z3(J+[?Y$ŠX7҈iݦ2`�̻m-6)52XV:AeZ v:^h ~>嚀CBX'Ѫx��%6l?0xQ]e�w4TZ�@V\"lF!ELs9&dРC+ک}1O̢-a:?k�@Q+LF3C~ai$ߛ' D0>M�zqJO?o / O1x i©@[`�Cil5+l@q{LG&/�b06=3*Y�0;$\kZïk*pGA�)?j��v/$нoՑ6`{ ?~lCta4؝rxgl.U1/r00w Ep2$}8Ijn|{ŠJAtLCJ : F @FS�8Sk|>.U! 3k(Vn\q 'kPI%{l~`-D_ oˤט2EXI5|p(*R�(Ln(HϸU C,j ?pC]A.d��@ *�RlUp `!_g J?''<LjaHQ^*H.ű@XpD6<9֚$ۋG/(X)O|,Q/p"ŸFܘ1L< Ewٕ+tCf77G-, ;'0D.pe;UuyPPV@s 3RYJ:@#G ߇랚�p(=Xv`\:hi01�"05N|.6/1"\D̰b FLDd]a]n34o2+5nR., w8]1#6 0=;TtwJS�rw ]0 nj#O B 7j`B#SoA4 uD4s*V} ˣu ql\ ]uE{Ԃ"xZ�ᕻk8@C(�*o.iX?/Hkw`i qIb91i}0,od6|>L̀6Q_m'U7lPym�6E*_H(ӽ)b�z �_CcAq&^*lkb,�s`ەs*\el5U@ zX?͌-hbf6+ bi4nc!x?@Pym kw Jt 'l�>k�\Ȅݟ$Q 5a~Q0ZϢ0HQgT :AA oP(uؿ J*BD ")Rhp۬ C MhFJ $Fq@^kZ H PάхbW‡ RwټPhxu")*?P_.:,? QVy3R11qI690U?PC!oޓ?`A"lUɹL&~ q�o9˔!G{<J$:7.Ƨ�pԒѸi"*xce~/59Z?UmaC.�H1"$|kBA`š"V~82JoG�rGJOst%y"GYw !wQʺ-@Ń5UhxUuL1pCN8;d6$2_Ɩ%!A4Rc#R�Ĵw46ΉRG"=xkq:tOD |k"|�"9_pK`eĻA�00ȟ:)_q�Uռp a�ZpCMntw �/AM_A7`ʿbEɲ\._/Z@K[u᫼Ҙ[zٔ G1,�${pñ)e*^1^0]2~ O�Zŭ~ޑ�Fc,G630!#;4MbC躏� ,� {Iɉ�49 °[ӻp%م k�oȥ�~c)=Ȣ Y Pm1 #f�{?A{YepV[1W;@@4i㢸ix�=D4hr`;kB)7^.+4r-&5C%]k3�NaU݃ ] #cf3Ztda0J ��*g尽N�H�@*nf,QNC�Rt:St8s_JByR1:Mr= &.*]a|џ`m}`Zց(A:YĄxN{eGObG��"`�@&Ka.տ8H*hj�Lde"'sY,?<`T*D.7HcVz:_pP fT�+G'f%-Q]Ou]A]yT!<kU�Sp(G"'Pa�ƿ*�0lR4Bn˼FM.j@ v!*%o7R߳.r> Op {7P1ڃ|Ō*U?NRz+F>($CV} D|eZ[XM^G�ق#G(9g]7/52 KW� ;4�6Fp"+n2Q+"MކT0)ȽL*j`fGHZ!w1]:>FqeBr�'8HUN>"Ѿz߸i 'ˌ Z-ӏ@0fi *\X̴fW:D+IeR_q#XeOXي#O@Q.1}H=@_q (70Ek1$5 8Tm;LtmBI1hF10X4W5 5mQ8ݩWi_/?lf4ڥ�%<LQŸ�MNbw$�#*BD#_) U6Fs&lح'm :,ߊb۔#"HP/k@g�w+VHxϟϙ&RGޱQ_x@)X5n<vĆ *U ۬LE!YWmv,xkA0ݕ!(T2YWnçP* LT`qj~;=¨@ 5ۈ~㿚ihF� as0&yn_@'Oi>jbHrm֏71-1p=7ͤ@e锦L9tce# L�}K1Klo?=ʌ0DAj&kr>Ԡ \ ~QPkGp5*p? (#aB c<AM"[ Q �@F�O>�wwܢS"9rFc� X$SAC^Ϙ= Um[͘$nWyJa׺?p v(5 (:FaDR>.FǛ0u}L !ۓ,w(zo5aY,:oB7­0�{h1.DiNb{ZP~dX+) k:Ƃ'A[d=42N>ڽ.=a-HV_- OCDX̍/1G:p^7�;D?O3|�?1'10-[ofweNcw/?�b4f?:>̓>6@;yx2,8Te ]�8PWc�Qb �}1ŋWA?lp*YGF@&F*�{.| �_'$+�B:ͅ_qQ{@9hH9`"AH́7!m"ʫ+)5ʆM67 XA{8ﯘʋ%AmwQFysX(Cnbo0?hUퟹԈ Xʂ0@K쟘2soyB"SO MeB쐔!q3 5f�.yР}1pk Q u8 pᬛхA}.CB}DIlꍀߛb)"l7(g# @ڞǙBN#GئXoaF GOx#^9N ⎻(sw︘n2mA�46rd$v$qpq$Pox?fZڛ䣁�:�9 C{DSNɈyɔjzJK[7mZ&ɜC�y^! t F/QZ7>oP_ṫ LPӰzYg6uy"A;GBxB:ʊDuZ4>uĂP̙]$_L@ ߸tS6 HB@uve ޗ(v.[lgm?cµh7oۛ7  tIk j0Om2SX&Жw1&*O-W a`~}"w#+�He&_.osh"l<.  oB'Lb(%?*h {%^9'B#a�JR ٣9Ǜf@a죽oB 54� F؎ D1rElG EM"ی8@hNRMyJ r#&#ݢYɋJJOL S4MjT59ܨZ!TC|- @oQ?& BM1 T@+ "B�]U`T@փ[~t0nT04UGjw ՃIW̢'b 5Q#P2@-n撞6fBEMt")a P8Ӣiaf)l|q42u�oA!jQ>:R �42�`th*G־qLZU�|V@ZNQS�x£bybi` X .�&mAy!07ϡ5�nT?1z4r|p5�D6U8Hok װ-rdCPTcqލ"4:h@"�me` a>_pXU:_=�?o>V*' 51ل%lVRN`AaCuYB �ĩ=]yp ƁIٕ!~a:ۆ}u&ʉqK55<BGWxd"l k2#bDTK,4qBA77H`h^rVu!X݋N?p' , /#%A?1kA6 84 fբWy@qhC.jq0ˆL4L Ik*0Z\KNes@|vpׇ*ߺrySOʢ% ?='QcMۜk5w[[6$̉C5h.WJpLU]~&!1R %i_L$iB�uDᮍ*}v d(үٿ) X+EO& Rlx}�<A9T;!`�:D[1 PjM΃_4u fe3W}&2ImMy|o).bkL*MDSki0=y<NM�">/H� @+ E[kS|շn0 bR|[!N a0r4Eb) ԵIm(̣Ӛir�1Jnغo.̠ Fp ?WU9\=^?qo1`w 7рD�8b4bFq{b acrD9(21qSJ\iHǏ07 �H(ŷn=Dh\BdM0z4>l�D"/?�pQoEX5 pO̡`UY7]6^a È۾s ԯ ]%М]MRi_mz'w-!@o?B#B,y5!z FݛV:�q1 <O0e!s#N|ò Uf]mhĎ:y}> %ۄzN9Őg�2~cER"] fQ$gi!:V9`U:y`hvn3ZD0m+1 ,Eb Un`<*m�:߸Hd4p-Y~8B5vC�dE,FFM>cZQNCwb́6ڪ\KH^m8o1@7_Juv�βJF"'& EE]ۛJza`P\\qBi._XȮ 'жkz蠀/cˆTbb6&!oː!~w5T.><ā#pU�T+4t >އ!"F%C%�D}Xؼ  b\ i4%">{~eJ)~7cqNJ7S ۗgq:d0Px]`hI[N)(<W6%7N\g2�s6^c7֝5jMo*�WxE66oŐD %񈧮hNP<#C=*HȹI827]~cAP)c/g(4꺼±�a(3PX"F?LדrY'to C\fےBB=ʂQC(shA YoI8hjTP'Vo8@ ަ :�>gCγ(Ϩ�)_i1hr\ Rm1 )AEMQ)nNfR7rUٛD kP6-8l C'C�f"S _>̅�SOsHZΛXs+wkWlwp=2V <Ͷ\&}5u^歍Yz;&R/&@@!c�AZ )HT/ճhCS+4k4=y'h'Ɋ4Dp @HP (؟Itv׸&RB{Y(˭j@Sc9BJj5`1}ZAFV�oH?]+qi%#wR~P`SMKp@48YÈ'(e.;s^9*7�b ym臦4 /#DX$)SPc1V?D-S=?m(.;dW\ JGC0b"87+7'Cz SipDWh"Z/qx,/̪ f$n( �A`f+fWT5w?nP ]9 />sf2u`v NC͇.._7#=ִ1aҔ-&&[_ q�ۧy4vI}bboOh nȣ`M�pΕa(68 pFSpEKQ6` "6Q XaH^ai1]`&?G|GGIyrv;pu"`Ẹ�+vS(]h(1TT h$�Pn븴 yȭT**/_OZ~/)GE�0"Dپ7LTndHnDEr JsX$d^!`Ta}.4^ VSgt) +h�ܐZ l X;+!d ,e)@'\dS{c`3lcels6 LTOEPX'k<L屪ӭsq ÄPp8pPMEHF?q@.٬@0-ƍ]Op?Y|1(y D9|@1)Kf9#$p5 DԌ8埸ZP80)H�Qs{pzQ_3)(HMOHZ%ҟ~cp*k y3@-? mW^`%jwX2\a.�(:xLt+Td o F8q/@L)�̤K@ Q̅eeX?Ӏ%ĄiLFZ}޾>lX�o&=Wi�勚1r�M@tR)W@B�ӡ)7Ȉ�`A3HF*&2!BOqzCZ%8WZ: THtI 5h#PZC ߣg Pmw-y$8TW0(v^S0%t"l C].8qrJu&j+3{IK<0h3%D V|E8 B|Ü\J ,xNw/a @t�oF H߂-0 2�43:vjyJ5? #HgN!|"y,MSNfiI.Pi&!2 L(͎�uЈ=vLQ)c%2.ZOn7 bW|.6sIB W. t_ Q5G:>=i.ͬ`Ղ/Dqpq S ㈪iv3msX]~<:UGySEaLqTh}/W䢽_ }bDS$I9em 9qڥE6{aId?7Rt(Z m^Iŭ#n01Np7jL` Vu1 �H6|G/PA��Bވ !)^KE,|HQW.j~` |<!Y0�Av?"!y+s3]C4Iyrbz\!춸 " F' tBN, e[XHܠFS{O93N_`_wYіӬ; $I�*�0+zLyapQY~nBƿpCAt/:~`)pD*_pCh ncg_�ok1K~A"vtrbwH!c}FpGj(2s�Q;uP4� D-$ V9 4O#_{0UABMo1teƌ+ ;?'T�)f&ƭ;FU <%d|o(�$*M�Hh>aRL0_z߽(.ef @㓀LQ z�p t bE4WB=[�3d-VVt0t2P�"Ab:ܨkT} h!GJ {.l @&! ,yMX} ,d{VwO2H<.'+.[/f�DU op?eWùeQ�^ųMBaz¦[X�pCջw@DhhcpDAħ}3%Y� D;�& HhwF;E C�]'q0)R(퇫]) gBaoⶹ\7RV4}9 DNx#:~ k/mi :*Ehv8# NbQ~$)oT}":k '̀ !*t*Wa:o u.1#=cm=V?D`H'.v/P 4{2PXXzZc`ɜFNC`9J`1Cno/k0(:n Vtb`T3D^cH)`X:r%~oY w#Bx ҈瘂MA�H]� Q~ 5$onLTQ:_%-hi{|27@@1B +&o3`Io6J�|L.Ly5*k^`C8�0؄!\?h� P*W�b�fː%CnG >^rh:R]ZkPUk@SB�CŹ!jQXV4k$D5Xo&M[e icVJ<"`K2@"${_h ]�L襅�$P +!o#DxecG -0 JNb%i$CAmܚ`An[0P.D""4~cAB.!w#'9 H�q /'"$ b:~5�3 ~) A=q(M~?H\<8 Y?)5�>`!/l. iM� k̤נ>S9"y;r P��p�dcQ!H?0 ]:7*ƽl>LI5]�.$g"F^Ȩ4Aw}pZtMPLX-:~| E`DA;R ً_D"IMjCN:7=rwm)䂐t=.)ɎЊ?g)!͵�c& �ٜ��*St$XQ@?h$-G"п{!&bDo]@]IJ蹢/`9?XN[^`!䃐]؈Ꮭy 3D4xZ z�,E6�6(T`, v1qo^F︾^�L8|rO4)R4[;* d[}0N0b2D6�dFmz6 >80=xZ ͪ@O0GG.1*<ah(k!="*izQ4FͿݣ`+�TO]pZ#I5Ϙep>R,+ L-](fU4,Dܓ ; q;i$A:S}�t(?eB]c1Mz2Z1x#Y29=pJ4Ν5s 䏶X�cg_;h'Ȗ#~.̄btѩp w"*,Ӿg5+F@o1CG!yYi@1$ٚϟO} �e;!z8i ?�AF,>OqCo" }?!'4ቈ,7Pmpܔ(c_Ǯ % f$ڂ4 �byo52#6a^bA+Dl�qVˊ 'v`Ӳ([@ƀ}`7w D L*/^jRoް?.4$&kp?1oRg<o@5VC :&4o@l‚,-4De@SB` �h3^0s3sI�^�IdzT8|�ǿ0f1pw|L%c~0p:'i&kYӢAsHP<OL&"D^&L@ %n7hԻ8j.͚1޾~9HQȆ7RƘ Cbfz@c;pD8M�.Q`Iw$Q?H:KY6Y]TnB@4IATMO1 PLR{܅AgYxP(p D?|G侶~` GU ] B#}�k�q9Z,E .0>HHL‘Dha-�p�pu{µx�QR6-"d`&W]�SG'dm ]-|Ҫm�M (^_@՛GEٌ)Bq!D# C&Pst{1aRQ c,kH�zuL jh�)N)1>L5wkw.g4Dt0;wr�ox"7�GEvHj{pjNcn¾�5:\ &< j!�UC^CD*^168)1.X n~HgϮPH0D@Q((: ;M 0WMl7-y(4 Ztafo"ԼpXz7"17|� f0*|_ !'ƨ?Dd*KoxDmP4=]9AS.x2k$NpRtmeO:)Rs["?1mKI EpXMF�@HT2"h扎$⥰Rsp/f$kt ;V(y}HNu++J1FҪNDµPA~`[�%%uō+˂#w:Ur*DgoL�zgޔGo Ic`G�j*o*Y)B1SI'�0 }f"E\%D1WI H߸: UW{Dh�h(P<!ːN$ZU PWe~�C*t/�sFچ�"t_\b(5+T ^SCGe `Aާ�O6 ­Hc[GboGCb*;Ũ!?qT",o0jSpp.K?5u#'@8]G^pFz6�P `it4_e'z�b,5DtO0-Ə�EAmM ӡDLX3Atxe${�M;?JDM WAo"w�tX?ub3iXWP]SP@ji4WU�DCP*t!wSw;\Ñ*[p4O &K[[Lb-Ow 1PE쭇cr>?*9ll1+E&>Xi�IėلRʈ#q )ܭ" -<`PzCykS5a>uˋS-lHԏ�wTVhIZ`CQor~Ji,; scjC�1<0� 񠎀9p["!]y j/xAI.qg OXcL�U�:ب�,(~/[�凴{̑KxFAđ#4Ʉ~ s�cCMɎcUߤZ%0�.JZQ0TTh1KPb"}{ϗL0A* x\M7cTC*`X1F遜달AbZ&3Х05\P� Zh?h)J|#5]Oa*vQˊWu\ kI~eDkO1X#yapR2( O9$ B�<OR4O.�H{A 6 #p P1r�=1m A4�G6M�`M=p֔ڳ ;rF�qc1i@.B- ؎ FdיeIu�p1 sR6'?U_fn$3a+&Y&wZeͷ}Zk#Wsd#!@~k 鄕:d\Tt,6- FP_ J\ ַ@BOJS`s( U�E])1RlJQ*֔;W=̑DUjW, }zd#< \%pgܴ!Dǔ@ݥSt )4{Qv!t'r0]�q_LA k*P �rdS@suA (8X>QЫ= s)AO ZEP//BT&7`�7#hx qa; `{cpP@)=6Lt\ EO&5: g((Z/wO&PWo1T¦polQCH Fqj`?1�(5F!i_ʍ`Of �S6GOŒ]_AtxdCAchi:(_0T8cF*}eJAgfP7#L tAq+*Q??s`/@ $.6aM�z~IjCN,�<hR-5c4BL\q0jXp3m.ᔈP7Gaj t"8M~3 bI.0j[GYyj  &k[fNp:[N#P8{  r6k H?p U  ;i�T _p�yfɂE(x.o6cA`}.j(m˕ IkT>R&S[CC`Dn#�QL T>|E U7!8A;rg*#˖<;Vwz"Pۼ`Dew  'WHM\@)!^9Fڮ|B!j�YxTΥ,af" vh^?( śYMm.�.2%.kGDW!R# i&p1 vatֽGCe�\~ ɕ/m@M#S v PA�9ۡ٭]f;40eB�`,}rd#ѥtyt/p肺"~oN�߸ AwTbGNR+S- q? ٭hP>pKtm>ɇR!BA 2|1�F=J6M�B:9 /ܒ}󛸘!i8# ML("lhWɑTJfhXek7jpjUٜ<tZYgq}@kTP~RV}¥0�bUMmoN鴥|Šu�8B;;_." !CI](M~% __."xZE^�X["I񪺿0ۢz){ ?B!YRZ.K5 DDR|)B!EsQ$(r$R8a$qӃFl(QJZBU4%!=_h6Mk\2(1'8s5wŀ5:bLP၉$�တ�IA6 &{W.UJ!ɳ!([nk�:%A �ĦM^t8;AO�#:׸ptCi.X(;& @܀n;$6$@O<QjϘ�8BpuȨӚje*B0W !>y Pt��\c#Qycx�3mVle3 O3  k_u2<]xd/\t,~cէER(p~/lr`޹\>\/yw%%9q7d`P D5M1kVݿ oP2]^Ƃڛ\�P鄨D2n<3K2X]%d|)ciC[C j*p�N &ڙ;VM4@@G0N#O Dv" adR &o/MÆ}0ѠЂ'B�˜q[ONwL-.\]PӴt`+N�(L"A7CBC1D|?�ldϿ1@GQHPOo/k�5 BwMï:R5p"6b#o`KN6IXvoV@Nri|�Ր�^Q]w7h_0rafB�  z~�,X'jH\2$/"RQ{zݛ9W )ϺEh7RKr5v�o"/XX P)i֏fؼRh|]`:@Tzɀ ao "4MR=I9S0 B×�h]KܢAU\=_H+Hn/�@* ,�̤b: P!�1�C�uIKy0n"E�/„ɩqnhb?Ch͟ BcL'#@Mw(fIR1ee ǯX1o TONȄ<. kXm S?͘0ODrR 6J낰zޅgD[ l9 `ƢzHʤ[ddE0Bъŭb# ?�U-:C}٠ 91╺vv6cܚ"{�Lh6f8vBt ZJ#&+n8 |v`讝1 >d`>WcClf�4 3RrݢmU54L(�]& RHb6:+�Y w;%�r$FfNn <%^uw�J}LJ;oh6H�PG9D0Ep&D( `67�IVفL揘@*CA9 AU4Ϙ#ێ )cyFۃXYp`8kD< m f6A 4J @Ow�3a>>s(z- 5S/r%M?O-_1a9IWP'Z2X809/ ōlj@mfnz|pQZU"Jm �^ǖeăibѸj.�4:4S{rf'<ڄ`SvLx@Aw}āHDF/'˹˄ Pxi`]1 �4۬Bxr2 5iOp5չ+; 'a V9 b#H70CuM0|~b@؊? !!&i<Ɩ�1ahe5*b�-asVD�  ԧWkO[V`Ro~_�-8� ػoe%AbT.L\7Ob_151< maa5nÁ0%aV4{%à�~60*2k�[;m_qZ#z6"N߹{?1ȃPl<~|qET5v@P\�m t}x�p  1[]i8tɴ.9kSRzX(^L%Ej}~S�У5&^窳2蟎#D|�8)0A?\I"WD5#e4 A<qDVv1@֭  Ne#RSD̀J:wEEb"ԭ>2(n'l5p/2Ҏ/[]b#=�Ki~HS7Jo,p 1XlІPe@;dhaDa  jt+*TNq@"DIcxD!B*S3�}vYud' [I‡œJ@8cW2|1jO?%\fz2-w(6?rAC%t'Ma�� c.*$\-�Z . HsjX^Wi`7YP4k'W: [/8<= h^9qf5 `/< +0% Q>/> 'g]Ki& i)!6q*OKE5qzR�ϙaUB0.�uI2-A]p"DV@!blU-`\ K*G�q2?ŨU$JKX$P a؏?=T {y#.a v0DKZ;̙J*"&|15x.Kvy*WsUwWP54)D{ӥ)Ӻ~ !KhްcdwkC?i@0@~c R8a-o Ub+j.;aY\A~Ȇ2kw=ӆ�8:�>:D#~�AAG@TcN2aP~2DQ"+\qa9C`�ѨLs"}Kin~Uvy2*@ ajlawP\ A0) I`E__v{Kv '*\dH$R$_1:L�q�؆Sd :Ȓ`#?@`l>o aK&b<"�lV2M/+!! L|__l#r*P;�>�����������������?�a�����������������?�a endstream endobj 12 0 obj << /Border [0 0 0] /A << /Type /Action /S /URI /URI (https://vimeo.com/77477140) >> /Subtype /Link /Rect [48.24 525.315 547.04 805.89] /Type /Annot >> endobj 13 0 obj << /Type /Outlines /Count 1 /First 14 0 R /Last 14 0 R >> endobj 14 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 13 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 15 0 obj << /Nums [0 << /P (1) >>] >> endobj xref 0 16 0000000000 65535 f 0000000015 00000 n 0000000248 00000 n 0000000449 00000 n 0000000506 00000 n 0000000557 00000 n 0000000829 00000 n 0000000995 00000 n 0000001322 00000 n 0000001364 00000 n 0000001412 00000 n 0000001464 00000 n 0000235568 00000 n 0000235735 00000 n 0000235809 00000 n 0000235934 00000 n trailer << /Size 16 /Root 2 0 R /Info 1 0 R >> startxref 235979 %%EOF ���������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/reference/video-youtube-poster.pdf����������������������������������0000664�0000000�0000000�00000337356�14163570564�0025302�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 % 1 0 obj << /Title (Untitled) /Creator (Asciidoctor PDF 1.5.0.beta.3.dev, based on Prawn 2.2.2) /Producer (Asciidoctor PDF 1.5.0.beta.3.dev, based on Prawn 2.2.2) /ModDate (D:20190810021416-06'00') /CreationDate (D:20190810021416-06'00') >> endobj 2 0 obj << /Type /Catalog /Pages 3 0 R /Names 9 0 R /Outlines 13 0 R /PageLabels 15 0 R /PageMode /UseOutlines /OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> endobj 3 0 obj << /Type /Pages /Count 1 /Kids [7 0 R] >> endobj 4 0 obj << /Length 2 >> stream q endstream endobj 5 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 4 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] >> >> endobj 6 0 obj << /Length 115 >> stream q /DeviceRGB cs 0.0 0.0 0.0 scn /DeviceRGB CS 0.0 0.0 0.0 SCN q 498.8 0.0 0.0 280.575 48.24 525.315 cm /I1 Do Q Q endstream endobj 7 0 obj << /Type /Page /Parent 3 0 R /MediaBox [0 0 595.28 841.89] /CropBox [0 0 595.28 841.89] /BleedBox [0 0 595.28 841.89] /TrimBox [0 0 595.28 841.89] /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] /Font << >> /XObject << /I1 11 0 R >> >> /Annots [12 0 R] >> endobj 8 0 obj [7 0 R /XYZ 0 841.89 null] endobj 9 0 obj << /Type /Names /Dests 10 0 R >> endobj 10 0 obj << /Names [(__anchor-top) 8 0 R] >> endobj 11 0 obj << /Type /XObject /Subtype /Image /ColorSpace /DeviceRGB /BitsPerComponent 8 /Width 1280 /Height 720 /Length 111934 /Filter [/DCTDecode] >> stream �JFIF��������          ��"�������������� �]�  �"2BRbr!#13AQaqCS$cs%4DUTdEt &5��������������<���!1AQ"a2qB#Rbr3C� ��?�R,2꜠Ya ڑ3,"P"ِ%=,%Bn*m+EnT<b\KN3 (wV:_I)RK]"q!2"qʷ!QڕU4$˲XL3($ȣedb2<̉a",/ 4D@ #eeJf^fD ٗ@L3/8eP5!.ʵXfYDN+ZnR("ULU߫.ژ[G1x=a57[r`E]r}UJK& ѝ¥q% M`>O "Ԋ1D*LjF콩2#3,W2{R&dv򲜁Ya믍VM-e!.+21 < >`/BKo ϶-eh7]< x {¸rTaiSY8²zC2x+<jl6*M.޻W~�2+QSrl -b,߉u yqgV<˱7vP^9_*{fi]ˆ*JX4N uߢx7/,).�y{î?:ƬnV\⍇,[>% E{R"n%ٷ{?yBI]pe� 3#fYU,jE'o̡UQǼB(ž((5;w^UVrIā#UzIKi1ծ[j3ArTlեI)%;S[p""J"ݹ_`8RePǔ2}%َSR^#u~ESX3[jG9ͳ}[UotKs[#%rzkU?o%bY|"eʹ{6U ޺ pQBB❫S75vP3[_y[;'j̄X6Lf^1B\Y(YDQO/Gyoww6�X'b6^1@9~i-c.Q\LID[# =+vskWq,8,j ,d.2)cR=]u̩- kHu*h -CMvXeA vBLj!. , "$xU`<1H}K?D4|^`1[DEs=.ŶZ>7nڭr{tPcUihܪl*i%2yS͖=EĶ-ITɉ`fdR'XfQ� 2eeCcRè@]vXvPjB쌐-ae{R`. " 7BJ ԍ ( 2&XԠ@3%*ەCkB Tu\];"<;UNx6ZGSaԻBV:G%]f8DYԼ̲,/3"P̉a( KږYeB2/2+(& %k2IddL8-vAum#<{/[i3CvUk̭.$]5VC ry%gw-'HpRR Xu).{70YVRNudbGZzՖY^fV@j^D,fLXaF̠-Գd0YB0Y{R&P^f^LW,bTH˘TK`&Q1>ҸwGksZ!LQIw D+#ؚSMi\kTIɵÎM�ճFeUK}MY86 4dsXLŖ+dv3#`P[de`*RYe0SȵủyWuuДdY}\ʶ Tl_{T3{vFô҃eRYm]}+wF%+A;N%?l9EeDz̎c`Z1K֪7`zș) aY#A1}( *5mїdWo]Mmۥ[i ^#Su¸20KR"22Yg[Lzs*Bn.b( i#n\]|il<Ve|+Q,jqag6.K\m$.).-K!r謳t+�_:k8Z]PS:nF޿xGG췛=;+ 0~xda\~SYnڻ]n�%ihǧ#lp n{BJ eRymDnQ7\gn$1Oo7¡Wib9K7=ՠw]<*#M@6CBɲZHEEo** x5,06m0!~e* Y7VӅhb[Pl14\:I7Dņym1RKo^b#n]TX@G?iM!!aG$"}'}&?kʂN{"[*][-57Gj";V ;81eU!,ŗ{CSj4M̴y2l]ĽD w ³ְ׬_H^/ɎfXwU,&]t:=eq|qK&ReSJy{K4C";s-?h^jͳ,r` Qi'd<EDWB;^_g/&4UU {R;VIt:u©+RòmuujvKR~Ԡ] ԰I],BvQj%OL"7f~ʦi)U3[PM#mnEaM<6H6c1ފ4+e?evUi?w*u7 !"ZW?&Ṩ.vZ+ehm*Gn!.-ks;FT^Gj؁t.ɎI5 uGcRRkHKL[ãvB(,jP1zò13,)RcuE @<QR9b2$TJc[h_h8iO1I'ھ)*xBُZ0Z wBH[bCH1C2&^vZ0g<őjXZ g2,D șB(S<V+ԉѰ-fEaQdR2 vel*!>a.k$v-rnr\8a_iPFUԒ[<<*Kn&x9P&e`0J82, 25h6̖. fE,jD,E,YfPeVu#ԭ&2!d]WYYԲYL[\\,&닮WHHKw2e&K}'Kop7dR=6ڰWZ-xxW]WFerkk/QB: ̴.SIpܴTxddB*6dcM׬y1Ddl;p~!L~$Z9E-H#) 8DC*C`kS4i ei +sl].yHUIgz8'O[_,7g!H<Yu׍ce, m믐Y uVmD&O"ٗSz(ߐxi-믝VΊUO-3ȟM'/]} a͙Vwd^mxWQPȔU4o�YWp\KȩB(fUzW#B"7m NInHDE756/fnOe/2]"\BDE] _z.iqsoBmQCʬwRa凄fCx"i ͪ^dA+!W>^6BBm<ŘU6-y "E"&ɱ784">�MJڃK{// lړ#nbn�TJמE:'G~vn!%)A/hi*G!"( 9 w|r{|y3N~Q�/dȐrU)K2\2 ݝL> ;~o^n^t.<޷[+[]z>z Z,yKz·l*]b)/U:)jb#dD\+TIKeaa=|*�O & \+zBhxnk ]Ď/(7ӵoPڜ^/ ^ȌgYN&믋;eyLZ]~k Rz*na,3ho7]'AwC]kϖ^ab#¨tGhYlFDE+i=~Bwun?M% quKRnշ <C2˂;z,!czaP.u'jB¡2+RĚ(.)?2&Qq'I*eE$LV>RF }p)eKhǛ۔=F(^ͪF˘zd`K1U+f)d".e/)".bw^%]U 7 o/#wƪVvDr-+MíJos C/;dd+ɩ`J[@BLY tB„M3&8P!FS/"ݖ5&A г#ԅ dMti. $j4ڨ$jkQHUkEV 5A"-} A CÕjK1,]&cy6q~ԜGk? )dwGۓ4,EvH9GtybFF)#eAB\q EuJwHinb,]꒳Ţ.+S3Jcernc#̢+,YF(eF dL((,ru(&Cv9UbQ \+0Õn).#O۝t_jAZκ)B3W[W5SK{=} )|E'K5z+V;^ & &ebSY2=J�̳~Kș� 6eFȰLYfyiX90-*6ʲ"@s\(EkiHKzZ&`nUXmQ xnPCڗ\cG6J27yD>ҸǰMydC̡9#[iG\$<�Ɠ=UZlx*hjJ2]Gq;sڶ/ٕ22j8; N*�mK`[ȼV8<0Yb(̲xh}21ogW1 {L߉dYe^ +wQ+8�CDeL=}UxvXeS7kAV'򮕠uHm-ʗ45,{Nivw},D3[w.ωArvɈx~䑆, z¢J.r1U2GYQ믍T.kw~tLhx\^_ UX1ސc޷?:WwGHD#owZ^3cqI=cGH44Eeua}:օ:E$GvkF/%cuHDExD;ĨLE"ZZیp>u2Y!tQ+mYE/jYՙy!/)T1ݕFE%B((|, o(Cȟ^6ʽBmW%ԫ!게n/[%A[ 0Uq\7 r^+~Oiu-Q kd˛'7�l%.QOh'SsfxnB_a57 &xyAvSd>S,nub&So|̲XTŴ-\,|&)|Fw/ 6PjnͺD"D_[۪kwm2"seƮF~UPe_FQ[ekBQOguFw>c\]޽f<!!WK2<mF`+KW45={J)Uhb+IUTuVIrd.@!BCפdeo,+Ov묫q1դM JYD{쪽6Q[ieoͳD+Swğp3N+Gf%Ùs{s+#YI2S_Æ?1(LSzycR#I<ExT-r$\ujͨ0P'8.ʃLK]u'0(Z|6\z>de&$kuD<oBW`]Ctsf#$: ߮޼{a<;,]ڜ?�B1p_O'Wamd!uk@>< &2+ mZ0y{"7ۥ$`tDrm o4l( r5qjo,�dfaN] Rè@;'%(_k;,!(@였Іt.,QwE#53ئ¨QB"J)n[ cqo[ꨑ^ "7I)X6s%quµid"e!HحyZD^s-Bin"-7ɗ?hsK,Tp "9V߃lzB/(:/~N/{^ҿԙ\12jnځt,:qXtZ5(4Eu: ;]ć{*GYJ/7,^e2Y"*tV䃽QkL֭Ie\e6m!c!n>nY1\fii":(&WJ—w&+4RՖYkpi(U>9qZM姚ZQb<ȌL6Yg^YfD�K,+ B,.Y9U&E񝥱]T;pG r\+h0y\_q_ks+ѩ)GɑpzyxI}` Z[I1ݳ+RQ(T).Qac LԠ3uB,[8 eY$0YxYpx%믝7\@jF"șJf #Ֆ^f뛯 _Dn.W<>פ<]uog*c .dݢֺ%#*BDB+[0YjlQ+aZ^MX_Iq"w8kxIORn[t[F̓A07 uTeV 2dlԍ ]~B+#L�뮲`')L0פU6mD!y|8Kk�]hevqʪa5<2\ O~Ԏrei/{/# ҪmL7wKT#yA"YH-,EL]s*Z69ql;]|KTyJݦtF1]kT#l%qoe􋽫CyQoHJ,+N:&l11<V.b'n␷,z%(.I.lګQ3<\Ix,t(aQGxVIa HנN(r#C0{һU?*QGlúElȏ?!K]OyDxm}Mo5S1Hzۺ$x2|W 0^M ̢d) 0"ddhIVKa2 dde둢\`8A8WY޷v|;XHHm+Hxn۫)|VFEhd'i"%tnܬU&\B=nųG]mZ/g7/،u1m"yrr]޿ܖ-Yfu5]mDju5F}(\}/uLS_ k]:`FRկ׬52QV#jq#ԫpe\)&3}@;zKiМinQPm$.Ѣxh�oڻf+LӜ_.H-H) .\UE,\"J&}%8rDٻzK?HB=v]}Nս ,Y?@#/8&P,Buפۮ_OfF&?Yy2޽/B,8sog!B1{$R A"-:Gr,쭷AcjC4yu ѢKuj}(s&SwQʹi.Vm#s ˙DEqwfJYo>r;bQ1 ܦwI]KӦkJI6cJFp޽%]i\Yotpl^MzTȘaV=҉`KɈ]/"ɐje @ vMv@B S#:i2LjXtdh$M%ΡZFV1A[; )3r4|K4<%įk8ic^ h(wzU3<O#",GJTP `",ߙR5uB>/|.^ʸ+H1g.$eM t'SJ >E$p!1xw^M:v,.xGx:òs,"ue$,( .Z8z4D;)jt~2ʫ*0w2۵, u>:$rd)$ˢb[%H@cyFd]meVwJTGU[Q;J wQJ2!@)'tLINΡd[Refh)/_ Ҿh֢IJƋ2MoeVc싚 "1\>#d Hy\jHwHe Be:4Rmm.i<J|Z[/aEbQƄP1[ -GS k ӓAEuBQuHd洈KlJl-|Jϲ]}QK'%$ l{/^eEO/2xlX" lbEBS@RQtæ3<p\ +LKb?8Zӂ?]Ip~ĦDuDY4'Qp.Qc[tZ6>qa uQ GL< 2O~ni0_[Ij~&_ ![eI$ ;WE$|\_x_*n(‰z|f\(\ibX7qqeq8WA=+*LoHhrr$آNx9j:I2x}/BGZ5ҼI`:##�e@BCv7( W3_>I_2H>Y~R-I~�FU3|-tC `rgzbHjm"c#yt?^_S.^˄<[E%�%^{?TUO/nb5Wx7ZurnTzMR{Ғr^&TǨlʌrof%\${d]BY6B'D[jFd]hYnѦzYՇ5P3rڼ/ep?{VNyl;ME` $l[,^f^P<*ï:'BE-p +iN*f([hcodSb\ϱ-)m+nKn,<Cok7^uԍOʹS0jӂKVE\ qM>W_YM%4B_e`۽F)ED4H6RUK-bmr ۥÔV0bHv[ڵZ=E[JBlxg0,-I;Vy,3UL,KF(]xI AyW�TNmQE \6zINDCy1Q } kfxHyt >'f˽ry_ĸTQL2 z\%w߃S�p̈́h%I 3봟ϫ2M0 ً7{)4p".2T7'IM9p }_aǮIB^7*F| &믍tB̯`S÷FYS d޺%U宻2K8D9"i?-YK`^B0B1hF"O<k75o0]rUs][2SF0XBu]|5}},=u3P;&8uHnȒd^ϢoW_bPHr';!&PbxB=4{zqPm$L$9y{X^u']eWZ#S [PhSw 0F"#TQ:W}b(DmVxbWS qr;k­m5NOL]RR]q [ҌPDHGwi0 v5lvqѼ&(uRfD1&BmTԎLS@U`Dcoȡbݖe@8vL$*Z5#$tLB$Jv!d&D3&ayH]MU2-=9JVp|c&VCېcfyT6Gb8ŻzI)f DeGjE/cX!",;C4._ [X*zB"݌yG|:ɫvmw93kgXfv>ROdyUӲ7B켳{Z,:7BhBHݖ,0D̲,,2ʴQL *3#XYP�D6eMF@\6Qcl2 jLѪ4^Q̠̓N;Ѯ̳jJ:>59TVΚ2ތTipH z1Bcר(.t tVSh`uteOɥjDhCY]�u]>7B]4R,jVӏ ezvBY3Z!!IfѺ׵1,Sp;u>zĕrδE|4H˘dcV|(,0k"�ܰį :#Y+? ei�lJZ˺>ȱ,^ԕvje<=<YlKωKBP5"bSsCؙh^!*{J-,jWsysK24QpESeiaӖShd#4E×/`?Ȯ"ArxWrq 6;iF2.\kJ> a`n$eB[Y6׿fbyI[F +Pl;Vdi׵M৚^V4 $jgl]::y v9 %&q~I[#ScxwE2o迮}6W&<--}GsuE�+cIoph$弭(t XKUMrC5uJ+l^%cGGim>L#>kVR(Ԏ)>"Xv1޾/kx bb>[$Vܶ }-ZqInB",EZjcdz%<L*<m�/{9jW|٭rTmf+wnf͜eٷ+XI `L􂗀 #eeD@Tsecx7).RhuP[4M �{"MgmG e頶?|Kn"!+<v+91q죘{ÉsS"d)b"MpsSLuPOhmYKw.[Q+zKN"z*ݰҴn%!v*V"}.-ʫGh>YÇIvRDAHrnlm<?:5 8Mc .ͽ%a:Adn͔HƘHmZU!t~nWm {{5l;))Ë wVS-W8TZK-seKok.̰at@,P;FD*772q}A&Y}췄W#: 27H0AR|SGF; 9wx$Զ!LbI6| evm^9G].ݟͳ^u/"5:VPoCp^/ܽj#^rk>Ï_gJ q"45=uewEFřuXԇ1_X:(cdW91Ӷ;|Omr7bYDܬHPqBBL5R\[ĉSmeځ/F⫨*՛rNmg\E;t(Y'؆޲dB.9Tn]3u�/I>k p9hQSV5*a'ȗIs$mPt9x#8%L˼aO :7.d.kG`4pF6E̙$DVb8q V*Gs '/c 4eזB<Pf""7{[C_UKY58V{]~)$[Jx~ʍXAmsD廄u*cDrKsEEJ1좷sX.}d$ȀK<zL,,IqBĻ!ԘL]XFR$- &PgP53<֨N!e̤QI<17&BccZ̍'H6ꭑymup#EZ%s~bW"̌c/U3R%ڇ.BP;&]P1FRI#p dVi&'/- CZ3Քo<Qyd{ܢ\q02A}"[-0芋f,&i;<]Փ|BݖvLYy]5(X.ò!kݐe~5̬ì++&Sa22ȖQ3(PL,ș&DE-gD,eidBS%HY;"XLfP^1r1G* ZLoB)g@[ЊfFE%u'RC鷶cꭑ2(__?}a2Z˴53ZvTP[Wg],g1yAQEyB q ,GNM$Hyd"o\5f!Hm| h6̊xCjs㳃�>/�Io9 ZFuo[>tK?b]!T_ >Iؿ6�I6/~Inzdbg/]eV/�be$E!zĺ]q#aV/MGJ0?[9-Յ0z_ _E>Q)acVo+EkcIB=ԏ L?+=Eo]~Fy޶]/̇=Usӌ 1*Ⅳ4OQ>%d QLQ%hGRI lnaToxE Ry2+{̔,bWtK;{= 0xrԝ4Q vrM>\CʻO0]0�noH rE7rFV1yGPKc ].;zU[jF17]O_S&E?_Y&YYW*ڞ,Nƒ U<\]ś-ǼK4UDNu/3uQ[]eThlso,]q, y=f.[iqei)rnJX?Ep[�Eʼ$ý!5C7JOW;)iM*2)qz#~ yDT җ|JW̹e+&D"i0G<Ϻ酺�]wdnQ G[TCpݴ֊닄F鮓zeW Zb!"-޵S{BXf:h1Im [fZ?<SGIMIx"K-)Mu$9 <e%VM}.{[5_2cv]io+oxHK|Q+Q81k-x+H%wyLi)p#}GOPr8#|MLc-,G͘yW( ږQ>-o:Ϸӫ2i% A1nο@r9hɇO9Ml C:ZΒᴑԌtgSM`$)!*UT#'>8Ǟs]BXgW4roD/PjTѦ2RY/#qKրad"@ׅaי d޹)d -J2- JM#(>r q[$]M>>N99HnVZ2sz@"$wب#wxH.!..M8Ө{}6;u#p"yآ*_�T.*ȂMqQ*%>$[`^O6U4!ִGjxWBUF1=J)/%<[ʪz=vS\y"9V6\`gOi+>ekluSi&R2U#eUa[sV}u']L|}Fڑ…;RƾjؒԷ(bR)B􇬩,=un8. ""EP3\q%1F6[WԌBDEj-FVHVݖFmo,8JJNfK<Ϋren5h{*J.QI UqnݔVyϜ#an)H;۽<bou/G;{>xY[8O z=:L6{]J6NԀLBeXyl#u׉=)'yšH b,1: $ՙ Q5�y7KgJG4VIJA!ߩ*(>S|'p<:a\z8ۮ.UWB#+E""V߄+o;߰crtyyTV5H-jMvBJ ZbY6qHbG$�]k f*LJ؄Bav1.JQ"9DrUU _l]tPjZ`&j@jNhXvYuE]7BJBS:{SU4[21PSF9Yeh<,a2Kȵ( #fXdLdh0ɂE2Ԍz#P & &23̚"1M82;ȅQ3++ rcu^s&F(fʤ _jM"{NˠZV31yNWJ2p ƆrA?W]A4gb,)={cQ !zCyW;(i};Wm\Nt>)am~>=>�۷g<?B~FD$BHivyz&2O':neQ3u|Lܼٺ( bD"!La`ݔLȵ"P,fEyf1D㼡IL{2|c<#+MĊa!E*nX] 4wo #ۮmЩ,F|mz;G<Wf!T:SQ$$$g^75�/IlXYd,¾ˆՑla!g-$^Y5:Wef{N%ƨ2Kid͙%<7{YtL7wʿFMkգ8abxf8r&#` & oo2p^5dl^9r}\IqeņBgV"/gL $̸vRU$# I e_cN@2!1^aUt{U+6C#,,jB�m̖۫Nrs[J8 8->) IѴE\P%شS yKɏ9<cFJ9-]D͜w{+jWK5fSuq2Crr66q(_١)i I[U:*^$vGs5:D֖U.Uh>w(* /&1\ITlsR5}"l*5̷xRklRܥg|aR~su̪j+!.]aӉpN&:GOWSiG-FY\^3\D&)f $-,[:4/TCkJURy5ՎoG7y*q7 ^Yԅ,i^fY԰e^Dx&QTlaQ_E +v!4<Ay}lyZ$céev{k[4:b =,B2gtYu|]kk.<Ś2"Mp-'1u ![ZQH_2J?0o7]2v"믑e]67[goąuuXRNt[ȧ*c2nBu[Z=uo*I=]uէũn8:UByG,` &>ԩ2G& b92ehGQn!́kXeFpA{\cNDXbՊYH1!"(Nj{de$uZҌT@m{̧i(1]S1C*MGWAK5Us/Z "9YG<DwreV=CB-}_g'[ڗjk9i:%[zo[Zʆ$Gt)nz]ZoJy8Ǯ̗qzX &@L\޼iNu* ~ddJҢ$,Jצ2"[KR[#̇KEBsz&^tшb"1x",)\\W,2-VCwwQBwhJYUY sY2''-!ԡhY2 mEʦHB"D[ƓbyycY=ӦK䯭)d)$+{褀YDy`ݡxEd/yrg^P[`X`B#!v̧&;!v[v9< a2 j.a@:L&AALԨ$ th]!:&ĕ}*/Erulf*g(iV1 eTCeT.>VEC*ΩyIMPK1%\ fY2-J <W#DA2&V^LEjȺ1~ , 5 l&D ȅ]nS CoMzPO ` MK1o7YFT,=~$b?W~CF ׭פu&kיDFy>bHȄő̦�t#KQ&mYHp_?RW]/BtJg+{_eR&rP:c(D6ɽtU@V%}'  -gKB9ĈGpiLFqcE._8-46d4Ǻ,mP~%lȌf92ͫ,* ~ f^aF "L@+,u�U,DF̎ Id{z* yle%eeEU[%$,̳߫N+96T7%ǔHSZV_in% he.W&dq� #?,9_u}/\P|+*xn(A6A$&DwT^g|XRn۰vwLT UmV$EDZʣoGQ0ld̷<+#NwjY!!ďR90SSES�*AnˈeEo) !w2ooYxZ%>Eȴ+*id�CB6?AjIznv?k "Σ#&@/bl3"¼ĠƵ*?>҅IK|LNm8Gwxߥk#tD%4pI�.?>qo�7zf!C~Jp?2m<-RIfAPmfXeKĤ c%j_Mt(߳Iu>)Z/7YsulZDuol֍wѽ)J2")ɉ%UhHG%c["?U;0G3KAVV.1tW$ʆ |,Up!~8c/U_-By8A&I޻ʺjQREIŕn[Vnnb[µR<j:Vk;!ud&^%NX0+ wqۇR#'=и4B/芚ݛfDV/p+VZSk,ߞ<۾M•wqzYo͛*كLMw&uYR*`, Էe".qo\ۿ*X_FmƢ([쬷]njB/%{(^u~:I*KjMa% ʁ2ب*ְnע/ ^ZBK7_i-W'#9tmF1I^2czGW}ќcs}^[DnRZnc_BVZsn<p*|f3\1GK>4r˱"/Wu蝯/&?<wwElz#V]:N-]@DG2\!Yj?V"vch^6믗ƤaܞpHršTߛ7\Rb͒=/Pb]_6A(rqx]fK&N6}T[8,t_G6Q7*6]GuF9ḓ])Z]|kh�I\ʔ[eТ>5 1e̷"!+G(ڨe]-w0q[eY. Yc]q '") %DEqu5uȖ6CG\%dQԘlSLuQ@E2=nȷSx*-ӌ_�v i;12*:RA<!Z# ,nLZ8_?F0t͚vҺ # cuDYI%mG#Uė]dFQnѺetI&BGaBdm' ,̬cB*J5{EV2*S-yfu$lx`;]$ZpWrz+叛#HJPph0L2(4FVs5:\tZ2%MQAٖVY`dB̍R(ίe "%|cR0Plߗ[NP<$bYo~Pce5RzSźs2·GK%]nP0a=u 1_66X4]Amԙ ]$r:>鍶9[7.Lq6[º3(bĕd8<?LtR:m5Ki$-K꾖9I=W C/*]vxc[b| C+]+љ)-zT_i3MgfD,(FddD/qǻjFu(WL2+zW5L(3*rQT][^[INHڞ]qE 7\>Q5p}oYq)Y!\cB=X`v9V!8K2GsHJgVi8ڴn[5QG ô)۽! +I}Q <+=?ѭhSv9ǃh*FعDB$YIt  ZDei Ѭd!K%შIf&Ӎk}[`-]#XK{b1Wj[,k?+nñ8,ѱ}!,{ %| Z=~aqHv;p[W%JERI<>Wro8. -JLizif+|CJB_C8, u2\{jWB[],W-]&줃O@1u Pα*] Cڻ+`-iKzRHc[R͕t!ErK$g>9? lR<)Α l;$DdMJDn"."oA�<k nAidM$Z=;�J-)mhSF9#!sH:vg%\{XIჶ, TG;Lpȋv/V}ܩXGnRJ\ *LH TV''ʢ2į* lQUQ2,6n8|Z9-6oFu/:ΥALED5n vHxHh9Ee2neTQCMPS ;A o:W`OLHFAݐnVPGɎFY!,ý.֗pq歆ɴG6I0RzPĠ(@g](xx\H}!Ļ]F!a<v^!ٺ^5?w]wU:^fMԅ۵^5y-Ke{]޿z7ou+rۦhn1Ru�*=5wcMoY\gcfZCwmvbTwfl2\<.эJV CzܽtHHgi (d3rFx"xtCGHi&b/7,hLV˧tCu&1;Th *kCzx>G$ -BP b[D?H6IN=s!ddt~_Pi 4m!⟄lc ~C˄UhrE4"CIĄyVߢ% 'k]b\6PڟPKUGh7EL7yA*+2TN.+rN?Փ4HeG \cʁRc8] 1KԘLNJ wE5fSS]QQJI ьn+Er*Bǖ?N$e2'/uK%hڷ>قef o Y-߫Ψ'ɶ|vړ슘y`k5H %԰ d1R'XP1fnɤBK.DʈJuebQF̅1OA\Q[/<w+VU5&2ldZرVx~ CH3}؆Aw{* GnUF wJ9.!VUH˘5 X]\7$C5zߤf̉P$Z18dSa]YHPy0'MoK/_y<<9nOiB`fXvGj9a�}G׳6Z\ aNnXeVC@ p~^LFɌ^ 07&F0ٓD:u�` ɠ\HEY+87 æ!K+n.ӄb12FBW/lz)I ^O$YVWvϻx ٗ ( i%]G2Qb"qQ$MC2[QenRR[n:avM-2E.!>h�{Y=dB,Rj vIUmR ھ=D$GgG,\e} >z,ugnڰ;,&,0X=13!!.D=rȑ8I3{HFgm~5$%]*y.[IerW㳖nZDV(W7ҽ!f)򌳺2lьx+KTqADJϥw\6x2_h:Q^/f|z;lԣ jկ:6%ƆQEz8Q<+Y"/'wtywISi!'9;<zս<,aCnlݛF.er#w%ȦBfK\RIFՙIԭDRd,p]U0.kK|˒Cw2:;iSG̴Pq}O256U0S!nk< Z]s(rB5B,B.MK&_Ո=niM dyHJD"_En]̕9J\VUz.IB7]J!iệtK3"|&oj}~=K[-vm[:tHjyV̓7Z2m.e_SK{K.n'ڹ7tzJ=Q\"HTMN{&GUW?kuS5TAv j|#&BևR22iF5ևRȲ պV #H[W%ي)ozJEn1Awa2,#$V^ z~v = W\3n:!Z8Hi;/Oko0[?0w8B1k蒜zRHP[PƈI]:CgLT-H!KuXt$)Iʄ'}؂@NI.rj݌?͖ߧRĭPQC5O\]7ʶ8'_N&Ui/?̍e{j]pLBJs{{7]x֗c%q {"k9"Ky+Dtl-qbW #dn"v<cr3ke$6c!Tdy.nO,KO>ԗYdgd.)j dRȬDfz$'{?JS7Y\=9e_%VW^T :JWHЭ"&7i,;kӯkZ#'9 ӎxn԰(#"6aܢ*ҘTXG21Z\J4IKgQU~;KS%D#w{WumUh|ܱ'qf,ݤ_&VrE6xj?e-[$"uƔC7%PǏP?YIRyB߻wM1sCI^bu 7=uȱzbMMڰii#D7u+Φa>,\1#DfGt}>^alGYs:zQ *A 18߼ErNYX&[pp]5 6VXK$K$,- 2$bCu ] (ZK(4áwKuY6]2&eDYIMfF, 4L %IFl+_ukZ3eU:^6ƔdT8֌ fɗR0hEG(܉K=vIrG3HY]FQZ3Ž,u[YA+dI &eG7W\ȈPF\Mf"GĄY5BԋWYWKF,�CaɌl7eXH`uz(z `AmŸ FΉr) Ԍ n +.Lƚ Y4Gu`P(%} k z8E4H.[d}#=K S0 iq%R. Քc \LtXJs}aWz##lO�;K4d:nY xJ"Ndt'x!w/G$i229KbiUIỦ t4,}=uB}ʘ襣\#6U Wޛj&Dx[7YT-Ǯyf"Iru±//V7.uc7 ]}^kմ(LI n|J/ivݗhu1ei/(X!_2g9rk(ϖ_hִc(D/2:5טּ%L%ZJFӂAݔ@ z�.yhDn[w}~.U<29޿uj~i ? 8ҸAI+}-Z?2mH&M@K:çNV`Hfɕ#|2>s ?ۻ];ՂQFVhH}^E6r}J-"qo(IKm[<͉s' 1]E$1m,>DoCis ގHIG d3MgޣD$͛ΣO7yrWO(9DUMu6~Z:z9`;wrT"6W0UrB$` "&@0!gu"e BBٺ1T5!q]į&,],6RBԄ2VKdJ3f- 72r&jP 8QAD]$ⴆmme"/8E.SmL&%jcZ=8y[|7jWH8ts G̑$W@2kq-DY ;k-dUnJ^F vm=F_H?\zS`9wmqgIJRG6ےzRdMpcBsuי$ۯguJ1J C"86Rx7_u`j6pT1IuoҥhjRuC-Y �$bgb\VHzu2„Y=uי"cYī1\+G1K[jHTcXZ9'M"wTrG.a]\6ukR[K'YW>M)nY֨\%Ȣy=FU>LԚ[ȚHQ?i/( 2,fIubmPP9Z#*!dE='c}شsE;d{VI6j?2 b;DD!VN?E�,ܽ1nI޴nʡU+9~JtܭEjg#++; vVѢ)˯Y(ē%ujs^uo/^u rQxSI߮腡d/^&us|Wh,J1uK_?qD^RAqG/xΆRڲ>Q55=62_!{ZE9 YhUsycRfXsgn*5C%G([eP<BVd $iD2â/̅S$@ABIL I"2d-JFDuY XQKdёo(M0ԩ0%+mW4x-8GƩ<`wE^LkeP!^dLdqm]o( IY "&FvA.̈԰(ۮd{R}4GI-1L ktNm0ҎQ2\T[w[`԰R0:f5O$֐\ю>kWDѽ-q"<^LwnE{e�'Ύ%JM=O+z"\u#p~Jtڸ> ؟ E2K~nu4Ja 믉67L,##o-L^4-k &Gub)8di(A0D Md",[2,=Նd`ȅI"׬ a&3!/^4e�fL fH[Nd%p!]CrSw5˟kE.&zIKзpW-kJp匇-˚覜49G̺3L#$d6ӇGN_28^`A!o[qz9V-Kim�r<o \9-mBKDce�2C]|h:KٺęQQTL"Bنe@t]xЕ<c_LaKpUx!ʆ6_{N8{Di%EO%fR�z~Ȧ2d 8* 1m!W")ц급rqyG(M!WB4[o#AmCF,n|mQ=vzHW7x6 L[oYT]09CM\1eF)Y7Q]ZDD1mV;i8Km( B6<7~FY9VGk(г#Q fdmTi*'r ĶS/''/_W$K6\v3ϫU3]ײ&%ulq+so-:6 fRlsMP)Ⱦ�yA00]Û*呕 o[{Wnuc-V^U[U΂lۤHWY$KT Qժ/$:Uus'U*jέ5$1YH$6±jWz5,ҞY1<N,y̋fL$14Hb:^#*`$E3H1{EFr.tu{X*DJI*ƊK^'I<%x^[)Z_Fxoυ[9q,�+r cê=y6@MvOSe^bXcq 5UCD;(* tʈlr/!VWnm.oIQ^$nK(ٖ|D<{E1!Ḫ5֗Cǫ_!"!KBHr}/:] [ܶr}߽l~&z)ǯi]bTVrs*n_ J BcRq$m@]R+nduƣ/J3F° G2~d.. u謴J[Rks)&_KK8,"6nĴ<GY6qܪΖ3!Z9~\Wb%/GnT{1̯]E*y_6T`o" ,4߯K@ ye^0嬻uYi24jټ 7eC+2QyKts4EhGe!Z#-GQŘU7iHʬGJRU`Dqj}((3BY9vsk<!̴J�W'=﬩s}i su!]!\JC]DoU@ě ~$J&Pd_/_*Y]|^td={JO$s$)y*E I &J&ܤu%J]eBDA7]|IݒQ%F8",#9pV.+$9f-$.~u%,4t]iUR b;ED[<-籐BRH1$DEh*z7 $RM'4f*/}0mK<Rz_n'ץi ,oÏKt뵕1ۮ>D MvP$@I`:Fe-MKH7HQQ䜻H襐ˑRrPG!Q[EI("rU^ u&hIW2hz([̥TG*HxG/ i'/JHᷲ |Fk5RH1s+ȷ8\M2sòRYѲԴsg+v99{$C nB `b$#@P2LDN̋"dZġ3" "[cuȀz]52onZҹ"Epyj≔Y,xSAzQ!ݻ5Dѕ]-F4HZ*c;d4f)63"\BJzA!I^"̰]W/ l\,Tg]I4")!K1 "UaǣmwzV&"ZBCe2W)Pd쥃3+Fps&p:$`8Y0~�MD\E'dB 0[HEEPK(S,SDT)tgR'{G ]M ʺK]UwY}PHC(,KLYK/޲n-徭pyGJJxo of~eb" ]1/>! eS`nDzM&ˆbjƣ[jo$owKʫF_T/n^~$n/i,pu²3J=F‹WF{uZn+uTex-<$Veg$JۦyᏥ>1�̬ܾϨ _:XS@#}Jq(d!prΦpHNP{]`gQ\LW'$KöFCw0wu+xg%cjڱ#+!E$`Ũ~3=ӽFE{my8}aynQHrRǶ"l!_Vf2LU$ɱ[+Cy S(\.%h\6T%t~ʁMuneZOe${[#ĩ+V`!yhSQӃ=€F뇮](ؼv�ӎ&=uޒlZ~(z|QV T'PIo"aXƢQnD71(�ۙWV:| ",H!YfYԡ0lΰ ڑ]K,Rs$̷uxIm]HKQk7DG/#r]VRV \k#rVSv|~/Rퟢ&G+"n m"+TMtj}L7�b0 qKWM&&9䷖2Qk3H*Ը)j׹SF])QDRSS)ᤔGPb8lLF/iFxp0+]|_݆J;|K(˃6pq:9q\DiA#mފ:EOM㒨t~s$Jl%2n >hwyźL ʼfRuy`")F=d;69o)%Ȉڗ]iiS',h&g.J ylz?oYVۺXDk#_tduJ1d}t5IdboU-)'$Y$Wd2{aZl%PB#, quG9tk4B]naq] ժ֎[mZaru_E3pGacǔS)wY,<S){bl~ץ2"򙑐6Q#vJ>9,$z' vP4%u짓 &BL}q%eA%)u(@",PԄ;z˚xHMGH?[<ܑla/3Z_mO332-x:>~y~�Ha]*4 ?�p|:J4#!v[] ã m?Xiշ/>a@0ǯIg_k8j8[".Ԁ۴1v&KJ<>,J`GDTeE^a'$TҢ#Z3"mU <mݕQh@;1K'd1Nhc/-ulQXGz+YŤw(:,ekXݶWc$[yLEVr)ޡr5aP-FL�%aњu#F흰{!pS%9=.%bMŝB6Gnc-+Fݝ^OenKd%{px0Y dE:A3# fV\n̄S5uE lQ#a "kW^u#v7t,fF,o)KM_2}|D6WD}>{q.d"+gOF)I2z1m!\ eh-Ftg%90Y1, [c.ssA4y]ĢnA%"HK(.Myџ4R" DDK{hlyzW6FTF]zI* y> *ԊO%&lb&9|i?e*4y2dm 7]~dBYzc$jiݏ:OUQrUUE"=rie7_i05ɞLciʢ̋"Q"믗ԉb!c:Fs5իXlu"H铩_/Q%>Q0YbGd`K:dIwYpDs&ʯ#(q+S>ULw믕[>^eX2uTL'0F "9rk&D:ĤSPHz7)=nwFc/|r%wg^In=DqY0 E f<ͭ͛({t:5X5!IWTҍ7){a/4w936km|kӋJ#L +djK{H2v ϯ\mkXrvg�tѬ?ð.F|jmDZb2L(̸ͥ)-\$CaͰ;u]W]L8*d{FX{AKgpSuMB{3'U gY}.,&Yu|.0Z0-_u2`"y9ѹ-t\>A!V8OTpܫ'̶(&Zt!kFQW-ٮWwnZ=KJ96v:&ua4IV##xB5=2Qʊ&ʉ [3"%e)*ɝUk+# Ȳ#vW`V ח cqv},CqwSG|dn+dMu[AZ-5ͯWW!'$*4 /w{|J;two\C0k6ў0KjjqGѦd+#ta54S"EGi1l.vx|M%VVm3BE� ꡷~So7_OMgҐliyZ% JWo][;(_Çy?ij8fE<E։f|w|pѭ Bݞky[0.ҍSBPH3Fݺ̗+Ͽo}6|Ve6c# Ķ{ '8HnGYxzxsNݷꏫe} AҝJK{VY}%F{7crszK1WxQCoU&+Zg6ڥ\Ȧ?(J1UX 1 s+e[{@JU>pW(E![bCpI%hY<rz}4׾�b s%&/*0c"N0cÛ+3 r1=Cw_^GU]~d(_'9"R$)F}[ )]U("^Z6ֲ"GJ./ʙ#&V#| =zW&G^do^Z`A#g'YTis~d4ng&՜X3 ZP uz)~eݮWMr!Һe8 &VgDSd$Di tn}d!H_u-ۮ<%(1 >I$Ae,ۯYV_b1A$9?Ĭ]~sb+F٤!o3%Y-ߣKJJΦm twc1(F%%x1ˋF}ȶ\D9JO6bK|Fg6=ᣂ}-/4cuÕ߇dqͶe z[K')wfޗIEZթQHO& 1]s+\ 1eS„wr>t5鈷GVXe)3uĭbGtT15D~Ҧ5%a1;Z9xVUUSQ4D)<ɛ%~1eVbH&T۷(k%Bԛ-3RWt.-HQP%rY2b9c2ql<+K00)UqG&kkRFsQ[/#6hxKeUn/IM%KvA% fˋ:RmĆ̚, NJ')]4|yV FW nykԑS* Ό{2`/GY`Y5- HȺ6ub{& r(Ŕ'Aƞ̖e$R!y &vz/ʭ.F#ms $,Nf\['F$&)w\N)sFBW7Cy9 +KKtFYi9kG㓅iytj J9{*J6>E2Dqr|5KrǼWBsB^꫔l[e<2`駀2iFYnX9E,K-^u ''$VV"I{ 7ҪC{-K7_PL�t zɀ=z* 2 #yF 6deY GGjȷ]$zD �)"P=uu,0Q 22LPhW„RYX9(jNu#"ʭ# ]Buꫬ f!w}whޏZ Eթ6ZH?ȁx {G|~D7<$b>:M zH#%[]f�|6adG5]5]}kRW;Aa[?3jO+jdٔ9AX+6;LAx2IV wZ\oM<\E �uynnoj5L7GΔ F HSb[J~S-o>zgkeq3ImFܿ5M2-)}ףPCe*#%;xϕīne+na-Q(fG0Sf[ٛᘼ]s\DF""6)w FC=PA$ L1B0#Ngk2]+Y gG\^uedxɅk.LjQr�!)lŽ9K&iIᬗZK("]ۇƦHDDCc&8n۸C<BH䴭iGi={ExYgԆi6*j٤?\#hhHv* *^ʉU 1Eńm V 4"z-ԸOhVI.C@�LqMEHRH,"7*/(wA` m,P,,Ed6ʟȮ"~!oE%$t_+儤HRCvСHct;kGH) ">!o?ï|[4e &&oERR }1KIt(Q<O_&H{$9z84_:JtB;<Je)2GhTfש.[U[bER>NBy9#! &Z�G›$s>Ma=ޙb?{O7(:3<�[x2im> ĚervkWQf-^cO*kvsZ*;IuH )62_F,ݭG2!Y슚ZiI_:x[MxP"bg\'wk7C?9h7g3숮WuC|lhzmWGKcZj}4m Ɔ!V\$Mwu5Y%$"\\iэۇ[GOV7DEtV�*zArȈzy8P 1^S\V(2 #~.dRH&Be+gr|u'V_Q"ơ9fPI.8,Iaۙ[ϤI\׵۾}Pn.dH /_訬p%Ǵ2lUo7 ^%d4cij<ozɖWg^O'ʦ<E_* 5̑bIN? *a,$PhS;&41noTxQ=‭qCmk\GRJ'Z&+YM E! qe"\gOB~e`WR19>^?˯cc"#ch�Pt;Fd#t[$oBeO${V)Qd$&h8ḅPRl}\I:QKI>a$$2FB6i .꽀 Õ61ۤUcO< GtVͅ? #n)*Ʈ+x].SV9$1̨*4G!%Xud[)?)ͺL vץ tn źLtZZB͒0к�!ue F]2t.ɎA")(Dtl2DU *[MrR{]օeM&lёy99ݥ@z9c(ʂpRC(9n}8@[93AGo΢ %1sB^'.ҬgY:mG^HD!!,B,cL[2aq�ei2!%RG;<Ln2X蕢΍=̏e�י4I?u4-4YB#œ#X2F2?U0=vS�ۮ3+@0N@ĬXb ʚ,\`�Mel_ԕGTQw2p)!fehaRBY%wJu ofҭc!\Ip=hr�hxZT<?<uꠑȷS"脆U/ӡ$P?k8]\bU/eV4)NsM.huP7Y$a 3&D(E@P@V:p* '~_dP؍c(^y Q$̏B0nLYq0@1f1N+Te$DyTZ*R_Kη)2w\9x[9ٲ=e[1Sc]_ܷ=1)죽v^%. ڥ.Mro%Acc;ݡ/djYƱk|y.x{𐣄VX�[S�i5IMW=M}j/[ƴ,o^bWG9$ZUQ;yZ8(J *qZ#:[^{j#(dDrQc#mLevV.b�vk�Mx rKx8>*wf-uqG $EX0Ð-ЖPaŤ6ɚrr*#,-nK<=bpKH%>#n 3mqLJ80 D}D%9/ ̛&1�6w+/WQXھObqSSY$rTD2F1?Ne&HW"ܱ[wc3u�4$BE1nDq]Q$"/K(~LNrLnSp2YDDq[}.o.q;Um}tGi)؜B6$9m.R.aPk˔FAOGɐY9EtӐü+hމ�C"DFҷ4v?6\g! pMsD"%ifI9ޭ;!Oī#FvJ29Hl";юІuJhm]œq1)/)C~E[7ClJ}0+:dXkrt2HV8 7IiRw/iV5ķhI3&Vjm]sAEyxW;B"Z,\4vK2S"uu9;  \\  je8Y.rk6Vod.-44E$%1n8j֦EmEL~l[0c%iI+)1==TDWUʴAHu-\^䐭xB]sfx/SnY=Q9Ej%nanKw{[x;2$]JIEKNv@ʏ&Wf iq-)i p _v)r svIdOEzF_ =?Vc1E'i2ۚH=gr{I~.;8JBe;(\;hoU U~g?F3=Hi.= k˗{\vx5^b{rs5WR*t2$#\1_F",̤ ]N�:l/wNh^}YJ2 CҭE~ڻE^ω%+bk:lD>WxQ]~eTbSXdI$K!J}e2QAHH޲E1H5$?eFoHRun9U\H BF" p2# !"HYU 77Y"e@{=(ۮrKwzʯh+zuPu^B޽TџQ7&Q{+gVjt.K(SU~Umȑ!vIwGܔ$DIXQhܲoeA=1L1I HDwq1ʲ{-y`".�s-^-sM%} ]Q|_`n?oK9wO xxS((+/ͯ+L#?5HۅYQKH7d��ʾqH"pxF2+fc-[_ÿ83O{acpVif>pVıIe.չCNGR1 enЎsb"WrZQ~[M+nTԒb!"L8zb'_DLտiX)&.nuL•#& $6, :2K&Dȅò=^T`[auE udN tzГ(Z`D ,!aU fߙleֵO #_9S C<<d_Wa~ҭp-FQ7FCz~%9@WhtG\UU4%iG %<$pܹ*JG0W:9IM'4Rht( h7%%Re%v dHR(jJI.їG&]3 xXdKi r̵BjG3ςx $2k"0_ܜu?zX>nV/ ƚ/״SGEʜڷzź_Jh+ SAuSoTV�A׬I,,Sy,,}e�SXFj<EJM[VKcj;^[3RnaQu0 LTW-o}*#!w�uVAU|ۘnZ#>OANtMZۆܻ|KZ9s+jJ%rzZͺιVXǛYwI0G'tYqdn_$]z?dNI`Z+(�bK̓򦀡o̘.Fc֦0YV@S,*�xE66K�ɠuPz6Mf0NfBP"ɑ]~B9SK/,%!Z+j seG�DCҷ/�u\(a7j~GE;~�F CwxѲ-K)3nė$xZ~6C?" NcE”r|C\6%Y[++}8A,G$p#�k/ݵש|kHgAīvt2R M,2 -_/9Kv!-ZN219&mI!Hsy?ϮImX5PkP+ �|)]O!mȈ%7 ~/7uO#}U6~Rld5I� K[{nqM"!Jݠ Gpk__3|i6W'gU5I}<hI0߆:SM_| K|bBUI$[bݎ Hz 1s/'7G<G(�b4P]mfh2Iz/vZ_^0{s[ 7 ctB=ǫ_ Z3]kuj?ݜo$"#;LF~Igf׬u]=4ƦXb&C!/<9x@F;ű!)$,шۼW;W?|mW)f""".b-H^uӦR~}9r |朡ĵU{X*bݓIK r iU)E[8[e;Dk *޴G*t X٭hX1aC,-S<r.,%±1HGtJtĩ H#w,Y I3HEqwgҔO#Ǖ*Gk㹂O-Rj }%&:{Je?!w{JѴ~$Eq̇R'<\!];,!`י̰HГ+]%L$B8~߭lFRd;B"Ax�/jcp|E/K E&V6fiR#-W^'d8cn6wxZwCZa|R@W]8u}/XnOM–bfYV na A $ʱNP.@;P2Z;jƱHGyUfUIWItG`4n_<,11�%HDQiM;9+mp>6iHU֍hqYox<psM�2-5}&ژw}m/7yo9aj*,]µi)bі9bŇٽUG(P eYW+ u+6(:_H?G7\ّ_F&6_·i %_82Ap_K-۪^nNB(uICQyPqY"~_̐l%Hg16S;uphf6ͩnKQ Lb۴]}ԹQqȇdd*eEB]vs%$>rbETz+ _UzIˤ*)-V*�xQ:w6HEqE=TXaƺ1$,kW/ KcL#0Ҙv~h-җFټ~{#H(|z>4\RC9rf-J{W]- ""B)$"") x܉$ :hHYn4f-orSmjB1 >}lϫoe{ީ:()p$WI!s|K&\;%?umK@5}(jT!٧b_amNj.וּE([ځWHkI2a7]TuVhtd쥒"t/__U.eD"͒ɺ;qq!vQ6K/]u�ݐHvJe--BQPY7@nk#4uDe&:.qdl$e8cU.5JZ`7FwTzkc%.UCY +ztyjiYhR [m CuLMIphPnsʻN*mdpRQS]d_Gn0<TG2�i˛o| ؎vюb,(yU)ElWG[HdЗ*Gܸ 4Hs#Go[؆ !]nY!B\<"$R' :2NfMgzʠET8U.UKNQ1%%g1d@ɑ^!,0dd FG6ȶ!ebDPU5�Fʠ%Uک*79 &sUS'{1eXGq<,{)*cZ VV5"QL+@5OUKi]jL%i+aUSGGOSdJu/T19򶢞ﺣWFP$Ynݵn9SHVvU, ~% -f�Ā'Fdh0d�)=u�&3&]e 1Ma Qo[#Ą( h $B<71)z+y![;z\#MJ s7 moX33 |kۓ6$�2ֵ|k#-̱9l/%acb滙i_g6d۸̙G.G/{!5+l>druj.ªʲHG"2 (vۭ/I9dC[]23R>?Zwdm)ҌrÚѺRI6`70f{u?Ak#"*m"lc{i%7/nqy韝uclbsc�<Wn/gj*G>Xd)آ!\? ڵ(蝺K=Tf`QRW3?.s� 1zKv0HTBB7m)a1㰣;/ROeUP6p q F({aorg*HtIEH3d55h0rqt-1(i0jqHQq0|ow|SÍ^<GEIu%mUnZկ=rgA\g,~[ϱi7=^#S[SWmL퀭;fU DVۛB<)&,ue{"5w7HI_zKjՎMW-4s YdkK๼U<It.)�DptR lJ.b{ˊ;fVU$#G։'nG;W_=0وxZyxkĜm bDL1K2ʗ3Y+M w̙RHXd�ER/""̤ q搆BՉ}b EqXDycH mC-ʇbr*ͅDFTOm yRǩ֟�_hl;r%Ie`رĆ mM,1lN"C$rG Iw7%' 8~%RSTT0%Е4tщG13FdЍ+)i4`8d YI&!vy[Xjjթv �G]1b-Aau7I�*Dm+lq;̙N:sUsIMB" 1D# ZVdzK_˭[p~RZH-f)�JH A!yȇf{˨v]n_& JpW)>8%)$(\P)(&G IʎcnZ$q t~tfK?,1,W:m+"-5H^kͫP枯"ģ_Bڴ[D+|q~~8W k9gY%g"5V1gIARP9B+-y "�dU6)A†{I$*ۋYaBC{eY rƏ[(vVذu[4KK_:i6Z7o UN&{!"!U;LWXZpxg^9;#˗\!.v̾ĩ6ΘhF>Lwxz륧>q  *!+t kɒu,HqBJHn=[)-*""ڀǯHTToAySˮUbH)z_JLVM4RG)%DW uH�/ "즬#RW'&{)|]BRTڑҫ]]kHwXemM|XėeRnEw[Br苫I lv\0GNeIK98,^^^4o't NC4iE�{KoqvNќ"J긩!ސ|,WưI3<!6Z)R7SS�;o|N3uA4M�vq1]N>o]\6sU{̾ &I/_J'F,KucSMPг$JLڶQcZylkP#/u{4K~TfD̖]z]dSo U%u׏!&@4t범M*rQi%+,ŤIVa3RHAQCˇt; I�lYAr@Hd&u"'Jy "FΠɀ۽}TLT `虺XIir/Si+$4d]u6'K1A %m<B]+ ~;:b56PܶFzInXc+EÁ[h?>R5t[ 2aeiuM SB<%Yȴu,ظ>lZ09`xKp} NWZx]XIlF^<y9֞ %Pp 06餸-^P%8=Kum*FE/p]2V]ͩ!8?vڙ[.S[ъ(t}_U,J';JyVS�%OWǻL0_Lf.=Jc% 4Yk`]]b22J/ʺ&U1^Uw<:$u ,J+hd!_1Oײ,[0w`S}%LuLBfXdeE&MUIou"2ȶ)cUt}Z) u|1Uw].ʳU(} E/_H=n|j\L0YIܕ^x]jTg`ۯʞ "eucP#ifP(ACHD[讋:6A"ьs)Z[ZXoxGBx~1kY9y"q\0kx:u֤e+cm\ݑMba!͚{"<*DDDm-TT`*S�(<=̤JCmNUUS.2b>dEE_Oi+e0rծ8<t~]JJtnW8\XXZ2qDG|فbٖ[BC)F#!%EDkja+y^)jot;2-FIٲꢞr95r;qOW5gHP2X1| m9$eN M}#(+d-÷'a&;ǭq |fŇ䨥%i8&i4I 8+m1"j�1+r�A~tF)2G16Ip*)&̣:NpQXKx@EDGyBb2] eX'^X1H/VW$^r k]d0_*KTtnGILAZepKnmXwDSD!IY"o2fL˺HbK͕. )ǐ�./IvKMLBJ\WJ;xEXx>^nЩRd$}g=!* ?mSL_)X{yڙ~_8F4$X>%iF"G#1.) AV.4s)+LnC[;xId{ϟˇ%qrń2/%#W_V(RQ KcmXSGHU.1zXf?ծ (9U‹X} ҂)6p]$C$',^_%w/x!�AIjئ9YRE%]m]I]wADP PW$Ol#<mw^.6":?K*2iwv5sWYev@^T@�If<R15-m Gdp/ X^= S͘/![̭HǨWkslԖnLHΒ#!fR b% 2 B-_g!+x}ea5yK)k<5q}Y�\kt{wyl:9 J̠ըARIA�!JN6,>ΞG&4mvc!Sü;ʮi'\lrYz+mB> xxʱ -Z<9{k{ξIs ;}DSF=컽|ĶOzu[b%n/]ne : (I!뮳%*^TLIg^dAY7DzSR5hLY,.įq_ǻyP;)RSS%Wށ;RYRݷ<E.AXP HVcq}U@tf<"=|k`kk.0m)57fV#:3e`uacIAy"+~|G\k'dK({~KG)gJS^9e_.&K0/g"&ܵ>*ҙJ$L7K.*(IיP mԴN PFcdvUZ?*HnYdrS]H 5u >b,ѡd% $.кQu΂DozJ=IP(]̦`*ʫj*GCm'H(U)%R\&9Q= B\r>GD 9N0lTahE­yS2h/!B czH܆(& (� ";F `U bܩzJE'MtB6sv90UI&®pU/ egBA ķ9twwdx6W8ԳJ,U55>S}<"ݨ_FH "H!šQtv)kd�ͻB`iQh2}.%yE_JR99e?u.XrlVxH&J;۽u)~&QF[ª4z2XҸ2.!5k2<YT^zjtPK`Q9e P믝o*ZyZNz}? pQR䏬޻nYuL"fHurN h `7INF){Hbn@%,<3 ɱS#ogyP elbG zʼZ޺uY \t|"[hy.Z԰JMe_I!:16e&6U"]u+K8A8Y>&@�0|0!޹F&0p"͛uumAee蝡00yYDvn ˝~<#}4}?s�(<F"37±5Q[T1%@Ym%8?W6v~O:dՍ>Խ^&+e|/hEbs6QֿY9H]_LڻBUM%Bp:otS$jhK.X'̶.:88vK_6 ծiNT9kkoGt�B_-O_)� G/,ZL\>`uj)-D^P">y>kkM(&@U;O>/9>ADbc&HE]\ 4HFm,�v8nUpD7q%hۛ4eMo8"2Cy%g-6OiyJa*.- 4I`Ĥ1w)Oeo;$U�%=4qً[A<"EkH>8 kk$cAS\DRkm!]%ŇmIGW_!]yݷ-XiE G  nI51֫qH˔[ZCqUMh7it9em8FEPoױ')D8Ⅎжc-YF"iSq[_R+&"ܢ66K m9I\ڗ#>13(únLkc$'d{Q "%Y &U@/,DLYf.T W `�r+ e Y9!aYMPn*yVGgqZ#!ieGCԤSAw?@e"eofѴm҆a""YYAB2EhTG4{2 b)mJ`.&BW [|P%Gc@3ݼII HHHx!Qx` gD.Z tKD"Hҷ{7*.a+V4Tr}Z)O [RB%pla-Nƨt[e=m$2&BUfRܣu>;YhնV<+ gy)=SV[m_5v'g% 2-iNQ}<xj;cnZaժ9YYD)[aq+"Hf HX%)c+ xPlX5X"`C0 qt>xtt,SS8[i C]xVN>m? iZ2=O~RZ-BBV�ڍe/b4OA֫±s�YpI$*,î-gxѣu1/V/Hcިyx~l[˿ 躧CWnU8|CʯҜ]oLlYD o!+͗usF;m쾟!eDЎ\Qܻul?e(+lJU>s";uYݾ_I$e 92I2b#}Pj"ʔc_J%۴"9]|)Z=[^ԡIԝ[.* Dr!ҋ96GqZޜc>//5$.󭆲b׉q|*y2ݖ8cwDN6Qi;ʦxxDwetAE�>|.! ycm]wY$A"ؐإa;K*zS?]zIi*}178&vUjq%Ir3XVkVюhڵz�MrnmnlSdDE*K SHIT*dLe &eJSi cQI ļ\aZ9c,k$KRCH\$0{쩵*{5B~#=t1.a\Kr:4iHWZDr< tTi\Q,#BD *ܩR֢0E&8j$ZȶBg뺌 #dLY$!+�fU i Ѳ$VYd] Lf*j  QơRLIa`]w =ou^[B @cp?N4<g,�l CkFOb|BBVC<IԳI,2rFWFC$ՉT#]F{xJ'"9HB\<b Kckn~.ό||M)FC$dQ]%] `'-X#vhMi7:ain@Jr8 C*UeMNlCQjT"$Iditnr'! [\XDD;;N[^ H</ܩ$dZѲ|X'!%~r9X0#YaR,fM HW@3iuaP29Whi2`,7]y!F9.i0`NUL&(S!ܩ(J[X2ĔCB1k%FMPCkjWuvona\eAa6I;<?wivtnG07f˲膌3^b;^VY˵qUՁs5W>ή0Ia3/jXuWb9,;_#,1NOeeī!OxDU~@r(bsGajsN[Odx_5֥>/3$U cPV c{5Tqzsti[co*/DPjB,? 0`4B#lXR]oTBb f18)Jsf<5Sg^-8h_/RZf wn|}GWUˉcU>驛}(G0ۨGŗ<[HKW[?KiS9[q""ͩcrKJDQid�bņm޲`2Kk@}uwUa//T n+W!!!i]һr Y%!n˼GIeJADnT! \%jYTeBa Kh2{$SDCp=*d}u<ؘ#y'c-JFFICF̨"1QY)1^< pȬE׈!8Z67(V(j!炦^4-o/σY'.2vPX6P d!%7/ClUVuIN=1dOG&ח\ qD1I!l"#YE+bQ2C%%X 62;i $73k`/LQM/mYlJs=BlS]w7c$HY.v7uKVc2<'OM8ϙJ9-A+fvKwb~/.SE$eS rC?!)Cgm-ki.i"Jnz,iy]O#~ES2Gy@&R0ڝ')$_)մF팊xĶf1$-99i#!GGI*acҌk)$iRJB1HCodItgZu4kg SVAYeW0(,1}!-Җ1.]kI<ű)(7lv^ȑ;ZOkSMêӧcc>2␣J9!-.RZľDJkYGT$Yfe:ѹF:$YJE£w/g~I1 .ьB}5ҫ!VvxH׺-uM8#(8dJ2.^vFE\Nx)+n!?DA_^Dj\>?Mi6:bٗ]%$fol+G JXulj.aݩ0rK3?޺Zj2(J"1LMO+ѺIeNjҴk'E"BB ^(I^2+s&C86?վGV˟@B`Vu·'GWLw˝}+zgk�&:QIA{}-EqP!,UrMZ^=G7zxw?'oHGl�ʝ3\yF3$6qp&<gimdr9h]˔d$[L&&kx@iX,-8ܬC]eVu$Yme�m2N!$r]o$uʡqd;P)27^A296Y]5 I&d9Qy_y(A2; [*tU䦶"�3>Xǖ<Rڛuq<%I=^\i'(G7ZA:aUI_ޓ Iɖ/|`{y}4wCw? |zI4 P 1c\7�R$uɄs%$=TGIwa/8uSJoKwU rx ̭ʷ%bv29]B/(J C2U>ZD&/E)-Sp}e) ~\;eTTDJd8)Z+i0]G좉Q\O] PYcB0 5zDģ$mKbZ|\J<$Hg×it1\VXE*r !bR-T߅21.ޒF23mHP�]u%cY(L�j@0NdRïY0]PԲ1MP 3%C4{CG$B1oW(FE-B`.4T&F uvk2\}uFecvxV&5ôѫY|_0b̘ s>x8(f< o !HJ2!!!!!BFVG'W9?i�N_ƪ) 2I"qέt#MRVՈ.�|-�{SPP=vk%ie[.*Kˆk2(bm^gL+Qښ>k|"D۔&]E(8z4U.p~03u�L*$-'7/4P\)ъ˅(k2o]zJLVr*]u'F*vy4RC[` GT(>1T"Kя]~"Ѳa 'l;9[̶U6T2!O&1w{u)C[:lݢ[@vS P/#RmvH; juC}A�HՆ$>阯6E�WgW_©,Rr$#?|jښqxH};qeӅׯlWՌc/3-؀|!ynjTbetuU zY>XZW1|R<u�T5WiatRVɔr13~f8}#Ml>%Sl>Nd~/ .?I:q*3bьmbxb3Wuxrʜg)JEb:-Iz-W\"WMYIЄGnpAynhݵ$"%*H2-#{22/i] 4slSrX& tgZ:"`5ɻn[.aHȊJtO#:N^^uf"˕dzu�b0.$$[ࡦyS)YZh g]%01Co7e*[Sk 7e",*]v<h$ݶh2ݻt%}X21Vy"ՔU4<J b1Rcv39kr$;r&YrB1[6S /iOqZ> @qԀN2 M6h: n|2[S匈JAK5ю!3kk1I-b:vc$u~=Q-z%ͳ�zFHX;)0 OtaR$1\#7mϭb}T85x53ɖrBPQIc!6Vdq(`1sO%% 帠+](ŪO*Gxr[ S $E9K-4vi<D$WkS-3�]3xdzv)8 Kk! q]IQ< %0a 9){dI-Y6(P;M+"1{fϳm&sIfe8ɈK'ƘdhF)a#a"<k;3-K<NOnr|?9muG#g!p̭J+x@^;4WRTt4MG LHEl=&Y+Kwcs۳)Ҹ{:&$<, kJ`8!!JbS�H6E|rtgJ礄2Klzߥ�̂QK8:jv~JrG!nqFp˭Pi>6G$a(n"�vo?j9W-f&TI/-Il$EDVݗkJM>>fmGRĪ(yZ<,n$g(tGOFc\^t Kf[+%{SL%ĵըi/RJNpX 1یOK�L~֦uiHԍL{D>d~g[H)2"HWs@5#%A.+!TlW;I;O[UbP\>u+Xۖc8sGi]iwB.]"6VB8 up](]mW6~Z"߯&+Y%GtEH;9K�.O}>$~DJw~b1TM44 W ZTo63&^D[Q[Xd,m~,͡ &oMkS2}?pR5&FB&bSj(% !1C/ݳ!Q5ȴ^bmF"3)Ve` !0+Hw/o!yLwȹQ};ԕdMk%^9G>O[S_%dls :^|vh{?*RV- :sxJ&!^6U3L{H˼<%klr9W=)fG:8=kU%LBBBѝF7k{[κZk|Iu}Rc(_*!f]լD$YIqRHRde$rR Lc줓d~H~;Z1|B:h y"w\+NzNdž1֯$BEh.,ZLIgwYjD%gXX�u]Mtf{JOb>wWZσk'Mһ?.#uMUE~X%"Q'deK<';ut]uG#SbugQ^#U~]|`A*ʙ.%S4ŤѾnU=]�MIV4rֶQM#n˗y?hK]+*.Y6p5z7#.dnL---J~aʚMgX.&SJش-B)9v[Ы"ѹT0\Ws-B>%~| @eBhY0:+$]?Y:`Aԡ$FTpK擕[L-,( 8rNUXQ$OP�ȦbF/N3*%L<4:/Jtu ؖ=r @G0*`H0 ÕN^7]|;zH}z"SV,ucp1r[;[7]|IL\ZtG"J9) ݵt"s9=d.q]I$3 ;H{.[7]$#(ܛn+KnݥĊ_kuoO%7a߷)7� uWg>37p$L]5=,״]JP\LXFMp6> Pu›}aT.Cn#XDz}T8c77^p\^_qy\ l3p3K1]yFrgau)TK]hvI Xxۇ/VYq t6U2 [lcrcb¦U_=D,LǨu' d٤pOЭM;ax2{Iĸ+š>yd,!f3Q 1o:v,mB饧ǖekZSc슰1;|~~"�UB 3O[_1MT&Y~qO[rxV]qsR@uu2 I&Qᘟ qYPɊQ7H\ľyO%]MML$4](W=[/^2*J?$h|x`gۺSwvnJ)AȚF֦5 "-""b I^CݹsqPoZ12Owec8EW 1}#5q|}sheITiB2VTD;H.ꍿVy").bJxJ dVQ&Cp[NQ);ެR|̗"Pf3K2۩"$0GlI2.=iZ/v(we2 + cfEF,#|;[W-#ǰbPK$S lȋa4q%Ur 6oRY[t7*ty0i !)j!I$ֶk/SsRsrXχ9/y!Tg-3*+nBTQɈr1v4�0 5353%/P qwl^wIik}d1|On<^qֈcCX0M>GIPɦu+"/'_)ާj$In-vK!D>6ըJӊp\.c8)JI.j37kC]T{= t2A0G"'O{[kTX'jtr #rڊۋWwZ3V\WMeY*i$SI!Сay$xUdpRSm '"!fq} Go4zۋU>ISW7Rqd*am!ܵ [<0֕&%MM=\Q CM5L3Rь˫Y<n/T^b[~q͟ztȶrb[A!9H�>Xx:9LJFMfR CRhG3|d!b",ZY${wkQ/)TӣZdsYXEDch<${Ar@Bgbd�JTA(p $%3{;1=$| "h[] N*6xt.mU] h~U#e}~kmMv#/sPRl+˺-5aU;*$,'hu- ֌B9|[]S_egje.dVYm-Ѹ~WoE\6T `sW+4~= qnBKK4z*ʃaWVٵߑeZǔ 3|sh6m"nC( z27e#RRRXUG3Eg42pݻ}OwS):B"S*G'%go)?ǞRS�RQ~ anpfBBBEBC$dC ?&L'+?�P˲tA,tZ1;cT3x3 B^ldyMVul#�%[(18X#,3 w& 9g0yF8,ׇ/#2e¤dwy{BC?ķņ=m|>'ۘ_\py]ӽA^O~毤T2mib 6ݯãXu!w1˫=$}ECo|?HMm~㬮T|:򎊡tc(8:5LW fUtӄqn} 4{6.iYOcquDJ2)"5ܾZ}B$'�CH!Us~%/w"E!$LQ}MeZ7$4䄼?Ö.|&VѤttS7QI�1J'甮bB#,,64ǎHΦ%eHAi ۶qfkDs5XEGqn(n<%j(!m1G}r GWIpnD3€Jv+RE!Iԥ_RQ CSy2LpVܑ*DnL&A.ѓ!@)oV5yF]VlURt8vQvw-޷zͺwZ$&J6Fen"Wh>*o +>N DDW"K<.Dn!MYX.(L-)RϬ@mPԋ d^]fn3쥓 gITã-1 wV0ir̙3dtl/E>0"ILjDTm(e ?԰ RH*}&?fWO@Z%L$<~'~zOHT ]j? {)o2s-#oĈbM{~G<-z-)H(IG ޟx9:i*aī"TM=J^ @!P[y@<TB}z-Kj,®'GxG~`ie?{\�٠!Rz^9*FIvqI"vrH]SH0h㴲7lr"X1C,v;ٮB\B�]C;ʗFUuev){]™o[eنrcD/FH?YrܫMN^m09&LB$ <9 au4R6>T^x%^ bN@;*\hN@ z̄Dje47,QRwWH=) m8(z_2Ee%_#hN崓(a]v>b@mYGRW^„{/cU CqJz+$)=.C]N\Ԩp$T-tF 'uaF6D"""6RDuVG7_<N<N"|%G"R,? N9foo+6B+"XdpE-L 0@4q7~㝵otE!6)%(d://xW ,^/rP ]b\S-+.o3|n% Kk<:<:W[txInS|k]Ќ1#$%Kw)B%~th%]ᶢ⦇hD=+k¨Novbrpϊ2yIz<Stl]/(-˔UN$[cxTJ14-Qq'w}%bWbuHt13C*+G˼H>e erRo&Vn8-ֈ[?ֵJ}o1Z7ͩ:)-[Kx&I>p9 [[w[fHܣYʕeY68غXxWܤշ Jrޯd\#FAoi 䋐cr F::'d -HǴ3"VHdXo'Q&=N\ITJ&ʩ-mj4ÁSJQM]VІHHSI:2ǩ5IZJIdDFD;yeSG 6$$2G[SS%lHcF-6kU]&вC$oy1+|�GiiE#J|g{WM ,md0jFvxcXx&h)w9/.2ޠQ^'~񦢬Ic|-"WuK)˴Jc+dYGUi[vMPF:/wzI/x97^9{D7pV0uqUx$"|y2kUx=j) JsJbCrwEfD#;ފV]WN#^ʩ7@gz/F9dQX,0J<Va!m%6*e1\7]/.j d׆dCUF/ɢWild,Tn![ # [oMK~t=ݠ|"P!ٮw]Xcxy FB| rx/7íAPV+Nڹs e.!lg4zO:U g FQ?r +?ʍY1Cq}e=+bP[A!6Ke."ꪕ΍Z]3/_Ž)5LqGuxYGpUUNck:irJ dJekPXFYyי` ľ5`8ay ä+pJZ!ܙ_PS%>Gq+qquE!7h8$/Yc/ uɓS<\)22j4bV4%$eiSUc*m- ~Fq15S:`;!2 |\ ž;_վUκ4gdl�yHg.r?inZ9Sn!lWB$$$7 *؍mXM�v!+rlűcn={_Z)v:49rrW $mobdžp6+ҴroW*'NvӮ5`2q[l|]KL.F謄ӮoLB7eDYDGڨW-ͤ8� /)&jVpyoJ=~Ҽ"i7|oJ]qʵgtFB|y)-`r-l 4ld/ɏ{Cp y_ï]$61cGtDG(Ж|#a !~AwR 1nrp&0I2QyuI:S*2 `8K1Gd0d-7@Őt$AVu*=.M**Zi 2E?_~eMU6{¾f>k%ڕ*Ed(sM<[Y.%QE|if:9BϮd~@ k,[a?^P �nZ)aB~tZfFlU,Y)I¡I=~TۺRY$32ds7)ʲ$KA/LX"~d{1wv~,ʢI("M<e/нI%.rZC!o*#;:2ծz02<db7W=`I�<ʵ1j$q{Oy€Q論L:,2 70SVD#TRA1E0C(κ`C, -.лQP4 iA!.!snU8?hNm%Ye+Fg!/޺,C@t0Uf َO]E[Y"Rx;[TmVK`)n��MPC\M:1TɌdTgS.\)tTV1Zݚq 栲ʓUh&3N9DWYXR5E9poty@q(&I;%T<rmdcfͽWU;}P??bDY%ewchGW!hʫicraR"7-R^ɜnu#D1 җ.rvEbz1W nJϕtl ț,v74Щ)p($LBꚻK�v=E9<+BeNb`["ԧjOUw.)x.EH#0-Z%R2oZglUQ?Ktg$Y/u/wRTEB,YIsy)$",^ (sZD^osXN:jch4jHX4s*C*KcKt]/,D^QI,西ΆY s-~"KZQ<ba"{mXhwMKbeʱ)L+"򅻼xF,;796#yUEXFCH9KxTbFHsmJeLQK{Q w+/yPKʭ@585֒:SHb7I$X I5. YC#t$܅`>;Wʜep*}w-~EVs D2VB!njtm}$:`iC! ё Z[Õ:M`;a(W-|){t +5#%qB# A-k̵J"͛[QV?č52IJ*o/|.3LFHEw;+Uznn7V׊A\OK{WFنȈ6%)UHdA*Ўi&(dzrVL5RW;1 3]{jW0U~:vtG ',,ׯ2Hrd"bVCfo-ܬ_,Ƥspzd0GjIȶu&ĹnI`D-mݕ"Sc\6®p- Dmy_ޫh0d!yvFd%T'Ӣfx='a(/.^^H%h Hd!\O0or9Q.j4\ŜHl-Mɾ.jvRQ,wKywF;s\"K>]B`M匿h%ut֨Nhg|>ZiH匸s\+ʶkIdhYVhu"{sdBYITaW]Ws {JF`=7-m 1.. J�G4'+[jt{h0y Yҫ2;{jo";!@n+}ίi,bB"={B%& 9ge*-C?X Ň"+-_y׮#jhୠ+iiM8trZC.LLNξF- È)-F2")vʦ M>$;z["FIAb82uUP[ɨZDGO1Dl`Vis7ȂdO3n/1Pe^Q.uHHdADC$yKw&'˖2^7вvFO1c*Ke"CVۣZ[ "\C\ôR]ݕ5XuU prA_DcmبK [ o-yDD"̈PY67 a4ŗx!וJ~禀;Hm"emTsM!I,RI![qo_xt_gc<_tLTdv#+ zf{0o;>Td$uABO-ji% =cEވQzY?m!q|v6Vf~U"-?ⓏKї,^t)7Yc\{#IAuH6N$#)u$H葢< 4d˯ՍB Mu\21ȵrR„BS@-AπHR܀2d$w u DNa2T3uYW:B䛉ݔTUxYA(vg2ÈhYE2t^\nP<ʉ΁uWa@)(w@]} Uc$Z(UY:ʅV×J&^u*d/,PJLPƲ`u% _Y0T_}e0ܓ,RʡK*dQ6iap0] D+üYZ h]zN r $`u  Y BߙWid;92>7/xxVQrI3b|BC0 j.ti;Зg_eȱ:ZI C +Sσen iQVmا/r'iZJ|޺_1 L\Yr'kM 8Kw{C%z) ҁx2PU<F={*†DnY(NBz+h[$$_{AmT^٦ڹ]JW`kDS\ms|#9CrTK�vbPI/&9޻jtg,yHYxGL2;],:†3msܢK%3Tx ITk$j?mǖ:6MKӁ  Aı) hi[8b/_/x]&M-iv qRSH.юcg.LFv}']IC?t6'F?>ݵj_ x^ZmԜhE<߹Nh_W43Ri IKz눔 ;hST??ըg<I3JNyEY`l1p+R܌J-HrrB{(G,0i=+ !DswE: j9ZEsNO*CPlRSٌn[e6 I6Bn(s >"6t孍QY^eC<ђܪ@v<=K4mG ,V|~J-IF\HFyR$?J0Kv N2IqnFU4-hܣUIq&.tK2A9KvJ7i lDW\4䴭V@xz=]dKlWb#n[jՋ!/¼xە1ΙZe%ñ޹V8)Q*]r6Q ]K+ &cS5Z2(*׷B a`$P$lĊihEv[G5˨hQQ 2%{rZ!N㓬I7qH[(of]OH0 a8㈇tm�,dDCp>‚ȸ4z^ܗC1f!b4 ha<7z? ݝ>g!>T봵ǩ;8[b(B2FR VFQ|ZEasRmpC om92Quz*G!( Z[iJHfYoI%C) IZ1ͳglbEDh_7*º~ocy )0}8Ҙ$،68!)6l&f&,*�̜ sF=Z#m7ͯSkWkG6* aiJvbSE)[{1d1co\N{ܑQ3lĊK2v 1jw&}VktCW}7WSQmyXM>Kv^lv$NKzE(mԨm̥HdY3~m 1Z+j"XhҢňwI !&)./5L ґ,ĴrNs'M# )ܒ9JܵVE!6٦tB0xD vr�:XK(e9,.̻J$qdRr2I+m7[in֢fVd2C,e7H?Y Y)pɺa 16IP;Dj*F)#Ѳ0{Jejh.""Cʣ:(M[n qnfVi2|2yKd!H{.?BdYT!-T-G=%ITc�ViR}d;q!}{G&S6%�h3HLXJ߃.LgSkh*jb)FC$e"l/v'5Zx050I:1Zo iEhS}[;&Nq}b6L̟ιW'.GRHOѦ`WV SkT:v̋j5 ޭ͖YЏn$� ;۽vt8E|ܶSm[Kw7h?G,?�g0-mXRG%4QRDZ㕮]YT>pJbd1&Ydkf;e]LHRHE$I$W\DEkH=fN�go.3x'- Z!d,fd?P6upL.zʸ(#0H_T[0 S`x-.M"~* ϼ~fEKo#|'ӽ*bB7G#h~h3*FXJ=ӍB!+�5ަ R|+~!2Q Qwbt3dp|ˮ$IvQ%I}uu[YEV]s&wm,(*(<vJ̄F9" ֜b⩖yeAG�XgZu| cEB 'Fs,D#%-DnJTco{1)}YHөhLO*.._){<]{(%TNVCRF,H_  i#(!(Y9'%Ҷ#rB=ZsױGVK̗UmFY^>;S2@xOvGQSZq$ /v 6Tr'%/).,Oįbh :6$8š=zPFF$WV@c,rLM5%vF #gLCy^ɉb`d`B3H/3&K:pۯDS1Adku+=}ds&+ n1VA,qC'enn?Օ'*SXGnSNPOC%?*W@1D[qFYwˌA1<e!/d/geζstzgO,6{Va~uA>b[>鶂̈)JHB_YM�p_i\qI nK{K0%+c.㠚 0nb5ɶث_Qz#Gz1{7GDmC B#W*Ermj]4>IKa ]!]Kw**Ғ"AUxi]1rO:+yI$:mH)59E7FMN"EUFlCbKdTpyn,h1ӀTl !QR :ij)k4=;-w&Sb_0~zs`ykK,vǺݭo!M[ڏxqWd%2%Gtv$>3~!7Y2svHRh]g0.!B."׼"bѷ˔@䕓"޲9 [$I\[=Xv֬d-zK\éYG[0i)*<o]`MF1t+H)Vm-6+a#!:JhY>&V%1%#c;YIT2eKSy:8d۱I/ N2G"Qc!D.dE7IĔI'ۇͺ'ZPmamwGQuqxE[|KStcH|Q)DX.mr$U̲]S蠐/$yl5.{ ER(p*e-R)gZ$%ŗ*8G(QӗdUFyj$9BD%9IalSHC>ܲo[p�EQj(c\EIݕPK< [h(]LwrG v-`g} $.u493~^8ekGizO<LcޕɲO:Cۮ쭒<0Ynxhr q,fvՐlvcS̋XQ]*rF*`2Kf#浘c*$&HHHmH-jMN#]o7V١$t㘤"vwuZK|~MMl6,zWsco/n^Zhxz'ڸGBW3.m%Sb[¡ɆHY$);)AJroFf"|=u^̺'F'FCjbB[kڟybkjK"YyjD',:, jW9̶2ɗWfZ-I*Y6Q.k'$^œފq]%TOz"$ X`Rrε!ǣ $xwrYSM rl, &{K(Ldّ:F 7/褳,\V"%Gq̞op^e ֞/'h.w4ʢHm\E)^(‡ eX>#.rXj8*^p  X])±:lR<ls =4'a>/4SHiZ(1<:M5H!r(8vu_[g�I! ӐM 9QHY YWWؙS#,5|2O2<x@bMLctSe.0v[|zķSJʜ[R\U̠S+<DU\O.+ՌԐ&vdV6 pJIt㒊y%Df7gL`2m4_40F'+aHmK[o;S<tI5'&L[mx>6FRM>F;#x Jie)!,pG3|>}jr,ࢢA FSpM *{;G�i =H oAMq J_FM\ҡDK{W.WcXI c tw+|QG7O!-DԖӝt%)9.�p}pwI2 -*,6zK|°HZHD"[<۶}kH;{u_Z.2BC=贔ly{^ ņw?\k4.dnԺ)^5xS5T꺋"+U*`Ș�Z*O"(8MKȃ\쀅=*IP'Y>^P,]TUDH;JCOԑo)zY%]1.d/S'2dwY)tĪyVX[ch?'>#/ kӫe*Rg:%BBX%В^cwM'Ba�h]e^ b�$g*tSs+%H?%*h eDגkлrT2@On`M䦗iϕJ .1C'J:F#3)jP(L|4lies>"IG'XFR:)_XI0AIp^qLT!)y̜B .&E:dCmA܅BiivRD4u&R^ (z1դ!6M11ec\xh7\&6>|m[Z3N Sit6%V6RnX3=ؕJpOG4%iF_{CTfBBBD$%p!!$%ZzњIԱ[i2&w_=t2U%5L "zu9Þ}#i&+PUqcDBCh ]-l'oѷ~Pxu0VO%5]1O [$r "\.L ֛í}0ݳn!Oh7-Of3s]Z1KiVPS."B?CjuZRf7;1z^uYEK  xȅw*4eFYU!O’(%Y'70SR:5MNfI",9tDx[\Jg.&6� [͵TFF#g%\#le k__ƾ<ꮐ\DDRDEqv״e"+4RIBKN9BY,pz=NYm6cb\[[\At@DmM8̂SnU6tWT[Lq\(<А<#OW*$F=q+,8HnZ5#µ,WrBTޣ6_{}gq*”/G`*Fe06NҊ!d!,#I$ 6 ]p1}TeY2LbʬbGv< Sc5(;L'1Y�J1FI!!q8 >gůl3 EGORSF1�Ռc-M뿡f,oش8 ol=!?SA #k]禑x  \>13eR|?&-RVTI'SK%1]tQZw?Yiش> xF*!"-6<Pbpewp1~dbͺrYn<`]&Qf%q"*"[ڙ!.Z^z9s@6h+m;;bp^n[Ef?{ᱎb#(#T$cB!⻄uʸe[UTESGi7oJ^hx`-Rכ[x7mX.hA.oWqyUyg;W.f""9DrGթr洸onR@-kkƌfSiT%RH[~BLk_1ɏ{ғ2߄봣ɈƖlѫ\q*8eq5Rk/61+KmDx}^k itj1>Z-zkF1DH}swG* *Fbq]jı[.lD�I;Idrvۑf[6,wƆY+-~ 6�IBdž9z©I0R_iUȣ+UaAY${pX,hͅB~,7WFgrB,<Yw?JM˰bm ޸4*i7)}$2ehAPܼ t~hC(r&6G$nBZQ<�c%iF'f%h(FSjجHDșrڒD)%H\lZ.MC$z4nDU3M%\G�2y(�J|:2h1E|DCr<cl7s/Dm,OK(ȣ B$4Q"_@ VK 3bk9?$ }AS F|s:*))v BM qgqrvթ̓QQG${6=b_:ns7FQ1�"c"JFx <)&.ҰcXfDok{l4d#pUhHFʞrG'^O&JtkډcZɺ[qpMl^x& i+droc</WZ>NKK,Ifjݙ|WI$%ü%*|\ÛFi!w8ϔ~׶4Khbf;>S' qG"ͭL{qޯ **�8ɱE8<�!f|OS70])jηm1ewa>a7;tjH"Jo{W +4PԔGhEҽ2/5ڛS-%yyfo'##sIp,:<;"ǴB(x%B-ܹ3_,3.)$4P1S,A 9Jm\VyZ:d :/;o]<LigA[ 0C�{~qvRL}Yht/0NYʿ"z1  Ek/ͼEWp^*(ƧğϾ<5DrQ͵mw]SA4gDɺWswVv[7RZIhnx0gRpV#kK0爲v6x#x}eOR%Uqr%%|G=!z%̹| tUn\_ GKER=wVl5XV?vMչ#;%ۮQD$']e), $شFNj6]MC) HJu--!5.Ku0&O"�[!&P[HQȀ0XF]P{ϙKPaSBTL*K˺G;:2(#.In�Ax,#$P'dDniIxX޲Y֗2ԬGZn$|N?h=u ZQʨ#V+&[WܩjPm e5CXleZ.YO/Rk̼(O~kR, 2!m-]Q#eha "XHdk: !h%Ɲ1rid*h7]hk+( ]xӁʗ�uCnOdE *dYAeo]Cn8#yGR/V9di+^_?+6Rm:lj-v9K>6bBL&0rZGXfyVNGsϟ'.+M<p0C42{rM<UtS{He+m-vľc{LR [a#&ڃ/ͭWdM\Y9,zgMm! -F"BwHO6%zMWWl瀷W4eH&DMSfu7KLU10 OL0{K(h? Wí^+YϷI=P{C#)0ꑛgQۥ$2386l",x<{5NR#d,&Hu4;qCwTړO'Hj o?ѭ|zaWbA-lCA<Go3fJ+gyq[DgMʜfu\Zmeo[c:K$Ycf޷tZ>j,JL< St] t2NG$وL7\Bm#(cRQҿZ"4Ccj% ivEnrK!I!o;lڰzwD% k$K5ĬqֲʍД-'0'ڝμ,tTGGgJm 5TW,܎0H\*|x4Hc $3b"#Z6Q-~5j o~ ?F g � fwK"䩄;\n:Gޅa.nMzpbߚyMܥ73jfʝ,#-*P(F8b� 1D~FfOԼ1^G =hh낎nϲ57C�kG|BK ȼm H}\vsyMcY[aTr*ﲬhfxGo݌"jRn*v}oy h{DH1$jZ]SSP$W "in̫pN[!�չh ?kn!n9q.E mz1ى]mݧ圿Ra^|#q]z님HbhYyGqrS8rZ$YT9-iVlI.)wTҧ+wwIa#Wۼ\`FUaD\DBV|45L QT$zg;a;$#olXwuyx�d�+KJ[=E+t IZlᢸlD% eu$ݫWSHC,wZ>bE p̺RVCmIю�ڂ B1o]ڸUhz1Sxo"KGʙK̠f<1yVI`ٞ"0Y̵J N1tЙGY0FV'WSyOG%M+ 1,K{)DZA-ʹE ]/rs ( zˆ2XĄnTjPI{d0czĻ#ümֹ\W-mM8˯~T:lA3pڱZ%Kq)cNDhbUImnA'JP̔ds'aH�®Kwv=dE,Ԟgۿ�hV9ml{RpKB*owVK#D~Fo1dyo,Ҽ,7􂀨jjKH7۪eI]c8 qn'H>LG/ o%&/;5/֊D1D.? :Wx,bLE&1],C TejՕUvnoQg�gYwD…5S9,\Š�m0nYwXu hHL'@GrSڐ0-4˚Z2L>Ңz."R G;3 H5ݻDDn".~cu8Xe&]O? 43|.L("gMLB<En;h_�l8�VYnDKeH>7O2馶U zƭfWĚSa$2iQ A_@6۽.JUXe[e6{k%IIKrR[].-/R+RS<%2*`=m<ro:/HU"3L7]nꓤ3*Ɣ$c e!KkVNQk㆏4Ed8u˙}q=QmM!/eu4=g|~ׇiDDL6Пi(]&E$ VERVU|e}ZR&A \B!AI$iiRY1X,̪9p @r ut$`[<H uM�`DE5L!wCW˘SUE2M{%wBL8�0( Y�@n$8(J3A9#]xZD eyy  QCFh12dBήD́"ݾF3uƲ ,H$b]$5! X "A0u4(S^ qh}oU*6Ra<]Qjܴ3EΦAr[ܩRT2 1GyF՛QP[brC^_hp]yh#+N,K7UĦ7ݓI2!2J,]ģKW6RnqeUH#o}ն!}0-៤}ˎa0qLF1u\><ux=KY)|Gg)c^۫QCqzSHc-!ᘤ1UBQG,%H2;?73lNpJoMQR@BRAaҕ[6wmLʃO8p9i-zjbAE ^}L?;k(u3K/ߣaa0) mv4Uq 9(a)�P"abgu4sI9 ciT#!|'uƥjdҪRUF1$c�ЦɌ|O5 2Hlýچ P|?x$!6{H|GD&m duIyFѦ:A-]LRM!yI$!"(k3x(`3y1ͻwtV=`WH$% -9Gx쨥mNS_CݼԈw=[Īj©~(c.!#GMdN%!ZWV!EW"ZiSU0~e,JBUv%qŠROdgBڋl 8-,9hmGMJ;Hr *q2HcY Z]֕wIbh_d|ȧw<EH*§JG?$@F?GU` ɭ|CIj劃g%5믞cy&{Sq7U,UFdd%4bRI$qb7ͭ}2~>,sHh0,VQ]1L=3+Gʷ1:9hY:`ͫ.go9ꬲYvxFK.|G+&dy!dJg .}=OOZb\9"c_i}&sҶAg qURwm疐W2Ԗq}Q+mxu!8Lߌ/ρ}%*IΣC DkY_`m<*D*7tZ%\yG?i^_%t˵ !.Q)9{])p*6Appά ;Gj-67ʊ yn bM[mIB>D[)scB7[Z)$R8FOt 7=_bZ="U>dM\yKP*11zᷭc J+IMwdn޻}Ƅ!tF۹YE&ٹAr$N^/+.QV-jĔx|V�\c7RsDZ=$Q])z\.%]7FyĊ=cJ-#pG"W+SljQO?Shl;ݟ¡cp̮ -"FCRV[x</j`V±( A>]^u3g"UIM2 AteRkq;G\I[mxT(H}qv~T2x\t6K䮬)7Q)gg坸Ep6+2ٮ.ګ]%-,`Yw/ЧΎR�}.!ZW-{_.WԿ�JLjc$7rLKR'F}!Yi00r@q"@bYHHKB:{;(|u_#@)rl-1P)yX'~H8H!9c(AގHfq&~-ǂ38i`ģ4vy񁻳m0Ŀ3e|ցl}8F%Sdz;J$#$R\Q?kS4t䝴,)#!@]SfTa +Sk3^N#&R)HD+OU^{ąq\^t j\r A qEh f[>1rnW1E;Oُzնx|N"'rLZ5խjXev˅T$"=Je(n~O!g^9If/qI!f1íu iˮ~N%h)bAKM:Y a%iMQ9yw=혎=n `popxѐ^Ɣ{t~$6iG%4XJ߳UӴLQ/)Hn�ET'kĵj䦐f-¤঎WG|;>A1ZhsBC@t,ߙtQdRF< 4ѩ)+DyեLj9!.%~`G1pݻ뫧Ma}Aj#^JԬJܢB:R:νUUnRQݼ+ E`Y$eněPa Tű22KNJ212òy Y2�jF ^BR@:'B%G,j^ֈ]NIHXԭ#թqowSyP̶zdg,S@)%Js j8( $[0C% ^E49ipG5P84d#"B,rjGYGdP21VL6DXe K7"Hd`lj&΍0%c>'E20ua$"d,處zdD(,)Lɱ$\PS)a"+G7_:1񭿸m<dEhw^,$tZ) \Dp *Ǩ'}K�c:;Gb"6ܮ'-ԊHs]7.m-ޝsc6y9<.M/ 2ǘN<i+n2KI&L\+fVA}Mf]hiG)*Ϋ<ZC1z-B(3C%!c]ml.#[jphr͆yR42K&m;T$#\\BY:JZLI7em$SPO s td%|_ ju`xnMA9QH$-z ;k.یK )$Dъ)8n: ;YaɥhJ벐aFf4w[0V!Ctem"_Yi/6`U_MB|lO)wj*f%uüH`YL+IleUa�drM!PS7q"!e]\J>9*۪3W/%eGKNrC2E$p,@7! `�<FFB)7O봋7vҫ!k&gN>/] 0:2`C4WKS)qWPfeGGp( ^% U"!-o"ϳr])f&so{dL, q7¨g[PSI\r2 ceZt�'.WIAfn4j.,W/Tu7|G}"eĴ(,,"JuDG)Ԑh{V7D2J_�1IxʚOG1_F$nR]ˍbKE[#)_%CGNavSvỄmmO-LSU_'/ÈD y[�LRCNVݼYGxEAIM-ۛq^=da،1c.Q򦪰!oթʮW5�bGG?R# h7[o[Օ5 %֩"7/%M${%(9׹Ǥr Qaq 5$b"VMZ-۴) 4[iHD=vc#x\Ev'>upWcnTzf%쩳J*iK6i$ bQUBC®+S2ץ褴6Jb]HERJq\>jfdvU.(ć4b]Kp֯YNE [$JۉvIpbB\F?Y!i?c�{Kt}Mxc3[WnmKnXȣqV,?_ YPȍԶR>""Uͅ;эݡG(*m{4dEwdr5]ަc͔UF7B[/|W_*Qxө/@kK4Du>t%IT,B%$W/UCtEQ󾧨ֿK?&$k+o\]7fm+itrZb;I-OA!*s#ڧ {(SqQ)G p |lWvx(;VR G"\Q?SE%ie.%OnU~#B2f!Nn5`*,VRHN9:!F9�n9QbWQRWOSRKMIrF2;\76_)3 C0i .gVF�W!7xJa"/sN qkun~]%yjͳJsF$=$`OϘQ@"R8ż1!Mkd8m{6-Mަ_2[k*Ie,Bh?I1 omy{TH߿Rݰ? hIrpގWGd^3]mHD64# Ԩ1 ;ͤ8Ld9H}ND> r}'OItj �} R>1:!"A!<2 𐗌IũTtVIƘqa*XZMqҳ4˥<Pq(F5 n:|滋5:iI|Xo>a.USXTpܴ̐In4 xUF3)3]<gn҉_L$YTXZ`yI/WUNcq jۭUlmWF5}H%r[i+gsd=^Rݫw p�RJ8趢YGZ(pLnq2_[xYW.KeJ[>ꪌseyg4xN50Qr e!_k-|.*L[&uEb1.;q`-LF=[xlmg3Sit}9 Sq%;#4,I8$�Am]uAiDw Juti1ݔ{º_3[]e%pKI!G*~"ק\wa^WHu|vYj7f콛~Y= ٲwW]s<{yhE͔sv|"Dk?3A5d 3h2ps/tBw}tGWuj>_؃R|jI2s VI0,- vB웩,;E%&Q4-ɓ]P&MvB)-9R 'NS-XvUwHd,;wU<בQF5)!vWfDc̩O[7ٵQ+zy#ZRu̦A:*j([go ]|KIj$Ĥe�^yE]Ov^ԝւ r) kd D2=JO E3(DfYqFC#dJSEbɠhXJ8P V$0Y0]ay4CrENRbC_}I""YOyB$>6dm`cb";j5T>~]{mTCPlP`1Y*.REڷX[80SxD2!m$+QS]i^ s-* fi&DnEKGB;<XxD$bʎf24S8]@6K)M{ZP>SGoq;uxS_#bS9 Q|~g+߫TTmhiIKM  \a"c/>g_6vF1""##"ǃF $ayIxҴ{E,gMc鷤+P95:cag%xAFQ( peWZK`I*F8('y<OG>K~\`"8aI|~^Z(M, X<(^Ҋ" jh1vaV1Zl:�2I,Gg|T4FLaE×}_2=3OELR">UKWzZx�ڛ_LZ.꫚ns}< \ǵ]D~a5p^ ]MdQ?iK^HmUIo_CZAQ|2-?\KH*ʓ Hba:ڹgMIlR0fgvSX_F0rI$1 �}+x,)cTYHp10#d8W؝wv8hA_!;b6Rlpm ^<#ݵ*3%+KܐQaVԐ%# c;f@)ηT{`}fgYY;Va_iX"cou%li_DŽg<CPR paojE-KKM<gORїnc*X˼uvé͞=cXC9axq9nM^wDu-$q"Wl:)$cRe-thz@NIu9c"némpeAEsyS2J.B;,!ʹNKOGusXY5z "X6 Kw%GvU" :ScoH\]'IOn^VHx1l.0]&b7FE\8fCxTHd"\eU5~ Z̞NU_q!Ȫf#蝥֎R%! in\#qpeK7t86ztk@$%U;B(mVV:zC4$D7 [uc 8͝NK2U}{Qiǻ)N90<&K/]߬$rEФQ!ot*QTu~y6Vx 7_PceG,֒Ա|R뮷J8:ZM-y蘊Kn8mjګ^NO\cC̣6-pYQ@s%i wEv|v;Fۉ& !էm .iKWc6sh= kمK|"R`I#Dw8ؐUo"U/!"".Krѽ-sT6q]ڷwSt'E#9qrGn7w×Z#Yjۮǿ,*87ZF=Eipڪlvѷ-jjizSS'(Y6mʗ֎m6bҦԟA%If86:CBVISioY%^_I9H_i^vRfP xRdVZf!K{$m*VΈ q VŴ˔ʵp[Cb#|ފry2h&drd:}UO\ eats vm ܼٔkI1H7,Yxm2l˻sj[l3f[HwISAZ;vTïHnI|)2#,9!eiy6:}Q^փRשeDIay&qoP>P}(0,ѐ, 8nnzd\95lJA/)%EE!nD<1J<6*s[b3_rjqardَxo+r*ŧV;R]{SDy.ʥ=enE54r*s9A|2kbQqfQ*s *R]tW%3|_Nݙ ]£U%PCR$ FlD-2 % ]VTP,$˳.Icf*mI~(SD3Kl5r 3Kvjo4trnu|W۴}#Jy#/(>D/s<b}˙.B_4džij+ngVݭu-GW./T9Ex%JYT@`nScEZV"FjvY-Lq}#uZ-G&QPip+E8U/xAcxDѩ$ 0}5e1DGGp:+1UKtz?bx9ɗw(ۛOZDeHwT3_r3R޶Ϗ}= ´9ѡ;m"Z4F)K7Na;5˜ԫJU٣0)&/&[?V /tE2=}+.)$+/nQr`>0jn(%jL6Y RLtKźd@'Fh qY!L$ qd.( 8�'t T:EtH :cd,\֝D5 | 2YJULdmV6,֗&G=lf@΍6l6d slȝ ,1\"Z1F1 KMh`lP 21Y !Z02Aixm!K u$˛D=ve0}>˨cGFR!R ChڑcCe2-!!\H1é-T*XEi$ɳ2R()+z[89CL4ZmTm1toU<8GO{Ctu`:8rqHVSWY=?]D"+DDDn">11*+FB�ˌD�5NQ9-\B$0V;Խj#1�Wƺ|dQ@1I hŗLiDKcH\źSїj+K}"aMo!7tjr (o\Jq;DK.%TDEr)Y8G#W{VsϹSW9HDEг\v#oКxôYG{K ~d,l.WONx 4 !GhpUnX-N1m"(|x+|7e!H垓Ѩp1 d.[Ta>d"<Ye21H1wt{NR]r2˼^oZ?ƺh|>y㩘GC4.a;jOQx~-mhUMB+Ҷܢ66t^p*e1O\>H~>HHHJaPeM1mrݗko/}rRi1GGmn2& ~{gl1cGtj䐄H^P�rI) ;2BZ-[ Y.Z-V?2T|dB?, fŶmnK/*vM"Jߪs}df秌$=2_Y[ BDVBYms#?i'V]Jo=k�C"+kXJ1/xnO%qI!޲m,"TPwIގi?ܪI-"[\\#p)XfW{;Qe㏴#wT䍑ߎ#!!Rk{J1LDR*rA1K2*yȇ6ﲺ^D{}ν#-E*Gr\Ֆ&LVNGT9tJ Dٓ7HٱZ;(r* +{J4]ą|4X.WՊRb#NR}h%VzerKyXw(ƾÖK*` +dKY /2˽8�JK+&!G$#޵XyD!HkuH21VP aI8.yeDZ1\S�0* X\8cJH )�:11)MncG|BAc/Ոh I miH'eP.1 rwr."UbH[ī5FFSDW,3::Nj\(ږu+A,BC=Z Yk&Tż)"iM=X[2 [ޔՀԈݙRG(ۛI닉fih݄"1% V̢ޖپUPڇ9DJT/\{4C,;$K4a-1;f@-X"^&BJZԼ.kdd)nnRJu(q2cHHnuTHq ny�zUDfⷋLf+ZT0ªA+O0ɘY r2ƊeĶ|Wf;EHIJ*2!IanWgm&r}eG_ +JʨYͽ3Ww$AR\֮K6ꭚ(5m%w 'BYT=\CT̛yOu7lD_N$;h=Tx[U\(RX1λ3˜!ѻ(]K('":hCnmWSJ<\A\v�e5qi5~<&oY{) **3 {AH}g̮UIlkS 2 ɛ/?֧O!ЭjS$elQ) H#7pRX4;Kn˘H~{Ao!+p ]g*ذ4vmoFZnOOI2:?tjDhaemI86UjHe'vRUf!IM$'ݔI[Lנʩm%HȆˣx?=/hy~eb^ )Hs]ִ֬G~<uϧXڴ}:h匲yL,s[/,b[Dl%:>L�,mZ܀XHe_=^%4Ŕ]*V/=;#HӤR',&:B!r,#$. [tZҤ~ddS)Ǒ.KP: !g!n*yHnCЗw^ueB3l :r:tlReHY AgFl"g@.Y `#c%2&u`s& ֬=Y#d1 0%+DzSR5WZK2 i0ĻV z+Q4Pi.p DAݵ'Q7ޱ *X({ֳ[BQYv#Ic WV*Eyf?9e%S&e}I Ў lzL**~K5Y{Z?16=U+,YS Ѥ  @:hmVH9VcI&Ќ-"B$D{<_n#v yT"7|%ɴvoR7]1H~7)s}ZH:Kpe(=9ެ|?;̶"eho>q9FΡԯ1 e!nWL%�R5_ 8i8}\ǫ "*][;ezkRk�Dar[KWJ<<b}oʤ+~W^c/qVWeQ.H2%ܚHU;'>M 0$F#.>Smܼ\1<vN7w9af0#oz4hBQ噿'"wSŠBqIo̮щdF;8n"n_|ֺJa?&1,7A=d2~2W\%ia%ڼcKL#h!.!/uB@$9n{':/,AJL>�YKD@[rs EiBV֘1e0 ޟiQ <sRnusحA(`Ө۞a~2nVJ velBp)5R\>#w"$kYm+VepaYB%Id2;&G2"5{AIj2Q'V#Q*re5jn2!ZȱT>EM\MvtOKZhb ͉`�"T℠#w (]C)C6x)$Y#Kt3^1 :\R8$a!t4BiQ][S�:Odh�W%t1^5�?L$.PQ)X7{_uA|ģ$]$G+[í�KO[;�AUv#DUb#]lVZ\ZUW)YkHD�w? ?u�z;X�W}ƳX^Z2ǺJ xVo&h,D̅2Fɺrensf!DVu3*!gG ԋXI rX /Z&ʠt5 "aʼ΍EGw^b@`0nU$&v̦3 )n*yEZ&ehZW{Zï,,Cz9nC(LmtAsB,HgXֽSIWp-h 2<bmrϰE%j-Mp\*IKKyW%%]bI*ظĊx?5rpSj^YG[YTH$Tԙ ![߂`ŨjvJA%�1#bl?iʒy� RjGtd qxY>ϤcuI"J1.Nb~éj�M<3xM'N<sy4%wGR%lb7f7f\J| _h{? $Fѣm:bH<KƩLr) ,C QhDV~ )'ghh~ִ /OSb[d%tdQ [WIOqAw DİG~%:޲_B J?YRYќJ?hB }1@њ5sN`mISh <$TH9dW̮KHVEoͽoy>vV[;QIieB;A%[V:ch]$OڸczZ%> z!Z.qS SR.K4sXZu3, 'i>t\vP_M抌 c{x4I5جG#}k 6q(tbZ�/R7Xuh[k$,TD*I 2BLX$z^H2켄gZZqH\Y2㤌-Mp@*uӥ24 Ahȣ@!tt $"@Y) n gDjC)1@*v ۷&$jVtJѬJmZi|<UC0Q@{-l1GqdGz훌zEŰ˗/+-aSlv^L.ˡsYI'i~M:-3|, ɫZ*niE]B#qz+L䢰ڛO*ĚJMjDSjVC%(Ҫ)8Wkrfݰ`٠(VKVjn@ホ~ �th>7*2t ]I5s!e8|Bt>V/!2p)HH=鼟]imXU8!82cU�6M1t:tu)vP1 U}[e1pUն'L k8B<7-x3}Dp}%mF 0z뼗uwv@;M-W(7fHK䲞\*LK/{h#vR>TGnmSyEj/O-2I WI6]);^DS f! bsOm-B[J{=F2\?p-)Z$"6oMD,3H "9GVi/36%=2c3r n: ) XxsIM5ɘ̖-mh%rCLHr+}" (w\ڪ+HJܷpjhjs%l4gڵ>"BLy:iZbW\")7\h| )w!6ڡ6dTP#<4tEj)|7YPB1@r\YGEЫk+?pQN|WrU2-n./X /IPcsE KEURRFYr^]2~ӯdq}qhz5>{|q>I ݖ86`V-VTY*x9,ʹ<<Xye23:;//*)˕`3(+eS@BdeJ$H�n*ɞ.Q�:0&UM_;%l&]Vً!*]Sw¶G�dXsw�ݭQm�a<?HW_b\/^ae�+�N]X�٭i�(̦j /Kaki �2 �f�4JFJ)wJf̑3Ha2~NV004(Yeׅ,'<k lAAh_yY1Ȑe"9YFb3 6fn*`ũglJě]6"bJ/x2uSf2|HFT#ny˰NY2 )@Q=,1T]f~ml/>,*s/C'ovC j ^.'N#me19ZO%ozS'Z2)4H~e᧔VjR^  b8,XD0@;kD̼ dk4S@2|>%Qe%XJ]k US6es$,֤@Lyw[֊jlcZ<2ՆKU-B("^vإfI-崭ijGꦹc^gva_G53En�B[CwzAEgf5�q&NiD&D:N +hB7s'K'Ws"eM-Eٴmk⸢ղ]kbtj6GRVqbS插 |5U{/1,_|{9֕6[v}ir/�3^?c�ŚKJ!/G7JrDCnbW[x>t[#;é{nlh\}ţ0B<1ݺQ^d� 㸸Jů_~Sqy-]hEjkVp2"6�eB`:M/rEog:}%M~ܵpUd0?R%deI&K�j@�uB@tdzb$dɈIŒNR-L.@)gIq vU^3vRX%IJ<T5^r%ih( %#)YYZkYԀC=șdC 1D2(h2h �6+Fi*.Xt4! z#Vܪ£n!!ʮ\ $vǣtĆ!VzTEK5+Y|eq}UKLDW\^iZoKs%3I)m$˕O\CN#xwKk|Koy:SQFF4 pSEp~T%R<ޢk$ F�eEOC6Cu֤!0]L("P#~Scu1e\Qxķ>Tȴ7ld"Š[@J뇲JƆ޺uӔRAK:UM%OfUN;p�+RZ96P><r:$xgdБ\KS#h�1Aډ֐D3R<TMD(J$]3H+U;.kvLnf->ATAUFy-E:s,.]xҽmJRI<&mbUnbz=F\Ewgkf#o o54^R;e\Iqy>k!9*$Q;O/s44 &̻_uLG#).$0!\HipļH gg) g$eienM6xxI[S\Cl%YĊ2d+mc_B80!"˻<jDFXۮ>R%x cQjQJ`x�Sq1KUՓSjuH̄c""DYDD|-L_Z2RNC4vy 2i/jP6哊4]CcX[Q;\?]n�oN"A*WRDZ/_ʺ[7S|1]TWP\/�Zl|Y[)7�\*z:lE{8D~Al'i?0|t?|)E)!"[Ov'|_�Lo󶠿KYWsY'9~G+:ú^EV_ק}:*+_{<+Ea.ÏwC&]KE--lDa"q?2(foݐ#t+2 'eeXYy/2( k 'P3 ,1(Qc/_$?iTl �,~ҧdO.?iG^~XJơ}Ed3D b&j22�=/!]e}%�٫چ�vʫD^G!�UuzV3G�J/GZ qH arHȭEĈKi*䦎20 m6Es=:n w-pP,9-mrYDeG{YdZ ԼNFXheA뺤U_K$Еqpen.lxCФPHs+aޫ3�D 8yit0^Z_!ED}Q[>i]NR5p?u(:054} iV,Ŭ4ϴK`)zcÌKHxKZ&iTeNV!}(+-l ¾k랃=$_O>EG5=%|~Wћmm$sFJ Xě%uq��=Te!a& abxpxk\ &yj6$׾1K dzLBɼHO?Chz̾hgtD4Ց4k6g�H]V M]M%u<u4ӵE($$v&vvvggZ|zϙ~�[ $/<.~p{}~*r3HMHVC >]u]!!#7"mRopŘ�֌rPR!.Ph\ЕLvB@ԼRƤ-2ёWվdrR*@,jY^K6j^YeXI4E T$Ep<jꙢm� wvC2:Y?SD\0�QY\F1r=>Tu[;u$cttE`)I,ћE�M 04S|0 M D5D]v9~$tI8<Ŵhi}۳[v_h]hxygp nuK*ҌNƛXڳ0`1oFVs}Um+ O MǼ+FǴ""'0֞2Y_9SH++d.XF$^״* =Ut={# MJ*fʘ(bTzfMB[:%ԵꥎQ;2>VtAAM,luQ}FIHMM>M>;!tn:HMSBK$8FM:m1NZkZ Y1@ș8F2!Aa$6t 13&+H8" V>RrbF )HDEoxF0/ac6ĤE#[s;=Z9~2BqgQG82F<4Eq]KO)4:mE]k xb2avW/6SSv<ż7,_Q?<#t~J8&!Q(ѿ_y4yVp$hI}uPh:.O I('*. JZROn޷7Q)`U}4$<VoJkOWݻwKWUNQCLdmU_xDqJlm! -+C^۰HsG]9fʲڶϿLni%. <կ#kVu<͞ ҳw,eXụP 6Z|[&)Vij%{Zj%5\[ %˘~tS]%Zɀ^(bDZcMG/9ry<6DSW\IcNj�mE\xm ɳZv8!)LFU{?jJbZG9�|%5ݤֈWѺ)s&1UMY7*B[9c6kλFz9KiON%(XJ*k�Z$�Dts?S'Q)'O{I ,`dĪfňpmbVH<V ~mfەG(cPSRGO qέ,,qZ_?_Wib|~擠^ [>15T,p,*I|d"˝9fMr'dd^CwZtT.#MYC| ZN*ZYX3K8=` Se֖4o[ |ݢN�Qöjն?_'U%e2]W\GrmkI'^rKw_GQ,#:}5zzu$׵dnE,RB[ /kCλs:zI3I[9N+�8 g\6͖�OVKڗg22˲pagRL8VYQFuKLB_Vb?jQ]ZR�*GhDcl�*Xb/ʼ /�UvjqGf}OΊ2+sx!/:?tB_�R+y fJ_{ԏX=r�Ӓ)>nD5�حgIm^L>LjCfN8䌊"(焦1թɵ[}U7R|~<e(HҒ*H䆘ݐH3yoƈEb1R C6ړ6ќ?mܳ<PG^0F) ŖNmot9ImƗ:N B.Yh.=:`x]Ma SS11<A}O[;2qoG24ѕ@2 Ve]_kڕ=5;TxyYV rUCO+((Taré,)r[/�<.?ikkn?e.X2zlsݫG@ttuس뱐uy:I>P3ӗtL\lS.l\&Oϯ ۔o/I.$ќvZ9h a_}<(*Lbږ(KiV3_:ݴWvӧ(w:�626^D!voR͕Ѡi߂<v�]KSwjHM.ߢAyI0LPK�W&mV}fΰWg&vְϓI i |H:nH}dϩٟfZ=VW i*ba #�,U|KB�ҽG�(OmĿ^#�Ta8nwh*C3Z6c"&gĖ SeG�Z �\H !AB?7Ci幺\Ȭ1x Xݿ?+ JeUG2̎9>(TeAE�AR$}-t~cehz=C�è?H>*> /t_/[៙q_RpR�-H�_$qW\=¼,GgèITuHWI\첊1d�)x%354RO<lqF7u| x=�"1Jn kVNw/o6 GF$4TTԂ[E޵Hb>P[cH5 QSME{ȑfz\KyGPtt դWi&馒N_ ]uҍ8"Q]R?]x]L+&_"5N$()opY^ҐO!c)rl'R'E0<ʯCuErz$:YeTOw.|X5^p&?s-6P]%"<%cZTCȻ9K6ʳn9.]β8uvYT4|Kh]17GֵXү"`4H"7YkbX4DVā鲳t4zu}oLZAEh/蓪.Xy(Mei a+S#1Sw5G2^-iN˙kbK$ /!+`Un`bM 1j=ըFTq-t[/9,`FjtA%i-<àvFPZ&d,Qф0"dF,+C,rɪQ\E)fwLJyb!Ɏ_±WR1qM\)pN1rWJRǻꋊbNVﲟCKoy!MXX}2rMm{IҒu*&IdFrh,N Ӕ#@h]|j#gH`uqtUntuI4U`du 62S�: h6Rc.?ꡋa.7_kw̥D˻ox,-w[j pP4 O\/袒K_"Ld<ٷwz?j/(5m&X`hAۺLb.ξmQE%m6sÚKnd[_6KPd3 2č1Kg`Ud[1sݴ`r|SS�{XW֘I\9n+n+ݷ[ʙHnK6$i b͐%N!zA(把W_a+pTlw<I t޾R- ƄPd!G*b[U$qocTTerǃ#k>TK(Jl~^cwY֬:h�?|~?q h)Րkg?EU= Ihe=M:¼#.jڑ.G4?mVal ]6$r~Xm?d ";hN]f.^HH-_:XnbI=&O\eyȳL7Ͽm|C/$%?S-xSB9g?Ao3ˀ)f�=-E˯菥 � 3Q_I2Kúu9εt:){Z^h7e$>q\F.Sn:nzzAnEb\~_#3K),}Dž,[9FȬ,}ܔɬ+dz4� h˲ )E"^t,A<IwYgP5}Q"J7x~ʙ)�1{1Qh&&Xj XYFtW^KDEvUzĨ�Q}iԃ]~+$aR�/I><9%<�ER�-U݃ٚXQAL> hy�&=Ԇ|JMH4[a&I<d2m!.Vbo>HIAA%6$,SMhc&n'}NMrs5pZMY$d%[+I4 &'CSI&¦xd(!ٕ\3<c!SMJ}Lkw8)cI(*(ᐆJjsOHdL2k"bڙrZ='r[AHJ!u|lbҲoL5% %@2ERE$"C$qyz�Ȍ�Y�ߎ�US]lS RO7)xt쉆2%ykZ;F=l`/)9y=}wojek"a0$PUR I-HSlu;| � sL $5>枯"Qx;f-mQ랾iolg/a>rȱ bBq(vYK{洟^Uʺ4Ŵ1+dg1NTI "Cn۝Ph tI銤G=^-ܤbZը=~x� Q_>eDs R<9HRŖV6>[w}Y<S /iu.Zc?9j.):YX'&:,h(&tȱљ|�x@jëHDiJ\)F&[5e[?_{2O Xu|w`L{n+F|ׂ'7q%51yz4x�ܒ3, qCrT x=q%ɒ@KI527#Ql%ErK1+1MepZ$9m˫{]˧WǶti $>D7()7.D?i]2=Iht2`Q[8V=8fmWQMD"y:A#hJ4tV^4i$a[HTQn24F HY{]n0^o¢H}h gg-j44ۭϣ(YDH$ˡaWuyrtI MdfID`@K$uaM.ʰt~"$W7ʒe&H @G m궞kJ!i."%1w.]ܿZmRy-_F;ep͙n)CKKEU6\ފ:r!N$u5ޟ MxMJJ1lE`^OiU1ݳ7[y"";o=KE@%Q+wl-n:Qy[:yj˅VU`�[U2Iq~ 6(Ԫ)w2Q[ۥb[$KMцZH%mHzy4]Lbh`% N2]<xFYtHwLp1'.\JOYQ?rnfȝ #e;!BZ̚ +z< nu21:5Qi=o?>[}M {?"6ĊxI\bЕ eJnIWx)q*x޵jO&]Jy.+%. V<ḙicQ"9(l(T۔P3}s$7d7HT>ٿFU6#.T߬0hu@:{:%d/쩂$ ' (]wS`Q$]62QE@S�`I¢ &(WdȏB~1}]ߖu@J\_v^ҫi_ N\S[~A}ond x%n>}_N{<[to]KIr@8#qR@nۺG5[X:[E/T<vSNʓk<H4jHCmwgwu*ȎH]9xDbK/UH^4j^qݢ+l´HsnhhHr f~'TCw"Q':*p=驹|gģ./iN[z!y˅o1[Y-.QJ~D5i 9Q(|ӏhix<5ycvYE-T@Ɨ'[ Rl/))_NH1Go/NX<.s cB�g""{Y%&Bm4Dn"3/|1TCHCL9enjgh2o:H Lrsx=m\zi=uC=Wx>1&ƧT1~>2Q];kNIpB.RecZkқt:י,;֢bnQoȍDkmM!7Pԗˬyg-03wJȀU$J�qi:uYZ!^eY+%vZh!>oD)8fB/Pw}*(ΝW.fEr|U f0[$Y]F-;头G�˯~*GxVp{Q5O� Z..} : ,ЇT^ͪ#q[͗wS/ &uExۘDtyKR6FPH j14^NH搵9EzԚUtǃ5h[)*jeo 9Fmp@ɛGSG$a>:rlPK%a7I&jvԵb?-iqVٖm)DI0II� qE1 pEkv++�{�*i%%FI-la(䐪cezb!'my]M_ic K1B7qq˛QrڑF# \Cl.2}O,ڊiڲ>WkaůU,˙t(D#` hs5>eЁס()J&tuu##&4]K:6tEDĒ$1Hj%:9Hs ]g*tl/ ƭao,23yh*HHĄJB\.䪲 L@:-H͙Y|QB?+~}??uzU�[Q__O:ïkY^0YVf_g Dcܼ_Um˒Jg 㢩;l^}j](y/O]b_s UE<)fr[&`6E͗0jZmWF0KKZ=V*KɾR52J("^[%ÚYI$tthddN "()#u1"3aS5WF6ϯkQ~Ni,GE0Ĥ[,v0H%,ż#;�5G{?W7+ơ_ͺ�I"DoIwE|4 Q"tt8'F]Qщ %ˉe(Lуtu$.U/ :Y?ix,l>[e$ LYE(=e]]{m+M FN]VxgsEYu)FWUwX],S!+J+]MhdF<[-WI+~=S7tIl<\%G̪ rRH%i6wʴ!,IFJՔ!2kR3N80dkBЙΑ#z^káh C(%$e"̈́\*Ku2\Il΀ ]u.թhŷh.qO+dpn1ve>0:5֠8>nb$ bQ$fMv'vLݕ!f%6bo}�*qHܢ%YKܻYAE̟#EQđi(:Z`=_4]@HgMJ3YSDVH:h΍^:-#QT}}e{I)0Tft%[I*DF1YU};.mS!q.f|*%"ۿĤC?tK5Ywy{v-;Ko{ZZΥ6ngSݮǛN7l-r)uULS qpu¥vnY}BOuğ~�Trlo7O nދp-]q~$eTԏԝuEK*tS*#.o["MMRo vTR$ȪtU5j rOE/)RYG(e2CQL!oZ|Fw̆H!�YGwV_%[ЪM*Ꝍm _Qxn8Y].Vo0i�ISRYc1/&\^au-B(ijT$jȯ-?ݩtj HF s9|$^7wV+Z']P__CjUMiEoKduTJ._�̴FJRF;Y�.nEv⨹}+ITtlR*xNyB +� ""S! <$KNaL;WzFZ[�I2އ= /xg??J M-No"z4{w0лsB)7$..Krúk{Z[7cәHi2GqWljIj݈2]RrQ|~g3妔`o$XS\0v_w섡&>_mrd.Y C<IP,8nͻn_0D[dQwd}e}Jl:OՔ2˞+v/,E[ \&D* ?/xX̓A�G(~]?LC샗ResgNeTaSvbVU��RPEʭR%KWg ݟIԌ@.Y{ oj )\?[*`>Y1w%N�T~5e�'%w6="�Cri#*eUɲ$=9d}MvZnL8bb7[p[o_1[UˠVr :/!2$ !/J2Z$; nǣ%ChD B%@W MsoK2"bf2\VA-Pǭ9q:ѧoiSDlY~ #&FTS OlclkmAgAֹ< !Dhݱ1*ܰ` B ^=3l MF$S uKpo/tؔm|O[\SrͲ=^1OeN¶%}W4Il蘒dwT3֗y91ɍLW"gF! 2@3 "cĭ!&DN$kCM>Oܕd!9u|[XZ.ξ13PJ{<N%xOK/`z @їϨVl6󳯝;wP_�|YVWp:s-_V6Zn"ar[ETaLf#NX[@e+Iu婜vN#bWQVPX*( �ݘ~UҴ.'qf5n <mq11WZxDhRŗm&RXˈ_w]k8VyX5= mK8VyX~xиsAQ^d.k:I)RHr yHR$E2r$g"* $Hy=+Q(bvQQn$~di9vzԒ|?{5GvDiC}.{!۽|^o?Ɵ+ۥxx|,H5X {?= e&wn=|ۿW&$'OVd~+g$$X ̎NgI2U�:ttRdEƶx%]})7)4u;z,ʯ(4~:Y:�Ȕ߮iR?\^$HBՓ)&J8䲎qs{\?P!믅GR}ʝ <3xWYU۰W}-m5Y%]\ftlp_HM{7xFlݫv$trjeȪa(ucDqB+Temj/ eC bhCe Iae9`%c,xcEKuu[AvQX#+DVC�<V@Za1 [ĠXt.%☠kJDI&wL*h3cWJa^K:0uYMH`H<]K?Dč2HLcQē($]`#?eF~~Uང$% 1Sl%\ɗQoF&"/M2űi[ ]uduPDXʦl'f*L21}KeYFt9}U6hn_Ÿ͗jT'ָ}/3e)]G7Eng[oO 8s]Q\[wZ|0> v[|e&)]s*0nHu۾v/2_EY̜E迧̵t/_6¯dɰ{AS\?*zm]^61Gvg7MF_U^/-JuzZ,ꮴFdڹXxyG+Q|6e|.ʡTxKvQ]5,xm'2(x,A_κMA� qQ�;@@ YJ^SYw."_O׽DW=a�״JR=M�mO�el #4V% MtZS D[wuF;W9XmIn8IO>@o1\7𸟛W̴5Bye? m-se DDfGqKbAwB Ŷ99pKl뗮^q@H\e Ȁ:TŹ1TiZ5vp] j+Of[N/֬NWK:䳪βqYudH[Bm|/IAlX'be".G(bRx䓎G/#R/?eg+g.}b$=/i_̼,ِƙWv?«+ _{C�ϯ=/3�Б ; -L?(v?.}.eTAO>Qmo}i(idmGQa\7hS;%bo` (ʀFjh`1ESeOf.o-_*5MaQ!˘K7=?΋? ;^?Jk+#,eXF]\Fή,C'+HxHrľ'o7:LVfmE8GXŨ ,4<FKItO)-ʹ'w-m:(+hld0{vcäI(9Gh"Rm6wlFBf(c/ju;eNm!|e 1ӌ[&+p!OꭥjXQ ogZ<Ի?l45'&IK 2%3KEhRb赥3dFAgJgYgF{:&$$lX8IOu�bF&:{Gx**ppݧ!3m>O ,>kLNqCTV�ٲ[[ǯ̾tNj7C�ģؔ˔p/z.5d 9%/�ú}?$BXc_ZUDBbcK+DIvƜ>t95DX|ɆFD婋A]  88m!/;.Q.[GM9fٖ_!1yvwvB�MK)U`iV OaJPYiW\'/Q re>jYJRvW”u|\*$xQԙxTssv.Y-"닯U(,}'^t$^ IK7 u{Uk7QgwA$ov{*<r{%/(hyj+KE)/v_MmxD%XzfYw{?w<uR,9%{rJrB}[@u"K"X3̖棉_^Jw"N U7K'^"@D:9%*63H:Y-%ܲnJ4L n[<eQؔmWExe%e5p*�Cdf,=~P2G+9%f.).C=MяT]V0.ۋ{/QBD[I3\YY[LzwEҜrQq|Hv:IےSD}h] t ;'DRt"q}21mo̞9s\ۿU#XUU}u-YnlN]qB좫ܗc"ו- 뮼ҙ Fq& H1uhjCѳH|cs&21L32c#] ɂIѠG&(IhN$4ƑCLbG$% Ow#D0I1(b}~>]x$X&`]x o]Ě]eE Mޡ^Vd/u^e%Fƍ@%Q<&}W ar^OGYi{)g廽wjEe;][KʉMTOԶ˽UܺbF5AEx,̮Wk_~ui*vZ쾣TSStXhe*$/boCJ1D"� "-k37ȳMN1b f33| z爮~=SlٗWُ~âּ }O?)Pb[ q7|n"6uOpYoaiث9I~Λ y X |M|Z]QՕMLLY rm/ZBtxcoz-z_/@axx_H�WQ:ú%r=e ut!Fu;rX֖-εt. rtБ r'$$$He1nF]5ui.Y&VYVbXF�7#|�ebxK o x3SuoqMo2O{&iyVn>Ky}M?skY++:m#f):( .^d$B$lĨ["<[Nwҝ =elN >^>oTdVk!Vst芋#wꏲ*+•I~R%Q�׉VVݽLD=O2(읃}DIv{oB?qM'(�鈨>R}aC셅3]źe޷6^RK^u|j=n+Dw۸yEH(\ٹT6KDH "!:f+<Bl^[ۿE:ets$(7M$3!\%~bmZZ86WRK)[><K$(E%1^QɴW3wV FR,M[mx8y~RF5K=%L'($m-+o#4d.@qv;+|=("ִ9㐶{Ma g$qe&-B&VZ)dg;>GJהzM٦3tt%k _u=z>UiIXAt%34CRYTLfizuR Hk:δh1Hbtw$9REoM1S/~oQ)0VeK._bڎثovFP_ȷucSESI)E<E !;]NYc!_>z�,-_=� = =/7fX\U0*(^WgZᣃTRᓍ$w*\wR�3?oY׬=e]I(+ 6\ [g1j}_zOCW?�Qv^k隚v^vw*߻Ш˗[Uu-;6Hnr&Ż=]ԡ#*SCEQYM[Żuë|.n0rBnfq|]@0Llu׬);J65ٲkR~nȏk1|/E[~C,nw|Qr}4߬IOZ$/7ٿ|nK8ep/]swH,E$I%ܾd[Z!Gy4$vi.\=KUX—ڷI?k//(L.BW-]I[E6`d}u$]ue_*SكInK's(x,`{7K.0[ d~d.H5h]DKdH@t$@\ArJFD$a;Y:Y\3]K%Te"F>*9EZ`81͘Kvd 7B7qˬܫ_n(X4B[9.!ynt ØK{CM ZYR x(aY~Ҧ98]aKfIŦ wLI$ʶ<"ܼ.Xu4%Y)(*Lȇ3gIlAyĘΐΌU.EыCbHF. {:1ttL#䛑3!ΉYщ#09C:1th,1GgD.ioNP5Pս|E P&_Fվգ|j1ɛF]t-'iCiXLFh]L}} jS'FѤ/mz([D.kD*5WFI7]xޢۮ%h?o#ljb=zSf QVc߲]AK޼/2~W�2UbR]4q7u<C�eEYY&/z۬t%>K꾫v,|%^'\谠zx-1aϫ{wԑYWZ_ˢ[UR̟~|#SWJ$vcTUT,#-fIYj:JY{C"eUKUhk㙿/轗}=Llj_{/$$ If\ְ"R2Zú[̻;ְ 'C[ ҈e0 h5kJCy*r)j(*<ΕC f^ DmbD|jem+^KS3�[*y 泚j^&$LK/"E'@{%jTr > c-QAѴwF1ތmL/BB�%\Ƭps,Z*oesI$üU(<d  UgN6nطUsO�zLDcIE7Y"EKb-�H>)w  uĭ_BxTTrw.\e\1QHxCnX5uKb(Eh$y*+;n{*wtY{ɉ]}yemMU\mO# GnHck3j[^Dc9")$dy2G!p;[fv}mS'53 '&"!Z"ϩٮg;d)'m)vp yve%ڟu̶)_qt"s}c_/AʰŊהwo+Z˖'dXY|g8n'Qt :4.\ҏ/ν_[8=40]4I ]:Fx; a$53"gKֲΘJCX2i3Z$$K {FѦ3AS+)c!-~vZ`dq}qFȸMeK}NizF'6'Q_p_ vPV]!9Hx% 1gk�:eO DdMQxO/W_8Cz9|J_��>EK9--\'��SkTgpb4OP-6L쯗rJPxkUlꚜ3 êʒ{z '˭&ݥ *{] =H1:B-τ|юOCRtulܛ y׽t5}+FPk�/J_]Rօoqy:Vuq,lzT'75/eڷJׯi{l*Ҡsorlܽj@sٔW,JutIIuK; 'K9RܒCvvRȻ^Q:YlFd@di6FˮK- 9$Ȁ 6*$]zBq2dn䩠v$ĖNd]|]B9%,9!uBd)d[wY7K'BĵutЈJ쥗 z쨄5yZݏ;K*4sɑ[ײHuF]R<bc0W-OHpk~$a!xn:0r_CTSVEout {n/ijY(I%. spU"h\ endstream endobj 12 0 obj << /Border [0 0 0] /A << /Type /Action /S /URI /URI (https://www.youtube.com/watch?v=EJ09pSuA9hw) >> /Subtype /Link /Rect [48.24 525.315 547.04 805.89] /Type /Annot >> endobj 13 0 obj << /Type /Outlines /Count 1 /First 14 0 R /Last 14 0 R >> endobj 14 0 obj << /Title <feff0055006e007400690074006c00650064> /Parent 13 0 R /Count 0 /Dest [7 0 R /XYZ 0 841.89 null] >> endobj 15 0 obj << /Nums [0 << /P (1) >>] >> endobj xref 0 16 0000000000 65535 f 0000000015 00000 n 0000000262 00000 n 0000000463 00000 n 0000000520 00000 n 0000000571 00000 n 0000000843 00000 n 0000001009 00000 n 0000001336 00000 n 0000001378 00000 n 0000001426 00000 n 0000001478 00000 n 0000113586 00000 n 0000113770 00000 n 0000113844 00000 n 0000113969 00000 n trailer << /Size 16 /Root 2 0 R /Info 1 0 R >> startxref 114014 %%EOF ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/running_content_spec.rb���������������������������������������������0000664�0000000�0000000�00000170560�14163570564�0023300�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'spec_helper' describe 'Asciidoctor::PDF::Converter - Running Content' do context 'Activation' do it 'should not attempt to add running content if document has no body' do pdf = to_pdf <<~'EOS', enable_footer: true, analyze: true = Document Title :doctype: book EOS text = pdf.text (expect text).to have_size 1 (expect text[0][:string]).to eql 'Document Title' end it 'should add running content if document is empty (single blank page)' do pdf = to_pdf '', enable_footer: true, analyze: true text = pdf.text (expect text).to have_size 1 (expect text[0][:string]).to eql '1' end it 'should start adding running content to page after imported page' do pdf = to_pdf <<~'EOS', enable_footer: true, analyze: true image::blue-letter.pdf[] first non-imported page EOS pages = pdf.pages (expect pages).to have_size 2 (expect pdf.find_text page_number: 1).to be_empty p2_text = pdf.find_text page_number: 2 (expect p2_text).to have_size 2 (expect p2_text[0][:string]).to eql 'first non-imported page' (expect p2_text[0][:order]).to be 1 (expect p2_text[1][:string]).to eql '2' (expect p2_text[1][:order]).to be 2 end end context 'Footer' do it 'should add running footer showing virtual page number starting at body by default' do pdf = to_pdf <<~'EOS', enable_footer: true, analyze: true = Document Title :doctype: book first page <<< second page <<< third page <<< fourth page EOS expected_page_numbers = %w(1 2 3 4) expected_x_positions = [541.009, 49.24] (expect pdf.pages).to have_size 5 page_number_texts = pdf.find_text %r/^\d+$/ (expect page_number_texts).to have_size expected_page_numbers.size page_number_texts.each_with_index do |page_number_text, idx| (expect page_number_text[:page_number]).to eql idx + 2 (expect page_number_text[:x]).to eql expected_x_positions[idx.even? ? 0 : 1] (expect page_number_text[:y]).to eql 14.263 (expect page_number_text[:font_size]).to be 9 end end it 'should not add running footer if nofooter attribute is set' do pdf = to_pdf <<~'EOS', enable_footer: false, analyze: true = Document Title :nofooter: :doctype: book body EOS (expect pdf.find_text %r/^\d+$/).to be_empty end it 'should not add running footer if height is nil' do pdf = to_pdf <<~'EOS', enable_footer: true, pdf_theme: { footer_height: nil }, analyze: true = Document Title :doctype: book body EOS (expect pdf.find_text %r/^\d+$/).to be_empty end it 'should add footer if theme extends base and footer height is set' do pdf_theme = { extends: 'base', footer_height: 36, } pdf = to_pdf <<~'EOS', enable_footer: true, pdf_theme: pdf_theme, analyze: true = Document Title :doctype: book == Beginning == End EOS pagenum1_text = (pdf.find_text '1')[0] pagenum2_text = (pdf.find_text '2')[0] (expect pagenum1_text).not_to be_nil (expect pagenum1_text[:page_number]).to be 2 (expect pagenum2_text).not_to be_nil (expect pagenum2_text[:page_number]).to be 3 (expect pagenum1_text[:x]).to be > pagenum2_text[:x] end end context 'Header' do it 'should add running header starting at body if header key is set in theme' do theme_overrides = { header_font_size: 9, header_height: 30, header_line_height: 1, header_padding: [6, 1, 0, 1], header_recto_right_content: '({document-title})', header_verso_right_content: '({document-title})', } pdf = to_pdf <<~'EOS', enable_footer: true, pdf_theme: (build_pdf_theme theme_overrides), analyze: true = Document Title :doctype: book first page <<< second page EOS expected_page_numbers = %w(1 2) page_height = pdf.pages[0][:size][1] header_texts = pdf.find_text '(Document Title)' (expect header_texts).to have_size expected_page_numbers.size expected_page_numbers.each_with_index do |page_number, idx| (expect header_texts[idx][:string]).to eql '(Document Title)' (expect header_texts[idx][:page_number]).to eql page_number.to_i + 1 (expect header_texts[idx][:font_size]).to be 9 (expect header_texts[idx][:y]).to be < page_height end end it 'should not add running header if noheader attribute is set' do theme_overrides = { header_font_size: 9, header_height: 30, header_line_height: 1, header_padding: [6, 1, 0, 1], header_recto_right_content: '({document-title})', header_verso_right_content: '({document-title})', } pdf = to_pdf <<~'EOS', enable_footer: true, attribute_overrides: { 'noheader' => '' }, pdf_theme: (build_pdf_theme theme_overrides), analyze: true = Document Title :doctype: book body EOS (expect pdf.find_text '(Document Title)').to be_empty end end context 'Start at' do it 'should start running content at title page if running_content_start_at key is title' do theme_overrides = { running_content_start_at: 'title' } pdf = to_pdf <<~'EOS', enable_footer: true, pdf_theme: (build_pdf_theme theme_overrides), analyze: true = Document Title :doctype: book :toc: == First Chapter == Second Chapter == Third Chapter EOS pgnum_labels = (1.upto pdf.pages.size).each_with_object [] do |page_number, accum| accum << (pdf.find_text page_number: page_number, y: 14.263)[-1][:string] end (expect pgnum_labels).to eql %w(i ii 1 2 3) end it 'should start running content at title page if running_content_start_at key is title and document has front cover' do theme_overrides = { running_content_start_at: 'title' } pdf = to_pdf <<~'EOS', enable_footer: true, pdf_theme: (build_pdf_theme theme_overrides), analyze: true = Document Title :doctype: book :toc: :front-cover-image: image:cover.jpg[] == First Chapter == Second Chapter == Third Chapter EOS (expect pdf.find_text page_number: 1).to be_empty pgnum_labels = (2.upto pdf.pages.size).each_with_object [] do |page_number, accum| accum << (pdf.find_text page_number: page_number, y: 14.263)[-1][:string] end (expect pgnum_labels).to eql %w(ii iii 1 2 3) end it 'should start running content at toc page if running_content_start_at key is title and title page is disabled' do theme_overrides = { running_content_start_at: 'title' } pdf = to_pdf <<~'EOS', enable_footer: true, pdf_theme: (build_pdf_theme theme_overrides), analyze: true = Document Title :doctype: book :notitle: :toc: == First Chapter == Second Chapter == Third Chapter EOS pgnum_labels = (1.upto pdf.pages.size).each_with_object [] do |page_number, accum| accum << (pdf.find_text page_number: page_number, y: 14.263)[-1][:string] end (expect pgnum_labels).to eql %w(i 1 2 3) end it 'should start running content at body if running_content_start_at key is title and title page and toc are disabled' do theme_overrides = { running_content_start_at: 'title' } pdf = to_pdf <<~'EOS', enable_footer: true, pdf_theme: (build_pdf_theme theme_overrides), analyze: true = Document Title :doctype: book :notitle: == First Chapter == Second Chapter == Third Chapter EOS pgnum_labels = (1.upto pdf.pages.size).each_with_object [] do |page_number, accum| accum << (pdf.find_text page_number: page_number, y: 14.263)[-1][:string] end (expect pgnum_labels).to eql %w(1 2 3) end it 'should start running content at toc page if running_content_start_at key is toc' do theme_overrides = { running_content_start_at: 'toc' } pdf = to_pdf <<~'EOS', enable_footer: true, pdf_theme: (build_pdf_theme theme_overrides), analyze: true = Document Title :doctype: book :toc: == First Chapter == Second Chapter == Third Chapter EOS pgnum_labels = (1.upto pdf.pages.size).each_with_object [] do |page_number, accum| accum << ((pdf.find_text page_number: page_number, y: 14.263)[-1] || {})[:string] end (expect pgnum_labels).to eql [nil, 'ii', '1', '2', '3'] end it 'should start running content at toc page if running_content_start_at key is toc and title page is disabled' do theme_overrides = { running_content_start_at: 'toc' } pdf = to_pdf <<~'EOS', enable_footer: true, pdf_theme: (build_pdf_theme theme_overrides), analyze: true = Document Title :doctype: book :notitle: :toc: == First Chapter == Second Chapter == Third Chapter EOS pgnum_labels = (1.upto pdf.pages.size).each_with_object [] do |page_number, accum| accum << ((pdf.find_text page_number: page_number, y: 14.263)[-1] || {})[:string] end (expect pgnum_labels).to eql %w(i 1 2 3) end it 'should start running content at body if running_content_start_at key is toc and toc is disabled' do theme_overrides = { running_content_start_at: 'toc' } pdf = to_pdf <<~'EOS', enable_footer: true, pdf_theme: (build_pdf_theme theme_overrides), analyze: true = Document Title :doctype: book == First Chapter == Second Chapter == Third Chapter EOS pgnum_labels = (1.upto pdf.pages.size).each_with_object [] do |page_number, accum| accum << ((pdf.find_text page_number: page_number, y: 14.263)[-1] || {})[:string] end (expect pgnum_labels).to eql [nil, '1', '2', '3'] end it 'should start running content at specified page of body if running_content_start_at is an integer' do pdf = to_pdf <<~'EOS', enable_footer: true, pdf_theme: { running_content_start_at: 3 }, analyze: true = Book Title :doctype: book :toc: == Dedication To the only person who gets me. == Acknowledgements Thanks all to all who made this possible! == Chapter One content EOS (expect pdf.pages).to have_size 5 pgnum_labels = (1.upto pdf.pages.size).each_with_object [] do |page_number, accum| accum << ((pdf.find_text page_number: page_number, y: 14.263)[-1] || {})[:string] end (expect pgnum_labels).to eql [nil, nil, nil, nil, '3'] end it 'should start page numbering and running content at specified page of body' do pdf = to_pdf <<~'EOS', enable_footer: true, pdf_theme: { page_numbering_start_at: 3, running_content_start_at: 3 }, analyze: true = Book Title :doctype: book :toc: == Dedication To the only person who gets me. == Acknowledgements Thanks all to all who made this possible! == Chapter One content EOS (expect pdf.pages).to have_size 5 pgnum_labels = (1.upto pdf.pages.size).each_with_object [] do |page_number, accum| accum << ((pdf.find_text page_number: page_number, y: 14.263)[-1] || {})[:string] end (expect pgnum_labels).to eql [nil, nil, nil, nil, '1'] end end context 'Page numbering' do it 'should start page numbering at body if title page and toc are disabled' do pdf = to_pdf <<~'EOS', enable_footer: true, analyze: true = Document Title :doctype: book :notitle: == First Chapter == Second Chapter == Third Chapter EOS pgnum_labels = (1.upto pdf.pages.size).each_with_object [] do |page_number, accum| accum << (pdf.find_text page_number: page_number, y: 14.263)[-1][:string] end (expect pgnum_labels).to eql %w(1 2 3) end it 'should start page numbering at body if title page is disabled and toc is enabled' do pdf_theme = { running_content_start_at: 'toc' } pdf = to_pdf <<~'EOS', enable_footer: true, pdf_theme: pdf_theme, analyze: true = Document Title :doctype: book :notitle: :toc: == First Chapter == Second Chapter == Third Chapter EOS pgnum_labels = (1.upto pdf.pages.size).each_with_object [] do |page_number, accum| accum << (pdf.find_text page_number: page_number, y: 14.263)[-1][:string] end (expect pgnum_labels).to eql %w(i 1 2 3) end it 'should start page numbering at title page if page_numbering_start_at is title' do theme_overrides = { page_numbering_start_at: 'title', running_content_start_at: 'title' } pdf = to_pdf <<~'EOS', enable_footer: true, pdf_theme: (build_pdf_theme theme_overrides), analyze: true = Document Title :doctype: book :toc: == First Chapter == Second Chapter == Third Chapter EOS pgnum_labels = (1.upto pdf.pages.size).each_with_object [] do |page_number, accum| accum << (pdf.find_text page_number: page_number, y: 14.263)[-1][:string] end (expect pgnum_labels).to eql %w(1 2 3 4 5) end it 'should start page numbering at toc page if page_numbering_start_at is title and title page is disabled' do theme_overrides = { page_numbering_start_at: 'title', running_content_start_at: 'title' } pdf = to_pdf <<~'EOS', enable_footer: true, pdf_theme: (build_pdf_theme theme_overrides), analyze: true = Document Title :doctype: book :notitle: :toc: == First Chapter == Second Chapter == Third Chapter EOS pgnum_labels = (1.upto pdf.pages.size).each_with_object [] do |page_number, accum| accum << (pdf.find_text page_number: page_number, y: 14.263)[-1][:string] end (expect pgnum_labels).to eql %w(1 2 3 4) end it 'should start page numbering at body if page_numbering_start_at is title and title page and toc are disabled' do theme_overrides = { page_numbering_start_at: 'title', running_content_start_at: 'title' } pdf = to_pdf <<~'EOS', enable_footer: true, pdf_theme: (build_pdf_theme theme_overrides), analyze: true = Document Title :doctype: book :notitle: == First Chapter == Second Chapter == Third Chapter EOS pgnum_labels = (1.upto pdf.pages.size).each_with_object [] do |page_number, accum| accum << (pdf.find_text page_number: page_number, y: 14.263)[-1][:string] end (expect pgnum_labels).to eql %w(1 2 3) end it 'should start page numbering at toc page if page_numbering_start_at is toc' do theme_overrides = { page_numbering_start_at: 'toc', running_content_start_at: 'title' } pdf = to_pdf <<~'EOS', enable_footer: true, pdf_theme: (build_pdf_theme theme_overrides), analyze: true = Document Title :doctype: book :toc: == First Chapter == Second Chapter == Third Chapter EOS pgnum_labels = (1.upto pdf.pages.size).each_with_object [] do |page_number, accum| accum << (pdf.find_text page_number: page_number, y: 14.263)[-1][:string] end (expect pgnum_labels).to eql %w(i 1 2 3 4) end it 'should start page numbering at toc page if page_numbering_start_at is toc and title page is disabled' do theme_overrides = { page_numbering_start_at: 'toc', running_content_start_at: 'title' } pdf = to_pdf <<~'EOS', enable_footer: true, pdf_theme: (build_pdf_theme theme_overrides), analyze: true = Document Title :doctype: book :notitle: :toc: == First Chapter == Second Chapter == Third Chapter EOS pgnum_labels = (1.upto pdf.pages.size).each_with_object [] do |page_number, accum| accum << (pdf.find_text page_number: page_number, y: 14.263)[-1][:string] end (expect pgnum_labels).to eql %w(1 2 3 4) end it 'should start page numbering at specified page of body if page_numbering_start_at is an integer' do pdf = to_pdf <<~'EOS', enable_footer: true, pdf_theme: { running_content_start_at: 'title', page_numbering_start_at: 3 }, analyze: true = Book Title :doctype: book :toc: == Dedication To the only ((person)) who gets me. == Acknowledgements Thanks all to all who made this possible! == Chapter One content [index] == Index EOS pgnum_labels = (1.upto pdf.pages.size).each_with_object [] do |page_number, accum| accum << (pdf.find_text page_number: page_number, y: 14.263)[-1][:string] end (expect pgnum_labels).to eql %w(i ii iii iv 1 2) dedication_toc_line = (pdf.lines pdf.find_text page_number: 2).find {|it| it.start_with? 'Dedication' } (expect dedication_toc_line).to end_with 'iii' (expect pdf.lines pdf.find_text page_number: pdf.pages.size).to include 'person, iii' end it 'should compute page-count attribute correctly when running content starts after page numbering' do pdf_theme = { page_numbering_start_at: 'toc', running_content_start_at: 'body', footer_recto_right_content: '{page-number} of {page-count}', footer_verso_left_content: '{page-number} of {page-count}', footer_font_color: 'AA0000', } pdf = to_pdf <<~'EOS', enable_footer: true, pdf_theme: pdf_theme, analyze: true = Document Title :doctype: book :toc: == Beginning == End EOS footer_texts = pdf.find_text font_color: 'AA0000' (expect footer_texts).to have_size 2 (expect footer_texts[0][:page_number]).to be 3 (expect footer_texts[0][:string]).to eql '2 of 3' (expect footer_texts[1][:page_number]).to be 4 (expect footer_texts[1][:string]).to eql '3 of 3' end it 'should compute page-count attribute correctly when page numbering starts after running content' do pdf_theme = { page_numbering_start_at: 'body', running_content_start_at: 'toc', footer_recto_right_content: '{page-number} of {page-count}', footer_verso_left_content: '{page-number} of {page-count}', footer_font_color: 'AA0000', } pdf = to_pdf <<~'EOS', enable_footer: true, pdf_theme: pdf_theme, analyze: true = Document Title :doctype: book :toc: == Beginning == End EOS footer_texts = pdf.find_text font_color: 'AA0000' (expect footer_texts).to have_size 3 (expect footer_texts[0][:page_number]).to be 2 (expect footer_texts[0][:string]).to eql 'ii of 2' (expect footer_texts[1][:page_number]).to be 3 (expect footer_texts[1][:string]).to eql '1 of 2' (expect footer_texts[2][:page_number]).to be 4 (expect footer_texts[2][:string]).to eql '2 of 2' end end context 'Theming' do it 'should be able to set font styles per periphery and side in theme' do pdf_theme = build_pdf_theme \ footer_font_size: 7.5, footer_recto_left_content: '{section-title}', footer_recto_left_font_style: 'bold', footer_recto_left_text_transform: 'lowercase', footer_recto_right_content: '{page-number}', footer_recto_right_font_color: '00ff00', footer_verso_left_content: '{page-number}', footer_verso_left_font_color: 'ff0000', footer_verso_right_content: '{section-title}', footer_verso_right_text_transform: 'uppercase' pdf = to_pdf <<~'EOS', enable_footer: true, pdf_theme: pdf_theme, analyze: true = Document Title Preamble text. <<< == Beginning <<< == Middle <<< == End EOS (expect pdf.find_text font_size: 7.5, page_number: 1, string: '1', font_color: '00FF00').to have_size 1 (expect pdf.find_text font_size: 7.5, page_number: 2, string: 'BEGINNING').to have_size 1 (expect pdf.find_text font_size: 7.5, page_number: 2, string: '2', font_color: 'FF0000').to have_size 1 (expect pdf.find_text font_size: 7.5, page_number: 3, string: 'middle', font_name: 'NotoSerif-Bold').to have_size 1 (expect pdf.find_text font_size: 7.5, page_number: 3, string: '3', font_color: '00FF00').to have_size 1 (expect pdf.find_text font_size: 7.5, page_number: 4, string: 'END').to have_size 1 (expect pdf.find_text font_size: 7.5, page_number: 4, string: '4', font_color: 'FF0000').to have_size 1 end it 'should expand footer padding from single value' do pdf = to_pdf <<~'EOS', enable_footer: true, analyze: true = Document Title first page <<< second page EOS p2_text = pdf.find_text page_number: 2 (expect p2_text[1][:x]).to be > p2_text[0][:x] (expect p2_text[1][:string]).to eql '2' end it 'should expand header padding from single value' do theme_overrides = { header_font_size: 9, header_height: 30, header_line_height: 1, header_padding: 5, header_recto_right_content: '{page-number}', header_verso_left_content: '{page-number}', } pdf = to_pdf <<~'EOS', pdf_theme: (build_pdf_theme theme_overrides), analyze: true = Document Title first page <<< second page EOS p2_text = pdf.find_text page_number: 2 (expect p2_text[1][:x]).to be > p2_text[0][:x] (expect p2_text[1][:string]).to eql '2' end it 'should allow horizontal padding to be negative', visual: true do pdf_theme = { footer_font_color: '000000', footer_padding: [0, -48.24, 0, -48.24], footer_recto_left_content: 'text left', footer_recto_right_content: 'text right', footer_vertical_align: 'middle', } to_file = to_pdf_file <<~'EOS', 'running-content-negative-padding.pdf', pdf_theme: pdf_theme, enable_footer: true text left [.text-right] text right EOS (expect to_file).to visually_match 'running-content-negative-padding.pdf' end it 'should allow vertical alignment of content to be set in theme' do pdf_theme = { footer_font_color: '000000', footer_padding: 0, footer_height: 72, footer_line_height: 1, footer_font_size: 10, footer_recto_left_content: 'text left', footer_recto_right_content: 'text right', } # NOTE the exact y position is affected by the font height and line metrics, so use a fuzzy check { 'top' => 72, 'middle' => 42, 'bottom' => 12, ['top', 10] => 62, ['bottom', -10] => 22 }.each do |valign, expected_y| pdf = to_pdf 'body', pdf_theme: (pdf_theme.merge footer_vertical_align: valign), enable_footer: true, analyze: true left_text = (pdf.find_text 'text left')[0] (expect left_text[:y] + left_text[:font_size]).to be_within(1).of(expected_y) end end it 'should coerce content value to string' do pdf = to_pdf 'body', enable_footer: true, attribute_overrides: { 'pdf-theme' => (fixture_file 'running-footer-coerce-content-theme.yml') }, analyze: true (expect pdf.find_text '1000').to have_size 1 (expect pdf.find_text 'true').to have_size 1 end it 'should not substitute escaped attribute reference in content' do pdf_theme = { footer_recto_right_content: '\{keepme}', footer_verso_left_content: '\{keepme}', } pdf = to_pdf 'body', enable_footer: true, pdf_theme: pdf_theme, analyze: true running_text = pdf.find_text '{keepme}' (expect running_text).to have_size 1 end it 'should normalize newlines and whitespace' do pdf_theme = { footer_recto_right_content: %(He's a real nowhere man,\nMaking all his nowhere plans\tfor nobody.), footer_verso_left_content: %(He's a real nowhere man,\nMaking all his nowhere plans\tfor nobody.), } pdf = to_pdf 'body', enable_footer: true, pdf_theme: pdf_theme, analyze: true (expect pdf.lines.last).to eql %(He\u2019s a real nowhere man, Making all his nowhere plans for nobody.) end it 'should drop line in content with unresolved attribute reference' do pdf_theme = { footer_recto_right_content: %(keep\ndrop{bogus}\nme), footer_verso_left_content: %(keep\ndrop{bogus}\nme), } pdf = to_pdf 'body', enable_footer: true, pdf_theme: pdf_theme, analyze: true running_text = pdf.find_text %(keep me) (expect running_text).to have_size 1 end it 'should parse running content as AsciiDoc' do pdf_theme = { footer_recto_right_content: 'footer: *bold* _italic_ `mono`', footer_verso_left_content: 'https://asciidoctor.org[Asciidoctor] AsciiDoc -> PDF', } input = <<~'EOS' page 1 <<< page 2 EOS pdf = to_pdf input, enable_footer: true, pdf_theme: pdf_theme, analyze: true footer_y = (pdf.find_text 'footer: ')[0][:y] bold_text = (pdf.find_text string: 'bold', page_number: 1, y: footer_y)[0] (expect bold_text).not_to be_nil italic_text = (pdf.find_text string: 'italic', page_number: 1, y: footer_y)[0] (expect italic_text).not_to be_nil mono_text = (pdf.find_text string: 'mono', page_number: 1, y: footer_y)[0] (expect mono_text).not_to be_nil link_text = (pdf.find_text string: 'Asciidoctor', page_number: 2, y: footer_y)[0] (expect link_text).not_to be_nil convert_text = (pdf.find_text string: %( AsciiDoc \u2192 PDF), page_number: 2, y: footer_y)[0] (expect convert_text).not_to be_nil pdf = to_pdf input, enable_footer: true, pdf_theme: pdf_theme annotations_p2 = get_annotations pdf, 2 (expect annotations_p2).to have_size 1 link_annotation = annotations_p2[0] (expect link_annotation[:Subtype]).to be :Link (expect link_annotation[:A][:URI]).to eql 'https://asciidoctor.org' end it 'should allow theme to control border style', visual: true do pdf_theme = { footer_border_width: 1, footer_border_style: 'dashed', footer_border_color: '000000', } to_file = to_pdf_file 'content', 'running-content-border-style.pdf', enable_footer: true, pdf_theme: pdf_theme, analyze: :line (expect to_file).to visually_match 'running-content-border-style.pdf' end it 'should draw background color across whole periphery region', visual: true do pdf_theme = build_pdf_theme \ header_background_color: '009246', header_border_width: 0, footer_background_color: 'CE2B37', footer_border_width: 0, header_height: 160, footer_height: 160, page_margin: [160, 48, 160, 48] to_file = to_pdf_file 'Hello world', 'running-content-background-color.pdf', enable_footer: true, pdf_theme: pdf_theme (expect to_file).to visually_match 'running-content-background-color.pdf' end it 'should draw background image across whole periphery region', visual: true do pdf_theme = build_pdf_theme \ header_background_image: %(image:#{fixture_file 'header-bg-letter.svg'}[fit=contain]), header_border_width: 0, header_height: 30, header_padding: 0, header_recto_left_content: '{page-number}', footer_background_image: %(image:#{fixture_file 'footer-bg-letter.svg'}[fit=contain]), footer_border_width: 0, footer_height: 30, footer_padding: 0, footer_vertical_align: 'middle' to_file = to_pdf_file <<~'EOS', 'running-content-background-image.pdf', enable_footer: true, pdf_theme: pdf_theme :pdf-page-size: Letter Hello, World! EOS (expect to_file).to visually_match 'running-content-background-image.pdf' end it 'should warn if background image cannot be resolved' do pdf_theme = build_pdf_theme \ footer_background_image: 'no-such-image.png', footer_border_width: 0, footer_height: 30, footer_padding: 0, footer_vertical_align: 'middle' (expect do pdf = to_pdf <<~'EOS', enable_footer: true, pdf_theme: pdf_theme Hello, World! EOS images = get_images pdf, 1 (expect images).to be_empty end).to log_message severity: :WARN, message: %r(footer background image not found or readable.*data/themes/no-such-image\.png$) end it 'should draw column rule between columns using specified width and spacing', visual: true do pdf_theme = build_pdf_theme \ header_height: 36, header_padding: [8, 0], header_columns: '>40% =10% <40%', header_column_rule_width: 0.5, header_column_rule_color: '333333', header_column_rule_spacing: 8, header_recto_left_content: 'left', header_recto_center_content: 'center', header_recto_right_content: 'right', footer_border_width: 0, footer_padding: [8, 0], footer_columns: '>40% =10% <40%', footer_column_rule_width: 0.5, footer_column_rule_color: '333333', footer_column_rule_spacing: 8, footer_recto_left_content: 'left', footer_recto_center_content: 'center', footer_recto_right_content: 'right' to_file = to_pdf_file <<~'EOS', 'running-content-column-rule.pdf', enable_footer: true, pdf_theme: pdf_theme = Document Title content EOS (expect to_file).to visually_match 'running-content-column-rule.pdf' end it 'should not draw column rule if there is only one column', visual: true do pdf_theme = build_pdf_theme \ header_height: 36, header_padding: [8, 0], header_columns: '<25% =50% >25%', header_column_rule_width: 0.5, header_column_rule_color: '333333', header_column_rule_spacing: 8, header_recto_left_content: 'left', footer_border_width: 0, footer_padding: [8, 0], footer_columns: '<25% =50% >25%', footer_column_rule_width: 0.5, footer_column_rule_color: '333333', footer_column_rule_spacing: 8, footer_recto_right_content: 'right' to_file = to_pdf_file <<~'EOS', 'running-content-no-column-rule.pdf', enable_footer: true, pdf_theme: pdf_theme = Document Title content EOS (expect to_file).to visually_match 'running-content-no-column-rule.pdf' end end context 'Folio placement' do it 'should invert recto and verso if pdf-folio-placement is virtual-inverted' do pdf_theme = { footer_verso_left_content: 'verso', footer_verso_right_content: 'verso', footer_recto_left_content: 'recto', footer_recto_right_content: 'recto', } pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, enable_footer: true, analyze: true :pdf-folio-placement: virtual-inverted content EOS footer_text = pdf.find_text font_size: 9 (expect footer_text).to have_size 2 (expect footer_text[0][:string]).to eql 'verso' (expect footer_text[1][:string]).to eql 'verso' end it 'should invert recto and verso if pdf-folio-placement is physical-inverted' do pdf_theme = { footer_verso_left_content: 'verso', footer_verso_right_content: 'verso', footer_recto_left_content: 'recto', footer_recto_right_content: 'recto', } pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, enable_footer: true, analyze: true = Document Title :pdf-folio-placement: physical-inverted :media: print :doctype: book content EOS footer_text = pdf.find_text font_size: 9 (expect footer_text).to have_size 2 (expect footer_text[0][:string]).to eql 'recto' (expect footer_text[1][:string]).to eql 'recto' end it 'should base recto and verso on physical page number if pdf-folio-placement is physical or physical-inverted' do pdf_theme = { footer_verso_left_content: 'verso', footer_verso_right_content: 'verso', footer_recto_left_content: 'recto', footer_recto_right_content: 'recto', } { 'physical' => 'verso', 'physical-inverted' => 'recto' }.each do |placement, side| pdf = to_pdf <<~EOS, pdf_theme: pdf_theme, enable_footer: true, analyze: true = Document Title :pdf-folio-placement: #{placement} :doctype: book :toc: == Chapter #{40.times.map {|it| %(=== Section #{it + 1}) }.join %(\n\n)} EOS (expect pdf.find_text page_number: 4, string: 'Chapter').to have_size 1 body_start_footer_text = pdf.find_text font_size: 9, page_number: 4 (expect body_start_footer_text).to have_size 2 (expect body_start_footer_text[0][:string]).to eql side end end it 'should base recto and verso on physical page if media=prepress even if pdf-folio-placement is set' do pdf_theme = { footer_verso_left_content: 'verso', footer_verso_right_content: 'verso', footer_recto_left_content: 'recto', footer_recto_right_content: 'recto', } pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, enable_footer: true, analyze: true = Document Title :pdf-folio-placement: virtual-inverted :media: prepress :doctype: book content EOS footer_text = pdf.find_text font_size: 9 (expect footer_text).to have_size 2 (expect footer_text[0][:string]).to eql 'recto' (expect footer_text[1][:string]).to eql 'recto' end end context 'Page layout' do it 'should place footer text correctly if page layout changes' do theme_overrides = { footer_padding: 0, footer_verso_left_content: 'verso', footer_verso_right_content: nil, footer_recto_left_content: 'recto', footer_recto_right_content: nil, } pdf = to_pdf <<~'EOS', enable_footer: true, pdf_theme: (build_pdf_theme theme_overrides), analyze: true portrait [.landscape] <<< landscape [.portrait] portrait EOS (expect pdf.text.size).to be 5 pdf.text.each do |text| (expect text[:x]).to eql 48.24 end end it 'should adjust dimensions of running content to fit page layout', visual: true do filler = lorem_ipsum '2-sentences-2-paragraphs' theme_overrides = { footer_recto_left_content: '{section-title}', footer_recto_right_content: '{page-number}', footer_verso_left_content: '{page-number}', footer_verso_right_content: '{section-title}', } to_file = to_pdf_file <<~EOS, 'running-content-alt-layouts.pdf', enable_footer: true, pdf_theme: (build_pdf_theme theme_overrides) = Alternating Page Layouts This document demonstrates that the running content is adjusted to fit the page layout as the page layout alternates. #{filler} [.landscape] <<< == Landscape Page #{filler} [.portrait] <<< == Portrait Page #{filler} EOS (expect to_file).to visually_match 'running-content-alt-layouts.pdf' end end context 'Implicit attributes' do it 'should escape text of doctitle attribute' do theme_overrides = { footer_recto_right_content: '({doctitle})', footer_verso_left_content: '({doctitle})', } (expect do pdf = to_pdf <<~'EOS', enable_footer: true, attribute_overrides: { 'doctitle' => 'The Chronicles of <Foo> & ¦' }, pdf_theme: (build_pdf_theme theme_overrides), analyze: true :doctype: book == Chapter 1 content EOS running_text = pdf.find_text %(The Chronicles of <Foo> & \u00a6) (expect running_text).to have_size 1 end).to not_log_message end it 'should set document-title and document-subtitle based on doctitle' do pdf_theme = { footer_recto_left_content: '({document-title})', footer_recto_right_content: '[{document-subtitle}]', footer_verso_left_content: '({document-title})', footer_verso_right_content: '[{document-subtitle}]', } pdf = to_pdf <<~'EOS', enable_footer: true, pdf_theme: pdf_theme, analyze: true = Document Title: Subtitle :doctype: book == Beginning == End EOS [2, 3].each do |pgnum| main_title_text = (pdf.find_text page_number: pgnum, string: '(Document Title)')[0] subtitle_text = (pdf.find_text page_number: pgnum, string: '[Subtitle]')[0] (expect main_title_text).not_to be_nil (expect subtitle_text).not_to be_nil end end it 'should set part-title, chapter-title, and section-title based on context of current page' do pdf_theme = { footer_columns: '<25% >70%', footer_recto_left_content: 'FOOTER', footer_recto_right_content: '[{part-title}|{chapter-title}|{section-title}]', footer_verso_left_content: 'FOOTER', footer_verso_right_content: '[{part-title}|{chapter-title}|{section-title}]', } pdf = to_pdf <<~'EOS', enable_footer: true, pdf_theme: pdf_theme, analyze: true = Document Title :doctype: book = Part I == Chapter A === Detail <<< === More Detail == Chapter B = Part II == Chapter C EOS footer_y = (pdf.find_text 'FOOTER')[0][:y] titles_by_page = (pdf.find_text y: footer_y).each_with_object ::Hash.new do |it, accum| accum[it[:page_number]] = it[:string] unless it[:string] == 'FOOTER' end (expect titles_by_page[2]).to eql '[Part I||]' (expect titles_by_page[3]).to eql '[Part I|Chapter A|Detail]' (expect titles_by_page[4]).to eql '[Part I|Chapter A|More Detail]' (expect titles_by_page[5]).to eql '[Part I|Chapter B|]' (expect titles_by_page[6]).to eql '[Part II||]' (expect titles_by_page[7]).to eql '[Part II|Chapter C|]' end it 'should not set section-title attribute on pages in preamble of article' do pdf_theme = { footer_font_color: 'AA0000', footer_recto_right_content: '[{section-title}]', footer_verso_left_content: '[{section-title}]', } pdf = to_pdf <<~'EOS', enable_footer: true, pdf_theme: pdf_theme, analyze: true = Document Title First page of preamble. <<< Second page of preamble. == Section Title EOS footer_texts = pdf.find_text font_color: 'AA0000' (expect footer_texts).to have_size 2 (expect footer_texts[0][:string]).to eql '[]' (expect footer_texts[1][:string]).to eql '[Section Title]' end it 'should set chapter-title to value of preface-title attribute for pages in the preamble' do pdf_theme = { footer_font_color: 'AA0000', footer_recto_right_content: '{chapter-title}', footer_verso_left_content: '{chapter-title}', } pdf = to_pdf <<~'EOS', enable_footer: true, pdf_theme: pdf_theme, analyze: true = Document Title :doctype: book :preface-title: PREFACE First page of preface. <<< Second page of preface. == First Chapter EOS footer_texts = pdf.find_text font_color: 'AA0000' (expect footer_texts).to have_size 3 (expect footer_texts[0][:page_number]).to be 2 (expect footer_texts[0][:string]).to eql 'PREFACE' (expect footer_texts[1][:page_number]).to be 3 (expect footer_texts[1][:string]).to eql 'PREFACE' (expect footer_texts[2][:page_number]).to be 4 (expect footer_texts[2][:string]).to eql 'First Chapter' end it 'should set chapter-title attribute correctly on pages in preface when title page is disabled' do pdf_theme = { footer_font_color: 'AA0000', footer_recto_right_content: '{chapter-title}', footer_verso_left_content: '{chapter-title}', } pdf = to_pdf <<~'EOS', enable_footer: true, pdf_theme: pdf_theme, analyze: true = Document Title :doctype: book :notitle: First page of preface. <<< Second page of preface. == First Chapter EOS footer_texts = pdf.find_text font_color: 'AA0000' (expect footer_texts).to have_size 3 (expect footer_texts[0][:page_number]).to be 1 (expect footer_texts[0][:string]).to eql 'Preface' (expect footer_texts[1][:page_number]).to be 2 (expect footer_texts[1][:string]).to eql 'Preface' (expect footer_texts[2][:page_number]).to be 3 (expect footer_texts[2][:string]).to eql 'First Chapter' end it 'should set chapter-title attribute to value of toc-title attribute on toc pages in default location' do pdf_theme = { running_content_start_at: 'toc', footer_font_color: 'AA0000', footer_recto_right_content: '{page-number} | {chapter-title}', footer_verso_left_content: '{chapter-title} | {page-number}', } pdf = to_pdf <<~'EOS', enable_footer: true, pdf_theme: pdf_theme, analyze: true = Document Title :doctype: book :toc: :toc-title: Contents == Beginning == End EOS footer_texts = pdf.find_text font_color: 'AA0000' (expect footer_texts).to have_size 3 (expect footer_texts[0][:page_number]).to be 2 (expect footer_texts[0][:string]).to eql 'Contents | ii' (expect footer_texts[1][:page_number]).to be 3 (expect footer_texts[1][:string]).to eql '1 | Beginning' end it 'should set chapter-title attribute to value of toc-title attribute on toc pages in custom location' do pdf_theme = { footer_font_color: 'AA0000', footer_recto_right_content: '{page-number} | {chapter-title}', footer_verso_left_content: '{chapter-title} | {page-number}', } pdf = to_pdf <<~'EOS', enable_footer: true, pdf_theme: pdf_theme, analyze: true = Document Title :doctype: book :toc: macro :toc-title: Contents == Beginning toc::[] == End EOS footer_texts = pdf.find_text font_color: 'AA0000' (expect footer_texts).to have_size 3 (expect footer_texts[0][:page_number]).to be 2 (expect footer_texts[0][:string]).to eql '1 | Beginning' (expect footer_texts[1][:page_number]).to be 3 (expect footer_texts[1][:string]).to eql 'Contents | 2' (expect footer_texts[2][:page_number]).to be 4 (expect footer_texts[2][:string]).to eql '3 | End' end it 'should set section-title attribute to value of toc-title attribute on toc pages in custom location' do pdf_theme = { footer_font_color: 'AA0000', footer_recto_right_content: '{page-number} | {section-title}', footer_verso_left_content: '{section-title} | {page-number}', } pdf = to_pdf <<~'EOS', enable_footer: true, pdf_theme: pdf_theme, analyze: true = Document Title :toc: macro :toc-title: Contents == Beginning <<< toc::[] <<< == End EOS footer_texts = pdf.find_text font_color: 'AA0000' (expect footer_texts).to have_size 3 (expect footer_texts[0][:page_number]).to be 1 (expect footer_texts[0][:string]).to eql '1 | Beginning' (expect footer_texts[1][:page_number]).to be 2 (expect footer_texts[1][:string]).to eql 'Contents | 2' (expect footer_texts[2][:page_number]).to be 3 (expect footer_texts[2][:string]).to eql '3 | End' end it 'should not set section-title attribute to value of toc-title attribute on toc pages that contain other section' do pdf_theme = { footer_font_color: 'AA0000', footer_recto_right_content: '{page-number} | {section-title}', footer_verso_left_content: '{section-title} | {page-number}', } pdf = to_pdf <<~'EOS', enable_footer: true, pdf_theme: pdf_theme, analyze: true = Document Title :toc: macro :toc-title: Contents == Beginning toc::[] <<< == End EOS footer_texts = pdf.find_text font_color: 'AA0000' (expect footer_texts).to have_size 2 (expect footer_texts[0][:page_number]).to be 1 (expect footer_texts[0][:string]).to eql '1 | Beginning' (expect footer_texts[1][:page_number]).to be 2 (expect footer_texts[1][:string]).to eql 'End | 2' end it 'should assign section titles down to sectlevels defined in theme' do input = <<~'EOS' = Document Title :doctype: book == A <<< === Level 2 <<< ==== Level 3 <<< ===== Level 4 == B EOS { nil => ['A', 'Level 2', 'Level 2', 'Level 2', 'B'], 2 => ['A', 'Level 2', 'Level 2', 'Level 2', 'B'], 3 => ['A', 'Level 2', 'Level 3', 'Level 3', 'B'], 4 => ['A', 'Level 2', 'Level 3', 'Level 4', 'B'], }.each do |sectlevels, expected| theme_overrides = { footer_sectlevels: sectlevels, footer_font_family: 'Helvetica', footer_recto_right_content: '{section-or-chapter-title}', footer_verso_left_content: '{section-or-chapter-title}', } pdf = to_pdf input, enable_footer: true, pdf_theme: theme_overrides, analyze: true titles = (pdf.find_text font_name: 'Helvetica').map {|it| it[:string] } (expect titles).to eql expected end end it 'should use doctitle, toc-title, and preface-title as chapter-title before first chapter' do theme_overrides = { running_content_start_at: 'title', page_numbering_start_at: 'title', footer_recto_right_content: '{chapter-title}', footer_verso_left_content: '{chapter-title}', } pdf = to_pdf <<~'EOS', enable_footer: true, pdf_theme: (build_pdf_theme theme_overrides), analyze: true = Document Title :doctype: book :toc: content == Chapter 1 content EOS expected_running_content_by_page = { 1 => 'Document Title', 2 => 'Table of Contents', 3 => 'Preface', 4 => 'Chapter 1' } running_content_by_page = (pdf.find_text y: 14.263).each_with_object({}) {|text, accum| accum[text[:page_number]] = text[:string] } (expect running_content_by_page).to eql expected_running_content_by_page end it 'should allow style of title-related attributes to be customized using the title-style key' do input = <<~'EOS' = Document Title :doctype: book :sectnums: :notitle: == Beginning EOS pdf_theme = { footer_recto_left_content: '[{chapter-title}]', footer_recto_right_content: '', footer_verso_left_content: '[{chapter-title}]', footer_verso_right_content: '', footer_font_color: 'AA0000', } [ [nil, 'Chapter 1. Beginning'], ['document', 'Chapter 1. Beginning'], ['toc', '1. Beginning'], %w(basic Beginning), ].each do |(title_style, expected_title)| pdf_theme = pdf_theme.merge footer_title_style: title_style if title_style pdf = to_pdf input, pdf_theme: pdf_theme, enable_footer: true, analyze: true footer_text = (pdf.find_text font_color: 'AA0000')[0] (expect footer_text[:string]).to eql %([#{expected_title}]) end end end context 'Images' do it 'should align images based on column aligment', visual: true do pdf_theme = { footer_columns: '>50% <50%', footer_recto_left_content: %(image:#{fixture_file 'tux.png'}[fit=contain]), footer_recto_right_content: %(image:#{fixture_file 'tux.png'}[fit=contain]), } to_file = to_pdf_file 'body', 'running-content-image-alignment.pdf', pdf_theme: pdf_theme, enable_footer: true (expect to_file).to visually_match 'running-content-image-alignment.pdf' end it 'should support remote image if allow-uri-read attribute is set', visual: true do with_local_webserver do |base_url| pdf_theme = { footer_columns: '>50% <50%', footer_recto_left_content: %(image:#{base_url}/tux.png[fit=contain]), footer_recto_right_content: %(image:#{base_url}/tux.png[fit=contain]), } doc = to_pdf 'body', analyze: :document, to_file: (to_file = output_file 'running-content-remote-image.pdf'), pdf_theme: pdf_theme, enable_footer: true, attribute_overrides: { 'allow-uri-read' => '' } (expect to_file).to visually_match 'running-content-image-alignment.pdf' # NOTE: we could assert no log messages instead, but that assumes the remove_tmp_files method is even called (expect doc.converter.instance_variable_get :@tmp_files).to be_empty end end it 'should support data URI image', visual: true do image_data = File.binread fixture_file 'tux.png' encoded_image_data = Base64.strict_encode64 image_data image_url = %(data:image/png;base64,#{encoded_image_data}) pdf_theme = { footer_columns: '>50% <50%', footer_recto_left_content: %(image:#{image_url}[fit=contain]), footer_recto_right_content: %(image:#{image_url}[fit=contain]), } to_file = to_pdf_file 'body', 'running-content-data-uri-image.pdf', pdf_theme: pdf_theme, enable_footer: true (expect to_file).to visually_match 'running-content-image-alignment.pdf' end it 'should scale image up to width when fit=contain', visual: true do %w(pdfwidth=99.76 fit=contain pdfwidth=0.5in,fit=contain pdfwidth=15in,fit=contain).each_with_index do |image_attrlist, idx| pdf_theme = build_pdf_theme \ header_height: 36, header_recto_columns: '>40% =20% <40%', header_recto_left_content: 'text', header_recto_center_content: %(image:#{fixture_file 'green-bar.svg'}[#{image_attrlist}]), header_recto_right_content: 'text' to_file = to_pdf_file %([.text-center]\ncontent), %(running-content-image-contain-#{idx}.pdf), pdf_theme: pdf_theme (expect to_file).to visually_match 'running-content-image-fit.pdf' end end it 'should not overlap border when scaling image to fit content area', visual: true do pdf_theme = build_pdf_theme \ header_height: 36, header_border_width: 5, header_border_color: 'dddddd', header_recto_columns: '>40% =20% <40%', header_recto_left_content: 'text', header_recto_center_content: %(image:#{fixture_file 'square.png'}[fit=contain]), header_recto_right_content: 'text', footer_height: 36, footer_padding: 0, footer_vertical_align: 'middle', footer_border_width: 5, footer_border_color: 'dddddd', footer_recto_columns: '>40% =20% <40%', footer_recto_left_content: 'text', footer_recto_center_content: %(image:#{fixture_file 'square.png'}[fit=contain]), footer_recto_right_content: 'text' to_file = to_pdf_file %([.text-center]\ncontent), 'running-content-image-contain-border.pdf', enable_footer: true, pdf_theme: pdf_theme (expect to_file).to visually_match 'running-content-image-contain-border.pdf' end it 'should scale image down to width when fit=scale-down', visual: true do %w(pdfwidth=99.76 pdfwidth=15in,fit=scale-down).each_with_index do |image_attrlist, idx| pdf_theme = build_pdf_theme \ header_height: 36, header_recto_columns: '>40% =20% <40%', header_recto_left_content: 'text', header_recto_center_content: %(image:#{fixture_file 'green-bar.svg'}[#{image_attrlist}]), header_recto_right_content: 'text' to_file = to_pdf_file %([.text-center]\ncontent), %(running-content-image-scale-down-width-#{idx}.pdf), pdf_theme: pdf_theme (expect to_file).to visually_match 'running-content-image-fit.pdf' end end it 'should scale image down to height when fit=scale-down', visual: true do %w(pdfwidth=30.60 fit=scale-down).each_with_index do |image_attrlist, idx| pdf_theme = build_pdf_theme \ header_height: 36, header_recto_columns: '>40% =20% <40%', header_recto_left_content: 'text', header_recto_center_content: %(image:#{fixture_file 'tux.png'}[#{image_attrlist}]), header_recto_right_content: 'text' to_file = to_pdf_file %([.text-center]\ncontent), %(running-content-image-scale-down-height-#{idx}.pdf), pdf_theme: pdf_theme (expect to_file).to visually_match 'running-content-image-scale-down.pdf' end end it 'should scale image down to minimum dimension when fit=scale-down', visual: true do pdf_theme = build_pdf_theme \ header_height: 24, header_recto_columns: '>25% =50% <25%', header_recto_left_content: 'text', header_recto_center_content: %(image:#{fixture_file 'square-viewbox-only.svg'}[fit=scale-down]), header_recto_right_content: 'text' to_file = to_pdf_file %([.text-center]\ncontent), 'running-content-image-scale-down-min.pdf', pdf_theme: pdf_theme (expect to_file).to visually_match 'running-content-image-scale-down-min.pdf' end it 'should not modify image dimensions when fit=scale-down if image already fits', visual: true do %w(pdfwidth=0.5in pdfwidth=0.5in,fit=scale-down).each_with_index do |image_attrlist, idx| pdf_theme = build_pdf_theme \ header_height: 36, header_recto_columns: '>40% =20% <40%', header_recto_left_content: 'text', header_recto_center_content: %(image:#{fixture_file 'green-bar.svg'}[#{image_attrlist}]), header_recto_right_content: 'text' to_file = to_pdf_file %([.text-center]\ncontent), %(running-content-image-#{idx}.pdf), pdf_theme: pdf_theme (expect to_file).to visually_match 'running-content-image.pdf' end end it 'should size image based on width attribute value if no other dimension attribute is specified', visual: true do pdf_theme = build_pdf_theme \ header_height: 36, header_recto_columns: '<25% =50% >25%', header_recto_center_content: %(image:#{fixture_file 'square-viewbox-only.svg'}[square,24]) to_file = to_pdf_file %([.text-center]\ncontent), 'running-content-image-width.pdf', pdf_theme: pdf_theme (expect to_file).to visually_match 'running-content-image-width.pdf' end it 'should use image format specified by format attribute' do source_file = (dest_file = fixture_file 'square') + '.svg' begin pdf_theme = { footer_height: 36, footer_padding: 0, footer_recto_columns: '<25% =50% >25%', footer_border_width: 0, footer_recto_left_content: nil, footer_recto_center_content: %(image:#{dest_file}[format=svg,fit=contain]), footer_recto_right_content: nil, } FileUtils.cp source_file, dest_file pdf = to_pdf 'content', enable_footer: true, pdf_theme: pdf_theme, analyze: :rect (expect pdf.rectangles).to have_size 1 rect = pdf.rectangles[0] (expect rect[:width]).to eql 200.0 (expect rect[:height]).to eql 200.0 ensure File.unlink dest_file end end it 'should print running content on consecutive pages even when image in running content overruns bounds', visual: true do pdf_theme = { footer_recto_left_content: '{page-number}', footer_recto_right_content: %(image:#{fixture_file 'tux.png'}[pdfwidth=100px]), footer_verso_left_content: '{page-number}', footer_verso_right_content: %(image:#{fixture_file 'tux.png'}[pdfwidth=100px]), } to_file = to_pdf_file <<~'EOS', 'running-content-image-overrun.pdf', enable_footer: true, pdf_theme: pdf_theme = Article Title content <<< content EOS (expect to_file).to visually_match 'running-content-image-overrun.pdf' end it 'should resolve image target relative to themesdir', visual: true do [ { 'pdf-theme' => 'running-header', 'pdf-themesdir' => fixtures_dir, }, { 'pdf-theme' => 'fixtures/running-header-outside-fixtures-theme.yml', 'pdf-themesdir' => (File.dirname fixtures_dir), }, ].each_with_index do |attribute_overrides, idx| to_file = to_pdf_file <<~'EOS', %(running-content-image-from-themesdir-#{idx}.pdf), attribute_overrides: attribute_overrides [.text-center] content EOS (expect to_file).to visually_match 'running-content-image.pdf' end end it 'should resolve image target relative to theme file when themesdir is not set', visual: true do attribute_overrides = { 'pdf-theme' => (fixture_file 'running-header-theme.yml', relative: true) } to_file = to_pdf_file <<~'EOS', 'running-content-image-from-theme.pdf', attribute_overrides: attribute_overrides [.text-center] content EOS (expect to_file).to visually_match 'running-content-image.pdf' end it 'should resolve run-in image relative to themesdir', visual: true do to_file = to_pdf_file 'content', 'running-content-run-in-image.pdf', attribute_overrides: { 'pdf-theme' => (fixture_file 'running-header-run-in-image-theme.yml') } (expect to_file).to visually_match 'running-content-run-in-image.pdf' end it 'should warn and replace image with alt text if image is not found' do [true, false].each do |block| (expect do pdf_theme = build_pdf_theme \ header_height: 36, header_recto_columns: '=100%', header_recto_center_content: %(image:#{block ? ':' : ''}no-such-image.png[alt text]) pdf = to_pdf 'content', pdf_theme: pdf_theme, analyze: true alt_text = pdf.find_text '[alt text]' (expect alt_text).to have_size 1 end).to log_message severity: :WARN, message: %r(image to embed not found or not readable.*data/themes/no-such-image\.png$) end end it 'should add link to raster image if link attribute is set' do theme_overrides = { __dir__: fixtures_dir, header_height: 36, header_columns: '0% =100% 0%', header_recto_center_content: 'image:tux.png[link=https://www.linuxfoundation.org/projects/linux/]', header_verso_center_content: 'image:tux.png[link=https://www.linuxfoundation.org/projects/linux/]', } pdf = to_pdf 'body', pdf_theme: theme_overrides annotations = get_annotations pdf, 1 (expect annotations).to have_size 1 link_annotation = annotations[0] (expect link_annotation[:Subtype]).to be :Link (expect link_annotation[:A][:URI]).to eql 'https://www.linuxfoundation.org/projects/linux/' link_rect = link_annotation[:Rect] (expect (link_rect[3] - link_rect[1]).round 1).to eql 36.0 (expect (link_rect[2] - link_rect[0]).round 1).to eql 30.6 end it 'should add link to SVG image if link attribute is set' do theme_overrides = { __dir__: fixtures_dir, header_height: 36, header_columns: '0% =100% 0%', header_recto_center_content: 'image:square.svg[link=https://example.org]', header_verso_center_content: 'image:square.svg[link=https://example.org]', } pdf = to_pdf 'body', pdf_theme: theme_overrides annotations = get_annotations pdf, 1 (expect annotations).to have_size 1 link_annotation = annotations[0] (expect link_annotation[:Subtype]).to be :Link (expect link_annotation[:A][:URI]).to eql 'https://example.org' link_rect = link_annotation[:Rect] (expect (link_rect[3] - link_rect[1]).round 1).to eql 36.0 (expect (link_rect[2] - link_rect[0]).round 1).to eql 36.0 end it 'should replace unrecognized font family in SVG with SVG fallback font family specified in theme' do theme_overrides = { __dir__: fixtures_dir, header_height: 36, header_columns: '0% =100% 0%', header_recto_center_content: 'image:svg-with-unknown-font.svg[]', header_verso_center_content: 'image:svg-with-unknown-font.svg[]', svg_fallback_font_family: 'Times-Roman', } pdf = to_pdf 'body', pdf_theme: theme_overrides, analyze: true text = pdf.find_text 'This text uses the default SVG font.' (expect text).to have_size 1 (expect text[0][:font_name]).to eql 'Times-Roman' end it 'should embed local image referenced in SVG', visual: true do pdf_theme = { __dir__: fixtures_dir, footer_padding: 0, footer_recto_right_content: 'image:svg-with-local-image.svg[fit=contain]', footer_verso_left_content: 'image:svg-with-local-image.svg[fit=contain]', } to_file = to_pdf_file <<~'EOS', 'running-content-svg-with-local-image.pdf', enable_footer: true, pdf_theme: pdf_theme body EOS (expect to_file).to visually_match 'running-content-svg-with-local-image.pdf' end end end ������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/section_spec.rb�����������������������������������������������������0000664�0000000�0000000�00000062054�14163570564�0021530�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'spec_helper' describe 'Asciidoctor::PDF::Converter - Section' do it 'should apply font size according to section level' do pdf = to_pdf <<~'EOS', analyze: true = Document Title == Level 1 === Level 2 section content == Back To Level 1 EOS expected_text = [ ['Document Title', 27], ['Level 1', 22], ['Level 2', 18], ['section content', 10.5], ['Back To Level 1', 22], ] (expect pdf.text.map {|it| it.values_at :string, :font_size }).to eql expected_text end it 'should render section titles in bold by default' do pdf = to_pdf <<~'EOS', analyze: true = Document Title == Level 1 === Level 2 section content == Back To Level 1 EOS expected_text = [ ['Document Title', 'NotoSerif-Bold'], ['Level 1', 'NotoSerif-Bold'], ['Level 2', 'NotoSerif-Bold'], ['section content', 'NotoSerif'], ['Back To Level 1', 'NotoSerif-Bold'], ] (expect pdf.text.map {|it| it.values_at :string, :font_name }).to eql expected_text end it 'should not apply bold to italic text if headings are bold in theme' do pdf_theme = { heading_font_style: 'bold', } pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, analyze: true == Get Started _Quickly_ EOS text = pdf.text (expect text).to have_size 2 (expect text[0][:font_name]).to eql 'NotoSerif-Bold' (expect text[1][:font_name]).to eql 'NotoSerif-Italic' end it 'should not partition section title by default' do pdf = to_pdf <<~'EOS', analyze: true == Title: Subtitle EOS lines = pdf.lines (expect lines).to have_size 1 (expect lines[0]).to eql 'Title: Subtitle' end it 'should partition section title if title-separator document attribute is set and present in title' do pdf = to_pdf <<~'EOS', analyze: true :title-separator: : == The Title: The Subtitle EOS lines = pdf.lines (expect lines).to have_size 2 (expect lines).to eql ['The Title', 'The Subtitle'] title_text = (pdf.find_text 'The Title')[0] subtitle_text = (pdf.find_text 'The Subtitle')[0] (expect subtitle_text[:font_size]).to be < title_text[:font_size] (expect subtitle_text[:font_color]).to eql '999999' (expect subtitle_text[:font_name]).to eql 'NotoSerif-Italic' end it 'should partition section title if separator block attribute is set and present in title' do pdf = to_pdf <<~'EOS', analyze: true [separator=:] == The Title: The Subtitle EOS lines = pdf.lines (expect lines).to have_size 2 (expect lines).to eql ['The Title', 'The Subtitle'] title_text = (pdf.find_text 'The Title')[0] subtitle_text = (pdf.find_text 'The Subtitle')[0] (expect subtitle_text[:font_size]).to be < title_text[:font_size] (expect subtitle_text[:font_color]).to eql '999999' (expect subtitle_text[:font_name]).to eql 'NotoSerif-Italic' end it 'should partition title on last occurrence of separator' do pdf = to_pdf <<~'EOS', analyze: true :title-separator: : == Foo: Bar: Baz EOS lines = pdf.lines (expect lines).to have_size 2 (expect lines).to eql ['Foo: Bar', 'Baz'] end it 'should not partition section title if separator is not followed by space' do pdf = to_pdf <<~'EOS', analyze: true [separator=:] == Title:Subtitle EOS lines = pdf.lines (expect lines).to have_size 1 (expect lines[0]).to eql 'Title:Subtitle' end it 'should not partition section title if separator block attribute is empty' do pdf = to_pdf <<~'EOS', analyze: true :title-separator: : [separator=] == Title: Subtitle EOS lines = pdf.lines (expect lines).to have_size 1 (expect lines[0]).to eql 'Title: Subtitle' end it 'should not add top margin to section title if it is positioned at the top of the page' do pdf = to_pdf '== Section Title', analyze: true y1 = (pdf.find_text 'Section Title')[0][:y] pdf = to_pdf '== Section Title', pdf_theme: { heading_margin_top: 50 }, analyze: true y2 = (pdf.find_text 'Section Title')[0][:y] (expect y1).to eql y2 end it 'should add page top margin to section title if it is positioned at the top of the page' do pdf = to_pdf '== Section Title', analyze: true y1 = (pdf.find_text 'Section Title')[0][:y] pdf = to_pdf '== Section Title', pdf_theme: { heading_margin_page_top: 50 }, analyze: true y2 = (pdf.find_text 'Section Title')[0][:y] (expect y1).to be > y2 end it 'should uppercase section titles if text_transform key in theme is set to uppercase' do pdf = to_pdf <<~'EOS', pdf_theme: { heading_text_transform: 'uppercase' }, analyze: true = Document Title == Beginning == Middle == End EOS pdf.text.each do |text| (expect text[:string]).to eql text[:string].upcase end end it 'should not alter character references when text transform is uppercase' do pdf = to_pdf <<~'EOS', pdf_theme: { heading_text_transform: 'uppercase' }, analyze: true == <Tom & Jerry> EOS (expect pdf.text[0][:string]).to eql '<TOM & JERRY>' end it 'should underline section titles if text_decoration key in theme is set to underline' do pdf_theme = { heading_text_decoration: 'underline' } input = '== Section Title' pdf = to_pdf input, pdf_theme: pdf_theme, analyze: :line lines = pdf.lines (expect lines).to have_size 1 underline = lines[0] pdf = to_pdf input, pdf_theme: pdf_theme, analyze: true text = pdf.text (expect text).to have_size 1 underlined_text = text[0] (expect underline[:from][:x]).to eql underlined_text[:x] (expect underline[:from][:y]).to be_within(2).of(underlined_text[:y]) (expect underlined_text[:font_color]).to eql underline[:color] (expect underline[:to][:x] - underline[:from][:x]).to be_within(2).of 140 end it 'should be able to adjust color and width of text decoration' do pdf_theme = { heading_text_decoration: 'underline', heading_text_decoration_color: 'cccccc', heading_text_decoration_width: 0.5 } input = '== Section Title' pdf = to_pdf input, pdf_theme: pdf_theme, analyze: :line lines = pdf.lines (expect lines).to have_size 1 underline = lines[0] pdf = to_pdf input, pdf_theme: pdf_theme, analyze: true text = pdf.text (expect text).to have_size 1 underlined_text = text[0] (expect underlined_text[:font_color]).not_to eql underline[:color] (expect underline[:color]).to eql 'CCCCCC' (expect underline[:width]).to eql 0.5 end it 'should support hexidecimal character reference in section title' do pdf = to_pdf <<~'EOS', analyze: true == µServices EOS (expect pdf.text[0][:string]).to eql %(\u00b5Services) end it 'should not alter HTML tags when text transform is uppercase' do pdf = to_pdf <<~'EOS', pdf_theme: { heading_text_transform: 'uppercase' }, analyze: true == _Quick_ Start EOS (expect pdf.text[0][:string]).to eql 'QUICK' end it 'should transform non-ASCII letters when text transform is uppercase' do pdf = to_pdf <<~'EOS', pdf_theme: { heading_text_transform: 'uppercase' }, analyze: true == über étudier EOS (expect pdf.lines[0]).to eql 'ÜBER ÉTUDIER' end it 'should ignore letters in hexidecimal character reference in section title when transforming to uppercase' do pdf = to_pdf <<~'EOS', pdf_theme: { heading_text_transform: 'uppercase' }, analyze: true == µServices EOS (expect pdf.text[0][:string]).to eql %(\u00b5SERVICES) end it 'should not apply text transform if value of text_transform key is none' do pdf = to_pdf <<~'EOS', pdf_theme: { heading_text_transform: 'uppercase', heading_h3_text_transform: 'none' }, analyze: true == Uppercase === Title Case EOS (expect pdf.find_text 'UPPERCASE').to have_size 1 (expect pdf.find_text 'Title Case').to have_size 1 end it 'should add destination for each section' do pdf = to_pdf <<~'EOS' = Document Title == Level 1 === Level 2 ==== Level 3 ===== Level 4 EOS names = get_names pdf (expect names).to have_key '_level_1' (expect names).to have_key '_level_2' (expect names).to have_key '_level_3' (expect names).to have_key '_level_4' end it 'should hex encode name for ID that contains non-ASCII characters' do pdf = to_pdf '== Über Étudier' hex_encoded_id = %(0x#{('_über_étudier'.unpack 'H*')[0]}) names = (get_names pdf).keys.reject {|k| k == '__anchor-top' } (expect names).to have_size 1 name = names[0] (expect name).to eql hex_encoded_id end it 'should not crash if menu macro is used in section title' do pdf = to_pdf <<~'EOS', analyze: true :experimental: == The menu:File[] menu Describe the file menu. EOS (expect pdf.lines[0]).to eql 'The File menu' end it 'should not crash if kbd macro is used in section title' do pdf = to_pdf <<~'EOS', analyze: true :experimental: == The magic of kbd:[Ctrl,p] Describe the magic of paste. EOS (expect pdf.lines[0]).to eql %(The magic of Ctrl\u202f+\u202fp) end it 'should not crash if btn macro is used in section title' do pdf = to_pdf <<~'EOS', analyze: true :experimental: == The btn:[Save] button Describe the save button. EOS (expect pdf.lines[0]).to eql %(The [\u2009Save\u2009] button) end it 'should add part signifier and part number to part if part numbering is enabled' do pdf = to_pdf <<~'EOS', analyze: true = Book Title :doctype: book :sectnums: :partnums: = A == Foo = B == Bar EOS titles = (pdf.find_text font_size: 27).map {|it| it[:string] }.reject {|it| it == 'Book Title' } (expect titles).to eql ['Part I: A', 'Part II: B'] end if asciidoctor_2_or_better? it 'should use specified part signifier if part numbering is enabled and part-signifier attribute is set' do pdf = to_pdf <<~'EOS', analyze: true = Book Title :doctype: book :sectnums: :partnums: :part-signifier: P = A == Foo = B == Bar EOS titles = (pdf.find_text font_size: 27).map {|it| it[:string] }.reject {|it| it == 'Book Title' } (expect titles).to eql ['P I: A', 'P II: B'] end if asciidoctor_2_or_better? it 'should add default chapter signifier to chapter title if section numbering is enabled' do pdf = to_pdf <<~'EOS', analyze: true = Book Title :doctype: book :sectnums: == The Beginning == The End EOS chapter_titles = (pdf.find_text font_size: 22).map {|it| it[:string] } (expect chapter_titles).to eql ['Chapter 1. The Beginning', 'Chapter 2. The End'] end it 'should add chapter signifier to chapter title if section numbering is enabled and chapter-signifier attribute is set' do # NOTE chapter-label is the legacy name { 'chapter-label' => 'Ch', 'chapter-signifier' => 'Ch' }.each do |attr_name, attr_val| pdf = to_pdf <<~EOS, analyze: true = Book Title :doctype: book :sectnums: :#{attr_name}: #{attr_val} == The Beginning == The End EOS chapter_titles = (pdf.find_text font_size: 22).map {|it| it[:string] } (expect chapter_titles).to eql ['Ch 1. The Beginning', 'Ch 2. The End'] end end it 'should add chapter signifier to chapter title if section numbering and toc are enabled and chapter-signifier attribute is set' do # NOTE chapter-label is the legacy name { 'chapter-label' => 'Ch', 'chapter-signifier' => 'Ch' }.each do |attr_name, attr_val| pdf = to_pdf <<~EOS, analyze: true = Book Title :doctype: book :sectnums: :toc: :#{attr_name}: #{attr_val} == The Beginning == The End EOS chapter_titles = (pdf.find_text font_size: 22).select {|it| it[:page_number] >= 3 }.map {|it| it[:string] } (expect chapter_titles).to eql ['Ch 1. The Beginning', 'Ch 2. The End'] end end it 'should not add chapter label to chapter title if section numbering is enabled and chapter-signifier attribute is empty' do # NOTE chapter-label is the legacy name %w(chapter-label chapter-signifier).each do |attr_name| pdf = to_pdf <<~EOS, analyze: true = Book Title :doctype: book :sectnums: :#{attr_name}: == The Beginning == The End EOS chapter_titles = (pdf.find_text font_size: 22).map {|it| it[:string] } (expect chapter_titles).to eql ['1. The Beginning', '2. The End'] end end it 'should number subsection of appendix based on appendix letter' do pdf = to_pdf <<~'EOS', analyze: true = Book Title :doctype: book :sectnums: == Chapter content [appendix] = Appendix content === Appendix Subsection content EOS expected_text = asciidoctor_1_5_7_or_better? ? 'A.1. Appendix Subsection' : '1.1. Appendix Subsection' (expect pdf.lines).to include expected_text end it 'should not promote anonymous preface in book doctype to preface section if preface-title attribute is not set' do input = <<~'EOS' = Book Title :doctype: book anonymous preface == First Chapter chapter content EOS pdf = to_pdf input names = get_names pdf (expect names).not_to have_key '_preface' text = (to_pdf input, analyze: true).text (expect text[1][:string]).to eql 'anonymous preface' (expect text[1][:font_size]).to be 13 end # QUESTION is this the right behavior? should the value default to Preface instead? it 'should not promote anonymous preface in book doctype to preface section if preface-title attribute is empty' do input = <<~'EOS' = Book Title :doctype: book :preface-title: anonymous preface == First Chapter chapter content EOS pdf = to_pdf input names = get_names pdf (expect names).not_to have_key '_preface' text = (to_pdf input, analyze: true).text (expect text[1][:string]).to eql 'anonymous preface' (expect text[1][:font_size]).to be 13 end it 'should promote anonymous preface in book doctype to preface section if preface-title attribute is non-empty' do input = <<~'EOS' = Book Title :doctype: book :preface-title: Prelude anonymous preface == First Chapter chapter content EOS pdf = to_pdf input names = get_names pdf (expect names).to have_key '_prelude' (expect pdf.objects[names['_prelude']][3]).to eql (get_page_size pdf, 2)[1] text = (to_pdf input, analyze: true).text (expect text[1][:string]).to eql 'Prelude' (expect text[1][:font_size]).to be 22 (expect text[2][:string]).to eql 'anonymous preface' (expect text[2][:font_size]).to eql 10.5 end it 'should not force title of empty section to next page if it fits on page' do pdf = to_pdf <<~EOS, analyze: true == Section A [%hardbreaks] #{(['filler'] * 41).join ?\n} == Section B EOS section_b_text = (pdf.find_text 'Section B')[0] (expect section_b_text[:page_number]).to be 1 end it 'should force section title to next page to keep with first line of section content' do pdf = to_pdf <<~EOS, analyze: true == Section A [%hardbreaks] #{(['filler'] * 41).join ?\n} == Section B content EOS section_b_text = (pdf.find_text 'Section B')[0] (expect section_b_text[:page_number]).to be 2 content_text = (pdf.find_text 'content')[0] (expect content_text[:page_number]).to be 2 end it 'should not force section title to next page to keep with content if heading_min_height_after is zero' do pdf = to_pdf <<~EOS, pdf_theme: { heading_min_height_after: 0 }, analyze: true == Section A [%hardbreaks] #{(['filler'] * 41).join ?\n} == Section B content EOS section_b_text = (pdf.find_text 'Section B')[0] (expect section_b_text[:page_number]).to be 1 content_text = (pdf.find_text 'content')[0] (expect content_text[:page_number]).to be 2 end it 'should not add break before chapter if heading-chapter-break-before key in theme is auto' do pdf = to_pdf <<~'EOS', pdf_theme: { heading_chapter_break_before: 'auto' }, analyze: true = Document Title :doctype: book == Chapter A == Chapter B EOS chapter_a_text = (pdf.find_text 'Chapter A')[0] chapter_b_text = (pdf.find_text 'Chapter B')[0] (expect chapter_a_text[:page_number]).to be 2 (expect chapter_b_text[:page_number]).to be 2 end it 'should not add break before part if heading-part-break-before key in theme is auto' do pdf = to_pdf <<~'EOS', pdf_theme: { heading_part_break_before: 'auto', heading_chapter_break_before: 'auto' }, analyze: true = Document Title :doctype: book = Part I == Chapter in Part I = Part II == Chapter in Part II EOS part1_text = (pdf.find_text 'Part I')[0] part2_text = (pdf.find_text 'Part II')[0] (expect part1_text[:page_number]).to be 2 (expect part2_text[:page_number]).to be 2 end it 'should add break after part if heading-part-break-after key in theme is always' do pdf = to_pdf <<~'EOS', pdf_theme: { heading_part_break_after: 'always', heading_chapter_break_before: 'auto' }, analyze: true = Document Title :doctype: book = Part I == Chapter in Part I == Another Chapter in Part I = Part II == Chapter in Part II EOS part1_text = (pdf.find_text 'Part I')[0] part2_text = (pdf.find_text 'Part II')[0] chapter1_text = (pdf.find_text 'Chapter in Part I')[0] chapter2_text = (pdf.find_text 'Another Chapter in Part I')[0] (expect part1_text[:page_number]).to be 2 (expect chapter1_text[:page_number]).to be 3 (expect chapter2_text[:page_number]).to be 3 (expect part2_text[:page_number]).to be 4 end it 'should support abstract defined as special section' do pdf = to_pdf <<~'EOS', analyze: true = Document Title :toc: [abstract] == Abstract A presage of what is to come. == Body What came to pass. EOS abstract_title_text = (pdf.find_text 'Abstract')[0] (expect abstract_title_text[:x]).to be > 48.24 abstract_content_text = (pdf.find_text 'A presage of what is to come.')[0] (expect abstract_content_text[:font_name]).to eql 'NotoSerif-BoldItalic' (expect abstract_content_text[:font_color]).to eql '5C6266' toc_entries = pdf.lines.select {|it| it.include? '. . .' } (expect toc_entries).to have_size 1 (expect toc_entries[0]).to start_with 'Body' end context 'Section indent' do it 'should indent section body if section_indent is set to single value in theme' do pdf = to_pdf <<~'EOS', pdf_theme: { section_indent: 36 }, analyze: true = Document Title == Section Title paragraph [.text-right] paragraph EOS section_text = (pdf.find_text 'Section Title')[0] paragraph_text = pdf.find_text 'paragraph' (expect section_text[:x]).to eql 48.24 (expect paragraph_text[0][:x]).to eql 84.24 (expect paragraph_text[1][:x].to_i).to be 458 end it 'should indent section body if section_indent is set to array in theme' do pdf = to_pdf <<~'EOS', pdf_theme: { section_indent: [36, 0] }, analyze: true = Document Title == Section Title paragraph [.text-right] paragraph EOS section_text = (pdf.find_text 'Section Title')[0] paragraph_text = pdf.find_text 'paragraph' (expect section_text[:x]).to eql 48.24 (expect paragraph_text[0][:x]).to eql 84.24 (expect paragraph_text[1][:x].to_i).to eql (458 + 36) end it 'should indent toc entries if section_indent is set in theme' do pdf = to_pdf <<~'EOS', pdf_theme: { section_indent: 36 }, analyze: true = Document Title :doctype: book :toc: == Chapter == Another Chapter EOS toc_texts = pdf.find_text page_number: 2 toc_title_text = toc_texts.find {|it| it[:string] == 'Table of Contents' } (expect toc_title_text[:x]).to eql 48.24 chapter_title_text = toc_texts.find {|it| it[:string] == 'Chapter' } (expect chapter_title_text[:x]).to eql 84.24 end it 'should indent preamble if section_indent is set in theme' do pdf = to_pdf <<~'EOS', pdf_theme: { section_indent: 36 }, analyze: true = Document Title preamble == Section content EOS preamble_text = (pdf.find_text 'preamble')[0] (expect preamble_text[:x]).to eql 84.24 section_content_text = (pdf.find_text 'content')[0] (expect section_content_text[:x]).to eql 84.24 end it 'should not reapply section indent to nested sections' do pdf = to_pdf <<~'EOS', pdf_theme: { section_indent: 36 }, analyze: true = Document Title :doctype: book :notitle: == Chapter chapter body === Section section body EOS chapter_title_text = (pdf.find_text 'Chapter')[0] section_title_text = (pdf.find_text 'Section')[0] (expect chapter_title_text[:x]).to eql 48.24 (expect section_title_text[:x]).to eql 48.24 chapter_body_text = (pdf.find_text 'chapter body')[0] section_body_text = (pdf.find_text 'section body')[0] (expect chapter_body_text[:x]).to eql 84.24 (expect section_body_text[:x]).to eql 84.24 end it 'should outdent abstract title and body' do pdf = to_pdf <<~'EOS', pdf_theme: { section_indent: 36, abstract_title_align: :left }, analyze: true = Document Title :doctype: book .Abstract [abstract] A presage of what is to come. == Chapter What came to pass. EOS abstract_title_text = (pdf.find_text 'Abstract')[0] (expect abstract_title_text[:x]).to eql 48.24 abstract_content_text = (pdf.find_text 'A presage of what is to come.')[0] (expect abstract_content_text[:x]).to eql 48.24 chapter_text = (pdf.find_text 'What came to pass.')[0] (expect chapter_text[:x]).to eql 84.24 end it 'should outdent discrete heading' do pdf = to_pdf <<~'EOS', pdf_theme: { section_indent: 36 }, analyze: true = Document Title == Section paragraph [discrete] === Discrete Heading paragraph === Nested Section paragraph [discrete] ==== Another Discrete Heading paragraph EOS discrete_heading_texts = pdf.find_text %r/Discrete/ (expect discrete_heading_texts).to have_size 2 (expect discrete_heading_texts[0][:x]).to eql 48.24 (expect discrete_heading_texts[1][:x]).to eql 48.24 paragraph_texts = pdf.find_text 'paragraph' (expect paragraph_texts.map {|it| it[:x] }.uniq).to eql [84.24] end it 'should not outdent discrete heading inside block' do pdf = to_pdf <<~'EOS', pdf_theme: { section_indent: 36 }, analyze: true == Section **** sidebar content [discrete] == Discrete Heading **** EOS sidebar_content_text = (pdf.find_text 'sidebar content')[0] discrete_heading_text = (pdf.find_text 'Discrete Heading')[0] (expect sidebar_content_text[:x]).to eql discrete_heading_text[:x] end it 'should honor text alignment role on discrete heading' do pdf = to_pdf <<~'EOS', analyze: true [discrete] == Discrete Heading EOS left_x = (pdf.find_text 'Discrete Heading')[0][:x] pdf = to_pdf <<~'EOS', analyze: true [discrete.text-right] == Discrete Heading EOS right_x = (pdf.find_text 'Discrete Heading')[0][:x] (expect right_x).to be > left_x end it 'should outdent footnotes in article' do pdf = to_pdf <<~'EOS', pdf_theme: { section_indent: 36 }, analyze: true = Document Title == Section paragraph{blank}footnote:[About this paragraph] EOS paragraph_text = (pdf.find_text 'paragraph')[0] footnote_text_fragments = pdf.text.select {|it| it[:y] < paragraph_text[:y] } (expect footnote_text_fragments[0][:string]).to eql '[' (expect footnote_text_fragments[0][:x]).to eql 48.24 end it 'should outdent footnotes in book' do pdf = to_pdf <<~'EOS', pdf_theme: { section_indent: 36 }, analyze: true = Document Title :doctype: book == Chapter paragraph{blank}footnote:[About this paragraph] EOS paragraph_text = (pdf.find_text 'paragraph')[0] footnote_text_fragments = (pdf.find_text page_number: 2).select {|it| it[:y] < paragraph_text[:y] } (expect footnote_text_fragments[0][:string]).to eql '[' (expect footnote_text_fragments[0][:x]).to eql 48.24 end it 'should not indent body of index section' do pdf = to_pdf <<~'EOS', pdf_theme: { section_indent: 36 }, analyze: true = Document Title :doctype: book == Chapter ((paragraph)) [index] == Index EOS index_page_texts = pdf.find_text page_number: 3 index_title_text = index_page_texts.find {|it| it[:string] == 'Index' } (expect index_title_text[:x]).to eql 48.24 category_text = index_page_texts.find {|it| it[:string] == 'P' } (expect category_text[:x]).to eql 48.24 end end end ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/sidebar_spec.rb�����������������������������������������������������0000664�0000000�0000000�00000004521�14163570564�0021470�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'spec_helper' describe 'Asciidoctor::PDF::Converter - Sidebar' do it 'should draw line around sidebar block' do pdf = to_pdf <<~'EOS', analyze: :line, pdf_theme: { sidebar_background_color: 'transparent' } **** sidebar **** EOS (expect pdf.lines).to have_size 4 (expect pdf.lines.map {|it| it[:color] }.uniq).to eql ['E1E1E1'] (expect pdf.lines.map {|it| it[:width] }.uniq).to eql [0.5] end it 'should use block title as heading of sidebar block' do input = <<~'EOS' .Sidebar Title **** Sidebar content. **** EOS pdf = to_pdf input, analyze: :line sidebar_border_top = pdf.lines.find {|it| it[:color] == 'E1E1E1' }[:from][:y] pdf = to_pdf input, analyze: true title_text = (pdf.find_text 'Sidebar Title')[0] (expect title_text[:font_name]).to eql 'NotoSerif-Bold' (expect title_text[:font_size]).to be 13 (expect title_text[:x]).to be > 100 (expect title_text[:y]).to be < sidebar_border_top end it 'should keep sidebar together if it can fit on one page' do pdf = to_pdf <<~EOS, analyze: true #{(['filler'] * 15).join %(\n\n)} .Sidebar **** #{(['content'] * 15).join %(\n\n)} **** EOS sidebar_text = (pdf.find_text 'Sidebar')[0] (expect sidebar_text[:page_number]).to be 2 end it 'should split block if it cannot fit on one page' do pdf = to_pdf <<~EOS, analyze: true .Sidebar Title **** #{(['content'] * 30).join %(\n\n)} **** EOS title_text = (pdf.find_text 'Sidebar Title')[0] content_text = (pdf.find_text 'content') (expect title_text[:page_number]).to be 1 (expect content_text[0][:page_number]).to be 1 (expect content_text[-1][:page_number]).to be 2 end it 'should split border when block is split across pages', visual: true do to_file = to_pdf_file <<~EOS, 'sidebar-page-split.pdf' .Sidebar Title **** #{(['content'] * 30).join %(\n\n)} **** EOS (expect to_file).to visually_match 'sidebar-page-split.pdf' end it 'should not add border if border width is not set in theme or value is nil' do pdf = to_pdf <<~'EOS', pdf_theme: { sidebar_border_color: 'AA0000', sidebar_border_width: nil }, analyze: :line **** Sidebar **** EOS (expect pdf.lines).to have_size 0 end end �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/source_spec.rb������������������������������������������������������0000664�0000000�0000000�00000055263�14163570564�0021370�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'spec_helper' describe 'Asciidoctor::PDF::Converter - Source' do context 'Rouge' do it 'should expand tabs to preserve indentation' do pdf = to_pdf <<~EOS, analyze: true :source-highlighter: rouge [source,c] ---- int main() { \tevent_loop(); \treturn 0; } ---- EOS lines = pdf.lines (expect lines).to have_size 4 (expect lines[1]).to eql %(\u00a0 event_loop();) (expect lines[2]).to eql %(\u00a0 return 0;) end it 'should enable start_inline option for PHP by default' do pdf = to_pdf <<~'EOS', analyze: true :source-highlighter: rouge [source,php] ---- echo "<?php"; ---- EOS echo_text = (pdf.find_text 'echo')[0] (expect echo_text).not_to be_nil # NOTE the echo keyword should be highlighted (expect echo_text[:font_color]).to eql '008800' end it 'should not enable the start_inline option for PHP if the mixed option is set' do pdf = to_pdf <<~'EOS', analyze: true :source-highlighter: rouge [source%mixed,php] ---- echo "<?php"; ---- EOS echo_text = (pdf.find_text 'echo')[0] # NOTE the echo keyword should not be highlighted (expect echo_text).to be_nil end it 'should preserve cgi-style options when setting start_inline option for PHP' do pdf = to_pdf <<~'EOS', analyze: true :source-highlighter: rouge [source,php?funcnamehighlighting=1] ---- cal_days_in_month(CAL_GREGORIAN, 6, 2019) ---- [source,php?funcnamehighlighting=0] ---- cal_days_in_month(CAL_GREGORIAN, 6, 2019) ---- EOS if (Gem::Version.new Rouge.version) >= (Gem::Version.new '2.1.0') ref_funcname_text = (pdf.find_text 'cal_days_in_month')[0] (expect ref_funcname_text).not_to be_nil ref_year_text = (pdf.find_text '2019')[0] (expect ref_year_text).not_to be_nil funcname_text = (pdf.find_text 'cal_days_in_month')[1] (expect funcname_text).not_to be_nil year_text = (pdf.find_text '2019')[1] (expect year_text).not_to be_nil (expect funcname_text[:font_color]).not_to eql ref_funcname_text[:font_color] (expect funcname_text[:font_name]).not_to eql ref_funcname_text[:font_name] (expect year_text[:font_color]).to eql ref_year_text[:font_color] (expect year_text[:font_name]).to eql ref_year_text[:font_name] else text = pdf.text (expect text).to have_size 2 (expect text[0][:string]).to eql 'cal_days_in_month(CAL_GREGORIAN, 6, 2019)' (expect text[0][:font_color]).to eql '333333' (expect text[1][:string]).to eql 'cal_days_in_month(CAL_GREGORIAN, 6, 2019)' (expect text[1][:font_color]).to eql '333333' end end it 'should not enable start_inline option for PHP if disabled by cgi-style option' do pdf = to_pdf <<~'EOS', analyze: true :source-highlighter: rouge [source,php?start_inline=0] ---- cal_days_in_month(CAL_GREGORIAN, 6, 2019) ---- EOS text = pdf.text (expect text).to have_size 1 (expect text[0][:string]).to eql 'cal_days_in_month(CAL_GREGORIAN, 6, 2019)' (expect text[0][:font_color]).to eql '333333' end it 'should use rouge style specified by rouge-style attribute', visual: true do to_file = to_pdf_file <<~'EOS', 'source-rouge-style.pdf' :source-highlighter: rouge :rouge-style: molokai [source,js] ---- 'use strict' const TAG_ALL_RX = /<[^>]+>/g module.exports = (html) => html && html.replace(TAG_ALL_RX, '') ---- EOS (expect to_file).to visually_match 'source-rouge-style.pdf' end it 'should not crash if source-highlighter attribute is defined outside of document header' do (expect do to_pdf <<~'EOS' = Document Title :source-highlighter: rouge [source,ruby] ---- puts 'yo, world!' ---- EOS end).not_to raise_exception end it 'should apply bw style' do pdf = to_pdf <<~EOS, analyze: true :source-highlighter: rouge :rouge-style: bw [source,ruby] ---- class Beer attr_reader :style end ---- EOS beer_text = (pdf.find_text 'Beer')[0] (expect beer_text).not_to be_nil (expect beer_text[:font_name]).to eql 'mplus1mn-bold' if (Gem::Version.new Rouge.version) >= (Gem::Version.new '3.4.0') (expect beer_text[:font_color]).to eql '333333' else (expect beer_text[:font_color]).to eql 'BB0066' end end it 'should add line numbers to start of line if linenums option is enabled' do expected_lines = <<~EOS.split ?\n  1 <?xml version="1.0" encoding="UTF-8"?>  2 <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">  3 <url>  4 <loc>https://example.org/home.html</loc>  5 <lastmod>2019-01-01T00:00:00.000Z</lastmod>  6 </url>  7 <url>  8 <loc>https://example.org/about.html</loc>  9 <lastmod>2019-01-01T00:00:00.000Z</lastmod> 10 </url> 11 </urlset> EOS pdf = to_pdf <<~EOS, analyze: true :source-highlighter: rouge [source,xml,linenums] ---- <?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>https://example.org/home.html</loc> <lastmod>2019-01-01T00:00:00.000Z</lastmod> </url> <url> <loc>https://example.org/about.html</loc> <lastmod>2019-01-01T00:00:00.000Z</lastmod> </url> </urlset> ---- EOS (expect pdf.lines).to eql expected_lines linenum_text = (pdf.find_text %r/^11 *$/)[0] (expect linenum_text[:font_color]).to eql '888888' end it 'should honor start value for line numbering' do expected_lines = <<~EOS.split ?\n 5 puts 'Hello, World!' EOS pdf = to_pdf <<~EOS, analyze: true :source-highlighter: rouge [source,xml,linenums,start=5] ---- puts 'Hello, World!' ---- EOS (expect pdf.lines).to eql expected_lines end it 'should not add line number to first line if source is empty' do pdf = to_pdf <<~'EOS', analyze: true :source-highlighter: rouge [source%linenums] ---- ---- EOS (expect pdf.text).to be_empty end it 'should not emit error if linenums are enabled and language is not set' do (expect do pdf = to_pdf <<~'EOS', analyze: true :source-highlighter: rouge [source%linenums] ---- fee fi fo fum ---- EOS expected_lines = asciidoctor_2_or_better? ? ['1 fee', '2 fi', '3 fo', '4 fum'] : %w(fee fi fo fum) (expect pdf.lines).to eql expected_lines end).to not_log_message end it 'should preserve orphan callout on last line' do pdf = to_pdf <<~'EOS', analyze: true :source-highlighter: rouge [source,yaml] ---- foo: 'bar' key: 'value' <1> ---- <1> End the file with a trailing newline EOS conum_texts = pdf.find_text '①' (expect conum_texts).to have_size 2 end it 'should use font color from style' do pdf = to_pdf <<~'EOS', analyze: true :source-highlighter: rouge :rouge-style: monokai [source,text] ---- foo bar baz ---- EOS pdf.text.each do |text| (expect text[:font_color]).to eql 'F8F8F2' end end it 'should highlight lines specified by highlight attribute on block', visual: true do to_file = to_pdf_file <<~EOS, 'source-rouge-line-highlighting.pdf' :source-highlighter: rouge [source,c,highlight=4;7-8] ---- /** * A program that prints "Hello, World!" **/ #include <stdio.h> int main(void) { printf("Hello, World!\\n"); return 0; } ---- EOS (expect to_file).to visually_match 'source-rouge-line-highlighting.pdf' end it 'should highlight lines specified by highlight attribute on block when linenums are enabled', visual: true do to_file = to_pdf_file <<~EOS, 'source-rouge-line-highlighting-with-linenums.pdf' :source-highlighter: rouge [source,c,linenums,highlight=4;7-8] ---- /** * A program that prints "Hello, World!" **/ #include <stdio.h> int main(void) { printf("Hello, World!\\n"); return 0; } ---- EOS (expect to_file).to visually_match 'source-rouge-line-highlighting-with-linenums.pdf' end it 'should interpret highlight lines relative to start value', visual: true do to_file = to_pdf_file <<~EOS, 'source-rouge-line-highlighting-with-linenums-start.pdf' :source-highlighter: rouge [source,c,linenums,start=4,highlight=4;7-8] ---- #include <stdio.h> int main(void) { printf("Hello, World!\\n"); return 0; } ---- EOS (expect to_file).to visually_match 'source-rouge-line-highlighting-with-linenums-start.pdf' end it 'should preserve indentation when highlighting lines without linenums enabled', visual: true do to_file = to_pdf_file <<~EOS, 'source-rouge-line-highlighting-indent.pdf' :source-highlighter: rouge [source,groovy,highlight=4-5] ---- ratpack { handlers { get { render '''|Hello, |World!'''.stripMargin() } } } ---- EOS (expect to_file).to visually_match 'source-rouge-line-highlighting-indent.pdf' end it 'should indent wrapped line if line numbers are enabled' do pdf = to_pdf <<~'EOS', analyze: true :source-highlighter: rouge [source,text,linenums] ---- Here we go again here we go again here we go again here we go again here we go again Here we go again ---- EOS linenum_text = (pdf.find_text '1 ')[0] (expect linenum_text[:x]).not_to be_nil start_texts = pdf.find_text %r/^Here we go again/ (expect start_texts).to have_size 2 (expect start_texts[0][:x]).to eql start_texts[1][:x] (expect start_texts[0][:x]).to be > linenum_text[:x] end it 'should highlight and indent wrapped line', visual: true do to_file = to_pdf_file <<~EOS, 'source-rouge-highlight-wrapped-line.pdf' :source-highlighter: rouge [source,xml,linenums,highlight=1;3] ---- <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> </project> ---- EOS (expect to_file).to visually_match 'source-rouge-highlight-wrapped-line.pdf' end end context 'CodeRay' do it 'should highlight source using CodeRay if source-highlighter is coderay' do pdf = to_pdf <<~'EOS', analyze: true :source-highlighter: coderay [source,ruby] ---- puts 'Hello, CodeRay!' ---- EOS hello_text = (pdf.find_text 'Hello, CodeRay!')[0] (expect hello_text).not_to be_nil (expect hello_text[:font_color]).to eql 'CC3300' (expect hello_text[:font_name]).to eql 'mplus1mn-regular' end it 'should not crash if source-highlighter attribute is defined outside of document header' do (expect do to_pdf <<~'EOS' = Document Title :source-highlighter: coderay [source,ruby] ---- puts 'yo, world!' ---- EOS end).not_to raise_exception end it 'should expand tabs to preserve indentation' do pdf = to_pdf <<~EOS, analyze: true :source-highlighter: coderay [source,c] ---- int main() { \tevent_loop(); \treturn 0; } ---- EOS lines = pdf.lines (expect lines).to have_size 4 (expect lines[1]).to eql %(\u00a0 event_loop();) (expect lines[2]).to eql %(\u00a0 return 0;) end end context 'Pygments' do it 'should highlight source using Pygments if source-highlighter is pygments' do pdf = to_pdf <<~'EOS', analyze: true :source-highlighter: pygments [source,ruby] ---- puts "Hello, Pygments!" ---- EOS hello_text = (pdf.find_text '"Hello, Pygments!"')[0] (expect hello_text).not_to be_nil (expect hello_text[:font_color]).to eql 'DD2200' (expect hello_text[:font_name]).to eql 'mplus1mn-regular' end it 'should not crash when adding indentation guards' do (expect do pdf = to_pdf <<~EOS, analyze: true :source-highlighter: pygments [source,yaml] ---- category: hash: key: "value" ---- EOS (expect pdf.find_text %r/: ?/).to have_size 3 lines = pdf.lines (expect lines).to have_size 3 (expect lines[0]).to eql 'category:' (expect lines[1]).to eql %(\u00a0 hash:) (expect lines[2]).to eql %(\u00a0 key: "value") (expect pdf.find_text '"value"').to have_size 1 end).not_to raise_exception end it 'should expand tabs to preserve indentation' do pdf = to_pdf <<~EOS, analyze: true :source-highlighter: pygments [source,c] ---- int main() { \tevent_loop(); \treturn 0; } ---- EOS lines = pdf.lines (expect lines).to have_size 4 (expect lines[1]).to eql %(\u00a0 event_loop();) (expect lines[2]).to eql %(\u00a0 return 0;) end it 'should not crash when aligning line numbers' do (expect do expected_lines = <<~EOS.split ?\n  1 <?xml version="1.0" encoding="UTF-8"?>  2 <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">  3 <url>  4 <loc>https://example.org/home.html</loc>  5 <lastmod>2019-01-01T00:00:00.000Z</lastmod>  6 </url>  7 <url>  8 <loc>https://example.org/about.html</loc>  9 <lastmod>2019-01-01T00:00:00.000Z</lastmod> 10 </url> 11 </urlset> EOS pdf = to_pdf <<~EOS, analyze: true :source-highlighter: pygments [source,xml,linenums] ---- <?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>https://example.org/home.html</loc> <lastmod>2019-01-01T00:00:00.000Z</lastmod> </url> <url> <loc>https://example.org/about.html</loc> <lastmod>2019-01-01T00:00:00.000Z</lastmod> </url> </urlset> ---- EOS (expect pdf.lines).to eql expected_lines end).not_to raise_exception end it 'should honor start value for line numbering' do expected_lines = <<~EOS.split ?\n 5 puts 'Hello, World!' EOS pdf = to_pdf <<~EOS, analyze: true :source-highlighter: pygments [source,xml,linenums,start=5] ---- puts 'Hello, World!' ---- EOS (expect pdf.lines).to eql expected_lines end it 'should preserve space before callout on last line' do pdf = to_pdf <<~'EOS', analyze: true :source-highlighter: pygments [source,yaml] ---- foo: 'bar' key: 'value' #<1> ---- <1> key-value pair EOS text = pdf.text conum_idx = text.index {|it| it[:string] == '①' } (expect text[conum_idx - 1][:string]).to eql ' ' (expect text[conum_idx - 2][:string]).to eql '\'value\'' end it 'should support background color on highlighted tokens', visual: true do to_file = to_pdf_file <<~EOS, 'source-pygments-token-background-color.pdf' :source-highlighter: pygments :pygments-style: colorful [source,ruby] ---- if /^#[a-fA-F0-9]{6}$/.match? color puts 'hex color' end ---- EOS (expect to_file).to visually_match 'source-pygments-token-background-color.pdf' end it 'should use background color from style', visual: true do to_file = to_pdf_file <<~EOS, 'source-pygments-background-color.pdf', pdf_theme: { code_background_color: 'fafafa' } :source-highlighter: pygments :pygments-style: monokai .Ruby [source,ruby] ---- if /^#[a-fA-F0-9]{6}$/.match? color puts 'hex color' end ---- .JavaScript [source,js] ---- 'use strict' const TAG_ALL_RX = /<[^>]+>/g module.exports = (html) => html && html.replace(TAG_ALL_RX, '') ---- EOS (expect to_file).to visually_match 'source-pygments-background-color.pdf' end it 'should use font color from style' do pdf = to_pdf <<~'EOS', analyze: true :source-highlighter: pygments :pygments-style: monokai [source,text] ---- foo bar baz ---- EOS pdf.text.each do |text| (expect text[:font_color]).to eql 'F8F8F2' end end it 'should highlight selected lines but not the line numbers', visual: true do to_file = to_pdf_file <<~EOS, 'source-pygments-line-highlighting.pdf' :source-highlighter: pygments [source,groovy,linenums,highlight=7-9] ---- package com.example import static ratpack.groovy.Groovy.ratpack ratpack { handlers { get { render "Hello, World!" } } } ---- EOS (expect to_file).to visually_match 'source-pygments-line-highlighting.pdf' end it 'should not add line number to first line if source is empty' do pdf = to_pdf <<~'EOS', analyze: true :source-highlighter: pygments [source%linenums] ---- ---- EOS (expect pdf.text).to be_empty end it 'should not emit error if linenums are enabled and language is not set' do (expect do pdf = to_pdf <<~'EOS', analyze: true :source-highlighter: pygments [source%linenums] ---- fee fi fo fum ---- EOS expected_lines = asciidoctor_2_or_better? ? ['1 fee', '2 fi', '3 fo', '4 fum'] : %w(fee fi fo fum) (expect pdf.lines).to eql expected_lines end).to not_log_message end it 'should indent wrapped line if line numbers are enabled' do pdf = to_pdf <<~'EOS', analyze: true :source-highlighter: pygments [source,text,linenums] ---- Here we go again here we go again here we go again here we go again here we go again Here we go again ---- EOS linenum_text = (pdf.find_text '1 ')[0] (expect linenum_text[:x]).not_to be_nil start_texts = pdf.find_text %r/^Here we go again/ (expect start_texts).to have_size 2 (expect start_texts[0][:x]).to eql start_texts[1][:x] (expect start_texts[0][:x]).to be > linenum_text[:x] end it 'should highlight and indent wrapped line', visual: true do to_file = to_pdf_file <<~EOS, 'source-pygments-highlight-wrapped-line.pdf' :source-highlighter: pygments [source,xml,linenums,highlight=1;3] ---- <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> </project> ---- EOS (expect to_file).to visually_match 'source-pygments-highlight-wrapped-line.pdf' end end if (ENV.key? 'PYGMENTS_VERSION') && !(Gem.win_platform? && RUBY_ENGINE == 'jruby') context 'Callouts' do it 'should honor font family set on conum category in theme for conum in source block' do pdf = to_pdf <<~EOS, pdf_theme: { code_font_family: 'Courier' }, analyze: true :source-highlighter: rouge [source,java] ---- public interface Person { String getName(); <1> String getDob(); <2> int getAge(); <3> } ---- EOS lines = pdf.lines (expect lines[1]).to end_with '; ①' (expect lines[2]).to end_with '; ②' (expect lines[3]).to end_with '; ③' conum_text = (pdf.find_text '①')[0] (expect conum_text[:font_name]).not_to eql 'Courier' end it 'should substitute autonumber callouts with circled numbers when using rouge as syntax highlighter' do pdf = to_pdf <<~EOS, analyze: true :source-highlighter: rouge [source,java] ---- public interface Person { String getName(); // <.> String getDob(); // <.> int getAge(); // <.> } ---- EOS lines = pdf.lines (expect lines[1]).to end_with '; ①' (expect lines[2]).to end_with '; ②' (expect lines[3]).to end_with '; ③' end it 'should process multiple autonumber callouts on a single line when using rouge as syntax highlighter' do pdf = to_pdf <<~EOS, analyze: true :source-highlighter: rouge [source,java] ---- public interface Person { String getName(); // <.> String getDob(); // <.> int getAge(); // <.> <.> } ---- EOS lines = pdf.lines (expect lines[1]).to end_with '; ①' (expect lines[2]).to end_with '; ②' (expect lines[3]).to end_with '; ③ ④' end it 'should preserve space before callout on final line' do ['rouge', (ENV.key? 'PYGMENTS_VERSION') && !(Gem.win_platform? && RUBY_ENGINE == 'jruby') ? 'pygments' : nil].compact.each do |highlighter| pdf = to_pdf <<~EOS, analyze: true :source-highlighter: #{highlighter} [source,java] ---- public interface Person { String getName(); } <1> ---- <1> End class definition EOS lines = pdf.lines (expect lines).to include '} ①' end end it 'should hide spaces in front of conum from source highlighter' do pdf = to_pdf <<~EOS, analyze: true :source-highlighter: rouge [source,apache] ---- <Directory /usr/share/httpd/noindex> AllowOverride None <1> Require all granted </Directory> ---- <1> Cannot be overridden by .htaccess EOS none_text = (pdf.find_text 'None')[0] (expect none_text).not_to be_nil (expect none_text[:font_color]).to eql 'AA6600' end end end ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/spec_helper.rb������������������������������������������������������0000664�0000000�0000000�00000050734�14163570564�0021345�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'ignore-gem-warnings' if $VERBOSE case ENV['COVERAGE'] when 'deep' ENV['DEEP_COVER'] = 'true' require 'deep_cover' when 'true' require 'deep_cover/builtin_takeover' require 'simplecov' end require 'asciidoctor/pdf' require 'prawn/table/version' require 'base64' require 'chunky_png' require 'fileutils' unless defined? FileUtils require 'open3' unless defined? Open3 require 'pathname' unless defined? Pathname require 'pdf/inspector' require 'socket' Asciidoctor.autoload :Extensions, 'asciidoctor/extensions' unless defined? Asciidoctor::LoggerManager # NOTE fix invalid bits for PNG in Gmagick Gmagick.prepend (Module.new do def initialize image_blob super @bits = [@bits, 8].max end end) if defined? ::GMagick::Image # NOTE fix warning in Prawn::Font:TTF Prawn::Font::TTF.prepend (Module.new do def initialize *args @italic_angle = nil super end end) # NOTE fix warning in TTFunk::Table TTFunk::Table.prepend (Module.new do def initialize *args @offset = nil super end end) PDF::Reader.prepend (Module.new do def source objects.instance_variable_get :@io end def catalog root end def outlines objects[catalog[:Outlines]] end end) PDF::Inspector::Text.prepend (Module.new do def page= page @page_number = page.number super end def move_text_position tx, ty @positions << [tx, ty, @page_number] end end) class EnhancedPDFTextInspector < PDF::Inspector attr_accessor :text attr_accessor :pages def initialize @color = nil @cursor = nil @fonts = {} @text = [] @pages = [] end def find_text filter filter = { string: filter } unless ::Hash === filter if ::Regexp === filter[:string] string_rx = filter.delete :string @text.select {|candidate| filter <= candidate && (string_rx.match? candidate[:string]) } else @text.select {|candidate| filter <= candidate } end end def strings text = @text text.map {|it| it[:string] } end def lines text = @text prev_y = nil text.each_with_object [] do |it, accum| current_line = prev_y && (prev_y - it[:y]).abs < 6 ? accum.pop : '' accum << %(#{current_line}#{it[:string]}) prev_y = it[:y] end end def page pagenum @pages[pagenum - 1] end def page= page @pages << { size: (page.attributes[:MediaBox].slice 2, 2), text: [] } @page_number = page.number @state = ::PDF::Reader::PageState.new page page.fonts.each do |label, stream| base_font = stream[:BaseFont].to_s base_font = (base_font.partition '+')[-1] if base_font.include? '+' @fonts[label] = base_font end end # Tf def set_text_font_and_size *params @state.set_text_font_and_size(*params) @font_settings = { name: @fonts[params[0]], size: params[1], color: @color } end # scn (used for font color in SVG) def set_color_for_nonstroking_and_special *params @color = params.map {|it| '%02X' % (it.to_f * 255).round }.join end # SCN def set_color_for_stroking_and_special *params @color = params.map {|it| '%02X' % (it.to_f * 255).round }.join end def move_text_position x, y @cursor = { page_number: @page_number, x: x, y: y } end def show_text_with_positioning chunks show_text chunks.reject {|candidate| ::Numeric === candidate }.join, true end def show_text text, kerned = false # NOTE this may be a rough approximation text_width = (@state.current_font.unpack text).reduce 0 do |width, code| width + (@state.current_font.glyph_width code) * @font_settings[:size] / 1000.0 end string = @state.current_font.to_utf8 text if @cursor accum = @cursor accum[:order] = @text.size + 1 accum[:font_name] = @font_settings[:name] accum[:font_size] = @font_settings[:size] accum[:font_color] = @font_settings[:color] accum[:string] = string accum[:width] = text_width @text << accum @pages[-1][:text] << accum @cursor = nil else (accum = @text[-1])[:string] += string accum[:width] += text_width end accum[:kerned] ||= kerned end end class ImageInspector < PDF::Inspector attr_reader :images def initialize @images = [] @x = @y = @width = @height = nil @page_number = 1 end def page= page @page_number = page.number @image_xobjects = page.xobjects.each_with_object({}) do |(name, xobject), accum| accum[name] = xobject if xobject.hash[:Subtype] == :Image end end def concatenate_matrix width, _p2, _p3, height, x, y @width = width @height = height @x = x @y = y + height end def invoke_xobject name image_info = (image = @image_xobjects[name]).hash @images << { name: name, page_number: @page_number, x: @x, y: @y, width: @width, height: @height, implicit_height: image_info[:Height], implicit_width: image_info[:Width], data: image.data } end end class LineInspector < PDF::Inspector attr_accessor :lines def initialize @lines = [] @from = nil @color = nil @graphic_states = {} @page_number = 1 @width = nil @style = :solid end def append_curved_segment *args x, y = args.pop 2 @from = { x: x, y: y } end def append_line x, y @lines << { page_number: @page_number, from: @from, to: { x: x, y: y }, color: @color, width: @width, style: @style } unless @color.nil? && @width.nil? @from = { x: x, y: y } end def begin_new_subpath x, y @from = { x: x, y: y } end def close_subpath @from = nil end def stroke_path @width = nil end def page= page @page_number = page.number @graphic_states = page.graphic_states end # SCN def set_color_for_stroking_and_special *params @color = params.map {|it| '%02X' % (it.to_f * 255).round }.join end # gs def set_graphics_state_parameters ref if (opacity = @graphic_states[ref][:ca]) @color += '%02X' % (opacity * 255).round end end # d def set_line_dash a, _b if a.empty? @style = :solid else gap, len = a if gap == len @style = :dashed elsif gap < len @style = :dotted else @style = :solid end end end # w def set_line_width line_width @width = line_width end end RSpec.configure do |config| config.before :suite do FileUtils.rm_r output_dir, force: true, secure: true FileUtils.mkdir output_dir end config.after :suite do FileUtils.rm_r output_dir, force: true, secure: true unless (ENV.key? 'DEBUG') || config.reporter.failed_examples.find {|it| it.metadata[:visual] } end def asciidoctor_2_or_better? defined? Asciidoctor::Converter.for end def asciidoctor_1_5_7_or_better? defined? Asciidoctor::LoggerManager end def bin_script name, opts = {} bin_path = Gem.bin_path (opts.fetch :gem, 'asciidoctor-pdf'), name windows? ? [Gem.ruby, bin_path] : bin_path end def asciidoctor_bin bin_script 'asciidoctor', gem: 'asciidoctor' end def asciidoctor_pdf_bin bin_script 'asciidoctor-pdf' end def asciidoctor_pdf_optimize_bin bin_script 'asciidoctor-pdf-optimize' end def run_command cmd, *args Dir.chdir __dir__ do if Array === cmd args.unshift(*cmd) cmd = args.shift end kw_args = Hash === args[-1] ? args.pop : {} if kw_args[:use_bundler] env_override = {} else env_override = { 'RUBYOPT' => nil } if (defined? Bundler) && (prawn_table = Bundler.definition.dependencies.find {|it| it.name == 'prawn-table' }) env_override['PRAWN_TABLE_REQUIRE_PATH'] = (prawn_table.source.path + 'lib/prawn/table').to_s end end if (out = kw_args[:out]) Open3.pipeline_w([env_override, cmd, *args, { out: out }]) {} else Open3.capture3 env_override, cmd, *args end end end def examples_dir File.join __dir__, '..', 'examples' end def example_file path File.join examples_dir, path end def fixtures_dir File.join __dir__, 'fixtures' end def fixture_file path, opts = {} if opts[:relative] (((Pathname.new fixtures_dir) / path).relative_path_from Pathname.new Dir.pwd).to_s else File.join fixtures_dir, path end end def output_dir File.join __dir__, 'output' end def output_file path File.join output_dir, path end (PDF_INSPECTOR_CLASS = { image: ImageInspector, line: LineInspector, page: PDF::Inspector::Page, rect: PDF::Inspector::Graphics::Rectangle, text: EnhancedPDFTextInspector, }).default = EnhancedPDFTextInspector def to_pdf input, opts = {} analyze = opts.delete :analyze enable_footer = opts.delete :enable_footer opts[:attributes] = { 'imagesdir' => fixtures_dir } unless opts.key? :attributes opts[:attributes]['nofooter'] = '' unless enable_footer if (attribute_overrides = opts.delete :attribute_overrides) (opts[:attributes] ||= {}).update attribute_overrides end if Hash === (pdf_theme = opts[:pdf_theme]) opts[:pdf_theme] = build_pdf_theme pdf_theme, (pdf_theme.delete :extends) end if Pathname === input opts[:to_dir] = output_dir unless opts.key? :to_dir doc = Asciidoctor.convert_file input, (opts.merge backend: 'pdf', safe: :safe) if analyze == :document return doc.converter else pdf_io = doc.attr 'outfile' end elsif analyze == :document return Asciidoctor.convert input, (opts.merge backend: 'pdf', safe: :safe, header_footer: true) else # NOTE use header_footer for compatibility with Asciidoctor < 2 pdf_io = StringIO.new (Asciidoctor.convert input, (opts.merge backend: 'pdf', safe: :safe, header_footer: true)).render end analyze ? (PDF_INSPECTOR_CLASS[analyze].analyze pdf_io) : (PDF::Reader.new pdf_io) end def to_pdf_file input, output_filename, opts = {} opts[:to_file] = (to_file = File.join output_dir, output_filename) enable_footer = opts.delete :enable_footer opts[:attributes] = { 'imagesdir' => fixtures_dir } unless opts.key? :attributes opts[:attributes]['nofooter'] = '' unless enable_footer if (attribute_overrides = opts.delete :attribute_overrides) (opts[:attributes] ||= {}).update attribute_overrides end if Hash === (pdf_theme = opts[:pdf_theme]) opts[:pdf_theme] = build_pdf_theme pdf_theme, (pdf_theme.delete :extends) end if Pathname === input Asciidoctor.convert_file input, (opts.merge backend: 'pdf', safe: :safe) else Asciidoctor.convert input, (opts.merge backend: 'pdf', safe: :safe, header_footer: true) end to_file end def build_pdf_theme overrides = {}, extends = nil (Asciidoctor::PDF::ThemeLoader.load_theme extends).tap {|theme| overrides.each {|k, v| theme[k] = v } } end def extract_outline pdf, list = pdf.outlines result = [] objects = pdf.objects pages = pdf.pages labels = get_page_labels pdf entry = list[:First] while entry entry = objects[entry] title = (((title = entry[:Title]).slice 2, title.size).unpack 'n*').pack 'U*' dest = entry[:Dest] dest_page_object = objects[dest[0]] dest_page = pages.find {|candidate| candidate.page_object == dest_page_object } top = dest_page.attributes[:MediaBox][3] == dest[3] if (count = entry[:Count]) == 0 closed = true children = [] else closed = count < 0 children = extract_outline pdf, entry end result << { title: title, dest: { pagenum: dest_page.number, label: labels[dest_page.number - 1], x: dest[2], y: dest[3], top: top }, closed: closed, children: children } entry = entry[:Next] end result end def get_names pdf objects = pdf.objects Hash[*objects[objects[pdf.catalog[:Names]][:Dests]][:Names]] end def get_page_labels pdf objects = pdf.objects Hash[*objects[pdf.catalog[:PageLabels]][:Nums]].each_with_object([]) {|(idx, val), accum| accum[idx] = val[:P] } end def get_annotations pdf, page_num = nil objects = pdf.objects if page_num (pdf.page page_num).attributes[:Annots].to_a.map {|ref| objects[ref] } else pdf.pages.each_with_object([]) {|page, accum| page.attributes[:Annots].to_a.each {|ref| accum << objects[ref] } } end end def get_images pdf, page_num = nil if page_num (pdf.page page_num).xobjects.select {|_, candidate| candidate.hash[:Subtype] == :Image }.values else pdf.pages.each_with_object([]) {|page, accum| page.xobjects.each {|_, candidate| candidate.hash[:Subtype] == :Image ? (accum << candidate) : accum } } end end def get_page_size pdf, page_num = 1 if ::PDF::Reader === pdf (pdf.page page_num).attributes[:MediaBox].slice 2, 2 else pdf.pages[page_num - 1][:size] end end def get_page_number pdf, page page = pdf.objects[page] if PDF::Reader::Reference === page found = pdf.pages.find {|candidate| candidate.page_object == page } found ? found.number : nil end def lorem_ipsum id (@lorem_ipsum_data ||= (YAML.load_file fixture_file 'lorem-ipsum.yml'))[id] end def windows? RbConfig::CONFIG['host_os'] =~ /win|ming/ end def home_dir windows? ? (Dir.home.tr ?\\, '/') : Dir.home end def with_memory_logger level = nil if asciidoctor_1_5_7_or_better? old_logger = Asciidoctor::LoggerManager.logger logger = Asciidoctor::MemoryLogger.new logger.level = level if level begin Asciidoctor::LoggerManager.logger = logger yield logger ensure Asciidoctor::LoggerManager.logger = old_logger end else old_stderr = $stderr $stderr = StringIO.new begin yield ensure $stderr = old_stderr end end end def with_local_webserver host = resolve_localhost, port = 9876 base_dir = fixtures_dir server = TCPServer.new host, port server_thread = Thread.start do Thread.current[:requests] = requests = [] while (session = server.accept) requests << (request = session.gets) if /^GET (\S+) HTTP\/1\.1$/ =~ request.chomp resource = (resource = $1) == '' ? '.' : resource else session.print %(HTTP/1.1 405 Method Not Allowed\r\nContent-Type: text/plain\r\n\r\n) session.print %(405 - Method not allowed\r\n) session.close next end resource, _query_string = resource.split '?', 2 if resource.include? '?' if File.file? (resource_file = (File.join base_dir, resource)) if (ext = (File.extname resource_file)[1..-1]) mimetype = ext == 'adoc' ? 'text/plain' : %(image/#{ext}) else mimetype = 'text/plain' end session.print %(HTTP/1.1 200 OK\r\nContent-Type: #{mimetype}\r\n\r\n) File.open resource_file, 'rb:utf-8:utf-8' do |fd| session.write fd.read 256 until fd.eof? end else session.print %(HTTP/1.1 404 Not Found\r\nContent-Type: text/plain\r\n\r\n) session.print %(404 - Resource not found.\r\n) end session.close end end begin yield %(http://#{host}:#{port}), server_thread ensure server_thread.exit server_thread.value server.close end end def resolve_localhost Socket.ip_address_list.find(&:ipv4?).ip_address end def compute_image_differences reference, actual, difference = nil diff = [] if reference reference_image = ChunkyPNG::Image.from_file reference if actual actual_image = ChunkyPNG::Image.from_file actual else actual_image = ChunkyPNG::Image.new reference_image.width, reference_image.height end else actual_image = ChunkyPNG::Image.from_file actual reference_image = ChunkyPNG::Image.new actual_image.width, actual_image.height end actual_image.height.times do |y| actual_image.row(y).each_with_index do |pixel, x| diff << [x, y] unless pixel == reference_image[x, y] end end if !diff.empty? && difference x = diff.map {|xy| xy[0] } y = diff.map {|xy| xy[1] } actual_image.rect x.min, y.min, x.max, y.max, (ChunkyPNG::Color.rgb 0, 255, 0) actual_image.save difference end diff.length end end RSpec::Matchers.define_negated_matcher :not_raise_exception, :raise_exception RSpec::Matchers.define :have_size do |expected| match {|actual| actual.size == expected } failure_message {|actual| %(expected #{actual} to have size #{expected}, but was #{actual.size}) } end RSpec::Matchers.define :have_message do |expected| actual = nil match do |logger| result = false if (messages = logger.messages).size == 1 if (message = messages[0])[:severity] == expected[:severity] if Hash === (message_text = message[:message]) message_text = message_text[:text] end if Regexp === (expected_message = expected[:message]) result = true if expected_message.match? message_text elsif expected_message.start_with? '~' result = true if message_text.include? expected_message[1..-1] elsif message_text === expected_message result = true end end actual = message end result end failure_message do %(expected #{expected[:severity]} message#{expected[:message].to_s.chr == '~' ? ' containing ' : ' matching '}`#{expected[:message]}' to have been logged) + (actual ? %(, but got #{actual[:severity]}: #{actual[:message]}) : '') end end RSpec::Matchers.define :log_message do |expected| match notify_expectation_failures: true do |actual| if expected log_level_override = expected.delete :using_log_level expected = nil if expected.empty? end with_memory_logger log_level_override do |logger| actual.call if logger if expected (expect logger).to have_message expected else (expect logger).not_to be_empty end end true end end #match_when_negated notify_expectation_failures: true do |actual| # with_memory_logger expected.to_h[:using_log_level] do |logger| # actual.call # logger ? logger.empty? : true # end #end supports_block_expectations end # define matcher to replace `.not_to log_message` until notify_expectation_failures is supported for negated match # see https://github.com/rspec/rspec-expectations/issues/1124 RSpec::Matchers.define :not_log_message do |expected| match notify_expectation_failures: true do |actual| with_memory_logger expected.to_h[:using_log_level] do |logger| actual.call logger ? logger.empty? : true end end supports_block_expectations end RSpec::Matchers.define :visually_match do |reference_filename| reference_path = (Pathname.new reference_filename).absolute? ? reference_filename : (File.join __dir__, 'reference', reference_filename) match do |actual_path| # NOTE uncomment this line and run `bundle exec rspec -t ~visual` to detect which tests use a visual match #warn caller.find {|it| it.include? '_spec.rb:' } return false unless File.exist? reference_path images_output_dir = output_file 'visual-comparison-workdir' Dir.mkdir images_output_dir unless Dir.exist? images_output_dir output_basename = File.join images_output_dir, (File.basename actual_path, '.pdf') system 'pdftocairo', '-png', actual_path, %(#{output_basename}-actual) system 'pdftocairo', '-png', reference_path, %(#{output_basename}-reference) pixels = 0 tmp_files = [actual_path] Dir[%(#{output_basename}-{actual,reference}-*.png)].map {|filename| (/-(?:actual|reference)-(\d+)\.png$/.match filename)[1] }.sort.uniq.each do |idx| reference_page_filename = %(#{output_basename}-reference-#{idx}.png) reference_page_filename = nil unless File.exist? reference_page_filename tmp_files << reference_page_filename if reference_page_filename actual_page_filename = %(#{output_basename}-actual-#{idx}.png) actual_page_filename = nil unless File.exist? actual_page_filename tmp_files << actual_page_filename if actual_page_filename next if reference_page_filename && actual_page_filename && (FileUtils.compare_file reference_page_filename, actual_page_filename) pixels += compute_image_differences reference_page_filename, actual_page_filename, %(#{output_basename}-diff-#{idx}.png) end if pixels > 0 false else tmp_files.each {|it| File.unlink it } unless ENV.key? 'DEBUG' true end end failure_message {|actual_path| %(expected #{actual_path} to be visually identical to #{reference_path}) } end ������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/table_spec.rb�������������������������������������������������������0000664�0000000�0000000�00000120003�14163570564�0021140�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'spec_helper' describe 'Asciidoctor::PDF::Converter - Table' do it 'should not crash if table has no rows' do (expect do pdf = to_pdf <<~'EOS', analyze: :line |=== |=== EOS (expect pdf.lines).to have_size 4 end).to not_raise_exception & (log_message severity: :WARN, message: 'no rows found in table') end it 'should not crash if cols and table cells are mismatched' do (expect do pdf = to_pdf <<~'EOS', analyze: :line [cols="1,"] |=== | cell |=== EOS (expect pdf.lines).to have_size 8 end).to not_raise_exception & (log_message severity: :WARN, message: 'no rows found in table') end it 'should not crash when rows have cells with colspans of varying length' do (expect do pdf = to_pdf <<~'EOS', analyze: true [cols=3*] |=== 3+|X |Y 2+|Z |=== EOS y_text = (pdf.find_text 'Y')[0] z_text = (pdf.find_text 'Z')[0] (expect y_text[:y]).to eql z_text[:y] (expect y_text[:x]).to be < z_text[:x] end).to not_raise_exception end unless (Gem::Version.new Asciidoctor::VERSION) < (Gem::Version.new '2.0.0') context 'Decoration' do it 'should apply frame all and grid all by default' do pdf = to_pdf <<~'EOS', analyze: :line |=== |1 |2 |3 |4 |=== EOS (expect pdf.lines.uniq).to have_size 12 end it 'should allow frame and grid to be specified on table using frame and grid attributes' do pdf = to_pdf <<~'EOS', analyze: :line [frame=ends,grid=cols] |=== |1 |2 |3 |4 |=== EOS (expect pdf.lines.uniq).to have_size 6 end it 'should treat topbot value of frame attribute as an alias for ends' do pdf_a = to_pdf <<~'EOS', analyze: :line [frame=ends] |=== |1 |2 |3 |4 |=== EOS pdf_b = to_pdf <<~'EOS', analyze: :line [frame=topbot] |=== |1 |2 |3 |4 |=== EOS (expect pdf_a.lines).to eql pdf_b.lines end it 'should allow frame and grid to be set globally using table-frame and table-grid attributes' do pdf = to_pdf <<~'EOS', analyze: :line :table-frame: ends :table-grid: cols |=== |1 |2 |3 |4 |=== EOS (expect pdf.lines.uniq).to have_size 6 end if asciidoctor_2_or_better? it 'should allow theme to control table stripe color using table_body_stripe_background_color key', visual: true do pdf_theme = { table_body_background_color: 'FDFDFD', table_body_stripe_background_color: 'EFEFEF', } to_file = to_pdf_file <<~'EOS', 'table-stripes-even.pdf', pdf_theme: pdf_theme [stripes=even] |=== |fee |fi |fo |fum |=== EOS (expect to_file).to visually_match 'table-stripes-even.pdf' end it 'should apply stripes to specified group of rows as specified by stripes attribute', visual: true do to_file = to_pdf_file <<~'EOS', 'table-stripes-odd.pdf' [cols=3*,stripes=odd] |=== |A1 |B1 |C1 |A2 |B2 |C2 |A3 |B3 |C3 |=== EOS (expect to_file).to visually_match 'table-stripes-odd.pdf' end if asciidoctor_1_5_7_or_better? it 'should apply thicker bottom border to table head row' do pdf = to_pdf <<~'EOS', analyze: :line [frame=none,grid=rows] |=== | Col A | Col B | A1 | B1 | A2 | B2 |=== EOS lines = pdf.lines.uniq (expect lines).to have_size 4 (expect lines[0][:width]).to eql 1.25 (expect lines[1][:width]).to eql 1.25 (expect lines[0][:from][:y]).to eql lines[0][:to][:y] (expect lines[1][:from][:y]).to eql lines[1][:to][:y] (expect lines[0][:from][:y]).to eql lines[1][:from][:y] (expect lines[2][:width]).to eql 0.5 (expect lines[3][:width]).to eql 0.5 end it 'should apply thicker bottom border to last table head row when table has multiple head rows' do tree_processor_impl = proc do process do |doc| table = doc.blocks[0] table.rows[:head] << table.rows[:body].shift end end if asciidoctor_1_5_7_or_better? opts = { extension_registry: Asciidoctor::Extensions.create { tree_processor(&tree_processor_impl) } } else opts = { extensions_registry: Asciidoctor::Extensions.build_registry { treeprocessor(&tree_processor_impl) } } end pdf = to_pdf <<~'EOS', (opts.merge analyze: :line) [%header,frame=none,grid=rows] |=== | Columns | Col A | A1 | A2 |=== EOS lines = pdf.lines.uniq ys = lines.map {|l| l[:from][:y] }.sort.reverse.uniq (expect ys).to have_size 3 head_dividing_lines = lines.select {|l| l[:width] == 1.25 } (expect head_dividing_lines).to have_size 1 (expect head_dividing_lines[0][:from][:y]).to eql head_dividing_lines[0][:to][:y] (expect head_dividing_lines[0][:from][:y]).to eql ys[1] end it 'should allow theme to customize bottom border of table head row', visual: true do theme_overrides = { table_head_border_bottom_width: 0.5, table_head_border_bottom_style: 'dashed', table_head_border_bottom_color: 'a9a9a9', } to_file = to_pdf_file <<~'EOS', 'table-head-border-bottom.pdf', pdf_theme: theme_overrides [frame=none,grid=rows] |=== | Col A | Col B | A1 | B1 | A2 | B2 |=== EOS (expect to_file).to visually_match 'table-head-border-bottom.pdf' end it 'should repeat multiple head rows on subsequent pages' do tree_processor_impl = proc do process do |doc| table = doc.blocks[0] table.rows[:head] << table.rows[:body].shift end end if asciidoctor_1_5_7_or_better? opts = { extension_registry: Asciidoctor::Extensions.create { tree_processor(&tree_processor_impl) } } else opts = { extensions_registry: Asciidoctor::Extensions.build_registry { treeprocessor(&tree_processor_impl) } } end pdf = to_pdf <<~EOS, (opts.merge analyze: true) [%header] |=== 2+^| Columns ^| Column A ^| Column B #{['| cell | cell'] * 40 * ?\n} |=== EOS [1, 2].each do |page_number| col_a_text = (pdf.find_text page_number: page_number, string: 'Column A')[0] col_b_text = (pdf.find_text page_number: page_number, string: 'Column B')[0] (expect col_a_text).not_to be_nil (expect col_a_text[:font_name]).to eql 'NotoSerif-Bold' (expect col_b_text).not_to be_nil (expect col_b_text[:font_name]).to eql 'NotoSerif-Bold' end end it 'should allow theme to set table border color to transparent' do theme_overrides = { table_border_color: 'transparent', table_head_border_bottom_color: 'transparent', } pdf = to_pdf <<~'EOS', analyze: :line, pdf_theme: theme_overrides [frame=none,grid=rows] |=== | Col A | Col B | A1 | B1 | A2 | B2 |=== EOS pdf.lines.uniq.each do |line| (expect line[:color]).to eql '00000000' end end it 'should allow theme to set color, width, and style of grid' do pdf_theme = { table_grid_color: 'AAAAAA', table_grid_width: 3, table_grid_style: 'dashed', } pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, analyze: :line [frame=none,grid=all] |=== | A | B | C | D |=== EOS # NOTE it appears Prawn table is drawing the same grid line multiple times lines = pdf.lines.uniq (expect lines).to have_size 4 lines.each do |line| (expect line[:color]).to eql 'AAAAAA' (expect line[:width]).to eql 3 (expect line[:style]).to eql :dashed end end it 'should allow theme to set color, width, and style of frame' do pdf_theme = { table_border_color: 'AAAAAA', table_border_width: 3, table_border_style: 'dashed', } pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, analyze: :line [frame=all,grid=none] |=== | A | B | C | D |=== EOS lines = pdf.lines (expect lines).to have_size 8 lines.each do |line| (expect line[:color]).to eql 'AAAAAA' (expect line[:width]).to eql 3 (expect line[:style]).to eql :dashed end end it 'should honor cellbgcolor attribute in table cell to set background color of cell', visual: true do to_file = to_pdf_file <<~'EOS', 'table-cellbgcolor.pdf' :attribute-undefined: drop [%autowidth,cols=3*] |=== | default background color | {set:cellbgcolor:#FF0000}red background color | {set:cellbgcolor!}default background color again |=== EOS (expect to_file).to visually_match 'table-cellbgcolor.pdf' end it 'should allow value of cellbgcolor attribute in table cell to be transparent', visual: true do to_file = to_pdf_file <<~'EOS', 'table-cellbgcolor.pdf' [%autowidth,cols=3*] |=== | default background color | {set:cellbgcolor:#FF0000}red background color | {set:cellbgcolor:transparent}default background color again |=== EOS (expect to_file).to visually_match 'table-cellbgcolor.pdf' end it 'should ignore cellbgcolor attribute if not a valid hex color', visual: true do to_file = to_pdf_file <<~'EOS', 'table-cellbgcolor-invalid.pdf' [%autowidth,cols=3*] |=== | {set:cellbgcolor:#f00}default background color | {set:cellbgcolor:#ff0000}red background color | {set:cellbgcolor:bogus}default background color again |=== EOS (expect to_file).to visually_match 'table-cellbgcolor.pdf' end it 'should use value of cellbgcolor attribute in table cell to override background color set by theme', visual: true do to_file = to_pdf_file <<~'EOS', 'table-cellbgcolor-override.pdf', pdf_theme: { table_body_background_color: 'CCCCCC' } :attribute-undefined: drop [%autowidth,cols=3*] |=== | default background color | {set:cellbgcolor:#FF0000}red background color | {set:cellbgcolor!}default background color again |=== EOS (expect to_file).to visually_match 'table-cellbgcolor-override.pdf' end end context 'Dimensions' do it 'should throw exception if no width is assigned to column' do (expect do to_pdf <<~'EOS' [cols=",50%,50%"] |=== | Column A | Column B | Column C |=== EOS end).to raise_exception ::Prawn::Errors::CannotFit end it 'should not fail to fit text in cell' do pdf = to_pdf <<~'EOS', analyze: true |=== |Aaaaa Bbbbb Ccccc |*{zwsp}* Aaaaa_Bbbbb_Ccccc |Aaaaa_Bbbbb_Ccccc |Aaaaa_Bbbbb_Ccccc |A |=== EOS (expect pdf.strings.index 'Aaaaa Bbbbb').to be 0 (expect pdf.strings.index 'Ccccc').to be 1 end it 'should not break words in head row when autowidth option is set' do pdf = to_pdf <<~'EOS', analyze: true [%autowidth] |=== |Operation |Operator |add |+ |subtract |- |multiply |* |divide |/ |=== EOS if (Gem::Version.new Prawn::Table::VERSION) > (Gem::Version.new '0.2.2') (expect pdf.find_text 'Operation').not_to be_empty (expect pdf.find_text 'Operator').not_to be_empty else (expect pdf.find_text 'Operation').to be_empty (expect pdf.find_text 'Operatio').not_to be_empty (expect pdf.find_text 'Operator').to be_empty (expect pdf.find_text 'Operato').not_to be_empty end end it 'should not break words in body rows when autowidth option is set' do pdf = to_pdf <<~'EOS', analyze: true [%autowidth] |=== |Op |add |subtract |multiply |divide |=== EOS (expect pdf.find_text 'add').not_to be_empty (expect pdf.find_text 'subtract').not_to be_empty (expect pdf.find_text 'multiply').not_to be_empty (expect pdf.find_text 'divide').not_to be_empty end it 'should wrap text by character when autowidth option is set and cell forces table to page boundary' do pdf = to_pdf <<~'EOS', analyze: true [%autowidth,cols=3*] |=== | 100 | Label1 | Lorem ipsum dolor sit amet, elit fusce duis, voluptatem ut, mauris tempor orci odio sapien viverra ut, deserunt luctus. |=== EOS (expect pdf.lines).to eql ['10', '0', 'Label', '1', 'Lorem ipsum dolor sit amet, elit fusce duis, voluptatem ut, mauris tempor orci odio', 'sapien viverra ut, deserunt luctus.'] end it 'should stretch table to width of bounds by default' do pdf = to_pdf <<~'EOS', analyze: :line [grid=none,frame=sides] |=== |A |B |=== EOS lines = pdf.lines (expect lines).to have_size 2 (expect lines[0][:from][:x]).to eql 48.24 (expect lines[1][:from][:x]).to eql 547.04 end it 'should not stretch autowidth table to width of bounds by default' do pdf = to_pdf <<~'EOS', analyze: :line [%autowidth,grid=none,frame=sides] |=== |A |B |=== EOS lines = pdf.lines (expect lines).to have_size 2 (expect lines[0][:from][:x]).to eql 48.24 (expect lines[1][:from][:x]).to be < 100 end it 'should stretch autowidth table with stretch role to width of bounds' do pdf = to_pdf <<~'EOS', analyze: :line [%autowidth.stretch,grid=none,frame=sides] |=== |A |B |=== EOS lines = pdf.lines (expect lines).to have_size 2 (expect lines[0][:from][:x]).to eql 48.24 (expect lines[1][:from][:x]).to eql 547.04 end it 'should allocate remaining width to autowidth column' do pdf = to_pdf <<~'EOS', analyze: true [cols="10,>~"] |=== |0x00 |UNSPECIFIED |0x01 |OK |=== EOS (expect pdf.strings).to eql %w(0x00 UNSPECIFIED 0x01 OK) unspecified_text = (pdf.find_text 'UNSPECIFIED')[0] (expect unspecified_text[:x].floor).to be 476 ok_text = (pdf.find_text 'OK')[0] (expect ok_text[:x].floor).to be 529 end if asciidoctor_1_5_7_or_better? it 'should extend width of table to fit content in autowidth column when autowidth option is set on table' do pdf = to_pdf <<~'EOS', analyze: true [%autowidth,cols="10,>~"] |=== |0x00 |UNSPECIFIED |0x01 |OK |=== EOS (expect pdf.strings).to eql %w(0x00 UNSPECIFIED 0x01 OK) unspecified_text = (pdf.find_text 'UNSPECIFIED')[0] (expect unspecified_text[:x].floor).to be 81 ok_text = (pdf.find_text 'OK')[0] (expect ok_text[:x].floor).to be 135 end if asciidoctor_1_5_7_or_better? it 'should account for line metrics in cell padding' do input = <<~'EOS' |=== |A |B |A1 |B1 |A2 |B2 |=== EOS last_y = nil [5, [5, 5, 5, 5]].each do |cell_padding| pdf = to_pdf input, pdf_theme: { table_cell_padding: cell_padding }, analyze: true a2_text = (pdf.find_text 'A2')[0] (expect a2_text[:y]).to eql last_y if last_y last_y = a2_text[:y] end pdf = to_pdf input, pdf_theme: { base_line_height: 2, table_cell_padding: 5 }, analyze: true a2_text = (pdf.find_text 'A2')[0] (expect a2_text[:y]).to be < last_y end it 'should account for font size when computing padding' do input = <<~'EOS' |=== |A |B |A1 |B1 |A2 |B2 |=== EOS pdf = to_pdf input, pdf_theme: { table_font_size: 20 }, analyze: true a2_text = (pdf.find_text 'A2')[0] # we can't really use a reference here, so we'll check for an specific offset (expect a2_text[:y]).to be < 708 end it 'should not accumulate cell padding between tables' do pdf = to_pdf <<~'EOS', pdf_theme: { table_cell_padding: [5, 5, 5, 5] }, analyze: true |=== |A |B |A1 |B1 |A2 |B2 |=== |=== |A |B |A1 |B1 |A2 |B2 |=== |=== |A |B |A1 |B1 |A2 |B2 |=== EOS first_a1_text = (pdf.find_text 'A1')[0] first_a2_text = (pdf.find_text 'A2')[0] last_a1_text = (pdf.find_text 'A1')[-1] last_a2_text = (pdf.find_text 'A2')[-1] (expect first_a1_text[:y] - first_a2_text[:y]).to eql (last_a1_text[:y] - last_a2_text[:y]) end it 'should set padding on head cells the same as body cells by default' do input = <<~'EOS' [frame=none,grid=rows] |=== | Column A | Column B | A1 | B1 |=== EOS reference_pdf = to_pdf input, analyze: :line pdf = to_pdf input, pdf_theme: { table_cell_padding: [10, 3, 10, 3] }, analyze: :line # NOTE the line under the head row should moved down (expect pdf.lines[0][:from][:y]).to be < reference_pdf.lines[0][:from][:y] end it 'should set padding on head cells as specified by table_head_cell_padding theme key' do input = <<~'EOS' [frame=none,grid=rows] |=== | Column A | Column B | A1 | B1 |=== EOS reference_pdf = to_pdf input, analyze: true pdf = to_pdf input, pdf_theme: { table_head_cell_padding: [10, 3, 10, 3] }, analyze: true reference_a1_text = (reference_pdf.find_text 'A1')[0] a1_text = (pdf.find_text 'A1')[0] # NOTE the first body row should be moved down (expect a1_text[:y]).to be < reference_a1_text[:y] end it 'should not split cells in head row across pages' do hard_line_break = %( +\n) filler = (['filler'] * 40).join hard_line_break head_cell1 = %w(this is a very tall cell in the head row of this table).join hard_line_break head_cell2 = %w(this is an even taller cell also in the head row of this table).join hard_line_break pdf = to_pdf <<~EOS, analyze: true #{filler} [%header,cols=2*] |=== |#{head_cell1} |#{head_cell2} |body cell |body cell |=== EOS filler_page_nums = (pdf.find_text 'filler').map {|it| it[:page_number] } (expect filler_page_nums.uniq).to have_size 1 (expect filler_page_nums[0]).to be 1 table_cell_page_nums = pdf.text.reject {|it| it[:string] == 'filler' }.map {|it| it[:page_number] } (expect table_cell_page_nums.uniq).to have_size 1 (expect table_cell_page_nums[0]).to be 2 end end context 'Basic table cell' do it 'should keep paragraphs in table cell separate' do pdf = to_pdf <<~'EOS', analyze: true |=== |all one line |line 1 + line 2 |paragraph 1 paragraph 2 |=== EOS cell1_text = pdf.find_text 'all one line' (expect cell1_text).not_to be_empty cell2_text = pdf.find_text %r/^line (?:1|2)/ (expect cell2_text).to have_size 2 (expect cell2_text[0][:y]).to be > cell2_text[1][:y] cell3_text = pdf.find_text %r/^paragraph (?:1|2)/ (expect cell3_text).to have_size 2 (expect cell3_text[0][:y]).to be > cell3_text[1][:y] (expect cell3_text[0][:y] - cell3_text[1][:y]).to be > (cell2_text[0][:y] - cell2_text[1][:y]) end it 'should normalize newlines and whitespace' do pdf = to_pdf <<~EOS, analyze: true |=== |He's a real nowhere man, Sitting in his nowhere land, Making all his nowhere plans\tfor nobody. |=== EOS (expect pdf.text).to have_size 1 text = pdf.text[0][:string] (expect text).not_to include ' ' (expect text).not_to include ?\t (expect text).not_to include ?\n (expect text).to include 'man, Sitting' end it 'should strip whitespace after applying substitutions' do ['%autowidth', '%header%autowidth'].each do |table_attrs| pdf = to_pdf <<~EOS, analyze: :line [#{table_attrs}] |=== | text |=== <<< [#{table_attrs}] |=== | text {empty} |=== <<< [#{table_attrs}] |=== | {empty} text |=== EOS lines_by_page = pdf.lines.each_with_object ::Hash.new do |line, accum| (accum[line.delete :page_number] ||= []) << line end (expect lines_by_page[1]).to have_size 4 (2..3).each do |rownum| (expect lines_by_page[1]).to eql lines_by_page[rownum] end end end it 'should transform non-ASCII letters when text transform is uppercase' do pdf = to_pdf <<~'EOS', pdf_theme: { table_head_text_transform: 'uppercase' }, analyze: true |=== |über |étudier |cell |cell |=== EOS text = pdf.text (expect text[0][:string]).to eql 'ÜBER' (expect text[1][:string]).to eql 'ÉTUDIER' end it 'should apply text transform for head to heading cell' do pdf = to_pdf <<~'EOS', pdf_theme: { table_head_text_transform: 'uppercase' }, analyze: true |=== |heading in head h|heading in body |=== EOS text = pdf.text (expect text[0][:string]).to eql 'HEADING IN HEAD' (expect text[1][:string]).to eql 'HEADING IN BODY' end it 'should honor horizontal alignment on cell' do pdf = to_pdf <<~'EOS', analyze: true [cols="1,>1"] |=== |a |z |=== EOS page_width = pdf.pages[0][:size][0] midpoint = page_width * 0.5 a_text = (pdf.find_text 'a')[0] z_text = (pdf.find_text 'z')[0] (expect a_text[:x]).to be < midpoint (expect z_text[:x]).to be > midpoint end end context 'Header table cell' do it 'should style a header table cell like a cell in the head row by default' do pdf = to_pdf <<~'EOS', analyze: true [%autowidth,cols="1h,3"] |=== | Vendor | Samsung | Model | Galaxy s10 | OS | Android 9.0 Pie | Resolution | 3040x1440 |=== EOS vendor_text = (pdf.find_text 'Vendor')[0] (expect vendor_text[:font_name]).to eql 'NotoSerif-Bold' model_text = (pdf.find_text 'Model')[0] (expect model_text[:font_name]).to eql 'NotoSerif-Bold' end it 'should allow theme to modify style of header cell in table body independent of cell in table head' do pdf_theme = { table_head_font_color: '222222', table_header_cell_font_style: 'italic', } pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, analyze: true [%header%autowidth,cols="1h,3"] |=== | Feature | Value | Vendor | Samsung | Model | Galaxy s10 | OS | Android 9.0 Pie | Resolution | 3040x1440 |=== EOS feature_text = (pdf.find_text 'Feature')[0] (expect feature_text[:font_color]).to eql '222222' (expect feature_text[:font_name]).to eql 'NotoSerif-Bold' vendor_text = (pdf.find_text 'Vendor')[0] (expect vendor_text[:font_color]).to eql '222222' (expect vendor_text[:font_name]).to eql 'NotoSerif-Italic' model_text = (pdf.find_text 'Model')[0] (expect model_text[:font_color]).to eql '222222' (expect model_text[:font_name]).to eql 'NotoSerif-Italic' samsung_text = (pdf.find_text 'Samsung')[0] (expect samsung_text[:font_color]).to eql '333333' (expect samsung_text[:font_name]).to eql 'NotoSerif' end end context 'Literal table cell' do it 'should not apply substitutions' do pdf = to_pdf <<~'EOS', analyze: true |=== l|{asciidoctor-version} foo--bar |=== EOS (expect pdf.lines[0]).to eql '{asciidoctor-version} foo--bar' end it 'should expand tabs and preserve indentation' do pdf = to_pdf <<~EOS, analyze: true |=== l| here \twe \t\tgo again |=== EOS lines = pdf.lines (expect lines).to have_size 4 (expect lines[1]).to eql %(\u00a0 we) (expect lines[2]).to eql %(\u00a0 go) end it 'should not double escape specialchars' do pdf = to_pdf <<~EOS, analyze: true |=== l|< and > |=== EOS (expect pdf.lines).to eql ['< and >'] end end context 'Verse table cell' do it 'should support verse if supported by core' do pdf = to_pdf <<~EOS, analyze: true |=== v|foo bar |=== EOS if asciidoctor_2_or_better? foobar_text = (pdf.find_text 'foo bar')[0] (expect foobar_text).not_to be_nil else foo_text = (pdf.find_text 'foo')[0] bar_text = (pdf.find_text %(\u00a0 bar))[0] (expect foo_text).not_to be_nil (expect bar_text).not_to be_nil (expect foo_text[:x]).to eql bar_text[:x] (expect foo_text[:y]).to be > bar_text[:y] end end end context 'AsciiDoc table cell' do it 'should convert blocks in an AsciiDoc table cell' do pdf = to_pdf <<~'EOS', analyze: true |=== a| [start=10] . ten . eleven . twelve [%hardbreaks] buckle my shoe |=== EOS (expect pdf.lines).to eql ['10.ten', '11.eleven', '12.twelve', 'buckle', 'my', 'shoe'] end it 'should convert nested table' do pdf = to_pdf <<~'EOS', analyze: true [cols="1,2a"] |=== |Normal cell |Cell with nested table [cols="2,1"] !=== !Nested table cell 1 !Nested table cell 2 !=== |=== EOS (expect pdf.lines.find {|l| l.include? '!' }).to be_nil (expect pdf.lines).to have_size 2 (expect pdf.lines[1]).to eql 'Nested table cell 1Nested table cell 2' nested_cell1 = (pdf.find_text 'Nested table cell 1')[0] nested_cell2 = (pdf.find_text 'Nested table cell 2')[0] (expect nested_cell1[:y]).to eql nested_cell2[:y] (expect nested_cell1[:x]).to be < nested_cell2[:x] end it 'should not fail to fit content in table cell and create blank page when margin bottom is 0' do pdf_theme = { base_font_family: 'M+ 1mn', prose_margin_bottom: 0, } pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, analyze: true |=== a| * abc |=== EOS p1_lines = pdf.lines (pdf.page 1)[:text] (expect p1_lines).to eql ['•abc'] (expect pdf.pages).to have_size 1 end it 'should not fail to fit content in table cell and create blank page when margin bottom is positive' do pdf_theme = { base_font_family: 'M+ 1mn', prose_margin_bottom: 2, } pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, analyze: true before |=== a| * abc * xyz |=== after EOS p1_lines = pdf.lines (pdf.page 1)[:text] (expect p1_lines).to eql ['before', '•abc', '•xyz', 'after'] (expect pdf.pages).to have_size 1 end it 'should draw border around entire delimited block with text that wraps' do pdf_theme = { code_background_color: 'transparent', code_border_radius: 0, } input = <<~EOS [cols="1,1a",frame=none,grid=none] |=== | cell | before block ---- #{lorem_ipsum '1-sentence'} #{lorem_ipsum '1-sentence'} #{lorem_ipsum '1-sentence'} #{lorem_ipsum '1-sentence'} ---- after block |=== EOS pdf = to_pdf input, pdf_theme: pdf_theme, analyze: :line lines = pdf.lines (expect lines).to have_size 4 border_bottom_y = lines[2][:from][:y] pdf = to_pdf input, pdf_theme: pdf_theme, analyze: true last_block_text = (pdf.find_text font_name: 'mplus1mn-regular')[-1] (expect border_bottom_y).to be < last_block_text[:y] after_block_text = (pdf.find_text 'after block')[0] (expect after_block_text[:y]).to be < border_bottom_y end it 'should honor vertical alignment' do pdf = to_pdf <<~'EOS', analyze: true [cols=2*] |=== | 1 + 2 + 3 + 4 .^a| AsciiDoc cell |=== EOS ref_below = (pdf.find_text '2')[0][:y] ref_above = (pdf.find_text '3')[0][:y] asciidoc_y = (pdf.find_text 'AsciiDoc cell')[0][:y] (expect asciidoc_y).to be < ref_below (expect asciidoc_y).to be > ref_above end it 'should apply cell padding to AsciiDoc table cell' do pdf = to_pdf <<~'EOS', pdf_theme: { table_cell_padding: 10 }, analyze: true |=== | a a| b | c | a | b | c |=== EOS a_texts = pdf.find_text 'a' b_texts = pdf.find_text 'b' (expect a_texts[0][:y]).to eql b_texts[0][:y] (expect b_texts[0][:x]).to eql b_texts[1][:x] end it 'should preserve left margin on page that follows page containing a table with an AsciiDoc table cell' do pdf = to_pdf <<~EOS, analyze: true == Section Title [%hardbreaks] #{(['filler'] * 20).join ?\n} [cols=2*] |=== |filler a| Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna al abcde aaaaaaaaaa bbbbb ____ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do ____ |=== terms:: Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et doloreata. nested term::: Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore. + Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore. + Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et fin. .list title * Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore. EOS first_page_text = pdf.text.select {|it| it[:page_number] == 1 } second_page_text = pdf.text.select {|it| it[:page_number] == 2 } (expect second_page_text[0][:string]).to end_with ' et fin.' (expect second_page_text[0][:x]).to be > 48.24 (expect second_page_text[0][:x]).to eql first_page_text.last[:x] (expect second_page_text[1][:string]).to eql 'list title' (expect second_page_text[1][:x]).to eql 48.24 end end context 'Verse table cell' do it 'should apply normal subs and preserve indentation' do pdf = to_pdf <<~'EOS', analyze: true |=== v| here we go *again* |=== EOS lines = pdf.lines (expect lines).to have_size 4 (expect lines[0]).to eql 'here' (expect lines[1]).to eql %(\u00a0 we) (expect lines[2]).to eql %(\u00a0 go) (expect lines[3]).to eql 'again' (expect (pdf.find_text 'again')[0][:font_name]).to eql 'NotoSerif-Bold' end end unless asciidoctor_2_or_better? context 'Caption' do it 'should add title as caption above table by default' do pdf = to_pdf <<~'EOS', analyze: true .Table description |=== | Col A | Col B | A1 | B1 | A2 | B2 |=== EOS caption_text = pdf.text[0] (expect caption_text[:string]).to eql 'Table 1. Table description' (expect caption_text[:font_name]).to eql 'NotoSerif-Italic' (expect caption_text[:y]).to be > (pdf.find_text 'Col A')[0][:y] end it 'should add title as caption below table if table_caption_side key in theme is bottom' do pdf = to_pdf <<~'EOS', pdf_theme: { table_caption_side: 'bottom' }, analyze: true .Table description |=== | Col A | Col B | A1 | B1 | A2 | B2 |=== EOS caption_text = pdf.text[-1] (expect caption_text[:string]).to eql 'Table 1. Table description' (expect caption_text[:y]).to be < (pdf.find_text 'B2')[0][:y] end it 'should confine caption to width of table by default', visual: true do to_file = to_pdf_file <<~'EOS', 'table-caption-width.pdf', pdf_theme: { caption_align: 'center' } .A rather long description for this table [%header%autowidth] |=== | Col A | Col B | A1 | B1 | A2 | B2 |=== .A rather long description for this table [%header%autowidth,align=center] |=== | Col C | Col D | C1 | D1 | C2 | D2 |=== .A rather long description for this table [%header%autowidth,align=right] |=== | Col E | Col F | E1 | F1 | E2 | F2 |=== EOS (expect to_file).to visually_match 'table-caption-width.pdf' end it 'should not confine caption to width of table if table_caption_max_width key in theme is none' do pdf = to_pdf <<~'EOS', pdf_theme: { caption_align: 'center', table_caption_max_width: 'none' }, analyze: true :table-caption!: .A rather long description for this table [%autowidth] |=== | Col A | Col B | A1 | B1 | A2 | B2 |=== .A rather long description for this table [%autowidth,align=center] |=== | Col C | Col D | C1 | D1 | C2 | D2 |=== .A rather long description for this table [%autowidth,align=right] |=== | Col E | Col F | E1 | F1 | E2 | F2 |=== EOS caption_texts = pdf.find_text 'A rather long description for this table' (expect caption_texts).to have_size 3 (expect caption_texts.map {|it| it[:x] }.uniq).to have_size 1 end it 'should allow theme to set caption alignment to inherit from table' do pdf = to_pdf <<~'EOS', pdf_theme: { table_caption_align: 'inherit' }, analyze: true .Right-aligned caption [width=25%,align=right] |=== |1 |2 |3 |4 |=== EOS first_cell_text = (pdf.find_text '1')[0] caption_text = (pdf.find_text %r/^Table 1\./)[0] (expect caption_text[:x]).to be > first_cell_text[:x] end end context 'Table alignment' do it 'should allow theme to customize default alignment of table ' do pdf = to_pdf <<~'EOS', pdf_theme: { table_align: 'right' }, analyze: true [cols=3*,width=50%] |=== |RIGHT |B1 |C1 |A2 |B2 |C2 |A3 |B3 |C3 |=== [cols=3*,width=50%,align=left] |=== |LEFT |B1 |C1 |A2 |B2 |C2 |A3 |B3 |C3 |=== EOS cell_right = (pdf.find_text 'RIGHT')[0] cell_left = (pdf.find_text 'LEFT')[0] (expect cell_right[:x]).to be > cell_left[:x] end it 'should allow position of table to be set using align attribute on table' do pdf = to_pdf <<~'EOS', analyze: true [cols=3*,width=50%] |=== |LEFT |B1 |C1 |A2 |B2 |C2 |A3 |B3 |C3 |=== [cols=3*,width=50%,align=right] |=== |RIGHT |B1 |C1 |A2 |B2 |C2 |A3 |B3 |C3 |=== EOS cell_right_text = (pdf.find_text 'RIGHT')[0] cell_left_text = (pdf.find_text 'LEFT')[0] (expect cell_right_text[:x]).to be > cell_left_text[:x] end it 'should not mangle margin box on subsequent pages if table with alignment crosses page boundary' do blank_line = %(\n\n) pdf = to_pdf <<~EOS, analyze: true #{(['filler'] * 25).join blank_line} [%autowidth,align=right] |=== |A | B |A1 |B1 |A2 |B2 |A3 |B3 |=== #{(['filler'] * 22).join blank_line} #{(['* list item'] * 6).join ?\n} EOS page_width = pdf.pages[0][:size][0] a1_text = (pdf.find_text 'A1')[0] a3_text = (pdf.find_text 'A3')[0] (expect a1_text[:x]).to be > (page_width * 0.5) (expect a1_text[:page_number]).to be 1 (expect a3_text[:x]).to be > (page_width * 0.5) (expect a3_text[:page_number]).to be 2 first_list_item_text = (pdf.find_text string: 'list item', page_number: 2)[0] last_list_item_text = (pdf.find_text string: 'list item', page_number: 3)[-1] # NOTE if this is off, the margin box got mangled (expect last_list_item_text[:x]).to eql first_list_item_text[:x] end it 'should set width of aligned table relative to bounds' do pdf = to_pdf <<~EOS, analyze: true [width=25%,align=right] |=== |A | B |A1 |B1 |A2 |B2 |=== ==== **** [width=25%,align=right] |=== |A | B |A1 |B1 |A2 |B2 |=== **** ==== EOS page_width = pdf.pages[0][:size][0] first_a1_text = (pdf.find_text 'A1')[0] second_a1_text = (pdf.find_text 'A1')[1] (expect first_a1_text[:x]).to be > (page_width * 0.5) (expect second_a1_text[:x]).to be > (page_width * 0.5) (expect first_a1_text[:x]).to be > second_a1_text[:x] end it 'should break line on any CJK character if value of scripts attribute is cjk' do pdf = to_pdf <<~'EOS', analyze: true :scripts: cjk :pdf-theme: default-with-fallback-font |=== | AsciiDoc 是一个人类可读的文件格式,语义上等同于 DocBook 的 XML,但使用纯文本标记了约定。可以使用任何文本编辑器创建文件把 AsciiDoc 和阅读“原样”,或呈现为HTML 或由 DocBook 的工具链支持的任何其他格式,如 PDF,TeX 的,Unix 的手册页,电子书,幻灯片演示等。 | AsciiDoc は、意味的には DocBook XML のに相当するが、プレーン·テキスト·マークアップの規則を使用して、人間が読めるドキュメントフォーマット、である。 AsciiDoc は文書は、任意のテキストエディタを使用して作成され、「そのまま"または、HTML や DocBook のツールチェーンでサポートされている他のフォーマット、すなわち PDF、TeX の、Unix の man ページ、電子書籍、スライドプレゼンテーションなどにレンダリングすることができます。 |=== EOS lines = pdf.lines (expect lines).to have_size 8 (expect lines[0]).to end_with '任何' (expect lines[1]).to start_with '文本' (expect lines[3]).to end_with '使用' (expect lines[4]).to start_with 'して' end end context 'Cell spanning' do it 'should honor colspan on cell in head row' do pdf = to_pdf <<~'EOS', analyze: true [cols=2*^] |=== 2+|Columns |cell |cell |=== EOS page_width = (get_page_size pdf)[0] midpoint = page_width * 0.5 columns_text = (pdf.find_text 'Columns')[0] (expect columns_text[:x]).to be < midpoint (expect columns_text[:x] + columns_text[:width]).to be > midpoint (expect pdf.find_text 'cell').to have_size 2 end it 'should honor colspan on cell in body row' do pdf = to_pdf <<~'EOS', analyze: true [cols=2*^] |=== |cell |cell 2+|one big cell |=== EOS page_width = (get_page_size pdf)[0] midpoint = page_width * 0.5 big_cell_text = (pdf.find_text 'one big cell')[0] (expect big_cell_text[:x]).to be < midpoint (expect big_cell_text[:x] + big_cell_text[:width]).to be > midpoint (expect pdf.find_text 'cell').to have_size 2 end it 'should honor rowspan on cell in body row' do pdf = to_pdf <<~'EOS', analyze: true [cols=2*^.^] |=== .2+|one big cell |cell |cell |=== EOS big_cell_text = (pdf.find_text 'one big cell')[0] top_cell_text, bottom_cell_text = pdf.find_text 'cell' (expect top_cell_text[:x]).to eql bottom_cell_text[:x] (expect top_cell_text[:y]).to be > bottom_cell_text[:y] (expect big_cell_text[:x]).to be < top_cell_text[:x] (expect big_cell_text[:y]).to be < top_cell_text[:y] (expect big_cell_text[:y]).to be > bottom_cell_text[:y] end end end �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/thematic_break_spec.rb����������������������������������������������0000664�0000000�0000000�00000002636�14163570564�0023026�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'spec_helper' describe 'Asciidoctor::PDF::Converter - Thematic Break' do it 'should draw a horizonal rule at the location of a thematic break' do pdf = to_pdf <<~'EOS', analyze: :line before --- after EOS lines = pdf.lines (expect lines).to have_size 1 horizontal_rule = lines[0] (expect horizontal_rule[:from][:y]).to eql horizontal_rule[:to][:y] (expect horizontal_rule[:to][:x]).to be > horizontal_rule[:from][:x] end it 'should draw two dashed line if the border style is dashed', visual: true do pdf_theme = { thematic_break_border_width: 0.5, thematic_break_border_style: 'dashed', thematic_break_border_color: 'a0a0a0', } to_file = to_pdf_file <<~'EOS', 'thematic-break-line-style-dashed.pdf', pdf_theme: pdf_theme before --- after EOS (expect to_file).to visually_match 'thematic-break-line-style-dashed.pdf' end it 'should draw two parallel lines if the border style is double', visual: true do pdf_theme = { thematic_break_border_width: 1, thematic_break_border_style: 'double', thematic_break_border_color: 'a0a0a0', } to_file = to_pdf_file <<~'EOS', 'thematic-break-line-style-double.pdf', pdf_theme: pdf_theme before --- after EOS (expect to_file).to visually_match 'thematic-break-line-style-double.pdf' end end ��������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/theme_loader_spec.rb������������������������������������������������0000664�0000000�0000000�00000064033�14163570564�0022513�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'spec_helper' describe Asciidoctor::PDF::ThemeLoader do subject { described_class } describe '#load' do it 'should not fail if theme data is empty' do theme = subject.new.load '' (expect theme).not_to be_nil (expect theme).to be_an OpenStruct (expect theme.to_h).to be_empty end it 'should not fail if theme data is false' do theme = subject.new.load false (expect theme).not_to be_nil (expect theme).to be_an OpenStruct (expect theme.to_h).to be_empty end it 'should store flattened keys in OpenStruct' do theme_data = SafeYAML.load <<~EOS page: size: A4 base: font: family: Times-Roman border_width: 0.5 admonition: label: font_style: bold EOS theme = subject.new.load theme_data (expect theme).to be_an OpenStruct (expect theme).to respond_to :page_size (expect theme).to respond_to :base_font_family (expect theme).to respond_to :base_border_width (expect theme).to respond_to :admonition_label_font_style end it 'should not flatten admonition icon keys' do theme_data = SafeYAML.load <<~EOS admonition: icon: tip: name: far-lightbulb stroke_color: ffff00 size: 24 note: name: far-sticky-note stroke_color: 0000ff size: 24 EOS theme = subject.new.load theme_data (expect theme).to be_an OpenStruct (expect theme.admonition_icon_tip).to be_a ::Hash (expect theme.admonition_icon_tip).to eql name: 'far-lightbulb', stroke_color: 'FFFF00', size: 24 (expect theme.admonition_icon_note).to be_a ::Hash (expect theme.admonition_icon_note).to eql name: 'far-sticky-note', stroke_color: '0000FF', size: 24 end it 'should replace hyphens in key names with underscores' do theme_data = SafeYAML.load <<~EOS page-size: A4 base: font-family: Times-Roman abstract: title-font-size: 20 admonition: icon: tip: stroke-color: FFFF00 EOS theme = subject.new.load theme_data (expect theme).to be_an OpenStruct (expect theme).to respond_to :page_size (expect theme).to respond_to :base_font_family (expect theme).to respond_to :abstract_title_font_size (expect theme).to respond_to :admonition_icon_tip (expect theme.admonition_icon_tip).to be_a ::Hash (expect theme.admonition_icon_tip).to have_key :stroke_color end it 'should not replace hyphens with underscores in role names' do theme_data = SafeYAML.load <<~EOS role: flaming-red: font-color: ff0000 so-very-blue: font: color: 0000ff EOS theme = subject.new.load theme_data (expect theme).to be_an OpenStruct (expect theme).to respond_to 'role_flaming-red_font_color' (expect theme['role_flaming-red_font_color']).to eql 'FF0000' (expect theme).to respond_to 'role_so-very-blue_font_color' (expect theme['role_so-very-blue_font_color']).to eql '0000FF' end it 'should allow role to contain uppercase characters' do theme_data = SafeYAML.load <<~EOS role: BOLD: font-style: bold EOS theme = subject.new.load theme_data (expect theme).to be_an OpenStruct (expect theme).to respond_to 'role_BOLD_font_style' (expect theme['role_BOLD_font_style']).to eql 'bold' end it 'should coerce value of keys that end in content to a string' do theme_data = SafeYAML.load <<~EOS menu: caret_content: - '>' ulist: marker: disc: content: 0 footer: recto: left: content: true right: content: 2 * 2 EOS theme = subject.new.load theme_data (expect theme).to be_an OpenStruct (expect theme.menu_caret_content).to eql '[">"]' (expect theme.ulist_marker_disc_content).to eql '0' (expect theme.footer_recto_left_content).to eql 'true' (expect theme.footer_recto_right_content).to eql '2 * 2' end it 'should expand variables in value of keys that end in _content' do theme_data = SafeYAML.load <<~EOS page: size: A4 base: font_size: 12 footer: verso: left: content: 2 * $base_font_size right: content: $page_size EOS theme = subject.new.load theme_data (expect theme).to be_an OpenStruct (expect theme.footer_verso_left_content).to eql '2 * 12' (expect theme.footer_verso_right_content).to eql 'A4' end it 'should allow font to be declared once for all styles' do theme_data = SafeYAML.load <<~EOS font: catalog: Serif: /path/to/serif-font.ttf EOS theme = subject.new.load theme_data (expect theme.font_catalog).to be_a Hash (expect theme.font_catalog['Serif']).to be_a Hash (expect theme.font_catalog['Serif']).to have_size 4 (expect theme.font_catalog['Serif']['normal']).to eql '/path/to/serif-font.ttf' (expect theme.font_catalog['Serif']['bold']).to eql '/path/to/serif-font.ttf' (expect theme.font_catalog['Serif']['italic']).to eql '/path/to/serif-font.ttf' (expect theme.font_catalog['Serif']['bold_italic']).to eql '/path/to/serif-font.ttf' end it 'should allow regular to be used as alias for normal style when defining fonts' do theme_data = SafeYAML.load <<~EOS font: catalog: Serif: regular: /path/to/serif-regular.ttf EOS theme = subject.new.load theme_data (expect theme.font_catalog).to be_a Hash (expect theme.font_catalog['Serif']).to be_a Hash (expect theme.font_catalog['Serif']['normal']).to eql '/path/to/serif-regular.ttf' end it 'should allow font catalog and font fallbacks to be defined as flat keys' do theme_data = SafeYAML.load <<~EOS font_catalog: Serif: normal: /path/to/serif-font.ttf Fallback: normal: /path/to/fallback-font.ttf font_fallbacks: - Fallback EOS theme = subject.new.load theme_data (expect theme.font_catalog).to be_a Hash (expect theme.font_catalog['Serif']).to be_a Hash (expect theme.font_catalog['Serif']['normal']).to eql '/path/to/serif-font.ttf' (expect theme.font_fallbacks).to be_a Array (expect theme.font_fallbacks).to eql ['Fallback'] end end describe '.load_file' do it 'should not fail if theme file is empty' do theme = subject.load_file fixture_file 'empty-theme.yml' (expect theme).to be_an OpenStruct (expect theme).to eql subject.load_base_theme end it 'should throw error that includes filename and reason if theme is indented using tabs' do expect { subject.load_file fixture_file 'tab-indentation-theme.yml' }.to raise_exception RuntimeError, /tab-indentation-theme\.yml\): found character .*that cannot start any token/ end it 'should load and extend themes specified by extends array' do input_file = fixture_file 'extended-custom-theme.yml' theme = subject.load_file input_file, nil, fixtures_dir (expect theme.base_align).to eql 'justify' (expect theme.base_font_family).to eql 'Times-Roman' (expect theme.base_font_color).to eql 'FF0000' end it 'should extend built-in default theme if value of extends entry is default' do input_file = fixture_file 'extended-red-theme.yml' theme = subject.load_file input_file, nil, fixtures_dir (expect theme.base_font_family).to eql 'Noto Serif' (expect theme.base_font_color).to eql '0000FF' end it 'should allow font catalog to be merged with font catalog from theme being extended' do input_file = fixture_file 'extra-fonts-theme.yml' theme = subject.load_file input_file, nil, fixtures_dir (expect theme.font_catalog).to be_a Hash (expect theme.font_catalog).to have_size 3 (expect theme.font_catalog).to have_key 'Noto Serif' (expect theme.font_catalog).to have_key 'M+ 1mn' (expect theme.font_catalog['Noto Serif']).to have_size 4 (expect theme.font_catalog['M+ 1mn']).to have_size 1 (expect theme.font_catalog['M+ 1mn']['normal']).to eql '/path/to/mplus1mn-regular.ttf' (expect theme.font_catalog).to have_key 'VLGothic' (expect theme.font_catalog['VLGothic']).to have_size 4 (expect theme.font_catalog['VLGothic'].values.uniq).to have_size 1 (expect theme.font_catalog['VLGothic']['normal']).to eql '/path/to/vlgothic-regular.ttf' (expect theme.font_fallbacks).to be_a Array (expect theme.font_fallbacks).to eql ['VLGothic'] end end describe '.load_theme' do it 'should load base theme if theme name is base' do theme = subject.load_theme 'base' (expect theme).not_to be_nil (expect theme).to be_an OpenStruct (expect theme.base_font_family).to eql 'Helvetica' (expect theme.literal_font_family).to eql 'Courier' (expect theme).to eql subject.load_base_theme end it 'should load default theme if no arguments are given' do theme = subject.load_theme (expect theme).not_to be_nil (expect theme).to be_an OpenStruct (expect theme.base_font_family).to eql 'Noto Serif' (expect theme.link_font_color).to eql '428BCA' end it 'should not inherit from base theme when loading default theme' do theme = subject.load_theme # NOTE table_border_style is only set in the base theme (expect theme.table_border_style).to be_nil end it 'should inherit from base theme when loading custom theme' do theme = subject.load_theme fixture_file 'empty-theme.yml' (expect theme.table_border_style).to eql 'solid' end it 'should not inherit from base theme if custom theme extends nothing' do theme = subject.load_theme fixture_file 'extends-nil-empty-theme.yml' (expect theme.table_border_style).to be_nil end it 'should not inherit from base theme if custom theme extends default' do theme = subject.load_theme 'extended-default-theme.yml', fixtures_dir (expect theme.table_border_style).to be_nil end it 'should not inherit from base theme if custom theme extends nil' do theme = subject.load_theme 'extended-extends-nil-theme.yml', fixtures_dir (expect theme.base_font_family).to eql 'Times-Roman' (expect theme.heading_font_family).to eql 'Times-Roman' (expect theme.base_font_size).to be_nil end it 'should inherit from base theme if custom theme extends base' do base_theme = subject.load_base_theme theme = subject.load_theme fixture_file 'extended-base-theme.yml' (expect theme.base_font_family).not_to eql base_theme.base_font_family (expect theme.base_font_color).not_to eql base_theme.base_font_color (expect theme.base_font_size).to eql base_theme.base_font_size end it 'should look for file ending in -theme.yml when resolving custom theme' do theme = subject.load_theme 'custom', fixtures_dir (expect theme.base_font_family).to eql 'Times-Roman' (expect theme.__dir__).to eql fixtures_dir end it 'should set __dir__ to dirname of theme file if theme path not set' do theme = subject.load_theme fixture_file 'custom-theme.yml' (expect theme.base_font_family).to eql 'Times-Roman' (expect theme.__dir__).to eql fixtures_dir end it 'should load specified file ending with .yml if path is not given' do theme = subject.load_theme fixture_file 'custom-theme.yml' (expect theme.base_font_family).to eql 'Times-Roman' end it 'should load specified file ending with .yml from specified path' do theme = subject.load_theme 'custom-theme.yml', fixtures_dir (expect theme.base_font_family).to eql 'Times-Roman' end it 'should load extended themes relative to theme file when theme_path is not specified' do theme = subject.load_theme fixture_file 'extended-custom-theme.yml' (expect theme.__dir__).to eql fixtures_dir (expect theme.base_align).to eql 'justify' (expect theme.base_font_family).to eql 'Times-Roman' (expect theme.base_font_color).to eql 'FF0000' end it 'should ensure required keys are set in non-built-in theme' do theme = subject.load_theme 'extends-nil-empty-theme.yml', fixtures_dir (expect theme.__dir__).to eql fixtures_dir (expect theme.base_align).to eql 'left' (expect theme.base_line_height).to be 1 (expect theme.base_font_color).to eql '000000' (expect theme.code_font_family).to eql 'Courier' (expect theme.conum_font_family).to eql 'Courier' (expect theme.to_h.keys).to have_size 6 end it 'should link sidebar and abstract title font family to heading font family if only latter is set' do theme = subject.load_theme 'heading-font-family-theme.yml', fixtures_dir (expect theme.__dir__).to eql fixtures_dir (expect theme.heading_font_family).to eql 'M+ 1mn' (expect theme.abstract_title_font_family).to eql 'M+ 1mn' (expect theme.sidebar_title_font_family).to eql 'M+ 1mn' end it 'should not overwrite required keys with default values if already set' do theme = subject.load_theme 'extended-default-theme.yml', fixtures_dir (expect theme.base_align).to eql 'justify' (expect theme.code_font_family).to eql 'M+ 1mn' (expect theme.conum_font_family).to eql 'M+ 1mn' end end describe '.resolve_theme_file' do it 'should expand reference to home directory in theme dir when resolving theme file from name' do expected_path = File.join home_dir, '.local/share/asciidoctor-pdf/custom-theme.yml' expected_dir = File.dirname expected_path theme_path, theme_dir = subject.resolve_theme_file 'custom', '~/.local/share/asciidoctor-pdf' (expect theme_path).to eql expected_path (expect theme_dir).to eql expected_dir end it 'should expand reference to home directory in theme dir when resolving theme file from filename' do expected_path = File.join home_dir, '.local/share/asciidoctor-pdf/custom-theme.yml' expected_dir = File.dirname expected_path theme_path, theme_dir = subject.resolve_theme_file 'custom-theme.yml', '~/.local/share/asciidoctor-pdf' (expect theme_path).to eql expected_path (expect theme_dir).to eql expected_dir end it 'should expand reference to home directory in theme file when resolving theme file' do expected_path = File.join home_dir, '.local/share/asciidoctor-pdf/custom-theme.yml' expected_dir = File.dirname expected_path theme_path, theme_dir = subject.resolve_theme_file '~/.local/share/asciidoctor-pdf/custom-theme.yml' (expect theme_path).to eql expected_path (expect theme_dir).to eql expected_dir end end context 'data types' do it 'should resolve null color value as nil' do theme_data = SafeYAML.load <<~EOS page: background_color: null EOS theme = subject.new.load theme_data (expect theme.page_background_color).to be_nil end it 'should expand color value to 6 hexadecimal digits' do { '0' => '000000', '9' => '000009', '000000' => '000000', '222' => '222222', '123' => '112233', '000011' => '000009', '2222' => '002222', '11223344' => '112233', }.each do |input, resolved| theme_data = SafeYAML.load <<~EOS page: background_color: #{input} EOS theme = subject.new.load theme_data (expect theme.page_background_color).to eql resolved end end it 'should wrap cmyk color values in color type if key ends with _color' do theme_data = SafeYAML.load <<~EOS page: background_color: [0, 0, 0, 0] base: font_color: [100, 100, 100, 100] heading: font-color: [0, 0, 0, 0.92] link: font-color: [67.33%, 31.19%, 0, 20.78%] literal: font-color: [0%, 0%, 0%, 0.87] EOS theme = subject.new.load theme_data (expect theme.page_background_color).to eql 'FFFFFF' (expect theme.page_background_color).to be_a subject::HexColorValue (expect theme.base_font_color).to eql '000000' (expect theme.base_font_color).to be_a subject::HexColorValue (expect theme.heading_font_color).to eql [0, 0, 0, 92] (expect theme.heading_font_color).to be_a subject::CMYKColorValue (expect theme.link_font_color).to eql [67.33, 31.19, 0, 20.78] (expect theme.link_font_color).to be_a subject::CMYKColorValue (expect theme.literal_font_color).to eql [0, 0, 0, 87] (expect theme.literal_font_color).to be_a subject::CMYKColorValue end it 'should wrap hex color values in color type if key ends with _color' do theme_data = SafeYAML.load <<~EOS page: background_color: 'ffffff' base: font_color: '000000' heading: font-color: 333333 link: font-color: 428bca literal: font-color: 222 EOS theme = subject.new.load theme_data (expect theme.page_background_color).to eql 'FFFFFF' (expect theme.page_background_color).to be_a subject::HexColorValue (expect theme.base_font_color).to eql '000000' (expect theme.base_font_color).to be_a subject::HexColorValue # NOTE this assertion tests that the value can be an integer, not a string (expect theme.heading_font_color).to eql '333333' (expect theme.heading_font_color).to be_a subject::HexColorValue (expect theme.link_font_color).to eql '428BCA' (expect theme.link_font_color).to be_a subject::HexColorValue (expect theme.literal_font_color).to eql '222222' (expect theme.literal_font_color).to be_a subject::HexColorValue end it 'should coerce rgb color values to hex and wrap in color type if key ends with _color' do theme_data = SafeYAML.load <<~EOS page: background_color: [255, 255, 255] base: font_color: [0, 0, 0] heading: font-color: [51, 51, 51] link: font-color: [66, 139, 202] literal: font-color: ['34', '34', '34'] EOS theme = subject.new.load theme_data (expect theme.page_background_color).to eql 'FFFFFF' (expect theme.page_background_color).to be_a subject::HexColorValue (expect theme.base_font_color).to eql '000000' (expect theme.base_font_color).to be_a subject::HexColorValue (expect theme.heading_font_color).to eql '333333' (expect theme.heading_font_color).to be_a subject::HexColorValue (expect theme.link_font_color).to eql '428BCA' (expect theme.link_font_color).to be_a subject::HexColorValue (expect theme.literal_font_color).to eql '222222' (expect theme.literal_font_color).to be_a subject::HexColorValue end it 'should not wrap value in color type if key does not end with _color' do theme_data = SafeYAML.load <<~EOS menu: caret: content: 4a4a4a EOS theme = subject.new.load theme_data (expect theme.menu_caret_content).to eql '4a4a4a' (expect theme.menu_caret_content).not_to be_a subject::HexColorValue end # NOTE this only works when the theme is read from a file it 'should allow hex color values to be prefixed with # for any key' do theme = subject.load_theme 'hex-color-shorthand', fixtures_dir (expect theme.base_font_color).to eql '222222' (expect theme.base_border_color).to eql 'DDDDDD' (expect theme.page_background_color).to eql 'FEFEFE' (expect theme.link_font_color).to eql '428BCA' (expect theme.literal_font_color).to eql 'AA0000' (expect theme.footer_font_color).to eql '000099' (expect theme.footer_background_color).to be_nil end # NOTE this is only relevant when the theme is read from a file it 'should not coerce color-like values to string if key does not end with color' do theme = subject.load_theme 'color-like-value', fixtures_dir (expect theme.footer_height).to be 100 end it 'should coerce content key to a string' do theme_data = SafeYAML.load <<~EOS vars: foo: bar footer: recto: left: content: $vars_foo right: content: 10 EOS theme = subject.new.load theme_data (expect theme.footer_recto_left_content).to eql 'bar' (expect theme.footer_recto_right_content).to be_a String (expect theme.footer_recto_right_content).to eql '10' end it 'should not modify value without units' do [36, 36.0, 48.24, (20 / 17.0)].each do |val| theme_data = SafeYAML.load <<~EOS footer: padding: #{val} EOS theme = subject.new.load theme_data (expect theme.footer_padding).to eql val end end it 'should resolve value with units to PDF point value' do ['0.5in', '36pt', '48px', '12.7mm', '1.27cm'].each do |val| theme_data = SafeYAML.load <<~EOS footer: padding: #{val} EOS theme = subject.new.load theme_data (expect theme.footer_padding.to_f.round 2).to eql 36.0 end end end context 'interpolation' do it 'should resolve variable reference with underscores to previously defined key' do theme_data = SafeYAML.load <<~EOS brand: blue: '0000FF' base: font_color: $brand_blue heading: font_color: $base_font_color EOS theme = subject.new.load theme_data (expect theme.base_font_color).to eql '0000FF' (expect theme.heading_font_color).to eql theme.base_font_color end it 'should resolve variable reference with hyphens to previously defined key' do theme_data = SafeYAML.load <<~EOS brand: blue: '0000FF' base: font_color: $brand-blue heading: font_color: $base-font-color EOS theme = subject.new.load theme_data (expect theme.base_font_color).to eql '0000FF' (expect theme.heading_font_color).to eql theme.base_font_color end it 'should warn if variable reference cannot be resolved' do (expect do theme_data = SafeYAML.load <<~EOS brand: blue: '0000FF' base: font_color: $brand-red EOS theme = subject.new.load theme_data (expect theme.base_font_color).to eql '$BRAND' end).to log_message severity: :WARN, message: %(unknown variable reference in PDF theme: $brand-red) end it 'should interpolate variables in value' do theme_data = SafeYAML.load <<~EOS brand: font_family_name: Noto font_family_variant: Serif base: font_family: $brand_font_family_name $brand_font_family_variant heading: font_family: $brand_font_family_name Sans EOS theme = subject.new.load theme_data (expect theme.base_font_family).to eql 'Noto Serif' (expect theme.heading_font_family).to eql 'Noto Sans' end it 'should warn if variable reference cannot be resolved when interpolating value' do (expect do theme_data = SafeYAML.load <<~EOS brand: font_family_name: Noto base: font_family: $brand-font-family-name $brand-font-family-variant EOS theme = subject.new.load theme_data (expect theme.base_font_family).to eql 'Noto $brand-font-family-variant' end).to log_message severity: :WARN, message: %(unknown variable reference in PDF theme: $brand-font-family-variant) end it 'should interpolate computed value' do theme_data = SafeYAML.load <<~EOS base: font_size: 10 line_height_length: 12 line_height: $base_line_height_length / $base_font_size font_size_large: $base_font_size * 1.25 font_size_min: $base_font_size * 3 / 4 blockquote: border_width: 5 padding: [0, $base_line_height_length - 2, $base_line_height_length * -0.75, $base_line_height_length + $blockquote_border_width / 2] EOS theme = subject.new.load theme_data (expect theme.base_line_height).to eql 1.2 (expect theme.base_font_size_large).to eql 12.5 (expect theme.base_font_size_min).to eql 7.5 (expect theme.blockquote_padding).to eql [0, 10, -9, 14.5] end it 'should allow numeric value with units to be negative' do theme_data = SafeYAML.load <<~EOS footer: padding: [0, -0.67in, 0, -0.67in] EOS theme = subject.new.load theme_data (expect theme.footer_padding).to eql [0, -48.24, 0, -48.24] end it 'should not compute value if operator is not surrounded by spaces on either side' do theme_data = SafeYAML.load <<~EOS brand: ten: 10 a_string: ten*10 another_string: ten-10 EOS theme = subject.new.load theme_data (expect theme.brand_ten).to be 10 (expect theme.brand_a_string).to eql 'ten*10' (expect theme.brand_another_string).to eql 'ten-10' end it 'should apply precision functions to value' do theme_data = SafeYAML.load <<~EOS base: font_size: 10.5 heading: h1_font_size: ceil($base_font_size * 2.6) h2_font_size: floor($base_font_size * 2.1) h3_font_size: round($base_font_size * 1.5) EOS theme = subject.new.load theme_data (expect theme.heading_h1_font_size).to be 28 (expect theme.heading_h2_font_size).to be 22 (expect theme.heading_h3_font_size).to be 16 end it 'should resolve variable references in font catalog' do theme_data = SafeYAML.load <<~EOS vars: serif-font: /path/to/serif-font.ttf font: catalog: Serif: normal: $vars-serif-font EOS theme = subject.new.load theme_data (expect theme.font_catalog).to be_a Hash (expect theme.font_catalog['Serif']).to be_a Hash (expect theme.font_catalog['Serif']['normal']).to eql '/path/to/serif-font.ttf' end end end �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/title_page_spec.rb��������������������������������������������������0000664�0000000�0000000�00000067213�14163570564�0022203�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'spec_helper' describe 'Asciidoctor::PDF::Converter - Title Page' do it 'should place document title on title page when doctype is book' do pdf = to_pdf <<~'EOS', doctype: :book, analyze: true = Document Title body EOS (expect pdf.pages).to have_size 2 text = pdf.text (expect text).to have_size 2 (expect pdf.pages[0][:text]).to have_size 1 doctitle_text = pdf.pages[0][:text][0] (expect doctitle_text[:string]).to eql 'Document Title' (expect doctitle_text[:font_size]).to be 27 (expect pdf.pages[1][:text]).to have_size 1 end it 'should create book with only a title page if doctitle is specified and body is empty' do pdf = to_pdf '= Title Page Only', doctype: :book, analyze: true (expect pdf.pages).to have_size 1 (expect pdf.lines).to eql ['Title Page Only'] end it 'should include revision number, date, and remark on title page' do pdf = to_pdf <<~'EOS', analyze: true = Document Title Author Name v1.0, 2019-01-01: Draft :doctype: book EOS (expect pdf.lines).to include 'Version 1.0, 2019-01-01: Draft' end it 'should display author names under document title on title page' do pdf = to_pdf <<~'EOS', analyze: true = Document Title Doc Writer; Junior Writer :doctype: book body EOS title_page_lines = pdf.lines pdf.find_text page_number: 1 (expect title_page_lines).to eql ['Document Title', 'Doc Writer, Junior Writer'] end context 'title-page' do it 'should place document title on title page if title-page attribute is set' do pdf = to_pdf <<~'EOS', analyze: :page = Document Title :title-page: body EOS (expect pdf.pages).to have_size 2 (expect pdf.pages[0][:strings]).to include 'Document Title' (expect pdf.pages[1][:strings]).to include 'body' end it 'should create document with only a title page if body is empty and title-page is set' do pdf = to_pdf '= Title Page Only', attribute_overrides: { 'title-page' => '' }, analyze: true (expect pdf.pages).to have_size 1 (expect pdf.lines).to eql ['Title Page Only'] end end context 'Logo' do it 'should add logo specified by title-logo-image document attribute to title page' do pdf = to_pdf <<~'EOS' = Document Title :doctype: book :title-logo-image: image:tux.png[] EOS images = get_images pdf, 1 (expect images).to have_size 1 (expect images[0].hash[:Width]).to be 204 (expect images[0].hash[:Height]).to be 240 end it 'should add remote logo specified by title-logo-image document attribute to title page' do with_local_webserver do |base_url| [%(#{base_url}/tux.png), %(image:#{base_url}/tux.png[])].each do |image_url| pdf = to_pdf <<~EOS, attribute_overrides: { 'allow-uri-read' => '' } = Document Title :doctype: book :title-logo-image: #{image_url} EOS images = get_images pdf, 1 (expect images).to have_size 1 (expect images[0].hash[:Width]).to be 204 (expect images[0].hash[:Height]).to be 240 end end end it 'should add logo specified by title-logo-image document attribute with data URI to title page' do image_data = File.binread fixture_file 'tux.png' encoded_image_data = Base64.strict_encode64 image_data image_url = %(image:data:image/jpg;base64,#{encoded_image_data}[]) pdf = to_pdf <<~EOS = Document Title :doctype: book :title-logo-image: #{image_url} EOS images = get_images pdf, 1 (expect images).to have_size 1 (expect images[0].hash[:Width]).to be 204 (expect images[0].hash[:Height]).to be 240 end it 'should use image format for title logo specified by format attribute' do source_file = (dest_file = fixture_file 'square') + '.svg' begin FileUtils.cp source_file, dest_file pdf = to_pdf <<~EOS, enable_footer: true, analyze: :rect = Document Title :title-page: :title-logo-image: image:#{dest_file}[format=svg] EOS (expect pdf.rectangles).to have_size 1 rect = pdf.rectangles[0] (expect rect[:width]).to eql 200.0 (expect rect[:height]).to eql 200.0 ensure File.unlink dest_file end end it 'should position logo using value of top attribute on image macro in title-logo-image attribute' do pdf = to_pdf <<~'EOS', analyze: :image = Document Title :doctype: book :title-logo-image: image:tux.png[align=left,top=0vh] EOS left_margin = 0.67 * 72 page_height = 841.89 # ~11.69in images = pdf.images (expect images).to have_size 1 title_page_image = images[0] (expect title_page_image[:page_number]).to be 1 (expect title_page_image[:x]).to eql left_margin (expect title_page_image[:y]).to eql page_height end it 'should align logo using value of align attribute specified on image macro', visual: true do to_file = to_pdf_file <<~'EOS', 'title-page-logo-align-attribute.pdf' = Document Title :doctype: book :title-logo-image: image:tux.png[align=left] EOS (expect to_file).to visually_match 'title-page-logo-align-left.pdf' end it 'should ignore align attribute on logo macro if value is invalid', visual: true do to_file = to_pdf_file <<~'EOS', 'title-page-logo-align-invalid.pdf', pdf_theme: { title_page_logo_align: 'left' } = Document Title :doctype: book :title-logo-image: image:tux.png[align=foo] EOS (expect to_file).to visually_match 'title-page-logo-align-left.pdf' end end context 'Background' do it 'should set background image of title page from title-page-background-image attribute' do pdf = to_pdf <<~'EOS' = The Amazing Author Name :doctype: book :title-page-background-image: image:bg.png[] beginning <<< middle <<< end EOS (expect pdf.pages).to have_size 4 [1, 0, 0, 0].each_with_index do |expected_num_images, idx| images = get_images pdf, idx.next (expect images).to have_size expected_num_images end end it 'should set background image of title page when document has image cover page' do pdf = to_pdf <<~'EOS' = The Amazing Author Name :doctype: book :front-cover-image: image:cover.jpg[] :title-page-background-image: image:bg.png[] beginning <<< middle <<< end EOS (expect pdf.pages).to have_size 5 [1, 1, 0, 0, 0].each_with_index do |expected_num_images, idx| images = get_images pdf, idx.next (expect images).to have_size expected_num_images end end it 'should set background image of title page and body pages when document has PDF cover page' do pdf = to_pdf <<~'EOS' = The Amazing Author Name :doctype: book :front-cover-image: image:blue-letter.pdf[] :title-page-background-image: image:tux.png[] :page-background-image: image:bg.png[] beginning <<< middle <<< end EOS images_by_page = [] (expect pdf.pages).to have_size 5 [0, 1, 1, 1, 1].each_with_index do |expected_num_images, idx| images = get_images pdf, idx.next images_by_page << images (expect images).to have_size expected_num_images end (expect images_by_page[1][0].data).not_to eql images_by_page[2][0].data (expect images_by_page[2..-1].map {|it| it[0].data }.uniq).to have_size 1 end it 'should not create extra blank page when document has cover page and raster page background image' do image_data = File.binread fixture_file 'cover.jpg' pdf = to_pdf <<~'EOS' = The Amazing Author Name :doctype: book :front-cover-image: image:blue-letter.pdf[] :title-page-background-image: image:cover.jpg[] :page-background-image: image:tux.png[] EOS (expect pdf.pages).to have_size 2 images_by_page = [] [0, 1].each_with_index do |expected_num_images, idx| images = get_images pdf, idx.next images_by_page << images (expect images).to have_size expected_num_images end (expect images_by_page[1][0].data).to eql image_data cover_page_contents = pdf.objects[(pdf.page 1).page_object[:Contents][0]].data (expect (cover_page_contents.split ?\n).slice 0, 3).to eql ['q', '/DeviceRGB cs', '0.0 0.0 1.0 scn'] end it 'should not create extra blank page when document has cover page and SVG page background image', visual: true do to_file = to_pdf_file <<~'EOS', 'title-page-background-image-svg-with-cover.pdf' = The Amazing Author Name :doctype: book :front-cover-image: image:blue-letter.pdf[] :title-page-background-image: image:example-watermark.svg[] :page-background-image: image:watermark.svg[] content EOS (expect to_file).to visually_match 'title-page-background-image-svg-with-cover.pdf' end it 'should be able to set size and position of title page background image', visual: true do to_file = to_pdf_file <<~'EOS', 'title-page-background-image-size-position.pdf' = Document Title :doctype: book :title-page-background-image: image:tux.png[fit=none,position=bottom left] content EOS (expect to_file).to visually_match 'title-page-background-image-size-position.pdf' end end context 'Theming' do it 'should allow theme to customize content of authors line' do pdf = to_pdf <<~'EOS', pdf_theme: { title_page_authors_content: '{url}[{author}]' } = Document Title Doc Writer <doc@example.org>; Junior Writer <https://github.com/ghost> :doctype: book body EOS (expect (pdf.page 1).text).to include 'Doc Writer, Junior Writer' annotations = get_annotations pdf, 1 (expect annotations).to have_size 2 author1_annotation = annotations[0] (expect author1_annotation[:Subtype]).to be :Link (expect author1_annotation[:A][:URI]).to eql 'mailto:doc@example.org' author2_annotation = annotations[1] (expect author2_annotation[:Subtype]).to be :Link (expect author2_annotation[:A][:URI]).to eql 'https://github.com/ghost' end it 'should allow theme to customize content of authors line by available metadata' do pdf_theme = { title_page_authors_content_name_only: '{authorinitials}', title_page_authors_content_with_email: '{lastname}, {firstname} <{email}>', title_page_authors_content_with_url: '{url}[{author}]', } pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme = Document Title Doc Writer <doc@example.org>; Junior Writer <https://github.com/ghost>; Jane Doe :doctype: book body EOS (expect (pdf.page 1).text).to include 'Writer, Doc <doc@example.org>, Junior Writer, JD' annotations = get_annotations pdf, 1 (expect annotations).to have_size 2 author1_annotation = annotations[0] (expect author1_annotation[:Subtype]).to be :Link (expect author1_annotation[:A][:URI]).to eql 'mailto:doc@example.org' author2_annotation = annotations[1] (expect author2_annotation[:Subtype]).to be :Link (expect author2_annotation[:A][:URI]).to eql 'https://github.com/ghost' end it 'should allow theme to customize style of link in authors line using custom role' do attributes = asciidoctor_1_5_7_or_better? ? {} : { 'linkattrs' => '' } pdf_theme = { role_author_font_color: '00AA00', title_page_authors_content: '{url}[{author},role=author]', } pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, attribute_overrides: attributes, analyze: true = Document Title Junior Writer <https://github.com/ghost> :doctype: book body EOS author_text = (pdf.find_text 'Junior Writer')[0] (expect author_text[:font_color]).to eql '00AA00' end it 'should be able to use an icon in an author entry' do pdf_theme = { title_page_authors_content: '{author} {url}[icon:twitter[]]', } pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, analyze: true = Document Title Doc Writer <https://twitter.com/asciidoctor> :icons: font :doctype: book body EOS title_page_lines = pdf.lines pdf.find_text page_number: 1 (expect title_page_lines).to include %(Doc Writer \uf099) end it 'should allow delimiter for authors and revision info to be set' do pdf_theme = { title_page_authors_delimiter: ' / ', title_page_revision_delimiter: ' - ', } pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, analyze: true = Document Title Doc Writer; Junior Writer v1.0, 2019-01-01 :doctype: book content EOS lines = pdf.lines (expect lines).to include 'Doc Writer / Junior Writer' (expect lines).to include 'Version 1.0 - 2019-01-01' end it 'should add logo specified by title_page_logo_image theme key to title page' do pdf = to_pdf <<~'EOS', pdf_theme: { title_page_logo_image: 'image:{docdir}/tux.png[]' }, attribute_overrides: { 'docdir' => fixtures_dir } = Document Title :doctype: book EOS images = get_images pdf, 1 (expect images).to have_size 1 (expect images[0].hash[:Width]).to be 204 (expect images[0].hash[:Height]).to be 240 end it 'should resolve title page logo image specified using path in theme relative to themesdir' do pdf_theme = { __dir__: fixtures_dir, title_page_logo_image: 'tux.png', } pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme = Document Title :doctype: book EOS images = get_images pdf, 1 (expect images).to have_size 1 (expect images[0].hash[:Width]).to be 204 (expect images[0].hash[:Height]).to be 240 end it 'should resolve title page logo image specified using path in theme relative to themesdir in classloader', if: RUBY_ENGINE == 'jruby' do require fixture_file 'pdf-themes.jar' pdf = to_pdf <<~'EOS', attribute_overrides: { 'pdf-theme' => 'uri:classloader:/pdf-themes/title-page-logo-image-theme.yml' } = Document Title :doctype: book EOS images = get_images pdf, 1 (expect images).to have_size 1 (expect images[0].hash[:Width]).to be 204 (expect images[0].hash[:Height]).to be 240 end it 'should resolve title page logo image with absolute path for theme loaded from classloader', if: RUBY_ENGINE == 'jruby' do require fixture_file 'pdf-themes.jar' pdf = to_pdf <<~'EOS', attribute_overrides: { 'pdf-theme' => 'uri:classloader:/pdf-themes/title-page-logo-image-from-fixturesdir-theme.yml', 'fixturesdir' => fixtures_dir } = Document Title :doctype: book EOS images = get_images pdf, 1 (expect images).to have_size 1 (expect images[0].hash[:Width]).to be 204 (expect images[0].hash[:Height]).to be 240 end it 'should ignore missing attribute reference when resolve title page logo image from theme' do (expect do to_pdf <<~'EOS', pdf_theme: { title_page_logo_image: 'image:{no-such-attribute}{attribute-missing}.png[]' }, attribute_overrides: { 'attribute-missing' => 'warn' } = Document Title :doctype: book EOS end).to log_message severity: :WARN, message: '~skip.png' end it 'should add remote logo specified by title_page_logo_image theme key to title page' do with_local_webserver do |base_url| [%(#{base_url}/tux.png), %(image:#{base_url}/tux.png[])].each do |image_url| pdf = to_pdf <<~'EOS', pdf_theme: { title_page_logo_image: image_url }, attribute_overrides: { 'allow-uri-read' => '' } = Document Title :doctype: book EOS images = get_images pdf, 1 (expect images).to have_size 1 (expect images[0].hash[:Width]).to be 204 (expect images[0].hash[:Height]).to be 240 end end end it 'should add logo specified by title-logo-image document attribute with data URI to title page' do image_data = File.binread fixture_file 'tux.png' encoded_image_data = Base64.strict_encode64 image_data image_url = %(image:data:image/jpg;base64,#{encoded_image_data}[]) pdf = to_pdf <<~EOS, pdf_theme: { title_page_logo_image: image_url } = Document Title :doctype: book EOS images = get_images pdf, 1 (expect images).to have_size 1 (expect images[0].hash[:Width]).to be 204 (expect images[0].hash[:Height]).to be 240 end it 'should resolve title page logo image from theme relative to themedir' do pdf_theme = { __dir__: examples_dir, title_page_logo_image: 'image:sample-logo.jpg[]', } pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme = Document Title :doctype: book EOS images = get_images pdf, 1 (expect images).to have_size 1 (expect images[0].hash[:Width]).to be 331 (expect images[0].hash[:Height]).to be 369 end it 'should move logo down from top margin of page by % value of title_page_logo_top key' do [nil, '10%'].each do |top| pdf_theme = { title_page_logo_top: top, } pdf = to_pdf <<~'EOS', analyze: :image, pdf_theme: pdf_theme = Document Title :doctype: book :title-logo-image: image:tux.png[align=left] image::tux.png[] EOS left_margin = 0.67 * 72 top_margin = 0.5 * 72 bottom_margin = 0.67 * 72 page_height = 841.89 # ~11.69in images = pdf.images (expect images).to have_size 2 title_page_image = images[0] reference_image = images[1] (expect title_page_image[:page_number]).to be 1 (expect reference_image[:page_number]).to be 2 (expect title_page_image[:x]).to eql left_margin (expect title_page_image[:x]).to eql reference_image[:x] effective_page_height = page_height - top_margin - bottom_margin expected_top = reference_image[:y] - (effective_page_height * (top.to_f / 100)) (expect title_page_image[:y]).to eql expected_top end end it 'should move logo down from top margin of page by pt value of title_page_logo_top key' do pdf_theme = { title_page_logo_top: '20pt', } pdf = to_pdf <<~'EOS', analyze: :image, pdf_theme: pdf_theme = Document Title :doctype: book :title-logo-image: image:tux.png[align=left] image::tux.png[] EOS left_margin = 0.67 * 72 images = pdf.images (expect images).to have_size 2 title_page_image = images[0] reference_image = images[1] (expect title_page_image[:page_number]).to be 1 (expect reference_image[:page_number]).to be 2 (expect title_page_image[:x]).to eql left_margin (expect title_page_image[:x]).to eql reference_image[:x] expected_top = reference_image[:y] - 20 (expect title_page_image[:y]).to eql expected_top end it 'should move logo down from top of page by vh value of title_page_logo_top key' do pdf_theme = { title_page_logo_top: '5vh', } pdf = to_pdf <<~'EOS', analyze: :image, pdf_theme: pdf_theme = Document Title :doctype: book :title-logo-image: image:tux.png[align=left] EOS left_margin = 0.67 * 72 page_height = 841.89 # ~11.69in images = pdf.images (expect images).to have_size 1 title_page_image = images[0] (expect title_page_image[:page_number]).to be 1 (expect title_page_image[:x]).to eql left_margin expected_top = page_height - (page_height * 0.05) (expect title_page_image[:y]).to eql expected_top end it 'should move title down from top margin by % value of title_page_title_top key' do pdf_theme = { title_page_title_top: '10%', } pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, analyze: true = Document Title :doctype: book content EOS page_height = 841.89 # ~11.69in top_margin = 0.5 * 72 bottom_margin = 0.67 * 72 doctitle_text = (pdf.find_text 'Document Title')[0] (expect doctitle_text[:page_number]).to be 1 effective_page_height = page_height - top_margin - bottom_margin expected_top = page_height - top_margin - (effective_page_height * 0.10) (expect doctitle_text[:y] + doctitle_text[:font_size]).to be_within(0.5).of(expected_top) end it 'should move title down from top margin by pt value of title_page_title_top key' do pdf_theme = { title_page_title_top: '20pt', } pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, analyze: true = Document Title :doctype: book content EOS page_height = 841.89 # ~11.69in top_margin = 0.5 * 72 doctitle_text = (pdf.find_text 'Document Title')[0] (expect doctitle_text[:page_number]).to be 1 expected_top = page_height - top_margin - 20 (expect doctitle_text[:y] + doctitle_text[:font_size]).to be_within(0.5).of(expected_top) end it 'should move title down from top of page by vh value of title_page_title_top key' do pdf_theme = { title_page_title_top: '0vh', } pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, analyze: true = Document Title :doctype: book content EOS page_height = 841.89 # ~11.69in doctitle_text = (pdf.find_text 'Document Title')[0] (expect doctitle_text[:page_number]).to be 1 (expect doctitle_text[:y] + doctitle_text[:font_size]).to be_within(0.5).of(page_height) end it 'should allow left margin of elements on title page to be configured' do input = <<~'EOS' = Book Title: Bring Out Your Dead Trees Author Name v1.0, 2001-01-01 body EOS theme_overrides = { title_page_align: 'left' } pdf = to_pdf input, doctype: :book, pdf_theme: theme_overrides, analyze: true expected_x = (pdf.find_text page_number: 1).map {|it| it[:x] + 10 } theme_overrides.update \ title_page_title_margin_left: 10, title_page_subtitle_margin_left: 10, title_page_authors_margin_left: 10, title_page_revision_margin_left: 10 pdf = to_pdf input, doctype: :book, pdf_theme: theme_overrides, analyze: true actual_x = (pdf.find_text page_number: 1).map {|it| it[:x] } (expect actual_x).to eql expected_x end it 'should allow right margin of elements on title page to be configured' do input = <<~'EOS' = Book Title: Bring Out Your Dead Trees Author Name v1.0, 2001-01-01 body EOS pdf = to_pdf input, doctype: :book, analyze: true expected_x = (pdf.find_text page_number: 1).map {|it| it[:x] - 10 } theme_overrides = { title_page_title_margin_right: 10, title_page_subtitle_margin_right: 10, title_page_authors_margin_right: 10, title_page_revision_margin_right: 10, } pdf = to_pdf input, doctype: :book, pdf_theme: theme_overrides, analyze: true actual_x = (pdf.find_text page_number: 1).map {|it| it[:x] } (expect actual_x).to eql expected_x end it 'should be able to set background color of title page', visual: true do theme_overrides = { title_page_background_color: '000000', title_page_title_font_color: 'EFEFEF', title_page_authors_font_color: 'DBDBDB', } to_file = to_pdf_file <<~'EOS', 'title-page-background-color.pdf', pdf_theme: theme_overrides = Dark and Stormy Author Name :doctype: book body EOS (expect to_file).to visually_match 'title-page-background-color.pdf' end it 'should set background color when document has PDF cover page' do pdf = to_pdf <<~'EOS', pdf_theme: { title_page_background_color: 'eeeeee' } = The Amazing Author Name :doctype: book :front-cover-image: image:blue-letter.pdf[] :title-page-background-image: none :page-background-image: image:bg.png[] beginning <<< middle <<< end EOS images_by_page = [] (expect pdf.pages).to have_size 5 [0, 0, 1, 1, 1].each_with_index do |expected_num_images, idx| images = get_images pdf, idx.next images_by_page << images (expect images).to have_size expected_num_images end (expect images_by_page[2..-1].map {|it| it[0].data }.uniq).to have_size 1 end it 'should use title page background specified in theme resolved relative to theme dir' do [true, false].each do |macro| pdf_theme = { __dir__: fixtures_dir, title_page_background_image: (macro ? 'image:bg.png[]' : 'bg.png'), } pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme = Document Title :doctype: book content EOS (expect pdf.pages).to have_size 2 (expect get_images pdf, 1).to have_size 1 (expect get_images pdf, 2).to have_size 0 end end it 'should not use page background on title page if title-page-background-image attribute is set to none' do pdf_theme = { title_page_background_image: %(image:#{fixture_file 'bg.png'}[]), } pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme = Document Title :doctype: book :title-page-background-image: none content EOS (expect pdf.pages).to have_size 2 (expect get_images pdf).to be_empty end it 'should not use page background on title page if page_background is set to none in theme' do pdf_theme = { page_background_image: %(image:#{fixture_file 'bg.png'}[]), title_page_background_image: 'none', } pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme = Document Title :doctype: book == Chapter 1 content == Chapter 2 content EOS (expect pdf.pages).to have_size 3 (expect get_images pdf, 1).to have_size 0 (expect get_images pdf, 2).to have_size 1 (expect get_images pdf, 3).to have_size 1 end it 'should allow theme to disable elements on title page' do pdf_theme = { title_page_subtitle_display: 'none', title_page_authors_display: 'none', title_page_revision_display: 'none', title_page_logo_display: 'none', } pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme = Document Title: Subtitle :doctype: book :title-logo-image: image:tux.png[] Author Name v1.0, 2020-01-01 first page of content EOS (expect pdf.pages).to have_size 2 (expect (pdf.page 1).text).to eql 'Document Title' (expect get_images pdf, 1).to be_empty end it 'should not remove title page if all elements are disabled' do pdf_theme = { title_page_title_display: 'none', title_page_subtitle_display: 'none', title_page_authors_display: 'none', title_page_revision_display: 'none', } pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme = Document Title: Subtitle :doctype: book :title-page-background-image: image:cover.jpg[] Author Name v1.0, 2020-01-01 first page of content EOS (expect pdf.pages).to have_size 2 title_page_text = (pdf.page 1).text (expect title_page_text).to be_empty image_data = File.binread fixture_file 'cover.jpg' title_page_images = get_images pdf, 1 (expect title_page_images).to have_size 1 (expect title_page_images[0].data).to eql image_data end end end �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/toc_spec.rb���������������������������������������������������������0000664�0000000�0000000�00000055314�14163570564�0020652�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'spec_helper' describe 'Asciidoctor::PDF::Converter - TOC' do context 'book' do it 'should not generate toc by default' do pdf = to_pdf <<~'EOS', doctype: :book, analyze: true = Document Title == Introduction == Main == Conclusion EOS (expect pdf.pages).to have_size 4 (expect pdf.find_text 'Table of Contents').to be_empty end it 'should insert toc between title page and first page of body when toc is set' do pdf = to_pdf <<~'EOS', doctype: :book, analyze: true = Document Title :toc: == Introduction == Main == Conclusion EOS (expect pdf.pages).to have_size 5 (expect pdf.find_text string: 'Document Title', page_number: 1).not_to be_empty (expect pdf.find_text string: 'Table of Contents', page_number: 2).not_to be_empty (expect pdf.find_text string: '1', page_number: 2).not_to be_empty (expect pdf.find_text string: '2', page_number: 2).not_to be_empty (expect pdf.find_text string: '3', page_number: 2).not_to be_empty (expect pdf.find_text string: 'Introduction', page_number: 3).not_to be_empty end it 'should space items in toc evently even if title is entirely monospace' do pdf = to_pdf <<~'EOS', doctype: :book, analyze: true = Document Title :toc: == Beginning == `Middle` == End EOS (expect pdf.find_text string: 'Table of Contents', page_number: 2).not_to be_empty beginning_pagenum_text = (pdf.find_text string: '1', page_number: 2)[0] middle_pagenum_text = (pdf.find_text string: '2', page_number: 2)[0] end_pagenum_text = (pdf.find_text string: '3', page_number: 2)[0] beginning_to_middle_spacing = (beginning_pagenum_text[:y] - middle_pagenum_text[:y]).round 2 middle_to_end_spacing = (middle_pagenum_text[:y] - end_pagenum_text[:y]).round 2 (expect beginning_to_middle_spacing).to eql middle_to_end_spacing end it 'should only include preface in toc if preface-title is set' do input = <<~'EOS' = Document Title [preface] This is the preface. == Chapter 1 And away we go! EOS [{ 'toc' => '' }, { 'toc' => '', 'preface-title' => 'Preface' }].each do |attrs| pdf = to_pdf input, doctype: :book, attributes: attrs, analyze: :page (expect pdf.pages).to have_size 4 (expect pdf.pages[0][:strings]).to include 'Document Title' (expect pdf.pages[1][:strings]).to include 'Table of Contents' if attrs.include? 'preface-title' (expect pdf.pages[1][:strings]).to include 'Preface' (expect pdf.pages[1][:strings]).to include '1' else (expect pdf.pages[1][:strings]).not_to include 'Preface' (expect pdf.pages[1][:strings]).not_to include '1' end (expect pdf.pages[1][:strings]).to include 'Chapter 1' (expect pdf.pages[1][:strings]).to include '2' (expect pdf.pages[2][:strings]).to include 'Preface' if attrs.include? 'preface-title' (expect pdf.pages[2][:strings]).to include 'This is the preface.' (expect pdf.pages[3][:strings]).to include 'Chapter 1' end end it 'should output toc with depth specified by toclevels' do pdf = to_pdf <<~'EOS', doctype: :book, analyze: :page = Document Title :toc: :toclevels: 1 == Level 1 === Level 2 ==== Level 3 EOS (expect pdf.pages).to have_size 3 (expect pdf.pages[0][:strings]).to include 'Document Title' (expect pdf.pages[1][:strings]).to include 'Table of Contents' (expect pdf.pages[1][:strings]).to include 'Level 1' (expect pdf.pages[1][:strings]).not_to include 'Level 2' (expect pdf.pages[1][:strings]).not_to include 'Level 3' (expect pdf.pages[2][:strings]).to include 'Level 1' end it 'should only show parts in toc if toclevels attribute is 0' do pdf = to_pdf <<~'EOS', doctype: :book, analyze: :page = Document Title :toc: :toclevels: 0 = Part One == Chapter A = Part Two == Chapter B EOS (expect pdf.pages).to have_size 6 (expect pdf.pages[1][:strings]).to include 'Table of Contents' (expect pdf.pages[1][:strings]).to include 'Part One' (expect pdf.pages[1][:strings]).to include 'Part Two' (expect pdf.pages[1][:strings]).not_to include 'Chapter A' (expect pdf.pages[1][:strings]).not_to include 'Chapter B' end it 'should allow section to override toclevels for descendant sections' do pdf = to_pdf <<~'EOS', analyze: true = Document Title :doctype: book :toc: :toclevels: 3 == Chapter === Chapter Section ==== Chapter Subsection [appendix,toclevels=1] == Lorem Ipsum === Appendix Section ==== Appendix Subsection EOS (expect pdf.find_text page_number: 2, string: 'Chapter').to have_size 1 (expect pdf.find_text page_number: 2, string: 'Chapter Section').to have_size 1 (expect pdf.find_text page_number: 2, string: 'Chapter Subsection').to have_size 1 (expect pdf.find_text page_number: 2, string: 'Appendix A: Lorem Ipsum').to have_size 1 (expect pdf.find_text page_number: 2, string: 'Appendix Section').to have_size 0 end it 'should allow section to remove itself from toc by setting toclevels to less than section level' do pdf = to_pdf <<~'EOS', analyze: true = Document Title :doctype: book :toc: :toclevels: 3 == Chapter === Chapter Section ==== Chapter Subsection [appendix,toclevels=0] == Lorem Ipsum === Appendix Section ==== Appendix Subsection EOS (expect pdf.find_text page_number: 2, string: 'Chapter').to have_size 1 (expect pdf.find_text page_number: 2, string: 'Chapter Section').to have_size 1 (expect pdf.find_text page_number: 2, string: 'Chapter Subsection').to have_size 1 (expect pdf.find_text page_number: 2, string: 'Appendix A: Lorem Ipsum').to have_size 0 end it 'should reserve enough pages for toc if it spans more than one page' do sections = (1..40).map {|num| %(\n\n=== Section #{num}) } pdf = to_pdf <<~EOS, doctype: :book, analyze: :page = Document Title :toc: == Chapter 1#{sections.join} EOS (expect pdf.pages).to have_size 6 (expect pdf.pages[0][:strings]).to include 'Document Title' (expect pdf.pages[1][:strings]).to include 'Table of Contents' (expect pdf.pages[3][:strings]).to include 'Chapter 1' end it 'should insert toc at location of toc macro if toc attribute is macro' do lorem = ['lorem ipsum'] * 10 * %(\n\n) input = <<~EOS = Document Title :doctype: book :toc: macro Preamble == Introduction #{lorem} toc::[] == Main #{lorem} == Conclusion #{lorem} EOS pdf = to_pdf input, analyze: true (expect pdf.pages).to have_size 6 toc_title_text = (pdf.find_text 'Table of Contents')[0] (expect toc_title_text[:page_number]).to be 4 pdf = to_pdf input outline = extract_outline pdf (expect outline).to have_size 5 (expect outline.map {|it| it[:title] }).to eql ['Document Title', 'Introduction', 'Table of Contents', 'Main', 'Conclusion'] toc_dest = outline[2][:dest] (expect toc_dest[:pagenum]).to be 4 (expect toc_dest[:label]).to eql '3' (expect toc_dest[:y]).to be > 800 end it 'should insert macro toc in outline as sibling of section in which it is contained' do pdf = to_pdf <<~'EOS' = Document Title :doctype: book :toc: macro == Chapter === Section toc::[] === Another Section EOS outline = extract_outline pdf chapter_entry = outline[1] (expect chapter_entry).not_to be_nil (expect chapter_entry[:title]).to eql 'Chapter' chapter_entry_children = chapter_entry[:children] (expect chapter_entry_children).to have_size 3 toc_entry = chapter_entry_children[1] (expect toc_entry[:title]).to eql 'Table of Contents' (expect toc_entry[:dest][:label]).to eql '2' end it 'should not add toc title to page or outline if toc-title is unset' do pdf = to_pdf <<~'EOS' = Document Title :doctype: book :toc: :!toc-title: == Beginning == Middle == End EOS (expect pdf.pages).to have_size 5 (expect pdf.pages[1].text).to start_with 'Beginning' outline = extract_outline pdf (expect outline).to have_size 4 (expect outline[0][:title]).to eql 'Document Title' (expect outline[1][:title]).to eql 'Beginning' end it 'should line up dots and page number with wrapped line' do pdf = to_pdf <<~'EOS', doctype: :book, analyze: true = Document Title :toc: == This Here is an Absurdly Long Section Title That Exceeds the Length of a Single Line and Therefore Wraps content EOS toc_text = pdf.find_text page_number: 2 (expect toc_text.size).to be > 1 (expect toc_text[1][:string]).to eql 'This Here is an Absurdly Long Section Title That Exceeds the Length of a Single Line and' (expect toc_text[2][:string]).to eql 'Therefore Wraps' (expect toc_text[1][:x]).to eql toc_text[2][:x] dot_leader_text = (pdf.find_text page_number: 2).select {|it| it[:string].start_with? '.' } (expect dot_leader_text).not_to be_empty (expect dot_leader_text[0][:y]).to be < toc_text[1][:y] page_number_text = pdf.find_text page_number: 2, string: '1' (expect page_number_text).to have_size 1 end it 'should line up dots and page number with wrapped line when section title gets split across a page boundary' do sections = (1..37).map {|num| %(\n\n== Section #{num}) }.join pdf = to_pdf <<~EOS, doctype: :book, analyze: true = Document Title :toc: #{sections} == This is a unbelievably long section title that probably shouldn't be a section title at all but here we are content EOS page_2_lines = pdf.lines pdf.find_text page_number: 2 (expect page_2_lines).to include 'Table of Contents' (expect page_2_lines[-1]).to end_with 'but here' page_3_lines = pdf.lines pdf.find_text page_number: 3 (expect page_3_lines).to have_size 1 (expect page_3_lines[0]).to match %r/we are(\. )+.*38$/ end it 'should allow hanging indent to be applied to lines that wrap' do pdf = to_pdf <<~'EOS', doctype: :book, pdf_theme: { toc_hanging_indent: 36 }, analyze: true = Document Title :toc: == This Here is an Absurdly Long Section Title That Exceeds the Length of a Single Line and Therefore Wraps content EOS toc_text = pdf.find_text page_number: 2 (expect toc_text.size).to be > 1 (expect toc_text[1][:string]).to eql 'This Here is an Absurdly Long Section Title That Exceeds the Length of a Single Line and' (expect toc_text[2][:string]).to eql 'Therefore Wraps' (expect toc_text[2][:x]).to be > toc_text[1][:x] dot_leader_text = (pdf.find_text page_number: 2).select {|it| it[:string].start_with? '.' } (expect dot_leader_text).not_to be_empty (expect dot_leader_text[0][:y]).to be < toc_text[1][:y] page_number_text = pdf.find_text page_number: 2, string: '1' (expect page_number_text).to have_size 1 end it 'should not use part or chapter signifier in toc' do pdf = to_pdf <<~'EOS', analyze: true = Book Title :doctype: book :sectnums: :partnums: :toc: = P1 == C1 = P2 == C2 EOS lines = pdf.lines pdf.find_text page_number: 2 (expect lines).to have_size 5 (expect lines[0]).to eql 'Table of Contents' if asciidoctor_1_5_7_or_better? (expect lines[1]).to start_with 'I: P1' (expect lines[3]).to start_with 'II: P2' (expect pdf.find_text 'Part I: P1').to have_size 1 else (expect lines[1]).to start_with 'P1' (expect lines[3]).to start_with 'P2' (expect pdf.find_text 'P1').to have_size 2 end (expect lines[2]).to start_with '1. C1' (expect lines[4]).to start_with '2. C2' (expect pdf.find_text 'Chapter 1. C1').to have_size 1 end it 'should reserve enough room for toc when page number forces section title in toc to wrap' do pdf = to_pdf <<~EOS, analyze: true = Document Title :doctype: book :notitle: :toc: #{(['== Chapter'] * 9).join ?\n} == This is a very long section title that wraps in the table of contents when the page number is added #{(['== Chapter'] * 27).join ?\n} == Last Chapter EOS (expect pdf.find_text page_number: 2, string: 'Last Chapter').to have_size 1 (expect pdf.find_text page_number: 2, string: 'Chapter').to be_empty end end context 'article' do it 'should not generate toc by default' do pdf = to_pdf <<~'EOS', analyze: true = Document Title == Introduction == Main == Conclusion EOS (expect pdf.pages).to have_size 1 (expect pdf.find_text 'Table of Contents').to be_empty end it 'should insert toc between document title and content when toc is set' do lorem = ['lorem ipsum'] * 10 * %(\n\n) input = <<~EOS = Document Title :toc: Preamble == Introduction #{lorem} == Main #{lorem} == Conclusion #{lorem} EOS pdf = to_pdf input, analyze: true (expect pdf.pages).to have_size 2 (expect pdf.find_text string: 'Table of Contents', page_number: 1).to have_size 1 (expect pdf.find_text string: 'Introduction', page_number: 1).to have_size 2 doctitle_text = (pdf.find_text 'Document Title')[0] toc_title_text = (pdf.find_text 'Table of Contents')[0] toc_bottom_text = (pdf.find_text '2')[0] content_top_text = (pdf.find_text 'Preamble')[0] (expect doctitle_text[:y]).to be > toc_title_text[:y] (expect toc_title_text[:y]).to be > content_top_text[:y] (expect toc_bottom_text[:y]).to be > content_top_text[:y] # NOTE assert there's no excess gap between end of toc and start of content (expect toc_bottom_text[:y] - content_top_text[:y]).to be < 35 end it 'should insert toc at top of first page if toc is set and document has no doctitle' do pdf = to_pdf <<~'EOS', analyze: true :toc: == Section A == Section B EOS toc_title_text = (pdf.find_text 'Table of Contents')[0] sect_a_text = (pdf.find_text string: 'Section A', font_size: 22)[0] (expect toc_title_text[:y]).to be > sect_a_text[:y] end it 'should reserve enough pages for toc if it spans more than one page' do sections = (1..40).map {|num| %(\n\n== Section #{num}) } input = <<~EOS = Document Title :toc: #{sections.join} EOS pdf = to_pdf input, analyze: :page (expect pdf.pages).to have_size 4 (expect pdf.pages[0][:strings]).to include 'Document Title' (expect pdf.pages[0][:strings]).to include 'Table of Contents' (expect pdf.pages[0][:strings]).not_to include 'Section 40' (expect pdf.pages[1][:strings]).to include 'Section 40' (expect pdf.pages[1][:strings]).to include 'Section 1' pdf = to_pdf input, analyze: true text = pdf.text idx_toc_bottom = nil idx_content_top = nil text.each_with_index do |candidate, idx| idx_toc_bottom = idx if candidate[:string] == 'Section 40' && candidate[:font_size] == 10.5 idx_content_top = idx if candidate[:string] == 'Section 1' && candidate[:font_size] == 22 end (expect text[idx_toc_bottom][:y]).to be > text[idx_content_top][:y] # NOTE assert there's no excess gap between end of toc and start of content (expect text[idx_toc_bottom][:y] - text[idx_content_top][:y]).to be < 50 end it 'should insert toc between title page and first page of body when toc and title-page are set' do pdf = to_pdf <<~'EOS', analyze: :page = Document Title :toc: :title-page: == Introduction == Main == Conclusion EOS (expect pdf.pages).to have_size 3 (expect pdf.pages[0][:strings]).to include 'Document Title' (expect pdf.pages[1][:strings]).to include 'Table of Contents' (expect pdf.pages[1][:strings]).to include '1' (expect pdf.pages[1][:strings]).not_to include '2' (expect pdf.pages[2][:strings]).to include 'Introduction' end it 'should insert toc at location of toc macro if toc attribute is macro' do lorem = ['lorem ipsum'] * 10 * %(\n\n) input = <<~EOS = Document Title :toc: macro Preamble == Introduction #{lorem} toc::[] == Main #{lorem} == Conclusion #{lorem} EOS pdf = to_pdf input, analyze: true (expect pdf.pages).to have_size 2 (expect pdf.find_text string: 'Table of Contents', page_number: 1).to have_size 1 (expect pdf.find_text string: 'Introduction', page_number: 1).to have_size 2 doctitle_text = (pdf.find_text 'Document Title')[0] toc_title_text = (pdf.find_text 'Table of Contents')[0] toc_bottom_text = (pdf.find_text '2')[0] content_top_text = (pdf.find_text 'Preamble')[0] intro_title_text = (pdf.find_text 'Introduction')[0] (expect doctitle_text[:y]).to be > toc_title_text[:y] (expect toc_title_text[:y]).to be < content_top_text[:y] (expect toc_bottom_text[:y]).to be < content_top_text[:y] (expect toc_title_text[:y]).to be < intro_title_text[:y] pdf = to_pdf input outline = extract_outline pdf (expect outline).to have_size 5 (expect outline.map {|it| it[:title] }).to eql ['Document Title', 'Introduction', 'Table of Contents', 'Main', 'Conclusion'] toc_dest = outline[2][:dest] (expect toc_dest[:pagenum]).to be 1 (expect toc_dest[:label]).to eql '1' (expect toc_dest[:y]).to be < 800 end it 'should insert macro toc in outline as sibling of section in which it is contained' do pdf = to_pdf <<~'EOS' = Document Title :toc: macro == Section === Subsection toc::[] === Another Subsection EOS outline = extract_outline pdf section_entry = outline[1] (expect section_entry).not_to be_nil (expect section_entry[:title]).to eql 'Section' section_entry_children = section_entry[:children] (expect section_entry_children).to have_size 3 toc_entry = section_entry_children[1] (expect toc_entry[:title]).to eql 'Table of Contents' (expect toc_entry[:dest][:label]).to eql '1' end it 'should insert macro toc in outline before other sections if macro proceeds sections' do pdf = to_pdf <<~'EOS' = Document Title :toc: macro toc::[] == Section === Subsection === Another Subsection EOS outline = extract_outline pdf toc_entry = outline[1] (expect toc_entry[:title]).to eql 'Table of Contents' (expect toc_entry[:dest][:label]).to eql '1' end end it 'should apply consistent font color to running content when base font color is unset', visual: true do theme_overrides = { extends: 'base', base_font_color: nil, header_height: 36, header_font_color: '0000FF', header_columns: '0% =100% 0%', header_recto_center_content: 'header text', header_verso_center_content: 'header text', toc_dot_leader_font_color: 'CCCCCC', running_content_start_at: 'toc', } to_file = to_pdf_file <<~'EOS', 'toc-running-content-font-color.pdf', pdf_theme: theme_overrides = Document Title Author Name :doctype: book :toc: == A text == B text EOS (expect to_file).to visually_match 'toc-running-content-font-color.pdf' end it 'should not apply bold to italic text if headings are bold in theme' do pdf_theme = { toc_font_style: 'bold', } pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, analyze: true = Document Title :doctype: book :toc: == Get Started _Quickly_ EOS get_started_text = (pdf.find_text page_number: 2, string: /^Get Started/)[0] quickly_text = (pdf.find_text page_number: 2, string: 'Quickly')[0] (expect get_started_text[:font_name]).to eql 'NotoSerif-Bold' (expect quickly_text[:font_name]).to eql 'NotoSerif-Italic' end it 'should allow theme to specify text decoration for entries in toc' do pdf_theme = { toc_text_decoration: 'underline', } input = <<~'EOS' = Document Title :toc: :title-page: == Underline Me EOS pdf = to_pdf input, pdf_theme: pdf_theme, analyze: :line lines = pdf.lines (expect lines).to have_size 1 toc_entry_underline = lines[0] pdf = to_pdf input, pdf_theme: pdf_theme, analyze: true toc_entry_text = (pdf.find_text page_number: 2, string: 'Underline Me')[0] (expect toc_entry_underline[:from][:x]).to eql toc_entry_text[:x] (expect toc_entry_underline[:from][:y]).to be_within(2).of(toc_entry_text[:y]) (expect toc_entry_underline[:color]).to eql toc_entry_text[:font_color] end it 'should allow theme to specify color and width of text decoration for entries in toc' do pdf_theme = { toc_text_decoration: 'underline', toc_text_decoration_color: 'cccccc', toc_text_decoration_width: 0.5, } input = <<~'EOS' = Document Title :toc: :title-page: == Underline Me EOS pdf = to_pdf input, pdf_theme: pdf_theme, analyze: :line lines = pdf.lines (expect lines).to have_size 1 toc_entry_underline = lines[0] (expect toc_entry_underline[:color]).to eql 'CCCCCC' (expect toc_entry_underline[:width]).to eql 0.5 end it 'should decode character references in toc entries' do pdf = to_pdf <<~'EOS', analyze: true = Document Title :toc: == Paper Clips № 4 EOS (expect pdf.find_text %(Paper Clips \u2116\u00a04)).to have_size 2 end it 'should allocate correct number of pages for toc if line numbers cause lines to wrap' do chapter_title = %(\n\n== A long chapter title that wraps to a second line in the toc when the page number exceeds one digit) input = <<~EOS = Document Title :doctype: book :toc: :nofooter: #{chapter_title * 38} EOS pdf = to_pdf input, analyze: true last_pagenum_text = (pdf.find_text '38')[0] first_chapter_text = (pdf.find_text font_name: 'NotoSerif-Bold', font_size: 22, string: /^A long chapter title/)[0] (expect first_chapter_text[:page_number]).to be last_pagenum_text[:page_number].next end end ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/verse_spec.rb�������������������������������������������������������0000664�0000000�0000000�00000007431�14163570564�0021206�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'spec_helper' describe 'Asciidoctor::PDF::Converter - Verse' do it 'should show caption above block if title is specified' do pdf = to_pdf <<~'EOS', analyze: true .Fog [verse] ____ The fog comes on little cat feet. ____ EOS (expect pdf.lines).to eql ['Fog', 'The fog comes', 'on little cat feet.'] title_text = (pdf.find_text 'Fog')[0] (expect title_text[:font_name]).to eql 'NotoSerif-Italic' (expect title_text[:x]).to eql 48.24 end it 'should show attribution line below text of verse' do pdf = to_pdf <<~'EOS', analyze: true [verse,Robert Frost,'Fire & Ice'] ____ Some say the world will end in fire, Some say in ice. ____ EOS last_verse_text = pdf.text[-2] attribution_text = (pdf.find_text %r/Robert Frost/)[0] (expect attribution_text[:string]).to eql %(\u2014 Robert Frost, Fire & Ice) (expect attribution_text[:font_size]).to eql 9 (expect attribution_text[:font_color]).to eql '999999' (expect attribution_text[:font_name]).to eql 'NotoSerif' (expect (last_verse_text[:y] - attribution_text[:y]).round).to eql 27 (expect attribution_text[:x]).to eql last_verse_text[:x] end it 'should expand tabs and preserve indentation' do pdf = to_pdf <<~EOS, analyze: true [verse] ____ here \twe \t\tgo again ____ EOS lines = pdf.lines (expect lines).to have_size 4 (expect lines[1]).to eql %(\u00a0 we) (expect lines[2]).to eql %(\u00a0 go) end it 'should not draw left border if border_left_width is 0' do pdf = to_pdf <<~'EOS', pdf_theme: { verse_border_left_width: 0 }, analyze: :line [verse] ____ here we go ____ EOS (expect pdf.lines).to be_empty end it 'should be able to modify styles using verse category in theme' do pdf_theme = { verse_font_size: 10.5, verse_font_family: 'M+ 1mn', verse_font_color: '555555', } pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, analyze: true [verse] ____ The fog comes on little cat feet. ____ EOS text = pdf.text (expect text).to have_size 2 (expect text[0][:font_name]).to eql 'mplus1mn-regular' (expect text[0][:font_size]).to eql 10.5 (expect text[0][:font_color]).to eql '555555' end it 'should apply specified background color', visual: true do pdf_theme = { verse_background_color: 'dddddd', verse_border_color: 'aa0000', } to_file = to_pdf_file <<~'EOS', 'verse-background-color.pdf', pdf_theme: pdf_theme [verse] ____ Let it be. Let it be. ____ EOS (expect to_file).to visually_match 'verse-background-color.pdf' end it 'should apply specified border and background color', visual: true do pdf_theme = build_pdf_theme \ verse_border_left_width: 0, verse_border_width: 0.5, verse_border_color: 'aa0000', verse_background_color: 'dddddd' pdf_theme.blockquote_padding = pdf_theme.sidebar_padding to_file = to_pdf_file <<~'EOS', 'verse-border-and-background-color.pdf', pdf_theme: pdf_theme [verse,Paul McCartney] ____ Let it be. Let it be. ____ EOS (expect to_file).to visually_match 'verse-border-and-background-color.pdf' end it 'should split border when block is split across pages', visual: true do pdf_theme = { verse_border_left_width: 0, verse_border_width: 0.5, verse_border_color: 'CCCCCC', verse_background_color: 'EEEEEE', verse_padding: [6, 10, 0, 10], } to_file = to_pdf_file <<~EOS, 'verse-page-split.pdf', pdf_theme: pdf_theme [verse] ____ #{(['Let it be.'] * 50).join ?\n} ____ EOS (expect to_file).to visually_match 'verse-page-split.pdf' end end ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/video_spec.rb�������������������������������������������������������0000664�0000000�0000000�00000003510�14163570564�0021162�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'spec_helper' describe 'Asciidoctor::PDF::Converter - Video' do context 'Local' do it 'should replace video with poster image if specified', visual: true do to_file = to_pdf_file <<~'EOS', 'video-local-file-poster.pdf' video::asciidoctor.mp4[logo.png,200,200] EOS (expect to_file).to visually_match 'video-local-file-poster.pdf' end end context 'YouTube' do it 'should replace video with poster image if allow-uri-read attribute is set', visual: true, network: true do video_id = 'EJ09pSuA9hw' to_file = to_pdf_file <<~EOS, 'video-youtube-poster.pdf', attribute_overrides: { 'allow-uri-read' => '' } video::#{video_id}[youtube,pdfwidth=100%] EOS pdf = PDF::Reader.new to_file annotations = get_annotations pdf, 1 (expect annotations).to have_size 1 link_annotation = annotations[0] (expect link_annotation[:Subtype]).to be :Link (expect link_annotation[:A][:URI]).to eql %(https://www.youtube.com/watch?v=#{video_id}) (expect to_file).to visually_match 'video-youtube-poster.pdf' end end context 'Vimeo' do it 'should replace video with poster image if allow-uri-read attribute is set', visual: true, network: true do video_id = '77477140' to_file = to_pdf_file <<~EOS, 'video-vimeo-poster.pdf', attribute_overrides: { 'allow-uri-read' => '' } video::#{video_id}[vimeo,pdfwidth=100%] EOS pdf = PDF::Reader.new to_file annotations = get_annotations pdf, 1 (expect annotations).to have_size 1 link_annotation = annotations[0] (expect link_annotation[:Subtype]).to be :Link (expect link_annotation[:A][:URI]).to eql %(https://vimeo.com/#{video_id}) (expect to_file).to visually_match 'video-vimeo-poster.pdf' end end end ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/spec/xref_spec.rb��������������������������������������������������������0000664�0000000�0000000�00000024007�14163570564�0021024�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require_relative 'spec_helper' describe 'Asciidoctor::PDF::Converter - Xref' do context 'internal' do it 'should create reference to a section by title' do pdf = to_pdf <<~'EOS' = Document Title :doctype: book == Chapter A You can find details in <<Chapter B>>. == Chapter B Here are the details you're looking for. EOS names = get_names pdf (expect names).to have_key '_chapter_a' (expect names).to have_key '_chapter_b' annotations = get_annotations pdf, 2 (expect annotations).to have_size 1 (expect annotations[0][:Dest]).to eql '_chapter_b' (expect (pdf.page 2).text).to include 'Chapter B' end it 'should create reference to a section by implicit ID' do pdf = to_pdf <<~'EOS' = Document Title :doctype: book == Chapter A You can find details in <<_chapter_b>>. == Chapter B Here are the details you're looking for. EOS names = get_names pdf (expect names).to have_key '_chapter_a' (expect names).to have_key '_chapter_b' annotations = get_annotations pdf, 2 (expect annotations).to have_size 1 (expect annotations[0][:Dest]).to eql '_chapter_b' (expect (pdf.page 2).text).to include 'Chapter B' end it 'should create reference to a section by explicit ID' do pdf = to_pdf <<~'EOS' = Document Title :doctype: book [#a] == Chapter A You can find details in <<b>>. [#b] == Chapter B Here are the details you're looking for. EOS names = get_names pdf (expect names).to have_key 'a' (expect names).to have_key 'b' annotations = get_annotations pdf, 2 (expect annotations).to have_size 1 (expect annotations[0][:Dest]).to eql 'b' (expect (pdf.page 2).text).to include 'Chapter B' end it 'should reference section with ID that contains non-ASCII characters' do pdf = to_pdf <<~'EOS' == Über Étudier See <<_über_étudier>>. EOS hex_encoded_id = %(0x#{('_über_étudier'.unpack 'H*')[0]}) annotations = get_annotations pdf, 1 (expect annotations).to have_size 1 (expect annotations[0][:Dest]).to eql hex_encoded_id (expect (pdf.page 1).text).to include 'See Über Étudier.' end it 'should create reference to a block by explicit ID' do pdf = to_pdf <<~'EOS' = Document Title :doctype: book == Summary You can find the observed values in the <<observed-values,table>>. == Data [#observed-values] |=== | Subject | Count | foo | 2 | bar | 1 |=== EOS names = get_names pdf (expect names).to have_key 'observed-values' annotations = get_annotations pdf, 2 (expect annotations).to have_size 1 (expect annotations[0][:Dest]).to eql 'observed-values' (expect (pdf.page 2).text).to include 'table' end it 'should create reference to a list item with an anchor' do pdf = to_pdf <<~'EOS' Jump to the <<first-item>>. <<< * [[first-item,first item]]list item EOS names = get_names pdf (expect names).to have_key 'first-item' annotations = get_annotations pdf, 1 (expect annotations).to have_size 1 (expect annotations[0][:Dest]).to eql 'first-item' if asciidoctor_1_5_7_or_better? (expect (pdf.page 1).text).to include 'first item' else (expect (pdf.page 1).text).to include '[first-item]' end end it 'should create reference to a table cell with an anchor' do pdf = to_pdf <<~'EOS' Jump to the <<first-cell>>. <<< |=== |[[first-cell,first cell]]table cell |=== EOS names = get_names pdf (expect names).to have_key 'first-cell' annotations = get_annotations pdf, 1 (expect annotations).to have_size 1 (expect annotations[0][:Dest]).to eql 'first-cell' if asciidoctor_1_5_7_or_better? (expect (pdf.page 1).text).to include 'first cell' else (expect (pdf.page 1).text).to include '[first-cell]' end end it 'should show ID enclosed in square brackets if reference cannot be resolved' do pdf = to_pdf <<~'EOS' Road to <<nowhere>>. EOS (expect (pdf.page 1).text).to eql 'Road to [nowhere].' names = get_names pdf (expect names).not_to have_key 'nowhere' annotations = get_annotations pdf, 1 (expect annotations).to have_size 1 (expect annotations[0][:Dest]).to eql 'nowhere' end end context 'interdocument' do it 'should convert interdocument xrefs to internal references' do input_file = Pathname.new fixture_file 'book.adoc' pdf = to_pdf input_file p2_annotations = get_annotations pdf, 2 (expect p2_annotations).to have_size 1 chapter_2_ref = p2_annotations[0] (expect chapter_2_ref[:Subtype]).to be :Link (expect chapter_2_ref[:Dest]).to eql '_chapter_2' p3_annotations = get_annotations pdf, 3 first_steps_ref = p3_annotations[0] (expect first_steps_ref[:Subtype]).to be :Link (expect first_steps_ref[:Dest]).to eql '_first_steps' end it 'should link self-referencing interdocument xref to built-in __anchor-top ref' do pdf = to_pdf Pathname.new fixture_file 'reference-to-self.adoc' (expect Pathname.new output_file 'reference-to-self.pdf').to exist annotations = get_annotations pdf (expect annotations).to have_size 1 (expect annotations[0][:Dest]).to eql '__anchor-top' end end context 'xrefstyle' do it 'should refer to part by label and number when xrefstyle is short' do pdf = to_pdf <<~'EOS', analyze: true = Document Title :doctype: book :partnums: :xrefstyle: short = Beginner == Basic Lesson Now you are ready for <<_advanced>>! = Advanced == Advanced Lesson If you are so advanced, why do you even need a lesson? EOS (expect pdf.lines).to include 'Now you are ready for Part II!' end if asciidoctor_1_5_7_or_better? it 'should refer to part by name when xrefstyle is basic' do pdf = to_pdf <<~'EOS', analyze: true = Document Title :doctype: book :partnums: :xrefstyle: basic = Beginner == Basic Lesson Now you are ready for <<_advanced>>! = Advanced == Advanced Lesson If you are so advanced, why do you even need a lesson? EOS (expect pdf.lines).to include 'Now you are ready for Advanced!' end it 'should refer to part by label, number, and title when xrefstyle is full' do pdf = to_pdf <<~'EOS', analyze: true = Document Title :doctype: book :partnums: :xrefstyle: full = Beginner == Basic Lesson Now you are ready for <<_advanced>>! = Advanced == Advanced Lesson If you are so advanced, why do you even need a lesson? EOS (expect pdf.lines).to include 'Now you are ready for Part II, “Advanced”!' end if asciidoctor_1_5_7_or_better? it 'should refer to chapter by label and number when xrefstyle is short' do pdf = to_pdf <<~'EOS', analyze: true = Document Title :doctype: book :sectnums: :xrefstyle: short Start with <<_a>>. == A EOS (expect pdf.lines).to include 'Start with Chapter 1.' end if asciidoctor_1_5_7_or_better? it 'should refer to chapter title and number when xrefstyle is basic' do pdf = to_pdf <<~'EOS', analyze: true = Document Title :doctype: book :sectnums: :xrefstyle: basic Start with <<_a>>. == A EOS (expect pdf.lines).to include 'Start with A.' end it 'should refer to chapter label, number and title when xrefstyle is full' do pdf = to_pdf <<~'EOS', analyze: true = Document Title :doctype: book :sectnums: :xrefstyle: full Start with <<_a>>. == A EOS (expect pdf.lines).to include 'Start with Chapter 1, A.' end if asciidoctor_1_5_7_or_better? it 'should use xrefstyle specified on xref macro' do pdf = to_pdf <<~'EOS', analyze: true = Document Title :doctype: book :sectnums: :xrefstyle: short Start with xref:_a[xrefstyle=full]. == A EOS (expect pdf.lines).to include 'Start with Chapter 1, A.' end if asciidoctor_1_5_7_or_better? it 'should refer to image with title by title by default' do pdf = to_pdf <<~'EOS', analyze: true See <<img>>. .Title of Image [#img] image::tux.png[] EOS (expect pdf.lines[0]).to eql 'See Title of Image.' end if asciidoctor_1_5_7_or_better? it 'should refer to image with title by reference signifier, number, and title when xrefstyle is full' do pdf = to_pdf <<~'EOS', analyze: true :xrefstyle: full See <<img>>. .Title of Image [#img] image::tux.png[] EOS (expect pdf.lines[0]).to eql 'See Figure 1, “Title of Image”.' end if asciidoctor_1_5_7_or_better? it 'should refer to image with title by reference signifier and number when xrefstyle is short' do pdf = to_pdf <<~'EOS', analyze: true :xrefstyle: short See <<img>>. .Title of Image [#img] image::tux.png[] EOS (expect pdf.lines[0]).to eql 'See Figure 1.' end if asciidoctor_1_5_7_or_better? it 'should show ID of reference enclosed in square brackets if reference has no xreftext' do pdf = to_pdf <<~'EOS' :xrefstyle: full Jump to the <<first-item>>. <<< * [[first-item]]list item EOS names = get_names pdf (expect names).to have_key 'first-item' annotations = get_annotations pdf, 1 (expect annotations).to have_size 1 (expect annotations[0][:Dest]).to eql 'first-item' (expect (pdf.page 1).text).to include '[first-item]' end end end �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/tasks/�������������������������������������������������������������������0000775�0000000�0000000�00000000000�14163570564�0016711�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/tasks/bundler.rake�������������������������������������������������������0000664�0000000�0000000�00000000250�14163570564�0021205�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true begin require 'bundler/gem_tasks' $default_tasks << :build # rubocop:disable Style/GlobalVars rescue LoadError warn $!.message end ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/tasks/clean.rake���������������������������������������������������������0000664�0000000�0000000�00000000064�14163570564�0020637�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true require 'rake/clean' ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/tasks/console.rake�������������������������������������������������������0000664�0000000�0000000�00000000221�14163570564�0021212�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true desc 'Open an irb session preloaded with this library' task :console do sh 'bundle console', verbose: false end �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/tasks/rspec.rake���������������������������������������������������������0000664�0000000�0000000�00000000526�14163570564�0020674�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true begin require 'rspec/core/rake_task' RSpec::Core::RakeTask.new :spec do |t| t.verbose = true opts = %w(-f progress) opts.append '-t', '~visual', '-t', '~cli' if ENV['UNIT'] opts.unshift '-w' if $VERBOSE || ENV['COVERAGE'] t.rspec_opts = opts end rescue LoadError warn $!.message end ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/tasks/rubocop.rake�������������������������������������������������������0000664�0000000�0000000�00000000670�14163570564�0021231�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true begin require 'rubocop/rake_task' RuboCop::RakeTask.new :lint do |t| t.patterns = Dir['lib/**/*.rb'] - ['lib/asciidoctor/pdf/formatted_text/parser.rb'] + %w(Rakefile Gemfile tasks/*.rake spec/**/*.rb) end rescue LoadError => e task :lint do raise 'Failed to load lint task. Install required gems using: bundle --path=.bundle/gems Then, invoke Rake using: bundle exec rake', cause: e end end ������������������������������������������������������������������������ruby-asciidoctor-pdf-1.6.2/tasks/yard.rake����������������������������������������������������������0000664�0000000�0000000�00000000172�14163570564�0020514�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# frozen_string_literal: true begin require 'yard' YARD::Rake::YardocTask.new rescue LoadError warn $!.message end ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������

j L8 /aJ78:Fs54FG4OJM7HO'?O%B ']0My?/D?3+< 8A12AQ<@?sS@H1K=26<BH!535!5!53!!#5!#5>533267#".57&&'7'67P$M*L5zeLy65J'&&.-' -[I.F(Mg-jK7c?_8B==a?PP?aȊ4'.$ (u:>9 )6ED6BJM6OG) -=7&&'7'67%3!535#535#'>5!#3#3!535#53533#D-[I.F(Qb,jK:d]k=fר*A]>AA=kk= >#1@FL%&''#'6767!&''6767!67&75!53!!&7&67oM6&#/K08G/>G 86]!eg'\1E:)';S,&R/?;JO6;1Hr.Z@.F9H,C-K}Pj:+4-&<{^.>N>>BWZ??;t0?;Q`BGyV-;T03:8XXA1I4J@5F (X7&&'7%'67#5!!3#"/32>7#7'6753#5!#'6737&'67'!5&S-[I.FMg-jK0K o  L0 -w7M;4P1R5.KKK:b>a9@K.C?96Al?7i5% +?6ED6BJM6OG)pBB^.?3 =J.LWSPF1JP#!y66;)G("Ie'YGLb'3k$)tm!d! "(.2#!#5%35##35#53533#37&&'7'67!rKMHJ?-WE.F/Qb-eO7e?a7*-f--=ss=6A@7BNI6KK(H1"(06<#!##"/326='!5!%7&&'7675!53!'67%7&M> B2GP \-VM.K4Qb,jKa9B;b'O6n8rH>H:pX;Y@U*D+>6AH6FNI6OG6AYYA=+f)q%7 ;7&&'7'67!#5!#5!53>7#5!#3#;#"&'P-VM.K'Mg-jK:d>`:J$JPb3G F:h^27A&26AH6FJM6OG)٘gTt TG|*AAADQjvT' 18>!5%!5%!5!&'7'67!53#&'75353!533#367%7&fffQb-eO;f>a<LZM0Fd-aIPMfMPPZ9c,0Rp%r%o;qqnn>V9,U@EW>S'+17=#&'#'67#5353!#&'#'67#5353%7&&'7'67Fd6E6 *K+M1n,n}K7w1R4L;k/8s|L+SM,G.X[,pE *MAJ)yDv1ZkEDDC(°?Dn4?J5ESE4UA$1 +17N7&&'7'67%##"/3265#5333#'677&767!5!&''67&=/PF0H8Fa.aF/M?K.Ɗ3C'xLP9A8>.!A"IDATcr?g)aEPk(pNV0BG1IHO4OH&CS(D 'aC^A~q| ݡDDxR@PvyM=O6 Z#3=#67#7&&'7'675367#535!5!5#535!5!53!!!3#!!#&''67&''678 S2'_(-[I.F+Qb-eO;f>aCC>5x;{7"#"&#.=#'67#5!5#5353!!!!!5!5!5!53!!G-[I.F+Qb-eO;f>a< C H 8` !"N *>JN6ED6BNI6KK)k%d+*==.{?k?UU?kAA>ss> : 2O7&&'7'67%#353!#335#535#'67!#3%'67!#"/32>7!E/UB1H5Fa.aF/M?K.niHHHiB ,7G+F 5s>J  TmJ 2=0FC1IHO4OH&@K?92(Qu >f3s (ӫpT, D"gC !39?7&&'7'67!#5!#5!535!!#"/3265!567%7&P-VM.K'Mg-jK:d>a9J$JP}!>/F<$ g?A=q:aR=T6AH6FJM6OG)ґlCC{CG$C Cc!n)p& % "(.>DJ7&&'7'673.''>567%'673.''>567%'67N-[I.F(Mg-jK:i>a<pMo''o=FABE%E&M-p(+|=FABE%E'6ED6BJM6OG)Rs)EsMOrE(uUfg_"Nek{QDvOQvD'uUfg_"Nem/$*P&''67 735'35#7&&'7'67%#5!&'73##5##"/326=#5!5!5!wI +U;B?5~-[I.F(Mg-jK:i>a<m%+A92,77J!@5\U# ;(F2Mzs+zHC(trr?k6ED6BJM6OG)a<0_! BA16:3U+$$N) dP,OW#N3N.6ED6BNI6KK)=4sE3;W4J7fO:AaaA9?Tm9kKDJ\BB&='+17=5#5#3!#'673673#3#3!#37&&'7'67M#9{CK Lƶ-VM.K(Qb-eO:d>`:ԕؙ@A9P@> @EEM K7%3!#&'#'67#5!G-[I.F*Mg-jK;b?`:l+.4J{#}MqL F"P Y#`Pe&_"6ED6BJM6OG)*o);Fͦe 6X'iA@:@}A;"@#5!%!5!%7&&'7'675!53!!#"/326=!5!5367!5!L5~.UM/BMe,gM;b?a9I1N1%ICKZ'" OQK1Ily:e5AJ5AJM7MJ)@PP@?UK&A&P?2(==E, :7&&'7'67##'>53353#!5#3353###35!3K-[I.F(Mg-jK;a9?:jIxC:3*JnGGnKKqIA6ED6BJM6OG )};cަJ__ @_$; -Q#!%!5%!5!%7&&'7'67'6733#67"'.536727676745K(#pp-VM.K%Qb,jK;b?`:$ J%MMj n,.Megxq> F 2}ii9b6AH6FNI6OG)A `gA@5(fy"8:A! i324 A !dn#3=#35'35#7&&'7'67!#&'+23:>47"#".=##'67#536533&'#,-[I.F+Ib/YS#;f>a<]M RY!$L ""%  J ;.0")*L!VK`_lii;ll;iA6CC6AJP5GS)- "0CTA $ , 22; /?@^C*wwUooU # <BHN3#"'53265''677&&'75367#' %!#&'#'67%7&&'767M C8CO-R A:@=AAzW@jh@X|0FC1IHO4OH8!1 1C%!5%!5!7&&'7'67%!!5!5#535!5!53!!3#"/326=!#!qq-VM.K-Qb-eO;f>a<u' Pl%N\$ qN+'DD9D6AH6FNI6KK)<CC>A:C0B Z!5!%7&&'7'675!2>7!3673:>7#".='67+!!!#"/h-VM.K%Qb,jK;b?`:jhx J )*1%% G4558=/$*lM+J/4/4aSR6AH6FNI6OG)yOOr4P88=  ('' 9GlS*!FCA 39?E67!!5&'!5!'6='67&'7#5!53!#&'#57&&'7'67_hDXFdeTJajW?|"8oaY.dN0MJx{ z6AH6FNI6OG) 9 /5;A7&&'7'67!#"/326=!535333!!'677&$7O-[I.F(Mg-jK5_>]4%=)E;  dKN5o=h74;gI=I2d6ED6BJM6OG'BM0C2Bd?|p}'t&)s%}032#)/5;A'>53#3#5&'#'67#5337&677&&'7'67#83*HE`II*ILD?x(>D>>-<3F&A(Hs-[I.F(Mg-jK;a9?:S;cަJ=At}#s{HAdwv~bswyy6ED6BJM6OG )%9"(.4:!!533333#7&6767%7&7&&'7'67QgKO.qd2f݄a4cMj(4N^+x-n0-[I.F(Mg-jK/[@N`@[6ED6BJM6OG) #)K7&&'7'67'$%&'7&'7'673!!!!.''67#5!6=!5!N-[I.F(Mg-jK:i>a<ZDB(2A0C)-B-AD5D8P 8nu(/rK 6ED6BJM6OG)+B*kTQXqONcY7A+3B<]DuIPoD$B+3A  #)M7&&'7'6733#"/3265&'753=#53673#3#&''67E/UB1H4J\.aF/M?K.H_K7#'67!33!.''>7!53335#"&=#'37&&'7'67'"&3wF.ul-EI #.wo-.pxCLdC&B>=# /VE/C*N^.^N2V?R3o*-+,g47,[^;:y ?.)wA;fBkABjBf;A-R\)H}QbK*7Y0CF1CLK4KL'9 @#36!5!!57&&'7'67'67!5!5#53533673!!#5!#Hpp-VM.K%Qb,jK;b?a9] N&>Pl7O[MM6=!&533&ooe/PF0H8Fa.aF/M?K.U u;-+! 8C%]  EN!Di/i) W:&!G]$ՠv0BG1IHO4OH&^CAA6;CCӓr6Q"_^<5F >W߱#I&F7$ 7!5!%7&7&'677!!!!&'#5'67!5!5#!!!!wgZXtS]-h"nzPڌa-"=H:#*;)r9+*;0;H`:c!=OAH?NN?HAO?CA 4K35#35%5#%7&&'7'6753!#3#!5#'>55!&''67&'767(X-[I.F+Qb,jK;f?c;OaaaX\F.*^Atgx{dX:=:_bESUii?UU6ED6BNI6OG)XXAU?h$h??mM0A%@B#A.;Q%R:=#'>7##67#"/326='675367#5#535#&'753533;BS1SC 0J@G/آZH +H8 Z GH>BB W7++\7=[?HA 5mn9'<1HG2O?LSGH1GI$Z#\on]/ŐK+ F ;k'a@* ?pM'A+^ A N#$Z.J<0CB53!!!#&'30)(-[I.F+Qb-eO;f>a< Y|6").E-)I-TA6`0YY70V j"e4D>mf%.+a< <535!;5##!%35#7&&'7!#'6753!3#"/326!ŴpH]Z-[I.FMg-jKlI:_>`:=M K!Bpf ! ŶXxCG=6ED6BJM6OGF4,)OyU*D   &,2#!%!5%!5!!3!53#!#;#7&&'7'67KJjj\<kkkky-[I.FMg-jK:d>`:}ii9b<AAA6ED6BJM6OG)' F5#&'7'67'67#5!5##&'753533533533#+5#!!!!&'#5(UKl+rG;f>a<_k"H-Qd+XWPMtKMRRMt%_fMmssDN7Q@)CXwCI;9FE8;Ha<[pJ%N\$ pN,'LOOOO9LHH:H6AH6FNI6KK)C3B- a35!&'7&&'7735#53533533#3#&'#5!327>7#"'.=!5!5''6767#+ y-[I.F+Qb-eOKKHg'I?I $?35H I(+&b*Ca<eeee>AuL>5#'6#5353D+LJ,M>X[,pE3U?P3wd8F0;Wi8-F5("'-.'B2 i46E?2@xM4:E5GSE4UA&m+.CXDC[*B/Ce$=KW/ZI/M?K.*C5JAC1$C!?2ۘH+CS/PBH9D>>]OL2MM&%D,>S,!>6*EE0BDpQ ׸  15;AG35#5#35'5#;5##35#5#5!##3+!!#5!5!5'35#7&&'7'67oѩK:;K+P7-aA.B-Mg-jK;b?`:HHHHXX;SSSZEEK@xx@K:X6I>7?JM6OG)!6 %+d3&'#&'#3&'#65#57&&'7'677'67#5367#5367#5!67!!!#3#&'!&''67#5( H  ';2vY z:?-VM.K&Ic-`M{EL!I"=mQ N/5ɦIb!lN0&' 55G2$&"(3I4'6AH6FEJ6FI 1%;B?1&%?$.;++>sCJ/8];a=q%?)l/!* A7&&'767!53353355######367!5!!!#"/326J*`A+K2Jf,^S[;B8c&KM oJoJoK  40D)3K>4GHO4HO6Qʧ66$,BB5+B  %8%#735'3=#373%7&&'7'675!!!#5!#5367dEd/ZB0C1N^.^N 4W?U3[ 4JI  }} 0GB1CLK4KL'BBEDH35##35#53533#365!#"/326=#'67'35#7&&'7'675#ƙIyMxxn2*5X8O= ⣣/UB1H:Fa.aF0K@K.)\!LDD~k)W'D+,"@0FC1IHO4OH&' <35#35#7&&'7'675#'#!#5##&'#'67#5353+SM,G.X[,pE2P?K2e_9CJHH53K(O1l,tK W4?J5ESE4UA&_Ez66Y/QEE< Q!5%!5%!5!%7&&'7'67%#3267#"&=#'>7#!!##53#5353!533#3@@@-[I.F(Mg-jK7b>Y:-+C%ZS.@BF/;4}"K=p\\L@MaakMMMM7NE6ED6BJM6OG)\=a(+sPg#8H?A6q?V?]]]]? )/5;!5%!5!#!67!5!!3#;#"&'7&&'7'67wwM#nnH =coO7>E&6-\N.J&Mg-jK;f?c;@YY9T_) ?:I AAf?y C;IRB66DJ6FJM6OG)F$8!5!!5!#367!7&&'7'67!!5!5#535!5!!3#ZZNN-[I.FMg-jK:d>`:5I4NX^g-3 2%f6ED6BJM6OG)AAb:Z>>Z:  <AEIMQ7&&'7'67%!#"/32>7#'67!5!67+3&'7#5!3!!65#75#%3535#=-[I.F/Mg-eP?]:B7559NaUD KBKB0t0\@i|6ED6BJM6KL)y*CDIE?8|A!`$%?? 80$)YYUUUUUY# %J7&&'7'6=3&'67%'67%#&'#''6767#535'6730QB0B3KW/ZII(fbK*9>.D2C5E{qR14 2J,M*&8AL,C i0~*Q N=0DC0COL2MMGPGm-FCg1Mq;xHug#7%C?*=  (,28>5#!5#;5#'#5!#3!!#!!5!5#535+3735%7&&'7'67kmkkɯ#P>FKm-[I.FMg-jK:d>`:fAAhd=}AA}=d2hhh!6ED6BJM6OG)  K!5%!5!%7&&'7!!#"/32675#'>7#'>7#''6767#5!!!}}/VE/C*N^.^N_/K/M?(,*T/H*g5V+F4nWW*??U3BzYY3NKK:H0CF1CLK4KLiAjY62-ML-3$z@W0)pg'2Gp>>0A /5;Y7&&'7'67##"/326=#'>7#5!53'67%7&!!#"/32>7!'67!5!5I-^F.; V],nG;f?c;7K. [BD;=<3K7T-B-p?V;@;(# !7:`gnH 6 L&6D@66PE6RC)A< ? ~Pw50*^DAPP(Vxz cijt4m`"A,*& ~xG> $*063+!#3!53'!5%!5!%7&&'7'6?&67+lK)Fnn-[I.FMg-jK:d>`:M>F*?+B/B2CkdaAAdxx;q6ED6BJM6OG)wi_`29?EKO533533#3!!#"/3265#353#5##335##!5!535#5'7&&'7'6735#LM ?,RW MDDDDMKǹ-[I.F+Qb,jK;f?c;.XXXX?pAFN'C !B!?BCFAp? 6ED6BNI6OG)p1-39=K35#5#753533#3+&'#'67+35#&&'7'6733#"/3265SMMMX,X7#536wFGtt(-[I.F"L[-]K -YBW.K<@`J2E45<=%8$/382A$?083E9F>=W.4H&!W+%"P]mkɈV"6ED6BHC6DF$U#2&B;G4?*0=EHAE60E%EA"$?@$EC1+B&3$C $k*.3/ADcOC 7 !GK35#535##3=#%7&&'7'67%#3#5!#35#535#'>5!53!!33#5!-[I.F+Qb,jK;f?c;LK\F.*N00FH:;KHH6ED6BNI6OG)H554H:K$hSS?;?p =CI!5%!5!%7&&'7'67!#3##"/326=+367#'>567%7&,,+-[I.F(Qb,jK:d7#'67#DLMKLK-]B.Cw9h?d854%A ,ZX.cN ( vqN2T(.(65 hL>0kWYU,,dgg;dd;g6B;7=U)dfQ1;1SC5JI+0B(&-6|0Ckmq69b - IMQW]c%35'35#35#353##"/326=!#5#53!5!535#535#53533533#3#3!!#3=#7&&'7'67??:kX FKFF̲MLK-[I.F+Qb-eO6`@^5NN6N=s==K=0O&A%0=4<=6=;8888;=6=<4NNN6ED6BNI6KK'  .4:5!!5%!5!%7&&'7'67!!5!5+#5!##67%7&f Ibb-]N0U7Rb.dR4c?^44I3LHHY-][&m.dBBaa:Z4FJ3POI5KM':CCCFa7jE;Kc:^4 #E&'##3#;#7&&'7'673!535'67#53&'73673#&'O2i2OHUVVV-WE.F&Mg-jKAO.D/N:_)Pǹ$+H*-1#H ,P""^jj6A@7BJM6OG (:FFKoALHBcTQ JNApK C37;?CIOU[#5##!5!5!533&'73!!#3##"/326=!5!535%#3735%5#!35#%7&&'7'67&'7NK)N(:1,JHxx"L fb# KN-[I.F+Qb-eO;f>a<u,R`+b=119r5@GG&*.@5#?|O%B 'z?4(MMMM5HHH6ED6BNI6KK)7J>7?/"(]&''67 7%7&&'7'67&'5!5'7&'767677&'7&'!!.''>7tI*S7B>5*-^G.C'Qb,jK8c@`874B->1;<69998B"zl=dx/qi+/sz=2N4uj+wHC)"6GD6@NI6OG(Tk$]`>S<82+0=%;9 Xh'`U"%TX%V>5UBa>=bBU42!'-17]35#'>5!#"/326=7&&'7'675#%&'73#5#'>7##336=#53673#3֎O<3(5X8 /SD0C0KW/ZI/M@M-%$?$%AAI ;9?44 >BBD1C'^I)\!{,UȪk)W'D+0EF/EOL2MM&aR>>R5c?09mSP|P#W:8[BMe.B#W>`r`>_CMBhK&A#9<K &9?E&'#''67673&'#5%!5!'&'7#5&'75!53!#5'6?&' SXVWL &:T>`7%6767#&'7'6735#5!#3#"/32>7>/UB0C/J\-aF9W?W6/h3J)F<6 ;  JK@3 i{Fm9J(M=5 D  6hH3 g0FC1ELK4OH'3P/< 956%sBK#zt:"C =BQ1?2Q2= #659$sBK#zt:"C ?BN6A -M67!%7&&'767#53&'#5!53!#3#53!!!#"/32>5!'>7#5!($-[I.F/Mg-eP]:B7cK%rOv#KO"zb11;{f882`p"(DDH@6ED6BJM6KL77\?IAPPAH@\!\?.}}-AIGV81h? 4 "(GK3&'!&'!!5%!5!%7&&'7'67&'!!3#5!#5'>='67!5 9/)^1BB1K``-VM.K1Mg-jK>a=!&533&'73#67327#"&''67&''>567=/PF0H8Fa.aF/M?K. E45=*@8"#) W:&!G]$#;-+! 8C%]  EN!Di/TF*/3r'J[)7 )0BG1IHO4OH&AAKgxQ%>G"2 >W߱#I&F7-;CCӓr6Q"_^<5"970P?2k^\z] P!5%!5!%7&&'7'67#3267"#"&=#'>7#53&'735+!#3673bb-[I.F+Qb,jK8c@`812F"a/_ rp ȁ+@*#PL8U& B"yMQQ:K6ED6BNI6OG(4 $m++5 Av)A"t_C-NKKOBT>? 9!^d67#67767&'7&7&&'7767#53&'73673#677&'7&'.''767&''672"2A7>8= y=!(3Y*%? = ]-*J_9W?W6m`L zxJkOjR0FC1ILK4DJ8 u^A;.@;7C74A*;vka28'A TWhx'7 !?U67#%7&&'7'67#'6367!#&''67&''33#&'#5'67#53?!'/^9/AIE/IF/M?K.C!DbiAP'B >4%OJdwV[sO7*')GͼFwHGJvI"76J;2,n_BtfA]ml\AftB  '+/5;A5!5!;5#!5!##53!3##"/326=%!5%!5!7&&'7'67`&KNHC6CH#K%Q_ ppp-[I.F!W`-^Z:d>`:>LAz}BC3KK9K6ED6BRH6EU)@ A67!7&&'7'67!3533!53&'#5#5!53!##3!!!#5!5!0"##-[I.F+Qb-eO;f>a<Nа92'N%272N1^ciX6ED6BNI6KK)x__AmT-YY-[fAv@@ !'A7&&'7'67'67$7&'7&'73#!5#535#5!#5!#67N-[I.F(Mg-jK:i>a<%=JF'Z#.E.%3;D>3NZMq`6ED6BJM6OG)ix%B%dIIguTWuo==|? ++-B%/ *y35'35#3&'#5367#5'67"/326537'67&'#'67&''#"/326=#'>53673673&'7&'#3#&'&'7kiiiuh!(:NE%;3 IV.*12#")bu#g\$..*'.I: m /<G0EzM!'AK7@oAS.*+%zmr&sl\!:A3C<}C8>;=37n"A JU(5&=).1*33,-u;=2e3/4!8W'D+9SŮ^X~::OVJW:5h|98=;;Ck>@#6/kB8>n A '8<@FLRd67!35'35#"#".=##!#232>7'#3=#7&&'7'6?53&'#5!53!#3 %I 4('-..KII  !& ) F-[I.G6Qb,jK;f?c; !cOj!.1KG5^^8Z(*7!  #(? ^ZZ6CC6ANI6OG)?@LIB9\=`:6D38mmna|7/>+EEOOEE@8?FL6LE~ma)+ʦ:!((,2j#35##5'675!##"/326=####35#'&'7767#&'753533533533533#3267#"&=##5#MMD5[?Z2CD38.MEO_-bMx[+Dd+L@wF3EME3G ? ;"33bb/G)Ҋ:Co b-JH6HI)28=G847&PPPPPPPP?H ((( !׾=9"(.4ekq&'7&'67&'73'26367667&'7&&'7'6767'7&'&'''67.''26367#'276'$'$f : 8$'P <"%1,A$'dƊ5+qG-[I.F/Mg-eP@Z5E3 H#A@eE=,&=iQsb (u(.B%7w3&;=39PLD;=9 Q6ED6BJM6KL'>/ AdO"IX# J?@6;)H/ @:S <DI?3 8g?;} A@ IM67#%7&&'7'67#3#3!#35#535##3&'#5!53!#3#"/326'5#--[I.G6Qb,jK;f?c;}вEK3N5 ?+RW ?86:46CC6ANI6OG)MUU>=1N'A c 5  $(,C%5###!7&&'7'675!5!5!5!%###53#'673#F$/PF0H9J\-aF/M?K.s:yMB'?>E l?,+0BG1ILK4OH&AACC??@@WEEye 41C;"T!5!67#7&&'7'675!53!'67+5'67!&'#53&'.'#67'675wLE5,ZM-I!U`+dR;b?a9I1N1Of`J*zT,-94-S$8EQGco(-3bI H>BDk:DE!7@E7AOF7HL)@PP@@2O >9V2-'#(>S?> %YDJ'>)|-"?9A #7#)/c!5#>=#53#>=#537&&'7'67#!#"/326=&''#5&''#!5#5#5353!533#C?%06u?%06u&,g?.C&Qb-eO8e?`:7)@2  '!."G(!-#K[[MCMbbFF<#e69(:$d69b6L;7?NI6KK(7BK'C$H-"MK$0-$KL#137ALLLLA K "&,28>DJP67#35#5#!35#%67!3!#5#677&'7&'7&'77&&'7'67f20+ CSH ")1K#Qa96>79 F #C(*D=D+-[I.F+Qb,jK;f>a<b,5,5syyy#?3.\I#ss[vYhtthsgri[y z\6ED6BNI6OG) "(.2DJP35#535#5!#3%5#!5#;5#%7&&'7'6?5!26=!5!!#"/%67%7&4nH̱Kj#qkk\-[I.F+Qb-eO6^>Y7A 82IHnG1Jr/eV/YDDDAAD:qqqqq6ED6BNI6KK)??AA;@B^-dD0L]1^K '2@LX7&&'7'67!&'#5'67!5!53'673&"/32653%'67&'7&'7'67=-[I.F/Mg-eP 2`@\4Pfh$P(SZXN mr7>4C9zz!J743Hlu6ED6BJM6KL'ABg@nFsr\W@QXAgg|N@LooL@RpC KH#=%RB5,9E1b4\397hQ@K%N'ռ>v4vvvvvHv/UE0L:Fa.aF/M?K.:K;iGX(IR`ch- C (%`3&GVV@Y9YYYY@0FF2NHO4OH&A=Z< A5.Aj;8>"~ ( )625  HMSY_%5#75&'7%5#75&'7!5!!3#"/326=&'#5&'#'63!!357&&'7'67q OB HI I; EK EK Ek*89IA EKC HIDLB]J -VM.K1Mg-jK;f>ap+&$MfJ xy?DpwT50GB1LHO4@W&rOBB&/0F.g:hH%2 $(f_AeyB@ -d7&&'7'675!53!&''67&'76'>367##367#3!53!!#"/326=!67&'7&'?-TP.G6Qb,jK;f?c;H&N)=';4;+8FSX)NFCJ(OS9"%"K JI 87*^] +iR@42@ 6DJNR3533#3!#35#535335#37#3735'5#;5#!5!#!#57&&'7'67#3!!"|KдFK|vv||Bw|wwiM0L-YI.<#ZX.eO9h?d8 vvLiLL@141@L11FFFFFF6GGGL+k+ 6@A67SC5KK)3GL2 I!5%!5!735%7&&'7'675!5+35#53533533#3#!!.''>7MMon-^G.C'Qb,jK8c@`8H1KnLLn/pi+/szVV:R~CCE6GD6@NI6OG(>AWC=UUUU=CA>5UBa>=bBU47 S35##3735%7&&'7'675!6=!5!5+535#53533533#3#!!!#.''678O-[I.F+Qb-eO;f>a/h 17;?EKQW%'67#533!!"&35#35##35#53533#3#3##5#53575##37&&'7'67&'7p/B,E0Vq߂vvvvJLپLvvvv/^9/A,C^/aAw?K.B/<;?bb>HXX6`0N;0AEL2OA & &aX&X  "5;AG!5!!5!#!#5!%5#!5#;5#67!&''67&'7#5!7&&'7'67aaM9J'MȅfEAtZ;9{-Gsk(-[I.F(Mg-jK:g>a<32g߹5PPPPP,EF==:=&0>!==S<#6ED6BJM6OG)1$*0H%#!#&'7#'67'!5%!5%!5!7&&'7'67!!5!5#535!5!53!!3#N3dk__Vkkk-[I.F(Qb,jK;f>a< f*P Nn6=7A:/'K48.@l22d2232b6ED6BNI6OG) 99160<@@<061OU[35#5#.''>=3753533#3673'67#'+&'#'67+35#&&'7'67?FFE"5`b6#MdIe/H=ICG (E&"6*D4:VK5I;\$q;3C0=2KW/ZI/M?K.WH!ab H0晅0<=6YYAXh>1DtpmRMIJNs_El{'X/>OL2MM&- V35'5#;5#35#'&'7'67%###'67##5#535+35#&'753533#3+36673MLMMLLKW/ZI/M?K..KI\/2=|IJ@/CS/LAI@KgVckk9dddk OL2MM&XB @VS.EE0A@4__?SVR 0F'Cf!7*>Yv67#265367&'#"/%5!'>73#5#'65#535#533767&'7#'67!'67&&'7#5!533##"/326=!Q)5$O&Foc;\qp} +Q#dEb*v `+OIIXM9>7׹Hq25170-2+AOc'cM"-c6)N`'mPSS(M-?I# ]K!)"9 #>75/J-E3G*>T;B@@E*=!`1΢9'3@?ņ#!( $%6)C 9Lt5 <4+<^^<_5>S3:"A NR%#3'357&&'7'6?5367#'67!!!!3673#3#3#3!#'6735#/UF0G.RY/^N 4WAU3b}##;T/Eir3EN4'QIGG0CF1GPG3KL%@812#'Yl$A36@19$:+@G6I6J<,&>bpJ") Dflr7&&'7'67!#"/32>7#''675#535#53533#3#6767#7&'#5'7&'767677&67%7&G/PF0H4J\-aF/M?K.Y/D0 [TD)^&mm||Luumm0Kj i>H<=#PL]< 0A>F4* [@ixʇR,Y'}h&n0BG1ILK4OH&~JA`ec.,A E;D?DD?D;: -XM#XX#1 C>E+#8#;&" WL%UM>B4I?7BH;M !# #)V35&'#3735'5#;5#7&&'7'673#&'#5!#'67#53&'735#' %36?!Z=KK-VM.K-Qb-eODL%E#SE+fKWI*f$#C(*KY H8AH<@Faaaa7]]]6AH6FNI6KK !pMFAaNI,,T INaAF5=SA-? Z,fjpv|%!5!%#"&=#3#5!#'67#'67367#53533#3#67'675#!'67#'67367#53533#3#265!7&&'7'67w651#sMwM#-s,< < =C IYYn-. Qs  "K+*h6 = =<Jop^ qw-cB.C.Ke,hJ;b?a9eN& ywJR++3O~ I_ -(?;;?*+>V ;,< mqP0@Q AS *+?;;?/&>]Wii6I>7?HK6MF),\`&'!5!7&&'7'67%5367#53533#3#&'#5!#'67#5367#53533#3#&'!'675!_7#$Iy-cB.C.Ke,hJ;b?a9qrsK4b"!LyM)[*o Kik}f73929/!)S\y^>HO7e6I>7?HK6MF)?'3@KK@4&?iGFh++!FCm?*0@KK@3'?1E*H6M;,@>ii+ >DJPV7&&'7'672>7!'67#673#!5#535#5!!!#"/677&'77&'77&'7U-VM.K%Qb,jK 3_@Z5V97;)iMyqYo 334aN@(B&? S<P$;"6AH6FNI6OG'"qr9(9Dkf-B"U3@G]D/!xU0X*ta+\R\aMORR6ED6BDJ6GG'B !4 H3J?9+*F;CA.% +AI;6@!E@F4H)'ޕAU7]/c>8EX6R ! $*06G35#535#5!#3%5#!5#;5#!5%!5!7&&'7'67!!#5!5!5+!#6vFȳIs-vssjj-VM.K-Qb-eO;f>a<'P-O4777??76`````??18z6AH6FNI6KK)?mm?:* !'+NRV&'7'6!#"/326=#'>55#75###5#535+35#&'753533#3#3535#J\-aF@B/M?K5X8 K=1'ӌyI9B{*HM/HCIqLK4OH&)W'D+,Uǫx\!:U??TnT+IA0;C.__?TT]]d 1"&,28I5#!35##!#&'7#'67'!5%!5%!5!7&&'7'67!!!5!5+5!53D N3ak_]Qkkk-[I.F(Qb,jK;f>a<,W/K NyAAAn5;:A:/'K4<-=l22d2232b6ED6BNI6OG)&::&;;9 n#3635#357&&'7'673#3&'7#5##'#"'532>54''67&''67&'76767#535#535336Rl./^9/A-KW/ZI/M?K.?/D|55(775-KI$65/<;! @M\F 2658#C4-95J5eӢK@bgiik0N;0AOL2MM&pd?C4,(2?$m++S=#C'jR=A-?7PWT+"@"1?="157A%OJNt?=aa/ !<"&*06<N67!#!#!!!!5!5!5!5735+3=#37357&&'7'6?53&'#5!53!#3"J:5G4PP-VM.K-Qb-eO;f>a<oPp 84958x!6>:AA:>68???q====M6AH6FNI6KK)=85?XX?76=$9 !7G7&&'7'67!5353333#'>736733#677333#3!533S,[I.K-Qb-eO3XAU3QgKOH GBJXX'/|FK]]qw?H6ED6FNI6KK"CC_A{BYA @4ACC\ES&'!5!67#7&'675!6767&'!5'&'767&'76753&'#5!#3L14G7e#-[I.Fo7c?]:|8$/382A$?083E9Fd^Xj#S`/cOZB2E45<=% =<"U[aOv=NEF6ED6BX)AE60E%EA"$?@$EC1+B=_&$\>;&UM4OQ:?4?*0=EHBHCL?B9 Dg7&&'7'673!535#535!3#67'675#535#5!5!5!53!!!#3#267#".=#'>7#5!#=,fC-O6T\._RAI*B,xxxyy.S:Lnns% N 3nn<J')&/1'q ut4MA5JQH4IO%;;S9DD9Z9; c9D=OZ3`)^2e{;CE,RSM+H&Ng-_W75##5!5!5!!!#5#53#&'!5"/326=##5#5!FEM&/Z;0J=Fa.aF0K@K.xJ1{2KMXV'_R%M6'160K<2KHO4OH&4444@:N4" 8AA8ܣ "4N:@,"",@)D?O)  <Yu{35#37357&&'7'67%'>=33267#"&=#767!5!&''&'767&'3!'>53!!3533533#67Hȡ)2=>F1KA1A5HS1TH$D@?$5 < ._>=)>;$R/JER YOKu):)L;Hh6):'D (=>=''B$<"Jxx4S0DG0GNI1IO1'kcDY010 gt!VIIiBBZC0=0LG5: GA@F&8S.A`,n"_ SSSS>gRfh^!D 8c7&&'7'67#!#367!3!!.''>7!5!5735'673'673#&'#5'67#53&P-VM.K-Qb-eO;f>a<K:KN3P%di+0vt#,5+"%CINǬ JTB$/8*Nw2PBa>>`BP1>b,1: 8 >@=;95Y+YEh^RA.>L9, K OU[_cg67!!!53#5!#5767!3#3267"#"&=#'>7#!!'>='&&'7'675!5!5!!zLLzM.ZEk8I ?# &*G  "P&<}[E[N GB+$3!I4Eb.dDz@F+B,!@s''r3NIZm  <";=  ' T8V9 5$39 gn)%NKU3VI#Y2200S00D  &,2d%67#7%35'35#367&''#3#7&&'7'67"/3267#'>5#535+3673673#&''= %q>b;;3`,LJ,H9X[,pE3U?P3T-N>"l4>8_4Il M <'D $X6^#`9Bq" II7DMCGZ|40+<>4:E5CSE4UA'ADqc4<="</( GBDܜ]N:NXYM+$  CNTZ`35#5#;5##35##35#.'#6%'67+5!!!#"/.''675##5%3#>7!7&&'7'67\Bً ~yy-O 0l0D &(8s.,|~yE"*,5 -[I.L)Ge.bJ9d>_<ohhhhh.]]] ' V3l'D B %EA e1/6cAD74ED5HDL4HG' 4 "(.;_c5#;5#!3=#37#373567#7&&'7'673533533!#!!#.'#67'675#'6=!5!xxxxxxxxHxi?9#w/UE0L:Fa.aF/M?K.sKxKHZ6*A@FUs,V\U"OW;=DAAAAAo??????(56~0FF2NHO4OH&AAAA^h<;)(AY A#C`0x881$*0P%#!#&'7#'67'!5%!5%!5!7&&'7'67##5!#5#535335!5!53!!353N@mocdh^^^-[I.F/Mg-eP7c?]:yJJ{{JnLnJNu3@8A64.I/9+Bu::o;;4:E6ED6BJM6KL)TA4444A88N?@@?N88 >Rfz7&&'7'677#"/3265####'>76735!5!!3&767&''67&767&''67&767&''67&767&''67&30MI2D2JV0TL 2M@O.5]-8\H FH,k@A%??E'31!(""*4")*'-'31!(""*4")*'+01("(+2#+)$11+1!#" ,3#+*(2AJ1GPL2IR$*DM32N*A*AN2 5E!,-AA+/)++4.&-#1#2/ /)++4.&-#1#2/ /'(.8*&-&3!2./!&./0#. 3#2/  =]ciou!5%!5!%7&&'7'67!!#7&''767&'767677&%7&''767&'767677&'6&'7&'7&'7BB-[I.F/Mg-eP7c?]:nXM<<# &8G) ) 8+("635RdL="= '??( ) 8'+!635RcA-=A@ E #D'.;C61v4404 6ED6BJM6KL)Mf !A +6>3 32@0 AM!xj 3*^d% ?'#>63 32<4AM!xi /`R$UwYULdbMYV]QO] < %Y_q35#5!3!5!5#;5#7&&'7'67%".=3326775!67'67#5!53!#&'7&'7"/326=!5!!kkDL/Vlkk`/Z;0J=Fa.aF0K@K.+*+@F`":0 8'I4)"='P'-*:&A31@R!U@ka "\\99\\\x0K<2KHO4OH&pY JKbbK*(8NN@$"I\#%" O(%4&)TB(?>>II%@W]ci35#5!#535#53533533#3%5!'67&''67&''67#5!#67.'##"/32654'7&&'7'67[ III~ pq]^(H90GIDa%e'7B'9'P3-K,fC-O6T\._R@Q5C4@yy@'5)=+S9;=o /EF2=1Y  %)-15Y7&&'7'67!#5##5##5!5!5!!5353753535##5##5##367!5!!!#"/326;/Z;0J=Fa.aF0K@K.2KJJ1{湹xuHsGuK  =1=,0K<2KHO4OH&ܣգ8AA44b44b44b44@#??2A @ %.:Bb%35#7&&'7'67!!5!5!5!53!'67!5!!5!5!5!##5##&'7326=#535!5!#3##"/V/Z;0J=Fa.aF#BB>%.S..@yQ.]FH(775':B==08lk0K<2KHO4OH!1441:77:!'%888T771331 -E@$;@ "V81::18m6"6 ,!)-15;AGKO35#5#3#'#3!#!#3675!3!535#!5#;5#7&&'7'67#35!V]] *9bJbvbG$F 1N<)iiiil/UE0L:Fa.aF0K@K.]] JMMHCQE>M<2=Jhy . AA40FF2NHO4OH&JCC U5#5##37&&'7%35#535#5!#3#3#3#3!#''6767#535#535#5!#367#}+aM,M(Sb*oH% L#$2M@S47Z5K  & CCzEE6F6CD8ELC7LB[L5E?,a)y'E A &,TX^|3267'67!7#3735'35#7&&'7'67%"&='75#'>=!53!!!"#367".=33:>47'&'7+!!&'7A]T= 3)F|-[G.C3O^-bL ,G@C-6~&-B+$ NJ"  >3~9";">Rd7*H#)" B21ABH66-;:<+  '''249999.65HF5AOK5NL#2 4:ǩe gҒ.:*<( P6F]dI zb  &'% a<+%1^TZY ; $*:>Q#5!%5#!5#;5#!5%!5!7&&'7'67!5!53!!3!535!&'7#'67+!#DYZo oookk-[I.F(Qb,jK;f>a<lRk$ji^EN15<<<<<11016ED6BNI6OG)9229+5511684&E(9 1]* K #/b35&'#3735'5#;5#7&&'7!#5!53!#'3#&'#5!#''6767#53&'735#' 7368X6KK/OD0MBFa.aF}J+P*IMD$e#KTK#0O?K3@c@%SpS ZoT+t;9;9tMMMM5III0AC1MHO4OHSS(6=?WE@ %% :&FU?.'94}@&> E- (W&'7&&'7'67%33#"/3262>7#'&''>76767&'767#53#"/'>7&'7>75#535#5'673&'#3#>767>cI5241KG1;(CZ1\BtBC&D&=D?H3F/8 E&+ Xc  agJO$,9,6'!|S#> !a=9xkR]l(v? =>-,2'/AN.AMT1TL#3sDU)F+M>P!@%? 2=&72G\Lq?uxE>,<+>F(3EPN &2!&DOmM2MX~OiJH'/,%,+(v~s"v{{7p88::09 6ED6BJM6KL(F!B-)$7%=0O=897798=P/=";)$1,)`,9,Z7X28/ ' 5<BH^dj767''67%35'35'35###"/326=#5353333#'67&&'75!#3!#5&'736767?&(=;,.*Ecm|o&]]ZZ:WBJ/B0B d@i)gE-0EF/EOL2MM)AA/+]pi{!99H2Q;5?K6OA(,04:@Fnr3267'67!7#5!%#3735'35#5!3!535#!5#;5#7&&'7'67%"&='75#'>=!53!!!"#3A]T= 3)HҞF8*l2``aa/-[G.C3O^-bL ,G@C-6~&-B+$ NJ"  >3~  '''24_1111'16??nnnnn5HF5AOK5NL#2 4:ǩe gҒ.:*<( K1 ;Xh7&&'7'67673#&'#5''>5!!67#535%673#&'#5'67#5353533#3!53534/SD0C0KW/ZI/M?K.m :#ZM)/" $D%5 ^73*M$PX4m FhZ)N >(C!=J'SZ'(LfK0EF/EOL2MM& 6P !'9}%35'35#67#35#357&&'7'6?!#"/326=##3##5##"/326=#535#535#5'#3!535#535#53533#36733C-o"HHH2GC2E6BS1SC 0J@G/R>7!;:I$$FH4*9- R(u{{M{\/E&eAA9@ 5-/3xyy0;I0IGH1GI$BC:A&pT*D+p>yAx%!8A<CC>A1p (@02A -t35'35%7&&'7'67##5!#5#5353!533353#35!5!5!5!5!5!53!3#!35#53353#5##535##5#3#5#'65/SD0C0KW/ZI/M?K.LMMLH`<RM BBڝ54''67&''67&''67#5!#6%3#3#5##'67#535#53533>XT,/^9/A-KW/ZI/M?K.g5,23G&3'"*-$\H Oo'R :[$d:&5'jBBp$3=,Dw%+IG!%u]ppKl @sinnf0N;0AOL2MM&#K79.<(*zwaBDA.qU=d7.UF;KZ !(&;JkBB9.*8tlA3/@++PFNrA?ff < !'Oas%#32667#35'35#7&&'7'673#3#3#3#".535#3!!53&'#53533#3!#"/326=##EQ#6 :1KG1;,KW/ZI/M?K.'353,-+ L,V 'M%N@67+FB& %3FP)MM>!X@VV@B7>>jBCG 1 HNTZ`35#5#35'35'35#%7535335!#3!#367##3+&'#'67+35#&&'7'6767?&=DDE𽽽/F=Iy Fg A68ZL3I9Z#o;3A-@7KW/ZI/M?K.b5.:h*\>*EWH]]ZZ:W0;<4YY2A/+!92XRRJKK m]Fl{'X,@OL2MM&9H2Q;5?K6O  #HLRX^bhn35#35%5##323265#3#3#!#535#535##;3;#"/&'#5'67'35#7&&'7'67%357&7'6Qd9k   ŧ99JJ*K1#F>;FFxwBLtti/T@0E5KW/ZI/M?K.u((( 'KKK5KK5K_)'+/8%%8/c="T*81:0:+,.0DB0EOL2MM&-6 5; 31* 7 %\`d%5#5##367#535#3#7&&'7#3#3#3#3#3!#''6767#535#53533535#!5#y ?R ,fC-O6T\._R M#"7&7BE'C h:=NN<>3@Y 55({4MA5JQH4IOX?5!8<4>3@=,<>&6t$ ) k5?<<<LLLLAA9y =IFJ N8B?@A95g4?:A]8@4mu6@7h 49=AEK{#53'35#677&'7.'#5'767&'767677&'753535367&'7.'#5'767&'#53767677&'77&&'7'67%!!#"/3267!'67!5!5"6Ȓ[[0.9:d. =(/$' ,(/7KS ** !0.:9e- ;-/!+ +)/7KS *)y.K?.A0HQ.Z@p@L.B, ;>YhluP0 N*M30RILMMKJ9D35';0 69PV&IW=D1111P11HIILFU 9=4/=65 69PV&NRAF0BG2IPG4OG& wB</' `\/99'3.''65%'6%'67P)01Տ)|F0n=h#a?]'Z=@珏@=Z5U&ĕ!8 '6&'7&'7&'7CBMAL M 6K3"ALBW7 ~" |}%!'-!##"/3265!'3&''6565%'67)'S?z;(KoK?DM6q3Va%E'A?#D"FV( F +lpkn'xe9R ӒǓ(&3.''$67%'67%!!'> PN%w*-z#WPFUAX'F)--2:*#C3tr3BGx~!rL Bf:b7;(.4'6$7!'67!&'73.''>567'67I,hd1hL7!'>7! 7&3&''6657'67-Rz= 8K47YKj!&?U;@=367%67 OqgQMMYmCNsjOLLYkDQogQMMYlD33ܒPTP#G$T^1F4`tbRf_I`cl]Td^IZ]w^Rf_I_cul'FWXF'mpUflZ;RclS+1!5!'5!%367'65!#5!'67&''665k{VH8 ? B7HJO g>=G,Z2$@'JԡFF^ZF{  $^w]i<3c_e7ӌė3 /5;67!'67!>=3.'3&''6657'67nn.G +V>M(.JrKa)*aHVM,BE,\2$@'<>!>!71Ex%gpx::B*kk)dyfdq6_Sg7ӌė  ;/-39'>=3.''67'67.''>=3'67672ؐP$S>N#2a=[233ܒP?P#D$^1B4`KWF'maam'FlZ%TgiU'Of.l'FWXF'm%Ufl6RclS' !9?2653#"/'677&6$7367'&''665L M9\> "QFR!GEL+F4 =?DΫH5#>+E*eM-=W)a2$@'3+FT+Eٴ "r>Fqno5Zbm7ӌė;B/5;'67!'67&'767&'767!3.''>567%'67r|K @#5JBD5ul'FWWF'mUflZ$(Rcl! /!5!657'675!!!!!!#5&''6=36$C';@"5`VO4>V5t3VaKcP ǓtD¾E2]"~h9R ohO+) &,2!53!53!535!!'>%3.''>567%'67MOM(%`:)$NO w+-{J FPAR,F*TuuUC5Ew[?WV?/wzTps[ Rlp G V\!32>7!3536767!#"/#3:>7#".5''&''665 G8 ?c-K ""1N+=0=MKKK26> 37XI58G,W2%?&?0$6AZF{ lY /2=@B?3@GGE&&$3:-#.{x`7ӏȓ5%+1!!!!!##'67!%3&''6657'67N2,J@h+J HnR8BV,]2$@';<"? CE䑃+ <Mqg.h7ӌė  :; "(7#!3!!!%!5!67%&'7&'7&'7NPwW&ڧLAA@P K 6F7@M>T:D,mB}A]t!vbhs ql`y|_ng$tbD-39?EK67#3#"/32>7!'$!53&'7367!367!677&'77&'77&'7 l2/,sR5Th' x%"G',iL9^e v$73"B"3 @ |#="w(;'Y;8@ B$wpVH= CC29PDS KBUabS7B8Avxxt vw%Vph_+GPMK+# 59G67%&'7&'7&'7'67#5!#3'67&'767#3"/32653:M@ADL K 6F8@M>S;C #hB:5D9BFI|:c^4 K#.g{!cm zsedup%zm@PAA(-5 ~/A)O?//77BUIziE)1T+)F!'-39!!!#"/32>7!367!'5!677&'77&'77&'7<4D&hJ/T O \N7!C"7 B  ?"'<'WAX%y BVS+8*-/?zzmitjWki[PY[OEJJE 5 CIM67!&'36767!&'#5!#'67&'''&''6655!X;C iW\vG8 ? wEH IHia$LL 8{F:*/.+7XI58G,W2%?&GY T2AA2ZF{ 14t2@vYF7E55iH5RQ H $/F3">OQ H $/F3">O !<;sNN9'1+Y1F1*2oJK0;A+<%3(2&"lR4|ė) )/5;A7!#"/32>7!#535335!5!!!!!!!!677&'77&'77&'74D&hJ/RhÛN4=G7!C"7 B  ?"'<'"y BVS>??CI>mitjWki[PY[OEJJEK=C%!5%!5!36767!3#5!#367#''3#5&''665ZUH:? HL,1NKJG@Hd.-7NJHH27C,W2$@'<PP D%v %Alx,,4d{X4ha(e,yu`7ӌė< :@67!#!#=!'&''653675!53!#3!53&'#'%65( bLOb45A+\2H2+PV$"A>2T$@'_k^l +|+@(1geg7*Jr;bbArXBBgc.yė'*2H3.''>567%'673533#&'#5'67#%#&'#5'67#5353P23ܒO"F$T7=^1C2M{GA0/6M9Y-p:lO-xFMIt1LM|df$F|SS|F$fSdlZ(Rci\\?AI2<:cV6cn??pc4]di\/hp?\\ 0K 17=CI35'35#35'35##3353#3!535#535'67!#67%&'7&'7&'7xqqqqxxxxIqqqq~~jk&9zLG{VLAA@P K 6F7@M>T:DDD@@Dg##+r0$A/]t!vbdw ql`y|_ng$tb 3 #A5!5!!!67%&'7&'7&'7'!'67!67!!!!!!!\LAA@P K 6F7@M>T:9# ,j3H O7))G7____<_]t!vbhs ql`y|_ng$tbgA*G ''*1 +&B_<_<_*56<BHNT33#&''67#'67&'767&'767#'67335?&67%&'7&'7&'7oM'-H%\/*|?ڈ\T8914>)!&K1#E-Ib&LD hn.U80MM@ADL K 6F8@M>S;# C9pW6:{BA-D;9-2B&*(I-!GDGYD9q*%8k3A64Fg{!cm zsedup%zm7 Y_35335!5!&''653675353!!3533#3#3267"#"&=#'67#535#'%65 NH]]8/8,Z2H4.M\Gwwi23I \2_!qc0O$@'BO\\)^Wc7IDx =bbA\\C? ,',5 4|$@>Z: 5B#)/AES35'35#'5!&'7367!67%&'7&'7&'7!#"/326=##%33#"/3265E'#H!M@=>Q H $/F3">OSe eZWk jY a^e]\_'UjU%; $v=NT+A' 9  EKQW]535#5#35#'#3#3!!3!#5#23:>7"#*.567%&'7&'7&'7:bbqqbbqcA K # $!(  I 9./'*0"M@;@N E $/B3">OGL-+ &))1 Se hWWk jY a^e]\_%Ye EK5#!5#;5#'35&''6536735#5!#3!!#!!5!5#535+5''65kmkkm6+&(P0F+: ɯ#P>F"$@=!fhh)]Be7E!j*hAAhd=}AA}=d^IG kʑ'$J!5!!5&''65367'%65%#!#&'#5'67#5!5##5353!533#33P903,Z2H9">(A3R$@'XbMje SSK3LRR8hmmZ)^Qc7MGow"{ėACo`CfxzbC`oCAQBEEEEBK "]c67#5#3>7#335#"&=#'3&''6536767!33!.''>7!53''65!'$|3|C-qMWC&D:V#5#)(N0F2; [-G  (-tk+/t|4")??"o$3+,g47,\]R\)H}vt>8Z)MJa7;6x-`r &?).wA;fBkAAkBf;A( JH>jŖ 9 -39?E7#!35'35##!%!5!!#"/32>7#'>7#67%&'7&'7&'7KԊfK{8b..9UM+a$OoM@=>Q H $/F3">O9+:+Y2H9!>uY.Y['i*i[[9WėAA8"t's{)X\d7OHy5%]]7J5N::>K7G U!5%!5!65!!#"/32675#'>7#'>7#&''65367'67#5!!!xxR?!&9K/M?(*T.H*g5U*F4nC?0/0(X1F4; B,-%gKoo/OLL:G|ʑAjY62-ML-4$z?B) 2bOj7G4x6GFF\>>0~6'7 $B67#!5!!567%&'7&'7&'7'!5'67!5!5!5!53!67!!! WH &M@=>Q H $/F3">OpCCSe"eZWk i[ a^e]\_(Ye?0LA[@QQ&[UA'  #)/ag!5!'5!&'7'67#53#"/326'&'7'67367'6=!!3#"/3265#'67&''665fn}=#5.0)\B ?V,$8DT;/+-}[> >F(; B00&3,$8D M= )+(R0?"g@@+5'/26+445>%@%;'*76+4459g)La&%@)(XJg7ӒŖ F -39U[a#367!%!5%!5%!5!&''65367''6567%#".=33:>7&'7?&NN1w1(((T0F+: A$A=!<$E!G565-/-MG&% E>?2C<3B=1A.'9 2%RRQQ9O1Q>h7E!j+^sʑXg.0- #($> $%O=,?MDn %+1;?a35#5#;!#!#3#735#67%&'7&'7&'73'>5%#37!#5#3:>7"#".5=XXgHJg[[ץM@;@N E $/B3">O7"#".=367:>7"#".=36767%&'7&'7&'7AJON@nYI;y5 y;IY4<57l1:@QddXWd b[RhmN`U"[\;;.6+(5/<(=35(+6KQ!&'!5!%65'6?&'&'#5!#&''653675!53!#5!#'67BZHInnc=![$Wg+l!MM+ 1/0&Z0F!"NHF"%P[\sʑ5i7^ty/}oruD66G1oYp76^^dddΏ^L-Hr 9  "(4^#35#35'35#35#67%&'7&'7&'7%!#3#3!#5#23:>7"#*.5A_HM@;@N E $/B3">OG+ &))1 +6)]ciou#5!%35#5!67#"/326='67536?6=#5!535333533327#".'#&''67&67%&'7&'7&'7Gz[BCoG D"RK"zX\x%7!|*#& x9OtH  8 R d9A/7,4}6*/M@=>Q H $/F3">O=3.''67%'675!5#'6=3!!!##"/326'67?&##"/3265!5!537&P33yM!I!S5C]1H2s:72?Ig~)A/<:?91&<%L!=$f _  M:T7<844CsKLLKsC`CC`DTYJ $@QZ33mlK?]3%"6~#8>?HST?NNq?>#@ #?KK$[["^+6 iou{#326353=##6767&'#"'%#".'#&''7'675#5'67#535#53533#376=#535333267%&'7&'7&'7W  C8DmL''*4]d8 R d9B/5,+h4Wc sM-"&H  M@=>Q H $/F3">O;I4Is&=8ekP:V8F0U7A Q3>,X>><039P Cii3Se eZe] jY a^e]\_'Uj 2@ $*:I!5!67!#5!%!5!67%&'7&'7&'7!!!5!5!5!53!53&'+5!#3^ ULAABN K 6F8BK>N@rYYrT Sc .1.QdiSWd b[RhmN`U"[\*99*=@@@<<7 "(`f67#35'35#&''65367%6533#6727#"''67##!67&'!53&'#53533#3&&'70a2&4(U0F&%.8DI ?"mI&#>2C<GB-Eo*J08& Rz,M*k8-99-JQLOgg;`0SZk73A&aS)GuyŖ?igFmaLD4601v?@[A[[AUF}TnG"Z^4 X^#3=#35'35#735&''6536735#53533533#3#3#3!!!#5!5!5!535#535#5'65,҈>W.!2(Q0F*/fMMy?WW?"M5K/c&I@)D!$?/5#)(N0F(;S)C;X40(4/8/B,: E s%E&s.7C:*<- F*_=;$ŖߎC3L':$*VM%3jg)MJa79g-Aq 0#<  "EE$Qd~gl n {pzqmxtV\&'!5!67#53&'#5!#3%&''65367767#5!6767&'!5'67&'%65E--C2B 56 849+]1G& +272$%":$61>;070D8=aQS_YH3%3FU%A'RY[Pv:QEFBBBIIBB(fZh7 AU/<=JA?8?3$F@*=B%BF3)A>[$#Z>A;K8$s`/,~ėD gm&'#!5!!567%7&%&''65367767#5!67!#67&'##"/326=#5'67&'''65@))C&  |Q/X(ka)`5&/(R1F););))K$-3&=0K3H0ݕAB !.H4JD+r)mʑ7 (.t3567#%35&''65367''653#&'3#3##5#53=353&'#'67&''67'67#53&'73533'6w>V/" l% M)5-+(O1F(;!@ D?!?2I[0VVddMN%V>6 '~J=/"-j+(Hf~;C?=E6qPr4Jk=2BF!$)`Lc76gG oʑJC?OD@ M=@}}@=d5=:581b4$4[z@BV?J@#;UB9Or65%3!535#535#3#67'675#535#'&''6536735#53533#!#3#:>7#"&=#'>7#5!#"$@'qkccbb193I``[+0N>8/7+[1G3<N q``J %%$d-bll iLė$;;S9DD9X 9; c9D{Y0r})\Xf7LEu OZ8KKB0aKqK&aτ-@1#A~zO t?785"9(L1F(;!@ J?!AI?CAaaaa7]]]DOA^LI,,Y DNaA6EKEA-? W)Lda7:f .,zʑ6< $]35##3'35#67%&'7&'7&'7'"&5!##5'675#53535#53533533#3673267uGGpp}M@=>Q H $/F3">OLL=!3265#;L/@3D7F($HH/&1(P0?"X1#F!K;54!%8 J=oe(%gq >5:+UUU5UU5U'9gg/TTb7ӒŖT*0?5X=2'aN+T 9("28>NTZ%!5!!5!#5367+5!!!#5#5!#5%'>=3&''67%'67'>=3&''67%'67D2 N NX jNMfMbZI =yoK>(C,>0ACcRI >sM:,A-$@.CIP%"%bbH9fX)&.)Y+8'T_yKR7gU+&-$Z.:&U^x@I NEAHODOt653!#.''>7#&''653675367!#5&'#5'#'5!5735'673'673#!67#53&"$@'P]a)0rp"8+C+Z1G<&N H%MA=9Y!H-7:6 0")!:,] EK:!-3+Lt?J]V:{K(LėD9>2PB`==`BP1 ))Vie7SSN!: 7'[@eZQ>( Lv^$Vb6b%8: 8 jŖ>dddd;pv67#?67#5!&''67&&''6536767533#33533673!&'#5'67!53&''67&''''65/ +C*G"8,]BYmJ"ZH>Z3D@;HRAH1A4}B66.K<06765IPj77Me*?jyŖ;Kl# W<;:U7)94E4:;L30%-,AUD:0';2C/N4W3pM!#bC>$@#b  )ek35#5#;5##35##35#&'#63#>7!&''653675!!!#"/.''675##5'67+'%65pp spph{uu ?6#25"5(P1F1 WC &(8s-. k}uB 0q.@*+I?!ohhhhh(]]](T@eD)M\d7*Nuf""D BJA d1&3suX4xʑ )( 7=AEIMdj%67!7#53'35#5!&''67&'75367'&''6/677535!535375367'&''6/67V^C9򹀀W˲ЛN'JA ":$6)I*G0)Y$K:! : @ #:$8*J+J0)V#L9! : S5MJ39AA_B(A>< A+:>) F?UB"c~ ph=:>m=;a?k{11Q44R22Q11F?V@#g} pvA:Dyt9;\4k{~1$Rfl%'675#53;#"&67#'&'7&'7##5#535#535#53&'#535#53533#3#3#3#&''65367'654L1[6vh~D JJ*ER-C@*K;MƵd QɼM? ^L-".(T0F72<A ?"3F>;HRAH1A4:HN4B661H<0676>QQ>H@*6)/(P1F)%l@ |H ,h"?!5;<0l=30<]M?).6+(u}ScfUhT eYbYYbNh eQv(YSb751j /<(=35(+6.;Gʑ ; J_ek35'355#!5#;5#%65535333##!!5!5#535#&''65367535!&'73!53='6&'7&'7aa``= ?" NNN1_"0@@42),(P0F!)>&5+5<;0:5FQ4< Co&B+H11p11>ϖŖ;HHl?e199141SMQ)kp/WNd7'6;1TLSIRa??(QA>FH=>GO7 CZ`5#5##335#535#5!#3#3#3#3!#'67#535#535#5!#367#&''65367''65 ɹ M 8j8Hĺx (5"9)K1F);!@F?! CCzEE6FL5E?$!5'67&'#"/3265#'>=#535#67'&''6536753533#3#767!>#TzuuKxxZ%)3 *".5(=E9G:S0 *#.5)e;[2] L;8?0?0" O586kp,:hd7 #8#+GGRf# Ga6&(-4GG[]' Ga[Op  ACp`B^qq^B^rCA  A $(,04:os|65%3267'67!7#5!%#3735'35#5#35#;5#%65%"&='75#'67&''653675353!!!"#33!53=!B)7+*ZT9 3%G㐐EWWWW ?"l5fj&+A".(P0FOC# >1v+&0%AD<6HR}/  ($*34_1111'1nnnnnŖ2 4 <Ǩf '0GRd7*4b.:*<( K1??i6  17=sy35#35%5##35##35#%'%#3+3265#37&7'63675;3;#"/&'#5'67+535#535##5&''665Dijjj@3/n4H9W  ɪ$$%#F($H*J1#F-,F=gg;C4H/&1(P0?"JKK6JJ6Kgqoe(%.$ +,12 /A 5/->9gd:#T+A)7/:*-%8,ޟ/TTb7ӒŖ&'6= %&=#HO6F<?C EQ6ZShcMhd:_BF )n:vIH47&*.N3#5#3:>7#".535+3%'6527.'#\FK "($+%* K 44+4:4[[[*2;-#ȹ8>ĔܔF E-,  )&* './  (.)Bb<_2d!:D JDR$!%<@%35# %&''6%&'3##5##"/326=!5!5!5!5!5!&'#3&y.E"wh'P;RSB6ZZM(N'pi!'cI924rDC$'G:Iy9zo^g,?+QT+C)S#0+?;32HHH3301 o4@ 385%HaMT!(/?LA9C ACC,DP*N5 %'67&'767$7&67eGDC\\CGGh[03F{:y߇wOEKii``miKEP85[~+)14:@T735#5#6'>7#5!###3+'32654'67##!'67?&'67&'767$'saŕ >>K9@LTT AB/L7Mw0(ȁ6')`}99=BPQE=.G|SGb 5 A??TM!`495AQKP]7?Q8;+B,KB6.A9?>#*(/1)#"">76@2'%$''67&'767767&''67&/y|eGHB]]BHF*i3Zz0RCFFeeFFAT]SS:5GKW8JFDU8bEg5C-S;9Aj767&''67&%767&''67&'767!.''>5#&''67&'767!5!53!#&''67&X+;84$7$30/!0IN'BB0*@33"7+MX&ND6<-D:5*̻02Ԑ[2':(427+MX&ND6<-D:5*RB2':(4(5$7#//0*B='>.>M4!*,2*3--1)4 :-$4$&+.3"6#;.'!2%+,5σ-F"ed"F-Ã1"82 /13"6#;.'!2%+,5AddA"82 /'(61,2+#.;, ';O~767&''67&767&''67&767&''67&767&''67&7&'#"/3265!#!#'6735!5!!!&"68*5)-'*$=D%A3*:"+D-5+-'>=E%<9+F"68(5+-'*$=D%A3-6"(F(5./'F=F%C20#7v$DxP2 JKjA8;v`vI0'*-7+#/%5#3 *0.1'4.&/5 7#3/0''04.#/%5#3 * 0.(/.1(.95$3!) 0?L;%O)A(AKA5V&0"AA$p &3#!'>5#5!5!3!PPhb3ZSE'N&g*:(tD%%'+367#5!53!#&'#'##'>5#535#33IS MJ0MMU5IXL;!7׹Hq'RDDEE{_)/D%7 %OS!#5!#!#5!53##'65#535#3'67#!!5!5#&''67#5!53!#&'5# K?KKHAGG6==6+DZ,T"z&k&V 77,05(>%a%OX@<&<="+H\//:ϝ{]']D%W3F^@@)""730"9*5Gl@GG@0*:5:(,r<<.'!53!!!#!'63AO<4NVM+DF!>gTɇ<6N :%67!7'>53333!3>5!!!&''67&''#S+;0 7> JjFW0(a1hXt$|\^!SW6o3Ht-2-aJD>8hן'BAω^8@;bd9B8\r6EWA ,C35#35!35'35#35+367!#3##5!536##'63333#3Ģp E KL?Lg!Hh ,@1I\F=!svvvv:'4K5#'67#5!5##53533533533#+5#!#!#&'#5##'63333#3,_ AAMbKLOOLbT[LcHh ,@1I\F=ssCZuCI;CRRRRRRCAICmbCbr{fW/6JD>:0 '$7!53!#3##"/3265!!&%*X"/nt?yDECDZ+C0|2'!!!#!5!#'67353!uPA7MA~BKPFSDQD{k*:<#'B7'67#'673533#67#".536723267"3wPR$E=E GLISKXLS4525N1 ##j&I 8/C*k_*CCC2 %)'O5SCGIU#* )A.7&''676767&!!#5!5!5!'67353!!k;z7#.X-\NJHNFZzP<,:Dr@LPW,q3(/ Dwf BBB@<)s+/{{A '.%3!5!!5#67#'67#'6735333533#%qhV,MO[S_> A3C4M~NFF7C 2D )i`966D*< &!#5!#5!53!!#5!5!5!'67353!!M4MP%zP</:Cr@MPWהj}CCVH(?=A 5&?%6!7#67#'67#'67353'6!#&''67&'q 8~hV,MO[S_> A3C4MM_hDA@c[6J#67#'67#'67353'>7!#"/32>7#'67#'>7#pG/;BLWLWS? B3C5LT2@gI Ene0 !ϕ/'f'^0W&dCCC@DgbG'3Jn -@`5 F (o9jUЗN9H凚'=%!!5!#535#'673533#3##67#'67#'673530)EO%HNf+:H%MUDUL7 A3C-MDD C]T Q8DCqCC SCi`96',K&'5!.'#67'67 73#327#"'#67#'675#'67353iMx3P[g .#VV »00 AB!e<+,@K@PHO2@0A)KWh C,Р%AACDAAhaBmN5CBaCgb)D;DJ#3##"/326=!5#'675#'673533#67!5!535#53533#37&bbb&Pb\&lD#M4j8n< A3C2MppF0lN2_G4NpB[+C0/ fC i`96C8pCAkkA2QT1\-@U67#&'7#6!!#5!5!5#'67#'2767##5!&'767!5!53!#!#5#&'353!!iV@H 7B.7G7aPa+3=h=04HAK(v#8/,B}P9Y?'K}g0 B: PT$JL63&+#59AA]0''Pi<4=N(1@FF@L.ڞOW+ 3"??>' <@35#!#537#537#5!!!3!#'67#'673533#675!\LN#4UD"KP@OH1A0A(Kff!@||+c+|=iAAiA" SC gbF'C  !<!5!'6!!53%5!5!75!5!!#5!5!5#'67353!!vg]-6!Z'>7#'>7!#"/32>7#!!#5!5!5!'675'67#535'673#&'#353!!R76dd..<)VK *+R 6)  DoglPV*7?n86e(m5e<[AcDI3I<; Pqn,0EJ0.&8 &$5? 9dFOCCp8/*^t mRAR\ (ZZ=2 J!5!#5!35##!5!53!##'67#'673533#67!#"/26=I̱C69L G@K@POH1@0A(Kff6/CCH;0]`+CHHC RC dg'EBW(E-=$%67#!!5!5#535!53&'73673!3#33#327#"&''67&'#67#"/326='675#535'#'675#'673533#67673&?&3 o awE E JN.&F! : ,#@WnkQCA ;R3 ?5O,T+&FKIFGBR/?0@&IKK!) 8A o/6;/6n*22W??B;?A(53 $!A?;X2A"?7_PG--5?1:JC > P.=1 @MA5(!lwB`iF'C / < @C/+,<*89J5!53!!.''677&IP}Ѱ)11ӎ)2hB5LFFQ<@珏@F,0#W254''67&''67&'767#"'52>7!327>75#"'.5!#"/FUs{\;OJB!(D(J47DRM@A7SSi  &,683 O"%!K>8D  ;Y8?>dTH+*@&1@8":1??(TCBjEx>799EHE&,,e D :-3!!.''67!5!?&73#'675&PN% -f()j0 2VQ3RA:.KKCWeQ/7FW>AۄC>VF1OX0Y9$d^B)'*E/.r+07%3!5!#53#5!#3#254''67&''67&'767#"'5 ,FXpW =J DD!#D6+86BS@A7SSDDBBDDB>:^9@EcVN1,@'9>1"-05;)J?垇B+0+=3'3#254''67&''67&'767#"'553#53#5!3#34#uFXpW =J DD!#D6+86BS@A7SSf#rz{bgpWHE%8>:^9@EcVN1,@'9>1"-05;)J?垇B.DHE%DED0%5;A254''67&''67&'767#"'73.''6567%'678KVdP :8?8$C-S0?:`SL/!@%/-S0?:`SL/!@%/-R1?:`WL3!@&3?7"5+5>+?$?bD5Yx<B0+Q%7&''67'6= 7&=67&254''67&''67&'767#"'7@/3ALX=@59=4.:32:6C@PEB 9JXdP =5B6$B-R1?:`SK0@'-7###'>7#'6735#53533533#3?k\ kKiiii9JXdP =5B6$B-R1?:`SK0@'-3e7%CRRRR펙*3N%5#254''67&''67&'76767!#"/326!!+#'#"'79JXdP :8B6$B-R1?:`SL/!@'-:^9@EcTN4'@&7;7"+66>)N?䞇B=B8;%!5!#367!#55!254''67&''67&'767#"'7^K MM^9JXdP :8B6$B-R1?:`SL/!@'-:^9@EcTN4'@&7;7"+66>)N?䞇B;9AGM%'67&'767&%254''67&''67&'767#"'75!53!'67?&pdT9H1JO4G9]a8KVdP :8?8$C836:M="&-CAN-yG?E5pX6ZP^B?CR^VTbQ@AB>-S0?:`SL/!@%/-R1?:`SL/!@'--R1?:`SL/!@'--R1?:`SL/!@'--S0?:`SL/!@%/:^9@EcTN4'@&7;7"+66>)N?䞇B0 J35#5#;5#535#254''67&''67&'767!#!!!!5!5#535+#"'79JXdP :8B6$B-R1?:`SL/!@'-AA>xH@Yx<B7@Q^!.''>5!5#"'73254''67&''67&'767!53&''67'76'67&'ݡ$g**h 2#="&-CA!8KVdP :8?8$C-S0?:`SL/!@%/:^9@EcTN4'@&7;7"+66>)N?䞇B]^KU1?0˄!C3C`'0 /4;A!5%!5%!5!254''67&''67&'767#"'5!!#67%7&gggFXpW BFDD'D9/8:^9@EcTN4'@&7;7"+66>)N?䞇B?Z7-V=GY-R1?:`QN,">'-?<"626D-MDu*Bn>>}AD 057A  0Tl9Y8@20 9A!5!!5!#!!5%!5!254''67&''67&'767#"'75!#!}}KAA9JXdP :8B6$B-R1?:`SL/!@'--R1?:`SL/!@'-APB5 +BB>-R1?:`SK0@'-CC>A:]BC>-R1?:`]H3#@)3:9"/-2=*IBYx<B1%GS254''67&''67&'767#"'7'67#&''67#5!53!#&'3!!#!5!9JXdP :8B6$B836:M="&-CA11]! >>1.;2Q+$O ]N,IT$O'O>-R1?:`SL/!@'-Qk9fKFC\BB< 9f#3&'&5#35'35#254''67&''67&'767#"'7%#".'##5#'>53&'73&'73673327-9JXdP97?6"B,)60?@"&-CAaKI74.0#D+y(D&%E.(F ,5$ o0m?%J.?>-R1?:`]H3#@)3:9"/-2=*IBYx<B^o' +dQV:>"JCSSERKeO^MN0 :W5##3735#35254''67&''67&'767!!##"'7!67.'#67'67#5ZGU9JXdP =5B6$B-R1?:`SK0@'-AA0 P!5!#6735#!!!!5!5#535#'#"'73254''67&''67&'767!#3#3#\78C<K[{\ o5Ϲ&/7;1-CA!9JXdP =5B6$B-R1?:`SK0@'-Ke7E@MM2?tinn>-R1?:`SL/!@'-,6K6AllllAllll.>-R1?:`SL/!@'-<0#T######367!5!!!#"/3265254''67&''67&'7673353353!5#"'7afGfHeJ v  -D. D9JXdP :8B6$B-R1?:`SL/!@'-u*B0*[%53=#'67#5!7!5!3!!#3#.''67##"'73254''67&''67&'7676n ?E)`P V P#Ku L%D)H& /$-CA!9JXdP =5B6$BCfB6E;r |rxJ;2u*B>-R1?:`SK0@'-5#7#53&'73673#3#5!#3735254''67&''67&'767#"'7%5!aw $d4!X7P'A+liơ$"D*+."F"ҾIAIC[9JXdP :8B6$B-R1?:`SL/!@'-5#735!53&'73673#3!#3553533#&'6?&'7:E :@)8)8$?{A~E%U&EH}`MdT0|9Y81M_:.:72uWWӤp' Y>Z"6uv2A$[]YY?1,8:<51.?Y0yYzFFY<}w@<\alFS]0 '+/U5!5!;5#!5!##53!3##"/326=%!5%!5!254''67&''67&'767#"'7=KOFACH"G%Q_kk9JXdP 98<:B9(66F>"&-CA>LAz}BC3KK9K>-R1?:`OR0"@$3A7"4/=9*NDYx<B9M]!5!67#254''67&''67&'76767+5!.'#67'675#"'7!!5!5#53533#wUB29JXdP =5B6$BHZ 6)-CA)b(MDz@JM>-R1?:`SK0@'-)|-"?9A %T?Bs??K>DD>8-QUY%35#'#"'532>54''67&''67&'767!!575!3537&'3#&''##!6#55!5!}65/<;! CP_I 4138$C:)7(4F<khI.%.9$"J=1W+*^KCr y//HC'jR1-H-?9UTQ,@ 1@>"62==#A4KFC0Cd#R>F_F}%,+;3??@@//U_35#3#5##3673#35###35#5!#3#"%#"'532>54''67&''67&'767#326}}EI\K a9H@En+65/<;! CP_I 4138$C:)9>ݧtI'BBfT+äC'jR1-H-?9UTQ,@ 1@>"62==%XD^o2 _!5%!5!735254''67&''67&'7673533533#3#!!.''>7!5!5+35#5#"'7kkl9JXdP =5B6$B-R1?:`SK0@'-5UBa==aBV4>AWC-./Yx<B *9 04JP35#35!35'35##!%!5!3!#3&'73&'7365!&'67#53533#&'7QxxxxxxxL 3B 1J/?(W >& 0,l0|9Y81M_Md:.:72 LLLLL8Ld,KE==<}w@<\FF lFS] - (3v35#5#;5##35##35#.'#667+53#>7!254''67&''67&'767!!!#"/.''675##5'#"'7pp sppmyww=G9+ ],D0F6#299JXdP 8:A7#B?-!RC &(8s-.rqw?"&-CAohhhhh$#]]] ( U~ew<@eDH>-R1?:`RK,"@&-?=".<==%D B$ HA e18Yx<B >  ETZ`d3&'!&'!#3735!5!#!#5%254''67&''67&'767#"'73&'!#'67&%'65! ://n?=2=?|BY|NNq9JXdP :8B6$B-R1?:`SL/!@'-775!67'67#5#"'73254''67&''67&'767353!#&'"7&'75!!#"/326=hhA1-vxhhhxl,AA%% 35 8#E3*; 7<"&-CA!9JXdP 4?A7#B=45P+!7-2 .&;J!I>h"GaW \\99\\\e5pY #"Id bK*-4$4Yx<B>-R1?:`WF)%@&-?=".<:E)NN7((^J P)$4$+ >>II%B(?7 im675###3'3567!##3#3#3#3!5'675#5#"'73254''67&''67&'76735335335#5!&''67&'7@E oDIB  1Y(B55<"&-CA!9JXdP B0B6$B-R1?:`SL4@'-do{67!!5#&''67&'7#"'532>54''67&''67&'767673!#3&'673&'673&'67367'>7367".5332>7&'7&'77&'7&'7@-`%(,70[6ZfJAQ3Z65/<;! CP_I 4138$C:)9"62==%XD(5.#,#62*3.#,80(5.#,6=8;-*= =;-*/w*E,*2$&3$L*2$&3$(9 #'+04JP#533#5335#35!35'35##5!%!5!5#!5#!!#5!&'67#53533#&'7tBi?xxxxxxxM 0cncI 0|9Y81M_Md:.:72i;j;;;;/;,8TC;;;;bk<<<}w@<\FF lFS] 1 ety%35'35'35#35#5#'#"'532>54''67&''67&'76735335!#"/3267#'67##3+&'#+35#56!+67?&ӛDDDE:XC0:6% ?JUG *2+3$B0#7JO +1" P K;,aoA68ZI5J 4A"(= d2,GK`:-9j(X?+?EExEE3Epo[5iB !2P3-*B,>4R^Q($@3=A"(<;;%$YY2l_9(L>f12`7XRRJHNo'X;1.`=e]Ys-=4A1l93?7>5@)&''6767&'767!5!53!!6767&'~UDdd4mU3//aVPdg{[H>D3% 3&1 D[Qv4&)YaCxxC|oQG-lC+128>DJ7&'!!#5!5!5'767&'767!5!53!!677&%&'767%'677&I _P_`$?\7"9*vPp>Q ,ZVCq~=Z-b7qU!Us/W@0@"tT%TepMAAI ? Mb-&>6?TT?QV 4Zlx 87AD1L=5@6D6.BE-G88>9>F!!!!!!5!!5!!7&Z41''2aI5RFEFFHEP6[O3YF!!!!!!5!!5!!Z4,,FDFF;D $:.%'67#535#5!#3#6'67#'6!&']&wwXnnC;+8Mz:JK /]\/`~BA+D )DFFD@j6缃2 0=E̗tBl$63'67.'76!5#3#67'67#535#5!353!#&'m)eJ[J'~|?sxxCN]&wwXNSb&gmG>DYP̉AEBA+D EFCDҤUI>OZ`"<#3#67'67#535#5!5!#"&5#'>7#5!#326LnTTQ +Daak&+ H$! ],s6Xb/f,1D A<,D DF2DD,IGR! DL8-qDDw# ;"//=!&''#3!#"/326=###5#67'67#535#5!73&'!5'6jgYNqdP8+MK Na^ Uddn,P?/~)J%:Vgg7U*E+p7# DA(D(EF?x?+'79&:;'1.E35#767!'>5353!'67#3&''67&#3#67'67#535#5! B7R[;m5/,M +>#Ekcqqg[mdd6 .Cccm&XcԺ;\ޠaaCLF 8:ArS+B-ab,B'XbD B?(C DF!8(,%!5!#367!#5#3#67'67#535#5!5!uK MM |uuB: J7ss}Eu9@FQ O=@DA;/D DF" 33##3!5!##"/326#3#67'67#535#5!HH1V:%Kg,%qdd\ 0Bddn,4DDqV)EE"A<,D 'EF, D#!#=#2>=# '67'67#535#5!#3#676#536533#"/GHm@F< y 04XXaQQQA@ XYH !!(M/?+?Ce1@-q+38:(D&DFFD=]FZ7d-E! G " (?!5!&'#32>7#"&'#67'67!#3#3#67'67#535#5!m H BY9ni_M vpp-N V+ss}@7Q6CXFĹ'BK!B5RCDC@)E DF  D3#3#3##"/3265#######5#67'67#535#5!#33!3#__^^__)D% _H^H_J0S< ;6ddlbV-A00%%%K+D3zzh( D6!E*DFF)iC"/!'-5#3#67'67#535#5!%'673&67$76$7Vudd^ Uddn0 %yRW55o5sE# DA(D(EFp>qkCmT2[`1g1i4o5#:$;##"/3265#'67'677&#3#67'67#53#5!CaA+ $2B[*F H2oBn2 EL5F3{nn(K \ nnx@DV)D+DfU% :7!5!5#'673533#GrYY<4 @/aak&yK%YO8^%o/"'5C\*J NDA<,DDFD?v\P6?@SDaL% 9'uuC"46!!5!5#53533#!!5!5#53533##3#67'67#535#5! OOqddF# lddn,AA@vv@AA@xx@EA<,D (EF#'*.8#3#67'67#535#5!3!53#53#5!#3#33'>5Ok^^6P 7?iis)yuu^vv/DWJRa=aEDC?*EDFDDQD DDDm>/\[.Y! "4835#!#5#3#67'67#535#5!37#537#5!!!3!5!VMNe[[?) /Addl CT}||+c+DB8!D *DF|=iAAiA#  "Q!5%!5%!5!#3#67'67#535#5!#"'.=#'67+!#327>7kkkmvppB: C=ss}@3J 9K   I kkggAA>x;>:#EA;-DEF;2:>X#3#67'67#535#5!7&''6767#5353!!67&3'>3%"#"&533267<Eg``8> 3?ddn">[O=@"1&P ()1J]`5WQJB <J E!EM5E EF#s'&%&CjkBYYBt[ GѲ743\65B! /q /":Q5!#67&'##"/32>54''67&''67&''67#3#67'67#535#5!aZ #;64AM?_2["!%BK&(*_I!!ׂ e c!Mc ^f]]D2 Wddn!BBD[0nRȃ@v2&Rda!B"=@$_?fA9rR=Qr/.A3>LtECT.C"EF"A V^t5#?67!3:>7'%#3#676=353!!!"#".='67'67#535#5!3'>73267#"&=$q# U(#( 4jbbA6M''9 60,94/ q09B% (Gaak"HWj%WG ',FV)cr0/4 $Du6;5AD7"$)>f"EDE/C DF.<&{u$ 'v..8  E#'=%##33#3##3#7'6765#535#5353'>7'67#535#5!MMȼDeSSQufJ\}5OSK] @.bbkD~DAD; (9;AD_T:1kP95#D .DF',B#&'#'67#535#5!#3#67'67#5353!#&'#'67#5353Q`:A7%$K(N~ "BXXaQQQ# u/yKԊ6u1O2M765#"'.5ݙv8j>$a6\O O *X H <"%8=&$> q$a^$P( !g),1"!]L$%< [:D==D:N<^8B8yC1E<+'M#*Xd"" E*DFFD D64DE3JPE4JL)Ҥ;+ DDBssBD dW!  L35#5#35'5#;5#35##3#67!5+35#5#5!##3+!!#5!5'67#535#5!Ź{b[[?)I7X7IN㋏ /AddlHHHHXX;SSSXwD:KZEEK@xx53#D *DF# 1H3#3#3##3535!!535767#5!&''67&#3#67'67#535#5!MMpA'/5 0*HCRSSKp$jGAUUU*-~ 25[[d zACaBBAMU;HcBB[F,B+VJ7;1IPDB:"D 0DF"% #-KUb%&'!##3#67'67#535#5!67&767.'!#5!#3>7&767&767!3'67&9G/G=J_mh<%6_\\9( ;6ddmM9K4EN1K9M9K4EK3J /KKI H+K:L3GN1J9}2NW7$A+XIG(907,=-6DDD3$D&DFSc^I\`qbSc^IYc!:b,, NRPf\K\`q/&77@/';."' $N35#5##3#67'67#535#5!5#'#36!#"/326=#'67+#35#53533ڄɆdRPP6~ F"[[d5h~e95X8 O= FJgL~)\!YD D6$D /DFըk)W'D+,"LE7 8O#365335#%##5##5#53533533'67!53535333!.'%'67#535#5!#3#67`LIJJI"?ML<:!a'+y >1aak^WW(Rݻ[[[[CXXXX@LAPPAM@#VVEEFFE*FL/ )9MWa!&'75#75&'67#535#53#3#67'67#5!&'!5"/326=&'#!&'67&'6FII'??'??'Bp 1/SS\KKK"+y~w%ZJQD7 'B7#'67#NLMiLK񧧧1 B y~R;/ Sbbj\R jf =1D (33 [r3_ TYU,,dgg;dd;gh]! M3B8!D8DFF#/B'!+1~\t[.C3bRq8` #; "(.7=C%!5%!5%!5!'#3#67'67#535#5!'67&'7%3!#367%7&gggs{uuB: C=ss}E 2jB=EZh6lWKNΦb%d\m$jNNKK9GDA:0DDF1Km#yNnS-Xk44H396?O5FN\IkD B5#D )DFȢw44w>}91/: ?-.%,=<)%,=192#=>[@[=}> " "(.4:U#35#3=#'#3#67'67#535#5!677&'77&'77&'77"/32>7!!#3#3#qspii'B 3:__i&'B&> N<M &:"p1b]I10b_\\XA:/7D9B49AX>_?(4>! "(J#3#67'67#535#5!%!' &'%&'!353#5!#335!5!5!5!673!!>`[[?) /Addl]T"C  #C$KKeKK-G*hDB8!D *DF*A:AO:ZRB$GVRJhϣ55?k=kthf=k#4 "T35#7355##3#67'67#535#5!!!5!5#535#535+535#5#53533533##3+3#3#ZZZSS;/ Sbbkui*IllMMssIne66eeBDB7"D.DF??D9?;:0mCIIIICm0:;?9 @2j#3#67'67#535#5!5!53!&''67&'76'26367##3>7#3!53#!#"/326=#67&'7.'=_[[B" ;6ddl N;'306*:7HU'DDI:'HL6&I HH 5+VW "WH>9(?D D4#D&DFNAWWA2('/*#/ 2((0+'@OL! B"COG -5nc# "@8g3#3#"'532>5#'6#5#3#67'67#535#5!3536#5'673!!'67#3#;#"&'n"70 V)'7*#@IRR6~ F"[[dbNT@@ +o1Y.F :=L~~'D*(hx$D1Pq H <^3c BD D6$D /DFDM~Ym18'0.(C11CPA4GA CETbF!4 G67!!5%!5!'53&'#5!53!#3%#3#67!5+!#!!#5!5'67#535#5!$oww%UN ] b[[?)KNֆ /Addl:63/:BB7=i?+>?RR?54?D<9.9A~~10D DF#/a67#'#3#67'67#535#5!5!6=#535!53&'#53&'73533533673#3!3#!!.''>7bSSL @.bbkR>!6D\D6&@K{im*-rk!>K@IE B5#D 5EF= :;I>;6>88>7:>H>J;D<;n67#?67#5!&''67&33673!&'#5'67!53&''#67'67#535#5!#367&''67533#33/ +C*G"8,]BYmJ>  $8L`{35#&'7#&'#767&''67&767&''67&%767&''67&767&''67&%'67#5!#&'#!#!#!!#3!5!5!5!5!5!ͦ8%/R/*sE4./"21BM<3,/E4./"21BM<3,PB61/%21CK<3)3B61/%21CK<3)c`ӓn KJKaCu6 C:K%Kk"; +,'1+,'1+ ,'1+ ,'19#5<<(08 ^XXX67/ <<;768"? Ffj67#!5!!5!67!#3#6767+!!!&''67&'''67#535#5!'67##5'67!3#5#&'5!1TTZ@;eSSF#R<+OIq@fm~I; !+"3!D DF66|b .Nr:| ,10.""< #'>bt%#32667##!#"/326='35'35##3#67'67#535#5!3#3#3#3#"&535#33#53&'#53533#3=;p  2F'0 0-jWRRA{ 71[[d!+-*h-KMM {K}HB& %A8P)5jBCGMM>R'@VV@G2>  5H{35'35'35#35'35'35#67!#3#67'67#535#5!%!#&'7#'67+5367&'7#'67+!#.'!#&''67&''67BJO0SZZZ > 46]]e ^XA+$5HA.L@(FA-R$C.GT:)#e0Rkq$csOL%7;-11a111111a11114G!%'E D7#D ,EF&(42&*'3"5(*;jD"X82(K 22728?9@82)J  22728>  !+%7&''67'6= %&=67&rAJ/D jsl[HO6F<B:&EQ6ZSnvPWQ"ED bhd:_BF )n:vIH Q  28k35#535#5!#3%5#35#;5#5!##"/326=#567?6527&=67&'7&''67'67&8Aoywo88q99u('5*>"<'C:, 3+)/095+.9&; z==7&)8 5#AAAAAA;nnnnn>>9?9 @?KjxO#KNBE%m8rH@  LU +//Egib8!S( 0%!67&'67#5!!!3267 #"&5;hCDHDDm U4k8A H %!]1q| E!gC6[CCV)# ?2=D$)"A<!<%+17`#536=#53673#3###'>#6&'7#3%7&'67#5!!!3276747"#"&=`dX(G"gPSSIa-18(&(#E#Q[^@=4A4&7]  A ?!D1|: F  "&*KQ#53'35##33#3%#6#!!!#37#3276765#"&5'>7#5!!37& @{{$5L30$yI1&&%% ?F:/Y>,)@&7#"&'3#3!#535#5353!53#3#5!#5!8 uT_0Zc[%u۟噙N'FY* E '#%Q.YKMMPL"Lv r!2*.'(MBx7ZZZl@y77  "$302*?77????Zgg -2 #U]%#635'35+335#35'35#%7&35!!33276765#"&5'>7#!#3&'736!#5##$yqssssssss)>,)@&GV ?F:/TH_$F$` gJK`VVXXXVqZZ6Sm{)89C1V  W;8&C.WA&K:4z,,&@%&'7#67675!#3'35767#767#5!53!#3#3#3#3!5'67!67767!!!3:>7#"&''>767#53'67'767&35#&ZcY(r uT__: %*#P8!9j8/'70189Qcz 3!e>* E '#%Q.rND5'[ ?3@.'(IF r!2//// /3 "%?@@? //)/*.4-@V(, &5LE ;h 7  "$302@r}7+#D8 $+.2'!5!##5353!533##=!OOOOp@BBJ@B7<8<@D#5353!533#3!3267#".=#'>7#!!##57!5%!5%!5!ՔOO67!!!67353!!3#!!5!5#535#''653&'#5!53!#ha0FOAk1;4?;NhPl!:E)VAqIKg*KK?p=CC=pW>%p;?@A``AC<'(,0R35#35##!#!#"/32>7#'67#5!6?35'35##3#67'675#535#'673533ۙK 05;nPBA.;M]]]'JJ_||AC3C7K]Vx~_$)/A_gd:U?/~~6xA B=*BAjR::#' .T#3735'5#;5#3!535#535#'673533#3#767+35#5!#3#5#3!! ''67&``E_`__ֶᥥcB7F TMF7 +\GE` Eџə0_1[-7cccc:]]]gBB@RD 3/A@.C.6BrN??NN@i@0+Cf=.8)74# +#!7!5%5#)5!%!#"/326=!#!'>5KHk(Txs*K_@<0a@=A#V)A*"2Sƨ0C 7!!=!!5%!5!%3!!#"/326=!#5!#!5!5!533&'7*gXg'Uxs*NMQnN%:4RTxx::xAZV%?*jZASS!,-qw 3%!5!%!5!!5!%!!767!5!!#"/326=!#5!#3&l.E{fE'Uxs*KM?҉:{‰{/$H@6AA/QV%?*n$_ %!)!!!!%!#5!#!!!L!$*NrNC""K  C@@g9!5!5!%53!#5!#5!)5!LgOOgd?C,@@qw !5)!=!!7!5%!#5!#!#LIOLO"ﮮB?8?qw1%#5!#!53!#5%!5)!=!!7!5LO]L]OL?c||?AﮮN  2#3735%5#!35#2>7!'$7!5!67+!!!#"/L<'$T!Le Ms (/'I ~~~~6xxx-`gc?W?&'_*#`zR'AF -1%5#%#3=#%'>7! #"/326!!#!#%#3uc7EoM &*&DzB JI8͊5Jo 3:ǟ+ DP3-F_5N  )%35+35#3735%!!##"/3265##5!#`~~F~pm'V {,JMBGEW'D+I9MC (35#35!35'35##35!5!!3!3#5!#FubuKKhKǚ:cjBBj&y66l|4 #)!5!#!#5%5!)5!5!5!'&'7&'7'67MMcH<=EE;H9=FDFkIHJ25F5A>{ambbq$ 1 +35##335#5#!#!26367&'7&''53533llllHlllllM c>O>]*-KL3Mӳ7P)>?B> o'PC%B||B?/ 57!##3#3#3'3#'>7#535#53533#3#.'?6H<<<<<<<&N }k&T"*W@A>7pEDDEl:>,Z\<5 83#3#3'3#6!7'67&''!#5!67!#&' FFFFFFF@k4"h^%+*%HY\6J |AN&TnA ,' eA?e`E@ 5ID̤XL>N^h$ 25##3735#353&'#3'>='67+!#&'L5EFp@D?|]hNӈy^Zvv:~v~~F,>8-%B#gjC4EA_V_AE1:< 2#!%5##3735#3567!%!#.'#67'67#NjLXH*pl6K`e">n VUx``:c`cc[9FFA$J>L*?*{#@>A  ! 5##33#3657'675!#5!#5&''6=3F$C';@"0KJ/>V5t3VaK`N!!Ax!7Ǔ n66P~h9R oh.D' "67!!#3#3#3'3#%&''67###535#5333#DJHCCCCCCCo;+D16B?$F%,PPC@((A7#'&''76767&'767#J@MM $ 0DA$ ^M+  H T\1?K;l}ygggg;ddd,U,+l[&Cipq5:#&D+@)2B*%Onn_ ?/ !'-57!##3#3#3'3#%'673&67$76$7?6H<<<<<<<g%iI{x|55 o5sC@((A6k>glCmQ2V`1f1i4o5:; @#!#5%#3735'35#'67##37&''7>7&'767!5!53!#%&LLLycb8F ?[T="G9 -W3P.b0&,z,TTTT8S`gK<,SV&]e'%Ah45#5%?TT?/t_ 4 : /7%67#'5##335#5#!#!63&''53533$5]8llllHlllllMw4H!BB^2YCa$Pl/۴-E>?B> 0=Eɒu@jo+B||BaE"*!5!!5!#!67!!5!!5!!5%!5!#!#5OOSvN&NPVZ`)6 5!bgggg6b+\+ * 59=A#3!35#35!5%!5!#3#3!!!#5!5!5!535#535+!'!!=!35˯R\ ymPmy LL]]ddFF4F]?d;Q@~~@Q;d?]1~FzFFdd<; <B7!!#3#3#3'3##3##"/326=!5!5!535#53533#3&'7<YHFFFFFFF>^^^&Pb\&h߿O5QS3\C@((ApB[+C0BpCAkkAG1_F2N A5 $(J3#3#3'3#&''6767#&'!5!#!#5!67!.'#5FFFFFFF?5/&#P9 9bNQs)M HYnEH.Fd\& M((A;C:##1sE^ Q1><35n @o%&@{WF7E5D4 &67!!#3#3#3'3#3!535#53533#3!535#53533#DJHCCCCCCCLNNC@((AAA@vv@AA@xx@)# D%5#!35#35#3&'35# %3673!&'#5!#'67!53&'735#**vMv*f=n8#F1~:)MM):~)!C*.u]]]abGMMGaa-? ROCLAgTC,,[CTgAH.;R (E'+048<@D35#5!3#!!!!!5!5!5!5!5!5!5!5!5!5335#5!%#3735'35+35!8jj\\>^>PM|LLZ10b:`.1.77.1.00:-5H}--Xe0000.00<<9% FL3#3#3'3#!&'##"/3265#535#5'67'##5!673&'#7&888::::|LXPMj@*GA! 8Y0>8j/G,tMv4-1:[D=C((AwIa_AV(D+A&&=fs$@ciE##,"$< 37;5##3735#35#535+!#3#3!&'7#'67!537!5!!5LKN)6a!xNq__9b_bbq,, 5 -D[r7!##3#3#3'3#767#5!&''67&?67#5!&''67&767#5!&''67&?67#5!&''67&56H:::::::+<- '(25L&F/ J&Y4(22;5: ) $I39Wn?$ @[ t#/E4=2T/%CF JJ \M z 1?dp *>fFD^ mL%$,  $)-15Pc35#35%35#35##5!35#35%35#35##5!5!5!5!#3#"/32>7#6735#5!#67'675#5353LܘLSS{  %;VL"  c9%Go$77BD0]//-0/b4a55-45gAA@@tAAL,O^E 7wuB4G 89V433 9@ *3?Gf7!##3#3#3'3#35#3!535#53533'67!5!!535#5!##5##&'726=#535!5!#3##"/9'F9999999MZZS.>ZaDZFP(773)#'Z722.7C@((AVlO1441:77:!'%885W771331 -E@$9C !V81::18m6"/5  !%).26:>GKOS[#5!%5##3735#35#5!'5##3735#35#5!'5##3735#35!3!535!5!!5!!5!#5!#NyLIcccc=cccDcccc=ccc!O..fbL6LF{))%*O)N**{))%*O)N**V{))%*O)N**<N.A)f6QipDDmY)EXDDlc%1=A5#'7367367!5!353!!3+&'#'67+35!3#6?5#\̫ 'D)*VMHabMa]F$%UUILh@C 7.A-YYAXϋbC^fCj1X7367367!5!353!!67&3'>37#"&533260%$+fG>WN<qL D9*UP"-v.JYZ7SMIA <J hl=7 #q',!& (E_6D  7.A#YYBfh Cϱ644\EDD/q 0.=p7535#'67.53673:>7+!#3#&''676#53&'767!5!3'67#3#;#"&'3MA=#%MO()H7570 HI0N-hD(!MH%?[>4<8S6Ij(>m4Z54/"An8("Tje6<9A  .,,%@nAFR6X.N^=A75!53!!'>7'676=&@*-dO\?>L>13 :?ZA*1q&@PVVFQ65kR#E$-=!3267#"&=767!5!&''67&!!'>7'676=&'75!53VQ)L<b*+C)()G%;R~wB`Hzuxs\7=I:/1 1FUA8<<0&iO8Ff<LF.K+(* &'TABb??zM4"?'EB*?!4C]CR65kQE",>NbT'F=VA`67#7!32>7!35#".5''>7'676=&'75!53!!!#"/#3:>7a10, V,B+&RLCGNG*=F:/1 1FUA8<<0&iO\ &'4]40)A(  z&&+'<,06 $'$O$+N65kQE",>NbT'F=VVC-2:=!5!'>7'676=&'75!53\,@'Cmlyugb?E5a`:f5=86-=I:/1 1FUA8<<0&iOCRNbT'F=VA/M'6736733#67"&53673267!!'>7'676=&'75!53CE8K{}Y'KLS-dh,4E$!\3=I6/1 1FUA8<<0&iOXB hD$CI$R_9f3zE358>D" @AR65kQE",>NbT'F=QA .!5!!5!#!5!!!'>7'676=&'75!53wwM\7=I:/1 1FUA8<<0&iOBBCR65kQE",>NbT'F=VA<'673&''$7&'$'$!!'>7'676=&'75!53[!];=._u UR\7=I:/1 1FUA8<<0&iO\j?D=[^:G)h%C#].>z%C%9;#C#CR65kQE",>NbT'F=VA I67!7&7&!!!&''67&''67#'>7'676=&'75!53edBF4 \[rKtrÇkQC43,~K=I:/1 1FUA8<<0&iO>YQA+I=DD LAIC$>kP95BNbT'F=VA 1%!5%!5%!5!3!53!%!!'>7'676=&'75!53mmma(q\7=I:/1 1FUA8<<0&iOć>BBSCR65kQE",>NbT'F=VA!?5!5#'67!!!!.''>7!!'>7'676=&'75!532=:f5H ;s)-z5\7=I:/1 1FUA8<<0&iOC`D-z&!AC[0@*WV*@2YCR65kQE",>NbT'F=VA -K#>#!!#"/326=&''#!=!5%!!'>7'676=&'75!534RY& }!>fV! %Zy9{%K @\7=I:/1 1FUA8<<0&iO1~/ElAAPB"C "D#oJqJ0AACR65kQE",>NbT'F=VA1%!!5333!5!!3#!!'>7'676=&'75!53'(vM:\7=I:/1 1FUA8<<0&iO BBuBBCCR65kQE",>NbT'F=VA\35#35#!!!!!!!#"/3267#.''>7#'6735!5!5!5!5!'>7'676=&'75!53Ⱥ\3-#,*- p+.w I'+NbT'F=QA#A%!!#5!5!5!5!5!53&'73673!3#!!'>7'676=&'75!53NI$ʾ+#F3(.,G .I\3=I6/1 1FUA8<<0&iOBB}>z?R5NOGYAK?z>AR65kQE",>NbT'F=QAI&'7!!3#!#3##"/326=!5!5!5!5!5!5!'>7'676=&'75!53Oj-`Y#\3}}}#M$k_#% 5=I6/1 1FUA8<<0&iOFD7NbT'F=QA "@!5%!5!67#!.'#67'67!!'>7'676=&'75!53dd=WH 81Q]Vp .j g$\5*q$A=CAQ65kQE",>NbT'F=QA :%#5!%!5!'5!53&'73673!!'>7'676=&'75!53L;]7)I,#7I0\7=I:/1 1FUA8<<0&iO>AABNTX`VaRRB CR65kQE",>NbT'F=VA !-K5!67&767&767&!!5!5!5!!!'>7'676=&'75!53/{qY>dCR65kQE",>NbT'F=VA 4R67!#3735%5#!35#26=##5##3&'7#5!3#"/!!'>7'676=&'75!53aWT=.IȬIK<+&W>u@TG\5>-9MG ?AQ65kQE",>NbT'F=QA .L#&'#'67#535'6733#"/326!!'>7'676=&'75!53gOI6'FK<`*|;z*O?NH}I!9!aP! \3=I6/1 1FUA8<<0&iOA|~-L~Fr>A?)> 'SC&AAR65kQE",>NbT'F=QA-3U[a!!!!!!5!5!5!5!'>7'676=&'75!5367%#".=323:>7'&'77&_\,=I6/1 1FUA8<<0&iO}C%B&I'8:803/K  ! ' ,HW)\z@F0@0ApA>>ApR65kQE",>NbT'F=Qcl/1/ $'$ #23G<2?A R#3735%5#!35#67!!!!!!&''67&'7#5!5+!5!'>7'676=&'75!53@M-PjKz\NkwoI@-FNbT'F=QA-39HNT!!'>7'676=&'75!53'$=3.''67%'67'$=3.''67'67_\5NbT'F=QBD99^}!BdBFiKVZS GT]C?ggACgEEhKUZSFV]AN%#!673#3#!#5##5&''>7#53=#''>7'676=&'75!53_49D mx|VC,KJ78@<~4Kc 9(8;I:/1 1FSB8<<0&iO/Ce" AD qEb22M'ehM6/`DKFP64kQE!-R:bT'F=VVA M#36735%5#!35#'!!!!!533##5!53'67+367!'>7'676=&'75!53J©L 3\MENbT'F=QA T#!%!5%!5!7!!67#5!!!#"/3267#'>7#'>7#''>7'676=&'75!53K0ii\5s[7 0?/M?(9'R-F)t1Q)D0zPO#L9/1 1FUA8<<0&iOl6604@h<`<<?[pM./'C?'0 d4E(,oU65kQE",>NbT'F=QA VZ3&'!&'!!5%!5!!!.'!!3#5!#5'>='67!'>7'676=&'75!53!58-3RF<;@[FG3((rF+J GF[Q65kQE",>NbT'F=Q!__A!8>75#%'>=33267#"&=#767#5!&''67&7&'75367#'>7'676=&'75!53!!37#"/326=#5'67h:!9 5V^;(?< 8(G=NQMDeSAC6"$7'%Z =I6/1 1FUA8<<0&mN`s *3*93*I;?9%,VMAD((' &)"V?@^??zP/#=">8(=3Fa  >ݷR65kQE",>NbT'F=KKA++<G$A #v+kA Ec3#5!#35#35%5##3!#"/32>7#'&''67'6767&'767#5!!'>7'676=&'75!53EKM@MKY&+(:*( kN<,y $j} 9F>8&L ]\3=I6/1 1FUA8<<0&iO%%hKMM6KK6Mq'=WZ]+0 36#?)>/*cVOAR65kQE",>NbT'F=QAS%67!!!35#535#53!!&''67&'7#5!5!673#3!'>7'676=&'75!53`PjKz\ƙNkwoI@.rdJ[NbT'F=QA N67!!5%!5!!#5!5!5+!#!!#3!53&'#5!5!'>7'676=&'75!53 ucc+ORM86+rOk$=I6/1 1FUA8<<0&mN*2*2;;1;@ee@33A292*;;/-92ݷR65kQE",>NbT'F=KKA Oagm&'#!5!!5!!!67&'##"/326=#5''>7'676=&'75!535!67!67&'76767%7&>& -:8BB:%.30<49ET6;"DfA+% 65=A6/1 1FUA8<<0&mNJH<36?-/$wH?O}2af4_CDK<~EzHHA <=..9#?27(D)Ă8A n(6H65kQE",>NbT'F=KK<'*$=:+,6,/78U#b=08\0W A 6<@Ge35#35%5##3'6=!3265#;#"/#"/326='35#535#7##;7!!'>7'676=&'75!53gZ/;E0B F6(L K<=HE\3=I6/1 1FUA8<<0&iO@s@@3@@3@I0/Fz (7!K%%;#g10-[GfAR65kQE",>NbT'F=QA *H#5!%!5!#3%#3#5!#5335+5!35!+35!!'>7'676=&'75!53K_VJn(K"KKH778B\3=I6/1 1FUA8<<0&iO4V^^^d00ƿƿHAR65kQE",>NbT'F=Q A "KQk#6&'35#35#53"/32653#&'!5''>7'676=&'75!5367%#"'.=3327>'&'7#"/326=##!&'7|7XS=d)IY'K:(KMf_9}@X=I6/1 1FUA8<<0&mNWE(>'JE%I)FA-=L .(%0+,EU" V: K. PN<1G=Gd,2/-/sYA/IA31;"!!:R65kQE",>NbT'F=KKNdjU c/&HgV/2?7%9m` 5 c_"cA +?]67#%35#35#%3##5#535#53&'#53533#3#5##5'6=!#!!'>7'676=&'75!53%KT)K#W|FB"6V\3=I6/1 1FUA8<<0&iOfY[U_FOxCCxBcQAEEASaB*57=/ 2AR65kQE",>NbT'F=QA;q%#!#&'7#'67'35'35'35#'#&'#'67#535'67#3#3#3!535#535#535!'>7'676=&'75!53xJoR?"MidDw[ApQG(-@H(E ]&_i/1 4/ P#=I6/1 1FUA8<<0&mN0K%/99-'#A):"1c..[....AJ&xi|c@Aw< '> "A)7*0)66)0*7)ݷR65kQE",>NbT'F=KK A26:>BHNTZ~67#;!''>7'676=&'75!53!!6735##3735#35'6&'77&'77&'773##5#535#535#53&'73673#3# V k-=I6/1 1FUA8<<0&mN`,F'EfEEEE9EEE< ? m=7 : 5 7ŀKzzB E5FNbT'F=KKAu <-]]6`]``r[ W\WjZiTedVP^ T\BB?}A-XNE6] 9NA}? A +IX^d%35'35'35#35'35'35##3!#&'7#'6!'>7'676=&'75!535!#3+36767?&"&=3673267"3#ӒllllllEaB#A7)2KV"Bt"m,=I6/1 1FUA8<<0&mN?~ |BQ X2/1a*N8,9Th3Jyv x$'OF .%gGGzEE4D..T..%/q7+6*%0.@,<)AݷR65kQE",>NbT'F=KK==; Q)+<1>0k52?2<(~+5  ' '%#767!5!6767.''67&c4XFK3r%2?2:>B!3J7;9OIW!GGމ!~_G 1NEQ]AREFO%_H(/PV%YU:0@L~~K@CXF%A!&%5!6767&'#!!&''67!5!65#5'67&'767Tޛ_r"6=2;3I&/E7:9FDT NIP*oRtIN s[[93HRO5ttAG?>G%II%$EM%OF.)B&2$I?CQJ$2&B9BQ/2;JDS% Y&'35#'#5'67&'767!5!6767&'#!!3:>7#"&=#'>7#5365TTNhLJ s[[93HRO5r"6=2;3I&/E7:9FDT QGv :  K414b2htttɈXh$4$B9BQ/2;JDSAG?>G%II%$EM%OF.)B(0$C *#+766.j"CbNC% A%!5!67!!&5!&'#5!#!5!6767&'!5'67&'767 01*$a@o^oKhJ"(r"6=2;3I&/E7:9FDT~ntn~s[[93HRO5z7E6FhaaeBC9F6BAG?>G%II%$EM%OF.)B>Z..Z>B9BQ/2;JDS%!r%767!5!&''67&5!6767&'3267#"&=#'>=3&'3#!#"/32>7#'6735#5'67&'767>:]N4:ZZ\xhf!vZQe#4@2B7F4@5C/F>HM;$D &Z6"e90&̀PPx  &*WcXH H jI^gQI<6QAS5*>50F??[>)="44#>'1~=4.46%;74;$5:?{ ,S >. LC1M]]M \v&CFO%h&"?#+=,2<769xpB7!!#!67!#5!!\N% ON\9@ID AA@{F7!5%!5!'5!!!#5!#!6744̔\x gNN?DDET66uBWH9.435'35#"/326!'!#367367!7&R|w9=MKn"Jj-JY@TAV F N^fMKA B?̕ ;6`5 #!$G7!5!#!67!#=!'6733#672>765#"'.5367O  O UOVOwX H <"%8=O *g,%, +I,=kk4A CaA 4]121)8{!@>Z:H6635'35#767!'67##367365!!!&''67&}F+KY.6 HbKsJI5rV#_j b[MAjs5? M5M D4#BAȊ`<@=hh=A:c|C;#)=35'367'##;635#5!53!&'7'67&'767&'QKqoE?F"HH $N+Zm5sV^X6I2HM2G8ZZhng AAb|#m)VBq;BwwBxl0pw'?AOdUUbM@AA[\4E"&*.!5!!5!!!#5!5!+!67!5!5!75!5!66CrPhOOb@@<<VRW@@2X)6 5!x66x66x66x66H6 267#367335'35##!#53!5!5#'673533#5!H^KwەhKMo  DG EyMo MBJ AAb2A6w6CCU? +5nnAC7  $H3673##35#353#5!#53535!"#"&5#'>7#5!#326JtHHMmKPZ;F Z.Pr'{`,/4BJ I9rVґgAA*,9# 5)8=/CC -H6 )-;7#367335'35#!5!67#3!5335335!53&'#5!#3H^KwەfUKKM'=<; MBJ AAb2Apk=X:[ ÄAABMHQDB%6.!!767!'>5!53!'67!!&''67&EHuyNm9/+aNm'=<.  UޖzvZcּ=\ڢaaCOC+34ArT-@1bc0@-Sa G o332>7!3535#'67&'767#'>=3533'67#367!#"/#:>7#".5'&'L hh gFP+A#A3=AMC]V'K A""1N +F,  L 83.<:=1E6L P;O?0#7A#*B.]Z"wP]~0cٵaaCc39E 01=@ :,04=?  (-*]&7u0&?&2g=#/35#&'''>=3533'67#3%767!67&53353#'67#5'67'67#5'>7!#"/32>7#336=3353#!#"/32>7#336TmmFhqQNh :M@r5A#6?*,[CCLF77~*~*b$S G2!*_$P &QE)(%3,-F27z&% ()H8/S+B,ZX.:(/d``CLE=;A~U`+Ob**',Vm'9@gK=g 9=gJ%4 +3@tp$S(.##2$S2##6Azu#P&! 7!3!5!#!#;#uTZ>㞞5#'67#5'67!&i8MɄBFeE19:3eI>"!,ċOMftF7NRBB8qgBrn%AWYt#D;2+BW@::5 H!67!5!3!5!5#!5#;5#767!'>7#5!3#"/32>7#&''67&R(_5Zϋ-8C6$9/hm 59 5-&-A;3/,JYzT(j\4hAA)0!--<_:;ęAKL-?Z_ V9++/%6;&>2%4 3&'##!#;#'67!5!&'7367!!&'3!535f<MXPUHIAjK!(FF(5/ 875!3!5!5#!5#;5#7&'7!67!#&''6767!5!5!5!53!!_5Zϋm&.50;wZ?(|2oA3JPJAA(*'KH Aok+%+$CKLAnACCA#/ +/75!3!5!5#!5#;5#!&'#5!%'673&'!55!_5ZϋlcSSMffefe4AA?BBhAhhA=>-->hh53 #)/@7!3!5!5#!5#;5#!'67!'6%&'7677>=3.'i8MɄ5H>w7M 3Z9BN^'`N^,]Mk+-hBBP:)c !B_G02 5/>05AQ9QF!R%%["DyNFp$P Y%5#!5#;5#73!673273!53!&''67&'!!#"/32>45#'6=!&533&jZϋTZM1VC;Ld;&!>P__g:6NZ%]L?  nZW7GK\W8#)AqZFg"wP'<AA)O4%:&4vEKRI A  *-,ט?20 $3#)/5F!'67!'6!3!5!5#!5#;5#7&7&'67>=3.'=5H>w7M 3Z9Bi8MɄYUUgLM+ Y!]Mk+-hP:)c !B_G02BB>"+?,q>*+?-?K^=b!R%%["DyNFp 5  !%B35'35#!5'35#!3!5!5#!5#;5#75!'67##!6=!#"/326K_5Zϋ'p5KLZ: lX vv9p !*U9P7AA6eB5<pP|G ? *@8>DJP35'355!3!5;5#!5#;5#5!53!3#!!!5!5!5!5!5!567%&'7?&&'7__֋Zϋ>P8jj>^lO>>HQHXF3I#=>V:MAK11q117'7=36737#"/326=#'6=!3267#"&=767!5!&''67&7&_5Zϋ8<=&&A""AEx M++8C=KBZ:P  ?"N;"98PE/3LRSre[dQH6&26)??zWq/!*]I?!9@9Al2)/i+ 3V#v&8*)<<!+ $(C%95 #>HV3#3##675!3!5!5#!5#;5#'265367&'#"/53'67537#537#53#7tromKViGE _5ZϋJ0%70=.9)L8.M5 E-,ORnrttK_ClCs(=G?? %L=5=!53!!!HNF-7щỦ'vlK60!HxNά?07<0'MNV_1111(06??nnnnn5 *('0Q2 58Ǫd>_ֱҒ.:*<'! %( "(-Z75!3!5;5#!5#;5#!5%!5!%7&&'7!!#3267#'67#'67#''6767#5!!!+__֋Zϋww#RV%P/X[#dR[#(KkU .'D/zWe3G+}es:4&FY-M2^Od/?l|>>NNNߵAB66A9 *!#5!#!5!!5!!5!327#"&=#5!53!fPPPK@ZdP++NMMMBA+ A !ZACNNF= (!5%!5!%5!67!!!!#3675!!!#ussO^%%LsNXX9UA)+*'A(&&([[A6' )%!5%!5%!5!%#5!#3533#&'#'67#222MKlKwkME8%AK7a+3ߵAB66RE*P﬈C%#%)-1#!6367!'6 %!!!#5!#!5!!5!!5< q:`Z{ \ CP*NN**Q#5l:DA$DA500QQQQ/ /5;!5!"!5!!5367!#5!#'$7#"/326567%&'7PpP0}PO]N"nf% Y|BDJ)Sv=m]&RRRRɣV8A4dL++D6YE1Z`~iwq)eA'  &,43##35#35#35%2653#"/'677&6$7IIrrrrrO L9\?#"RER!JEL+F4 =?D!@ޠ1+FT+Eո "A2 G35#35#35%3267"#".5'67##;$5##353!#5#rrrrr>(  =½ L P>NUpdBAvBBh>0<#">-? +<0>'0,,gaPCx/ (#!%!5%!5%!5!#&'7##5#'67#3OMWEEE`t,v }P+p(lL[[WW8TA[a5af*)lV7Pd;I1+/35'35##&'#'##!67#535#53533#5#wwww"P.OLW/K TLVwإ?BBq-@18BCC;' >C!5%!5%!5!!3!!&'7#'6".=3$%3276767!!#UHHHNͽy#sN NKG ,% KiC[SM"66e77.6j>9<=B;5.I3?,.@&=&   =(21 .!5%!5%!5!#!5!5!53!!!5!!&'7#'67N/|Px3}" xqWAAs??3>7AEEA7iuAA>H>LC5-W9B4GH  835#35##!!5!&'##3'67!#3#27#"&'#67Ih υ** H2 D 4,9ni_1p?;/Q6O K!B 5RCmĹ'K !%M35'35#35##'>7##!6!%!5!3262>7"#".5367V-4F IB>u _'  H 8/.565I"ӧ?Sj?7 .?/!6(8;C!   733#6:>7#".53675!OP6I> K_"& & F564TGLb~;:s,D,.A%$A. PsB) &!'241 Y*F=L*k ;;>@ =35#35#35%&''##;6767&'767#5353!!6767&'xxxxx8\:G II!DX6mu7* F3NNR=3e`C(/ᤤ :, >@)fF10 [SCxxChKF"[W'/ IM3&'#&'!!5!!5!/67#5!67#5'67367!&'7&'#!#&'#5!#5!'56 1!|^'"6B>rHC! L  0+@mUA(6 ( a{10PO;43,,")BBD2U>,;5<2&Uj-&EDF?0# Zo7769.>T3D},," BBH9 !<@35#35##!&''676767&'3##5!5!5#'673533##3IZK;"8=8I-;t0NB'@O(F N1p?;o~,4DfjfD#BB@;$y&7||A~7" ",S35#35#357##;73'>746=&'6#"&5367'&'3:>7rrrrrNbII.M:Kk.l]25Nd,&%Y2KSC>NX.c+Zb/ ޠ<0@JhezD<6U\lh1+44 'G^y ]fNL9C=% ,*.M  435#35##!!5%!5!5#%!#67.'#67'67K"GGٍ/TF0NSFf'q'gWv$F6uG; CxDWGAT-^@T5<6֍B5C ;7;%!5!!5!#'67#5!5!5!5!53&'73673!!!!!!#55!B66O+3.:'#*>=;?<'7,#>>7< HL35#35#%35'35##367#'6735!53&'73673!!#"/32>7##/5# iiiiH` I'IJ $,'_A+ Ml$"i}Tg?C88n( A/75C;= >-}- D ,TQl35'35#3!535#535#'7##!>5!#3#3!535#53533#5#wwwwa.3;:I!=կݹOwڢ@??>]j6$G1>R*A]>AA=kk=NM1 1D735'35'35#35#5##3#!!5!5#535#53533#3#26=!#!3#"/nnnnnn JG&PY" LN D-ZZ槧?2 <CC>A:]CC< H35'35#5#;5#5##35#5# 7!#3#3!!!5!5!535###335#5!5#eeeé̀́e3 iPggP"i'G[H[G gإ?х5Dg>A>yAAy>@1>a >28S7!5!!5!#!#567#5!#"/326=#53533#3'67%5!#&''&'767&'7OP\.&d[>.P,P:K,v9iNqb_z()5:2)\GL+9??x,7,UE\]>>M|+Ac/Nإ?R@1v-IC3v!!5!5#53533#vvvvK Jv@A 2IN  {!Nݠ?a@"Apg-)==.{?k?UU?k?kAA>ss>?A C735'35'35#'3##3#!5#535#5!#3267"#"&5#'6#67ooooooHHv*:H )$!S(g2xe"V㤤?BFn>>}AD 057A  0Tl9Y8@2<6 P35'35#35'35#5#7535!5!5#535#5353!!33##3#;#"&''67##367nnnn!MnO<L;O>L;b@q C:IT?%@1s B7E<J B5#!5#;5#67!!53&'#5!5!5!5!#5!67!!!!!#3!!!#5!5!R:1#Tz WM<M W$,zhPhe^^^^^<<9?==>:=F<9- '9.`.>PL6LzNVYgR}'!&k*6:@0./f(??XuuX?(}}-783F99;F5KB)"T// D' #'-OTX!5%!5%!5!#3!!&'7#'635'35##3".=3673267"!!#5#D(Kv#vv liiiiJMAP?M #GB;I %!JCKi"66e77.6j>3B=F93+N1?+å?P>1 :="=%2 (m C  .5;35'35##35!!5%!5!5#%!!5!5+#5!##67%7&ppppH,I><=#53#>=#537#!#"/326=&''#5&''#!5#5#5353!533#5#/aiiiiH="(.i ="(.i< 2*<: (!+G).J VVM/MXX}iFFҥ?R@1O? `39(? `397BK'C%B'#OP"&($MK&&37ALLLLAC; -B35'35##335#5#3#5!#53&'735336!!5!5#535+!#3#ppppHpGnM;MmGOMM!m QKإ?R@1OVG):/9>KBBw=cc=Q< k7!5%!5%!5!%67#7!#5!#75###67'#3&'73533'67367!#&''67&''#"/326=&000;1PP6%}Fz$8./DR(->+-3\KX2:@ 5UE&D1I?f#vCBf Z;4!,6,3D77h6637;l SZ,,?@MN =LFR%)-.L2@2@ FG$tt@AA8::t."17v :<D Y_35'35#&'!5!!55#5!67!#67&'##"/326=#5'67'##367&'7677&jjjjaD#(@(jK -3&=0(;d>+ 0/oE,U#IM?,F7"D-(l[)]إ?YTXUORRcA.% #&A?=77!C>K3H)$ەAB !+39P.e=<@10G3H)"L?=7EX6Y A5  &X67#735'35'35#35'35#675#3#3673#&''67&''67##5'>7#535#5!#9) {- pZZZZZZ'~~~~*T~0C "E,P"R-4S2`50. Hi $-{H*訨?jj:AA:>68???q====@?*?76=@185?X 71 (,048I35'35##35#!35##!#&'7#'67'!5%!5%!5!5##!!5!5+5353iiiiH/N,Z!k_YSrrri* vIOإ?R@1mAAAn7:9D7/'K4;.=l22d2232ʦ&::&;;7' |35'35##3&'!675#%767!'67.=33267.'75!&'7#67'67#53&'#' 73#&'+!&''67&iiiiHBH& I`1i^80GQ8KY#ZEHZ 1 : :<%=F:?46p.J +:9g':":# 7?en x@Ԩ@H@;X>#C>; 7/骪U,3,/7#!!53#5!#55#5!5!5!iiii..G& GBHl;I-# %(H %!%O&- vU?V[MMMilE)إ?m$Ǜ 9 "@1|Xr <";=  ' T8V9 6$ "@s'')O2200S00 74  $(LP!&'35'35##3'673&'!5#3%#3'67+!#67+!#&''&''5#G996iiiiH UXQZuu)vv,~'HbE:^Dc[M0BP*?(55:4i>>>襥?R@1HffH8E21Ke9f$'J`j1Je2WF[C21[BZU<@ )-ei35#35'35##35!#535#53533533#3%5!'67&''67&''67#5!#67.'##"/32654'%5#&^iiiiH1EI~JIys jc SxSm">70?FAZ&_5@$4%N2+yi@륥?R@1yy@)G0gC7I7v4.,Z/WMIAK7<>L=GK5:B03ߗ rz0/*B]s^T0/AM81d$?AGA}PO}A!sH3? /%3#%#5##53=#'67!#3#&''>7j;KIR *?G&D #eR>CN nF-Xn CeD??+EfQ +2CE*t|a.=={#1@D#3#"/3267#'6735#553=#'673#3#&''673 '_)1 K v1!@:C qz}PT6A@3s4OUKaw_,E D2BpEjOj3?4!5!!!#!!!%53=#'673#3#&''>7#,eOow;'AD"Eu}R@5*H9/Na E2aDœEdS CCE0}n2Jtb;=|2?+/5?#!%!5!53=#'673#3#&''>75!7&5!673K.(;*AF!D _nqSA5A29.Na ;F2G3= H:16>E_X 4)CE,~q2qPd;=|IBB7sjgByzxB#+Ae%67#'53675'67#5!5#' 7!#&'#!#&''67&''67%5346=#'673#3#&''67L,"O/V#Obz fz T_? h[,Reo"ftJJ 583S%B6DRX]I15 ;/_3{w:Q*)g@1. hhQ=EV>\?-= c>UF=Lp@bG-B?S-ZA@ (!?0A '>Z2= ,ol-5< nU)B*!%!!5!!!#5!#'>7`;b,!I N;OVr()+.TDD}66{hHAY!73#5!#33#5!#3!5##'6b%I"(u!N65BBmRDDbD8IwD1U'#)/773#5!#3##'6%3#"/3265'677&6$7qqV%H(u!M:]E `!LEI!?G@,G.>DHb,5BBmP]z<2UdFT+E+Oʫ    5T3"&5##'6#5!#3'737276747'6#5!#"/32>=# `F>Eb^| II 4 G;>jX !!,K:- b^X!M6IA*WBBf20C3 }&5?@ )uC(DeW4 G EޥP .@73#'6733#67"&536732675!#3##'6dd =3LLR ?\-MKM1ed,2C!:%F$!u!V<%BE(BP%8Gu4P CDMQ&( BBnAQwD'U#56=#5!#3###'>7#5;#3#5!#3##'6"ikuuL CD7:: oO^%H"(u!0rkBBBFH:>B kqq65BBmFSD1U '&2D73#%#"&=#'>7#5353332633###535!#3##'6< <n (S\M PLr%I"'u!-W069 :k>*MAkk-WCCBBm%CB2U !)73#!5!5%!5!5!#3##'6!53!3•]c$H!*u!&_HX6ABBiFSA4UB# A&'3#5!#367 73#327#"'!5!&#67##'6KejjC'(B] ,+ A?1i#^XH$"t!Iv Y@8BBsDAAJBlN4C]?!B=DSC)T"'6J%!5'73>733#6:>7#".53675!!!#5!#5'676I> K_"& & F564TGLv*NMHKcuA%$A. PsB) &!'241 Y*F=L*k ??.***3!DM}1)%!!3#%3!!3#5!#5!#3##'6\N MM}^%H"(u!+'6 D@@,BBmFSD1UGAS73#3:>7#".5!5#5!32>7!'67!#"/5!#3##'6kk:)zC5CM '"JD<04< #  *6;S'K"#1NhK%G$"u!DNB?3@5;A &&AQP/ +6=<BBn/SC)T1E35#3#5!#3653533'67#3&''67&'767!'67##'6四llO%2M+>#Cj]lldY;B5P]7z8 H(u!65BBmaaCLF 8:AuQ*B+_^,B%VdYhּ1Sz<2UA73#%'67##'6#5!#3>5!!!!3#"/32>7#'>5mm>?E3 H(u!sM%$9 !+%*bJ. GI9U=U9`m< Pz<2UBBmxP'BrAU&c C 'U3fA973#7&''67667&5!#363533!'67##'6llIEG@G ٻ,B=K6Cg- O%;N1`BH(u!X6`@2 D8 BBmGxxD#-Sz<2U4#573#%3!535#53533#3!5!5#53533#5!#3##'6kk NNoO%H(u!X6MAA@vv@AA@xx@BBmFSz<2U( -?!5%!5!3#&'%'67"/326=!#3335!#3##'6jjkk07@34/)=C;*<nU! LK @%H(u!3tt>h6Tri]`kj_C,HcU% BBmFSz<2U;S73#37#"&533265!353!!67&'7&''26767#5#3653'67##'6llJA <J FP$.~*)>[O< 2 ,+%RIXZ7)H(u!X6.\EDD/q 0B#YYBig =3#s'&%&C\y#mNhܱ64%Sz<2U "EJ73#%35#35#367#5!#3##'67!#3#5#&''67&'767+35#5#ii曛X:#H(u!5I/ סR@F)@&9$Hќa2L]]]-6BBjJ\z<2UB?NN@fDU D eI%C"5;H%B25IrN|c4/  !E73#!5%!5%!5!5!#3##'6"#"&=#'>7+!#27674W333 j%H"(u!J$Q%E%`c Kˇ L MAkkdd&uV, X-39=73#&'5!#3>73&'#5!###'667%7&5!kkjUWcXS%Q{>Fx/KJ &H%#v!|N;O70yc0bFHB[qvVwBBm:yStK" 55vSE*VZh+j,   )V3735'35#35'35#5!#3##'6%!#"/326=#'#"/326=#'>5!>5S;?t Eb 5%>C  0? 9%>C  1A! XN]>A]>ABBf%IA*WI)V(D+zD+} Yͯh);Rǣ"< E!5%!5%!5!&'#!5%'67#53#5353!533#3#&'!!#5!#5'67#)jjj|&"*Ec랔OO]gL(P5NER]D@@s@@3@^!"RR?=/K<&>KKKK>VG#C/WQ& 6}'D$"t!%C;<G3'C HX@\L @%C-&)BBU)ABBs5SC)T A _67#%35!!53!##"/326=#267".535!#5#3673'67&''##'6 )e3OP'29.|F*)R,*Ka h*C ,U52 Ab dl<5-UN1B)eeFA ", + =B< df 4>F8C7,0'%SA*W< #'967!#!#5%3#53&'#53533#35!5!#3##'6( XMNskkȈ"CPG$7@%H(u!_k^l +|+}6BgcAbbArXBBBmFSz<2U IR73#%!5%!5!3&2>7#3!#5'##'6#5!#367#!!!#"/%3'67#hh:\\(=1] A@#)FF$!u!sG%W5F/+4XD2!g($X:QQ;N4)3''(A(>?SwD'UBBnYrV"+<D-Fd2"F*A%!5#3673%!5%!5!5!!!#5!#5'6?'675#535#5!#3#67G M  v*NMDOcv8j> S.( 0SS9Ns@@.***0#CM}$%> `;N??N;S   $*<!5%!5!3#5!!3!#3675!67%7&5!#3##'6ccss6 PKY-Z>'i*iB%H$!u!ZZ:W)2;AA8"5%]]7J5O9:>K7GBBmJTtD'U< Z%>7#7!5%!5%!5!3#5!#33#5353!533#3#3267#"&=#'!!####'680k+hh0v%ZBBMLRR\ #'?  K)5AB*"K1F$!u!gJ?MMMM7N:1BBnV?]]]]??\=$&% +sPg#,LA6qSwD'U ; !<73#!5%!5%!5!%5!#3##'6353!!!#&'7#'67+ss>NNN>`%H$!u!O-h$l{b^>Na-[[XX;TBBmOYtD'UnKAZ7B?F:8.N4B0>@ P73#5#5##3#5#367#'##'6#5!367!#5#3673#3#3#3!H%g@L F(u!sO I.I'G \X6#hhkk:nxmF} $Sz<2UB5% CkOG;7 087!!hhɥZ0v%F$!u!'?)~;H9G 6"Uվ1b]I1X: b_\\RBBnCSwD'Utzu$aw xa$VdaZ=_a<\:_;b;C pv9 (-m73#67&'7&'67#6767&'7&'53&'73673#677&'&''##'6#5!#3767dd6%Q03. 63 63= +)?C*8<'[I&tJ/<*46=258%#? ? xD$"t!r)p%#)DNmG?daoej]p30~[WZjij3 YWnN_A45J17C74AD z| B9%7SC)TBBn% QsA ?Q67#3#%#53&'#53533#3#533!!#"/32>5#'>7#535!#3##'6(UhhK%MNZ#KN:11AkV>3.Uf0v%F$!u!(DD>J0:X\?IAPPAH@\!\?!,}}-AIGV;/i?VBBnCSwD'U E535!;5#!5!!5%!5!3#5!#353!3##"/326=!####'6KISSdd6}'ACH E&Q_LED$"t!>LAKK9KG8BBsDBC3}SC)T" D!535335!5'67#5!!!5!!!#5##5'#5##5'67#5!#!67>JIc: 'LIIM!!Y.zW.Lss>~~~~0BBkAA'$CC/+''!?''DKrCC4&aKpAJ73#3!535#'67##'6#5!#367#5!5#535#53&'73673#3#!!!#dd+;q;D$"t!r6}'g!tEGeN=BBo4SC)TBBsd?_>XA:/A:B9+BAX>_?(4>"G &Oi|%!575#67#5!!!#5!#5'67&''746=36737#"/326=#5'67%'>=!3267#"&=#5!&''67&'7C*3v NMGNc/1(5)/DyL ++8CAL@? FA= /+:*&  ?"N;"|o0FKPsa^hHG.-tlly"+*<<+**0BCn),"/'> ) =1@kieHCe&G(;.#u -P Y;;?+<(';&'1 +=%!5!67#%3#3!5335335!53&'#5!#35!#3##'6YTiiKKMG==c9'D$"t!k=X:[<GÄAABMHQDBBBs5SC)T ) \3%67#%353!#&'#'##'6#5!#367&''6733533#3##5#535#'67#5!N# q7PN%a%iNnsAb^" zI5:.,~-D MHHVVMQ%{ [X>I&;`@jV=`\+IA*WBBf4e/' '4g UUA@qq@}2,Jd@6 -f73#%#3=#35'35#.'#65!#3##'6&'7#5!5'675+35#5353!!3#&'3##"/326=!dd曛l k\+q%F$!u!I]'DܾrHK-7; dd? _USIX:HGx@@1GG1@4BBnCSwD'UF@0M$:MwP9h&Z8G>j!xA{n;-)*&H/G!!J/;AEuu<<'"--8%@[E='3VV@A;PJ1DHNH3KY;AA;93+2(G=,Be"/ $)9?k%!5!!!#5!#5'67#5'6=!'35#67#%3!535#53533##3753'6=!3267#"&=#!&''67&'71"NMKJc43\\@//YMA\^/6> A R7#Fm8ETR#nb\qDA-+woo/)<(**2BCn$K,8ME*&66*:--: -P9+-S&s ,P]Z89>':*%:$( /%+73#%&'&'7767&'&'.'.'!3&'327#"''67&'#&''>7###'6#5!#3767&'76767&53767677&'3#6VVp4)01#a ,I*(2 |i) C5(=%=FMGUqrP"&I84@TE!k!h#t%G51#(<1- +44F);*)3%<#869J!V-X:98R(*MNX2 B\wV;7D7" /; o#@;$ kB*>*>DY-9$;7vF/2SSsB(Y BB^54-Y<':RaG&Fd9$BG4WA SKF[b{ 2?C)- IW73#%&'!5!67#5!6767&'!5##'6#5!#367&'76753&'#5!#3gg??,+>-,!8#61<!8174?69K]F$"t!r6}%E6C.2>,,% -1IItPY[Nv@KEFA@4=2$E?(9C%H?6'A>Y"#W@SC)TBBn.4;H,+<0:NBBIP;B 9Hl35!#3##'63!535#535#3#67'675#535#5!5#53533#!#3#:>7#"&=#'>7#5!#Ow Dbqkccbb191GffuN q``J %%$d-b {hi iD1BBf9]A*W;;S9DD9X 9; c9D=O7#5!5735'673'673#!67#53&^^.u'D$"t!G&S6>7V"GN PZ^).ki 1* "9-Z AM9!*4(Jo@BdU4vJDG8BBs5SC)T(h7h^SA*!+0 7 9>2PB_<<_BP1>b/.: 8 ;C=;9;O`>I9, /+Ac73##&'#5'67#5#3##'6#5!353!3#&'#5'67#535367#5!'67#3#;#"&'VVO2*."$C+9)I'[h E!l!i#jI3o0P(B.C-D+V/WkI^H 3SW,> ʣW!%@+X:K??>+93RB6RQ%cCSsB(YB(RR?cY:LXUO2ac?R CH???A;&)-i>~C7DK?<(lr%67#3#%3!5!5#535#53&'73673#3#33#327#"''67&'#67#"/326='675#535'673&?&5!#3##'60d dd G G HG1(C :D64L]ZH<. /G- :+C)J&ss!Au 19e.<,0-6}'D$"t!m+2;KGd??B;?A0 8%+ 4A?;DFA E7_T0?/6RA ; R-=2 @MA5< < @5=*61*4yBBs5SC)T Q3535#'##'6#5!#367.53673267+3#3#&''>76#53&'767!5!3'67#3#;#"&'MVr)0Ab^c - "C^lyl7E?+*+amrE 227n'CVA?-CE2-0;'O4N f$8I||,E")hx$XAn2("IA*WBBfJdb2;8DO.+-(@nA b4)P(r88"jA$luHrDWO(3,3A C4@N5   $.u3535#35#675#735'35##3=#3#75#7.5!#365!#3#3+3#"/3265.'#35+35#'67##'6rrs=Y(oooo'ppp``Z7,')-} 2BdddHFn)H23HnFFr/&@ E!l!+++++ X??4=q?s==:\0Q %BBcYU=+;+-F-A  ,qK-+ڇP)%SsB(Y = &,23%35'35#7&'67!5!5+&%67&'7.'7676753673767677.''#!!&'#5'##'6#5!#3367&MRpppp!\`37$!,!, 7.,4J K W 7!, %5"##9GchNjuAb^ j !;Xlpp>eVB5PH!;80ZkCA H?0/L L1A)8VVa$bE6&(-0GG[]' Ga[Op  ACp`B]qr]@IA*WBBfT?0k": 'm&'#!567&''#&'#5'67#5353%&'!#&'!!#5!#5'67#'67#5!67'67&'7'67&'763533#&'#5'67# $)+,)3<0V^9.'#/E%=*S,vMJ< 0&!"+!/3(E#+2 ]bO !P5NER_OLk;1C,+6#1>1#>%::,OlMv,S*=%E"0.G&]'%RR#!"?BC57?IF5]g?MMV,'+.&#23   *O< +/*3$"0MM?g]5FI;9-RL9!5!!#"/3265!567&'7P(S745#"'.533&'#'67!5353R J 4*6(>L 1LYa5EgLN]hK .fZR\Q!.X68FiXK_4EYhpC0MF'&%3!5!#53533#%3&'#'67!5353N-;^K3C\LBR]MFFDDxFlQVR1IV\f7"#".55!#5!##/6533?ML )"*1&1 M !?43:99`RIkE,EDDC@ @4A;>G#  *++pBBEEI \ '-53533&'#'$7+'32654'67##!:N5P__3LiOSf pNRV ?D3P6Kt0BFFkUMZ7IXdsD1L·jRJD'3yc?'>&'%3&'#'67!5353'67$73#327#"&'#67 j>*=GF4/EK9HTKƵ O*_] *(A 3-5$7%3&'#'67!5353NWW8DJ'*CK,4!EK=GWKF\3J5E-r`Fq`S;.+Pwf=.MF'&3&'#'67!5353333#3!533+:Q?47BK9HTKMtKFqVWP.GIqb9.MF D:FFp36!367#5367!!!#5!#'67&'#'67#5353Cy!6@4n7 N :-yMK2;- 23M:=GxMG'CFpSHDE>A:AE{k 667K:> C;q[8(MF23 D5!#5!##/653536533&'73!67&''67&''>7#36NGHfD+DMED*SJ90PF!J)XKm/kI?R6VBB-1k37BiBBEEI CBEEB/$7,7'C*ƁؠbI;GY^A2Did<3% EKQ5!#5!##/653367'%#".='673632767677&7&5|/rAO9(99@GAE -)%).*RX+qdM]Bp@A#}H+HBBEEG ʰ ޱ[7!53533!3"""_(HVMBRm0L,=[CHAB&OP\f7'!!3&'#'67!5353L24H %=^.`x.ygb+:Q?47BK9HTKup# ;+/ !CK;=6A 9FqVWP.GIqb9.MF'6%#5##3533#5'35+3=#3735%3&'#'67!5353MIMKM}-35#535!5!!3%5#!5#;5#5!!#"/326=!567%7&{I\I'M8PK0' m_,a &t'oDDDAAD:qqqqq??>A;@A=_4c?:KY8T>7IOU!&'767&'767#'673.'767#5!&'!5'67&!#"/326=!567%7&AmqE?.@%$#B!-?"+"Bf%IC  I6uK/,7a_!nmj!QR2(N6PK0& )O7P!2`3ch|y&,8##>,7 2?KE9cx!  vNT??oeP@A@`1.[B?'9/CF#B CYw'}`1oo0q@!\!5#3&'#'67#5353&'%##"/326=!'67#5367#5367#5367#5367!!!!!##w"92(*8L5?DuLOD676DU G"dZ! EZLi  M*! nZs:CFsX<6@DZ5*MF>J1J>?O%B '_0I}?(K?+3<QA42A8 <3+?s /' 5<B!5%!5%!5!%5!#5!##/653%3!#33#5353!533#67%7&.IxGeB+BFBBD@@LM==R,(D$`&];qqnnBW=S58 Q3677&5!#5!##/6533675#5!67!67!3#67&'#"/326='W>/$L1rK$AID _'4EZJI$DBBEEI ue|sAE*AHO>E+[;cC9kW0?/sqa37@ =#!%!5!#5!%!5!%5!53!5!#&'7##"/326=#'67#5LlHI"PIwk)r!)M6Pd% '^$Y[?6Ϩ)-;AA;2990z*aA8pG|)pJMJp)yHMP'M8PK0' m{]3]$,q)qYYA?I0@@iZ9_hAAfa9Yf`X6\`AYYk@@IA;@A@e.jG6O_8^'EK3&'#'67#53533!67&'#"/326='675!5!5!5!5!57&y$=';'FwYZ;/9?[8(MFARPBN*[EeB7#5353'>7#5!#"/32>5#!!.'2u]AK6(77#Z bbqqMssgg%LA3M@;oJ/3<M1 %1?2 SF:&ql++BBEEG pY> Z9P%!5%!5%!5!'353!!!#&'7#'67+5&'#'67!53533]]]NN4 f$jd_AN-9:K9HTK);O3[[XX;T@KAZ8A?E;8.N4B/?,HBqb9.MFFqUV@' <!5!#5!35#35!35'35#5!35!#5!#&'#'67#5353MMҦmR<7y!7<7+MmK%87M:=GxMvillll9iAA?FoVBFlK,,(!H@l[8(MF@8HLl'67'>353675#5#5'6735#'673#3#3#67%#'3265##35!#&'7##"/326=#'67#58tT5b5 # E6!1K$%Q<@ @O%DFTo? 2 dII|f)r!)M6Pd% '^$WB+I*[:'&(ٮ@>YD!7O:D:43A 9>  p+991y)aA8=V<  !37?EI#5!3#5!35'35##3=#5#!5#!#5#535+!+5!#5!##/6533HnF(~vvNGIq&8rDS;(;:A\\7X\XXaaaaAABcBbBBEEG \@ !.2@DLRV5#;5#!3=#37#3735!5!67#3533533!#5!53&'#5!#35!#5!##/6533[[[[[[[[<[XǐK[K1C 9LLz&8rDS;(;:CCCCCuBBBBBBG7<.EOOOOi==fBE.?4BBBEEG \ '@Th|'7#"/265####&'#'67#535336735!5!!3&'67&'767&''67&'767&'7'67&'767&''67&'767&'>%0'4zT,5S@0 DF3J.4CeJ`c?@"8;,&').(($&4,&').(($&.%').(($&4,(%,/((&(,VF@<,FK75N*A*A*Id>+P}FA4J#,,AA-,/$/ %$6:,&/ /,/$/ %$6:,&/ /,.$/ %$660&/ /,0"/%)/30*.,8 9  $,2s35#35#3567#67#5!53!5#53#5!##/653335#535#535+5!#35#5!#3#3#3#.'#67'675yy,{{mvQ:4lPu]AK6(77=I75 E.2?DVm+ 5Ei M.BPMMM00!1^*46. eZ<,%!67&'7&''6767##!>7!#"/326@.;31BSUB.73N?M )T,D?jX3#2 E?O%H|V(DW#A35#5#7.''675!#!5+5!5#' %!+!#"/326=!67&"]D;*BkLuO8U 8Ou$KfZ&R0iV 1- C6= D5FB6U)D)Ё W >35#!#3=#'#37.''675!#!5+!+!#"/326=!67&"PD;*BkLuOOu$KfZ&R0]]]]]]tiV 1- CKrKU)D)Ё #94b3&'353.'7#6'67&'767!5'673&'#&''6767##!67!3!53!!#"/326=#.'y\\yP8&,eUSS&Zp@;XUFhFUz,*H/\&TUc%X LZM:M !Asa 43C;::;E ($F 0%0* 0%APssPA%(**1)"/zA0@T) U)B+O\. '( '67!5!5#5 %!!&'#U-5-P9CESD(C9I2#$C'67!5!5#' %!!&'#5'>733:>7#".5Ny8 yLKm$# M212.4. DRiArA-? wAiRDhBA(P  .'/<<:  )=!5 %!!$'33#"/3267#'67#'>7#5'67!5!5# h= $GCNruB51 K*E0^YJ-= g>dM>_v?-~2 C Fl!%Ech;.p:>Md>b#1#&'#'67#535'6774&''6767&CT:[I8f,6F]_QH`BJ,]NZ7 Bj,Cz?B ?+= S;Ej v&#73.''$67%'67%35'673#&'#'67#{M+Y#%[+ @FD{CG G!@F?]Z37,2I-N-t+B8{y9B~ϓ G ?+=Cb%]e3r>' 4%'%37#&'7&'7%35'673#&'#'67#MMcjM[Sg4fUWp4m[(TSMnS'83(H+J,n*HEHBDT^^2\`bg2ag?*;AI%jLp>' !>3#"/3265'677&6$7#&'#'67#535'67M:]E `!LEI!?G@,G.>DH{g%8A ?+=#+J#&'#'67#535'67'6733#67"&53673276767fhc4EI&@*c#s}69>?? (EL^C Ea.MRX2qk2* F% &C3+",hKC @)= B  E#"BO&9Ez3N c!jDLS%( %&HNT#67'67.'#'67#535'67#"&='673632677&7&frO GAF,0 I$:)a!nsB#3Ku 0)'t6Zd-jMeAuDX$}G-H)B$q ޱ-Sh9vdKB @)<;DH!# $QQ?;Nj(b(:A%HAG # (0%!5!5%!5!35'673#&'#'67#!53!3***-WCYZ385)J.L,r,bDA?+=Ab%tP1l>B1:#&'#'67#535'67%#3#&'#'67#535#5353!{P51A ?+=FBDrABC# 8&'7%'6735'673#53#5!#3###&'#'67#:9A4?q*L@F,,BR3&'#!&'!67'!'67#5!67#5!67!5!67!!!#!#&'!&'#5'67!5bm1X ,¢?\Q:B0}d `Nf `%#!Ps#)',YX-0 9  *:-1HGy<-#9$'=0.=+ 9#-'M353#"/32>7##'67#'&'#'67#535'673#67675367ЩFI #UB Mg%l C+EI&@*c#s}69>?sh["v_MnM&\fcf{N D +XO%rAx &#",hKC @)= C3p'.?8+:4:@##"/3265#'#&'#'67#535'67367'677&CaA+ ,4?LZ37,3I.L-t++ZA\|G(E66tAr5 EL5F3DV)D+DiN'b%_e1l>A?+=@2"42O'67&'767#'>733'67&'767#'>7%35'673#&'#'67#y$C.F(M/^]%C(B8u=@ȌT2>4U-ׄ!U5~<`767&''67&3#"/26=####5'67367#5#&'#'67#535'673367!!353%treT,@XcV&Wz{M;=.0MJ68'U@$`/$8:I%9*b"osB#3Kn Mi|"|M9%22A331008J(H ?3 zCBTH1@K[2>4^H$<x`KB @(<3(%8C<4T# )9!5!!5!#!%#&'#'67#535'67!#!!#5!5!5#||MmH97;I&@*c#s}69B=.PzV[eBj$5u)iKB @)= CqDDq#9#!%!5!!!5!5#535#5!#3##&'#'67#535'67M Ar"GmH97;I&@*c#s}69B=C>JBB}>s??s>Bj$5u)iKB @)= -.2O#3&'73673#3267"#"&5#'>7'!5!35'673#&'#'67#Ij H-o6%H/u'*H"R(\y.ti0a>+ZA\zU67,3I.L-t+=OI;VFJWGE 69:E# A!:>1?'?+=Ai%_e-l>//8>Z`f!&'7&'!5#&'#'67#535'673'67'67!5!67%#".=33:>7'&'77&NAHrX;CI\-I8+I$:*`#puB#5HT -CY*^B@1A3nCEMlH;10070%X$a@HvvaKC @(<$l/LRCCmbl/2. #($> %&S5C@4C6wA ,I35#35!35'35##&'#'67#535'6735+367!#3##5!536adeH97;I&@*c#s}69==E KLGM"!svvvv?;qqnn=W9a;@DX>R3B<+})lKB @)= 3;?G!5%!5!'#&'#'67#535'67!>73#3!#367!55!!!#GlP"1)I$:*c nsB#&M Kr +JdLVV8SCE1]9?vdKC @(?6 !+A=:> pYYA1=GK5#5#3!#'>7#&'#'67#535'673673673#3#3+3 %M%"&JH97;I&@*c#s}69B=dZ0J Hԕؙ@A9=M+Zj$5u)iKB @)= * J;EM K7!&'%'67#535'673#.'#c:<%N^D &&&Z&\Q6<6+IIQDtiF*^$mp#?*Hg]U 75H#l9IF<+r>`b<%#% )z=A=7;/8$~5$<_H4"A)HPJC?)<C'$y%2z)@ 6#!%!5!#5!%!5!%5!53! %!!&'#5'67!5!5#LlHI"P.P]?6Щ)-;AA;p&9 2;ZI:WjjW:IZ;/# &R%#!'35##&'#'67#535'67%#'>5!#"/3265#3#3##5#535#53MJ%ەk-I33I$:*`#puB#5H"B*@K6 vv}}L||vv*>>:$CX.;pHvvaKC @(<W7R®k#U*C+U9h;XX;h9# DW35#35+35'35##!!5!5!5!5+5.'#'67#535'67$7!!3#3#535!5!5'b3 I/1I$=*d ov53] ePL `B0FFFF3FHAAH=<. n"5|fKB @(3+@ L=8<B$8=F6 #39?EI%!5%!5!#!#5#.'#'67#535'67$7!'?&?&673AJK xP"7 * I$:*c nsB#; 08?$!@?$!@?&C"EI:o,,XCE#[@vdKC @(73?54 TWkdfWkdi~{o#&,2L#&'#'67#535'67%'67$7&'7&'7!#5!#673#!5#535#WVL27;I&@*c"r}69B=#6I>%%)C*$07B62MKxhVZ$B^$5u)iKB @)= " fw%hFGiuURzZ ++-B$m==|E(`55!##&'#'67#535'67353!32654''67&''67&''67#5!#67&'##"'W75(DgW8:I%9*b"osB#N AN"z%~ k%dVm$gv$=49ALBb&c AI+5=I 42$ E}x`KC @(7YY&H(^;c-)kQ;Tf'@39BZAAm_=N,aFbG^EXd^I7p%!5%!5!367#53673&'73#3267#".=#3673267#"&='#!#5!#&'#'67#535'6mmj>?nu6 L5  ' UkJ18/<a"*e 0[((L%Dm(mKC @2 K%35#!5!#5!###5!#"/326=!#.'#'67#535'67353!!5(4IACyvHOCH<CG%6J$:)a"osEM 7,T^&]ү+7C:MW(E,8y!8vaKC @)9HHC8  '4Sj#3!535#53533#&'#5'67#535'#5!#5!677'>=!3267#"&=#767!5!&''67&dIo(,m&x9'P@Cė8:7  A/n?0SN.9\Zgtd`$|YSL;;L?HH>X!47E^L>PT>@!dE!> L1&oaD Z$), !UNNhBB[H+=0QL5=.EO 6 =C_ek#3735'5#;5#%!3!#35!53#&'#'67#535'67353!67%#".=33:>7&'7?&_I뢢 *I,:f\-I8+I$:*`#puB#M Y<$E!G565-/-MG&% E>?2C<3B=1A.]]]]7VVV}B`B7 CX$a@HvvaKC @(;NNXg.0- #($> $%O=,?MDnK P!&'!5!35'6?&'.'#5!#'3&'#'67#535'67353!#5!##67>WHP_^b5>X#Rg+l -ML+I%9*b"osB#N H*?fA,tQZd졻ac8[ty/}oruD "66$D>@Kx`KB @(?c7i?z;~ZC] (R.5-F0*, -:E0F>+8L7!y!8vaKC @)<1S%#!#&'7#'67'!5%!5%!5!'#&'#'67#535'67!533#3#!!5!5#535!5N(]b^^XvvvzSG-8)I$:*c nsB#P<9Nn7<7@;/'M28,Bl22d2232B]#]98vdKB @(2@@<061991600 ,%BQU[a!5!!5!%"&53673:>7#&'#5'67#535'675!#3!#3675!67%7&K~6LN()G84b/4>FJ2a*m3b8AZ J vA/D{(rL+QH[](e6<9A  .+->Z.5FJfSAU\>T > '< ^AA$6+/WW 8I3P98@I6I#*06v3&'76773327>7#"'.5?&?&#.'#'67#535'67$73673!5!5!5!5!53&'7"#'%* ;yE(>'J|K ,%$.F$G(C>,:k-SG,B=G0<1_]7 * I$:*c nsB#M!){'G&Q% C> 1 5:GA K?:NdjUh.  c/%It16?2<""ca c C!#[6vdKC @(73? ?S W]IZ>JJ  I - 7-.?;(I$: I%9*b"osB#5Hgc6/IH J)' ?AsAAP??1?p?p??AsAAL0p @$1019  !.AK}x`KC @(<Ck_A12! 6 9{#3=#35'35#&'#>67".=33:>77&'7'675+35!53#&'#'67#535'67353!!3#&'?&J뢢wl9.?"D#F4./.MG& $ J57 9D(lI,:f[0851 I$:*`#puB#M ,5"=aH22@@/@/OHH5OO5H9KdoS  }o/ &'& ~<5* < @:80 C\r*nFvvaKC @(7JJ<8L5' 92' _eg E 6=#%3&'#26=#5!##"/2>7#"&''67&''6&'!67''67.'#'67#535'673!&5!53533533#!#3#673ZDG!u`)) =?>?R1cD Z-N+  (:9)+<0 ! H#8*^$mp;'t:\]pK~M"W)(A#F$7 JP'l<<5 <F2HFX60An7Dd2cUVluXHT k\we8|%9AzbKB ?); ,@2;=@%>zy^}| 9%)/59u!!53#.'#'67#535'67!5335''67&'5#'675'67#535#535#53533533#3#3!67.'#6%g%)XMT7 H#8*^$mp;'tPx[oj*ZM\aЬML 3?<3=>Gby(,*Q>, B#C7zbKB ?).D==6:*8'<+886.==>3?o)B1L;=6=6====6=6=;D4-?+A-7!='k, 7"&9y#3'35'3675##67!675#5335#5!&''67&'7673533533##3#3#3#3!5'67#.'#'67#535yȵ?G oDI> C21XqQ=|ux`C&} HG@ 0B2&7,H#8*^$nq"A2224 2/)77YY( 1< b!A(8:/304''''403/:'5.2=#`!|: !#5!#5!53'67&MHMPz[9[I[9磣44)A,V!#5#27>7"'.=#'$5##5!532>7#"&=#'>7#5!653!|K  & /K#%#T@$h&K|P  H (' ]0$Nժi 4 # (g%?>l ..0,74 6|4?.|fB0/-2PA F5#3:>7!!#"/3267!'67!5!5'67##5!53!##".=#K; 2  -84qV<% N/L M|P|@ >eI8S ~mn<0TZ7A$R$ |~I/>@XX0P(NA 57!5!5!!!!!#5#27>7#"'.=#'$5##5!53N~~wM D/K+]*(@$g&MwP AABi <^))x*?Jēg:<-M%!5!#".=#'67##5!53!'5#3:>73#3##5!'67#536=#5353!5m. =fI8TM|P|M; 0N-6q* N&?H3[$>>XXQ?R=@;:*V@23=RRR2A=K5!#".=#!#3##"/326=#'$7!535'67##5!53!'5#3:>7rM =fI8S oȧ*Y  . $M|P|M; ss3P(@XXQ?<A,C!#5#27>7"'.=#'$5##5!533!!.''>7!5!|K  & /K#%#T@$h&K|PRP|Ǖ12؎{ժi 4 # (g%?>l`nCQ FRRF PC&<'C[#".=#'67##5!53!'5#3:>7"&='75373267%2>5#'>7#5!#"/X =fI8TM|P|M; _,fnK3AF+-m[+O[,.KPC3[$>>XXQ?g#LBtc4C6% -?B>%(0;)A=A2< ?5#3:>7!!!!!##'67'67##5!53!##".=#!K; frrPv`-eOM|P|@ =fI8TWD6f?Z>[>zi<=">>XX3`E*1$F j2675#2>5#'&''>767&'767'>7##5!53!##".=#6767&'7>7#536533#"/D3 PL10 Ȱ" F9Me) % ?5*,\zMPM ?PK<^ ZF/:M'&LL;`rC(8= L$ -pO7?'`&F+ &,AHDOS= IV <T8XX w8` `W$&\s(š?9jw:tB1:J!}g/ B<FDN&'!6!!5!5!5!5'6767#53'>7##5!53!##".=#!#&'!2675#W$J*[&"O\zM|P|M ?PK<Td̠dA: "|JD3IT:8g??g4T8XX wFq>`H*#" Z<?'`"A,:@\bh#&''676767&'7"&=#'67##5!53!'5#3:>7'6%#"'.=3327>7'&'7?&X :Y\8)0kS>I@?)?+`-SM|P|M; @.[7Q"#!>B9FH"N #%C?)>F0DU1U>T>A;0ib/+AknmR%4#(\%>@XXQ?[`.X)/)&M.T0HB/B"q}y,FGQ!5!3#5!#5335!5335!'>=3'>7##5!53!##".=#!!353!32675#jtMMMMI089.&$\zM|P|M ?PK<TdKߌD3WJ((NkLgwM=B4T8XX wFqgLk(?'`PF GQ5!5!;5#!5!%3#"/!#5!#326=!#35'>7##5!53!##".=#!'2675#4 (g&PJ@(RMg eM|P|M ?PK<TrVG|D3 o0=FS(>%Ϫ*\<Z&'7&'7'67%!!5!5#535!5!5#53533#!!3#2675#vM|P|M ?PK<Tq\zNHsa[BWqrW*zR-Sq(O $D3XX wLw<T+78,5368446Xd1hAA[>H?U>88>U?H>?'`K v35'35#675#2675#!!#"/3267#'67#"/326='67'>3367'>7##5!53!##".=#36767!5!5\D3 >*.WuhI#  I*'%?+HG" #yu , &7\zM|P|M ?PK<Tk 4 64404 #j?'`_4"}j"A._"@U,=$; !KaK8:K :: <T8XX w_A "%<Z>9F #PZ367.=67%&'7&'7&'7!!5!5!5!5!53&''>7##5!53!#3!!!2675#b!U)$M@=>Q H $/F3">O7##5!53!##".=#3#3#&''67#"&=#'67+!#326222έD3 bM|P|M ?PK<T_KWI-8I%s)zI''(U(="$ Kʏ)344f5514?'`<Z;0<W;XX w:d!J;X <@F09=wR7Wk-,-+/@#eq`<K #'DHLTX\z5#326767#!53&=#!5!!5!!5#!5#!"#"&=!#5!5+5!%!5'!5#3267%!5%!5!!!5!5!53'#5!53!##"&'!!K@K{8LVjOaK ?84FLaI+o7*@|P|I>PQ; W%  ;3}. 9)B#"n"!k N!%0!2N *!  P""*"\//.'GG  (.8K &<ds5#32>767#%!##".=#'#5!53!!567!!!5!5!5!33#3#67''>733#3#67>7".53327K@!0|K?OL;Yo8|P n y @Jҁdp 3 Ky[!)I <.<OF<S8W2P )8 1..1*%545E767#!53&=##'#3=#75#!"#"&=##!5#5!'35#3267%35'35#!!5!5!53'#5!53!##"&'!!K>"4'KRn .dzK ' LB?UL,FX*=|P|HARN< W+  F=3 B,H *V**++0 &0%20+. !Z**,*.44!0.PP  *0<4 5!6!!53!!7&<t:N:m3|P|LC-M00F/F{{EX, '-%67'676%###53'$73!53537&9B!c[-H`Phg(eu7LHI^ ?7".='75'75'3!53537&4B!c[-HRm+G! K 3,T-*.^LHI^ ?=#'>7#5'67!&'#53.'#"/4B!c[-H[LHI$"~/ptf!6c6H%?lL.B}& 9>(fE^ ?{mzDɝU>D11 .%67'676!!3!53537&%3!!3#5!#>B!c[-H\LHI N MM^ ?B!c[-H[LHIKP"Gs ^ ?4\+!$$;%&hPh&@M  )A306=6KK$k&!3 .6F8D^^8Z^ZZ?D8?XX?G5?(+5  !(?,%  ,19 "(2%67'676%7&3!!5353353537&5!63R-=cp.HH!!ILMOK>-K,6n7L6jk >=!C vD3A6} F3F<A H67!!5%!5!'53&'#5!53!#3#".=#'>7+!#3:>^(#$rPr%MM .*&69-3 q^PQ   =1:->JJ7Ck?>-AXXA74?n&*- !{9ATCU;=A}}A=FF9An?>-?XX?74?1 04%67'6767!5!33!537&5!!!#5!#3675!. OT)EzFxxaC CT OMb ?7< OT'GFxxcD EeS6(6<2I*5+%ut)8=X0I 'b&*isc?36767&>7!&''67&'33!537&]4>< OT)F?TP>C&^F %%$]*8'KG 1 <1J*6u-BBGL>ol|R737FxxbD Ev=OOP?cN=#A)OT$AB:AA:>6!8???=94?XX?<1==)1#04<B5#+35!5!53!!3+&'#'667'6767%5#33!537&W`JLIddLb& ZL#G,Iwv_D FL>1XAYYAXόaC_gCi >Q0A ԙ@@vxF  6H35#35#5#;!#!#3#67!767!5!&''67&5!&'#5!53!#!ʌKyy6".(yB2LH+5YU_q[Ja'XDU 9^P^3 CGCC;)4L9+;%5TAUq>==>h^A) !'NW%67'6767!5%!5!3&33!537&2>7#3!#'>7#!!!#"/%3'67#& ZL#G\\)>4Iwv_D F H=#.F *2e D/+4XD7!h& >Q0A QQ;N5*6@@vx' $,?(>?9&|;V)$<D-Fd"1* &J%67'67633!537&353!5335######367#5!!!#"/3265. h='DFxxaA BZFF[FWFUI D (D/ b ?7#"'.=#'>67#'67+5!#67'67553&'#53533#3!53&'#53533#3#3 KJp  B ,; wq%bc&  + JwN9? 92[%L8tvr2L,^Z+2IK0p!>=:<9)n,9(u7DY"]7Nw"?O,B>?<@VV@=>>>?<@VV@=>>lp < -?gy}67#35'35#%67#35#+!#67'675#'653&'#53533#3#"'.=#'>7#!#327>53&'#53533#3#3IE JwNB6 92H +YX'L9q6B ,; $cdKp o5L.[Z0:@VV@/;>585)J9 eL'ٛ;><.@VV@64>`?+&!##"/3265#'6%3##'6[K S|)T.og3&4?:K"L-A4+PKFV(F%bM1VEFhJK7'7#'+'>7!#&'#'>7!#&'#5!5!Y27VF  F +4R7>fF &F 89q\3IY 2>FKrgit7-BU42t,F E.2G09EE%>7DDBBp2p*"A?=OFR22l(#A?=?VG(7-?Q!!7!532>7#".5!#5'>7!#&'#'>7!#&'# M 4it_^N5-i]VN`^1.N<4:\F F@4_3>cEF=4ֻ( *)4 +.4"!/<,3?%&B(>L/K0.1{<%%B(>L/C$7 &8J%'67!67#'>7#5!3&''67&''>7!#&'#'>7!#&'#yG2I|E3ewT Hh ~Q/4:\F F@4_3>cEF=4aeӆIj"7HAA34?X7+A/IK-A%>n,3?%&B(>L/K0.1{<%%B(>L/C78J'>7!#!#"/32>7#'$#'>7#'>7&'#'>7!#&'#\4:\F 7 _ #22TvF }%/ M1ȅ-w3Uk/K'4@4_3>cEF=4,3?%&B(>DC/ťR5+}B89lk@7.I=2K0.1{<%%B(>L/C(3.@75!67#' %!!.''>767!#&'#%'>7!#&'#7 5 pD=.c't,E G".0F4>dDF<:D1?CNB'=:D3F[7Fl[Sp&%B?=Y7PA-1|<&%B7-C6I(;B%!!5!5!5!5#'67353!!!!67!67!#&'#'67#&'#)y/7Cd3IPT"t,F R'EE%H47!#&'#'>7!#&'#5!53!&'75!67!]67VH $H*)0P3=cG0G*?4:^P^-7!#&'#M*1)'V_;`H I" B4JcB*AV(>>?9.L]w#A/6A9C3+.u8"A/6Z D93 -CI#'67'67!#&'#%'>7!#&'###"/3265!5!537&K,9DK!t,E,F&F2G4>dD G96xd%N7pd3("N":_K=LiEV>4OYyp'Bn6\TB-1|<,B7-C6GCQ'C&ZCUU/[l,i)>S!5!5##3&73'673#3&67!67!#3!!"'532>7!#5'67#'67!5!5 P?6!6<j.#E/;yn1I H H-d,hcZ' PI)8chQ/2-4M.5,-]w#;EF AMhw&C '95ya>^q* ^/(;&B35%67!#&'#%>7!#&'#33533#!5#!!##53533St,F E.2Cf>cEE#@2E?KMlOssOjp#'C?=OFR?W.s7'"CB-3T;2(\\\BB6B\\)=[67!67!#&'#'67#353!!!!3:>7#".=#'$7!5!5#'67&'#)n1I L!H I" P*63"A P@S H01/CC+  +'0Da0?:0>h]w#6CC!A/6Z -%3/6$&aaAB &%'473w C5B@3 g A2C3)CQ35'35%&'#'67!#67!#&'#!3#!!!!!#5!5!5!5!5!5!5!5!5!5!53nH$@3<4m2I  xs0H I ?)3@WW[iPi[@i@5DD}AA] [F22\y&@ Rb"@H "F-&"{<|?C7!5!%!!#5!#!5!5!5#' %&'#'67#&'#'67!67!#67! k,NN,k0F2>2# H@0>4n1I  E#H..W,,@WCX @*I+:,3L%>HC32]w#;BI A>) @!_)=,P%&'7#5!5!5!5!5!53!!!#3##"/326=!67!67!#&'#'67#&'#)Vv lIPE)[! /X`n1I L!H I" P*63"H:0>.<@?1?VC]<<<<]CV?|P$B&z3]w#6CC!A/6Z -%3/6A9C3$6 1Rd35'35#26=#'>='>7!#&'#!#"/%2>5#'>7#536533#"'5>7!#&'# 9?$<7UI  E9+9?6-MCYU:MP M  .pP7UI /EI4A,8(sA*P4GC% D54B $*A/63KX;7 7I%!5!#!'5!'>7!#!#"/32>7!'>7&'#'>7!#&'#3"KI4:\F C h #22TvF Vo/N%- @4_3>cEF=4R79UU,3?%&B(>EC0rC70N>K0.1{<%%B(>L/C6 [#'67'>7!#&'#%>7!#&'#3%&'776732>7#"&''67&''7&'K.-BJ7UI E!45Cc7UI ' E6&2-MD&]J2%b:8Bn$L IZ2u3Ƒ/ YPR='U|ft6E ''AB-:N[B94B $*AOR1@5UN+!9.*+AVGES(]N5=A3KFX-B+SUlABK)C-A#3&%#'67#!&!!!#'67!67!#!!5!5#535!5!!3#6(7 ~F,83J M;n1I C H-&h&z81#F4*3?*##?@-,]w#6CC A?*=;;p8g::g8(;#2PV67!67!#&'#'67#&'#'67#5!#67'>=!3267#"&57&(t,F R'EE"K4p*":HO!*AE0=Q7)3 nHIR?mI:D=CCC?>6z/# 8ELD#Ac )= 0B%#!%!5!!#!#"/3265!67!#&'#%>7!#&'#jJlM.(O;e+1n1I  H:0>_;`H I" B4J(9.;p@ B \>> ]w#A/6A9C3+.u8"A/6Z D9(;4B!&'!5!#!#567!67!#&'#'67#&'#%&'!5'67)n]]NN8t,F K!D"E,J4/i7)3$UHIR?%^D+.**.+D^)9R!!#"/326=#&'#5'$75##5!5!5!53'67#&'#'67!67!#&'#3!i@8 XO PK@i$#H60>4n1I  E#H&$I@-.>N&= !Pke@bvvb@ek>?D$D.BFC32]w#;BI A[BF4#D!C J[67!35'35#%67!#!!3##5##"/326=!5!5!5!5#5'67&'#%&'#'67!#3.*0+m2I   2 ?$2ZZM*PBTMA'cI4F4] @3<I ?/53s0H ',-&\\?Y\y&@;(+C/9M(A"<=\?Y3)&3Mo> F2&"F4%4Rb"@H); 5FW!5%!5%!5!327>7#"'.=#'67+!#67!#&'#%>7!#&'#"%K%&$*)C$+#kN m2I H=2<p9\H $I# @2ACCwBB4@+78;B:*-C$|\n s\y&A,1F,E2=+k4#A]^=0$Cj327#"&''67&'!3#"/3265#'6=!&5'67#&'#'67!67!#&'#33&'73!6#F.q%I#H ?+%i1vpI *[J'-m9Y0%I;/::n1I D!H 0IE# ?7@9879Uw:CeiQJd-F&dXT]Q!?1=&(4!L3KD2,`{#?FI#A. A,.*% !*>ya&B"Fj?67#567#5!33!!"&''67&23'$73#3#*.=%67!67!#&'#'67#&'#C8+*-aI=U=?I8J4N00{ &((k ]h7:D# n1I <H * I@4>4$! I72>3M.BO>WI>`{%6BC!AJ$S0C/3"J$=FH5> @n#'67#!&'6733#672767674?#"'.536767!67!#3#5!&''>7!#3&'#H1A2$I"DOu,( H <"%8=O *bl3I  F"H /cK {+wE%hrK>6E7-4097{1AA@< N  /10)/k!@:F gm\z7AF!A09/M3M.G/7M372L9> 0E&'#'67#!5!>7!67!#3#5!#3&'#!3#3!#535#535!H1A2$ 25WI F"H /lM~KB.CHD727-4096L>JJ>L )D V|6767%267#"''67&''%&'&'#'67!67!#&'#'67#77&'77267#"''67&''%&'77&'77A~B)7|J)#B7+v ߗ=$* 12:5l3I B!I *J V1:3 - ,#CA0} BwcND9-x ߪ>+ N &0B>8#Eyg%. )(6)#/A6S4A#.- ?  @F10^{$6BE+A2:9*2 %#)$<!3*/$1C8U:A+-3?$-(, () <#7.2)D .V3'673#3&"/326=##5##5!5!#5!#5!!67!67!#33#!5!5!5!5!53&'#^!H & K,.-!QI#PK'MfM1n1K G$J'NHH gD.; B-"(2?CϞDbbD;Re "9?B >.!jCn89<68('7,(6 '9?EK#367!#5%!5%!5!%>7!#&'#%>7!#&'#7&&'7'67LPOppph7UI  E!45C[7UI /EE4A%aP)S\a&c[1_-^(+=2B ?++>6E ''AB-:N[B94B $*AB-K=X;9599;B989A4m{2)CMQ!5%!5!%67!67!#3#3!&'7#'67!53#5353!53&'#'67#&'#5!)jjo0I H H#)}" xqƠO,c2>2#I! H-=bjgEE3C[o ;EF A+ BAA>H>LC5-W9B4GA4ABBB)):,3+E:2cFF)C L&'#'67#!5%!5%!5!!5!67!67!#3#3##5!'67#5367+3&'#F,83  n1I C H- @P10h, DP60>M?&4*3D!==p==2=kF%]w#6CC AD!yFAj9;(@A"$@%C3)B+Ma%!5%!5!%67!67!#&'#'67#&'#'675#53533#67#"/326=##5!##5353!53 n1I BH % I;084$ I72>"JBMff9B"C`!5%!5!%#'67#!&'67533#67".=3673:>7"67!67!#3!#3&'#H1A2$#J"DOuWIOQ() H 7)l3I  F"H /#AP>6EII8H7-4 [-1A3@s} M!@:F G &!' ))1\z7AF!A [<-;L9)E$A!5!#!!!#5%!5!67!#&'#%67!#&'#!#5!#5!53OON8Nm2I  H:2<s0H I& 9*/L6L9'UY,9, \67&'#!5'!5##!=#!#5!5!5+3&'73&'7'67#&'#'67!67!#>73+!=<*2N\P\MTC'!:HD0>4n1I H H 2 F#UM ,J 0%. [[8X[XXAAHc'&63"2?55C32]w#:CG!A5-0H>;MQ_67&'#'67#35'35#'53&'7&'#'67!67!#3!#"/326=##%33#"/3265p# Y2>2#9 "@ Y0>4n1I  H H.E FZR  LKM%I/UO+! 182:,3$<(LL7GrA<.C32]w#;EF A$<A8U%? $'xTdT*B'6 %7M%!5%!5%!5!'>7!#&'#!#5!#%>7!#&'##&'#'67#53535}7UI /FB/<MK>7UI  E>5CmMQ0?7K<_1|=K}nnnn/7T{LGN N>Rٯ{{&G*#H<2<(FINN\y&;CG A9'R$9-4%*QJA&!!B6JAF<=*9': U&'#35#35#&'7#6"/3265##3&'#'67#3#&''>7'>7!67!#3-=,5E,0j*b LF2>2# fbX=> , '2UI C H. 7!#&'#%>7!#3#3#3##5#535+35#5353&'##".5!#"/326=#3:>7dddddddd7UI /FB4A;7UI  DMbCA;5C\9998;/k#B/PP# W& @?1@@1?4B $*A/63KX;$6E ''A/6$:569]]965:C9&[B<<; $"B"A "Y+. &)D*p67!'67!67!#&'#'67#&'#'$7&''67&''67!5!>7!'67!3!67.'##"/32654' 4 n1K L$J I! I2P5- Hg.; ݁to*M7(M *1SF8JYVw1y*=IR,<3fY) # Re "3>= > / C10- '%37,\=B_P7:4A /$8)A $yv$juA;>+9*>/V;5:p 11A+a C #.H_!5!5#!5#;5##3&73'673#3&'6=!!5##5##5##!#"/32667!67!#3!5?E~~96$31m.#@/<_=sql~HGK.4%n1I  C H(fGOOOOO20O E/6,v3ۉ4+W5#? s]w#6CC A E<))Cv&'##676='67#7&&'#5'67!5!5'67'675#53&'#'67!67!#33:>7#"&=#3!!E(=7L?'*#5HD565P 2 PR'8-9:m2IE#H- ; @ Y+HEP__PEFOA:45%>  !4<3-HNAO)B<N^735'35#'>=3.67!67!#&'#'67#&'##!##5353353'67#'67!"o<'ZsKrY):k4$! I72>>K>>KGB'$7>P$E $Ʋ@QB,j]]j,B`{%6BC!AJ$S0C/3"J$=FH5PA/+APPPPO_sW .Al!D w%!!=!35'35#735#35#"/326=!#5#535!5!535#535#5353.'#'67!67!#&'#'67#3533#3#3!!3#(P lg)Lhh;x뼼X+96n1KD'J#I! _6E5"!zNмcPhh5g5525525+^++?6< >$7+3+5# * /*1M` $)6; !> / C0'- '--5+3+7$> B Oi3&'#67#%#'6'67'67#&'#'67367!#3#&''67&'3!#&'#5'#367#53B kCSL*.\H.I#){#2`7+-3*'*K90A4o1I ;H ZG,WXxhp`=+'KV[K\DHUQ @# .@?khr@1Z 0Sr."3 *kI9F72az%6BD"AH9T<)KQW]c#!=#%#'67#!&!5>7!67!#3!!!!!!#"/3267!3&'#677&'77&'77&'7H1A2$I%H5WI F"H /T**p2->]P6"!@B.C%5#C"6C @!z"<#?x??7-4097??T+p6!7AF!A096[_g[`T X^TIQO!G,:<)B%\35#35#5####35#5!#3#"/32667!67!#&'#'67#3!!#5##367.'#}IwG1H9 n1I <H * I@4>4$! G ~JM072>IqR~.Wa??aO)A.`{%6BC!AJ$S0C/3"J$ J#4W52=H5)C ;Lo67!35#35#!35'35#:>7"#".=##!!&'#'67!#67!#&'#!#3!53&'#5!53d!#F.)8 M &J<<6<5K#H$@3<4m2I  xs0H I ?)3h$h3(2 :@CCC5@)!-+6 7^& ~ [F22\y&@ Rb"@H "F-&"<1)::+/<2 )D "&*.dh&'#!'67#!&'##3!35#35%!5%!5!!!=!%67!67!#3+3#3!!!#5!5!5!535#535+355D#,U & !GK,.̯R  b n1K G$J'UM ymPmy Mo('+$ B('-"CCFF6606f6f66Re "9?B >.!C,3'*Re "5H $5)1(44(1)4"Jfl'67#!.'#!5%!5%!5!'67#5!67+3.'#'67!67!#3!!#&'.''676767&'7&'!'67&!A H)6["P ;6<3n1IJ#H (E_[OEA*-;1I%8ro0?2 w89Z;]y! + '$//\//-/?,=> Q J/3[p &4>< @ + >C-?27#'>7#53'67#&'#&'77&'67767PP]m2K E&J)G'Z7Bq *3"E*94JFF1 ym _/- E6%!`PEm.qGO6PWJJ$:$S<@NCDO]]ODCN@Qg 19> "?!!M 5(15[jJVtP> bZj <~V>) 1>,!< 6;" ;$;3?8D7D"K=)C Y&'#35'35##3=#!5%!5!!3265!3&'#'67#3!#'67!67!#3#"/!( 6$3.I<%ɳ @0A2#VM,n1I  C H('L}PO20==4:n=q::<<2:B "O8.3 E{+]w#6CC A EC#:-)D y}&'#67#!67#';.=!5!/67#535'67!#3#3#6767#5353&'#'67!#3#3#267##5!#3'675#!!/:$ onsCp Gi#xB@6n1K S_ A>Y6-40>6y5Jx_  B L '*NNe(0!Jt2)"%'L#)L5FDM;9J=i 0Xm  >*!7'%7A 7(0=}23)-Pd >27+!7M3 -'++p. VndN)B 3735&'#335#35#35>=353&'#'67#33#3#35#767!'&'7#'67#53#535'67!67!#3'67#3&''67&-L#+5`  Z2C4*)7759oo?!:<)Q7'4C,02e3]/B==)n1I @H "+>r/NE_mPKh\B?: N#2+FG|GG@G/A43!! @C>@.6\DEjܚ0?4!PG0BD@;>0<`{% >,C 7)C hntz#3735'5#;5#&'7#5!5!#35!5!533.'&'#'67#&'#'67!67!#73!3#3##"/26=!7&&'7'67=OK*Z`#RIOI C15=(I:0?4o0I  C I )(.;K}} F!aW< fi(fF*G$Sd(Xa;_>]9B????0>>>Q;<-6=/.9<<<7&)3 :#C52_w#6CC%A$79./=TDA J/:=596<=<3G|u+s)E <^3#5!#35#3575##367!67!#&'#'67#&'#'675#53533#67#"/326=67&'767#5!#"/32>7#'.''>7'67EKKnKKn1K K'J $ IJ>B5%&H:0=$$JllMPP%22+7$3*9cj H%@,%C P6$)A&! Y@3,&yz ! %%`I~JJ5II5JzXm  5=@!?.#2:'.78,>1CAA BrU(A,\ 1NZKz={)<QMV*/!4>( )E#'+/Vae'67#&'#5!3!5;5#!5#;5#35#35#5#67!67!#&'#3#3#3!#67!!5!4-  H1*0!__֋Zϋ'zzzz|n1K K'J $I! H:E!ssIT/H .9`_, /'7) / C7)9777'Y !"AU;(@@ *J "@IU]u&'#%'67#;&'#3326=35#!5'67367!#3!!!5!'67!5!'#!!5!5!5#5##5&'7#5!5!5!#3##"/4>#+J! oBY&()@31+l2I I$H .{:6:<!v$tt"IK5A/P60vZPP!9;4)%,"419 GSZ*Nd$02;,"4&--+%//7.%22%.&=3"3&44&3`/;$Bnr35!5!#!#5#3#3#&'#5'67#535#535#5353&'#'67!67!#33#3!535#535335&'#'67#35!yKLNG3?>J=g&s>452>4n1I ;H *HKKT+TJJG>J4J3*'*HyhhJ#g# B7B;QW.UFnTB]h;B7B:S>H52`{%6BD"A 3 H:h<='67!67!#&'#3673&'7&'#3#&'98,02wwywB+-- "%fZ-9L;J >R<#M%il$$(0(&(guc^- '*)/UH } /? 3n1K K'J $IH1=,k I+!3)/'0#3B4=,%Ve9)42%?O/7)#&0)EW]%67#&'#3#3#3#67627#"''67'675#535#535#535#5!5#53533#3&533#67&'7%67!67!#&'#'67#&'#34"V2Z96BR>;EZ)%%v?P I $>*>2W&>D9CAn1K N$J $I! G5E5!$ I:0>Su+1*2*13< 4e:+84%? /363636=><77<>Zkad=fNx`MN?%>PXm  5@=!> / C4).,-&?1)D |%!3:32667#35'35#'53&'#5353.'#'67!67!#&'#3!!!!!!!!!#*.5!5!5'67#3#3"/326=##!~Zh-Njo0:B.;6n1K O&J!I! I'GLB???- / C+6551515%%%  5-0:9(7=<45)EKX%67#&'#3#3#3#67667!67!#&'#&''67'67#&'#7&''627#"''67'675#535#535#535#5!&533#67&'734"V2Z96n1K J%J !I! @)<;7*-54;X;1H$80>iC 3%*!&"3;XBR>;EZ)%%v?@ I $>*>2W&>D9CASu+1*2*13< RXm  ;>E!> / C+( &=+5%2(!Da*1$#B?1&!%+#6&!Ce:+84%? /363636=Zkad=fNx`MN?%>P2'!!&'#'67!5!3&'%'67-L-LPEFDP8]DX9B=}=B{Kww~y' !J7&67#&'#'67#533'>7&'765#5!#"/326#&'%@#?-B-0o'(.4###53'$7%#&'#'67#533'7&67Phg(euy;Q5WI1Q)m1I@'? /B/GlG FEF"dAr))`xqEA?rq|kvq yx);:'6$7!'67!.'733673!$'#5'67!53&'73I-fd1hL=Kbm?3PLQ5@%9P80=#'>7#5'#.'#'67#533367!&'7&'#"/%@#?-B-"#/y{q2YX 66 I-N)i/Ixh:I0QyR5KCw&!9>+sPe~vets {v-M:Bɝ01(@H% proEA?&͜V.>F'".DJP#"&=#'>7#5353332633##!5!%#&'#'67#533'7&67< <j (X`L PLyKA5WI1Q)m1I@'? /B/[069 :k>+NAkk-WCCA))`xqEA?rq|kvq yx'5KQW%".='75'75'$7%%3:>#&'#'67#533'7&67sK 3,T-*.^m+G! $~KA5bI1Q)m1I@'? /B/ 6:A!  $ DBDBD(#C#&D'48'OA)kxqEA?rq|kvq yx')/5!5!'5!#5!'>5!#&'#'67#533'7&67d^2!O f>5,~^3, F-H(h.F=%;,=0JԡFF <~3EzA:%jKxgjEA?jyzgqvt}9&,<7&5!63#.'#'67#533'7&67353!!J>-K/cm7L7gvn4E G/O(l/G=';/? N  F3FA#%'TuqEA?rqq^vq ,D#K8+17%!5!#3673#55!'#&'#'67#533'7&67pK MMikB?5/1I1Q)m1I@'? /B/9@FQ V6@}sA)dhaxqEA?rq|kvq yx' !'-5%!5!5%!5!#&'#'67#533'7&67!53!3;;;sxB?5/1I1Q)m1I@'? /B/v_AAA)dhaxqEA?rq|kvq yxB1)/5%!!73!!3#5!#7#&'#'67#533'7&67txOMLB?5.2I1Q)m1I@'? /A.+'ED@@QA)dhaxqEA?rq|kvq ~s< J35#5353'>537&%'67&'#5'67#535!5!5!5!5!5!53!3#!3#`KTC($Kn6>.6/-A5?,a.ugLa(]@\@L;ii\DEE׏t$:r(&ED%DFIB&AGV1xVsR7Na?>D?E?NN??G)26:>35#535!5!!3!3673!$'#5'67!53&'735'5#!5#;5#}I\RG0F'5P04D7INvGGGAAG<@31AfUAexxeAUfA1-.O<' %+=A%#!'35#'#&'#'67#5337&67"/3265!#!5!ZE ƃc^5=H-H(h.H?!=$ @$]RpJ% kCqP7#'6735#53#367#5337&6753#3#"/32>7#'6735#y=S6.;J6\%%lJ" ^Ho4JA'@-; &lJ" ^H)As)c|hz@=;E 7_c3 âBTLBAUwwqt|TLby^,E 5ab3 âgp6!0@#&'#'67#533'7&67%3!'>=3533!53#53533{|@>3+)F,J(j-F<'< ,<.'KC$!N߫MA%bZogmEA?sppqv wuE*_nBBEAA'/5;%!5!5!#3#5!#3675!'#&'#'67#533'7&67RP MKoxB?5/1I1Q)m1I@'? /B/(DDOJ66uBWmA)dhaxqEA?rq|kvq yx, *59=#!#57&67#.'#'67#533&''675!5!KO@#?-B-'iX 66 I-N)i/Isvusr5`5e~vets {vAH% proEA?DtIvxItCC^A &=CI!5%!5!67#.'#67'673533#.'#'67#533'7&67CCF=UQs!x,YHk  @L&I'vn4E G/O(l/G=';/?/7#'>7#6733673!&'#5'67!53&'73SYUUgLS$!Y"]a&:%A,&-$MNC= q'cB@"HjPLS4?!>‚Pق(?=JBL;"+<,f:*+<0;@V:XC=mvaZcg C!~z.<(qEZcJvBC",7A_OB`yy`BO_A(6(>H!;X67#%767!5!&''67&33673!$'#5'67!53&''67&''67533#33W< MD =e29~S}dDeP=:PJV3?&<P307-!WAF%2d/:M tdG2J/7 # [FDb@@UI,B3^#?DŐFE"45AfUAexxeAUfA5* @-( 1Ed<:;9Ct)@9' "(QV35#35#367#'#&'#'67#533'7&%!!3#5#&''67&'767+35#'675#렠emH=2$8F,J(j-F<'< 4JI. ۢSCF*?&;!H#9,2]]];(CA%SyngmEA?sp?NN@eCW D fK$C"7;F%?3/MrNiZqv Pc%>1 -R7&67'67#&''67#5353!#&'3!!##&'#'67#5333#53 =%;,=01] ?21-21M+"nOq TL,CP#OO4#.F-H(h.FwnK&jyzgqvt}4tF?=H4A3_I:AaaADAKi9_JB?\B "VkvgjEA?AW<C !'-CIO3#5!#53535!!#"/3265!567%7&#&'#'67#533'7&67IdIP`q%?*E;# *];A9hp;^G=J0n<35*F-H(h-F=%;,=.ґlCC{CF%C Ccn(w}%Av&L`ugjEABjyzgqvyx1#)AS%!5%!5!'#&'#'67#533'7&673!535#535#53533#3#"/326=!#!ff}_P&5HH-H(h.H=%;,?0P\'M\$ K'DD9DAY%xgjEA?jyzgqv t} <CC>A:C0B4"(Do#67#'>7&'#'67#533'7&%##5##5#'67353353".='6736732>7"moC m6G,K8@  F-H(h.F=%;KKX9,=HKK*-*9*8Max(yA#F %!A~]KBXV7#7!5%!5%!5!%7&#3267#"&=#'!!##&'#'67#5333#53#'67353!533#3:4r2(((/=%; %(C ! N,8BF.K. /3F-H(h.Fzo(b99,=+M(MUU_gJ?MMMM7NDjyz\=%%% +sPg#-MA6q,/!yugjEA?AS?5VXEqv]]]]?'Y_e67!#5!5"/326='67#53&'7#5!!'67#!#&'#5'67#&'#'67#533'7&67UREo/129H, $qRM+LjtCX9K8h#mOo#h 06F-H(h.F=%;,=0s(7)Aeo85< eK=9Z>7,&==O9>]G*8B~$ 9@M;OL;M+*ygjEA?jyzgqvt}' 8NTZ35#5#5#'#365!#"/326=#'67+#35#53533#&'#'67#533'7&67}{~{br\0 %X8O= =~IfjjMrcD0,F)B'_+u}F:"9,=-)\!ʨ{k)=1D+,"LEAP3Bov`gFAEb~l{u y~'!%HNT35##3#3!535#535+!'#3=#'#3%#65!!'67&'#'67#533'7&67!#"/326=##5##&'#'67#533'7&67{{D~{~~gooKKppKK9@FD%ZC+*~D{oF,3 'F-H(h.F=%;,=0[[[[8XXX[@NNNN@VVV^>"]\F!A #;:Ae%N[zgjEA?jyzgqvt}7 #VZ35#535##3=##!#57&67%3#33#!535#'67&'#'67#5333#653535!æ|||GK=%;,=0++M/'A$-, F-H(h.FwoH+MJ;>NJJ545jyzgqvt}?>@:NR(Ps!jKxgjEA?Ac1SⅅE CY_e5!#5353332654''67&''67&''67#5!#67&'##"'#&'#'67#533'7&67uYFNAN"z%~ k%dVm$gWuv$=49ALBb&c AI+5=Ij63F-H(h.F=%;,=0YY&H(^;c-)kQ;Tf'@39BZAAm_=N,aFbG^EXd^I.AuA%48qgjEA?jyzgqvt})7 ^b&'#55##3735#35!5!33673!.'#3#3!&'7#'67!535#535+5'67!53&'73!5!eGLGeLUaPgN4E)8 0 ~$xwỻKN 0 ݀-=DAGda.5MM5.a00-0]0]00-%9=1,?L@?-4471<;@71+J.;*>744-?@L?*.1E4 < #'+AGa35#37#3735'5#;5#!5!#!#5#3!!#&'#'67#533'7&673533533#3!#35#]iggiiAgiggyLMgg1y\290!'F-H(i-F=%;*>KiKC&11FFFFFF6GGGL+k+jGLFBk2S[_kDBIjyvdq~LLLL@141Nj@ x35#535#35#357&673533#;3##67&'#"/326='67&'7675#535#'67&'#'67#5333#65մ {{{=%;*>N{F(()6'0/6;B|S9">5 `y!SC#;24($O=&.-F-H(i-Fi\54$K:>KNN=jyvdq~ VVA>@A96:'F5E-=TzQ.C)OcI8083G(=;"Q:Nر-]~/BkukjEA>Atxpg`2 NTZ!5%!5!735#535+35#53533533#3#!!.''>7#5&'#'67#533'7&67ww[qe43KZkkLLZ_\*-ce-, F-H(h.F=%;,=0VV:R~CCAovAWC=UUUU=CA>5WBd>=cBW4*!jKdgjEA?jyzgqvt} ' !%)CHLRX!5%!5!35##3#!!5!5!5!5+5!'#3=#%#53335!!#&'#'6!!##37&67iiv'K#Ku}FolcD0,F)B'_3N:"9,=-----9h264AA462h9g66mAE<"P3Bov`gF6b~l{u y~ '#G]ci!#5##5##5!5#5!#53537535326=##5##5##367#5!!!#"/#&'#'67#533'7&67KIK'𕕕n`E_E^K b '7$`D0,F)B'_+u}F:"9,=-ܣգ8AA44b44b44b44\ @#??1AAP3Bov`gFAEb~l{u y~ '  *u{3535#35#675#735'35##3=#75#7.#65!#3#3+3#"/3265.'#35+35#'67&'#'67#533'7&67rrs=Y(oooo'ppp7,'co@2BdddHFn)H23HnFFr/&@#,, F-H(h.F=%;,=0+++++ X??4=q?s==\0Q JAs~U=+;+-F-A  ,qK-+ڇP)Ln jKxgjEA?jyzgqvt}<>"(.7&'#'767&'76767%&67%7&@]R?Pr(Lmw43i1n}925Ocl2l,r/x#"#0 oD4mj30ef2i`624{ey0{j5|n3t5/AGM27>745#"'.53'767&'767677&'7&'#'67&'7R J 4*6(>L ]&CH+<3@@E!UH!U[la/!kr! <<qf\u |:+177.'#'7>7&'767#' %67%&67%7&>_P= Pr 1um1%)qM4n ]4.B "n^2!$QC B7Afe W{2G|Zj.o^6ii6r*/9?E#5'67367367&'#'7>7&'767677&677& >Mš4K`rM@)@gM]K4+./?3B& G?;Th $ A $?AF ;!F ?#? v~ ! i A # ~O> + Pfko?ks33& z*/&KQW%#"'.5!5!5!#5!327>7&'#'7>7&'767677&677&uN"$!I8/D_O #-.512@)@gM]K4+./?3B& G?;Th # A $?AEHG &,-jDC@>5v~ ! i A # ~O> + Pfko?ks33& z*/?EK!533##"/3265!7&'7&'#'767&'767677&67%&'7kOVV(U7pi5*&DP;F:@(@]M[K4+./?3B& G?;Rm # B $NCBDZ,E0{u ! k A&~O> + Pfko?ks36(u s*4EKQ7&%767!#"/326!'&'#'767&'767677&67%&'7!AR=A=@c)J ]R|w92@(@]M[K4+./?3B& G?;Rm # B $NCB"|8 0<`5 F N]"HJ ! k A&~O> + Pfko?ks36(u s%/ 06<3!5!#5!7&'#'7>7&'767677&67%&'7@)@gM]K4+./?3B& G?;Th # A $DA ?lDDDDv~ ! i A # ~O> + Pfko?ks33Pkr v*/#)/I7&'#'767&'767677&67%&'7##"/3265!5!#5!#G@(@]M[K4+./?3B& G?;Rm # B $NCB!#K+f\'$  ؑu ! k A&~O> + Pfko?ks36(u s H_-F5HFF%6$*0L7&'#'7>7&'767677&67%&'776!53533#&''67&G@)@gM]K4+./?3B& G?;Th # A $DA ?:H#pscOHR'\d%] v~ ! i A # ~O> + Pfko?ks33Pkr v DDѤOO=OX`GAAY#/ IOU67#73533#"/326=&''#.'#'?&'767677&67%&'7[@{ ?!P=!PP  71J,\!I7iK['T++./?8<G>;Th# A $?@ >{G?np`gkpp}U*E*#|d^Gk  i A6B> + Pftf6krA%+r %/?EK3'3#53#53#5!3#37&'#'767&'767677&677&A!h"@G~Y\eq>*?]KS* W\ni  pi26" nmn&/2W]c3#3267#".=##33'675367%7&'#'7>7&'767677&67%&'7RKE;O (&!03(dHHdp[dmLxV^@)@iK[G9+3+?3BG> + X^ko6krA%+r /*MSY%'6733#67"&536732677&'#'767&'767677&677& =3LLR^.MMS2ii04B#< <UKJ*M+,+?3< ?:7 =J FQ> = UKH0G+,+?3< B77&'767677&67%&'7-\ &$ @ 0(8aEU 2>XS ?@)@iK]K4+./?3B& G?;Th # A $B@ >fDnRm'>O$> -B rFv~ ! i A # ~O> + Pfko?ks33Vhn r%/ .SY%67#'67#5!3&''67&''67&'767&'#'7>7&'767677&67K(g:?!(%0^L`$gMY~(|YX5}9< > ^?*AjK]K4+./?3B& G?;Th# A $o "!|.DDP_A_C=F`f@9>h.',qe fl|y # i A # ~O> + Pfko?ksN%/ \677&7&'#"/32>=#'>7#5'&'#'767&'767677&'767!&%# ? $;=K=n&7<'bO(" ~{/mqa"/?]KS o;H/MZM nmnm͜V(?F.M9Bʞ+#1=;B # h A&dd>* W\ni  pi2SH&21<BH67#7&'#5'7>7&'767!5!5!5!5!5!53!!!!!#%&67%7&[X$S>P_=PrmQ: =::JnTnJ,Q*r+g&z&PV?2'Ie(  >P51)!&=F;F?CC?F;F=)eS;K5GE7HG;K%7 FLR#5353!!!#"/32>7#'6'7&'#'767&'767677&677&zN+E$@<5vi0!(YY9gM>(?`KS* W\ni  piB&& nmn<; E67%7&767!#5!5!5!53!!!#5!67%.'7&'#5'767&Co*l$}+9@WNIppPppI`Y4 2b 4?[T=Pr*_ ER5UI8OQ;Y417:ZBOOBZI8) Ug3nf 6']e'# AL8%X^d7&'#5'7>7&'767'736733#6767.53673:>7+%&67%7&>P_=PrmQ: =`G6I/+KdA6U^$&IBLL()F4730Q*r+g&z&'Ie(  >P51)71?8bA?%;6SV ;"@;D#^  !,.+ ,eS;K5GE7HG;K!/ AGM%35+35#373573533#5!#&'#'767&'767677&67%&'7ՑܑK>#KIH8fKS*_Tni  grK%^: 9?E5!!!7!5!!567#7&'#5'7>7&'767+!#%&67%7&L[X$S>P_=PrmQ: =::N,Q*r+g&z&z[[:[[[[PV?2'Ie(  >P51)!&h)eS;K5GE7HG;K(/ ;AG#!#5##33#3%7.'#'?&'767677&67%&'7!HK{{{{E{{{?+AiK['T++./?8<G>;Th# A $?@ >6R6!Ax!7}w  i A6B> + Pftf6krA%+r (/&,2N37&'#'767&'767677&677&33533#!#!!##53533}<&=XKH0G+,+?3< B7;Th# A $?@ >oopEEV(D+}w  i A6B> + Pftf6krA%+r (/#FLR#!#52>5#'>7#5!#"/5!7&'#'767&'767677&677&KM%c&Rr ,/CSIZ<&=XKH0G+,+?3< B7<&=XKH0G+,+?3< B77&'767677&67%&'7A@+$@5NFTI][B/'CW:E 9;H=;Ql$ A $>A @ /(,TXCxxCxn^*" mI  ) DgR}zZC h A % sX=([Zvc .oo JUev p%/ 06<D%!5!5%!5!7&'#'7>7&'767677&67%&'7!53!3(@)@iK]K4+./?3B& G?;Th # A $B@ >2]HAv~ ! i A # ~O> + Pfko?ks36Vhn rB(/"(.4:N7&'#'767&'767677&677&'67?&###535#5333#,<&=XKH0G+,+?3< B77&'767677&67%&'7767!5!&''67&3!5!5#53533#G@)@iK]K4+./?3B& G?;Th $ A $B@ >J=A^Y9a@hYn}nZmO]N v~ ! i A # ~O> + Pfko?ks33Vhn r*\LHpBBX=,C0O7&67%&'7(*1M#F0@;' V8g+ -!?'@)A;:1X8#.M61 5=H6H# < ! ;9B;F?EDDDbU)D*D BR}'="YO[w + D6f Wuf%E;A$) h A  ~8t} o(1>DJ#!#5#3!535#535335!7&'#'767&'767677&677&KOuNu<&=XKH0G+,+?3< B77#5333#326&''677&'#'767&'767677&677&uI$_T*\Zl3aQeM &-_5<@4>BE+E.>*?]KS* W\ni  pi26" nmn%; !OU[33!537&&''67&'767767.'#'7>7&'767677&67%&'7NV8bR3OdiaP5I.AI/E8TU@Y4?=zAgK\4K+3*>9;H=;Th# A $?A ?;wBB-i|5x$B@^^@A;WaUWaQ0E\k#p # h A % Uv= * [Zvc .oo ?'Qev x*5 ^d67#&'!5!'767&''67!.'#5!#&'7&'#'7>7&'767677&67O: 9]SVi$@{[?5')6xIH.Gc\& MM2A0 UM]K4+./?3B& G?;Th# A $G\ Q/@?0@S0C;C2&4s%&@|VF7E55k wpv -i A # ~O> + Pfko?ks:-%:QW]35#35%767!#"/32>7!;##'&'#'767&'767677&67%&'7\<d.K ?^C /G5!=TKG:<+,+?3< <<yx}} ,7a6 D"5%TF*2jl h A(f`="Sbqj 8at9-$c = OU[35#'&'7736=#5!673#3###'>7#5.'#'767&'767677&677&Bÿ<,1G+2:ouU7(J!4uM GO;G? q,TKD(9;*,+>1> F1;Pd ? #= ? MSATH?``pZCSE\^O[EDWL1B}p h A:c_="Sbko.qaN# yq#/=CI#!#5&''675!5!7&'#'767&'767677&67&'KOsrrsy<&=XKH0G+,+?3< B7>F'Kp$o#/K~48'=@ 85#B2W H1J60QD 4@99&> D ="Sbqj. qaZDx h A*[؄# hq^{ek{U;XC%OO%'"8#3+Cb~@`(%;#;agm7&''6767#53533!67&3'>733267"#"&57&'#'767&'767677&677&@QDA06&P,*^Kfi3]ZK 0F  I#m>*?]KS* W\ni  pi26" nmn$/"(.RX^'767&'767677&'7&'#'67&'7'7>7&'767677&'7&'#'67&'7(]&FD*A/?@E!UHG!QL>cA0 A N{C/ C,A.3A.cZ?!\Tla/!kr! @:qfYl |"A - j_5!U[jd/!gw! @:q& g #/QW]!&'7&'!5'677!!67.'7&''6767#5.'#'767&'767677&67%&'7jZZs"f"s<# 'E0AGE ,/[KH0G+,+?3< B7*?aKS*_Tni  grK%^%/AGM5!5!7367+!#!#5!#.'#'767&'767677&67%&'7OT='gLLM4eKS]@@| h A&dd>* W\ni  piD$%^%/agm!3#"/3267#'67#'67#'767#535#' 7!#&'#5&'#'767&'767677&677&e41;VR1&"P I_xb#l=`Bax d{ KaKRx=XKG:<+,+?3< <<Qa?-= h>^O=S~lM % h A(f`="Sbqj 8at,:# ~%/-39CIOm%67#7.'#'767&'767677&67%&'7'6767&'7&'7!#&''67&''67#536F( I=.?eKS* W\ni  piD$%^6dt%A$dGIduRUt 4CyU;F>X4d!EL &JYC'%/"(,6@J\7&'#'767&'767677&675!&'67&'67&'673!5&'735#5!(=&=XKG:<+,+?3< <<>`@OO*0 *x -17 D`lnȊ: % h A(f`="Sbqj 8at,:# ~C  28W]%&'767&'3#5!#53535!##"/3265#57&767677&'#'?&67d3>P2@:]i :I_IPeq%?)E;$ i:QB=F+ ,)?75 4C<5$5&=MKK*"U ? #{ t`v hV&-VYґlCCxCF%C C'q%=(Q`y^0Re<u # h A?<. -1W]!5!5#'>7#'67&'76=!#3#.5!7&'#'7>7&'767677&67}%Qa{M@994 zeT_C;$;QH}6H"+ -!?'@)A;O_ < !x`#)AkB |Ls)(!fm s]{`AMz!Bj~AAr h A  ~8="YO[w + D @& / 5Y_e%#!'35##'>5!#"/3265#3#3##5#535#537.'#'767&'767677&677&aHΉ B>M7oouuKvvoo:&;SKD(9;*,+>1> F1;Pd ? #= ? *>>:W5S®k#V)C,U9h;XX;h9ru # h A:c_="Sbko.qa,:# ics / 8[ag5!!' '67&'767!5#53&'73&'73673#&'7&'#'767&'767677&677&np *nZ:=9Yb85EB!6!B 6v%E Y7?npy=&=XKG:<+,+?3< <<ԕؙ@ 6OEM K/dtA]MdZUmYXQhD*C &i h A?<=(Q`y^0R:+2y / @g67%&'7"/3265!#&'#'?&'767677&'7!#3#27#"&=#535#53&'73673 ? #@>]RkH1aKK*"S+ ,)?75 4C A3>b@]4]HFcVB.2I`&'767#5!&''67&%767#5!&''67&767#53&''67&?67#5!&''67&767677&'#'7>7&67%&'7 $.,9;%+-2#>X%N9EA4;6M7IUBAV%O:>,:7 !1%2'Hw&hFFA2>6 Q:KWDNg%`K=h+ -!?'@)A;:1$;BH}6H# < !;93I=G0"11>BBYE*0! I+:$E;AJ9ATBBpT)B 65!:/D1$-59AAZD,(/*j;90l:EXDLbAA_7"B&CE%:!DO="YO[w + D6f r h A  ~8t} o/ $*i!5'673&'&'5#35#;5#677&'326=##5##5##&'#'767&'767677&'75!#"R84}H}4YT??T!SSTT ? #= ? ! TGSGSI7RKD4A+,+?3<<=;T` 7'! =&&/#FjjF#LJIIJe( |uC &s # h A*[h="Sbqj. _u,Vv~]I(%9 !W]c3##3533!&''67#5367!##"/3265!&'#'767&'767677&677&GG2L"}L0=?H#C.QK' d=XKG:<+,+?3< <<*?]KS* W\ni  pi26" nmn2+1Q!5%!5!'7&'#'767&'767677&677!5+353!#3#!!#5#&``;&;RKD4A+,+?3<<=;T` ? #= LM M? fjj7!&''67&'76767767#535#53533#3#3267#"&=#'&'#'767&677&V18%7@G/7j`ywsK1+-~+'/@3<B7<"/4xL,*D " Y,QtY#UKG:: ? #= ? h6FFCF>S&}.' &{HO:@JNI4aKS* W\ni  piK%^: >DJa35#35#5#7&'#5'%>7&'767##!#3#367%&67%7&767!5!&''67&;>WX=Pp xG839KssM_>6H+q*l&%wD#C^.5qRm_QhUCB99;;'P])  ?W/1 &;9;958,Y]/`R7'6765##33#3#:&;SKD(9;*,+>1> F1;Pd ? #= ? UH\}3JRK<URKKu # h A:c_="Sbko.qa,:# yqAD_T:.cGC"7PD~DA %/ '-HNrx~'677&7&'&'7'676767&'6%#"'.53327>?&7&'#'767&'767677&677&uI~4vF@Ex6~!@G+6";+=dKS* W\ni  piB&" fac!9 SY_#36!5!!5767#535#53533673#!#5!#'&'#'767&'767677&67%&'787$$>'v^㾠M@C^3=,MK#aKS*_Tni  grK%^N t%5###3675373#67327#"''67&!'67&'767&'#'767&'767677&'76=!&533&ZZXE_ : !g9 %-?!O  CG5Zv+X&J? 24 7 OF|5"$E* -!=14A)8R\9$QDK!ՠ>B^䬋 AA64JC̔mÎ5M!fu&};6J&#t} {nd (iA6As="YOq_ ) nT >Bn|Ei#II#@%<-^dj!5%!5!265+3673#67&'#"/73'>7#5&'#'767&'767677&677&MMi HO/7869FBK-{TDA9>)Q-Gr! dKS_T+6z5#;JO5P(TB[>=hU)Bw{2R25+~@6*h A&dd>* W\ni  piB& fbc%/ 5;?Z#5!!5%!5!675!7&'#'767&'767677&675!#67#5'&'7267#5!M f**֘<&=bKO&R+'/@3<F5;V] ? #>//N. ; ) 27?WW7S C]u % h A(C="Hmqj2 oi :+WWA}*dw dd|A.;Rx~3#3#67#5'>767#"&=#'>=3326767#5!&''67&7&'#'7>7&'767677&67%&'7ԧHcQ`Kry_p8 +F%,2$ ?1-!,AAT[KLy!oI:\;&<SH}6H"+ -!?'@)A;O_ < !;9]=>#A˹A/8@.B3.2 dy.-&ofD"KB@`BBUG3C7PN9=2NKLy| h A  ~8="YO[w + D 158t} oA S`f67!35335!%767675!53!#3##"/326=#####&'75.'#'767&73&'#7&67*$M+,+?3<<=1LX(998A MH1 ? 4RKD4; &KSZ ? #QcW]ff="Sbqj. _u-bbA`TC!BLi}fh A*[ !]W,:"/ d5#67767#535##7&'7&'#'767&'7676753533533533#+5#!#3#&'#5'&/ ? #= KBK\ =&=XKG:<+'/@3<B7/CL^KMKKM^PWMW1 ss̄# e]iCI;,Vu % h A(f`="Hmqj . jk$RRRRRRCAICo`Cappa>%. !m!5!5#35#;5#326=#5!67767&'#'7>7&'767677&'76=!!!#"'5#5##5##'67&^nCCDD DaBo ? !;! 7\KF.C+-%?/;4>7'##.'#'767&'767677&677&'7ooooo9,E3S,Ʈ \^u ع>6q iA6As="YOq_ ) nT_9t} o 1 RX^35#5#;5#75#%735#5!533#3#&'#5'67+5&'#'767&'767677&677&۞雛_; K]"\K["VI1XKG:<+,+?3< <<"iFzWE ,25;?9U*R|07#+%R6%dc ]T EW;dKSWXA>;!mO?QlT8>8K." h A&dd>* W\ni  piB&" pkk %.  $(ou{35'35##3=##3267'#3=#35'35#'7535+!+3"#".=##.'#'7>7&'767677&67%&'7ݗsFG#*롡<FF+ 1((<5%H.ZKF.C+-%?/;4>36767&'7&'5!5!7&'#'767&'767677&67%&'7gLL0/ '#@< ;)> b#B < ;)= bk@n<(=TKG:<+,+?3< <<[,q,==?SZ UE>V`  ?SZ MM>V`h@@YY\y{ h A(f`="Sbqj 8at9-$c . .4:@HLf%5#35#;5#7'#'7>7&'767677&67%&'7'67%&'#55!3!535'67!&'#53&'JIJJ";$; VH}</=+ -!?'@ :3;P^ < !;9*iG4H+O{*wQf/Ijd!h?4 0X6$Pz*7r -h A 2 Tf="YO[w.ag@&c^h \a=Lg/joY=WlB>>BBCL`+1341@qX9 =@FLRXg%35#535#73;#"&''675#5&'#'7>7&'767677&67%&'7&'7&'7!!#3673!~;"m~".>,C-RQH}6H"+ -!?'@)A;O_ < !;9SI)TJ#SI(TJ^&Is LυnkG1C/;C88;F!h A  ~8="YO[w + D @&8t} oC/767&'767677&67%&'7;FG [;q7)[; VH}</=+ -!?'@ :3;P^ < !;9 7T_>XA:/7DB949AX>_?(4>BBo2! -h A 2 Tf="YO[w.ag@&c^h \ C <Bekq#3735'5#;5#%!3#3##"/326=!5!5!#35!5!533&'73&'77&'#'767&'767677&67%&'7|NBllBf]mHNq(9:.:~KE5ND<(=TKG:<+,+?3< <<UUUU6OOOn66?P%C '?6K6?SS(!31\:*BSy{ h A(f`="Sbqj 8at9-$c 2 OU[!5!#5!35##!5353!7!#"/26=!#&'#'767&'767677&677&IC"OM[;1CH;0`H+TKD4A+,+?3<<=;T` ? #9 ; ]`+CHHCApW(E-p # h A*[h="Sbqj. _u:,( |u.BHlrx5!!5!53.'#67'>35#'6!!!#67&'3##"/265&'77&'#'767&'767677&677&'7xT7Fo:K@v /KI>@= 203.004A (OO5\H.>V5Y?O9): OF|5"$E* -!=14A)8R\ : !74d::7?E#pB@% AD.O?<9+(;'6) @;?{I%B)SEE0FF~z (iA6As="YOq_ ) nT >(9t} {/ $*03&'#67#%35'35#5367#5'67'67&'7"/326=#'>53673673&'7&'#3#&'#677&'7.'#5'767&''Hy N6?_kiiiɞ_''S;U+1]*AX"XHPO'RP%D+9SŮ^Ol4%BEC@0#Xm55754=Z8;J'=.<5*JB%XQ !< %E1!2W'  QW]#!'35'35'35#67?&7.'####3!'767&'767#' 7677&67?&D'㟟@'A%F=/ =>'+?LLGdl a$702Na R\ER"gU9sv?)B*CAG2B9O@FFFF8H_rtj_WSr 4 Z./ 31;GC0@ gc4zy* >Yel|v0fl&'%6#67%&'7'#'7>7&'7676776753&'73673#3#;#"&''#'67(*,@C 8*' < !;5:H}6H"+ -!?'@)A;:1A53{$B!H/B%u;]##/B;F?D' WDT :8t} ;h A  ~8="YO[w + D6f >VRy7&'767677&67%&'7J13;gm~".>,C-A| x[,/&)56?<,2_7.'#'7>7&'767677&67%&'7s=(HARGNKl KFt G+aKF.C+-%?/;4>>-s3: h A , Sp= ' VZll 9U| H8\ o0*0ou&'%'67&'633#;#"&'%67%&'7'#'7>7&'7676776767&''#'67(*S6^F ?2.+4!CB %AK@c/ < !;5:H}6H"+ -!?'@)A;:1A5>:F . .#)<%F&',/V;<>B;F?G1 D;Pf=YHO̺" z^f+}lADJ`gR;8t} ;h A  ~8="YO[w + D6f >VRyi H77;=1,^H( :'a2[| / :@Fiou35#35!35'35#67#7.'#5'7>7&'767+!#7&67%7&7&'#'767&'767677&677&zmduPC>=/>LxR;1.7(H`(l"MT7<9W4?UA=D;&;XKG:<+,+?3< <<!==U?n="Sbqj0eqGScy h A(J턔# hqr 6 ~5#5##35#735#5353#367#7535+5#535;53;3#+3+!#&''67&''67#5367+'#'767&'767677&677&'7K霜M3 >:&K--KMK22KKb_/Nln'so1JB>1| sB: NF|5"$E* -!=14A)8R\ : !64,33:::3f333*># ue)c>f99f>c)=K7$0;?'GA, 57= *iA6As="YOq_ ) nT_9t} o . 28>djp35#535#5!#3%5#!5#;5#5!26=!5!!#"/'67%7&7&'#'7>7&'767677&67%&'7VaDmid ddd [7.L:f@4Cn0^M1M;$;QH}6H"+ -!?'@)A;O_ < !;9DDDAAD:qqqqq??AA:@C^,bH0N[1Zr h A  ~8="YO[w + D @&Vfm a 1 HNTw}35#35#75##3%73;#"&''675#5&'#'7>7&'767677&67%&'7&'753533#3#3##5#535+35#&'7j\\\\\\\\;"m~".>,C-RQH}6H"+ -!?'@)A;O_ < !;9SI)MGMMWF#SI(TJX`6XX6`nkG1C/;C88;F!h A  ~8="YO[w + D @&8t} oC/7287EE?DH>bb>HcDC/76<A"(.U_cm7'7&'76767%&'7.'#5'67&'73##5#535#'6!53!#3##5#535!'>=3753'>=373267#"&=^G4=J?/?G + s2hv25Z@5#N!e)f4{$xx|D3+:MwPD}z5?;C5? 1%`<Q8,3.1*1-& RX,PF7$^O' ) :5B3D=H;6;E::B݌S='3VV@B::B /06>) /06>[ 2/&y !><BHlr+367!!&'67#7&'#'767&'767677&67%&'77'67&''67.'767#!#3&'67%#"&=33:>?&KmF P L=([_z ;&;NJ? >4,*)?38!9;;Qd ! = "> ;"T@41&} 0)6,)5G5D8 -),b,N6 C5*C(3 9#+08F0%1(u % h A.jS=N_qc:\q,:bk] n27*'1 (%i 6G:$6+*/>{^~ c/)/ 9ȭ!  Yawr16[ag%#!#&'7#'67'!5%!5%!5!7!!5!5#535#53533#3#7.'#'767&'767677&677&O ]b^^Mmmm P];#<JKD4A+,+?3<F1VAq%}HK{hC45]L6$ PrgS8 6!*@G.8 R-F 7/73=)=L#$5z+?s's} (444-00.,Cp[8S (A9H 6 9?EK}&'67#&'#6767676777&'&'#'767&677&'76733#6727#"''67'67#535#53533#3&?&4#W"4 i&$%@* -!=14A)8*(3( 2 *MF|5"$G : !64/! 2 "(I&#<1D<GB-Eo(>0ii>qgj!Z^n +- ]#3735'5#;5#67#'53'6=!3267#"&=#!&''##5#535+535#53533#3#367&'77.'#5'%&'76767%&67%7&ccIbcbbI5.+6F A R7#Nq;)25]L6$ PrgS84WL2GS 5 5z+?s's} ,%%%%(%%% 6009+,R(s ,P]X89J-'>;:118 !9--9! 5 (+(TU)' =H4,! 12./. $ QZ.OF4B3E86>A9H ; FLRsy5#535&''6=367#535#535!5!5#535333#+3#3#5&'#5'&'7'67767677&'#'767&677&U-%>6Ca=pL22Jr@IEE*C9G<_!0!4#/2,#5!+,+?3<F1D?E?MM??Gj(C*eI[I66%_56Z#$>QMA="Sbqj. qaZDx h A*[؄# hq^ 7 #v|67#35'35#'73&'#5&'%&'7%7676753533#3&533#6727#"''67##!67&'!&'#'7>7&67%&'7)1m,(*8-99-b+ -!?'@)A5L(jI&#>2C<GB-Eo*H%4) v;BH}6H# < !;9JQ=^gg;` @[:B;F?nG"Z^3="YO[w + D/[[AOL}?igFmaLD46,4v8c h A  ~8t} oAdjp#!#5735!3&5!75!5#535!53&'73673#3#!!3673!5&'#'767&'767677&67%&'7KLrFE S~< II  EGsTKG:<+,+?3< <<+,,7%p97)iiE"5F;FA(%5&*1 0AF;F?p,0+!B(h A(f`="Sbqj 8at9-$c 5 z%67#735'35#75#75!67&''!535#53533533#3673#&''#"/326=##&'#'767&'767677&677&'770 $xV6"'P-6*@77FVE77>&AH,S!P33T ?/ G1RF}6"@** -!?*=)A:P^ : !97 NN:KjkY HV.7>>RRRR>w FBD֝XM:FURI"C8n h A4pF="YO`r + D;+8t} o . "y35&'#3735'5#;5#%&'67%&'7'7.'#'7>7&'76767767#53&'735#' 73673#&'#5!#ٌ: Q8JJ四{&- < !;2\H}6H"+ -!?'@)A;.%,/!lHy (>1#?~zE u=7@0\ KK! A}A<=KEA-? WNDOA[LH ,,Y] D EKQtz&'!5!!5%&''326=#5'67&'767#5367!#67&'##"''6%&'767677&'#'7>7&67%&'7>#(:%  0%E=* (%B7957;'+ K (2#=08CQ3.7P,Rx#vfhV*We-+ -!?'@)A;-(6$;GH}6H# < !:9UU\NORRJD?S8@B "@-@C6)<.?9A!2 +AA892!D;M3H"+ە@ /e=<9ZEX6WE="YO[w + DZDr h A  ~U[z c .  %Lou{3##35#35%5##335'35#%&'%!3265#;#"/#"/26=#'>5767677&'#'7>7&67%&'7HH4(*a#  I1#F K;*43!+ -!?'@)A;:1$;BH}6H# < !;9cUUU5UU5U >5:/B;F? +T"T*-?5Z;2'aN="YO[w + D6f r h A  ~8t} o9&:>7#".=#'>7#5!#7675#535#5!5#53533#!#3#3!535#535#3#67'&'#'7>7&'767677&67%&'7,J $%#+.% W |vcc D;"7(\\pNgVVgh____9-w8OH}6H"+ -!?'@)A;O_ < !<: +.*  " _|AXH==x(oje9D=O7&67%&'7(*KJK$n<?I4?@!"*Q!&+ -!?'@)A;:1$;BH}6H# < !;9B;F?-:AA:77j66j77j66y>>!f\, C5T??F? C="YO[w + D6f r h A  ~8t} o >  &,0`msy3&'!&'!#3735!5!#!#57&%'65!76767673.'!#&'#'7>7&75'7&67%&'7*7,,j:8=6v@klNN5."5"$6454IC+ -!?'@)A9 O9:IH6H:JO < !;9'%%I& #dL(f(8DOMaOECKK="YO[w + D MjiPD h A  ~8Kr ?w 158t} o +- E#3735'5#;5#67#67#%53'6=!3267#"&=#!&''67&'77&'#5'%&'7#5335#535+535#53533#3#3#353#67%&67%7&ddGcdccM1.06+6F A R7#Nq9VTdlLmJE:,25bG6 PrSh4rEc`EOcED'68( 5s+5s'o} ?!!!!%!!!$20"9+,R(s ,P]X89H0%>9<'-(YO)! >9C)L-16--61-L"$Na/KI4B3C9~6>A9H2<!'353#33##5!#5#5353!53'67&'77'675##;53;#7&'75!#5&'#5'767&'767677&'7!#!#"/3267&'e3h223MMMM/#1 0 mA,,52/>.2d6 0%F$ C=k($2*#"5#/"15GPl-JL7xP2 - {~?FFFF?KKKTX XRZR ]N 7 .KKv,MP 5*>/.':;=+Ii^7 AKYN*A & (/(MSY]a!5!#5!#535+5335!+!#&'#5'67.'#'767&'767677&677&%5#!5#CJE(2f#mKp!;#<EKD4A+,+?3<F17&67%&'7(*KIK%푑n\EZEZK K %8+ -!?'@)A;:1$;BH}6H# < !;9B;F?ܣգ8AA44b44b44b44\ @#??1A="YO[w + D6f r h A  ~8t} o 1).3D&'67&'77&'67#7&'67&'77&'&'"767#6.'&''767&'!!#376767"767677.'&''767&'!#67767677&'#'7>7&67%&'72$?( , . c 2$?( , .(*0  (0 1%&GMJ 0%.0 0% !'0,, 1%&Gk(%#0,+ -!?'@)A;:1$;BH}6H# < !;9(oJ( &584%N &5841B/? RP 64Q:/;7;/?="YO[w + D6f r h A  ~8t} o A  &y&'!5!67#!5!#!5!!567%&'7'67#5#5!53!##!#&'7#'67#&'#'7>7&'767677675#(*6 jFmmm < !;9G,a7[DN E,hȉb i^\%;BH}6H"+ -!?'@)A;:1x],=B;F?2*2.-^--ʋ8t} o4-<GG,K44<:@64,I1;->  h A  ~8="YO[w + D6f 6O'y'E .!)-15:>Bekq35#5#3#'#3##!#3675!3!535#35#;5#%&'#353%767677&'#'7>7&67%&'7MMg *4DcG/ZDD"F ]8TTTT)(*aMMk+ -!?'@)A;:1$;BH}6H# < !;9JMMHCQE7&'767677&'767#5367#536533#3#3'67#5367#536I(4"6\\\@ < !;9Hvzz0T!U iZYJK <IH6H"+ -!?'@)A;O_ ; =ViejHbh}Q0"$E7D\]`4+6)'75)77i7737Y8t} o$=*DJZ^q#5!%5#!5#;5#!5%!5!'7&'#'7>7&'767677&67%&'7!5!533#3!535!&'7#'67+!#A3tf effuu;$;GH6H"+ -!?'@)A;O_ < !;9  PebVDOz5<<<<<1101r h A  ~8="YO[w + D @&8t} o59229+5511684&E(9!0]+2%%>7#&'#3#3#3#676&'%&'7%76767735#535#535#53533#3&533#67327#"''67'675#535#5&'#'767&'6&'7% 7$bVV[[[[@*+$4:;=1e* #)=-7 <*7!52&MRRq||IqqF ,">.J =G;-5S771 G@[[['ADz3& 09 :! 748 7989<9G 6&G4L7fSXa="Ddgh*iX D^smB;D:.#.?,B R:F'# h A;V Rkr rK 35'35##3=#765!533!35#535+5!+3#3#3267#"'3#3!535#53535#'67#'67&'767&'#'767&'767677&67@'9 N|BD| %$ C $$^ ><kJ&r5'? .4* OF|5"$E* -!=14A)8R\ : ! ..-/\.[//3Sc;EQQ<$B*3''3*7" !  /75::57k#3I ;=,t} |Z] (iA6As="YOq_ ) nT >( . $+>35'35'35#35'35'35#67&'7#67#!#&'7#'67+%767+!#&'!#&''67&''67#5&'#'767&'767677&677&'76!@-K&I0W[U?*$3G@+M?'F_:-( GV8)# a0N`u%XrCN 7<'g)MF|5"$E* -!=14A)8R\ : !6411a111111a1111K < *'5%2H!%&(42&*'2#5(]@n(g"&3 '=V  *"g A0bY:# O`ta0do;R 5 U 1 _"&Z/36  0   A\B^(t /fXW !,# (I'# Q02 %+E&'>7#&'#3#3#3#676%'6&'7&''&''67627#"''67'675#535#5&'#'767&'76767735#535#5!&533#67&'7+$P% 7$bVV[[[[@]9 :! 74B (-/8AC /G =G;-5S771 G@[[['ADz3& 08* #)=-7 <*7!52&MRRqF ,">.J4:;=1G4L7 7989<9G 6 Rkr r"$2<2/(1( 0$1(&Pz!&$8L;x>:.#.?,B R:F'# h A;V^="Ddgh*iX D^smB;D<`uDZS# 9"C/;C#6735#'333!.''67!#33#535#'67!#3#35353=#53ojMM2$'X$&^(GFZC#A7G  ZB6dȄCrB,Z\+BX6D\R ,,CD;D? 0mqu%5#5##367#535#3#'#353675367+535##3#3#3#3#3#3!###33#535#'67353533535#!5# ?R[7>$$HcxI|u 1M$GB6!?7E ̄NNtt<>3@Y 555,':5%/?5(8<4>3@=,3(N};D`M# 9"!<<<W/V)Dvb@BKULF_GJ@b> @ . 8!5!&'!#5!%5#!5#;5#'67!!!!3267#"&'!67"5 7J$Ψ"D 'h* F\J0tY"8Z^9ZZZZZ@ 2(7'6767!#3!!!!M۞NfCW\z ]PP%&#5!%5#!5#;5##5!#5733#"/32655!5!5!5!!!M*ɦMKKM%L,UO+ 05Nq>A9^^^^^''yPT*B*55j;;_00`11eF( 48<@67#%!!6!5!!5#5!#!!!#5!#'67!5!5!5!5'5#!5#;5#56AY+ M.TyANN NY7Ȳ{&O'A< cEzGG&MFA !! B/FAA<<9ccccc ) *.26<BHN#5!%5#!5#!35#!!!!!#"/3267!!!#!5#!=#677&'77&'77&'7MBx**p5C>]P6"!@N5#C"6 C @!z$<#G9WWWWW4848yACf:88l88[_g[^UX^TIQO!L(:< & -?`#5!%5#!5#;5#35'35#?.''276767&#"/326=##!:>7"#".=367:>7"#".=367M4êBM9C-<,M";ddh.WBK|(( H 5++ZHNO) ) H 5,,ZGN(A9^^^^^9948US<NJ9L#71<'  % [4=53  ! ' U6=5B   38<@DHN5#5##3673#3#3#3!#'67&'767%#5!%5#!5#;5#3/67 G"M/1$0::/E M.Ǩ M>$>E]]``;c061<];`;c@&9?;./ VHPB_|%*n:QQQQQy  ""  %e5#!5#!35#!5%!5!7!5!!535#&'#%5!67+535#535+5!#3#3!!#&'#"/326=##5##5'67MMSg(a'O߃MR߂c|$F$MYN" PK.<|b;;;;;00--']''e3338 '6''6'!8:(B 67<BB(: 5 "Kj5#5##3#5!%5#!5#;5#67%&'7&'#'767&'767677&'77'673673#3#3#3!#˙M.Ǩ' @ *H? :]KD(B9*/0?5; KB>Yu :,73T5FGwKE]]``;c@:QQQQQdghj& Pl  C$I9;7H NC NT$pp1U`[=a~*%061<];`;c@&& $*0FXx5#!5#!35#35'35#!#567%&'77&'7&'7.''2636767&'!#"/326=##"&=3673:>7""&=3673:>7"M MKBB?P H H#0F4=;Q;RG=B6 .)M*n<|.!Q=K{8NO("( H 5++8NO("( H 5+IIIII:''0'7!5!5!5!5!53&'73673!!!!!326sJ737YH(E"I*)KE$'TSIS&06?.xAp?nCB,E7E6 :6Cn?pA 97=875!=!5!5!5!5!53&'73673!!!!!!!.''>7<kEG#,IEk#23؎#A[>]>ZA+&)?F!',AZ>]>[ABhF{LLzFhB&/&V!&'73&'!5'6!#"/326=###'>7'6765#535#53&'73673#3#6E_RHO{343/&[3(F9MUI <7:.0 B>\5TC:d(E EwwwL:Wfkz?&.965(:~U*E,p @[~;31]B C DN?AJBBH\BHHA?Y&&++[&'5!&#67'67 73#327#"'#3#67'>7'6765#535#53&'7367Lci#^X4B] ,+ A?"mxx7MX9 <7:.0 T,IHTC:d(E Wh C]?!B@C DAAuVBlN4A?F7@\;30]DC DM?AJBBH\BHHB%+2H#5!5!5!5!53&'73673!!!!!'6367'3>7#5367#5367#5!3#3 J'F#"H&60.% | {w>Q:%V >!=9 A/0= I<]4=OA7 S35#35##33##5#535#535###!#5##5'67#5367#5365#5!353&'73673#3#4ÂNʲ2 KF("!Y(Wf u)qF %T#I&en1.63sDDA:/+//E(Gn>;3?36<>K<;\FP 9PCA*B%+1Q!!5!5!5!5!53&'73673!!!7&7&'67%'67#&''>=#'67!|@H #K@Cb^]qUODa#g 4>'”T+q_3J4q;G 0??M+@D4!q//7=48LF < N/=1 > N@6;!9 ?BIK@1/G%+Y!!5!5!5!5!53&'73673!!!&'7&'75!67!5!5!5'67!&'7!!!!!.''$7|>G$K>³ K $+G+'r4LA?;C3R?IE5pm8_ T99434> #$.2 !$>4314:,80/;;4405A?10?6A344;JBU6w#BF&+ aj!5%!5!3&2>7#3!#''>7'6765#535#53&'73673#3#6767#!!!#"/%3'67#\\)>4e H=#.F "* <7:.0 T,IHTC:d(E ;mxxF<>'D/+4XD7!h&JQQ;N5*6' $,?(>?. \;30]DC DM?AJBBH\BHHA?F7FIV)$<D-Fd" G8735&'&'#&'#!6!!5!5!5!5!53&'73673!!!73!6732>7#"&''#"/3267#'67#5'67#535'673&'33&k.6O?4W=( l |>G$K>ª+MK)T'Q.A9b8 =S#[)`o (#0R82  F##cE8nӽI`MKQ,%'+Rn]x*+12I" 99434> #$.2 !$>430#/-<[LG[nQ&(7'6765#535#53&'73673#3#6I0bF(✜cbbPRLJe$ 52:(+ H&G7uu}K@:RC!Ilgg5^@7ϩ).77/8;AA;rg==n@" [~<31\BC DO?AS:GCOO>RA?3J/HRx75!67!5!5!5!5!53'67#5!5!5!5!53&'73673!!!!#3!!!!!3!!.''$73&'7&'7367&'7>73&'7/c^(ID>G$J >EH*^cs5]Q?=CF K E 2$F I7O><90*0*3/?7*0*:#,'# ':*0*7/?3*0*09BA P3rA<;." ).(" +($#   186 '7&'7'67&'67265!5!#"/!265!5!#"/Cb6ZK +j%G5_G7Gj$nH*'Q{*'Q{bs)gmL2r`:Zq)mg*hr`:Yq*B7V)E*B7V)E '-+17=CW%265!5!#"/7&67265!5!#"/7&6767%&'77&''676767&d>xp']D(;to>xp']D(;to@׍@:f=%?SMAM2Ja"/@z,A33.4(+7=7./@z,A 33.4(+7=7.rCl"JDDJ"lC*tg)%?atZb #'5\#5!#"/326='675'6%#5!#"/326='675'6767#535#53533#33!!"&''67&% AbU OnZOnu AbU NpYNpwI>+$-l}}K{{lBAI9Q,O64AV(A+[K@Pp&WI'Luup>@Pp&]D(Ato=+4^P^#6bvqg?,@10133*8:7.?,@23.3,+7:7.%Aqg@__@ucA=-3JP7!5!5!26=#&'7#5!!#5!#!67#"/%67%26=#&'7#5!#"/%67p [=';e"?E `OO 9@Ppuo KG'FZ =>@Ppuoaff2*2(:,? -W,,#=$*8:7.*/2/4(?,=)*8:7.&++17g'67#5!#"/3265%'67#5!#"/3265&'%&''>7'6765#535#53&'73673#3#6\5TC:d(E ;mwwLSGASnFC0V)D+SGASnFC0V)D+[nr"e|!nr"e|@[~;31]B C DN?AJBBH\BHHA?Y&-!-DJag%'67!&''67#5!53!#&'3!!#5!5!5#&'7#5!#"/326''65#&'7#5!#"/326''62,u0 XO/OWEi(<Pxe/no.PaPaBW9)C]"A?4\X,'oQW9(C]!A?5[Y+& pt1?P$!.1/ >-5Dd>??> !-;3A()2AppA*!5'.+?)<:8,;(5*!5'.+?)<:8,;(.,O_'67#5!#"/326='6755!5!5!533#"/326='675#'67#5!'67'6767!#3!!!!D~yc?DKH<(9O1K?DKH< ~yc E6F<2;?F:F!%)p&'7#53#"/326='675!5%!5!5!#"&5#'!#367#"/326='675#&'7#533>7#5!#326H/*'*3##$9* 7RR6 tDKF#IHR5K  9* 7RR6q/*'*3##= B;Lz ,1/02*?*>47,9+51ff:aDD,O!CG(,$>47,9+51,1/02*? / >DDw# =#- $*0j35##35#53533#3#3##5#53575#&'7&'7'675#53&'3#"/326='675#5'673'#"/326=HHH~+296(+2:1,{"nP`TT`4NCJS!nP vDu4NCLcoS@ee@SS??S\\[RVV [RP\:>U>N``N=A E0:>U EdfE =A G:%7;@g%'67#5!#"/326='675!'67#5!#"/326='67567#67#%53=#'!!!#3#3#&''6?>=3267#"&=#'67&'7#5!&'xz_?+dH<Ïz_?+dH<D 7H;,1|C ,X_o{lU%R+.W*Z-"2 A#,=o_LC;31K+EIHhaRX@6-5>,?s`I6Jl=X@6-5>,?v`I6In9&/,(12.:< 0.20/==/2j1* h *.$ MW(; (!88;* ;&" # ?CY_u{35&'35#'35#35#735#'273673##5##'67#53&5#26='67#53#"/7&26='67#53#"/7&X(2)NNOOOOE=*TDį FW& >Q6Z,FIe9ON' 9L"^I:SHh8*&8 J 744-%#,#!!: %!//2 r4' k5#5##37&67'67#'>7#5333#67#535#535#53#367#535#535#5!#3#3#3#3!#'67{?"<)?*Jgh ) :049/)LFCa9Eh  & 0L#0( CCzEE6Fxs k;#A 6=46AhAez7#"'.='67!5!5!5!533#367!!$%>8NFBR%%P,-+SciMS*M^`tP@q=_tC/ -$. 686(G" FHvCAiiA+sCRKN7gAj'&!5!5!5!533#367!!'$2rPbe7!'67'67!5!5!5!533#367!!$7V 27EH  M IW۾jvPBt;^ yru}'E FY,D ^D;bA>RR>k*m\AJ92>7$ &<5b#363267#"&='67!5!5!5!53367!!67"&='%5'75'$%%%3267"YEDG P\grXLiܾeqPP39TxvqI*F <.@ K )$OH? 4'# />+J7?7??&2-#IC77&75</; 7 7 5 /5$5 0577% /  (6'+/#36!#5!#'67!5!5!5!53367!!!5!!5JVN&NSXO|P9.:X M&<@++`#DExA@__57<*pgA5inn&<6:BF#363267#"&='67!5!5!5!533673!67!5!#!#5!!\> F P^dtVHmeqPI:9Tvk NN L :+%"0'?-O:L9AA205%MF:5.78:\L+k+KF%5!!!#"./3265######!67F\u !,;X JIM7CCAH,!C  r>K('#?3265#%##"/3265!5!537&5!#3#"/#####367 =FK'S4SN1)M@P;B: )J&===I wEZ,E0E~BB<<4#!33+M(1)!!&'#'67!5!5!5!5#'275367!!)P)VPVWBv>zDz>vB|?w C d^C}?'.P35#'#3#3#&'#'67#5346=#535#53533%3#3###'>7#536=#535335uDJ2A0J9a%p8JaaiiKGI3=<v}||I/$|\?\?gv+rL?qB?X?\AnniED=oI<=p\DS!E'(_#3#3#&'#'67#5346=#535#53533#".='75'75'$7%%3:>S<3A0J9a%p8JK 2-)(,()Vd %C! x\?\?}`+rLBrB?X?\Ann 5;@  # ECDBD'!C!%D&46): 675%!5%!5!'!#67#5'67#HHH\8[Na* |ך=BBA/ CS  $335#5#6+'32654'67##!%#3'>7#5!##5ׁ >ENRR ;D2L8Lz4 / >AKa#2JRKE'3x|`CBPCC&&*35#'67#5!##=#6333#3!533'#3{$-q-JK8MRI^d CQBB} D:FFpA2 E35#5#6#33276767#"&5'#5'67#5!#6=##3533#5#GB2/ F*o]*M'Ht"-r.GLI^1IK# ]%qXC%4L$CPBB>a* uu:9/ .B35#5#6!&'%#3%3&'!5'#5'67#5!#6!#"/326=###KN`UHԇLO8223"H{$-o-z 6(MFL^Tii5v?),:73+4 CQBB~V)E,p%1CG35#'>7#5!##=#653'>7'6767676"/3265##!#3|||yn (T(F|#Hp*]_fj. hjC+*: 6 uFe||^`CRBB?>'cU8'C 4A*5 1F,WL&935#'67#5!##=#6!5!#335#535#' 73#3#5!#{$-q-JKTۇisd|KJ^d CQBBiC DLC"Cm555 3735#'67#5!##=#63##!!!5!5!5!5!5!!!!#3ؖ1<,KId,,uC<6@@ot3G "a??T:L<7!'67#3~Kߕˇ{$-e#HKAKNNd ,-I^X?L+$[[[[9UUUd CQBBbc@??&v'CDKT8v&":>U35#'67#5!##=#6'67'677'6767.'##3?67!5!&''67&0;#K`'oCb@@T?'B-T(? C K "A35##!%#3=##675#3=#75#"/#5'267#5!#3265!!Mh(FH8LIA!('|V\[VV; 5d55[[ T799*|\*V)#A FJ%!5!5!6#!!!5367#'67!#3#&'!#7#5'67#5'675#HHiKhHb c!?E%E   N@8LS0Rf4N-^H"<\ЛB+H (*=.7/D/F6:< f_<5#B9Y)  !'-Iio35#'67#5!#67'#=#6#3'67?&7&'&'7'676767&".=323:>77&lllx\#G-0CE*FlSll7xOAPANy7$@ICBjaV/Z^)vV$Q1)K(-L1c-.,N"! G23dD>,B.^b"CQBBZ^vtE- /WssW/bjq*.CY1]A/@n} xdS %'%ɿ '"( 342/~7"@D35#'67#5!##=#63#5!#5353>7#5!#3#;#"&'#3{$-o-HKIuJO+? F.JYxGv/54+^d CQBBA٘gQq MQu*AAADKbiS/ nz35#5#6#353.'#5'67#5!#767&'767677&'7767&'767677&'7&'3'67#5336%#5##335kkkkSkk00 D}T#8#+,94% $+<,56.;Rj <*,=@%$+<,5:*;Rj>%@ -dh3u(CtFzHHz^-u +<"CQBB8*C747RTN %QT G,:]8*HE37RTN %XM B8yr5 u{%8(K!,Ⱦ >)15Y_w}35#'>7#5!##=#6%+367!!&'67#%#3'67&''67.'767#!#3&'67%#"&=33:>?&d )R#E/F P L=([_vz "T@41& 0)6,)5G5D8 -),b,N6 C5*C(^a"CRBB 3 9#+08F0%127*'1 (%i 6G:$6+*/>{^~ c/)/ 9ȭ!  Yawr %/'+04DIu7!5!5!6!#>7#5'675#'6=!'35#67#!!3!535#53533##3753'6=!3267#"&=#!&''67&'7"{W,ZN A R7#Fm8ETR#nb\qDA-+v3 9x+<<SN< !KT8ME*&066*:--:3P9+-S&s ,P]Z89>':*%:$( A(,2Le7!5!'67#5!#>7#=!6#5'67!!'67767&''&''667533#;#"&'>>>S#<D1V')3C*H,\ &+=Y%:,1'1"# *%2".<]w*.$9J='1:+ 7 6:>Z`f35#5#6%35#35##35!5#67'#5'67#5!!53!!!#35##".=33:>7'&'77&kkkkSxffffH5CE3D}T#8NIkkofU232-.,JF$$ -@Q+Jn??,>,^Я&O$>]~n C"CQB%WWAOͯ00/ $'%? %&30D?07 ~ 2 "&^!5!5!635#5#6%35#5#6!!#3%#3#5'67+#5'267#5!35'>3#5!#673#6 88b[/8} "K09/K ) 4Je:o)PQ*">6%:>1Cn>3C 3;;;@D= ?"w> ?%AA>H<7`f35#5#667#35'35##3%33#6727#"''67##!67&'!53&'#5##5'67#5!3533#3&&'7kkkkSG0kkI&#>2C<GB-Eo*J08& o]'D}T#8M*k8-99-^jJQLOgg;`~?igFmaLD4601v?@[("CQB)[[AUF}TnG"Z^ < :R]cg~5#!5#;5#35#5#6!!!#35!5#67'#'67#5!!53!".=332677&'7!5!!?&#353#3#67'675#535ghggkkkk6H8C!B6?pg#8N---JFYF23BN%nN@(?>->-kkϾA99,Mz *222PHW1BB (Ym`!@ <]AQQ " 6N *+* B8,>>7?!pyzKP99?9@ 8;M9? *4#'+?gk}7!5!'>35#5!#67#=!667#35#35##!#"./326=%>5#"&5!5!53!!!!!!!!!!53&'#53533#33267Rq{X+,ZNPI6 3(- M 95/;BPLB??Dk6M3]t#aU6 `,:::9P2!!l!KZ(0  .$1m***/&1++1/  /7/35'35!#5!5!5!5!5!5!5!5!5!5!53!3#!!!iPi[@c@P@]][ffaaAA_AX=fAa>VVAXA_///n35#535#3#3##5#535#535#535#535#535333#535#'67.53673:>7+!#3#&''67iiiKOйIJK++LA;$&MJ%%H424*OR7) f__VA^AA^AVNNAAn8("Rlc3<6C  -,-(@nAYs*VW|<=E;M35'353353#!5!5!5!5!5!5!53!3#!!5#53353#5##535!#5!3#5#'>5`IG@\@L;iiGIIGLI%A($7AA~AAZZ(HH=}7ZZqm7mI2$:r/W%535#5#67&'7%35#535#3#3##5#&''6767#53!!3#3#!35#535#535#535333#`l !B#LwwwKNB "k:Y%¼ԼK++/=^;b KCGf__VA^A)%.<CtACUNNA? ae35'35%35#%67#7!&!#5!5!5!5!5!5!5!5!5!5!53'67&''!'6=!67!#&'3#!!!5!M# 3ES!QiPi\>^%G@<'!)?BIzQ-H)9)`P-6jj\#11n00C/+A /sG;VV;.5,31>0:,( *-'/WE)PzPIf <\;4< b>d,5.==U<%33!#"/3265!&''>7!#!6>7&'M&Pd.* 0wD%suMr{yH.uG<82hV(D*U"S4vUsT>2kR)07c.-N4uQqO( B35'35#26=#'>5!#"/%2>5#'>7#53653!#"'5 5A"20 ]> YZBUT M "!6fb]"8A.,}2Uȧl&X'D8rŕl+cC\oO|ӝN. F " ?35'35##'#"/326=#'>5!>=!3276?#"&5N33,"S6 6=#$&i G!Y@ ]"8A >4D,z2Tūl&&2y0% G^"Evr #)!5%!5!!3!#"/326=!&'%'67&&N9P9&S)&HFEBL;SDQ:)uu=k["U%C+?XXof`eged(' 5;35'35#26=#'>5!#"/!533##"/3265!7& 5A"60 ]>cNWW(U7pi5*$DS8F:]>A.,}2Uȧl&W(DDV)E*!{ /35'35#!#"/326=#'>3!5!#53533#G/S6 7>#N]>Al&W(D,|2TFFDD +35'35#3!53#5!!#"/326=#'>6/S6 7>#]>AlDDDDl&W(D,|2T# /35'35#26=#'>5!#"/###53#5!# 5A"60 ]?N]>A.,}2Uȧl&W(DDAD DD &=S35'35#!'>=!3267#"&=767!5!&''67&%!#"/326=#'>.?2B,C+)*.;?e\9V@ibzpebS/S6 7=#]>AK7&kg:Z201 C(UMMkBB\A1@2RN6B,CMl&W(D,|2T1 ,B35'35#767!535#53533#3&''67&%!#"/326=#'>DAmr;7PCh}zupuW 0S6 5=!]>A{`fACzzCAuN1B3^X9B-Pjl&V)D,}2T 7M35'35##;#327>7#"'.5!#5%!#"/326=#'>zyyyڗ+;C>D O))'\_<A; 5,,CJB0c%?Dm%W(D,|2U  #'+'6!%!5!!5!#!#"/326=5!5!܂:soF,Nq'Q-ex& \p,M3 <]'GBC1??)GG7 *@35'35#'6#5353!!!#"/32>7#!#"/326=#'>;YEN+;$@<5vi0!( O[/S6 7=#]>A/a DDQEG H 1l&W(D,|2T5>)7!5%!5!%!!5353353!!!#"/326=!#&&BMPPn(R,eZ0% PXXQBCI8 F35'35#7&''67667&%!6#5367!!'#"/326=#'>}G@&Gл;D0K.?er$ )N[`M9!S6 5=!]>AgԮ<4 E l&.D`<NKDt-D,}2T5;!67!5%!5!!67&'!#"/326=!##&''6767!5!53#.ݿ'((R,eZ0& Pm]<1x3v,*PUU:R1=A # kBC<+?[^(/#>=E?YYG+?%!5!!5'67#5!67!!!#"/326=!#767&''67&'( X T 'S,eY1& P@$-k4bf1fMPP1Fj=, =&'BA3^:+4&/4=27).72G-H%=41 +A35'35#!3#"/3265####35!5!53!!#"/326=#'>zyyy+ CC3 LIL/S6} 2>_<AMU*E+=DDmmm%W(D,|2Ub *.#!%5!!!7!5!!5!5!#!#"/326=!O$HL*P(R,eZ0% PLL9OLOO8HBC3HHb6  2!!7!5%5!)5!!5%!5!!!#!53!#"/326=!Pk**=j+OjPs(R,eZ1% ,EEEE9EEEGG8F=M}B?2 0%#!!5%!5!35'35#5!!#"/326=#'>KaPPzyyyG/S6} 2>[A_<ABBm%W(D,|2U4/'I7!5!#!#"/326=!3#5'675!5!:>7#".5367 P(R,eZ0& kNN w## G3335<5P#LtBC@MMBBPC  **) p5><C6 %)?#!#535'35#7&''676767&5!"/326=#'>5!KMPSBSMC"C'1UH  6A"!6S6^>A& :$( E MiD,v*Kɴm'U)' )?35'35#'67?&##!5!5#5333#%!#"/326=#'>usss @O'D*BL1D5xNN/S6w 3=]"8A#u{uDDCYCl&W(D,2U5 735'35#!67!!!!!!##'#"/326=#'>HR#J O+,J"1S6 7?#]>Al΢ <CCE䑃W(D,|2T .4835'35#3#"/326=#'>5!##'67&'5!qpppF/D7t 7=#$0LU.`lna/eh8]>Al&W(D,|2TBB#&?ךp;lBB .:35'35#35#!3=#3735"/326=#'>53!#5####eeee'KH*g+;FUKKJ]ZACD+k3DlQ'P?$?# J&'35'35#37 73#327#"'!5!&#67#"/326=#'>KeqpppFHB] ,+ A?1i#Z\/D7t 7=#Iv ]>AlCAAJBlN4C]?"B?W(D,|2TG Lb35'35#3:>7#".5!5#5!32>7!'67!#"/%3#"/326=#'>usssU)z*$9# M'"JD<04< $  *6;S'K  1N/S6w 3=]"8AAB 6$'5<@ &% AQP/ 5,m<l&W(D,2U+' 535'35##35#53533#3%3#"/326=#'>5!d5IM lX Z::,~\0+A?XDDvAhD+,Tƭk)W'1!@R%!5%!5!'>53"&533267'767&'767677&'7&'!#"/326=!#A!!>,'I-B I C5d-!^V'$H6??IBWM?x,=4.=\>RK G==7=6KڵYAB! CY>%I=9 FCMF3SZs ]ds";CB(1 7;67!!5!#!#"/326=675!5!'#;# $'5!*!P'R-eZ0% 1|2J Fs|b)?.pE`O9[~#'J DBB1Mk*%4BB>5"3G @,7kMUCC3 %=X35'35#&'#!#"/326=#'>%'67#5367!#&'!55!!!#"/32>7!'67usssx>(')E=/S6w 3=(!HO H!K>D]VQ  .1I^X@ L,]"8AJXUMal&W(D,2Ulj@VA+"( AN@+D./FAA%2y(CEO>=v" AGM35'35##"&5#'#"/326=#'>5!>7#533!#326&''67usssI$_T*kZl/#S6w 3=^NM &-AAN+E0]"8A*O!CHC4!D,2UǨl&2;CmC# ;hoy %)?%#!'35#%35'35#"/3265!#!5!3#"/326=#'>UE͈Bsqqq]RlI( hF/S6u 3<qP<]_ 8AC &WD*i??m%W(D,2U9]35#%!5&''67&#33!##"/326=#'>5367!#"/32>7!3767us0*31=)877ssBH/S6w 3=W(I Q|w9 v"$<;(92(/']"?%Q%P:41\IdD$%W(D,2UǨl C.ˤlP+ F >1(7LTXp_9H= %+K35'35#35#%3#"/326=#'>&'7#5!673#3###'>7#5365ihhh.R5l 2>/-F//Wj7(K!4uL GP7#"'.536727>7#"'.5367BKBC ׵B55M12G)q/$QF  K},- H <"&8=N *,1 H <"&8=N *aa#"'.5367327>75!#!ZYY`/S6 2>f(,&V),RQ*L0F#L  "N_<Auu>odm%W(D,|2U.7.2m%:?B!B $"$'++/#>n7!5%!5!/67#5367'67#5!673!3#"/3267#!#"/326=!#!'67#5367&/3267!3#"/3267#g%(#T, W S48 !0UA-/|/'R,eZ0& Pm o)o$zP+ C&&1UA-[@@6>/C';8 :89KIi35'35#67#"/326=#'>53'>733!'>="#".5!#"/32>7#3:>7hggg+!H*j+;@%:iJ $YB,# O 81.KI. ^ )P=! "e*") ]< Aq;.36[D,k3DlQ'J7^ ?A(Aw,i߮/09 !%? &F?$  /'09 >^~35'35#'3#"/326=#'>5%'67#53653!#"/32>7#33#"/32>5#'>7#536%33#"/32>5#'>7#536ihhhC1H+ j,:?(4M # 1nZ. 8J+<( J435+*NPEJ+<( J435+*NP]< ACQ'D+n3D=;wB#/+'R_E B@HV:VD 6pd?58xA;:VD 6pd?58xA E35'35#!6= 76767&#'#"/326=#'>xvvvF#=`71.;K,\52K >V0#S6z 3=]"8Al&$] :B2f4AbX+60C7t=tEs-D,2U%6 >&'!5!!55!!5!#"/326=!#'67#536753#&'EE/ bZ(R,eZ0& P=5qP.`i.D_}dUXXAAAAdBC?F2f?7xzZ8?^:F ( 2V35'35#'3#"/326=#'>5"/3265##33#67&'7&''6767#535#53533#ihhhC1H+ j,:72 2 gEz#*LG>;(;,'~~M]< ACQ'D+n3DF+WL&DTID8 DDBssB",6@L35'35#"/326=#'>535!&'67&'67&'67!!5!5#5!eeeeeH*g+;@SJ7D=ST7D2}J7D=ST7D2}J7E>QQ9D4?]ZAD+k3DlQ'AAYgsb[fXTYgsb[fXTYgv_Xi[BBAA 7  L#'667!&'!5%!5!3"/326=!#'67&''67!#.'G"!x.FU)1K;@O<53aeeee. KKK07<1-2 X H*g+;Txx::x(]ZA$+jZASS,$21AZR)??D+k3DlQ'- V!5!35'35#!>7+3&'73673#3267"#"&5#'#"/326=#'>_FbS3Kl%G+o8"G,u()F R(Zgv%"S6 7=#|m]>Al&22O>FOMLUIC 6.1>% A!=2D,|2T* %+1EQ35'35#3#"/326=#'>&'7&'7'67767&''67&%3#5!#3!usssF/S6w 3=F/0E7E,/F.CM=ECg*MQ7B%@*T2E2H[+XEL.JJwHH]"8Al&W(D,2Ue|nhet68LTUc\*a0O3X>79WI66 U 4J35'35#!67.'#67'67#53!!!!!!%!#"/326=#'>xvvv!1NC0=8CGT"~81jf 2AAZuu`/S6z 3=]"8AA^KGN#\D8&A8{?5A'AAM;O;S:l&W(D,2UA :P#36735'5#;5#35'35###5!53'67+367!!!533"/326=#'>53pNhggg9ND'8pKLG>,N/H*j+;v-IC3v84'5\j,D,k3DlQ'>  ]35'35#5!53!767#67&"/326=#'>536767!&''67&''#'baaaN3=4!/L!"M&H+d+;f+F)o3F0P|^\){YD.#-I]< A&AXXA0=;KcG=u\(;VKD+k3Dl.ja >O=?>ZZ>=8XPh>$3= ,Q'W 38K7!5%!5!35#35#5#;!!#"/326=!##!#3#%67#'5!&''67&'7E}'R,eZ0& PAssgX-&}8iShdUkZDI-8GG7Eh22228.CB.:22>TQQ>>rK8 ?(H/?$CWF17m##"/326=!5#5''6!53!!67!537&>7326=!&''>7##!65!#"/3&'d@0B>  K$%\=MP|~;B qLj+ND0DjhG sh#(r+k:.WaJ8I>#Hp5Xp@v;g?;(S."ĉ%3X߸=(;SS>Ol 00u01?.A>K4$@('*G0B-=.93#"!?@6#C+A$V35'35###"/3265#5353&'7"/326=#'>53>5!53!!67#'````B7=%RKK3C;G2H+b,9 KJ#K%F&14]ZAB|X+C-Bzwj"ovD,n3Dl ^خZZAE [`J;{:"' "2H35'35#535#5353'>7'6765##33#3#%3#"/326=#'>ihhhˬI)WO5GOWF`[MMƺS.R5l 2>_<AAD_z9:/fL!C#7GD~DAm%V)D,|2U;/;Q35'35#267#"&=#'>5##5!53!#5#!!5!5#5!"/326=#'>53eeeeubD%'%Y)=|q$hc|ILK{>6NH*g+;]ZAA'&' 0v-;)d^^lBBAAD+k3DlQ'A $:j35'35#&''>73'6767#"/326=#'>533267#"&535!#5!53!##"/326=baaa|=+#(6WA +n'a!)H+d+;;>D%!h-(I P#19/]< A?&0)8Be #,>F8Ccm.C#nD+k3DlQ'D, + .77 BdeeFA ! L35'35#!5!35#!!!!5!5#535#'#"/326=#'>5367#!#3#3#hggg:rz hrȲ'-6-H*j+;I,2']< AiZ/ma??b:SS:'dQ'D,k3Dld}Z67&767.'!#5!#367&767&767!3'67&usss:)H/C/AODi<#L/S6w 3= M9K4EK3J9qK:L3GN1J KvI F+~K:L3GN1J91EF/D,N=B]"8A!A0<%<+6Hl&W(D,2UuSc^IYcqbPf\K\` 1 :b,,$-NRPf\K\`q0'26>/(:0# CY35'5#;5#35#%35'35#'$7!!3+3#!!5!5#535+35!5!5"/326=#'>53hgggY [JH_H*j+;LFF3FFFF]< AA+AM=8<=HAAH=<48=FD,k3DlQ'  ;V\b35'35#35#35!35'35##!%367'#"/326=#'>#".=33276767'&'7?&ihhhlI(7B!E2&R5l 2>232,/,IHL.IR,YfA>*@+_<A;BVm%%iu!,D,|2U}786 $'$> 764N?3C   !7b35'35#355#!5#;5#67#"/326=#'>535367+535#5!#3!!#&''67&''67hggg`b bbbbK.)UH*j+;:{DebW,TXz!btAO 5=0]< ADD1:U$4D,k3DlQ'Q?)DAAD5?cJ'H?T,ZA@ +AG-+/48[q5##3#3##5#535#535#535#535#535333+3%35'35#767#567#533;#"&''67&"/326=#'>53c_KK)o__%````>xC/r*=o ++tu3".<:%#|H+b,9fNN?Q>V?\\?V>Q7#'#"/326=#'>5!67#5!!!#"/326xvvvFXXgZLKZK*T/H*T2R)S6z 3=`MLt/(,K>$]"8A|LL9HE,FTCY6/-NG/"4D,2UǨl=Z==0~6Aj@ Y!5%!5!>7+5'67!35'35#367!!!!!&''67&''#"/326=#'>vv2d ,GRY7MM6F`Y,$p2A@P_<Am} 'A#;SB-@$AC"?12;*)VV)D,|2U> 4Z35'35#!5%!5!#53'>!#"/326=#'>5265+3>73#67&'#"/]cc8~L.BlB2'77 9  IP 3A85?HAV-ZB!D<]< Abb>_F>2S24*dO&D,t:5DW+6z< !/KP5367#53'7!.'#67;#"&''d6.````p<6?=1H+b,9<#E - 9D;NZ >O7 {ic{")>$+ff9dT.><]ZAu$YZ&ED,n3Dl 72C(? O9I)?+s>5 C,7::=#A &<\35'35#67#"/326=#'>53#53&'#5!53!#3#53!!!#"/32>5!'>7#5!baaa7(H+d+;K%aOi#KOP11>r]:6.\n ]< ADD>JD+k3DlQ'5\?IAPPAH@\!\?%(}}-AIGV;0i?C&Qc7!5%!5!3!3#"/3267#'>5#5353'>75'67!!6767.'67!#"/326=!#8,0==?#!k7<4hL ' 4V0L>KTK6?==P0O -.<;|B'R,eZ0& PGG7E@%a[!@&>a48sCBa@2Kf *?$16 "'3 J/40Xl?)3CB.H^!5!#5!5#3%35'35#5!##5#5'>7##!#"/326=#"&=#"/326=#'>53{K( %ybaaaiF?2{FV3RCx1"<8<H+d+;^X- ]< ABB@8A;6kT*B, .F@WD+k3DlQ' C >BFJNdj35'35##5##35!5!533&'73!3#3##"/326=!5!535'#3735'5#;5#"/326=#'>53%&'7baaa!NIN(;*2BCkk Gi_ >FN@H+d+;I-VY*b]< Ar119r5@GG&%3@5#?|O%B 'z?4(MMMM5HHHwD+k3DlQ'`7N:7@ 5E %);#5!#5!!5%!5!5!53!5!#5!#5!5!!#"/326=!#PFd,,ԩTHH~(|(R,eZ0$ R*))2)9@@9v))둑ȭ))MC ;rUk#3'35#3#5!#35'35#%!5#"''67'6767&'4&'#534&533&'7#6732>7"/326=#'>535n??IIIVIkiii"2'"&-+,"M~ N?E&.#y#5%7 *I: m /<;Q--p\!:A :`<)+'5(?*8 q 3@ - D! )*.g_mpP<&D+9SŮ^)W' K .@a35#35!35'35#!5%!5!!!#!#"/326=!#'67!%3267'75#'>=!53!!!#"&5gbL$D!\` ! M"& B07<0'MNV!(NΩB+T****)+''+'',4_2 '.   #.-d>_ֱ*6&9O,2 BX!5%!5!73535'35#5!5+35#53533533#3#!!.''>7"/326=#'>53}}ahgggK_MMac^+.^cH*j+;VV:R~CC]< A>AWC=UUUU=CA>5WBd>>dBW5D,k3DlQ'K +9EQg35'35#%#&'#5'67#5!53'673&"/32653%'67&'7&'7'67"/326=#'>53baaa+ꀆPa\ P(R"FRN fg5A4B7"pur!I633Eid!H+d+;]< AABgAtDvydXBTUAgg{RBJqnMBRrC KH#=&P>6,6@6b3]2:9=)<81QDD+k3DlQ' AW]c35'35#67&''67#5'675'67#5!3'675'67#5!#5&'"/326=#'>53'$'$kiii~%2f) xfQdxXPeQAEeNQmQAH;Hlm`נI: m /<S\!:AO:(QM?4FtP89C]PP99-8?;SOT=9-8?:.O>@2@*GD+9SŮ^)W'C7d?;} AC 1m35'35#5#3267.'#6"/326=#'>53%!!5!5#535'6767#53'67##5!53!##"&=#!#.'3hggg "' . \I: k /9d62~HOC /BG"."~I;: #/r\>A>$_@; <6 D+9SŮ^)W'g??g9>:#uUU (t/>]U! 0  \< # #'-=AG]%#5!67'6767''676735'35#67'#3!535#535335#7&"/326=#'>53FJa1jD,.`4rSo/F ````Z3`LXADDH+b,9K.P4N /N*Y;"C UfRp]ZAhGp,}KkZ@@ZAQQKqq`B]YD,n3DlQ' # "f35&'#3735'5#;5#%35'35#"/326=#'>5367#53&'735#' 73673#&'#5!#'׋9U7II䛛hggghH*j+;[ (>,'@}zG =7A0]"KK )A}@=?>}aaaa7]]]]< AD,k3Dl#NZA>=DLA-? WNDOA\KH ,,X6Q'AFJ`#!#535'35#735!5!5#535!53&'73673#3#!!3673!53&5!"/326=#'>53KMBhggg/FHHH HGuH*j+;+,, ]< A7%p?F;FA(%5&0+ 0AF;F?p,0+!BB)ii]D,k3DlQ'2 4Vb35'35#"/326=#'>533##5##5#5353353'67#&''67#5!53!#&'3!!#5!5!baaaaH+d+;KKKKv,Y @4,,8/I)s" N p SJ.@NNN]< AD+k3DlQ' ?HHHH?]]]2az553?16/UA5j=OO=;4A\2R@25EAA K &mquy35'35#'>5%67#!!53#5!#5"/326=#'>5367!3#3267"#"&=#'67#!!'5!5!5!baaa =*PMMMH+d+;m;I 0 %(H %!%O&* rRy% I3P4]< Aw 0Yҟ&@s''D+k3DlXs  <;=  ' T8V9P "9 2200S00 > #+SY_c35'35#3&'!&'!#3735!5!#!#53.'!#'#"/326=#'>5367&%'65!srrr7,,j:8=6v@klNNOB/H+u+< 5."5"$6454I]< A '%%I& #dL(f(siPD  .Q'D,k3DlPDOMaOECKK 4 #'48s5#;5#!3=#37#373567#35'35#73533533!#5!"/326=#'>536=!!!#.'#67'675#'ggghhhggAgU46baaa٣JgIDaUH+d+;,U.(?3=Ii)DRE@F8*AAAAAo??????'84o]< A(AAAA88D+k3Dlk:h<A&%AY A$Ca# " >CHLPUp7!5%!5!353&'7+'6=3!#3#3#!#"/326=!#'675##3735#3567#'>=33267#"&=#'67&'7#5!&'F%>BGAPPPk=*/-" A#,>o_LC;31K+EBOdeV==5;33$.&0$$O?@]%0&1,+!CB&0)% 0V%U&&R*&1* h +.$ MV(< ( 88;* <($- %7U7!5%!5!35##5'6=!!!'35#%67#!#"/326=!##53&'#53533#3#3##5#539D$3IYE 'R,eZ0& PsIN4mNDZ==5;~DdA66e5O_).$3CB&|:'0:33:+,:87BB7 <  26V\z67#!5!+!!&'35'35#53&'#5!53!#3!!323:>7#".5%7&"/326=#'>5367'uK"B=,7S]baaa`Pg{uH &!% C373.0.]9C.9-xH+d+;5 ;$E+?);+9Az"1<.9<M]< A@22AXXA5/@^;S  )+)  " Z!d``kD+k3Dl'GVkR4 KY]a35'35#!&'%367+!#67+!#&''&''#"/326=#'>5%'673&'!5#3%#3_^^^xG99r%HbE:^Dc[M0BP*?(55:4T!H*a+;UXQZuu)vv]< AI>>>N&c$'J`j1Je2WF[C21[BZD*D,k3DYHffH8E21KeK 35'35#!5%!53#5!'6=37'675'#5367#.'#"/32>7#'#"/326=#'>5367#53&'7#5!53!#67&'67baaaOc_NNBD\M @2'3 (! /m-H+d+;K 2*P- lT+ Qh*I]< A20_@)EtK-b1$ :H45 jZ6BBS8Q'D+k3DlxAz:?XX? ": F@Q1!  "&*.Rh35'35#!#5##5##5!5#5!#53537535326=##5##5##367!5!!!#"/"/326=#'>53baaa&KIK?ndFbGbK l !'7$H+d+;]< A5ܣգ8AA44b44b44b44\ @#??1ACD+k3DlQ'4 !735'35#35#3=#3&'#3#36"/326=#'>53##3&'73#67327#"&''67##!&'!'>=!535##5#5353353baaaxNNNIGGRH+d+;K4!!&>E  8><:O, &@ "9fIII]< AM~LLGqGLD+k3DlQ'9?6"#9=b,BOJZ>2(>$M7H21FF?FFFF5$(2<FRbhntz#!%67!!5#&''67&'735'35#767&767&767&'>7367".5332>5&'7&'77&'7&'7"/326=#'>5367367'KS;0Y%09&M>X`F<1L_IbaaaD2J)27)I7B3K)27)I7B3K)27)I7 & GM@ g F 3a;;>95A>9;;>95A>9H+d+;.GC7 e M!߮##2!$1 19]< A *3.#,<-(5.#,<-(5.#,<= @;-)/y(E/$2#!3#L$2#!3#D+k3Dl/ <;.(7 < PV\bh~35##3'35#%35'35#"&5+#5'675#53535#53533533#367267'6&'7&'7&'73#"/326=#'>57+9}DD(TSSS>=G,9>8mm;IJ8*/ <=(< @-9A>C q&B$t/7B5/~(C'V+;cE4<(]< A02~YB|BKWASSSSAWk48A% "e +.1v[c\s gjjdbmq\\nBQ'D,m5D A#'+048A3267'67!7#5!%#3735'35#5#35#;5#35'35##33!53=!"/326=#'>5365353!!!"#"&='75#'aUP6 3"FEPPPPq````&1:H+b,93N.$ 53365#5335!5#5##5#53533533#33&'73#67327#"'TSSS77hh7B%%J3333  .B$*07,-(C'V+;ڕsB1?KKK41&"<@ 9-#)&3]< AGL}LL6"=9GL%/"ץ#w#|sQ'D,m5Dl=ﱖ-5FF@FFFF@20$-.>h{w}bQ '4;Alptx|35#'>7326=!&''>7##!65+53#!#"/2&'677&'7.'#5'7>7&'767677&'7535!535367&'7'#5'7>7&'767677&'7woH l $Нy#uE \gM_8Qh#HvKmJ 6! 2G@~6N# /7%6 075ITf 1#1 *5 3 EA~6N# /7%6 075ITg 0#.0,:@0(<('(>1>*<):) ?>8#A\MHKPTA9I3 4(29 0AVPKV9H11P44P11P11ELNGQJ9I3 4(29 0AVPKVI>} !5!5!!!!!#!)!Lf3XBPfFC2aBI"%)!5!5#3#36=3.''!#!+3'ٙ㏏S[Pqf0FlmFMFe޾b<@ւC'2aB I@!);?CG35#5#3#3##!+3#3#53#3#5'67!!!!#55!5#!5#ZZNNYHEZZCFCF55^-I P Jh#bbFC2aB&p&&p&69k ,A-k{mG!5!!5!#!67!#55!TTO$OzO 6 =K G66/J -!5%!5!5!5!5+!67!!!!.''>7***ְNO^u$Ɨ34ݔ#MM6MMM>A;3 12/A>4VBh@@hBU5<(7.''6767!5!!67&!!5!5!5!53!!5 lhNfV.KSo=B./-D&h>vv>sCW|BXt$;T/)$|L1 0F35#35#!35'35#67+!!!#"/3267!'$7!5!!67!!!5!5!5!F[ M'72auC3%\&On y h9<<<09MT4A'C,C$S9u&@ *09906&'?753673#3#333#3#337#537#537#533!&'7#'67&Bgn]?Fp K B{" xqhA4(@!dCB ??BA|BC~BA?G>LC5-W9B4G&<@D%!!#37537#537#533!&'7#'67!53673#3#3!37535#mb7dhiq8{" xq8\^F<jhec~~FGJ$ KBC~BA?G>LC5-W9B4GA4(@fCBf<<ࠠ<*7!5!%!#5!#!5!5!5#' %!! .,NN,p>p&A`55CESD'C#/&*3533&'#!#5!!5!5!5'673&'!5!POOH?`?H=iiSkkP5Y5CCl9'>nn>'9%0# G735#%&'!#327#"&'#67'##35#535'673#3>7'676^3 " ? 0(5WQN IBK܌A_KQ/߷m DrMn#BQ#9?C B6BC,B q$*,S!&'#3#3#5##35#535#5'673.'#3?67!5!3'67##"/3265#53&{1WLAYJKu *gPWYi m/92D;JT$.B;=%A&ZM! VXIWW"Rq<44Qq>n,#MVjaPB7n032IWBBwZ&Br^'VSV(D+?BY?/37;a35'35###35#53533&'73#3#"/326=###3=##3#3#5##35#535#5'673&'!#3悂HHHa#:12#202 HXHIp gPTPc jRBJ*T:xZASS#!,4AZQ*@(nxx˥Rq<44Qq>n* MVjTIBSZYGsq<44Qq>n* MVjPEQV<2#'63'67&'76'63#53533#3###Ei4@I ܱ)g\=/L=1oIQJ #Lrr}}L 3 4:DUAZQ.;:7|]pCCC('' &Q&'!67#3!#53&'#' %3#533#3##5!535#'67&'767#'673"_4"D,wu#nnHK$RC k< KOOd1Ø*_6F,@:- Go-7J 8F=3KQJ CD<@?4@ M;$tt@AA4<8o&(:%(LXT9v #:(K ]a35'35#35'35##3353##5!535#535!3'67&'767#'67#535#535'67!#3#3#3!35yrrrrxxxxIrrrrNo&dɥ']H;,=H-D_*Ak#(.p@LWkzznnnss>4Y9n7#535367!3##"/3265#c$%x-MQ=HCO Rdd(R+d>7K=B3!O.JA;&>;#AV)E+; !OU7#%&'#537.''676767&"/3265#'>75753673767'7&5>f;|:WH@6G8=(L&:~$ IC =?3B=12e K"V+G+^10;.$<&|0D <3 D sE+0FzA(;6-7&1V)STY<-3;[7#'>7'7536737#"/3265#7&%3!535332>7#"&5#'>=CD"$@ 8;w L89<$<N MD!:&,:&Ol ? < 5=63*{AH+BA(;F;#AU*E+)D`TCCx# +KQFLD#AY?;6<-3V7#'>7'7536737#"/3265#7&%3!!#"/32>7#'6#5353>>"%@ 8;s LCE<PN HE!<&,=+%/'0fV,  FG:P=qO{AH+AA(;F;#AU*E+(D`^DQEl$ H LvS6`D<"dj7#'>=!3267#"&=767!5!&''#"/3265#'>7'753673767&7&8<26))A '%'.>;WR2<_`ivmb"!1PN HE>"%@ 8;s L%']^<&,=+| Id)5'if? Z201 I%[ILlBBYE,>0PJ6?*E+I+AA';F;#A ,DSD`^< @F!5!7#5!#5!'>5#"/3265#'>7'75367375!7&?`/O>CA<PN HE>"%@ 8;s LA<&,=+Jԣ>FF <؁-DU*E+H+AA(;F;# D`^< IO%35+35#37357#'>7'753673753533#5!##"/3265#7&tttttKt8>>"%@ 8;s L7'7536737#"/3265#".5#53533#23:>77&bD=>>"%@ 8;s L9;<PN HE384BN: %!&$  K 4.<&,=+a:h@AI+AA(;F;#AU*E+q #'#dd.xB;,1 8@C ! D`^<?CI%!5!#3673#57#'>7'7536737#"/3265#5!%7&5,K NM>>>"%@ 8;s L%'<PN HE<&,=+9@FQ O=@ @I+AA';F;#AU*E+HD`^<-X^7#'>7'7536737#"/3265#%&''26767&'767#53533#6767&'7&56"$? 8;h M ?@;PN ?BrT8C % COm^6 (9/N=Q6+`LA|(+9/*:6|BH+AA(;40(6AV)E+樣)') DSmo21SWCxxCrrF< aV\!MS i< 5;AEK#!#57#'>7'7536737#"/3265#'677&#7&[IMSCD"$@ 8;y M /1<PN LF5g>c4xC4c>g+n:&,;+6A6AH+BA(;40(6AU*E+Ԩ%ɞ% 0D`^;,2<BHf7#"/3265#'>7575367377&%'6767&'7&'75#5!5367!5!3##"/326IC =?3B=12e K-.;.$<&ۧ3D8&@&+/@0*H:Qc$@ M72I46MK?(7-9$.COB?EI?( ,5"?76%'TIc66*]FIAADD9CE, 5A$;"B0.AV)NcW <,2g7#"/3265#'>7'75367377&'67&'767!5!5#673#3335#535#53#3&'?5 -7&?7%'WIh5!5`d?C?msB(dM`r`>_CMBiJ&A!99< !gk7#3&'!&'#!5%!5!%7&'!!3#5!#5'#"/3265#'>757536737>='67!5Ϩ2""L==4A@:*(;)"n-pcKMI1'#A1;?0@@(*h M &')$-nS6//$$F..-Q7NEI_a!yUK&++iM)E+ 5FxA%;:*(6AMKUySxx <!%)-15=ekos7#3533#3!#35#535335#37#3735'5#;5#!5!#!#5"/3265#'>7'75367377&%#3!!hKCKhddhh=dhddjLM?5 -7&?7%'WIh5!5rdd%j~ oLL@141@L11FFFFFF7FFFL+k+*E+5FvA(;"B0.AV)OaZ=FL < #'+/W]o7#%67##!#3#!!5!5#535735+3=#3735"/3265#'>7'75367377&53&'#53533#3Y!qGOیO?5 1:)?7%'\Im!"5!5ROT} 67/>x!6>:AA:>68???q====E+5FvA(;"B0.AV)OaZ=>/?XX??.= <(lr%67#%7#!!5!5#535#53&'73673#3#33#327#"''67&'#67#"/326='675#535'673&?&"/3265#'67'75367377&.e v3G G  GG1(C9D83N]\IB! 1>- :+6@Q){{"Eu &?f.800-?( ,5"?76%'TIc66m(54??B;?A!$ 8%+ (A?;:PA E7_T0?/6R? ; S-=3 @LA5< < A5=+26*4iE, 5A$;"B0.AV)NcW < %-159`fjn7#35#5#3#'#3##!#3675!3!535#35#;5#"/3265#'67'75367377&%#3536NNh *4EdF/[ED"F ]8TUTT?( ,5"?76%'TIc66YNNJMMHCQE7'7465367377&5!#535#53533533#3%5!'67&''67&''67#5!#67.'##"/32654'?5-7%A6$&WIh6!6dIuIIv=Y5l ^Z JozM9!920;A?T%Y# 3@"2,D9# p~ @E,5EwA;"B0.AV)OaZ9yy@7'746536737>=3533#!"#"&='7&0XLJ41!GmmEmmmmDDDDa"mm#+b?5-7%@6$&WIh'(%N! 7-.}0X&+;6!67/ܐA5C"A&!5%!5!&$'#67'67!53!!67v"A ](%P"5Wq/h,ˆA5C``PZGKe2],2 Pj35#5#%35'35##3532'=#535+535+5#53533533#+3+3#3#&''67!#67.'#67'7ƴr,oomE0GMMGHAAH2@q±2^dAoH"&;|>61LLLL>g*/;+ 7:3#-K} >><{TPk%(% +"TJ X(<M:bODx'"0L4994A;?; '(&!D"?49+= 0 '(@ !%)1D67#35+3%5#;5+3=#37#373535#67#>767'>7&'#5!#35335336733#5#3:>7"#".5'!#5!Z]]yIHHIIIII6H ;](R5,14{CIBzR(F }F $! '  F 8-.273'|?I.>0  # 2j>>:,+3#5#'>7#3365333#5###3333GGoKI=@DHWLeII\OG^K^A\|?15fK?ExwwFA?4<<##5!#5#5353!53TTT(TII<7'%$''67&'767353!533##5!#5#*}jEGC\\CGHM"MMMھhPEPyzOEMkpaabbbbCjjjj/7-353!533##5!#5#!5!!!!#"/326=!5!75#5353!533##5!#!#"/32>7!e|6h)>`7L:LL;&*&DxJ G\n5oXA?R?CbbbbCSSS|" B3ה<71353!533##5!#5#!!327#"'.5#5!57MMMM|TPTL"%//̐%%AKKUUANNNCfA]]AfC]?0]^/?.U070##5!#5#5353!533# $''673$7!5!53!MMMQ21 *.##5!#5#5353!53&''>7'>=33MMMM]yy]$zeN}PAllllAffff\BEEB\_B+s::#k:2)%!5!3##5!#5#5353!535!5!#5!'>LMM6LuHOdAC7Ϧ_0CAAAACSSS==̀4^.A<9/C!!7!532>7#".5!#5353!533##5!#5# M 4iUM^'N5-i]VN`^1.NL:LLL㾾(  ,#' ,/6"!/bbbbCSSSS$/9?E##5!#5#5353!53'67".533:62>7&'7?&MMM7#"'.5353!533##5!#5#/NFX"ZE"N" $(&'7 H104-E%5!5!53LLLDL IHNyx2x4yP=____=ZZZZA;3= C gmB=PȧA|<71353!533##5!#5#5!7&''6767!5!!67.5 %!!#!MMMM=7< %PHAFFPPASSSS27٬9C2L=De|2H\67#367#3>7!"/32>7!353!!#"/32>7!353!'67#5'>7'67#5#+"%B Gd"E|xg=#*I-N' f!F>A}l@#+IX,J1*6q%7F,K2%9amT;bl'7! D?+vgZ@s3! GA,{n[Bvh<4&?c/ <0)2726'$7!535#5!#3##"/3265##5!#5#5353!53!!!Û4*X!/MMMM4Vq@_B??B[+C0?NNNN?____)7'+93##5!#5#5353!53767&''67&3"/32653MMMMo+v[9LF]\5QWe6[_K4UQ+L%C<KI Ri8^On8uOB 8F$&7+X767#'675#5353!533##5!#3'67&#"'.5!#"/326=#327676767(H9/ Gj/=%M$MM1 ͩ)_D -89,9Z"CV9# !+*"$ %:.*aio6F?G3e7:7&EC!A "[' \ 21&:!&'%##5!#5#5353!53&'!5'67!#"/326=!#!)ibbMMMMfQQf޴"J3lg.# PGYY@XXXX@____wlD43%%34DlW(?,[57+37!5!3##5!#5#5353!53'676767&'7&'#5!#MMMJMm+_XNJCP4@8{5=NN ?KKKK?SSSArvl 37.r3? B++W<7 +!5!!5!!5%!5!#!#5353!533##5!#5#    MML:LLL> 6l6XXXXA]]]]97 /7#!%!5!##5!#5#5353!53!5!##"/326O(LLL:L#9v`)T*FR?CaaaaCVVVVhAC~^-C9 7%#!'5!%'675#5353!533##5!#!#"/32>7!BMK(47L:LL< &*&DxJHUA~<]A5CbbbbCNNN ~" B6i!-1%!5!353!533##5!#5#5!#'67!5!67!!!M9L:LLL9LSf'`. P 2XXXXA]]]]66#a?C}A58-9A7!535!P M@MMMP/kx#24܎#xk/ݻ  VVVVCaaaa2PALz#D UU D"{LA52 '%!5%!5%!5!'353!533##5!#5#!53!3   M6MMMw|}}zz 1"?#.J:(9-5:(9-524:353!533##5!#5##'6%##"/3265!5!537&9M2MMMմL 0K/2"d%N7pd3(N":`K=IVVVVCKKKKQ_V*fI2OXCQ'C&dCpp0^m,f$7D'>=!&533&'#5!#5#5353!533#73!67327"&''67&'!]9/*cN&LMM(M10)<:f4C;}'P'I @Zv5IR=L<3:5-aaaCVVVVCN4:An]|l:AijRKg+C*bm%2 @%3##!#5353!533##5!#3#"/32>5#'>7#536535#sKhHM6MM> -Z@) VY8MN {< .c.XXXXCUUU6G* C0ºd:XףC?H27@!5!'67!5!&'767!535#5353!533#3!'67!#"/326=h$ѧuc0IgMMߡi l^6qT*X .DUI=_@H7.(PD<>U?____?U>J_@i2TdF#A %׷(713##5!#5#5353!53!!!!&'#'67!5!5!5!5MMMM|ZӀ&N&Z|APPPPASSScA@~r;v.v;r~@Ac.7+;67!3##5!#5#5353!535!&''67&'7!!5!5!5!53!![`qMMMMYS)2JPJ9FEA@@@@AVVV==VF4<HC <39;)AA}?\\?,6;%!5%'67#5#5353!533##5!67!!#5!#'67&'767!>3&qIMMM< $NLS]թ>PA.EDV^R57 $8?7!5#"&=#'>7#75!5!!!#5!#!5#3##5!#5#5353!535#3zK-mVm&d>pLLlMMMMd9!|"=ofs/=+LT>_??_ --__8A@@@@AVVVU+&7,@!'67!'6%&'767>=3.'##5!#5#5353!53T6RA~7L 1a?O[]0_ZY7_P l-.jLLL:LjT, 3@r]+HF9=9E[`3h_'ddde(F TU)CWWWWC````*9%@3##5!#5#5353!537&&'7'67327#".53533!MLLM%nY'RK%bq$qHs;nK/?=x|We, =2Fblvo ' fYSV@`[`> gk|m]qf26*06##5!#5#5353!53&''67!#!5!5367%7&MMMM޴P,PW KrMM6MMJ s?N4I=]'|T87 =;#hv B#)zi/d/XXXXCUUU9ԣ/I5F/g=:7]&(sA,I59 <!5!#!'5!/675#5353!533##5!#!#"/32>7!3"KI(67L:LL< &*&DxJIc7:iiA0C]]]]CIII# B8l21$2!&'!5!#!#5##5!#5#5353!53&'!5'67)ibbNNMMMMfQQf޴GYY;,S,@XXXX@____wlD43%%34Dl/7 ,!!!5%!5!'5353!533#3!!!#5!5!5+35hMM߂cPcOUjj7#5;5#3##5!#5#5353!5333#"/326l^^^K ?B687 qMMMM^JL%B3VN, CB+UAABL64/zxBULA;;EEALLL3;F$B 25353!533##5!#5##'6!!!5!5!5!5'$7!9M2MMMմL 0K/2" &~[vVVVVCKKKKQ_V*fI2OBBE C >BA7 !5N3'>333267#"&5##5!#5#5353!53!2327#"&=#5!53!K{m)aePJ %/F# O&MMM(Mn fRV}L';&CJ /45?  0ADDDDASSSSR& A#_RAMM"2$47'675&'753###5!#5#5353!53#3!53#53533S`uV<:A@H/KKLLL0LPx%"C)%q ne$qZm1CFFFFCXXXXrBB?D9 (:#'6735##!##5!#5#5353!53265!5!##"/K1 AEKS LLL:L* H(Sv3d47Hc̠A^xCIIIIC]]]]*AA\V)C#7#7GMS67#"/3254''67&''67&'7%3##5!#5#5353!53'>=3.'67%'67G?5DUGFC5LR$LUy[FMCI'A#MMM,M)N)a$'q@JFENI -7,>5|m C* @,>0H<6'?'*+&&A@@@@ALLL{?=Ւ}?+``szv21<BH!&'%##5!#5#5353!53!#"/326=!5!5#5'673&'#67%7&D`^RR MMMM%Olg# tfq޴`qfO>W,3f;eBKK@XXXX@____2?@? ?d'D9EllE9D'dLl"zR/_k+j,704B3##5!#5#5353!53#&'#'67#535'6733#"/326MMMM^O4B[M@k+~>LbNqKL%B3VN, A;;EEALLLLAul.byPm?yAz @(>3;F$B .2'73##5!#5#5353!5353##'65#5!5!53%3#3!53#535LLL0LMMh9WR4IKFCFFFFCXXXVuC-??_ٛDCC@D87#L3##5!#5#5353!53!#5!#5!535!#".=#'>7#5!!3:>MMMMuK\KuP>SM23369- } >%- AKKKKASSSU<<111 !m"AfUAA  #77,9F3##5!#5#5353!53!!.''>=!5!5&''6'67&'MMM(MpϺ 12֍ pJ NE59G:V15o!Lg[/Ua*AFFFFAUUUFAg1A$TS$A1gAF /52F3<1[<4lw6d 4.B^7Z?@/7 7!5%!5!7!55!5+35#5353!533#3!!!.''>7OOO߂u$Ɨ34ݔ#VV:S}CC>AWC=UUUU=CA>4VBh@@hBU5(7>##5!#5#5353!53&'7'67#!!&'#5'$7!5!5!5!53!#LLL&LJ2DEE2dEJ/PkPkw62AKKKKASSSSEKQSJPSCteBg~~gBetCAPPAY,1*F##5!#5#5353!53'67!5!67!!.'#533##5!'>7#536=3MMMM| n; Ot q@s_NNo^-R[NAAFFAAJJJJ?Do?-7..?x;?$OwwASp$@M,7!'675#5353!533##5!#!3744:*E4@-~940k[Ip hIZq& Il)68L:LL= &*&AJ%S>Cp28lbA/C]]]]CIII#91<#!#5##5!#5#5353!53!#&'#5'67#535'$7K$MvMMMMnr_pW0awJP*HGjx/-`-AAAAAAHHHH( 4;SM4^\ÿeQ8KQ;N; (9 V.7 /P!5!!5%!5!%3#3!#35#5353!53'67533#67".=3673:>7"j߈POO"DOuWIOP() H 7)bCNN8M=CHC=UUU1A8@x} R!@:F L &!' ))1-4 >!5!3535#5#!35##3!!!&'#5'67!5!5+35#5353!53hJߖ!ݡP!ЎMMMgF}NNNNQQQAAF>?sA=GG=As?>EFAFFFF<< ,0!5!!5%!5!!5!#!#53#3!#35#5353!535!h{<zP&Pj}O}MMjz|7GG5DN$k$ ?626?KKKUKK)7%+A##5!#5#5353!53 %!&'%&'67%3!!&'#'67!5!MMMM(5b*0C--I*$E'%F+D+GPP݋A::IIASSSS:?<A\WE3AIN9ecfe 7AI?NN?IA-7 Y_67!3535#'67#5#5353!533##5!!!#3:>7"#".=#'$7##57&).!(-(Y)M@MM8S".C! K 5*+41* nM$%4;769$1,)= 7&567&'7&'MMMMi;/X;N4 XA PF4547>3- .058xL,.";(*=AJJEEALLLFi:FCC_N1FB#B !CGQ.Mi:D V2x( 3  `m62.2 4d%&''67567!&''6767!##5!#5#5353!53!3267#".=#'67!5!5!5!53!!!\CQSlf2C%AxTzSJ!MMMMTQI ,+$9:.'TTPT5+1#?!=9E42:N<1AIFAM/<1s?7777?AAAA7-  LEaB\@=:44:=+25A3##5!#5#5353!53'67!&''67#5!53!#&'3!!#5!5!MMM(M,{(^Q-KZCr&2P {o/gy0P_P_?HHHH?]]]6`{135C3A2\F9h=OO=-9Ba5]B?5EAA9O7'675#5353!533##5!#!#"/32>7!!#!!353!#5335!5!5#'67#=(67L:LL< &*&DxJ; [HMKK^!?C)IIA0C]]]]CIII# B8l*<\=\:\=\)"F`<7 $A35'35#!5'35#%353!533##5!#5#'67!#!6=!#"/326=!  M6MMML8=!K[GA!lX# 'HA^,? -y"G[ZH 2 @$$..@AAAA#= I=G385K9)5=F+NA0&-6583G=E<<$04%!5%!5%!3!533##5!#5#5353!53!#5!#5!53!5!BBMMM,MN:NPBUURR;ZBBB@UUUU@LLL\tY7*06MSY353!533##5!#5#265#'>=!#"/7&&'7265#'>=!#"/7&&'74(^8"i*!JN"NNNI!>Z|8 17=4)^:"i*!JN"NNNI!>Z[[[[AKKKK[,ĴL*GV)C6)=6==)6"E,ĴL*HV)C6)=6==)6"E70?EK3##5!#5#5353!53#&'#'67#535'67'$53.'67%'67MMMMڂ[,502K0P+i6>FEK)O)W"%^;HBnCFGA;;EEALLLJAM-]W'mb?wAx ?(= 1?|(}?*^]u}r<4 P35'35#%5!#3=##3+!#"/326=!67'7&''675!#!5+35#5353!53߇Ou!Aq\! BBA<'B {LuOMMGG6G7DDG}GGAD:T*B+Z *XC4*A bG:5DAFFFF<<'+04%!5%!5!3##5!#5#5353!53!#5!#5!535!!!#5! **MMM,MN:NPvvP}pBB4@@KKKK@LLLR995w??*9 %+1PT67!&'##5!#5#5353!537&&'7'6767!&'#5!#'67&'5!_I HZKPcLMML*XT-J$][)hQ[N N>Rհm& MMMM."PORR#K%+)ZYA!)""B:PAP7!3673267"#".='>7+35#5353!533#3!!#"/|%+% 3G "C>7COBG?!D0(OMM߂ 'e"D?Eu>>3=7/<&ul5.529!v2B!d2/@LLLL@/ )@A7 e%#3735'5#;5#7#3&'%352>7#3!3#"/326=##5##35#'>75#5353!533##5!#! #"/M25,#CHMJ5C%BhR,AIIIIA???LC9< IM675!#373535#5275#5353!533#67!!!!!!!!5!5!5!5+!5!5!5#3j`TVa0PPs }w9WWN9w~,=====188AFFFFA' : 4:/398AA893 /:1=21 2I!5#!!'!5!##5!#5#5353!533!5!67#5367!#5!535!5+5!#!!' MMMM]7 P P>b`N'E*eBE>0000><<<<::':$!7#3##5!'67#536MMMMgPL' Π'[M-:;6G[%JbւK&' F223N03+?5555?CCC''B&7^"863-#(.4:%74Z<i#C99M>>hJ/&B(CA+A&3<%<TZu{67###5##!#"/32>7#&'&'7'67&''67&'767#'>75#5353353'673327>7#".5%7&M.&6M3 l3+4aH*l8</8@FdI,Od9OBBHkx4kcN+YNW1>{#%MMA*_8VN #%C@(<J#%"VA2F=!'1JsC.8f7#X5/&y9 !@====|b,Y8#V +0+,Vx"tzy%7 T67#5!3&'5!65#5'67&'767!535#5353!533#67&'#!!&''67o2-? NIwNVnZEG2ESP0bM6M86<**K0:3DANVN R&oU)2I:7UfaZA-5+"?*44//.=7<;:AKKKKA=#>2 =9$<9"?!,5-ACs!5!7!5!5!'67#5!#>7#=!6#3!#535#5353!533!!"ޅH^-\ef4NH߇OMMHHg00F>H<< = k0M 00>IIIIwC#4$*06RX7'675&'73###5!#5#5353!53$7&'7&'75!5!5'6733##"/326&'7IReO26E@:3KKMMMMS P)2@0,*1@0,a43G:D1@,VV$If\# Of/bU"D%%rcd$UY 2L?77AA?CCCC)>+_FCe bGDgΛ@6Q{jQD@I#C LF6CQ97AEIMQe%&''62767#3:>%#!67!#67&'7"#".=#'$?35#35!35'35#%##5!#5#5353!53g j$t e% - pM" O da $J:!2 =62^L^MMMM( ;FU k%! #QB !+1 &'. !{*EI^dddd6^>9::9>====44!GM35'35#%##5!#5#5353!53!###3##"/326=!5!5!535#53533#3&'7!MMM MJpbbb$Mb\# uuNA`2_E A?++CC?>>>>3Z?K#@)?Z@`>II>`\GJ1HK9@X!5!5!#535#5353!533#3%5!'$7&''67&''67!5!!67.'##"/32654'a%iMM%MٹQ-O 'tuf5_S3Uh\,#-HW0FHTP9$@yy@7!3##5#53535#5353!533##5!#37&'67676CKK d !"/aM. Iv6L5#5#53&'#5!53!#3#!!#"/P+"' 79P9MMM"M*5+gD4v<)"rPr(<- @?[-;532 XH KK%>LLLz'\D)F3Ma&hI<]9>8xŔ^:Z^A74(0$>DTC(?':D>>-77ALLL78677=97=9n(p ZZ'< a!5!67%&'7&'7&'75!!&'#"/326=367!535#5353!533#367&'!5'67hM@=>Q H $/F3">OA?PPPP?A>3((,>77,B-@8<=Qy%<k!!#"/32>7'67>5#'67#'67!5!535!3!!#"/32>7'67>5#'67#'67!5!535#5353!533# H (-TeZB ْIvr^fJ,zi ; ',P^R? !֌IopX[JLLe*#¦2CLR|WcxT=JJ*#2CLQxYB}><<<<>LLL<<<<<=!536MMM"MNk) 8 :61 MK-4;,$iONNNNRR?DDDD?KKKAN?8A%D I81W8RK21(.4F%!&'!5!3##5!#5#5353!53!#5!#5!5'67%7&'&'#5!#5'67.oWW$MMMML6Lh2j)|,tǰC&O$O&CBDDI?<<<l8xX~uOggP@@8>/87Q=2222=KKK<77<>s%=0:!>&f">5?r#"@+=v>u <#'HNT67#3##5!#5#5353!53#'63'67!#&''67&''67&''$'$Q,)wLLLLH.I#){H@2f3E zL0\YTLӋ/*p\9)-\.<;A7777ALLLkh{@1[[1Zs 9T9,:*K"8 E48'*5:8_':&)+A+1Ie7'675#533!!"&67!73##5!#5#5353!53&'7'67&''67!&'!#5!5!5#535!5!533#3#9_%Y8&;ϴi\EGLLL&LZQ2_LwF>93&[GfKjbP)P9;<67A6'A+ ",-?//HH?IIIa]E/ROr7#!'#1>V 7>-7#049EE93708;;8073+A "SY35'35+335#'675#533!!"&3##!!3#!!#5!5!5+35!5!535!#5#5353!53&'7󪪪9_%Y8&;ϴ?NJ&ALL&LZQ2_L?HHuDDDyH9;<67A6'A+?2!<8;=@@=;+8<0#22?PPPa]E/RO$A9OU[&'6%#5&'''675'675#'67#535#5353!533#3'67#535!33675#'$%'$PK{MUh>H C rj]PPj]~iSrC rI^MHI -K?e^1(K:ECR+M/E@YEI9;8Q><);)<7=AAAA=7;)<::2A><7r?:#A#44 37M67##!#553&'#53535#53533533##5##3#35#+'32654'67##!u#;MI|y=&MMM%=z{A .?4N3KX-ePLUGi(@(Y>KQ>>>?:::@⡡DYzC$*Z]iu@d$2 X\#3&%!5!5#;5#&'73#3#3!67327#"&''67&'!'6=!&5!#535#5353!53#3^0ܠ噙_l$o]p(O&P*@4`$H$D ;'(o3#΍55+5J KMM,-?]]]B94;?n??#>SB;H UF-2|Y^FAU&?$PYd3[69m_=??AAA] .<!%).26I#535#5353!533#3%!5%!5!#5!%5#!35#67!!5!#35!&''67&'7OMM߇""PM\U[QtM%'=!53!!353!53677&'7?&&'7MMM"MӠJ.3;,$iOMNJ4?6I E HC5E5K=N4euu?DDDD?KKKh?V8RKKAbIIII'^mzZ]s wZt\ZXckjc4:@F\b!5%##5!#5#5353!535!5#'>=3!!!##"/326'67?&##"/3265!5!537&"IIII853!Hh)A/=:@;2&<$I!>,_X& M>R9?9+XX???55?>>>>1::֯eADK$@='A1Ob ldPc_CW?"C !Cyy w~<$j!&#&'7##"/326=#'67#53##5!#3.'767#5!&'!5'67&'767&'767#'675#5353!539sTmGY0e}'(N6PK0& 0Q,{RgMA:sI,17Z]{fplXAE4*3'5&3'0+Md*NM"M1c\ZA]V3_[,|F$A (lO6HeA@,,,eA@==[SE5<:O)'O<=%&7(!* ,('+0E45Qi @GGG)<!'-3O!5%!5!%3##5!#5#5353!53'6&'77&'77&'77!!#"/3267!367!!!MMMMB"7A4 C @$ >'A;J;Sf!%Y O X8808?7777?KKK<dYU`SW VT QEHO'<+'A2tC>U$$1<< HUf3&'&'7#6#!6735!#5#5353!533##&'!5'+'72654&'67#5!67!5!35!#&''67677@79#(aDF {4MMM&}YIIX"3) 7&0AM7R!*T!([TP=C0A+%%70!83NA -Hg-00?KKKK?0fP?*/$%0*-%.1S4D&+G1Yn9*;6%$9x;;TP<4:$4 b35#35#35###3&'73#67327#"&''67!#!#3#367&'!'>=!4&535!#5#5353!53$ssss#{5+3& 'B!E-^3F 6%"R$Ys,8*Htwkky2': P(/9'  MMMWGMLE?6-%&6=o@IqmSMe;6 >:GL%+2ؖ\7UǪ! 1FF?FFFF74!'bh%67#7##5!#5#5353!53&''67'33673#&''67&''#"/3265###67'#37&3%MMM M3&=)1o=5!@KP,B /J7l%l=Cp(w:82/ C-|Ez*5+4EL4'5c %?2222?FFFFJSSIPQOaȅ .3@wI=;I_=1!U*C*:Ps t~kv}5A'6X!5!!5!%!5!5!5!5!535#5353!533#33#'675#5!#67&'7#5!5+5!#3##"/326=!j-!iPPޖOO [DGTxJ)Z" /AQS+%P_44504+7dMM:n:k2}C::C}IIIM>4 > oC619?WE@%%$@EW?='?I>????MM 5A 48I!5!5#!5#;5#!5%!5!#3!3!#535!535#5353!535#!!!!#5!5!5+jYIKPPiPiN4>>>>>22.0?2N@HHHH9H?9+G ?KKKK?445" !+ #>H8H9HQdiSWd b[RhmN`U"[\ 7=CIOU}3##5!#5#5353!53'6".=33:>7&'7'&'77&''6&''67&'#"&=33:>7&'76%&'#"&=33:>7&'MMMMA+[( J50;Banu!vl qm=N-NMn1N,0+ ?# && *@,< ?CU[675!&'#35#5!67#'275#5353!533#67!!&'!#5'675!#!#"/326=!#5!!f[(K f2IIBRqsdG`wgCM&JfZ# G)4p<97@GGGG@# 9 73>7+!675!#5#5353!533##!&'#5!#0S97EE?R yb=6&-ll|Բ "F - UKkg?)MMM5  @fV| LK?UA /+$؟ ?(>1< $VU;'AD'@: QYx(::?>>>>?:;jQ7-@ ++!<[l3##5!#5#5353!53'67#'#5#'>7##336=#'>=!!3&'73673#353673'>=3.'LLLLC&%6.FK FC5:: :FFCU8%Tl?'$2C\EDFC\%evMlW&9i #wA9999ALLLM]qSE^-2$E5/'4i16P>x*)11+<{34x 7#'>7#''6767k%ii9K&LL(\D*@"Je'hI@ /*/M?)9'R.F)o1Q)D0vPO(;?K+A pW76604?7L?<<<88673:<8=9(<<5?[pM./'C?'0 d4E((nY"t $<\ 2< 17=CI]35'35#35'35##3353#3!535#535'67!#67%&'7&'7&'73##5!#5#5353!53yrrrrxxxxIrrrrkk%=a6D WN?@AO J !4F7?N>V8MMMMTAƉAƉOA==Ab!'#Ys>TbhUb[ a^VekR\[!eS#?AAAA?KKKA`35'357##5!#5#5353!5353353#!5!5!5!5!5!5!53!3#!!5#53353#5##535!#5!3#5#'6PPP6PIG@\@L;iiGIIGLI"AL99n669&))&9AAAA܂JJ"69866((k:n3JJK_[3[?)#a << ';?CGKO#!#5%#3735'35###5!#5#5353!53!#5!#5!#5!5!5!535375353#3LLLPPP"PMJMNҰ<%Q%EEEE4AB=,,,,=AAAA,ӝѝ,9933c44c33c44iA *9 #7=CIQ#!#3'6735#3&5#!5#;5###5!#5#5353!537&&'7'673!535!I7#^YG@(; 1-@:bbbbLMML*iE-I&\a)fXA99@@AIIII7>388D:9=Au+t}?? *< W]ci&'7###3735'5#;5#&'7#5!5!#35!5!535!#5#5353!533#3!3#3##"/26=!7&&'7'67 2.>AOOK+Re#TICMMMߙ:7#K}} F!aW< Yq(m?*G$Sd(Xa;_>]9_' %:EEEE0EEE?;;35<1/::<7!#'675335335367#5!#5#5353!533#3#&''67&'#2 (9vQ2[cO!]< ];_F3 ,6M+-a.BGFFA2KPPPB %M0\&[5Ai%q;0iBDl.z>>:B>,BtZ.Y/ D5wQ)IU}}al999A====A,29CQF=DRRD=FSh "A#7=CIOSa67#;!5'6735##3735#353##5!#5#5353!53'67&'77&'77&'7733#"/326<85Z3G xxxxHxxxMMMMC*@S@P > O :!2IL%B3VM- %&$',s $ <$ZZ5^Z^^?::77?KKKVZh mTPna^Qd cSUV XV 3IF$B -< 1GQU!5#&!#5!#!5#5!#5353!533##5!#53'67#5!53!#3%'67#!&'5!;Zh KJ+LKKKz4J7&'!!3K.M:'4& MMMM('ljI(52&F(j|'4-=-%8 HA9999AAAAA'22'0'v8*36=&&$,;3v'-< a5#5##33##5!#5#5353!5353=#'673#3'673673#3#3#3!##&''>7ȚMMM My2"B>F |f#i5E CuKPD=8;d?4Hahnnrr:uABBBBAKKKD K>n 2A %z068=:,>n:r:u=/B}|)ldR&7,Y A 'SY_ek5#;5#!3=#3735%##5!#5#5353!533#"/3267!67#'65!53!!3!!!677&'77&'77&'7KKaPPPP432dR0(#d3*:NcP P,@ + ?k=j';AAAAAl9999~00009EEEEtv+<;fshxH7//99 "8 0R\dQPVM[ GKMF -N9C,7 $,j!5!5#;5#73#3!#535#5353!53#3#5!#5!767#'67#5!#673:>7"#".5#3'67&h۟噙DYKMMPL"Lv+M63?X%KVsK& & F 2+)TGО&Y37ZZZ?77????Zgg+' &,. 8+M99m264:  !' 0V>/<< #n67#35#%+'72654&'67##!!535#5''>=3&'#53535!#5#5353!533##3#3!673533#3# Mr;.GM# @)4KS5M..i 4 /@ TMMM[ 2E\L4;E*M"1R5C?D)*F3ahAb8??]3 V#8{G(>7.00?KKKK?05>-B<}2Na ;;:M9]#<V!###'>6767##3#&'#5'67#535#53&'#53535#5353!533##5!#3#3yJiK 2/A=-̚  $MC'5PM@d'qGT1>F>:=88CXJ:NW>F>N7?K-AFFFFABBB6?DA8A  g675!#373535#!#3&'77&'7&'7!'67#5!5!5!5+5!5!5!5#5275#5353!533#67!!!!!!!#j`T*n H H%.F4=;Q0@@O@R;WN9wa0PPU<iw9WP#------qHBK@ FCK,!BGJ?$@D:*4'$8%4-9FFFF9 6(8$'4*:G)4(<BHNT35'35#!5!5+3673#!!&'#5'6##5!#5#5353!53&'767%'677&w"UI O PMMMMEb'dE|PYv'PV*JvX!dRR7J?2J&'$"2?[I>WjjW>IA<<<-<x%67#767#&''6753675'67#53535#5353!533##!#&''67&''675!#3#&'#!#&''67&'67G).@+(:.%f82"=#S "Ec(hD%M M+ &-^?u}EH$EC#>[(!(-E&H-$ L4L( IFhtKIX.o- *6. .5=F+q3>={<%gK969A<%AKKKKA=4AI<>ALKB9?Le=9%(=<97C"y!<@5?I=):/ 'A PT!5!35#5#;5#67!67#!5#3#3!!#5!#5'67!5!5!5!5+535#5353!53!5!j쪜朜 'D86ީ4Js3VN N3_Ш{&OPPO *NNNNN0i2;;\<*'8:: A)7:270*)A$(@V#5!!5!##5!#5#5353!5335!53!5!#5!326=!#5!#"/!'67!5!53!!&'#5OR<6SMMM"MPL?I#" ^L:%JdׇPP)''''8<<<<6''6r((ɟs n6%:.>7007;1::QQ$<Mae35!5!#!#5'27535#5353!533##5!#673#3#&'#5'67#535#5353!535#53533533#5!yKLZQ.MMM18Z 6gPH3?>J;i&v>RT+TJJGIKKggN#l#!<N2ALLLLA999@< R;I>SX.UFlWA`i>I;K_<CS2/!H*RMMR%"- !(A2 JF=?7I_MMMU!4+75E'T$L}LLGIDV64 =9GL)%3ޗ[$t$yu>Q姖6FF?FFFF?3 "#9>~n‹7> 1A(07H#326353=#%#535#5##3#3765&'#&'#6#6767&'#"'%#"&'&'''>35#5'67#535#53535#53533533#3332>5!5!#&''6767U  C1{{D&#%X< #)#-T.U."*=VV:/'$ *>''^$'n!DMM jLED$CX#2  V< 5R;(2&1)4*5S I=.m!#)+12  7H  &"V^(<2:T<&8 80183&27<<<<7/955d::CG $9 7#4 #135#35#%3&'###5!#5#5353!533#"/3265&'7'67&'#'67&''#"/326=#'>=!67#5367#53&'73673673#3#&'wwywfR<#M%il$$(0(&(guc^- '*)/UH } /? L;n\$?1( I^&C%\u(6 W2A4;<:)<>(0?O/7)#&0&4~35'35#%3##5!#5#5353!537&''767&'#!!&'#5'67!5!5+&''767&'767677&'73673767677&&MMMM:&; &"&EnL'A9 +;0&$"9&17(9Kam 7[ P y&$"9&17(9M_mUU6L?<<<MMMM(m?+J'Sd(]]?X8C:LD~WKaI(W׀ A(ZeV pZ+g6116gNNNN8JJJ?&&22?KKK9A099<=<6Da)l7-@A?G ##* G?A@16,s?%@ xA *< &*195#5##35#735#535733#+3675!##367'%67#75367+535+5#535;535#5353!533##!#&''67&''+!#&''67&'67lyyyy lllD((Di<"&illw,>H , DHgF&&Fg*II/1_?r!uGL"DE"FT.;9KJliTJT$**000*W**2U:S"&42*( % ko&4"S:U-&ADDDDA.#>CL==?QOA=AKjA3U 42(8?: # )& 0: V\#36!535#!5!5!5!5!5!67#535#53535!#5#5353!533##3673#!#5!#'#5!#)>$I$'Ywԧ(LLL(;@Z2/LK1.F f4QQfXT99w==r88q8.6Q?f:B(..AMMMMA28)XR?& $$< 0; JSW[_ci!5%!5!3&35#%'67+35!#5#5353!533#3!!#"/3267#3!#573'67#5!5!5!5!#5!#OO(64&XC JLLL /*0\H-$E7F Q1U,zYF ??2>Z+ +yf9@h:..AMMMMA:#:Ad $0$:3 'c$0F99w==r88q88 *< $*06V!5!!5!35#35#3#3!#5#5#5353!537&&'7'67+!#&'#5'67#5!5+5!35mHn7FEJKMM(m?*G$Sd(Xa?W7D83 d!jMwjH"(2MUUU?2C?FFF9A096<=<3Ga)r2=L<>G`eA>8P=2 A)/JPV\b##5!#5#5353!533!!&'#5'67!5!'6".=33267&'7'&'77&''67&''67&'#"&=33267&'76%&'#"&=33267&'MMMMPPA,Y=UtEH8M%l-HA:.DM#1RX.UUNw.$?,_W$I)3:<,/# =!5335!#5#5353!533#3!!#"&5#33!53=!2j3$#[NFүỦ/8<0'MNPP6P͂$%LЪAx-7 +*/O''''&'[[[[[`/0Y9Ug*MF9EEEE9#4 8G+'>>X0 A#7=CIOl67#;!5'6735##3735#353##5!#5#5353!53'67&'77&'77&'77'67#535'673#&'# x p1X0F ____D___?MMM,M@'= ><A; @7&(u8KdNh=,h=M9(#8)t $ A @(>A>wJ 59 #7=o#!#3'6735#3&5#35#;5###5!#5#5353!53677&'735&'#'767&'767677&'7!3!5G2%TN;4'5e+(3.LLLLLMMLf$ ; & 7, aIL ?/(*&<22 D5;O`6%1 ;2? ):.(I6%3v>A99HHAIIIInost!i\ Yk&? F[=@@J[J 0\Zw ,)V^?7 A#7=CIOs67#;!5'6735##3735#353##5!#5#5353!53'67&'77&'77&'7%3##5#535#535#53&'73673#3# x p1X0F ____D___?MMM,M@'= ><A; @7NƲl G!W'I$e(#8)t $ 1;'.#4"@<!!!'67!'>=!5"&='753%3:>7" Q)A9+%u/8<0'FͩBPg(u0(; K &J<@K@_BQF./:ff?_ձxIF.F/,. & 0/9 A8@]%3267'67!"#"&='75#'>=!53!!!'>733:>7#".5't@:,  (A50?/8<0'MNV*0K}$hM@I/-.04)<:=+6<~* 4I<`f>_ֱ;;:A=;,C%nh# +!$;>:  AF!%3267'6!!!!!#!!!!"#"&='75#'>=!5R't@:(L&NPV)4 )C21>08:0&MZS:#0).M:P>+|7:5A?3! 4/;Ze>_ղAT%67!!%3267'6!!!"+!#&''67&'7#5!5.='75#'>=!5-fIZ(tA:(V)4 'J;==TNuyЗr`U(v2@6 08:0&Mf/EEP9&/(.7:5A?3!$>'@!*2F<>  09We>_ղAYv3267'67!%67#7'67&'''>=!53!!!"#"&='75#673!3# '%3267#"&=#'>=3'tG;0;* eE' &-6:0&MNV+1 &I=_ղȜ390@44 3 8Jqg ;RCAT8J10( "(Zc"5OUPA &P!%3267'63333!53'7&67!!!"#"&='75#'>=!5R'tA:(GjG_ղK=_c%3267'67!#3735'35#67+5!!!#"/32>7!'67!5#"&='75#'>=!53!!!#3'vlK60!HFUNH #+&FsA&YSNά?07<0'MNV"M5 )('2222./ AK6 > )6}5<&P9Q2 57תd>_ֱ.8+<$#/K1S%#5!%3267'67!!!#&'7#'67#5!5!53!#"&='75#'>=!53!!!Jj'vlK60!KEf}k^XJ >Nά?07<0'MNV"V5 )('D;*29?2$!F.:)2;,\Q2 57תd>_ֱ.8+<$# A /=CKae5#?67#'>=3533#3"#".573:>7'%#!#3'>73267#"&=5#"/32>7#'67#5!#3`ZJZ.6B4)M%7 /)&0-( J=!" 0GJHGL[%I< # F M&c6B2' M'N| ds0-f"d߿6;5A@;"$)I5 !펖.<&{u$ 'v-16 !D)D^cR> BBB)I1$!5!!5!&'7.''67!#!53!!6`SBYXD% {KPP^o  C8 D@\@5#;5#5!327#".'675##35'$%3#67&'7&'w㖖   A#,"oIߞs%*v}Hk"EL9F"%?ܝcQk2;AA 0Ba>= f =)|t B)",0353#33!&''675##;53;#67&'73#5!aaav9*ղ `]_KK_P`IZD4.i>lD53RH@!G?nDD-%?353#37&''67##;53;#67&!327#".53533vXXXE2Cť KfUIIUPVB<&Y{ +0,eooyNQ3 Oi~QJH @J F .-b6A353#3?6!53533#&''&''67##;53;#67&'767&vXXXK`_PCvH'VV'( ȣ KfUIIUPVBI D:#wKuiDDҥOO=IY\F@ !KH @CM;S6 A&'#3535#!35#&'7#65!67!5!!!#&'&''675##5'67_:|=\LL+l%$Vr"g!GR9>"rIG!eCLO@ZZl >6:??6:>oNC %oX",18At6% COnF1G%5#!35#&'7#6'67767!&'!5!&''67&'#&''675##!53H /P3?C:9dk0%;8M*m ҳ أsO}4JG=)~KCPeee"lOY)\;?\&&%<5??lP2C ML!@5;Ia]f#:"7At6MMF1;%5#!35#&'7#6!5!'67!53!53!53!!!!#&''675##!H /Pz("fLPLMzC4JG=)~KCeee"l?%)=$?M]f#:"7At6G h!:32>7!35%#3'357&''67##;53;67!#"/#23267#".5'#67& -qAAA{A0@ GL>AA>P=>R&K ""1N H23 M #B<604; {:?0/+Af9@G @ 5,=@7 45 SMEGGEPEEF#d@BBT@ .&GH @ G1 >%!!#3'35735#53533#3#5!#5&''67##;53;#67&BBBC?0PNL: NK@EE@P@B @4DD'??1)*GH @ T& 8%!5!5%!5!#3'3573!3!5&''675##;53;#67&#(((JJKw@+<LWHGGHPHD0%Ah}B#8EG ?L7%Y#3'35'67##;53;#67&'7&".53675!#53533#23:>7LEEF̼ RKBFFBPBD$HB9#C D595MKN? '"('( K 5.dHH @ S:0H #'# :ldd.z? @4A 8@C / M&''#3'35!#"/326=###7&''67##;53;673&'!5'#67&G_R@IBBC3(F9Me@0= JO@EE@P@BaO{:+*0K:WfhU*U*E,pA)*FH @{z?+'760-/ F11G%5#!35#.'7#6675!5!'67!3#;# $'%#&''675##!53H! %y|2JKxZ+?6'#~HdO6R7KI=##pKCP]]]( j mk61:BB=4*(W;W >/;^E[f#0,7Ar522I8>35#35#%!!53!7&''675###53&'73&'73673#!67.^\#P1kDWJF+ nKF!C('%C-$')F#FʸR -v\\L8 C;.50;HE+EH:O=6 L'N#3'35765!!!!3#"/32>7#'>5#'67''67##;53;#67&1@@@m<12 !+%*bJ. FG9RAAHH @U'M#3'35767#535#'673533#3#&'#&''67##;53;#67&2???pAJz 1?Q$F eNERN[D =Vy>dZiD[P# 8*uuCDDqHj '.@G @I' E%!5!#3'35735#535#'273#3#5!#5&''67##;53;#67& CBBC?0dkmlKI: NK@EE@P@B @&^LC DLC$Cm551)*GH @ T;N#3'357535337&767&'767&''&''67##;53;67'#67&GBBCM7^L/P@-yHY6I0HG-F5RT`X NK@EE@P@Bj7>="4*dBwwB;)kz<2CfVWcI:D=UQA++'HH @iv$w;XK,A#3'35%&''675!5!'7!#5!#5&''67##;53;#67&GBBCkoqmf?0LI: NK@EE@P@B @dșxI{xIvCC^Y`551)*GH @ T'L#3'35%7&''6767#5!!67&735#53533#3!5&''67##;53;#67&GBBC6>UD@(1**.~%,@*N NK@EE@P@BMd "#8+*CrvDDwi@}{CvvCD ((HH @U8<,28N%5#!35#&'7#65#'>7!5!53!!#"/326'67%7&#&''675##!53F /ezRT8LHP<MA/;q:D;;qS=L74JG=)~KELnnn"lg:03tVASSAG#@ u.Yzz(ct'k]f#:"7At6556n#3'35323:>7#".='675367!#67&'7&''67##;53;35#53533#3673#672???r#i("1 M =:2EH9);"N/5y>A6D =VԭR,wH@?d[k!d* -%,16  Ee0#0IP'.@G @AiiA!xC`J37^?d7( P!5%!5!'#3'35%&'%'677333#"/326=!#5&''67##;53;#67& UUBBC%62@34!)=C@&@*K KnU! M5 NK@EE@P@B4*3tt>h^hi]`krWx U%C,H++'HH @K' Z#3735'5#;5#%#3'3573&'767!5!3#"/326=##5##5&''67##;53;#67&FᛛiAAAqA+F)6V1iDP4(X7FI= =V>AA>P=>{D [:{{{T[6'>':2AA0PE)?)r36@G @Y+ q#3'35%7&7326='675#535'673&533#67327#"''67&'#67#"/&''67##;53;#7&4AAAl<2/<2=* 7! 04ZZ4#m+= H 2#<1M  :I<4A[%cH!G/0U49"=V>AA>P=>{NdRk pG},D BC#7?BtqRmm}J<;=X}B U* &#BG @R  ")M35#5#;5##335#>7!3'5#.'#6%'67+5!!!#"/&''675##5تH% G!xr-9(M. %(%<~M$J,y^^^^^,do>E7ddy3 b:x""x B1HA q286&b#3'3567!'67&''67!&'##5#&''67##;53;#67&'735#535#53533#3#9AAAX= @hA3(2,OJ 3Ee[vlN @ =V>AA>P=>{D ANd'3E >>!1+2%"7Yw !@ZB.!@,;BAxx, 6@G @Y;J^N=!!!#&'!#&'?0 mI>.F5LԱKE*]qB7)"")X8>CS_Ǝ EBMQ@'o$)i "*,SSS U]66K< [.B <q\9?i=d&9 )! =g6MHW !'(' U!5%!5%!5!#3'35767+!#276747"#"&=#'.''675##;53;#67&GGGFFFwA+w 4K߇ L J$Q%D!(  A\CCCCPBA6kkddy6GI`\0AU)D+A02EnjE+-"$a|d|w *@G @ Q?>BW#3'35'675##;53;673#3#!#5##5&''67&%#%767#53=#'#67&666CA2AA1O1>7E ZdgG< HyH-:1W69 $y< Rux*.p2dT&F@~ ":CE??Y!c^-1$e[d}E`U?3Hi%5#!35#&'7#6'6%7&'675##5!5"''67=367!&'7##5!53!#5#32767675 #!#&'F5LX86W1Sm8N>:=ԱKEfpnKGB$^cNPNq%@J 52(EBMQ@'oSSS Ua"mF-E3(]k%i< [.F %!<( d&45(|MM|k # &% FHW !'(' Z%#!'35##3'35765!#"/3265#3#3##5#535#535#'&''67##;53;#67&hIǂ@@@m<" >M7llrrKrrkk? =V>AA|"+*>>:tjgwk#V)C,U9h;XX;h9UW37BG @ ]' :Y!5!!5!'#3'355#'>7#'67#'67+!!!"/326%7.''67##;53;#67&YY??? P/G$S'w=0oQ`.*2`B'Ky0TM>$!=0< =Vy+!s[`,`;04VC0/Zs4"2Ilq&+1;At<@G @ X/ #!&'#3&%#3'357&''67##;53;673673&'7&'#3#&'#"/32>7#3:>75"#".='67#5367#5'#67&["txAAAq?.= =V>AA>P=>D*F`K#AI0B[u;I%0( #!?0$ \##*K  >23<;2$*%G=mU !;{D )//7??R6@G @k^yD1SRGZ;3lw3::7?Cm7A*5YN>13+ ))1 -%A5oC?76<.Y1 ':X%35#5##3'353!535#535#53533#3#26=!#!3#"/%7&''67##;53;#67&·GAAA$NU" KM B.ZZA0@ =V>AA>P=>{D p<CC>A:]BC6@G @YA(/?o#3'35'67&''675##;53;67367#767&''#67&3267#"&535!#5!53!##"/326=666 + CA2AA1O1>[&Am'],<#J1+9 )h2<>E%!j-BKP%19.dF8 (R'F@~ 4an<8&MftC[-3"8 ?7, + .77 BdeeFA !9 Y3=#;5##3#3'35735+3&'73&'73673#3##5#&''67##;53;#67&ꓓ└AAAqAH=% B-#i"%B+'06%E$*EN@ =V>AA>P=>{D ssnnnAA|"+oD0m?%7A?OT_"R;SSERR^TYKPao% +dQU: BG @ ]' <Ec!5%!5!3&#3'352>7#3!#'>7+!!!#"/%3'67#7&''67##;53;#67&]]*;4b??? E:"$F+*VI/+4XD3!e)?0> >Sy0JQQ;N6'6')+=(>?9!f1V0<D-Ee >>G @ S, S#373535#7#3767##53533#67&'7&''.''>7'673&'3533!67&ffMjMd>L@\cfHM66E3)F   )(zaDWo%jVKIrK`ZZa\nn@vB b16'4 2, H+@ FMUlH-?4OX>UU'/FO!5!!5!#3673%#3'35735#535#5!#3#3!5.''67##;53;#>7&RRNNAAAqA* =V>AA>P=>{  NX^g-3 2%b:Z>>Z:bA 0 BG @ ] ' Z^#3'35!5!5#35#;5#326=#%76=!!!#"/#5##5##&''67##;53;#67&5!9AAAMSl??{AA  A?-b2 3;???A:= =V>AA>P=>{D U:d|kmssssszq,Y<46@G @Y?? ' $6T35#35!35'35#!5%!5!#3'357!!#"/326=!#!7&''67##;53;#67&ʣs!LLAAA*H&M\ L%A0@ =V>AA>P=>{D LOOOO9LHH:HC3B;6@G @Y '  GK#3'35!5!#5!35#35!35'35#7!#5!#5&''67##;53;#67&5!9AAA`4MƙA)MK9 =V>AA>P=>{D idvillll9i/^K,,16@G @YAA0:Eer#3'35%3#3#"/32>5#'67&''675##;53;5353'673###"/326=#535367#5!76##67&666|} &9. \ 75C AF4@@0L0=}L{;[2E * _0>2&$'*86Eq5 dgDs2v D?V& M G@%\({#6CYC1/B/Ce,3AAQ9:%CZ~G' *X35#3'35%53#535767#5!&''67&%7;#3#3##5&''67##;53;#67&pAAA?/1!'HEMUNHk$gC;u?*KK; =V>AA>P=>{D ȸddBAMO?GbBB_I*B-TI8;3HN:zAC76@G @Y' `#;5#7!5!!5!#!#6%5#'>7#.''67##;53;#67&'767#5!!!#"/326??I??QQKXC> p[*T/H*R/J< =Vy+!=cJ8k/(,K>$d%GLC9#2#KcY60-NA-<@G @ X9-;Q>>0~6Aj' ^#3'3535#5#5#'#363#"/326=#'67+#5&''67##;53;#67&'735#53533666\pnsninZ72X8tO; BsH5 ;L2AA0O0>p< :+ZddMndŷ\!ʨk)V(D+,"L0;G @]=E' G\#3'355#'&''67##;53;53533533533#+5#!#3#&'#767#5!5###>7&9AAA~S $ =V>AA>P=/AM]KMKKM]MSM?#F2{  eFssio`$ 7@G ?-RRRRRRCAICo`C`oLmXeCI; K' P#3'35535!;5##!'35##"/3265!#5&''67##;53;#67&'73!39AAAծ}}TD}}Q<aE# lG. =V>AA>P=>{D = 27dXxCG=V)D+F4% 6@G @Y;dwO '  $(,0o35'35##3=##3267'#3=#35'35##3'35735+!+3"#".=##&''67##;53;#67&⒒nFG#*朜AAAq?FF+ 1((<5%8= =V>AA>P=>{D QMM7MMMM/:[WW7[[7W`WL1B121< &*#=$6@G @Y0 h#3'3535'35#73#67&'767!+'32654'67##&''.''675##;53;#67&'7>7353666+eaG00";'*'7/6AC+(k<*zG%'!);| $y AF4@@0L0=q:9#_Nd||y+!jL9/9 )~b.Zd#BBaa:Z{BN7jE)<@G @ X#CCC;Ie:_ 9( -=CIY_e5!!535#!35#.'7#6'675##5#5!##&'>=3&''67%'67'>=3&''67%'67Z4>PPH! %ypKHfH7KI=#bZI =yoK>(C,>0ACcRI >sM:,A-$@.CTRR99]]]( j *7Ar5[f#0!9fX)&.)Y+8'T_yKR7gU+&-$Z.:&U^x@I NEAHO; #W35#%#3'35%3#5!#53&'735336735#535+!#3#3!5.''67##;53;#67&8===G_IYJ]HKJN!B(GIo4 FI:AA9O:=x>[mG)://HKyw=cc=wB 2AG @Y % BHl35#35!35'35#67##3'357.'#5'7>7&'767+!#7&7&%767'&''675##;53;#67&}mduLH%???}>A,>MrIE1"7(H`'pP>Y>=A=+H1;9W2+ =Vy Cz[[[[[:[6JV=0!E \R ?D:/ &h#bX(%PL%PG ?N 6 "&_5#5##35#735#5353#367##3'35'675##;53;35;53;3#+3+!#&''&'767&''67#5367+535+5##67&P܏K2 N====R:AA9O:=2KMK11KK SN,PZn(rr3=(u`C:A;.pfGK2x.,33:::3f333,?""BG @f99f>c)=J;2;8*E:3&  57=)c\1 CIOt&'#3'35'?&'767#53533#6777&'&'!!#5#535%677&7&''67##;53;67'#67& #AAAIQ901 O.7 9,>'(2 ,B816<<DOK-/.N.B816?.= =V>AA>P=>B-/-O"{D C&;63)@-eL7 5>ATTA`X,]ZMD%,DU/T@SCICCB#HK,TJw.DU/U6@G @AK-QL+Y56 x67#5#!35#&'7#6'675##5!53'##5#535#53&'#535#53533#3#3#367&'765#535333267#".5#&'!#&'C F5LԱKE1$LZ ;L7^Q#)5#0 zzG7 &!#)i9H&B0%REBMQ@'o!$'2tSSS UX< [.@"BB6.929+5115+9*!9.02L42;:JJ$; ^L3V@'=48#N78HW !'(2 K^!5%!5!73567#3'35'675##;53;53533533#3#!!.''7&'735+35##67&mmX.???=V5WBd>=dB$ 3AWC ^"<"]!5%!5!&'#3535#!35#'#6!5!'675##5'67#5!67+35#5353!533#3!!#&'&'"")-+'LL*)ȧԱKIaOMM߇`,:7A@"l;;.;$%++wCCC)= ,; B-<0B9 ,7'7&7&+===@0TbFbp C<''D61. FI:AA9O:=Ws->1#"&*Ba#!#3#"/326=####35'35#%#3'35%3#5!#53&'7353367&''67##;53;#>7&7Jo4D;KHF===GXJYIVGPKU <1; FI:AA9O:=x5 @?P(C(l0?G @O ' j35&'#3735'5#;5##3'357&''67##;53;67#53&'735#' 73673#&'#5!#'#67&9L6HHޘo===f<1;FI:AA9O:=Ws->1#7#5!#3267#".=#'&''67##;53;#>7&+===gaZZZZ AvBYY_OgXX<)=@<-1H "$"*,$ O# FI:AA9O:=x5 d;;S9DD9Y9;e9D=OG @O *@4Rp5#!35#&'7#6#3735!#3735%'675##5!53!#&'&''675##;533#67.'%.'5675##;533#67&'F 7HeeFfffFeԱKELEBQM?3~ )&B ɫVneFFeF8#+B:vfFFfF@ g[[[ U\\\\\\\\: [.CCNR 3'U_=w877q1Ik $=y8<7&EWJYIXB SJJoܒJK===k<1; FI:AA9O:=x5 )94ϑ.@ff>sUYYYY:U,q,.>G @O 0I %5m67#35#35'35#35#5#!35#&'7#6353'32>7#'675##5!5#"/326=#'>='67333!#&'##5#535#'67'67#5!#"'3#3!uSSSPPTQ(F)L N2/|t6 ԱKE$\C "@0^+J  _LE;NI@'oMp=: * $D#l9i==09=9PPP O!4. $%Q1 < U-@ 7 I3 *sh*Md 3 CKN !'(PP6@9?9"B7yD-4@< +K#3'3567#%7&''67##;53;#>7&3!535#535#53&'73673#3#33#327#"''67&'#67#"/326='675#535'673&?&+===~1i <1; FI:AA9O:=x5  G G GA0(F9D62JURE:+ 4=- :+<&W||8,l 0-e.8010d+65_.>G @OB??B;?A0 8%+ 4A?;DFA E:_Q/?.:QA ; Q-=1 @ NA6<< A5=+26*8 K TXaquy}#3'35%67#!!'67.''675##;53;67!3#3267"#"&=#'>7#!!53#5!#5'76='#67&%5!5!5!666"  JB  CA2AA1O1>j9I %# #&F ##M%$ jK6J3MML< p2moRd?#9 $ T&F@"Xo  <";=  'T8V9 6$@s''~(^y(?2200S00 ' %)-p#3'35353535#5####3267'#3=#%675+5!+3"#".=##&''67##;53;#67&'79AAA'f42f\\\pVeeE5\a+*eeeIF\DFV+ 7,-152f6= =V>AA>P=>{D ?dԈqq^uuuuDO$ Gqnn%6`B30=  5N$6@G @Y;`W1 35'35#3&#3'353'67#75'67#!673'67#'>7#3>=3&''"/32>7###&''67##;53;#67&X!l333( <[9%)6!-)5C  @ ,A-6HR?*R4B"R?5 >'=4 v 7E1;;,M,8i&JQQ;N&&++Hd#5LmVҕ1>Dyu~h4n<ц5FAX09D1{*'(6)=B8AH @ ^ '#'+Om#3'35%3#5##5##535#5!#53537535326=##5##5##367#5!#!#"/%7&''67##;53;#67&+===#KIK ᆆn SESESK 9 "8!<1;FI:AA9O:=x0d2ܣգ8AA44b44b44b44\ @#??1A*<G @ L7"|#3'357675##67!#3'3535#767&'7#5!&''&''67##;53;675#53533533##3#3#3#3!5'#67& 89\49AAAJ=*oOS<'a2kkg| ' =V>AA>P=>:6HHzz:ʷ{D 2224 /*431*3!<7.'7567#37353&'#&'!!5%!5!'5!67#5!67!5!67!!!#!#&'#3#>7.'7.'&''675##5;5#5'67eeFffFFf 9@!-PeffFe/& >>  \O Z UlE<):?$+BA ЩlXeFFe)O&%)D: '  $(z#3'35%3535#35#675#735'35##3=#3#"/3265.'#35+35#'67&''675##;53;#67&'765!#3#3#75#7.666rrs=Y(oooo'ppp)H23HnFFr,$@ CA2AA1O1>p2< BdddHF]7,'dn+++++ X??4=q?s==-F-A  ,qK-+ڈO("T&F@?2&IU=+;+\0Q *C !%.7;?C5#!35#&'#6#3735.'7#6%#3735&'7#>5!3!535#!5#;5#'675##5!53!#.'3#5675##5;533#&'&''675##5;5F=eeFf2pcffFe1q $O__֋ZϋKELE"S+=.+##=|fFFfF)-B AųlXeFFe\666+>>>>????? @9@@ooooo:.44@$%%  *:C/E#,,J="9D#( '4.4^bfjnt%5#!35#.'7#635#'675##5!5+53#!#&'677&'7&'#5'767&'767677&'7535!535367&'7&'#5'767&'767677&'7F)OKE8QE8AS@ '~y 7" 2DA~6C#$'9-/ 427IWg2$1 *5 2DA}52* $'80+:-6IWg 1$.HHHJV7: O,++=U !&'tUMN[]F< C7*;B5 9B_Z*VYAK22W66W33V22SLOUST < 6(< *;G0!A:_Z#VYR>!. 7!67!3!5!#!#;#u,N$TZ>㞞R@ BCxDDDDD)E ;A5#!5#;5#'67!535!67!3!67.'##'67!'67axߙw)lRMR*,:+g[6Zqm'u>PNW!ؘL%} O7/6775!##"/3265!5M52Oq/='U;a/(S=Zs(<%O9{Q$KE@W{$>EEDxU)F*D4 &,28#'67/67%5!##"/3265#5'7&&'767M2,V=)S;a1M#F0@;' -[I.F(Qb,jKwK>I{ 9!Ll$NAAXy#?DDDbU)D*D6ED6BNI6OG7 6 &Q#'67/67%53#5!##"/326.''6767&'767#53533#6767&'M%0\8+S7eG <0A5$ <"D  .5-NQ48(NEqe^-%Kf&PKDVy(MDDtDDXT*D x# =CNJo:aZCxxCyH$N<1,28>D533533!##"/3265#5####'67677&&'7'67fMK&M3EA.$M(6K0&]./7E9 D2#E# 64667hX7hDDi7DXT*D*8cG?6KgES=%>UgBS})1 #'I#'67#67'675#5353%'67%5!##"/3265#!535#53533#35M(,]<.kSYsMX9h K'N3EA/$pM.!Lh#S=B%B =__AVz(JDDDXT*D*4A=pp=71 "4F#'67735#!%35#'67%53#"/3265#5!#3!537#537#5!#3M%0\8+KtS7e 77,<-! GDDVy(MDDtT*D+DD;AA|=iAAi2 ]35##3!5!%'67%53%33##"/3265##3#3##5!535#535+5!5!#'675367#5367™/{{zP9b9F!A/>C ~pMW6K]%2K((~W-e`p K XSTTmDS}'ODD*7DWT+D*9=TAnnAT=9/KB0Nf(B@0, 1 +15a#'67#3735'5#;5#673265##3#'67%53%673#35!##"/'675#535+35#535K((~W<*``Ka`aaMb( tzP9bqϵ 6k F7.?Vk`HWG0Nf!WGGGG0GGGM 0*=<DS}'ODD2'@ P<:"DTT+0#C I<=4: .B"nMfIgMH޴7FVDR~'ODD0>OG2Nc: -=19t&*DDaT+2 =:×9> C  &*<a#'67767#35#35!35'35#'67%53##"/3265#5535+'6733#3#&''67K((~W<* dddddddzP9bF7.?,# g7]F/`.I ybO-DZA)!0Nf!W5,(Y````7YDS}'ODDDWT+D*Dv><2` =0$<>:E:B;m5=;p"7&!!67&'67'67'$7!5!5 Hq]4b|g)+@W| l6\h  7{DTn1s[j<`[`P1?Q'A FC3>D{P'&'#'$7!53533696H3(9_yPZuyP9[5 F*JB)!5RX^vE4MFFfX (>"A67'67!5!5!5!5!5!53!!!!!!67.'67'675;6hPh6)DaL6Iic%6?Kx UW^r@Hf@_>\AggA\>_@cKGZ-VOY6>7ޓ<.A5C /' 067$7$7367&'#'67!53530$1i81o1F">*:1C)30XKF\bٙK`Eu4}KN4SO6\},FqV$HI!TN/0;_qqB3P{F#;;!5%!5!%!!5!53'67+5#535!3#!67.'67'675*P䅚Ollll)D\H-ǁ5(>>A )"175#!35#.'67'675'67+!5!5!53!!!!6E+>Lif 7=M IaZ惴K@iPi@+@`&OFW/>0֋7. A>A,'C?bAAOOAA[E>'736735'$73#3!53#5&'#'67#5353~*82$7Z|.\!"$4!PK5ISKFrS=H' D GD!FDD.91'//,^qa60MF#4 C!5'673&'&''67!5!'67!5!53!!67.'#67'675foyhu]cc]A- /P)B[A9CZ`"::Dx 6w`55=2A^^A0F5FF5((#>7>A5K@KK@I<:A,B:C&?*y.$=;?)' <!&'5!'673673&'!5'67&'#'67#5353j`UUo:b~ lfu+2++2! -- 7+/$434K5ISK\vvDD١4kF t~B'*<<*'2H?8<M:+!.B<a60MF#98!5!%!!5!5!5!53!!'67+5!!67.'#67'675 .xWPWށN)@kL?Sm` 89QxVUZDz??K>DD>A4NK7#'>7#536'67!5!53!!67.'#67'675sKhNK*/(_D& ~]W/IPP)B[A9CZ`"::Dx 6w`d:(,CUZb>83qOC2BA5K@KK@I<:A,B:C&?*y.$=;?)#* 'O67#577&'77327#"&''7&'67!5!53!!67.'#67'675'UE(?M=8N UB'UWL-m)# =,KH9PP)C\H-Ł4'>>A )G \'677!32>7!35#".5&'#'67!5353367!#"/#3:>7("%""5M 6 KKK15< "%/4/EK9HTK@ K ""1N*~=0=0"6I4$/:05%AGGE&&7B2:/;Oyb9.MFDt +6=@B?3@' 0!5%!5!5!367!!#5&'#'67#5353__~/y->) .RK ."3*9K3CLsKABBF}Y7AW==(%/7B\4-MF/ ;%35+35#3735535336753533#5!#&'#'67#M5 qKu)< "(ML\K)(DK/>Q/ B 40FqV /:ҭ,@@%6Pb7.O/)/5=3367&'#'67#53%'673&67$76$7Ku,A+5'/!3Qqp%uHsӂ55p5t'FxZ7>M=(.Jb7.OFjr>jnClR2W^1g1i4o483%!5!%5!3675367!#5!#&'#'67#5353y->!+ 3NMK%0)3*9K3CLsK9AF}Y$9A@W O=@@I?0/7B\4-MF' ='67?&###535#5333#367&'#'67#5353@O'D*BL1D5xNN%~+= "8&#034K5ISK#u{uDDCYCFwX+1E,#2B<a60MF1O35#3674653533'67#3&''67&'767!'>7&'#'67#5353٥y->) 6M+>#DmamrfX;B5PZ<576%0$35#K3CNsKF}Y 7AaaCLF 8:AuT)B-`b+B'W`Y`Ի753533#&'6?&'7(gKp(9 &$)b&H I,%)''FK2:Sp(BLXJ3m0R51JW*0:0*DFFvZ 0Cz`g=*:>$5$59[c;-RBn:FF`H ?FVkVRQV38V&'#'67#5367!#&'!55!!!#"/32>7!'67'&'#'67#535336>(0)E!HO 'H!G>=QPQ  .1I^X@ L,5!,3>K/>QqKu*>JXUM@VA+"( AN@(D++>AA%2y(CEO>=vr/,6.+Jb7.OFFsX %'9#!#5&''675!5!&'#'67#535336KNv|}y 6&1&-!?K/>QqKu-D,5`5>sHwuHqAA\KA$22,Lb7.OFFz];4=367535#53533#3!53533#!!5!5#&'#'67#5353~-?'"N(-4N0-<9ZD;V@bAv@``@v~Ah^km'9KJhA9Eqb@:8+6#<.!3`)$>@@ #cU#Pj## X67#33#"/3265'67!53'67&''67#5!#3!53!!67.'#67'675^I$0EIK&J+UO* ]3<+: E!םRP)B[A9CZ`"::Dx 6w`1@ &<$;T+C)^A5K@3/00:Bh::!8\!ii@I<:A,B:C&?*y.$=;?),+9367&'#'67#5353!!5333#!&'##5y-> (7&,+3*9K3CLsK!P!ߍ}&rrPF}Y 7:J;3/7B\4-MFCC.i@D-DT=O;~D1  &E#'6775!##"/3265#5%'675353367&'#'>7M61[8#49M#F0@;' V8hgKp(9 $%3(-'//K2:Sp(A$Mi%EDDDbU)D*D BR}'2FFt[ .D K9%#5F;c;-RBn' 17G'6753#'67!5!53!!67.'#67'6757&#3!535#53533dxrKKP)B[A9CZ`"::Dx 6w`}2U=3B'P&&?"0CA5K@KK@I<:A,B:C&?*y.$=;?)h1D>1C ??C__#9 M35#5#!35#67!!53!!35#'67!5!5!5!5+!!!!!#.'#67'675=SJ*P~aPa]4EX_ 77:o ;v[);<<<_,<;mDD>;?);:05,,50:%811> c%}<0>f#"@?Z%5#323&=#>5#!5!'67!5!53!!67.'#67'675#!#"/326="!#5'C5PUstM̂P,BRD?CX[%93@t;t_M8'P2ZX*)|I'6 Y7 -.NZ+82R?+B=@@=?2.:$925#<&g# :7<j&wJ$?*-/'$(G&'#'>73&'#5677&5!&'#'67#535336LlVVe I"X@F| K"|H=I8/_0h6&1&-!?K/>QqKu-D,L\qtY5eO?TsK5;an+o~,KA$22,Lb7.OFFz];B U#3=#35'35#%353367535!5!533&'73!3#"/26=##5##&'#'67#dmqKu-D'!$ K24C4#2 XF.KK%!3-K/>QTxx::xFz] 4BZASS*'21AZR)?+j7/(.*6b7.O#'#K#5!5!53353#5#'6%#3!535#53533'67!5!53!!67.'#67'675X4HMM f4N5ƷGNP)B[A9CZ`"::Dx 6w`XT"P)B[A9CZ`"::Dx 6w`9&(;)]9"2:19FY7`W)AI`~j 2|7A5K@AA@I<:A,B:C&?*y.$=;?)' D35#5#;5#535#%3367!#3#!!5!5#535+5&'#'67#53񢢢Ku,A+!(})J%!3QqL:WFxZ7>\;x>AA>x940(.Jb7.OFA O#36735'5#;5#%3367367!!!533##5!53'67+5&'#'67#53uNKu+B,0LB>MMR'7mK$.93BK/>Qqv2DC3vkF;F/!Pb7.OF ' a#>=#53#>=#53%3675!5!5!!!#"/326=&''#5&''#&'#'>7#5353 ;#-3q;#-3qa$1 !"5&A3 +"-G+"-J '#3I,3Ib$ZIDm!tAA1Dm!tAAFuX 1;iDDiO)E*T2-X[*22-X[*2;*,28Gc;/TCnF";H673#5!#53&'7353!5!'67!5!5+5!#!!67.'#67'675#CL@LC!PN}NN+>WEw aM^6,+$ϑ )+2ffj A3J?<(A:@%?)t.!=;?+' FJ35#5#;5#%5353367!#!#&'#'67#5!5+&'#'67%5#̝蜜oqKu,A *'' O$UKU+RI 1.3%:K/>QIiioooFFxZ0BkwFAm@s5u=lAF578.3Eb7.O%ii'R!5!!5!5#'>7#'>7#'&'#'67#535336767+!!!"/326oo! P/G$`&N/G'd0=%';K/>QqKu(>"5$+]6$K0TM>$!s[``;04VK:05?=2%5Fb7.OFFnY.?I9%Rdq!01;At#,k35#33#"/3265'67!5!5"/326=##5##535#53'673533#3#33!!67.'#67'675qGK&J+UO* ̈́;7 ~KrG>>5GXK +?UH=B]` 81Gl8xZ~5OfT+C)r@+D=?7 %/:IH @@95:/f,!B=>1/=&859">'h$#>5?r$' H6735#!5!!5!3#5!#35#'67&'#'67#53533673!#3z# NX1XnMLHB8%16K/>QqKu'7&$M-1 M|dmp55_pLB3vz"A@nb7.OFFhT56PdC6g#3=#67#53533675367#535!5!5#535#5353!!33#!!#&''67&''67#&'#'67FU3%$RqKu*@*8&,P(;;md2Yjy#p}KI 6J5h-++K/>QC~AA[5I+#FFtY97J; .$8C;A75>CC>5x;{7+5&'#'67#5353#*#/Gtt^7>yG&H -  e?kjU;C;':v%G!& 26&K3CLsK(6A1:MM6F!0BA7o~ 'A#;S@.@&BE#?55>57^/[?3 +-G-x\4-MF' MQY67!5!5#35#;5#3533675!!!#"'5#5##5##'67&'#'67#%5!5#326z#' NzHIHHqKu'7&$98 3?I@HFO<6"16K/>Q1b_H -11 PkmsssssWFhT5695+}iA@nb7.OЄ??Bz' U35#5#35'5#;5#35#353367535#5#5!##3+!!#5!5!5+5&'#'67#옘읝UqKu'7&.7K7IOJ"$'316K/>QHHHHXX;SSSXQFhT56JEEK@xx@K@12.A@nb7.O'j!5!%5!67+!!!#"/32>7!3673:>7#".='67&'#'67#535336yy~6._4 I4/.SD$ x&#%"" H1325:-?7) :K/>QqKu$: 'R:OO@>ZZS,FC4N688   '(' B)9 Ekb7.OFFcX 99 -5U#5'67!5!'67#5!5+5!#!#&'7##5#5!53!'$7767.'67'675K5<OBtm wMM&kX&\wPNV!QwP9.[aL9NY_ =II>xA7`XC3A*B15#?$b&}=5? i!+H35##&'#'67#535+!#%535336767#'&'#'>7*:p(Z6I8\*s;:HVgKp(9 &$+^&G-I-)''FK2:Sp(A{Js%sK~AUJUFFvZ 0Cy./<(5$59[c;-RBn9 Q3=#;5##3336753&'73&'73673#!!#5!5!5+5&'#'67#53ɡ𡡡:Ku+B (5?% B-#t"%B+';9#E$*H OH$.3BK/>Qqrrmmm=rFv[ 7<T8NWRDO`]NOGccBBcG=$)/!Pb7.OF 'AGf5!##"/326=!5!53.'#67'75#'6!!!#67&'&'7367&'#'>7#5353#W"J_W! g:Jv90\ ERd@[Z$4/6/028F&(7#5353Z420C,H0=8f\M4K;S\!>@K } M@]-UH-@]-]@a$1 !0 + '#3I,3Ib$ZI+ff9dT,@5C:9=FA11C/I>G,?+s>6A7#5353#5!#367#5'675'67#5!'675'67#5!#5'^^a#2 -!&:I,3Ib$ZIM^M /Zr`XyeO06 []}iU/KXq}ff:arFsZ1*/*2(Rc;/TCnF0W,,wN8=AX\J:;.=?BT_R;;1A?|vK89 6 |5#5#!35#735#5353#367#3675!5+5#535;53;3#+!+!#&''67&''67#5367+5&'#'>7#5353FP5(Qa#1+K''KOK22KKwm/Rp|%uF;A@5u uK'"!:I,3Ib$ZI,33:::3f333*=& FuW,;-)c>f99f>c)=H8"4;?(HA, 57=!m;71 ;(Rc;/TCnF"9*2C#326353=#7#535!3#3765&'#%#6767&'#"'%#"&'&'67.'67'675'$7'>35#5'67#535#535#5!53!#332>U  C1 ( "0n{{Ǟ&# X'&V3QF6C5N\;8<[YXb~'n!P  !  W= 6S&[;:(3&1)5*6SH=.03 !7I '"V^(=2:S8P8?JHF2> g% ?0A n#C4V7 90182&3(735#53#3#"/32>7#'67&'#'>7#5353LLELQSLCLI&G$4j"B;)BE,>'"?a$1 !/߇ "nL! LI + '#3I,3Ib$ZIC .jH Aa[ eDR$s1 Qٰ W| A&FuX 1;TBA_RE 5d\"JC<,28Gc;/TCnF"9 ^35#3567!!5!53#35#'67!535#535#535+5!#35+5!#3#3#3#.'#67'675]EQJ+KP|sK[MH[[2GW^!84 f' ' !R#5!3#5!35'35##3=#5#!5#%33675!+!!#5!5!5+5&'#'67#53F nFKu+B (5#J OH$.3BK/>QqA\\7X\XXaaaaFv[ 7<aBAABG=$)/!Pb7.OFDRi73533'673#!67#53&#5&'#5'#5&'#'67#5353367367!3!#.''>7#5!6$"/FBF-*6+Ga5CdO4lH$G)F>B8P%G ,'36K/>QqKu*D '1N P`^).kn=NECAH;7Ut?L;O?,`G\@/B@:1.*Bb7.OFFr` 67H+0 7;?4VB_<<_BU5?7Db35#35##5'6=!!!67#.'67'675'67!5!53!!6#53&'#53533#3#3##5#53D$3IY E =E\_79L|UZc|ӀP,=ZTtIN4oNUmM?8y|$ 89F+~'706 =%f(!?1? n$?*><==<>.-}>;6>88>7:>D7#5353#&'#5'67#5353!3#&'#5'67#53535!26=!5!!#"/%67%7&a#2 $/ )&:I,3Ib$ZI\;*-1B%B*Q+oJEy.S(E,B.J+V2]tJ04 83IHpE7Jy2fL/TFsZ 2/?5%2(Rc;/TCnFKAG=,/DIN4Z_AXXAa^:RTVU2^fAX@@ AA;? Jd'nO.X^1e ,VZ^35#5#5!3!535#35#;5#367!#3673#'#3!#5&'#'>7#5353#353UU1)9X````a$1 $EeSC"F *2SoI$'#3I,3Ib$ZI%UUJMMAAFuX/9f=J]s %8CQE;M<2v<)428Gc;/TCnFZJCC '#i!#5##5##5!5#5!!5353753535##5##5##367!5&'#'>7#5353367!!!#"/326KJJIxiFgGgK &:I,3Ib$ZIa#2 0  +-<, ܣգ8AA44b44b44b44@#;'% 2(Rc;/TCnFFsZ/9?1A $4 !r67#35#35##!#"./326=.'#67'675'67!5!53&5!5!53!!!!!!!!!>5#"'!!653&'#53533#33267:QI6 3(- =>VX}:6A~t;T|ABPLB?? M 96/*BT+m 6M3_t!cV5 $(#q#O^+(1 $/-.<"^!y?-> e;&6:B+2r++ ! 3:5-)0*2552 0   ' )/5z35#35%5##35##35#%#3+3265#37&7'6367;3;#"/&'#5'67+535#535##&'#'>7#5353GlkjjP4I8Y  ̪$%$#a$1 !H)J1#F2*F'6/:+,&8-4*,28Gc;/TCnF '#6%&'#6!#"/326=!5!5#535''&'#'>7#535336753673#3#37337#733#337#537#537#533#&'3#!w Q>%?+UP# :8QAW%,I,3Ib$ZIa$1 WY -Fdca_>;G|}z_abde 'CUdN 1/~1,39"12@ <=980Q9"&:?c;/TCnFFuX&(,A > ,8:899998:8:=7#7!5!!!#5!#373514 zI/n!LN/GApLLJl͉2)AftP+9'A]WDD66n<}q %5#!5#;5#'35)3#5!#35!5!WfOOpddd00OdA? A5#!5#;5#'3567!%5!67+35!5!!3!!#&''67&''67V0g70 I\k9c&Փr\>IJ88Ff)o999==92FFFFF@@@%%)"^8[r4A QmQ< ZZ9&'T7((((7T'&%HD  7!5%!5%!5!327>7#"'.=#'$7+!#   "% K%&$*(C$t  uN kkgg5˰ %' .X!5%!5%!5!536=#53533#3#&''>7#"'.=#'67+!#327>7;;;2K[C:5='v0CG 0; !Kӓ  I kkgg7HHH+:DB2-DK9HTKZ0? +K  I kkggFqVHU2:Mtb9.MF(j&C?5˰ #?A9A9% PT7#3'35#%!5%!5%!5!"/3265!5!67+!#327>7#"'.=#'5!Ehh pb Gt C  ,7!gP<ppii9>8)R1 Z??CE 5O!5%!5%!5!327>7#"'.=#'67+!#!#53&'73&'73673#$$$"%K%&$*)C$)!VOz @N!C-!$C."0F'NKKII5H+78;B:*-C$Cq 7)@=B(FAF=1= E@ DHLP[_35#35#5###!#3#3!!#3:>7"#".=#'67'!5%!5%!5!767!!5!zzzzDNAssRK /('7:-'uX2H  3<+X****JYi7**5#M ' )+2hI_C_j33_33,3T (AS7??6*.26<d%#!#327>7#"'.=#'>7'!5%!5%!5!#36#3#&'#'67#535#53&'#53533#3LKt C  ,A wq%bc H%QN,5JI?X+t9>8)n,9(uYkkdd7#"'.=#'##'6735# uuuu,ޢ J%AI.D 'l@iyqqqqyn Gt C  ,<(K$c<uuEDD+ppii9>8)R;0p"G_pC4; :Z7!5%!5%!5!67&'#".=#'67+!#3:>&''67&'7'67&'76#53673#3#!7#537#537#533#5%5 +21K4037:-{0]OR  :$):$):&.-<<168*1+68<#/D-TL<e]Ln7"#".=#'67+#!#3##5!%5#35#;5#%67!!!!5DzzzzRK /('7:-)tNAss<77h77Q0H 3 11[11*1C.,..6(I ' )+2dG]C[Ow7.b->>>>>YIj : -' #; HLPTdim5#35#;5#35'35##!#3267"#"&=#'&'7#'67+!#>7'35'35'35#%#53533#3!53!!#5#FFxFFHi  C K#8 /!@PlAnY>'HmC5@B Mp:T<<<<<1101;)z1/< /_/+4*$#?(84]#*'uZppii=%#38-"%K  2"SJM)3"(Sxs*L@<1Q`126-I>>`D$?30V)A*lg2TƧ_:I d67#35+3#37357&''67'#"/326=#'>='673365 7&=67&\|FFFFI%7,A>I>mT 4Efia/A+la/EQ "?=&BF&l8rGA  D7* 5m67!#37!5%5#)5!7".53673:>7'67'>75367533#67!!#"/326=!'>=6K 8 THLM& ' F47P(VF $ I;KOW0PL1(P2ZV.)K>;0w  ,KKK4HHHa8:;C%&$ 8Rn>I;g < 5!9@4WC-5n1I b&'%67#35+3#37355!&#67#"/326=#'>='673367273#327#"'NQ\|FFFFI%7,A>I>pCYC"BBW(A+la/EQ "?=&. FAAMBjK 0%H -Mj67#35#35#35'35#%#5!#"/32>7#'65#'>='6733#"/326%3##5#535#'673533#lXXXYUUU%*5M?)  o\% %A2a*J q4-NU  MjCAERM`>%/45R>Bu*ADK[*;Ila.FP!0?30V)ABBD2 ktIIA %H ;[#3735%67#35#35#35'35#7&''67##53533#67&5#'>='6733#"/326jjMngSSSSOOOD3)E ԾbhjHMT7 %@2a*J i3-MU  Z>%/45R>5%1 D@vBTdla.FP!0?=&V)A%H 6Z67#35#35#35'35#5#'>='6733#"/326%3##5#535#535#53&'73673#3#lXXXYUUU %A2a*J q4-NU  yNѹw!G %X'I$h`>%/45R>la.FP!0?30V)ADDACEA;\NH =LCAI "'+/s|67#35+3#373535#5#;5##35##35#'675##5'#"/326=#'>='673367#5!!!#"/&'.'#>3#6#Nn?w???B8?TTTTTX `aaZja? ,$L8 9.X-E }YL#D  /F& :7. `/4=&A>I>hhhhh.]]]2@ k/ V)A,la/E@0 "?/4do'v BD3 ^1l*C  #!#55!5!5!5!5!PPb zB+,+,AACC??@@}}  #!#55!5!5!5!5#yMM>CpM+,+,AACC??@@}}9 #'+#!'35#!##"/3265!%5!5!5!5!IB3t'SEsn@(@|660,+?dFV( F +lAACC??@@C' ##!%35#5!5!5!5!3&'KfKeZZO"0,+?7AACC??@@~HxDeIC' !%#!%35####533%5!5!5!5!Kf#NNIeZZ0,+?cFF5AACC??@@- 7;?CG#!'35#%'676=#5!327#".5#67'>75!5!5!5!F$ޛ @5x  <+& U@GXIF3;> Z"M0,+?E KiBԙ]kBki`_DO6E|~AACC??@@2 !%#!'35#3!53#5!%5!5!5!5!JBS?z660,+?#lDDDDAACC??@@<' %)-15#!'35#!533##"/3265!7&5!5!5!5!KI,YOVV(U7pi5*DP;F:Gp==0,+?DZ,E0{xAACC??@@2 )#!'35#5!5!5!5!%###53#5!#3JBJ?z668N0,+?7AACC??@@PAD DD + "&*#!'35#3'>335!5!5!5!G/褤6JQ>$!J}K-c$$0,+?lv7G@VAACC??@@2= K#!'35#5!5!5!5!#"&5467!5'67!!!3:>KIKG==L :7/p$:b,G hFZ( 0,+?7AACC??@@2:DF"# 18F6<92 6C77A1 6+2 G735#5!5!5!5!!##%".5'7'$7%3:>7K6k,,8K21)2d(q'C! L 2,7AACC??@@N, '&HD?D%1H146)- 5;@ 9 048<@#!'35#%5!327>7#"'.5!5!5!5!5!5!5!IB #-.412 O"$!I70Dh@|660,+?@=5EIE &,-jDCAACC??@@2+ :E#!'35#5!5!5!5!"&5'67367267#'6EӒEL  ^,!)#94LRQ4nidF%F-K%*#0,+?7AACC??@@9LA%+nQi3^DFKT$) vk} N4R2 :#!'35#5#5!5!5!5!#3##"/3265'67!53F$ޛ"VKR\\"J4KX" 'ƔZ0,+?6AACC??@@BDW)B0ҁ@{D; 2 ,048<#!'35#%'67?&7.''2>7667&5!5!5!5!F$ޛ?h8G8J4 Ds AACC??@@2/+/37;735#%35#'##!67#53=#535333!.5!5!5!5!*%(cF#O7p'[Mi\+,+kCDCe8@,QAACC??@@27 ;#!'35#5!5!5!5!#5353!!!#"/32>7#'>F$ޛF"MN+A$@<5vi0!( JK88=0,+?7AACC??@@GDDQEG H 1T6@9  &=AEIM#!'35#3267#"&=#'>=767!5!&''67&5!5!5!5!I>,C+)*-,?2$;;VN39`cnoc YV)=u220,+?}Z201 L7&kg:(UIJjBB]F.@2QL7A/BIAACC??@@25 $(,0#!'35#%##!5!#'67!#5!5!5!5!KI.Ok*6C[+I [OG==0,+?EE~_! -6CRAACC??@@2 $(,0735#%'##!>5!#./!5!%5!5!5!5!:9@F$4-60Yy90"W] ,+^8UCAACC??@@9#+/37;735#%75#'##!6$7!#&'#&5!5!5!5! 7V()7I>+FB(AK\=u22;;h;),+s#I6F-:ZD6==&4%DAACC??@@ 2 &*.263##3#!'35#!5!##"/3265!5!5!5!FFF$ޛY.:%Jc.$ "V,+?]DDqU*EAACC??@@ 0/ $*08#!'35#5!5!5!'!5!673&67$76$7I*ᛛI',j%ShI{x5!5(o5s0,+?7AA??@@׍l=C9dlCmO2R_1c1i4o5-4 3#!'35#5!5!5!5!&'73!53#535#5!#3#J'ݗJ&Tr0,+?7AACC??@@nG"@"GDDDCDDC2 !%)-#!'35#!#3#3!5333!%5!5!5!5!F$ޛ ʹSIz"V0,+?gDDDDAACC??@@21 !%)-1%!!#!'35#%35#53533#3#5!#5!5!5!5!YFԑPOLM4,+?DD'??AACC??@@+# 59=AE&'35#5!&#67##!67273#327#"'5!5!5!5!Lbh"[ZF4B[ +* A?B  `_ C\@"BBz,+A DAAp[BmM3AACC??@@ >  $(,5#!5#!35##5!#5!#55!5!5!5!5!MSPPMSlpBLLLLL''H55n<r18M"R!6S6,+? :!% E^AACC??@@ 9 )-159=#!#5#!'35#2>5#'>7#5!#"/5!5!5!5!5!KMVI4륥f&Wv,/CSIZF3k(( 2f2,+?@mku,<'`B1BQAACC??@@ 2  %)-15#!'35##3##!5!#5!&'7%'67%5!5!5!5!Fю$N /O8;A2Aq)M@E-H  0,+?7uDQDCqs_xz6AACC??@@ 5 !%-#!'35#%!5!5%!5!5!5!5!5!!53!3F,棣*-c!![DD0,+?7AAACC??@@B 2 #'+/37%#!'35##!'35#"/3265!5!5!%5!5!5!5!F6}F$ޛpb! M @Y1"VgP.<&H=;IZPg3S ; fyP.F:7AACC??@@@A?@#'BafWq"ds:H)AAgK5g,+ 2: !E#!'35#%35#355!5!5!5!2>7!;##'67!#"/FЎzC   1G7g-K?^0,+?x}}AACC??@@"--TF)4 !Ba6 D 2 ;?CGKO%!5!#!#5#!'35#3:>7#".53675!5!5!5!5!8LMBKI~(q+'4 K A<5=B=M@/G|==o+/+ ,+?  %(*0 l!=>@!uuAACC??@@02 7;?CG#!'35#33&'73#27#"&#67'67#5!&'!5!&5!5!5!5!Fю0MU&:+*(&  < .%:ZZ? 2?g;;=  0,+?5\B,>NBujD<+C ]AJ0B\7AACC??@@2; ?E#!'35#5!5!5!5!%#3##"/326=!5!5!535#53533#37&F$ޛF"VPaaa&Pb\&wO2\J4Q0,+?7AACC??@@pB[+C0BpCAkkA2NX1_27 DHLPT#!'35#3#5!#5353".='75'67%3:>75!5!5!5!EӒ)JtJN!+.+8VM}7I" L 3-GB  0,+?AՔg "D D_@1$/D0/6)- 5;@  AACC??@@ 2A 7c#!'35#67#%5!5!5!5!7'>733!'>="/32>7#3:>7"#".5!FЎ$+%D>  )$:iI $:U>(!#C2 Y& & K 5.+7<.J0,+?;.-_bڼMIVp9=r220,+?BBm55B BHAACC??@@-; &48<@D#!'35#767#53533#67'67&6$7&'5!5!5!5!F$ޛ ,071N?H2%lB>Mugc{ U8A\dL7Fi"V0,+?o9*BQCkkCpT/&c$9C,NgM1̈(jVFh4eNz7AACC??@@-7 =#!'35#5!5!5!3##5!5!5#535#!5!53&'73673#3#J'ݗJ&lO`$E*"*#G$t0,+?7AA??@@HDDA%C%E?JMHOQ6CA*" 8W735#5!5!5!5!#"&5367'&'3:>773'##!>7'6746=&FC  v'(&S/KE=@@Q1yX+UQ*?A/KhFXP JRcX527AACC??@@9?8'G[eeLE8C4& *,-ki&zD%,+2{o7(E/@% In2' 048<@#!'35##&'#'>7!5!5#'673533#5!5!5!5!FЎ5FRO0I]'".@S#FvNrC  0,+?DDoHL3EARD_L# .4uuC$AACC??@@ 03 'BFJNR&'##!'35#7'67#5367!#&'!55!!!#"/32>7!'675!5!5!5!='**BnFю"HO G!H=CSIc ~ .1I^X@ J,n=  IYWK,+?@VA+"( AN@*C,/FAA%2y(CEO>=vAACC??@@&G 7;?C!5!&'&'##5!#5'67#53&'73&'73673#&'!5!5!5!)(,: qPPFb&?.)$+@5*i2'B$&b6/b6=pB"/#'F ,) ''ILA33?&5!5!5!5!F$,C86ޛdB-La$N&, ?*N4"C7)D("V0,+hx(?+BCHF1OD,CBuuZJ2 )\wLAACC??@@ 5 2JPVZ^bf#!67''35#767#5!#"/32#&''67&#"'.5332>7'7&7&5!5!5!5!F#,C77ݛ%8D/'%M9!< 7>)=-P!D8P&- ?*O4)jF-NC4+D*"V0,+hu(?7#+)BE E ?:!,7,CA;z(ZJ2 )\3KK0Q&{FAACC??@@36 CGKOS5##5!#53#673'>567!##!5#"/326='675#5355!5!5!5!D;PP2JF+ju.ZA{0 RP ^Jv6bpB #<):8 ;P;?77N++O++992EIMQU735#%3!5333'673#767#=367#533;#"&''##367&535!5353nnU:HSS[С7J= J3~3Bx26ZX@(;%F4"% AAxD9DDc*V5]b?nzBBhAyK5C8HMC!,+?G> AACC??@@- PTX#!'35#5!5!35#' 7!#&'#5!3#"/3267#'67#'67#5'67#55!5!F$ޛF"V_x e|LaKHak41;VR1&"PJ \wa"|%N0,+?7AAC#a?-= h>_N=S}]EK. C Dn?iC1BV88Fd??@@ 9#'+/37;7#5!#33!537#5#!#5#!'35#35#5!5!5!5!5!LItcHKLYI>շ2=u22[iAAiAA|=+c+,+?|AACC??@@&? ]735#5!5!5!5!73#67327#"&''67&#3#"/3265#'##!65!&533&F 5(=@02!C3P >E%FQ1W%  S5 ~U3F? Jz,7AACC??@@8#3(AĔeƀ:T#X^eP6Z|v:+ BF#3,+۠B$MM$"& 159=A#!'35#&''!!5!5&''6#5!!65!5!5353FE C6.,6$7* ,.3$84cC C6H^"00,+? oaArh5DD>gs7. nWuDDRAACC??@@ 2$*.26:35##!#!'35#%3!5!5!3!67%7&5!5!5!5!vIhFЎUKO4U )].^C  0,+?iBBZVNj/vO6Yj7kAACC??@@ / !%)M#!'35#%#3735'5#;5#%5!5!5!5!767!5!3#"/326=##5##3&F$ޛF䟟x"Fy72V\TM4(X7FIF0,+?̉:{{{AACC??@@'#D1=AA0PE)?)r69-:>BFJN!5!#!>7+3&'73673#3267"#"&5#/35#5!5!5!5!BI9WM$I_!F,h5#H0j %(F P'Miv說I8i--|,+2~OD@THLUCI 6.1>% A!>#?7AACC??@@ 22 !)=AEIM#!'35##3!535#5353#5!#53'>733267#"&55!5!5!5!F$ޛ(OIIK_l([MK &$F !"!S&"V0,+?T@`>>`@OOȊx0<) +w ;<:DAACC??@@5= BF%5##335#!'35#5!5!67!5!673673#3#3#3!#'5!I>I< n<$K HQM&!3@Ig,+?7AA?0C-o E@EM K7'6765##33#3#5!5!5!5!FόIYy5JPQAT\MM.6  0,+?AD_Q:.cL!C%9KD~DAAACC??@@ 5H )-159!5!!5%!5%!5!#!'35#3!53#53533#%5!5!5!5!w>   dF,棣EO?M>-T!!FZ셅<,+?CCggAACC??@@ 2 ;?CGK%#!'35##!'35##'>5!#"/3265#3#3!535#53%5!5!5!5!\HΉ5FЎD>M7mm||mmC  25P:,+??W5Tìk#V)C+U:s<BFJN#!'35#3&''>567%'673&''>567%'675!5!5!5!I1袢Lx~IH|w5D8jB>DLKJ|x5D8~B>D/h%%0,+?Rs)C98C(uUgj[Qdh{QD;9D(uUgk[QdgAACC??@@ 21 !9K#!'35#%!5%!5!5!5!5!5!%3!535#535#53533#3#"/326=!#!FԑYVVaLcPS%N\$ K'0,+?9DD9DAACC??@@<CC>A:C0B 01 :>BFJ735#35#35#!#3=#+35!5!533#3+&'#5'##!65!5!5!5!UvRIKK^"_KY F*O2^cc^^o??YY??^@Xob<7,+mMAACC??@@ 2/ #'+/Y#!'35#&'&'35'35#%5!5!5!5!%#5'67$73##5##"/326=#535!5!EӒ(,G. I67 =  /. /4-1--K"?.SK 0,+?[O5:A=DCrr?kAACC??@@.`fFB^k?+VO+C)UƱAACC??@@zAYYA7$v! -' &,048JNR&'3535##!#"/326=##5##5#!'35#%5#5!5!673&'!5'53537QPPQuYXXH("A* ZFYFeF~~Z:3~E@00@Z@SS@ԙ]J'C ,+?^AAC7beE)$//$)???@@27 %C#!'35#5!5!5!5!3#5!#5353>7#5!#3#;#"&'EӒEG  nIuJN+? F+LYwEw/55-0,+?7AACC??@@٘gQq ETw,AAADLehX-'4:>BFJN5##5!5##53533533533#+5#!#!#&'#5'6#!'35#5!5!5353,F AALaKLOOLaV[M`F~~F/ssCI;CRRRRRRCAICo`Cbry[CX,+?7AACC??@@ - 7;?CGKS735#!5!5#35#;5##5##5##'##!6=!!!#"'5!5!53535!5#326~~TmzFEFF=E?FED0FFF6 3*/+N^F Ykmssssso$,+(5AACC??@@??Bz +A !&*.26:!5%!5!#!'35#3#5!#53535!!!#5!5!5!5353@@F Á9MULOh_tMCX.jj9`4,+?X稨Z==KAAAACC??@@ - !RZ#!'35#5#35#;5#5!5!5!%#"/3267#'67#5'!5!67!&'#53&'#3!53!FȅMMMMJ  !"=SD, BB*2,,"1aC4)<$(My*8) V4-0,+?AA??@@]T:?7$#Wj%'0 C?V/%( /B`O=%"(!0 BB +  ;?CGKO#!'35#35#5#35'5#;5##35#5#5!##3+!!#5!5!5'35#5!5!5353F Á;ߖ䑑J777IN g=0,+?HHHHXX:TTT[DDK?xx?K;XAACC??@@ 2  :>BFJ#533#53#!'35#5#!5#5!5!!!#"/32>7!'675!5!5!5!GnDF$ޛcwb2{ n !#<^C7 K$_"V,+?yyyy==AA +o$ B;E=2cAACC??@@ *A ?CGKO67!35335!#!'35##"/326=#####53&'#53533#3#5!5!5!5!,$M6FɈ487MH<&FMP(9<U_W]ff',+?8C!BL]WAbbA`TAACC??@@ 0 !0LPTX\%!5+!5!#3673#5#!'35#'6733#63267"#"&5365!5!5!5!ccKN LDFӑ #IL_ab-1D  $U*IQNek+!- #K+ ,+?@8ACaA:<"l#g,(6-8o AACC??@@ 01 17=AEIM5##35##!'35#!3+&'#'67+35!5!53!7&%'65!5!5!5!h죣Fӑ4IN!TKT!NIK%;)<>.9)NO9,+? UrCppCrKUATTVW]haOLAACC??@@ -' *.;?QUY&'35'35##!'35#"/326=##!733#"/2655!5!673&'!5'5353*PDAT=}}}}F~~B }J QFUK5ZH, 3~ED38>d@IEDcc9^%,+?>'H1CK$p9J'B)AAC7beE+'''*(???@@ +3  0FJNRV.'!5!#!'35#7&'6%'67#'67!%53&'#5!#'>%5!5!5!5!Af%W>QF̉(J7+>>)p5$$ &+8F6 -,;XN;==;?>@D;=x:0AACC??@@_iY+μO%,+Nj(Tt 0 #A .@_>= f '- 09&*.48<@DH#36!#5!#'67#535#53533673#!5!!5#!'35#5!5!5!5!5 >MK(4!ԧM@A]1$$IF ڗFSA@++NBQvA?ff1 xjA1inn,+?7AACC??@@ 2A /5;?CGK67##!'35#%'67!'>=3&'#53533#3#'67'$5!5!5!5!2FЎ}/BzgNQ[~ # YC  FUCX,+?<*IRʟ/Q°tYB@QQ@MN?1P?,a7d 5x3?0AACC??@@ 01 !;?CGK%!5!#!'35###5##5#53533535!#'67#5367!!!5!5!5!5!5^F ڗ5xIIxxIIH%*&D P ,RS!,+?IA]]]]AYYYY55+!F_A3<53AB@AACC??@@ -' !G#!'35#!5!!5%5!5!5353%#!#&'#5'67#5!5##5353!533#F~~n33/2V[M`` IIK3MII0,+?hmmAACC??@@2ACo`Cbry[CXwCAQBEEEEB 0FLPTX\`d!5!!#"/32>7!3673:>7#".='>7+!!#!'35#5!%5!5!5!5!T94/.SD$  #%"" G1325:-!)3j#IFF ڗTSR׵FC4 N689   ('' 9!i3S*:,+?OO@AACC??@@2 !%)-16H#!'35#35#35!35'35#!5%!5!5!5!5!5!!!#"/326=!#!Fԑ-m!RRXB*$$H&M\# M&0,+?LOOOO9LHH:HtAACC??@@C3B 6 %)-1v3&'#!5!&'&'#!!53#5!#535'35#5!5!"/326=#'>5367#5367#53&'73673673#3#&'!5'Ws 3 +&. 9~MM~MkiiizI: m /<T?zUE-4Lu(G!Z =1+4;#:I)H  8W' -# #'+/5HNT#3'35##5333#&'#'6535!5353&'73;#"&''67#&'%'6FnnM?t+a=M@]/y<6?=1rmx"%>&6$W+7@4.A$:@:0,+?A4A|Bjzzf9}AACC??@@9$YZ&EG1C*44;@/2RWqln-- ,048<@DHNTZb#!'35#3:>7#"&''6753675#35#;5#5!5!5!5!7677&7&3!53!Fȅ5 J,,,[67F*^HKRA4MMMMK 11A7WwwwC/E$4-0,+? "#-.,"5$+lt"AACC??@@V_T?0@2dmBB 2 >W[_cg35#35!35'35#67!#!'35##"&=#'67+!#326>7!&''67&'5!5!5!5!ęP/3*FԑD !" Y+RtQ##AG ,+=|G!+6aYzspD7-+LIKKKK8I2C?,+?( ! )XCg?"`EA$z. );VB,"?%BI?5.<'^AACC??@@ +A 5U#!'35#67#%5!5!5!5!7#53&'#53533#3#533!!#"/32>5#'>7#53F̉E($@sK%ON[%KN>11AkV>1/Oc0,+?DDH@AACC??@@\?IAPPADD\!\?2}}-AIGY;0f? *B #'c735#%#3735'5#;5#'35#%5!5!535373673#33##&'###5'##!67#535#535#535#53&hhHeheehh/mEG׫11K~MKhLCl F_5l}wweeeeA___>BB@Lb+13*;@qX9 -- [_cgk%#3=#35'35#35#3535#26=!#5###!335!535#535#53533533#3#3!33##"/5!5!5!5!T렠t uK-F-kkzzLMqq229iW& 6NNN6NN6N=s==Ȁ%0,+=4<=6=;8888;=6=<4=0O&AAACC??@@ -< ,X\`dh35'35#675##3'35###"/3265#5353"/326='67'6736737&'7&'535!5353OBFnnF1;'WH! IaI b__} ] F x% @:'A$ #VV9R =`,+?E^.E4E1C0xnW>WnD'J:0*$3!Zh90Y-AACC??@@+8 JNRVZ#!'35#%353#5!#5335#535#'67'67&'767&'767!'67!!#!5!5!5!5!F̉4KKuKKg#$F.1PG)58=.>448<0L1CNUIFz60,+?/w44w>}?+49 ?*.%507,%3307/%=BV@Y=}>AACC??@@ +  =AEIM#!'35#!' &'%&'!353#5!#335#5!5#5!673#!5!5!5!5!F̉A!C &C$|KKKK+ H*a60,+?A:AOBRRB$NORJhϣ55?k=d{hf=kAACC??@@ %4 "&*:o#5!#535#35#67#5!5!5!5!5!3!535#53533#53'6=!3267#"&=#!&''!'6=!67&'7PPb___N3/( bpBRYMż29> A"P8"Ip@SYcqW~ G3ZE6'4C$N &N@'%++Q55K++K++~1100*2++22(%Yd  *JO\,2<$"53+C."H!! *2 AEIMQ!5%!5!735#!'35#5!5+35#53533533#3#!!.''>75!5!5353||`FK_LL_c^+-XY/VV:R~CC0,+?>AWC=UUUU=CA>5WBd>>dBY4?AACC??@@ *@ AEIMQU67##!'35#265#3#3##35#535##3&'#5!53!#3#"/'5#5!5!5!5! >FɈoApHnN r-)MKM<?86D*,+? "MUU>86>#Ap`AACC??@@ - W]cgkos67&'#!'35#'6%'326=#&'7#5!#"'&'''67"/326=#&'7#5!3'6'$'$5!5!5353&0h`F~~Jsp>b-#2E3(;E"')+!Qcn` &iX",F@7(;E" *tMTf%<%S|,+?9,"; -8% #2.*00.*?'5-@4?+G0?.:<*.00.*?0!7d?;} AAACC??@@ &  &*.26:>#5!%35##33#3#!'35##!!!!#37#35!5!5353lKc:AhAFBKLLLLL0?TAXXXXAT?>D:oAACC??@@* #',048<O#!'35#!5!!5!#!#5!%5#!5#;5#67!5!5!5!5!&''67&'7#5!HʇfbbK&FNckkjjgAC<c_:9bEp]0,+? 66h߹2UUUUU0GJPAACC??@@=75=!5@!==X= %4 !%)-]#!'35#%#3=#35'35#735%5!5!5353%#3#3!!!#5!5!5#535#535#535#53533533#3F}}ʀ-,!1H À8#61<!8174?69N[X@C.2>,,% -1 6PY[Nv@KEF3,+?AA@4=2$E?(9C%H?6'A>Y"#Z>A?EH,+<0:NBBIP;BAACC??@@ & &*.26:>dv#!'35#67!5#3!326=#"&=#'65#35#5!5!53535!3'67##"/326='67#53&'7#5'#!#"/#FWDD~ ' o550kk+UTd?R O $(90D &C@WAACC??@@::8,;R8(,6o*9 J^<:*E;)# )T*: */!%)-735#&'&'7767&'&'3&'535353327#"''67&'#&''##367#5!.'.''767&'!5!&'76767&53767677&'3#6dd4)01#a ,I*(?i) C)5(=%=FMGUqrP">OF>+O%Fg hH2 %%$=2")<.0 .14F);*)3%<#869J!V- 98R(*MNX2 B\wV;7D7; kAA??@@1#@;$ kB*>*>DY&;#;8xF ,+h?" <4--I?C ' 8S]J (K^9$BG4WA SKF[b{ 2?C)- &, #!'35#!5!5!5!5353%#"&=3#5!#'67#'67367#53533#3#67'675#!'67#'67367#53533#3#3265!Fa^Y&b4-2 gML!c&3 : ;9HLMX"! M` E&]-::1zzH[\oT ]0,+?xiFAACC??@@N& wuJR++;O{! J^!),?;;?1$>T;.; nlU0@Q AS$,)?;;?:>]ee -7 #'_e#3'35#67#35'35#535!535333#6727#"''67##!67&'!53&'#53533#3&&'7Fnn0I&#>2C<GB-Eo*J08& rZ,M*k8-99-0,+?qJQLOgg;`AACC??@@?igFmaLD4601v?@[A[[AUF}TnG"Z^2  "&*.26:>O#!'35#35#535#5!#3%5#!5#;5#!5%!5!5!5!5353!!#5!5!5+!#F_BLz`_``^^c/vOK0,+?>777??76`````??18[AACC??@@?mm?: &, !dh#!'35#%'&'!&'!5!5!53%5367#53533#3#&'#5!#'#5367#5!5!367#53533#3#675!F$-.6/. !HQ]QgjkKtuz,X"!LM!M"a0gopK]^mN6(FK0,+?+!K9JD8JI9eAA??]?+/@KK@4&?gIFj++8+@Bi0C4.,@KK@3'?8=8=ii 2E !%-159=AGMQ#!'35#5#53&'73673#3!5!5!#!#55!5!5!5!#3%7&675!FόF" GHMMG  ^HH?)%?!X2?30,+?,?.)8053+.?==R_+k+AACC??@@K_WBFJ!5!#5!#5!5+5!35!+!#&'#5'6#!'35#%5#!5#5!5!5!5!BIE(/f#lKe Fʇ{{[={\?<7#335#5!5!5!5!5!767#'+'##5'675#53533533#367!#&''67&PPtt  ֹ{{bpBT:$-7"%.%*F|C 8EiiFtFggQC%C 2B(FHjUUyhI0>'28U/++X66N++O++996%,@9.SI,_ MS444444'La':V:*;!726'* -K Y]aeim735#67#!!53#5!#55!5!67!3#3267"#"&=#'>7#!!'##!>='5!5!75!5!5!1 9MMM`%r;I# #&F ##M%) kL7K>;F .tgK@s''PAAC]s <";=  'T8V9 6$39,+_ܨo$8??@@2200S00 7%CGKOSW35##5'6=!!!'35#%67##5!#5#53&'#53533#3#3##5#535!5!5!5!5!D$3IYEbPPPsIN4mNbpB=UA66e5LT)0)0I78!7337.+736<<6++Q55K++K++~11 2 #'+V#!'35#5#!5#;5#67#5!5!5!5!!53&'#5!5#535+5!#3#3#3#3##5#53Fʇcdbb($! =#j C)R!P0,+?fffff20/DD>,785/==>3? i"B/I;=6=6:8(:5===6=6=;?5.:+?.8!='j&" -7  $(,Y]p#!'35##3'357675##67!5!5!53##3#3#3#3!5'#53675#535335335#5!&''67&'7F~~ ?E `69 /nxAͺ.P#AHHk4pdugR<'0,+?E2224 /*31MAACC@@?/ 4202114%+?ik?<<< '+B<':>j< C7*;B5 9B_ZUMN[22W66W33V22SLOUST < 6(< *;G0!A:_Z#VYR> -< IU[agkosw35##3'35#35#%"&5+#5'675#53535#53533533#367267'##36&'7&'7&'7535!5353<+9x??nn>=G(9D/ii;IJ8*/ <=(< @-9AF-D r&B$u/7B5/tcE4\ 5 L !,# (I5=Y 9/36  0   A\B^(t'# Q0 &9  $(04w735#35#35#35#667#5!5!53535!53!5#'675##!535#535#535+5!#35#5!#3#3#3#.'#64vv(xxzM=-Y&P R( eX,+,/304''''403/:'211=#_ -2 #'+/N#3'35#67#&'#3#3#3#676535353&''&''!5!67627#"''67'675#535#535#535#5!&533#67&'7Fnnh$7#fZZ____AZB (-.6?C ".E =F<-6Q7<+ @&````]]jF .!=.J4::=10,+?\ 7989<9J 6kAA??@@"$2<2/(1(.$5"$,CPw-*1J=x@8.')>,B W:F;B;D<`x<[thLfSXa &7 RVZ^bfj%5#5##367#535#3#35##3#3#3#3#3!###3'67+535#53533535#!5#%5!5!5353 IHl <| ȷM)F [CH}NNS&<>3@Y 55(l?5(8<4>3@=,>',+ Qf5?<<<hhh~~ 141kW fZF}OGKJ;v>3!8)EQQ^B!%10u?3#8)ETTaX %6< Pk433f3333B Ys,6:;D70(L/%,++6j E T82$O 22728< :;82%N 22728>  AACC??@@2 "&!&'%67%&'7673&'#5!#5!}}ñg6j,`"9'NN'9H_zzb,gp8tzzA55{< #!%!5!'5!&'75!67!O\'/H-)O2J+G%,,>BBele]tkBqzkB<1 (7!5!67!3!53!53!5!53&'+5!#!J-#LLP\PT#)kDP:Z ÄAABLHSAB <@  $*.2A35!3535#7533533!#5#!5#;5#67!5!!!53&'+5!#!II[Mxᗗ='\P!PU%BBBBBBATTTT7HHHHH-6%>I==dMB,74/B A"/_ci%&''>73'6767#%#!'35#67'67673267#"&535!#5353!##"/326=%5!7&2/(3PA +p(Y3Eˈ @UI'@;>E%!h-9HP %19.*@@4)"&8@c 4>F8Dao?9-,>' BC)DhhL, + .77 BdeeFA !AAOpaj:85!!67&'##"/32>54''$7&''67&''67SB6\K9Yj]8!)+R^1J*pZ&# & +nBBN_%tUň3u+!SVB@N'-kBn<8Y@Vx4.H:AJl [35'35#'67&'&''65!#67&'##"/32>54''#"/326=#'>5367usssaz /#L_N !@12LVL?#3 x*"*AnnnngJw % ?*TJ7P,V=qM>L=ZaBAB"{QBPz'hD??\!@0<&2y 9@ Q#5!%5!53!5!5!#5!'$7&''67&''67#5!#67.'##"/32654'NyP#X-Mm  ىpr7TG2NSYs,$7GW/EHRU2$;AA;DD~~6B]J740E.#5",44CD,8*@+W96=o /EF2=1^%7 z67##67#37352>54''67&''67&'''67##"/3265#53&'767#5!35'6733#67.'##"/ 7 ^H wvgeMq *90&b2F5GG. :1+H6BQ8};L 2619B>R$W04;%-&\I*!pppp ,/ oIAIr$Y@>:T$2+#54$7 o 4eW,,A*5aN( A$&^?(XvJR7RP]f.)"t$ōX>Y*(sM>Go&G4?J="9Z #A,"/@0.3@7FczNA6? /X7Z7#8 &["/32>7!'67!7&'67'67&''67&''67&'767&'767#"/32>54'9Q|w9 2E4j+K N@U;A="z lje36 :&7+:0$*8L4;'5%dI$ xC F !ڈ_299_5 "A1W6Y6;d+$pQ;Nj B4<N9%K@ 9-%*5*-1C9IdyRA8B"*#3T%!5!5!#3#5!#3675!'6"/32>54''67&''67&''67&'767&'767!9_ MKǓ"? R> ol cbWo00%;,);'!+2N.4%(DDET66uBWm6\7A2A:@&Y;a''fK;Hd!<0;3R$:L!8-$.+&-0C@Jb{P#= m#6'!5%!5!''6"#"&5#'#"/32>54''67&''67&''67&'767&'76753673#326 K4E.4 GG}"tF I$X(1 R> ol cbWo00%;,);'!$P /MC8Jbh)boo4i 03 \`#3735'35#%'6"/32>54''67&''67&''67&'767&'7675!#3#!!535#535+#3M#r;P: df YU O`+0;)";*&ޙK3D+/%&:c6Z9A2A:@ yX;]&*bK;J^ :,;@D%2Q40$"2.*;x>AA>xG;HbzQ #A p#6'6"#"&5#'#"/32>54''67&''67&''67&'767&'7675673#!5#535#53#326(h4E.4 "tF I$X(1 R> ol cbWo00%;,);'!$hS"DNG /MC8Jbh)b6\7A2*/9#/Tn,!A:@&Y;a''fK;Hd!<0;3R$:L!8-$.+&-){8A/p>>}AD 0H  !5!!5!#!!!67&'7  NN Do)tz{j(xAW7`CVK?LU>; &7!5%!5%!5!'!53!!!#&'7#'67+LLLN1P\hx"xtN[[XX;T@KAZ:A?GA2*R6B/A+A$(,067!#'67!3#&'7#'67'!5%!5%!5!!4'1O)!WJu!2!~xvJJJg1+(4 Ky -?*2:G?FB80S5B0F]]YY>V!' 77#!'35'35'35#67?&!533##"/3265'$!I7Z0<8X7R;:8rZO[[(U7pi5*/w[vvuuDD{DD7C@@X??!& H7!5%!5%!5!%267#!#&'7#'67+'$7#5'67!&'7&'#"/44416:y"rvP0 ROV(zF,A~A,Fx(G+ ".u]@@w@@7>,\5\9<=A<5.H4?->x@*`!:4N!!!!N4: ':"')G7#!#&'7#'67'!5%!5%!5!'67#5%27>7#"'.=367Py"rv444̸|929PCRs@CM1YN'+JE'Oѻ %>U\9<=A<5.H4?,?|@@w@@7>>r)/&e$"; V-D+;+/  =7#!'35'35'35#67?6!!!&''67&'767!'&I(ߙ|V-=6S=SI6oV#^f `[1F+MV/-[vvuu>R%4#0Pը~"rp000Lqwfwq/''nr,<6#(2>;A<.'H4=,:m33f3333sPA(9 9(APs ( ,048J67#!367##3>73>7#!#&'7#'67'!5%!5%!5!'5367!3#!#67?` QP߸x"rp444̲h\eR """]6 $ $ $ x7<=A<3,H4?.;u99m993:;3443;G D$-167#!#&'7#'67'!5%!5%!5!%!!5!5!5!5!5!53!!!!R˨~"rpw8rTxTxTNn2>;A<.'H4=,:l22d223299160<@@<062 (:7#!'35'35'35#67?&5!#53533!5!##"/3265I7Z0<8X8R;:6KP"Gs [vvuu;A<.'H4=,:l22d2232.C@DH7#!#&'7#'67'!5%!5%!5!73#327#".'!5!4&533&5!5!Phb[]XhhhR:!!/- @ "=6$rIM JQUU1?7<65-F08+@e22`22.2.6>hp!P/>>?688h::-1"&75!)5!#!#&'7#'67'!5%!5%!5!!!!5!5!#5!53TR˨~"rpwrOOTyAAAn2>;A<.'H4=,:l22d2232s&99&;; A7#!'35'35'35#67?67367!535#'2$73;#"&''&Ip>>%:~=#'>E uDguimx/34'8&)&[vvuu-sC B.'B(C-(BVfvV_: #'+/#5!%5#!5#;5##!#&'7#'67'!5%!5%!5!M.Ƨ>Py"rv>>>F7UUUUU@9<=A<5.H4?,?IIII7H"* D7!5%!5%!5!'67#5%77&'77327#&'7#'67+!&''7&444̸|95=MIHL !-46FZ.+b*> 9y"rvP^oM@@w@@7>>r*2'e& 41,2@+2[p k9<=A<5.H4?,?$_?/ +, "&*.b#!=##3735#367#'3267#!5%!5%!5!#!+#&'7#'67+'67#'67367!5!53353?.  M(  *N  X    !$˨~"rpyP,$?y L+MM%,+4\, D22e2242u(HB2>;A<.'H4=,:( C+7 ^E;77771 $*0%!!#!'35'35'35#33#3#5!#67?&$=wIANML?Z0<8X7R;:8+'[vvuu7#'&''67'6767&'767#Pƨ~"rpt.3*J9/$$ 0 XZ':O7j~Nu2>;A<.'H4=,:u::o;;4:`{k$<>BI.&9<*:$g+-!QL7#'>7#536jKwDP߸x"rp444K#+'W># cV&DORt<j7<=A<3,H4?.;y==r==5;(n\>%"Lo.?$P6>(-1>7#!#&'7#'67'!5%!5%!5!%##5!#5#535335!5!53!!353Pը~"rp444MMMfTfMNu2>;A<.'H4=,:u::o;;4:A4444A88N?@@?N88 5 059=AGM67#&'!5!#'67&''67!&'#5%#!'35'35'35#67?&S67kNTr,L f9:&%6rFG 1DfZ%M\I7Z0<8X8R;:6JW N5=>45n E3J3I2'4z2@wYD8E5[vvuu;A<.'H4=,:m33f3333>q)1+Ð 499490;%= 55 <BH!5!!5%35'35'35#5367!!!#"/326=!#+!6767?&.))? N=a"H#WK& N.4I1n=#'67!'67#&'#&'7#'67+3";RUVfoNbdk0<6p:K 2V35(2ƨ~"rptP|.T\&::o;;4:$ :"!058827\9/"-BW;A<.'H4=,: :"/37;7#!#&'7#'67'!5%!5%!5!35#535!5!!3%5#!5#;5#R˨~"rpw伤kKpңNy2>;A<.'H4=,:p55h5535B444??43GGGGG? HT7#!'35'35'35#67?&27#"&''67&'!5!&533&'73#67##5#5353Ip>>%:~=8'?&e>F'Kp$o#4K~48'=@ 85#B2W uIffI[vvuu7&'7653533!53#53533I1蠠T-=7QEKC 6!2933O"՘M[vvuu5!!!#67.'#67'67#'&G ||||||q< ?%;r? &!(">55AH9V"]BGM G'CY>'[vvuuN)]Dd;C:@AC g/ J)K07;?K%#'675#'67#5!#&'7#67!#&'7#'6!5!!5!!5!#5!#5!53Z#@vfcjHCr`%so02/P\Iv"u 7 -   ~KJK~PM A0p"M07)?770=3J;W.)4;;B;-%J3=(B5 5g55B{{P#, b&'!&'!5%!5%!5!33#3#&'#&'7#'67+'67#5367#536533#3#3'67#5367#536AC#G4""HM߲Cx!$0ƨ~"rptP).u1 M?9#l S!q6%6%.2;%77i7737)=(;A<.'H4=,:O B;Y< =&&=*<$2! /<(= FLR!5!!5!35'35'35#5#'>7#'>7#'+!67+!!!#"/32>67?&LL P0G$V&~A0:m%[8=I1d;Ku.)*M>$T-=7Q:A.:0s[`vvuu$2p77g7707b6,+$ϓ )+2ff < $*<@7#!'35'35'35#67!#!#567?&53&'#53533#35!I1蠠Z(#XMNT-=7Q:A.:0\"CPG$ʯ[vvuu+)**6$2>;A<.'H4=,:fj7+%5JEE>>dD/?%C)>:E! ;@ (,?#5!%5#;5#!5%!5%!5!!!5!5!5!53!#3!#&'7#'67#I>X   1=0=wVwt wrc5;;;x11a1101}+55+9229;M])2793&A+9 1: 9bhn7#!'35'35'35#27#"''67&''7&'77&'776727#"''67&''7&'77&'776767?&I1蠠?FW[uk*MA-5JCb$X061a:2?FQYrf/ LD05DI!|&U+63Z:T-=7Q:A.:0[vvuu@4@RA:CF6%-+ ?>7736733#67'&5!27#".'!5!&533#&'7G ||||||n< ?%;w:4*H:KffAE 3&<))!rI ("3237/[vvuu567!##5#'>567***7kK ۻv"roP")0,ĢRK!FĢ@@vAA5@<[[91]8;=A<3,H4?.;$"J3g%=<[[<'#gW%= 9&*.37;?EK#36!#5!#'67#535#53533673#!5!!5%#!'35'35'35#67?&9 <'LK 'x羠L AD\1$$>I1蠠T-=7Q:A.:0?@++UBJkA?ff/{gA1inn*[vvuu&=119r5@GG&%3@5#?|O%B 'z?4(MMMM5HHHq[vvuuWcwO X`_ -  $(bhn%#3=#35'35#35#35#!'35'35'35#!33##"/326=!#5#5335!535#535#53533533#3#367?&T렠tG ||||||B229iW uK22kkzzLMqqP< ?%;w<8'>&NNN6NN6N=s==h[vvuuN##E v|#@\?P?\@#k11f--51111^--Z--Q-:/!=*=-B+<9-0-FF-0-9<+B"-56 q7!5%!5%!5!767##53&'#535#53533#3#3#3#3'67&'765#53533327#".5#&'!#&'7#'67+35#53   _Y=L8 \0Q-:"8 zzG 7="+i 8D&<0#M-l"zronPY//`000/$#66%6!4%%4!6,6!2!++D4%&:<7#535#535#53533#3#367!#&''67&''#3#"/Pl"zron   7" 8$1g8H ~MN+C .B(FHjUUyhI/%*"8#J>A^47;@?'"H4=*7g//`000/,@6 T*4M-020##02Nq':V:*;!726');R/03  159AGM7#!'35'35'35#35'35!#335##3&'73673!5%!5!#!#567?&Hyyyyyy.H%E'(,G"ssJ M>>%:v<;%?&[vvuu#FD$3 VFQը~"rpR&)tc`>7E@KE7v07Sw"oX`>7E@K  33f3333CT9P2>;A<.'H4=,:p B^87%.C  22778:<)<Jb86O87%.C  227789   #'L_67#67##35#3'35767#!5%!5%!5!#3#3#3#3!5'#5''6&'7#'67+!#c3]1N$W v"!'I(\=MH} l~tZN|_$J`Lf5.$m$m$$.%00Z----A .$%$%$.*7 &|߸=)U:/!=*=.G$+ K $jnrv35'35'35#67#!!53#5!#567?>='+!67!3#3267"#"&=#'>7#!!'>7&5!5!5!||||||59MMM4< ?%;r?)$ G n&1&5<<*3.x0/?,::G : C f#B$hvvuuWcwO ;HHl?e199141?1XHNNW\?8JRMF$"[QCACDBADEA ' #^!5%!5%!5!35'35'35#35'35'35#&'7#'67+3'67+!#3#&'7#'67+!&'7#!#\G_^HnYL6KqOƤv!tZ? Dn^BgY=8I]xobtT66&&U&&/&((X((0(((X((0(y.&)(4#4/?4)5"'2%&3+*)(5 4*?(%.+0 $%; !%)/5EI\7#!'35'35'35##5!%5#!5#;5#!5%!5!67?&#53533#3!535!&'7#'67+!#G ||||||5A3tf effuu?< ?%;w:;'<%fPebVDOz[vvuu=!5!5'676767&'7!%5JPJ%Og/%*m>D+<]A".CggCDpV)E,AV:R9D&()+3(?">#]B9PV%67#7%7&'#"/3265#'>=#535#53533#367!#&''67&''67#'67J $7A2=585%<4>KS;OCֳL,F,8cy>5B( uT+D,NW-PMDBaaB/^Dܜ\N;K_]N5'67&'#"/3265#'>=#535#53533#3#767S;5@wL79&<#75%<5=JSS p DBaaBDTT+D,NV-P 5Z_T+D,NW-PMDBaaBDTJVBX 07)%# $''67!5!5!5!53!!!!!!3AU.@Et.K 'eKh\PLx?wD^y~h?DEVCAggACA)7(=67#535#53533#3#3#3!!"&'#5'673673)A F %+ȻM]1=D 2 L0KQlL4gAP&kCAggACA#CHb\\C/"D  )7(267#535#53533#3#3#3!!"&'%3&')A H )>׼OûZ1=N}n4]NZ*|CAggACACGa\ZwLrHiC])7*S#"'.5!5!5!#5#327>7467#535#53533#3#3#3!!"&'ZJ  /<4, wM &$)A F $5ǬL[1=:6<8*,'B5);,gAQ+qCAggACA CHb\\)7 I#5!#"/32>5#'>35##!67#535#53533#3#3#3!!"&'))7FA& eM!PNd :s/8ȌgAQ+qCAggACA CHb\\)B(]67#535#53533#3#3#3!!"&'33&'73#67327#"&''67&'#67'673&)A F %+ȻM]1=/G^" 52&" 0!A1J >(#A@P,\F+ c2-v'+4gAP&kCAggACA#CHb\\">+"47Ag.F ~eQLZ=2Fot @W4B#70R!5%!5!67#535#53533#3#3#3!!"&'7#"/326=!#'67333&11 6 B&KvvZ]9=R>.B.QH) M4V4@3TKBkTT:Qֻ[@K*_CAggACA)AHd^\O`stI"> '2+Tu{Ww#7 P[35#35#5#667#535#535335!!!&''#5'67##3#3#3!!"&'767#67&ppppppO6 B "K_:F+D&?/1;#Aon* %iuiggW]9BA)-;.=DtOLD)WCAgg9AR>ŐL9:5HL15Cy!A#9CA-AIdaZf ep,0P{#C #5'#36'#3653353#'67#5'#3!!"&''67#535#53533>7!#"/32>7!336=3353#!#"/3267!336>`$ ga+-*|iQH Q98,v/_ iZ]9@6 B&Kw,UF_10TJ,D H P9 - S1/0C9)" 2C  q=<1 4,;/%Ji7<} >@)AHd^\[@K*_CAgg5!_( ! 6<c]E"0-%E}*'8<cJ!0"!5!# $''67+!!!!3AU.@Bt.H (hMMHy6D^|j5JGYQA'/;35#7+!#3#67'>7333#3#.''>7#535#53@DEl:>,Z\*>7pED1-35#67+!#3#67'>73333#3!533&=K>nuu87 CzMIU6ʄCBL6A{ D:FFp11@35#767!535##3#67'>7367+!3533#3&''67&%D>mr=?nuu87 C&=K>PEk}wxtswadACBL6A6WzzCAsP1B7]Y;B-Sj-3L35##676#536533&'73!67&''67&''67'>73>7+!#";3kcgMED*SJ90PF!J)XKm/kI?R6VB@./lD! I 0 WMgwC@HCBEEB/$7,7'C,„ؠbI;GY^A2Dia$;O0@{6ʄ'-F35#5346=#'#3#67'>737+!673533#3#.''67})Agbb1? F@6Џ 2.{{CEkC,fe-Cm!, 0I#!#535##'67#536533#"/32>=# #67'>737+!#FHrf<;6EGI %H+%W=SR(z B3735!!!#5!#'>7F: ?KK\{G>Щ F2OLK&0&WgT.ö@6zCET/CDDv66R;0HT  K35#3#3#3##"/3265########67'>7367+!#353!3#y\\[[[[(D$ \F[G[H*Q6 B"=INK0000%%%K*D3zzh> CJ-B6z>iC1 .35#7+!#3#67'>73!5!!!#!!!! ?KK\{G>Щ F'jOtrE6ʄCET/CzCE2aD,!%@35#67+!#3#67'>73%!5%!5!'!#67.'#67'67$=KHxzzK- CqGGK.QJ0MVHf'q'cdf ʾ67L 6ʄCAR4AvCxADWF?X.\CV4<7ՍB5C '<DJ35#67+!#3#67'733#7&'#"/3265#'>=#535'67 $AK5bUUJ+ 'B>=J&C&D<P;  g*YR4JN(>HCE6zCBW/A DkѸLT+E+573#"&5#'>7#535#'673533#3#326$=K>nuu87 CCQ,H v$cs u!*CP$H _L)(V6ʄCBL6A2=< %I94B+E[G#41BE*1'3 #;V&'#%35#67+!#3#67'>73'67#5367!#&'!55!!!#"/32>7!'67='**Bc $AK1^aa66 C"HO G!H=CSIc ~ .1I^X@ J,IYWKH6ʄCBM5@ @VA+"( AN@*C,/FAA%2y(CEO>=v$A 9d35#67#;!'>='#3#67'67367+!673"/32>7#3:>7"#".5!40!@V@*"% _oo/;  E4IKCt;I $#C2 [%% K 4,*EC+ DsB'36Aw,i* (CDV9B6| ?A? &F?$  /'0.27 !%'5 IM&''#36767#&'%35#67+!67!&'#5!#'#67'6735!?6!$)vqR6 7bUWx4WKak=G +Dd^~MK*eR* а "F:E(#(Sc0qG[ N0C?4F6o!*@zVG5E 55s&AS0A #"8_35#>7+!73'>7'6746=&'#3#67'>73#"&5367'&'3:>7 # ?J1$I5Kh.hZ Idk_4,B`nn$J CB)*(V0KL??DV0yb*S^, K6Rlg%zD<6x92H3G OSfuC$@\4B 9>9'G_}dcJL9@;&'&!,7\35#7+!#3#67'>7337&'777767327#"''67&''7&''7.''7& 6AK6bdd3; CMF/%mDۗ K6ʄC D\;A D >!.Ad ?M)A?,/?*I;<4dZ[1A4V9UD@7AKC"'1AE5#%35#67+!#3#6767+35#5353!#3+&'#''>735#\ $AK1^ddUOFMHaeMa DL˶H6ʄC );^n1XAYYAXϋbC]fB?2@ K,A!%*E35#67+!#3#67'>73%!5%!5!67#.'#67'2673533$=K>npp78 ClBBI:WRq!x,WaV AL%IE6ʄCAO4AX73%265367&'#"/'53'>75!HKMC$=K>npp78 CK"<>9AIIY(Y3U0wL(?ff+Y+73%5#ՊpHM$QKW+{ 1DKClbb45BŊiioooAFwFAk@mk=mI6ʄCCQ7? ii' F35#35#!5!!5!3#5!#35#'67'>737+!#3#67653!#3eSSu MLHB E9CK8```> >M¹dmp55_pLB3,Q-B6|BDRdC!? L!#!#535###67'>737+!673#3#&''>7#53=#'#H H|^R(z B3733#5!#53535!##"/3265#567%7& . DK7335'5#;5#35#3#3+3#!!5!5#535+35#535'$ -AK'TddN C3꒒ꛛ [JGvqMF6ʄC CI4@KFF3FFFFAM=8<=HAAH=<48=FA'`67!35"/326='35#%5!23'67#!#&'#5'67#5#67'>7367+!#3'67#53&'7XKF06C/ 잞by@S8E6e#kOk#eZH$ C$AK1^Xp^F*7C~% 8@L;LL;L<AP3A6ʎ.9Z>)9''A )Q67!35335!%35#67+!#3#67'73#"/326=#####53&'#53533#3#,$M@ʞ $AK1^UUJ+ 'B487M}H<&9MK(9U_W]ffnE6ʄCBW/A C!BL]WAbbA`T*%+1K35#67+!#3#67'73'6767&'7&'73#5!#673#!5#535#$=K>npp_ 'C!7E:##$C).2C4-KGo^LR`F 6ʄC& CP2B F!it%jCMcvSTxZ ++,B$o==|#A R35###6763!535#'67'673>7+!#35!5#535#53&'73673#3#!!!#hxg*+fی;r8" D$ AK1]dEGn@ABBq5 J3B~6ʄ<_>XAE$7D9B49AX>_?(4>$4VZ35#3&'!&'#!5%!5!.'!!3#5!#5'67'>7367+!#3#676='67!5ߩ2"U..3*5HFrikKMI@9 E*MKLkxx80CrV=/$M(!%$*Q7N{SK7++pL1*'T5B 6ʄCAKS{Sxx$K x7!5!35#'6727#"&#!!!;# $''675+5!&''&'767&'#3#3##"/326=#'>=!&533&'73!672$:<?#6&FXGA=T2B@v1G KM926C)39' 6*=ͪ׫0$0) K9(Ig B)2G-CE)X/?;!*%?B28 i)4+5k-4fp;?~`&&&;nYIkY?'1"<T%#!#&'7#'67'!5%!5%!5!%35#67+!#3#67'>73%!!535#535#53533#3#NZ!fY\Tsss $AK1^ddH$ C5PNn9;6C8/'J57-Bl22d2232E6ʄCAP3A99160<@@<06 7#Wp!535##>=#53#>=#537#!#"/326=&''#5&''#!5#5#5353!533##67'67367+!#"[ !(2k !(2j92*<: '-G'.HUUL"MXXQI B"7367+!67!&'#53&'#3#3##"/326=!Vh+Z5 6 w$UcIwII(SJ<2: W^^"D C) CI*gD0L~#B3B>__>8Q\ H@j//I$ ":()737+!#53533'67"&5'67&'76###"/3265+!53533#3327675&'7zAmR(z B3&n5+&8E^d'4%%GaI$ >-!7'C CL+B6z1AaaAjs4@04DeQDY S(D& "FC4 >YWBWB'/ i67##3&'#35#5!6=#535!5#3#67'>7367+!3&'73533533673#3!3#3!#.''>7"nڔPPP> D"?I#?735#!5#BID(2f#mKp! $AK1^ddH$ Cx{{\?<7#'675##5'67+5!!!#"/&'#>7'737+!#ff iffm#mii >>΃/&( eqi? +\. C9`$%6j)-R 6 !B373##5##5#535335333673##5!#'67#535#53!5!.*v^ -hGIG "?I#SPP> D>KKxxKKL%3Abf2)MK&-{O^")KJJ;%4+D6lB BK/APAAAAAAJJJJjF),*\VA++!!@7'>7367+!#llԃ=S.>x_FlHl(776'%72208XR - B"73%35#535#5!#3#3#3#3!#'67#535#535#5!#367#ᔔ "?I#SPP> D 1M 7g9Ke ) CCzEE6FD6lB BK/AsL5E?,7367+3673&'#5353tii; 9%"H.4e-eQ29 %S/ UC!#$0lT=d..pVFD*:h2)(.1=.DAL32MA!a=1h.'&2zC CE-B 6w9M"#-!>N;uC '#048<PU[a35#67+!#3#67'>733##5#'6567!5%!5%!5!75#'65673#!!67%7& $AK1^ddH$ CdOGE E%oSgkkk+< C%}lP`? E^ [SkbE6ʄCAP3A7'>7367+!##3267#"'3#3!535#53535#'67#'6!533!35#535+5!+3#3z@wR - B"<kJ&r5'?6 N|BD|..-/\.[//CCE.B6zn" !  /75::57k#3I ;=?EQQ<$B*3''3*  #=[q35#35#3567#%5##35#5##3#67'>7367+!##"/##'#;#367#;33265#3#3#3#y79"[kkkkkkO4 B ;IE1#FH $HH1q Jk r ZdXXXXFNNNblPP4N@@t@@3@/C FE.B 6zT*9$E:c,&G6+# 3@4@3 ! !%)w35#!5%!5!675!35'35#675#%35'35#75#'267##5'67##>7'67367+!#35!5'263#5!#673#7#5zmAA{{{{.M{{{{{{{8Jzz!R/  B">2; 5q>>2;1?#w= ?#%CG+B 6ʎB>AA>I<@D: >@ 2!5%!5!$75!"/326='$%'>7367!67 ! /SJOK5,)>L*[[:Vw>NB0i@YE?3 72*+4;7Z+< Q35'35#675#"/326='67'>736736767!5!5!!!#"/32>7!'67ۅV"pZ $~ - L 2 % H .1HjE I2[[9W}@MC/e?Y{D/B<-'6eCIW4 Dlu8Vh-9Y-< P35'35#675#%767&''67&"/326='67'>7367367!!!!#ۅV4I4*G9582/0BH:RD?"pZ $}t - L $sK[[9W}@6XOonYx6eST-`bC/h?]vD/B<-0>CtB>"Y-= P35'35#675#'6736736767#53533#&'3##5#53'#"/326='67X\xtL  @) Aa +YNgB4Y-C0zbBUt= f35'35#675#535##"/326='67'673673535#535#53&'73673#3#3#3#.''>7X\4%bR s kjtL ׀F kE ~u[Q%&R[v[[9W} AA`!%Y-C0dBRvDG+82-]>ZA0* @',; +3AZ>]>`AAfEiAAiEfA@#'+1Xes35'35#>75#6%5#;5#!3=#37#3735!5!67#"/326='67'673673!!53533533!#53&'#5!#3OTTTTTTTT=TDaI hr\Ns c E }1 QKTKEC! EFVV9R -Y DDDDDuBBBBBBG=6.EPC0h>QnD'J:0!=.("Z,>OOOOB5>F-B/1 ,35!3=#3735%!53!!!!!!#5!5!5+!5!P(Pm@cPcK@mckkkkddddcc?SZ??ZS+- )-I35'5#;5##35#53533#3+3##5#535'35#".533267"HmmmmGNȳFmNmmmp021LQb"I 0%ckk9dddS?__?SV@@V7#"&]j]]]]]]YZ<L]EL]K @  < V/KCSkk9dddk$v1(@VS?__<% =34]]]]]]DK&'PL]ELY&G <3E0(?5D]R_Kckk9dddkL&ij$L@VS?__?S69D{on%V6?y:' J35#35%35#35#5!7.''>767##3##5#535+35#53533#3!#67&Ljjjkkkk~~CE2F 2 0"MkBM!-T#dkk9dkREEy ?*DS??SS?YY?SEDx#/ 7=CK35#35#75##3'#3##5#535+35#53533#3673&67$7>7{EEEEEEEEYgHA?H{hHyq5z$5*k5pdk9dd9kp/V@@VS?__?SjlCmL}2O]1c1i4o4 #/ #@DH#3533#5'35+35#373535#35##35#53533#3#3##5#53575##34HKJttttttKt\\\\DKK]]]]@ԭ,@A ߣdkS?__?SV@@Vdd9k#- I3##335#35#75##3!#3#3##5#535+35#535335!##"/326*GGLLLLMMMM`KJBK)5$Gc,$bdk9dd9k2SV@@VS?__7DqU*E#-$(,S35#35##35#53533#3#3##5#53575##3753=#'673533#3#.''>7~LLLLBKKMMMMYn'ACF ^OR{!)a tdkS?__?SV@@Vdd9kaDaS! 02{{CDkD,dc,D6w+- ,CS35#35%35#35##35#53533#3#3##5#535767!5!&''67&3!535#53533#3[[[____CMM1=6UN-8YV`s[[vPW踸Ldkk9dkS?__?SV@@V$XMKdBBUB*<1HF4?-;OCC?uu?#2 '[35#35#75##367&'##5!&'!5#3#3627#"''##5#535+35#53533!&533&'73#~LLLLMMMM Q9 fKd嘊, < F- KJBKLN,9+*&%dk9dd9klYAJ00SV5 (dr#?*<@VS?__-.c5\L">NBu+; <BV35'5#;5#35#3!5353'+3##5#535+35#53533#3677&&''67&'7671X[XX[[q*MW<{"AXM[EMb88XI0RX] WG)I 8>(F1MKckk9dddkaBBww;V@@VS?__?Sc}*)h}<D?]ZBA9YaUWbP #5 #'[35#35#75##3%&''6767#&'!5!##3##5#535+35#53533#367!&'#5~LLLLMMMM(;:)&$P97hR\r5L(KJBKpEH0Ee]%Mdk9dd9k6I1"#0qF[ N2AB15rRV@@VS?__?Sm!*@yWF6E52/  `f%#3=#35'35#&'!3#3+36767327#"&''67##5#535+35#535#535#53533#!&53!!7&'7{{{uuuu3ؿD{QuC)E3c"#D^ J"To.% MuDܾMK8::@5;k;;0;;0;6932,&GN#-$(,DT35#35##35#53533#3#3##5#53575##37&''6767#5!!67&3!535#53533~LLLLBKKMMMM>XB@ 2)*.sAOdkS?__?SV@@Vdd9ky"#9,,CsvDDwi +DDCvvC-$(,V35#35##35#53533#3#3##5#53575##3#3#"/3265#33#5##33##35#5!pAAAA@}H||HAAAA7XK  ;8@D<:F0dkS?__?SV@@Vdd9klQ'D&kdk9dd9k5`w9SV2 )v?Y>AG@VS?__=#53#>=#537#3#"/326=&''#5&''#35#5!rAAAA@}H{{HAAAA"2$)_2$)^0!8*"%D"#G;dkS?__?SV@@Vdd9kIh$u<A1Ih$u<AiN*E+N,'YX(3ü,'YZ&3iD -$(,048<DNXb35#35##35#53533#3#3##5#53575##335#35!35'35##!#567&767&767&wDDDD@J~~JDDDDKM+K:I4EK3G9_K:I4EK3G9_K:I4EK3G9dkS?__?SV@@Vdd9k0vyyyy9v,0,Pf^IYcqbPf^IYcqbPf^IYcq ' PV\35#5#35'5#;5#35#'#6735+35#5#5!##3+!!#5!5'67#'>7#5337&67Ůߖ䑑䖖fC(J777IN]Y ) :049/)LF?"<)?*HHHHXX;SSSXA=KZEEK@xx/2A '=46Ah%xs - CZq35#35#75##3767##3#3##5#535+35#535335!&''67&?67#5!&''67&767#53&''67&?67#5!&''67&rAAAAAAAAJ+;1 {{H=@}H}'(2"4K%@1FA28%H5ER>SV@@VS?__AB\F(/(C+:#BA?I:ATBBsR)B!33!:1B112;AAVG-(/$#i<90m3KWDKbAA_6"B'?@&9 CQ#, o%35#35%35#35#!#5!5!5+5!5!5'67#5367#536533#3#&'!53!&''67#5367#536533#3#.'!!!cPcK@ u1 MB79EK+F/P1[4&S6NtM߲Cx!! @0_00/00;MM;)' B;Y< =&&=*<(1&?+O800?MD+,%.<$=))=(O0JxNP=,LNm@0_00/00;MM;)'9$9 56:6cb29T6:6568+9') #-$(,159=Ke35#35##35#53533#3#3##5#53575##3!&'#37#3735&'!5'67"/326=##5##5##!{EEEE?HHEEEET69;MMLLFOv<''<x D OFLFMHdkS?__?SV@@Vdd9kbQBGjF."$$".FhC &]I( #- !%V#5!!5%!5!675!%35#35#75##35!#7#5'##5#535+35#53533#3#367#5!L  WFLLLLMMMM59 ' OKJBK&7?WW7S ?dk9dd9kWW A0@VS?__?SV-A 6 ")35#35#75##3%3&'#&'#3&'#65#5'5367#5367#53673!!#3#&'#&''67#5'#3##5#535+35#53533#367wDDDDDDDD3v ;-'_U a-36 M  7P %YByJ@@J~P9dk9dd9k:(&!$#0C)&$!),E1>0&;0"?42?(*;/'>pCM) :W=a9n$?&p(3V@@VS?__?SBf #-$(,159G[_m35#35##35#53533#3#3##5#53575##3!&'35'35#&'!5'6726=##3#"/733#"/3265{EEEE?HHEEEEAHKvnnnnu?+'DvGnH-:  DHI3R? dkS?__?SV@@Vdd9kl9PT{cc9^|fE,%&&!0Ed(H1CK$>Op9K&B) -$(,059=AEMQ35#35##35#53533#3#3##5#53575##37!5!#5!35#35!35'35##!#55!wDDDD@J~~JDDDD4MƙKM8dkS?__?SV@@Vdd9kvillll9i,K,AA&' ]35'35##3=#537#537#533!&'7#'67!53673#3#!5#535+35#53533#3+3#!7v]]]]]]]dhiq8{" xq8\^F<jhec%XCLCX%==1=n=n==BC~BA?G>LC5-W9B4GA4(@fCBI:77:<<:77:I #748<X\3535##!#535#35##35#53533#3#3##5#53575##3%3!535#535#5#53533##3#5!%ML/LLLLBKKMMMM״733#67"&53673267pAAAA@}H||HAAAA5@1KUUUUUUDU, Gww==}H!F>GSJ $A dkS?__?SV@@Vdd9kh2*GVV@Y9YYYY A?Z<@5.Ae67> "d544 6$(,048<B|35#35##35#53533#3#3##5#53575##3%#3=#35'35#&'#6&'7#5!5'675+35#5353!!3#&'#3##"/326=!pAAAA@}H||HAAAA/◗fh_KZ&?߲pHK-7; dd= _UPKdkS?__?SV@@Vdd9kGx@@1GG1@4H>0$? H-R"P26O ?dkS?__?SV@@Vdd9k 22.CC UU:R<x FW~7 >.`?YY?YC 9ODםZL:EUVD!  -  $bt&'#35###5!'5#35#35#75##35367#' 7!#&'!#5'#3##5#535+35#53533#367#!#"/326=!R |EA| AAAAAAAAQ ]c o 0Lm97E4:|H=@}H|lDBJ;G8 y !LJ,4JJOdk9dd9kE>!?0A %>Z2=-mj+1V@@VS?__?S8T{vU)B* -$(,@DHLPt35#35##35#53533#3#3##5#53575##33#5##5##535#5!#53537535326=##5##5##367#5!#!#"/pAAAA@}H||HAAAAKIK ᆆn RFSESK 9 "8!dkS?__?SV@@Vdd9kܣգ8AA44b44b44b44\ @#??1A+@ ,048<Y]aei#3735%5#!35##5!5!5!53!!!!!!#5!5!5#3735'5#;5##535#53533#3#3##5#535%#3735'5#;5##535#53533#3#3##5#535P@K;xPx;nPnccHccccENNccHccccBNN;&&&&)&&& :11: !9--9!&&&&)&&& 9''9 !;99;!Q&&&&)&&& 9''9 !;99;! '9 !'7!5!#3735'5#;5##5!#'67%67&'7'#5#3##5#535+&'7'#5'767&'767677&'7535#53533#3767&'767677&'7 BB9C|B{CCDNNk 7"" 5! 3 FArsuuMtt8'. 5 3 FA}8B'%&8'5 236HVi 1sttMuus*B()#7*18.5KRh1"/  p11110---s,,5\YVe!SMPVlP $*DEED*CJ _G $A"%I9/@?B =Kib,+C*D22D*"%I9 5:D=DDn]< YnJW = %*/435#35#75##335'35#&'#36?5&'%&'6&'!#&'#5'67#535+&'#3##5#535+35#5353367675367367677&''#s;;;;::::2kkkk:Wtd( "*#z*[^N^'_"8tH7?vH~5$$&$E K R 5+ &4&(8<dk9dd9kpp>en(S;R 5 V][ r A#!][ yCq`A]no]9duCA "V@@VS?__ ;IcK-XG 6&(-;IQ\&XGVU ^ "- Vs35#35#75##3673#&'#5''67##5#535+35#53533#3#365!!67#5357673#&'#5'67#5353533#3!5353q66665555lg 1P=")E- R; \F1=nFnnllp#E9;L.lg )'UH!>&'!D.#>":H:gMVJdk9dd9k 7 Q<&5:0#DB16%@VS?__?SV8?4FHp|P|m~kC_AnnA~mCBB<; 8!5!67!!53&'#5!5+5!5!5!53!!!!!#!!!!#5!5!O+%Hr#QrTr"%rpTpV0918CCH!?73AEEA37?;.CPAxxA26 B735#%67##53&'#53#3#5##35#535'673533#3#3##5#53e&LGWGJ3YN5&}N/ߠo~eCCp};Cv/?C B6?ZZA}pCCC6 !?67#%35##5'6!!!#5'35#%#53&'#53533#3#3##5#53&H6IVHހIN1(zNnzyoW-?MM: =-v/>XCusAddAsuCCC&1#)-T5#+35#53533#3+&'#'667#5#%53&'#53533#3#67'>7'6767g~^mFMHiPySM_~Z&M*^UHRX#~<8C0hZML>1Z?YY?ZυgDazgDl/Yguq.C]?YY?xdCI3CM0$eP B 7'6#5!#"/32>=# H q uh{O"xMpLxnnMvv<<MwLpKuJ%D5_;)0 77%33'>5> u xS}O"zLw#QuuLzz C<R }Mu#Kw>9;G^;)0 7 E\JRa=aErvk}fv]WCvrAddAxpCCC0B /\[.Y6 )rx~67#%67##53&'#53533#3#3##5#53'6767#53&'#53533#3767&'767677&'7&'#'#67'67'67&'7J rvmmAuMlHtkkMoo N'}JsMlH$-;/#3)A/H'@=>Tm;': NIcD*,M];P0>+ > < |lk}f{luRCvrAddAxpCCC3C cAA$ EI%&'7!!!67&'3##"/326=!5!53.'#67'275#'6=!5!)[q'qD),OIL2D=S_BA([" /vIb'upwpC5J"V=D<<;y <8-&9,2""A B?uP$B 's?E#pB @#A [8t:: $4  %)MQ35#'#37#373535##353353367!5#!!#.'#67'675#'6=!5!I㚚IKIINI)͞)I(HIXj6u`0^pC5J"VAo??????Av!AAAAt&74AAn <#5('AZA#C[9t8812 +'$7'$%# $''67'$%!!; " A=S/@Cx+G M @wACF@HCK@NKakQ! 95i#<CSA,tA+! &'7&'733!!"&''675#$4SZ5_M4SZ5_L+Ӳ-:^'T=2IE0H2IE0H02F1?@A@9@+ 3'>7#5!#"'532>5&'733!!"&''67#hn1}aA '-&9aP5$$4aE4ZM.ӳ.<]$T=e9[DG D ?Y.nC.Z02D2@BA@9@+ %&'733!!"&''67#%##!5!3"4aE5RM.ӳ.<]$T=pN)N[.nC.S02C2@BA@9@DdD + ,'6=#5!.&'733!!"&''67#-]+%o,Sr4aE5RM.ӳ.<]$T=z7=S'FPH=3.nC.S02C2@BA@9@+(%7'67#533!!"&7&%3!3333<]$T=M.ӳ5RS4aKIM1BA@9@C02C2.S^.n<t+ 3&'733!!"&''67#%##"/326=!5!5!5!#"4aE5RM.ӳ.<]$T=w!E4_b IG[.nC.S02C2@BA@9@DI"C)DBB+B$G&'733!!"&''67#%'67!!#"&5467!5!3:>"5[L7RM.ӳ.<]$T=,;g-G4,KEIEz֭}Z'ZN('1 [.fK.S02C2@BA@9@,~ %(Ae?A?08=V??CqL2 /&++7&'733!!"&''67#5!327#"&###5353"4aE5RM.ӳ.<]$T=- >),%II[.nC.S02C2@BA@9@`BQgs&cCYC+(;&'733!!"&''67#"/3265##67'>767!"4aE5RM.ӳ.<]$T= /? :( KVcRK ' [.nC.S02C2@BA@9@C)tE#EB'A  37T'+".!###'6 7'&'733!!"&''67#ÖN 52?<3 4aE5RM.ӳ.<]$T= B\K)\ :B3Y.nC.S02C2@BA@9@+ :&'733!!"&''67#!!&''67&'767!'65"4aE5RM.ӳ.<]$T=[!7j`!gf&|`X5A0Q[.YDQ[.nC.S02C2@BA@9@Ay@qQ/?4XX4?.R^|!sVb("-#C%#!'3#&'733!!"&''67##%5#'>7#536533#"/32>F̄-6C]7NMB.;Z%T9j3;61,Z[H%)3C5#apB ]*Sc+T02C1=A>@8< \9SC%QQ%9= C 5+:28>&'733!!"&''67###"/3265#'67677&6aE6ZM.ӳ.<]$T=pC4IA+ $2B[*F c'E'feD\=F=[0nC0Z02C2@BA@9@JDRV)C+fU% :<料ʬv+/ .235#7533!#5#;5#%&'733!!"&''67#%5#L/I靝4aE5RM.ӳ.<]$T= @vvW.nC.S02C2@BA@9@H+8,!5!!5!#3673&'733!!"&''67#ddKN4aE5RM.ӳ.<]$T=I9B= <7.nC.S02C2@BA@9@+(?&'733!!"&''67#%5!6=#'673533#3#&''67"5[L7RM.ӳ.<]$T=#CO(F L,+JN+0[.fK.S02C2@BA@9@A D6 u&6~~A AU?PO?T+)&,287'67#533!!"&!#!5!533&'73677&7&<]$T=M.ӳL LF?2IA.Tc'E'feD\=F=4ZL4a1BA@9@C02C2DCN8+AJ&ʬv.ZW.n+/5;&'733!!"&''67#%#&'#'67#5!3%7&'67"4aE5RM.ӳ.<]$T=kZ(^M`0ZM@<;?=@C*B*[.nC.S02C2@BA@9@A}>w>u5A._{yzkln+< BHN&'7&'733!!"&''675###"/3265#'>=#53533'67%7&!2Jc3_M2Jc3_M.ӳ.<]$T=h=`) ^(ZQ8rPPGHGLHI'I%2AL1H2AL1H02A2@BA@9@(K(A)#˅53K#Cqq +=0%!5!5!!#3673%!5!&'733!!"&''67#jHL MbO4aE5RM.ӳ.<]$T=Ng@- 4/@4.nC.S02C2@BA@9@+  !<!5%!5!&'733!!"&''67#%.'#67'67!!6kk4aE5RM.ӳ.<]$T=(6DTHf!z+noo !!8T.ee9dp.nC.S02C2@BA@9@+G:;&?*t ?2AK;;+0?&'733!!"&''67#&''67!5!5#53&'73673#3#"4aE5RM.ӳ.<]$T=Q;]hD+!$'B-)h3"E0[.nC.S02C2@BA@9@*nR;VAAIBKVVM=SAA+()IOU&'733!!"&''67#%3'>7'67#"&53&'3:>77&'67"4aE5RM.ӳ.<]$T=KUf1MG FeoW)))]+JZ(Ap3 >[.nC.S02C2@BA@9@,ֽ?80tj3.E/>332 GtC>;-?#  %#_k!nk'Uo q+6(9%#!%!5!&'7&'733!!"&''675#'6$7!!(M2Jc3_M2Jc3_M.ӳ.<]$T=%>2&"-WR=+2AL1H2AL1H02A2@BA@9@4Y!2E*AC+0A&'733!!"&''67#73673!353#'>7#336=!53&4aE4ZM.ӳ.<]$T=|B-)h3"E0GYR6JMH$[.nC.Z02C2@BA@9@KVVM=SA%!Mj+7&L9 'AI+1 'I!5%!5!'&'7&'733!!"&''675#7#"/326=!#'67333&||2Jc3_M2Jc3_M.ӳ.<]$T=AbQ4B1UK( |M8h=C:aMNkTT:Q2AL1H2AL1H02A2@BA@9@%[v#zI"> '21UtuXo+ S35'&'733!!"&''67#%3#"/3267#7#'67#5'67#5!5#' 7!#&'F4aE5SM.ӳ.<]$T= 40@PZ'% srW/"% Ulv4 nW`R.nC.S02D2@BA@9@l_d#@ )Cja%6D&;G[>S?+= Y>\F>Tr+ R&'733!!"&''67#5!!67&'#"/32654''67&''67&''674aE4ZM.ӳ.<]$T=**wT2_D~0:@a%32dX#~| unes[.nC.Z02C2@BA@9@[BB 0;>[2cA 0c0d07mGA#L($~VBZ-+kIBEd'@2@>Y+, T3535#'&'7#3#3#"/326=####35#'3!!"&''67#53> 73mjt4aE5R3(,/MG %!<M.ӳ.<]$T=+"<S|{F  (J+F.nC.SyJ;KE"> %q%K@.02C2@BA@9@CT7AN+* BHN&'&'733!!"&''67#%!#"/326=!5!5#5'673&'#67%7&"]OO]4aE5SM.ӳ.<]$T=z ARA  .=<V|:;zo:>9w7dD;GiAMO?.nC.S02C2@BA@9@N?G$@ %?r0(EO}tXD &3r\|d)qu&y+ "&6#!%!5!'&'733!!"&''67#5!53&'73673M/|4aE4ZM.ӳ.<]$T=|-I.!u5J/w?.nC.Z02C2@BA@9@\AACE[\YRcSOC+"&*.2%#5!%!5!&'733!!"&''67#5!5!5!5!M- n4B^5PM.ӳ.<]$T=5I J&$!&"-<R&'733!!"&''67##'675#53533#67#"/326='>567!### 6C]7NMB.;Z%T969ppIkk:) 958N>*=(+ubHKv 5R*Sc+T02C1=A>@8< 7F BBDC%A " .<.B'K@ET+!(<!5!#!%&'7&'733!!"&''675#!!5!5#535#5!#3#|O2Jc3_M2Jc3_M.ӳ.<]$T=fAK2AL1H2AL1H02A2@BA@9@s??f<_==_<+1&,@35#35#%!3#&'#5'67+35!5!53&'733!!"&''67# X'ZOa+]H O4aE5SM.ӳ.<]$T=AIg\:YgkR!2Jc3_M2Jc3_y%UR>87I#=1"@]OA F31F$$$b, >GV3Xg^$}gJ.ӳ.<]$T= -|_I(@N+TO(F2AL1H2AL1Hbb>HcD?EE?D+5 !^3535#%&'733!!"&''67#7675#535!5!5#535333##67&'#"/326='67&4aE5SM.ӳ.<]$T= 4:91 N66;C:4MMP4.nC.S02D2@BA@9@*9C* $s>P?M?CC? 7A7H(K;F*>SkQ,?'giL8'3I+ 17L%#!%35##'>5!#"/3265#3#3!535#53%7&#533!!"&''67FO>AX%E%EC 5SR3[/}M8ɰ.:X$R8,:y{I E-H&C)C:S;;S:Q.S^.f C02C1=@?@9;+3%)/C#335'3673#3#3#3!'635#&'733!!"&''67#tG G"7pS4aE4ZM.ӳ.<]$T=soo R== =3@o?2^G2R02C2@BA@9@d ' ?+1 F )*1'U;,^dDDzEE5D.nC.Z02C2@BA@9@G?6 .W9p;@ 4<)W+8]&'733!!"&''67#53&'73673!67&'#"/32654''67&''67&''674aE4ZM.ӳ.<]$T= E#H+mU2a}a9B^%32dX#}{ wnks[.nC.Z02C2@BA@9@A;$/C2?5,A6>9Y1b<d/^%6kEA%G$"{WA[~-&nFAEe&E1?9S+ $N!5!67#%&'733!!"&''67##3##5#535#535#53&'#'>5!#3#3#=^"3[L5SM8ɰ.:X$R8}M{ [AX)"gμyW,65-~.fK.S02C1=@?@9; =mm=S9S;11lI E--5;S9+ Z35#!#3=#&'7%#37.''675##3!!"&''67##53!5+!+!#"/326=#67&}3[L5Sr;0 <VLG)8ɰ.:X$R8}' II4aA# KNNOO(.fK.SORN$ & > |A1=@?@9; C.^;H;G%> !q!?$Bd&'733!!"&''67#%673###"/326=#535367#5!3#3#"/32>5#'>5#53534aE5SML.;Z%V5`6E &7Qi:,H7(")3)B= g&*>+ TM[.nC.S02C1=A>@;7 b (C=;CxM$C)oCW$%AAD6&mAL"f C /Q6UA]+ IM5#35#35%35#35#7&#535!5!5+35#5#5!##3#!!!!"&''67#3Xʣi5SR3[/}%IA{A ɰ.:X$R8>>JNN5JNy.S^.f CB3a>=?===>aC1=@?@9;p>+  *.T!5!5#35#;5#%&'733!!"&''67##5!26=##5##5##'>=!!!#"/T\^__3[L5SM8ɰ.:X$R8}f_>^>\B B3' F -7*TYYYYY.fK.S02C1=@?@9; `==W;+J? +?J8ɰ.:X$R8}DfN<;_.fK.S.%U+B,|+C1=@?@9; +8 %@%!5%!5%!5!'&'733!!"&''67#53&'73673!!!#367}}}4aE4ZM.ӳ.<]$T= E#H1K XXTT8Q_.nC.Z02C2@BA@9@A;$/C2?5,A<"++139M67#!#5!5!5#535!53&'#5!5!5!533#!#3#3#&'733!!"&''67# PxPf4aE5SM.ӳ.<]$T=?CL6>QQ>H@8< C02K=N;55;N+;W\&'733!!"&''675#%!353!5335!5!5#'67'67&'767&'7#'&'767!!!!67!2Jc3_M.ӳ.<]$T=xKJc +? V^J-%7,85*858RN_&Jc3`KVDbqc1BI:2AL1H02A2@BA@9@ll=h4,!->(%!12%%@/4&AL1IBG^!@8< A D<=AAcEHD>b= = L_1 58?+? P]2jn%x GyVei^jck+5%9I!5!67&'#5'67+5!#&'733!!"&''67##!!5!5#53533w`5>117"D)oPh#hK y4aE5RM.ӳ.<]$T=I P\V(7*,**6LDE7=HU f.nC.S02C2@BA@9@DQ@@Q>FF"* $Qg35'35#&'733!!"&''67##%3#5#'>7##336=#53&'73673#3!#"/326=#'>5%4OJ5EMB.;Z%T9BBB 67=30 :@D;a$%>-2X.B#Q@8< ,Ri3,,SC@O,8AD7E<XACBA4I!B $l'F"1 2C5#!35#!5!!!!!!57&#533!!"&''67#!!5!5+5!538x!,5SR4a4MB.;Z%T9(P9KOvFFF5i\:: .S^.n C02C1=A>@8<(;;(99+,%+I&'733!!"&''67#!' &'%&'!353!5335!5!5!5!673!!"4aE5RM.ӳ.<]$T=U\!C  %B#KK1G)g[.nC.S02C2@BA@9@>2?L6MJ8$DFK?}}?U>n]`Z>U"@V67#3265#3#35#&'733&'#5!53!#3#"/##35#535##3!!"&''67##  x>4aE5S'/N ;*QAxBKB.;Z%T9S22B"# "rG9Jhh.nC.S0"8,>KK>-7UM'72 J9G*C1=A>@8< "< $(,159?TX3533#3!#35#535335#37#3735'5#;5##!%!5%!5!&'733!!"&''67##%#3$zKƪEKzsszz>szssM34aE5SMB.;Z%T9ssFF=**=F**::::::1999q<<1;6.nC.S02C1=A>@8< 9 )< &>DJPV5#;5#35%&'733!!"&''67##%#!5#'>5!53!#'6&'7?&&'7d4aE4ZM<ï.7[$R8}xgd"&=!Ng@0A0D$C$E4?4FlllU.nC.Z02C0==A@9; @:C,AIIAlk\]zSolV qQ NJI{mW&> $8n!5%'67#%#"&=#!=#3'35&'733!!"&''67#&'7#5!5!#35#53&'73673#3#3##"/326=!we+]ss3&On(M4aE4ZL0ӳ.<]$T=(LS}zH EGNaa B6MJ( O..20#F$&3e4WB! 00U.nC.Z02A2@BA@9@4=/*;/c0<28"/ -<0/;0A!< "(++  0p355#!5#;5#&'#&'733!!"&''67##267#".=!5#5'67#5367+535#5!#3!!#&'#5#)rj"rjj# 3[L5SM8ɰ.:X$R8}92K # DA9s[HNglPHͲ mKnQKJ,..OOOOO& .fK.S02C1=@?@9; G% "o6#B1735#.=35#5!#327>7#p[CzKdn5SR4ax[#1.;Z%T9 Rݠ.+ H+ + H 8(B>*"@5Mdd.S^.n@8< C%0A?d@8< 7 (\bh&'#!5!!5%&'733!!"&''67##'67&'767!5!67!#67&'##"/326=#5'67&'7:! );344 4aE5SMJ.;Z%T9OC;16801 # M 3!/6(<19@8< D*;<+,2146?#(#"?=216"A25-D)~8? l)54P"[>KB/;Q"A1W323267'67!7%&'7&'733!!"&''67#5#%"&='75#'65353!!!"'67&''67&''67#5!#67.'##"/32654'NNN6 0 !/?^1LQ0\B1UMB.;Z%T93uz0A,O ;! @8<20:#.6';  g4/D6'1!2!1!88:1#.(6%K+74a+;7+: G"- :X35#35#%67#%&'73>=!#3+5'3!!"&''67##%3##5#535#53&'#53533#3zzccw )4aE5S# ͩC6MB.;Z%T9KR %K U#ĤZ`gSo.nC.SGz/*@<6<02C1=A>@8< @87#'#"/326=#'>='673367#5!#"/##5#535#'673533# N233368333/?^1LQ0\B1UMB.;Z%T9 T)F2C8T%I FaZ9*4&lI9?'A1A__{8-&hh9chss39I2;4R22B02C1=A>@8<N88K8}G"A #SbB":.#w) >0#[9wCvi">AAu? \j ,???u+ EIM35#35##5!!5!'&'735'67+5!#67&'!!"&''67##35!/llllEKw4aE5R$d#mKE5-B1407+*r"ӳ.<]$T=llsTTTB.nC.SA3C8>i 24E? jC*: % C1=A>@8@87#5!53=#'#5!5+367!#!##"'_&%Kc'0sss/?^1LQ0\B1U%ub2GBt`;&9sMB.;Z%T9%@*I[&21qU,N P B.DE)  3- F'+39I2;4R22B7cB7 N#C1=A>@81=A>@8<Ss9FDOi`!LSPV UB KO 8[*E> > K-4 26&8T8T8n -26!!7!532>7#".5!#5#5!%!5!M 6pxb`N6.k`XPba2/ NO|' ''0 )+2"!(a7#'67' @ENR> (D3P6KV0ʃ $$1XI.,y3h&Z>@X?g3JRJD'3y\?A@X?1gBe: F tq:o9'=+'32654'67##!%33#3#3#'>7#5367#536=#538@ENRT 727!##6+'32654'67##!MC ( J(uNRD -D3P6K]0JE?%CAB7 BydjRJD'3y\?#&*A&'#"&'#67'67273#3275!+'32654'67##!KMSD;]YP (>N "  +NR= &D3P6KV0]] ڷ#BA CXAAtSBXENRR ;D2L8Lz3|| (D2P6KU0<H+*.j3k} << 3n<93JRJD'3x\?G"Q//E+:r>4:?-<PP> A+E?.1<A>d>5A o>A>Y &jRJD'3y\?/ W35#6755#+'32654'67##5&''675'67'767&'767675!#67&'7! Tb19DJ&1,p>-G8@ )W'T -:/4X"11;7<%3*'/U;>H2+{#' "4FSID.6oC(@B"C s?9f4C IGOu?$ Xlyh4%PP7A9C6E7!5!!5+'32654'67##3#!#5!#'67!535#53533#3675!gNR= &D3P6K7!'67%+'32654'67##!DffCff5} e #%9cK5G&NR= &D3P6KV09y9y==AA +}n' B_v#"/32>7!336=3353#'67#5'67'67#5'>7!#"/3267!336=3353#4'67##!+'326!,+ PH$: GD95(q+\ N6"'&k,W#,[I <.,*<.$ 6 H A9,+ X6Ml2RSZ< 'I:G5A"zr#P(+**0#Vq#8BqIAe 8AnH%6!$;>m!S$2##-)S3# v\?jRJD** 0=!5!!!3#5!#35##53+'32654'67##!3!535+5!# @`DIKrr>NR= &D3P6KV0jKYwZIT++QsjRJD'3y\?k==F#= 5g!=#3!5#"&=#'67#7354'67##!+'3265!=+35#53&'73673#3#3#.''>7b $X47 q'R ^CF6I;0DzNR. D2G F~GNQ*)QO~`44K% %:*-9m03!Il55x{\?iRJD' >:5>67.% !%>5:>2S?a==b?S2 ! #'>BFJ#533#535##!+3##5#535'35'35#+'32654'67##!%5#!5##3xAf>PFDKNR= &D3P6KV0Qpp_A\\<cBAAB\\7XjRJD'3y\?5aaaaXF/7!5!!5!!!#5!#37355#3%#!5#"&=#'>l\MMIp2lD*qKk*\>&i5AAtc44tttm-X(@uv;71]7 ,0B7!=#3!5#"&=#'>5#7#5!#3#5!#37357!##"/3265!9>#35!5*|sDHrF3j ?=qd4 __ᵙk9i+mBE*[mAAjY22jjj/FU) F +l?B;7!=#"&=#'>7#!=#335)!#5!#35!5!&'7367!lD*sMe*V@l2pMMF$!"Hcc'?lfn67-UQۑX+4bbb11pbA;.:B8C9245  KQ7!=#3!5#"&=#'>5#735"/326#'#5!#35#5!#367!7&9>#35!5q3 Pzs:1A!DGr{sX%I@T5#7#5!#3#5!#3735"'.5!5!5!#5#327>79>#35!5*|sDHrF34/7'M (!'*)K 1__ᵙk9i+mBE*[mAAjY22jjj)WDC@84FKE4' ,0FL7!=#3!5#"&=#'>5#7#5!#3#5!#3735##"/3265!5!537&9>#35!5+{sDGrF3Y(U4ib2**NDM=E:__ᵙk9i+mBE*[mAAjY22jjjBEZ,E0E #06<B>5#!5!#5!#3#5!#37355#3'#'!5#"&57&&'7'67zH0x#uK#KD_ń'x\?Y#l9!/ZB0C1N^.^N 4W?U30eg _@AAjY22jjjl5}:)Jf)HS0GB1CLK4KL'*' ,0T`73=#335#"&=#'>5#7#5!#3#5##37353265"#"&=#'67#535333###5302#*5-yogCFeE+O< 9W (MPMׄ__ᵙr2i+mBO&[gAAjY22jjj+',5! 9i>UAkkȀCC/2 *.U73=#335#"&=#'>5#7#5!#3!#37353267#"&='6=##3533#5#02#)5- xqfDdD+ %.F$aQ%B-emsHKI__ᵙr2i+mBO&[gAAj2jjjK# DYCx>`9 tt:9/   >c73=#335#"&=#'>5#735%'>=!3267#"&=767!5!&''!#35#5!#367&02#*5-d+T.38.%%A #"#0?8UP3:a\lvibFeyygzX^__ᵙr2i+mBO&[gjj c}*2(jcDY110M![KLmBB\E-=0PJ6.2jAAj-AV*5  H73=#335#"&=#'>5#735!3#3###'#5##35#5!#367!02#*5-d+N,J"CFeyogR#J f__ᵙr2i+mBO&[gjj7CE䑃#22jAAj~ -- /" *.2FJ73=#335#"&=#'>5#7#5!#3!#373535###53533533##=#02#*5-ytgFeE+=MCCMMDDM__ᵙr2i+mBO&[gAAj2jjj@BBO@B/? ,0RV73=#335#"&=#'>5#7#5!#3#5##37353#5##'67&'767#'6733502#*5-yygCFeE+LI)m>46-BUFY&NA {__ᵙr2i+mBO&[gAAjY22jjja66? G)cJ4/,M`eV>5#5##5!#367!.'#5!##5##3735#"&=#'3=#35!E8%"Q7 ?bUWx(qjXg>G0Dd^~ *LK=F]A*_($*.,?I "0mF] Z0C?4"Xy __AAj`{(#@zVG5E55t 22jjjm+f:9(#07X>5#5##5!#367'#5##3735#"&=#'3=#3737373#&'#&''>})qk\$ 6 (0>F]A*_($*.,I*"H+HH+(H/!s<60'#Xx __AAjŎ 22jjjm+e:92qtkih3y1G/6 *.n73=#335#"&=#'>5#7#5!#3!#3735##"/326=#535367#'67#5367#535#53533#3673#302#)5- xqfDdD+"G+RM$ 3*KQ!33~+3뫒Mqq(U9?.Jz$2?F__ᵙr2i+mBO&[gAAj2jjj@UM'A+N@:!'B1;&=':A>RR>nlhA-4=D/ /) $26MQ#!#5%3=#335#"&=#'>5#7#5!#3!#37353!535#'673533#5!AKL402#)5- xqfDdD+h#CG D TMP6w6__ᵙr2i+mBO&[gAAj2jjjCCPD 5+nnA /7  %-273=#335#"&=#'>5#7356&''6767#7.'3267#"&='>7!&''!#35#5!#3'76767&02#*5-d+2DDsn>/** I+-iAMAB 3 '&@ O& - 4aF 2]Yizg|FeyocH3-L)-wr)__ᵙr2i+mBO&[gjj58F. &f=MLSms %E)&) -P*){5)>cO=#?)LT"52jAAj#Y^VO C&'  F\>5#5#35#"&=#'3=#3#&'#'+#35#5!#367#5353!#&'#'67#5353y NO#(!gL9)5F%@!:FQeT\MU$jwFm-\0;)H/L.x*[bH-Xv __jjf+d94D1jS㦄02jAAjjDDB4?D /;  %37?]#5!%!5!3=#335#"&=#'>5#7#5!#3!#373553533##"/326=#535367!5!NM902#)5- xqfDdD+N A;BM <4JQ:eH__ᵙr2i+mBO&[gAAj2jjj@PP@?UK&A'P?2(==B* /1  S_73=#335#"&=#'>5#735'67#&''#5##35#5!#367#53533#&'33###5302#*5-d+1M 0.2!'&>'CFeytgefNR C<-78zNN̈́__ᵙr2i+mBO&[gjj4uAE7N3;1WI4b22jAAjAaaA?KJe9]B8?\BB /2#'.;@PTX3533#3!535#535335!5!#!#5%3=#335#"&=#'>5#7#5!#3#5##37355!yKRR\ \RRIKL002#*5-yygCFeE+Add????dl+C+__ᵙr2i+mBO&[gAAjY22jjjgg /  *.26;X73=#335#"&=#'>5#7#5!#3!#3735!5%!5!#!67#5!#3#;#"&'.2#*5+yogFeE+"""KH G$:˷9g-73__ᵙr2i+mBP&ZgAAj2jjjYY9T_(CF6 AAi@| C25#5##5!#3+#3735#"&=#'3=#3%5#'#3653#"/326=#'67+#35#53533nli eT\M:FQ<O#(!ElfgS42X8rO< ?iHWddMg)\!Xv __AAj2jjjf+d94k)V(D+,(LE /   %)-Z!5!35#3=#335#"&=#'>5#735%!!3!535#535#'!#35#5!#367#!#3#3#:"`C #.2#*5+d+D"Zܘy%+)Feyog?%9iZ*__ᵙr2i+mBP&Zgjja??b:SR;2jAAjUc{}Z5#5#35#"&=#'3=#35#5'+#35#5!#367&'767#536767&'#3#3267"#"&=#'67#536:[47W`PO #R"T#"*&4-5 # F J%X"$juzeɈU"!Yvbbjjf+d844S#/(@S0jAAj9H?5)18GCA;756#E@28A#FB4)A*.$C%l,*6 .HD;C" /F"'+aery%26367#.'32635#35!35'35#>5#5##5!#367+367!#67&'7#"&5#'+#3735#"&=#'3=#3>[V0jjjf+d84 '% (,2Fn~53#5'6!5%'>7#%#"&=#!=#3%35&'7&'7!5'67&'7#53&'7#'$733##"/26=!!!#5!#35!5!IINJn!|2]K|G*xP^5ui+2@4(&-2vD-%:{9K>h('r8_+{S))9.I ,2@=SS#F)aXH V;ZMM>co"=( ))21 &!%&0=Q1 ))PFJL6*(5 ($8 %8-5)98%991&"9J-:6-0)%%m)8 (5:>MQ^ekq67&''675'675'67#533'675'67#5!#5&'%>5#5##5!#3+#3735#"&=#'3=#3'$'$m6VnUDZoMF[N7jA ]EIbN7{F3?dz]Y "ifbSPKR=:04?7/O=@0A'JS YwbbAAj0jjjf+d84i8f?:A /* '+T67#67#!5%'>7#%#"&=#!=#3%355346=#'!!!#3#3#&''67'67&'7#53'>=33267#"&=#!&'!!#5!#35!5!!9J<(3 |2]K|G*xP^5uH -X_ it`!L&P-2W+V#S>>2+E 5*% A#,>o1,o,ALBdcW2MM"/&'))21 &!%&0=Q1 )) /#45.#/*0??0+9 &512&b )+! H )@59% 9&!b)%%m)8(@(/37;?CGKQ^bp>5#5##5!#3+#3735#"&=#'3=#3%5#;5#!3=#37#3735!5!67#3533533!#5!53&'#5!#3| "ikgS5#5##5!#3+#3735#"&=#'3=#353533&'5#'675'67#535#535#535'6733533#3#3#67.'6_ "ifbS;9yNiixx37W(CCMvvdd$7)1,;9Na"%S== YwbbAAj0jjjf+d84R>DD>.586.===3? f$D.H;=6=698';5===6=6=;@1/5*839!>&i,(((/5;AGpv|>5#5##5!#3+#3735#"&=#'3=#3%35+3&'35#'67#3!535#535+535#535#5 73#3+3#677&'7&'7&'7| "ifbS(/D["B&c&2=6"* YwbbAAj0jjjf+d8497>/m@10<;;.6+(5.<(=45(+6][iRGu `^SgrIY\ eQ (9 '+8?GKO35#735#67#%>5#5##5!#3+#3735#"&=#'3=#353533#3%#3'675'67#535#535#535+53#35#53#3#3#3#.'#67g v0* "ifbS d@%5:/304''''403/:'14/=#_<2(# (&'%'67&'#'67!5!#5 %!!=1B2<-NAK,%N%:`` `_%mw!qnvAAC DAB!C(  - %!&'7&'767%3!!&'#'67!5!r:6E14D41G,,F1M/H/RP)P)ACAqWWDdLTy#PCv>zDz>vC#39?'>5!#./!5!3'673#&'#'67#7&67>:9;8110Owrd8Jff787J4]-n/ =*<)3 >8]7a7TC >+<?/%oeg}?c_ybalhk/ 8>D#3533#5'35+35#37353'673#&'#'67#7&67-HKJwwwxxxKw̪d8Jff787J4]-n/ =*<)3 >8@ԭ,@A ߉ >+<?/%oeg}?c_ybalhk# Y_e5#!5#;5#67#%53&'#567335#535+5!#3#3#3#3##5#535#&'#'67#537&67,cdbb)$! 7:^6CE-S%P6"/F+I*_-{7I : 8""9$qfffff2AA>s;>:9# 735#35#!35'35#'!5#5 %!!!!!!!!5!5!5!5+!5!y9 y;YYK;FFFF3FB ?5AG>9<=HAAH=<494 N3=#;5##3?67!5!3'67##"/3265##3#67'675#535+!3&gggdddd/92D;JT$.B;=%A&ZM! ]S]ngFV9032IWBBwZ&Br^'VSV(D+?%]>>5D >]Y < %)-15#5!%!5%!5!35#!!!!5!5!5!5+5!%5#!35#%5!35#Pr>> =aaPs=*\z([----W6264AA462/999<<6#% *?&'67&''67!!5!!5!5#5!#!!A79C3?>.C+͹XYY%Ss jg%_a Zn>oo>nBB0AAAA  8>D&'%##"/3265!5!#67'67#535#5'673.'#7&67`LAH=o#HBqg<" fL rW0r`J^b<"!="&<*]BLO?PV( F +lFA@C#C9Az+$KToX=B 5#'>7#536533#"'5#67'67#535#5'673.'#7&67RJPLB8rŕn'eCzQn]ӝN. F A?J+C2Az-!JTpa?= 5zMxa0cJ [U)&%+?%3!53&'735!5!5!5!!!!36'67?&'67&'767$'C!'*$C2.jkTkl3*9*Ś,WHA&'#67'67#535#5'673.'#7&67###533`LAHYfL rW0r`J^b<"!="&<*.NN]BLO?A@C#C9Az+$KToX=B "C9Az)"KYjYC79zMxa1cJ @p.f_-DF;"5&,2NT&'#67'67#535#5'673.'#7&67"/32>7!'>7!7&RJPLBA@B$C8Az-!JTpa?= 5zMxa0cJ [U F $ֆ^0Gd @-^6 "   28>!#!#5&'!#67'67#535#5'673.'#7&67ZKMi`LAHqfL rW0r`J^b<"!="&<*?+?]BLO?eaA@C#C9Az+$KToX=B 33#67'67#535#5'673&'#7&67QF8HV?(%FsJSBƽ O]c(b[IRU {;;':&]9ULlv7G@VACH(C3Az. JMw^5@=zMxa/q; @p" &,2IO&'#67'67#535#5'673.'#7&6776!5!&''67&?&RJPLBA?J+C2Az-!JTpa?= 5zMxa0cJ [UDDqKBNuzIBEy(Y_'[-6Z`f%"/32>5#3267#".5'7537537%#67'67#535#5'673&'!#7&67a6  zIm+zq) J <71BH8 U aKmI.QE ]L`0b[INU]L8C s;<":"D%#dB*36;@  # DϹ ι9)WA@K(C4Az.&JMwT:@CVLB?zMxo>cJMb  2QW]6#%&''>7&'765#5!&'#"/3267&'#67'67#535#5'673#7&67xYs D<3A28LXR>8*:  (% 04n[/v_]cR* d:_(eMEEV)s>?"?'o[6@s=QJDY0F[y.WKqCmD ;G# F 4Q3UwA?@ C;Az)"KVmYC7/zMxsAcJcJMb"33U[a&''67!#"/3267&''676767&'76!#67'67#535#5'673.'#7&67MPzMxa1cJ R^' !EKQ2653#"/'677&>7#67'67#535#5'673&'3#7&67j M8\@L FQNFH+F-8?@{R* d:_hJEHb-]@1Cd:;"9$3+FT+E! һ!A?@ C;Az)KYjUI6LRGF?zMxo>cJGi  =CI3'3#&'53#53#5!3#3#67'67#535#5'673#7&67@#D<3Am#RY X]fB: YE_(eMEEV)s>?"?'WHE%d=QJDnDHE%DEDA?H'C6Az)"KVmYC7/zMxsAcJb:A;A@B$C8Az.#JTp[;D 7zMxa0cJ Ke  =CI!5!%!&'#676!#.'#'67'67#535#5'673&'#7&675'SQF8F@:40Q{t:9; \Pc(b[IRU {;;':&9ULA/7Q]7'$G'C2Az. JMw^5@=zMxa/q; @p"/MSY!&'!#"/326=###'#67'67#535#5'673&'!673&'!5'>7#7&675VPL5(C7LE\ ^Wl0l]ISTUVDJ%!!&'35#53533#3#5!##67'67#535#5'673.'#7&67CJB8>FPNM0\'d>b(aTFJWs::"9"4;SN@DD'??ABA#C8Az*&KQsW;H ;zK{a0cJ R^  ;AG#!#5##33#3%#67'67#535#5'673&'!#7&67HK||||F|||MQE ]L`0b[IO\gK8C r;<":"6R6!Ax!7CA@K(C4Az.&JMwY;@D[LB?zMxo>cJMb"-&,2X!&'#67'67#535#5'673.'#7&67753=#'673533#3#.''67#UJPLA?J+C2Az,$JTp[;=7zMxa0cJ KeE^T# !>{{CEiF+ca-Fm7Y_e#67'67#535#5'67353533#23:>7#".53675!#5&'!#7&67QE ]L`0b[IBCO: (")&  K 5.+5;5LK]J8C r;<":"A@K(C4Az.&JMwJ1.dd.{A;,1 8@C"  #'# cJMb6OU[#67'67#535#5'67353533!6767&'7.''6767&'767#&'3#7&67v2; bKnhJEGWNFTI][B/'CW:E "=$A?D&C3Az)KYjSB3xxCxn^*" mI  ) DgRx1,TX/LRGF?zMxo>cJGiG 28>p332>7!35#67'67#535#5'673&'!#7&67%#".5'67!#"/#3:>7.֊QE ]L`0b[IO\gK8C r;<":"\ <7104;  =d0Ko""1N)|&!/ ?05%AZA@K(C4Az.&JMwY;@D[LB?zMxo>cJMb55DJ3&'%5!#!#5##'6#67'67#535#5'673.'#7&67eQMPABMMDDMMRs;<":"]7WLBABG)C5Az.$JMwR2BT@@8zMxo>cJMbP%J\#67'67&'3#7&6753'>7'67#535#5'673567676"/3265##3po/=$%IB1Ca998Go*Y_Zf VG\(eMDBOij/:'6 2rFA8,9XGF?zMxa2Je XY?>%^N1'3@ C:Az,&KVmR9B4A** ;F,WL&"  >DJ#!#5&'%'677&!#67'67#535#5'673.'#7&67GIM]MPi8yD8i?n1@Z tAk(l]IZW<<"<"6A6t9ULBէ&Ȟ& ~A@B$C8Az.#JTp[;D 7zMxa0cJ Ke?3W]c%27#"&''67&#67'673&533&'73#67#67'67#535#5'673&'!#7&67w = D E;I*V=639!+Jd)7/-" "6 C/Q -[& WR`0b[IQWaM8C s;<":"ONV99?h!%4?w@BH)M$*2"8FCҥߙ/FA@A%C7Az.&JMw\7@A]LB?zMxo>cJMb'#)M#53533#&'3##5#53'67&67'67#535#5'673&'!#3#67LۿA1wCxxLH9;<":" ]L`0b[IQWaM8C sS1 8CCGAA/9.Mxo>cJMbC=Az.&JMw\7@A]LB?zA@:"3 $)KQW%##'67!#"/326!3'5#&'#67'67#535#5'673.'#7&67ȄI8X%I G`njFGMPK3Dwj)|`) aM8C s;;#:"Dߢh4*<%C4Az. JMwW99x @4DFA߱8A]LB?zMxa/fF Ke"9RX^&''676767&'#675!5#'673533#3##5!'67#535#5'673&'!#7&67BQ?; .76I(9m(EH'@O(F NN \M`0b[IQWaM8C s;<":"q|+2Ddek @)A/@;$y&7||AB-N,C0Az.&JMw\7@A]LB?zMxo>cJMb  +17R!&'!5%!5!#67'67#535#5'673#7&67!#67.'#67'67#UJ<ls@Z hMl0l]IX^ <<";&f%L>2GSDb(e"H^S d]>PLzz35zMxa0cJ @pZUF=K*W?d:>:?2A;_ek3'>733267"#"&5#67'67#535#5'67353533!67&'7&''6767#&'!#7&67Kfi3]ZK 0F  I#ـQE ]L`0b[ICCP++_;@QDA43(`N8C s;<":"\:71 1+,;% /A@K(C4Az.&JMwF-+ccBv^^{+#Cko?cJMb  DJP%#!'35#'5!#67'67#535#5'6735!#"/3265!#&'3#7&67rEzz^1?{R* d:_eMEEU 2]RI]@1Cd:;"9$qP<֥??A?@ C;Az)KVmQAD*C &$LRGF?zMxo>cJGi"-2V\b%#"&5#'6#535#'673533#3#326#67'67#535#5'673&'!#7&67CQ,F,wo"(CP$G YMЭ)((LB \M`0b[IQWaM8C s;<":"2=< %I9q9_E_C#41BE*1pA@N,C0Az.&JMw\7@A]LB?zMxo>cJMb9 flr35#3=#'#67'67#535#5'6735353!!3#!#"/3267#.''>7#'6735#535#&'3#7&67ym|oH+ VG\(hJD7?M8& s `')f t} I# -IB1Ca998ZX-CA?@ C:Az,&KYjD3@PPAHXbX<?W*A$OP#A)V8Z=H 69XGF?zMxa2Je XY'JPV#67>7#535#'673533#3#&'#''67#535#5'673&'3#7&67{2GT#z 1?Q$F eNERN0I XH_hJEHb-]@1Cd:;":!A.?LD[P# 8*uuCDDqHL3=9$B8Az)KYjUI6LRGF?zMxo>cJQ_"?JPV35&'#67'67#535#5'6736733#5##'67&'767#/#7&67lLMP7%7&6767=&'&'3#3#67'67#535#5'673.'73'>7'%'%Q-IG8@cJ *71AO_,LRGF?zA?@ C;Az)KYjLCsl1zD<6z1$\'d>b(aTFDJjuKIg_s::&9"&W;SN@ABA#C8Az*&KQsN70IC#Cm55C A ;zK{a0n? R^ 1 &JPV#'67/67%5!##"/3265#5#67'67#535#5'673&'!#7&67M(,V8$X9hK'N3EA/$AX gOp 6hdJZWbS>IpAB"A.!L]+?_AVz(IDDDXT*D*D}AA? C:Az, *FMw[;=EYLB?zMxo=cJXW"7bhn#67'67#535#5'6737<537&'777767327#"''67&''7&''7&5&'!#7&67LB \M`0b[I>=LD@!QU,  C84ER5=IgBɉ aM8C s;<":"A@N,C0Az.&JMwF.$- F > /A,B?1DA;31A*N;83V0A3R9XD,JAd A]LB?zMxo>cJMb n#5&'3#367&67 7!#&'#5!3#"/3267#'67#'67#5'#67'67#535#5'67335#KPC8C_yq<;<";!2 kzS!\JA[e42;VR1&"MH fwa r aQE ]L`0b[IHL]f9>ZLB?z!FMxo>cJQ_y-= f>bN:QuRB"J. C Dn?iC1BV6*@K(C4Az.&JMw\75`7 IOb'67&'%#67'67#535#5'67353533#.''>5#&'3#7&6767&''4LC <8,,6NoH+ VG\(hJD9DP#]%'b*IB1Ca996NB5*2'$5#5 SMLm4UJ:iA?@ C:Az,&KYjG5,gg?=D+]^*D<~89XGF?zMxa2Je GNBQ0;9bJ)>=6 $@_ek67!&''67&''67!&'##5#535#535#53533#3##67'67#535#5'673#7&67V: :D<3A'k08..,yKI +Cb`sn{NNR* d:_(eMEEV)s>?"?'@3B 8=QJD>!3!41$7a @YA0!@+>BAxxANDJi35'35#675#3&'73676#536533#"/32>=#'67'>7&'7'6'67#535#5'673#3#67ooooJ%o>4,1 GJF ,H8 [ GH< # 977 H?~~PWAD=L"dnnN Ѭ>su? ]ci35'35##3=#'#67'67#535#5'67353533&'73#3#"/326=##5##35#&'3#7&67͗Jf}R* d:_eMEJJ  ^I1Cb>?"?'T:xxxA?@ C;Az)KVmF9>SS> ,4AZS(@(nZ @J[GF?zMxsAcJ7'!5!#67'67#535#5'673&'!#7&67Ic)G'!b5#H0q ')F Q'Peu.gV EnQE ]L`0b[II_`N8Cu<<#;&=O5OKQLUCI 6.1>% A!=>4?ϧA@K(C4Az.&JMwN7DcJGi 7IOUY%!5!#33#5!#35#'67'67#535#5'67353!#3%#676=&'3#7&67!5!KfMMM HH  d:_hJEG[L…?7-%]@1Cd:;"9$l TdCp55_pAM%$1C;Az)KYjRFdC(A̿-LRGF?zMxo>cJGimA#)y%&'''67673'6767#3&'&''67#535#5'6735353!##"/326=#3267#"&535!#5#3#6725#76a(A  ~+h%Y5j>4,:95 T3~~PWAD8HP#19/o5>D%!b*GH`iiN 5/#*)I?bK 4>F8Cfh<6/#Az'JTmP@LeeFA !, + .77 Bdw.0zA  V\b#353#5##33#53&'73673#67'67#535#5'6735!#"/3265!#&'3#7&67_=<"3#> X {R* d:_hJEEU 2]RuH]@1Cd:;"9$/dtARXdZ\fYXRA?@ C;Az)KYjQAD*C &$LRGF?zMxo>cJGi1 c%!5%!5!7&67"/326=!#5'67#535#5'67353533#3#3!535#535#&'!#3#67!YYQ:;&9%N\$ K aIf"`\I5BPbM:@xxx?M'DD9D!K{o>n? [UC0xC(C4Az*JKy<+5CC>A:A<?zAB CIO%5#35#5!#3#3!535#5##33#67'67#535#5'673&'3#7&67+Pabb}R* d:_eMEK\ ^I1Cb>?"?' BBBBBA?@ C;Az)KVmXC@J[GF?zMxsAcJA>yAAy>?@ C:Az,&KVmC3Q9XGF?z>a Mxa2Je XY/ Fekq&'&'35'35#%&'#5'67673##5##"/326=#535#53'#67'67#535#5'673#7&67j+'-9I :򂂂D<3A.. 5*'--J!?.SK  R* d:_(eMEEV)s>?"?'aE 3;'UI>rr?k{=QJD{8^^GB _g?+VP*C)UcJMb 2I`fl3&'767#5!&''67&?67#5!&''67&767#5!&''67&?67#5!&''67&%&'7'6'67#535#5'673#3#67r>4,,41%(2$4L%B1>A28%H5ER>,6K6A?@ C;Az)KVmG5'llllAllll4cJGi  7V\b!5!!5!'&''67#'67+!!!"/32675#'>7##67'67#535#5'673#7&67@@I=7?a0wRX592q@!Kc0TM>$! P0G$P&}9R g9a(iPEH\-}::"9"s[`%=QO?0^|B.1Wyq'*1;As`;04VEoA@@#C;Az& KSpWD61zMxa0cJ R^1 V\b35#35#!#3=##67'67#535#5'6735!533#3+&'#5'67+35#&'3#7&67薖v{R* d:_hJE6>KK^"_K["VI-]@1Cd:;"9$^cc^^A?@ C6Az)KYj?4+YY??^@Xr^@kuo?6LRGF?zMxo>cJGi EKQ%35##35#53533#3!#67'67#535#5'6735!#5!#&'3#7&67d@cFb5i}R* d:_hJEGXHF^I1Cb>?"?'-=ss=AHA?@ C;Az)KYjRC--0J[GF?zMxsAcJggAC++C(C4Az*JKyG.#dddd???32]P>?zK{a0cJ @p  `f7&673#67&'#"/326='67'67#535#5'673&'!#3#67675#5!5!5!5!57&E;<":"E)934:AET2Q#FNHj.. ]L`0b[IQWaM8C sQE oVyT=2%:##Mxo>cJMbARH:Q+\@hE8pX/?/^u_9E'C4Az.&JMw\7@A]LB?zA:SbAc=_ADMK$G2 /3NTh3&'&'7'6'67#535#5'673#3#675!27#".'!5!&533#&'7'6736733#67m>4,:977 H?~~PWAD=L"dnnN <3/% gI )"3237/ ,H*'KffN:]AAner"FBP}UB_YL:'?HCt қBB@1PV\#!##"/326='!5!7&#6767'67'67#535#5'67353533!&'!#7&67Kվ:,AA }=;QC:CPKK >%>5_7 ]L`0b[I?EN`N8C s;<":"@T+D+>oAAcJMb  )MSY535!;5##!'35##"/3265!#3!3#67'67#535#5'673&'3#7&67}٫||QEyyM<aE# pH27{R* d:_hJEHb-]@1Cd:;"9$ŶXxCG=V)D+F4 O!A?@ C;Az)KYjUI6LRGF?zMxo>cJGiA 6M_ek5#;5#357#3#!5#'67'67#535#5'67353535!&''67&'767%#676=&'3#7&675KMMMK(,B d:_hJEFVN7bSrgcoVR.=2NO:,{2G$]@1Cd:;"9$SUUUiiAU?hk %7C;Az)KYjRA\XX??nM-A$=>#A0@M%Q:9\A&LRGF?zMxo>cJGi  +U[a#53%5#!5#5!'67#5!!!#"/32>7!#67'67#535#5'67353+5&'3#7&67D_p_iK$\* i !#<^C7 }R* d:_hJEKWH^I1Cb>?"?'9yyyy==zcAA +o$ B;E=\A?@ C;Az)KYjX@\6J[GF?zMxsAcJ7#7!5%!5%!5!7&%#3267#"&=#'!!##'6753#&'3#3#67'67#535#5'6735353!533#381l*)99t #'?  K)3AB+#K$8-N5-IB1CayyH+ VG\(eMD6?BMLRR\gJ?MMMM7NMxaK\=$&% +sPg#,LA6qS7 UZ V 69XGF?zA?@ C:Az,&KVmC35]]]]?&4bv|#"&=#'>=3326767#5!&''67&3#3#67#5'67#535#5'673567#67'>7&'3#7&678 +F%,2$ ?1-!,AAT[KLy!oI:BLJJL d:_hJEFVkrX{:3 "]@1Cd:;"9$v3.2 dy.-&ofD"KB@`BBUG3C7PN9=2NK]=>Aϼ9@ C;Az)KYjQCF9@.A='LRGF?zMxo>cJGi  "V\b35353#535767#5!&''67&%#67'67#535#5'6735;#3#3##&'3#7&67|j>/3"'HEMUNIi%iB;{R* d:_hJEFRKK]@1Cd:;"9$ȸBAMO?J_BB_I*B-TJ7;4GNA?@ C;Az)KYjR?{zAC"LRGF?zMxo>cJGiF+JPV!5!!5!#3673%&'!!5!5#535#5!#3##67'67#535#5'673#7&67UUONI<1CR xX% FX_hJE>V'n:;"9$NX^g'9 2%=PGFAAb:Z>>Z:;A @= C cJGi#?EKj3&''6=367'&'#67'&'#'67#535'67&'7'6'67#535#5'673#3#67s;2/&USG 0A0=w(g16sW=& @ )9"30$H4-P `n*8 ;7X877I K=P!TCD9I#\nnN ]=PPEP]PzEgCp#D2pM7mBC?+= Nw]g O`b< BAAz'JRoRE83zA / #BRq{3&'3&'75#75&%&'7'6'67#535#5'673#3#67'67#5!&'!5&'#"/326=&'#!67&'6r>4,x7I<"21"21$0v965I T3~~PWAD=L%agg>-za S;=+C&Az'JTmUB:1zA?G`Ae>2,('1/ x T&A&U.3)Gq x }- 7_e5##3%3&'767#567#533;#"&''67&''67&3##5#535#535#535#535#535333##3#%&''67#535#5'673#3#67cWWWW>4,>wC/v+;o *+rs2+=8!"73KK))b95 H?~~PWAD=L&`__N fNN?TQ+NwqT>BAAz'JTmUB;0zA N$*.t3&'65#3#67%5###3#%&'7'65373#67327#"''67&!'67'67#535#5'6735!&533&r>4,"agg':'XXUE<965g9 %-?!O  CG5Zv+X&:@ H?~~PWAD8NODK!]B^NwmW R^TAA64JC̔mÎ5M!fu&};6J&4<C=Az'JTmPEE#II#@ # =\bh35'5#;5#35#&'%'$73#3+3#!!5!5#535+35#535#67'67#535#5'673#7&67Ќڕ㌌㕕~I<1C+E XIGsxX% FX_eMEAY-n:;"9$LFF3FFFF=PGFRA+AM=8<=HAAH=<48=FA @= C cJGi B 15;A~3&'#3735'5#;5#'5##3#6767#535#535#5;5#&'7'673673#33##&'###5'67'67#535#5'67353&r>4,hhHehee&`__18A1ewshh6977EG׫11K~MKhLDo* @I~~PWAD49}]AS73%#67'67#535#5'67353533#5!#5&'3#7&67GEAa8xO$Ld*e% LM) RAG|,oH+ VG\(hJD=DNGYFIB1Ca998H_[h7^q|/~nxD66D;WQA?@ C:Az,&KYjL4GddΏ^9XGF?zMxa2Je XY 1 5;RX^%!5%!5%!5!67#67'67#535#5'673&'!#7&3533#&'7#'67+7&67@@@#;&9QE ]L`0b[IL\`N8C s<<iLǶ]$akYTHMC,(D#=1"D6SSQQ6MfF @p#A@K(C4Az.&JMwV6C<^LB?zMxay+cJGi= !'Z`%35#535#3&'!!#3673!&'7'6'67#535#5'673#353;#"&''67###67&'7~>4,&Is L977L H?~~PWAD=L&`]m|"(@&:)FiN p4=>87υ2BAAz'JTmUB;0z%G1C-8;;@4:*# f]Yj 1 ,KQW%!5!67#&'%3!5335335!53&'#5!#3#67'67#535#5'673#7&67HI<1CKKMF76xX% FX_eMEAY-n:;"9$k?U>VU=PGFÄAABOENFBA @= C cJGi 2 6<BJ[!5!#5!35##!#67'67#535#5'673&'3#7&6753533#!#"/26=!I擓BIyH+ VG\(eMDBW-IB1Ca997>MH0CH;0]`+A?@ C:Az,&KVmR?69XGF?zMxa2UZ cN&CHHCW(E- ' $FKQWv35'35'35##3!!&'7#'63&'".=3673267"!!#%&'7'6'67#535#5'673#3#67Q.Kv#vp l>4,AO?M "GB9I %IAKh977L H?~~PWAD=L&`iiN "66e77.6j>3B=F93+N1?,GBAAz'JTmUB;0zA 1 Z`!5%!5%!5!67#675!#&'7#'67#'67#535#5'67353533#3!#35#&'!#7&666#;&9A85Y%dp YS ]L`0b[I:?NK`N8C s<<WAAs??3>WfF @p#A4,HHHH977L T3~~PWAD=L&iB4Go)`iiN My*uOdr2FO"gA4 0R+,Nx* ]Az'JTmUB;Nd/lU:+zA nZ=XkB>>BB@Lb+13*;@qX9 0EPrx~3&'676##3#3#3#"/32>5#'67'67#535#5'6735353'673#53=#'673#3#&''>7%&'7'6u;2/R<,5 "[mm i$6* P 95A{ K=P!WAD0AfLd;[/D ("!#:@%A Vd_U-E)_4+C_b977]=PP{63zAhDs2q D?W#3B>Az'JTmFA2\){<CSD>8%d ,'CDJA7IqBVSNw]g \ST 1 Ru{35#35#75##33&'&''67#535#5'673#33;#"&''675#'675#67&'753533#3#3##5#535+35#&'7hZZZZ[[[[>4,:95 H?~~PWAD=L&`im{")>&7*E7)`N |LK(L=MMWG'CJ)KCX`6XX6`BAAz'JTmUB;0z>G1C,7::@39[GbK 0 ?37221EE?DH>bb>HcD:0829@7;_ek67#265#3#3##35#535##3&'#53533#3#"/'5##67'67#535#5'673&'3#7&67 iAkFlNj5MFL}R* d:_eMEK\ ^I1Cb>?"?'?86D* MUU>86R)Ap>A?@ C;Az)KVmXC@J[GF?zMxsAcJ4,^KK  N977L T3~~PWAD7JJFFGA09&B,/&B9H$GB/B'F`iiN UQQAz'JTmMCz=QQ*;[pZNPiAAdS:<7X7,99200zA   +U[f!5!!5!5#!5#;5#67!&''67&'7#5!#67'67#535#5'6735!!#5&'3#7&675!!#XX;hggggACc_:9VEp]0nR* d:_hJEI^]K*]@1Cd:;&5DE32PPPPP0GJ=75=!5@!==X= A?@ C;Az)KYjVFy3LRGF?zMxo>n? \L<159]ou{67##!#327>7#"'.=#'>7'!5%!5!'#67'67#535#5'673&'!#753&'#53533#37&67 #eM֎  C  /P&df ;;rQE ]L`0b[II_aM8C s!BOHw<<#;&54=C.i1ϊ ",$363(E9 [EII4B A@K(C4Az.&JMwS4=@VV@98>Mxa/fF @p 6 #)/3&'5#5##35#735#5353#367#%&'7'65367+535+5##3#67'67#535#5'67335;53;3#+3+!#&''67&''67p@3,㖖N1!P877PkGK.annN  W1P!TCE7A KMK22KK^Z0Mhm(gp1KA=2]?NLr33:::3f333+=# Nw]g R^b8=))c 0zA@C"C;Az'JRoN;f99f>c)=M6$/;A$FA+5797^dj3&'3!535#535#3#67'675#535#535#53533#!#3#:>7#".=#'>7#5!#&'7'6'67#535#5'673#3#67p@3,gh____9-w-4\\^NgVV#J $%#+.% W |wdd Bp877L W1P!TCE?I%annN ]?NL;;S9DD9Y 9;e9D=O5A0W%KK 7.X؃ (>1#;=:waaaa7]]]-Nw]gAC >Az'JRoW@;0zA]DOAVMI,,V /a9bKJXA>=KEA-? W D !'-3|&'!5!!53&'#367&'67%7&&'7'6'67#535#5'673767#5367!#67&'##"/326=#5'#67A$'=  ]@3,a_D;/81vK,Rx(hV*W877L W1P!TCE?I!:() K (2#=08CQ3.7b=* 0.^.@YY\VORR#?NLP0z/E899\/e=7EX6WNw]g R^bT(C4Az'JRoW@<.;=A(+ +AA892!D;M3H"+ە@ B ".)!   (Y_e355#35#;5#!5%!5!3##5#535+!##67'67#535#5'67335#5!#3!#5&'3#7&67YYYXXQQNK}6A d:_eMEDV..BVD1Ci:;"9$77`````??18?mm?:AB=C;Az)KVmM=7??7̱%BRGF?zMxo>cJGi < #'+/QW]o3&'67##!#3#!!5!5#535735+3=#3735%#67'67#535#5'673.'#7&6753&'#53533#3vP91,!lGNԆN6xX% FX_eMEHb- n:;"9$4HNM]DIGk67/>x!6>:AA:>68???q==== A @= C cJGi|=>/?XX??.=  Ygms&'!5!67##367&'.%3&'75!6767&'#5'#67'67#535#5'67376753&'#5!#37&678+(='nrD6#. P911!7+<7+71=0;WINc [X% FX_eMEBT"/--#-0!:;"9$K\URv9R2YV;z7?'.# DIG-A:371$?A(:=$F?3,AAY%'`F @= C cJGi /5;Ae3535#5##3#67'67#535#5'673&'3#7&67'67".=33:>47&'7&'7&'7!535#535#5!#3#3!}ZZ}6A d:_eMEL[-VD1Ci:;"9$c?6C()) J< AA1*A-/DD&)G:;ww'AB=C;Az)KVmU?6BRGF?zMxo>cJGi"Xu # 6 !!=#e;J),( F2+?ULAALU?4;6 pv|#5!'35#%3&'7&27#"''67''67#535#5'673#3#676767>767&'!535#53533#3&533#67&'7&'7'6H ؏;2/> ? <GF+;V8A1 K=P!TCD9I#\nnN V]*D / ! }}K||J-;0E#509:,8998e=PPKLLFLD*/6J$@9BAAz'JRoRE83zA BMc<@?&(;VcJGi @3CLX`3&'35#%&'7'6'67#535#5'673#3#673!535#53533'67!5!!535#5!##5##&'726=#535!5!#3##"/s;2/\\877I K=P!TCD9I#\nnN [S.>d_F\GV(776'$$]722.7]=PPzlNw]g O`b< BAAz'JRoRE83zA p1441:77:!'%885W771331 -E@$<@ !V81::18m6"0 ,  &,fjn3&'35#5#5!3!535#35#;5#%&'7'6'67#535#5'6735!#3673#'#3###3#67#353r>4,NN-8TUTTy977L T3~~PWAD7L/[ED"F  *4EdF `iiN NN]Az'JTmME|=J_v ./CQE4,UaaaHM!?@8,?1977L H?~~PWAD=L&`]m~!+?&:,FiN G}v9]BAAz'JTmUB;0z%G1C.:?:@5>%# i( , $*0&'!&'!5%!5%!5!%3&'#3'67#5&'7'6'67#535#5'673367#536533#3#3'67#5367#536533#3#&'#&'7#'67+'#67I(4 "6aaa>4,`f AA977L T3~~PWAD=L PY]G`f{P0"#E9F]^bGv{y0S!S!jZYJK iN 4+4+'75)77i7737Az'JTmUB"=$(=!<**'%#<"=))=*7367".5332>5&'7&'77&'7&'7%&'7'6'67#535#5'673#3#67I:;+T#!+<BAR]C9B4`>4,D2G)27)F7B3H)27)F7B3G)27)E7 0F<4 bP % FA? b!E 3o76782;78764:2;4:5977L H?~~PWAD=L&`iiN M!߮"" 1#1  0GBAAz'JTmUB;0zA = (-3935'35#75&'%&'6&'%#3367.'&'&'7'6'67#535#5'673767675367367677&''#!#&'#5'67#535+&''#67Zkkkkr( "*#z* ab( $;*-5877M K=P!TCD'3 5$$&$E K R 5+ &4&(8<[^N^'_"8XN pp>e 5 V][ r A#!][ >z%8B LCIL@Nw]g O`b>B4,01b&+@ T3~~PWAD=L&`iiD#!O $>7utt%-9778;G  )%)14_1111'1nnnnnAz'JTmUB;0zAҒ.:*< %! K1??i6NwmW R^b 7 "&,c%5#5##367#535#3#%3&'5#!5#&'767+535#53533533#3#3#3#3#3!#''6'67#535#5'673#3#67 ?R_ b@3,yyo88R:HhNNz 'M 7Q W1P!TCE?I%ass>5<>3@Y 55(?NLggggNw]g (O^5?<<<3@=,7@*FbAC >Az'JRoW@;0zA   !&+1!5%!5!675!35'35#675#%35'35#675#3&'&''67#535#5'673#3!5'263#5!#673#7#5'>3##5'67#'675#67**֦oooo*Eommmm%Hm;2/782 K=P!TCD9I#\g 0 ALI42U $IB5Ih,7-dN t6603 &>>2; 5q>>2; 1 =PPNw]g< BAAz'JRoRE83zAA>H<@D:?$w> ?#YTbK 3   !%)05;AGM35#5#;5#67#677&'5#5##367#%3&''67&'7&'7'6'67#535#5'6735!#3#3#3#3##'.'#'767&'767+5#3#67iiiii?)/*)9,6?P_  TTTTTT 3 ;2/76 5 844I K=P!TCD8H;I2 ;C;;;;KJ ("2BBl6 /,*))C!\nnN |[[[[[XXB XVxr0]]``;c5/!.=PP1 i_jQeU XdMNw]g O`b< BAAz'JRoQD%*<];`;c@&&WS C PD.!H1D53zA 2"(3&'''>75#!5%!5%!5!&'7'6#"&=#3#&'7#'67+#67'67#535#5'673#3'67#535#'673533#3#6767#535#'673533#3#326r>4,OQ #" D?aaa977w14/nW fZYGKiN  T3~~PWAD=L&`hM*n93!8$EVV]J% 90s93!8$EQQ^U] @@C>Az'JTmUB;0zB"W82$O 22728= ;@82$O 22728>  %46<gkosw}%!&'735#!53&'735!5!5#5'67#53#&'#!!367677&'7.'#5'7>7&'767677&'7535!535367&'7'#5'7>7&'767677&'7-Nyy72A/3eYVWà WVYf2(D(J 6! 2G@~6N# /7%6 075ITf 1#1 *5 3 EA~6N# /7%6 075ITg 0#.--w0N==, "2W72"?&22&?"27W',#`MHKPTA9I3 4(29 0AVPKV9H11P44P11P11ELNGQJ9I3 4(29 0AVPKVI>%9 %!&'67##35#535#533'67&'767!5!&'&'#!!3673!53&'735!5!5#5'67!5673#35#535#53&'#53&'73533533673#36=33267#"&=#'#38xxDDf hNNS'C35&6*AO+o3SM_th8VWVYl5D*A2+jYVWR?!9NNhʽm `8 7 !?,?%94a lA = K;"nP2%&%#(. %(%/'%4<>>> 8%W2 +N cc+&!2)!67$'#67'63#53!!!!!!V{RD?DQc ^ v**hAbMBX&WB6.? ?5A %AAM;O;SP %#3=#35'35#%#"/3265!)!#JC)T+@~N!xss:xx:sA*U*D*1[IK )35'35##3=#5!!!%"/3265!!Z)ES+)2jj8djddCCC\~&C*V*U*K  &635'35##3=#.''>=3!!%"/3265!!Azb*Bp"#{I*j}L1)ES+)>__7[_[[E%>b8Ao>*N?4\ C*oi*U*K %@#3=#35'35#"/3265!!!!7'67!5!533##"/326=P=)ES+)b$4I"D-9<( >_[[7__7[C*oi*U*\ T8Kz>FF>1> K (.>E35'35##3=##5346=#5!#3##5#'6!!!#"/3265!#3um}}Ix:jx)T)ES+ {|>__7[_[[!9J<<_9ƁO.D\ \*U*C*oxCK #)935'35##3=#3!535#535#5!#3#!!%"/3265!!Aܴȴ1un+)>__7[_[[>>N9K;;K9\ C*oi*U*K %+;35'35##3=#33#&'#5'67#53!!%"/3265!!JG&xOJQ-N|)ES+)>__7[_[[A>g[9Uku^4gw>l\ C*oi*U*K 3%!5%!5!35'35##3=#!!%"/!#!3265!!kuI&(+)aa8W__7[_[[>\ >6*oi*U*K B%67#35'35##3=#!!%"/&''67&'7#53533#3265!!O/:)ErVdyNC9.jJB7Z[{+)0=@u__7[_[[>\ @!07#>%.?$>AA>R?,1*oi*U*K *5EK#3=#35'35#265367&'#"/'53'>7"/3265!!!!P=#K'B;3FAIN&~Y2S>xM/Em)ES+)>_[[7__7[8 "[;431F'Q/N,:KM$???L05(t;C*oi*U*\ K !%)-3C!3#5##5##35#3575##335'35##3=#!!!#"/3265!OJKKLKKx)T)ES+r%%@vAs@@2AA2@__7[_[[>\ \*U*C*oK H35##!%#3=#5#535#53&'73673#3#3265!!#"/&''67ML݉ B,R,B&LBN ('Q$B)JNA'&|V\[VV[[:C;/!7*5+!1;C:=G*|\*V)YAc4:3OK  S67#&'35#35##3=#5#"/!#5'67&''67##!3&'3265!!B. /:A:A'BFA `0'-/ rFM 4I\ 0#<,( )#`V[VV[[(:"48K\1;*!: +|\*V)K B&'!5!35'35##3=#"/!#5!3265!&'!5'67!#!3!mA88A)EK6+fz;??;zfMB)'1::1^__7[_[[E2!*o^C= -%%- =C^ \R*U*K !A\!!#35#35%5##3#5'67'67&''7&537&'7#!3#"/&327326'#766JMC #"v8>]vqV!E+9#@M"E(BC45+B% ; $ 14!/4\OTT5OO5T&>]Q?::>R : 4E;8%*'O*V)' I95SN"+#-%982.K%GK!!#"/3265#3=#3535##!3#&'7#'67#535#53533533#%5#P;$B4 \M_@+C^!)L&{HllIJll\*U*C+[VVXXdV\>7?2C9,*T:65M>X;EEEE;[[K S%!5!35##!%#3=#5#"/#"&=#'>7+53&'73673#32673265!!`(M$B8J$@ ud$\[ KaA$].@ b ")C('VaV\[VV[[.)hDg7D3(,+7 (T ; [*|\*V)K *R35##3=#5#3267#'67!#!!#"'33265!!#"/!#5673#!5#535#R=*H^ vGM &7:M3('Q'BJbUG=xx(xx|V[VV[[K39B_\ Z8!*|\*V)(6 #0//0-K`%#5!'35#!!#35#35%5##3'67'6767&'!5!&533&'73#673273265!!3#"/&'?Hvv6JM$x%9=FS 5 0#! ;"- 7,(@M'Q'B8d0T'\OTT5OO5T3#;!7!%az9 +9YB8J_F*Sm+O*V)B DK M67#!5%!5!35#35%5##353&'#535!#3!3!3#"/!#!3265!3#33LUJM6B@M'R'BI5)V&+,,--OTT5OO5T3$!2+\7*V)%++2$!3 K  &,W%#3!!#35#35%5##37&&'7'67%#;3265!!3#"/##535#535#'2736JM&S7&@$FN&[7g4Q/74͢CD(@M'Q'BFBHLFV\OTT5OO5T~1)"2','1-#+IW"c6+O*V)2&6769+8 > K 8<OU[35#35%5##35##535#535!#3!3!3#"/&'#5'67'35#%#3+3265!37&7'6AJM6B@M$J'B^LLWP^AcQx & M224!2KKK5KK5K.%8/a="V(.%8=29+..S%3!+/1/6: 40( K <MQU\35#35%5##367#'67#535#535!#3!3367#!3#"/!#%3265#3#5!!!7&'7#"-uBoᵵJM6+@M$J'BH, n06Qd3.}11[6AKKK5KK5K29)4704/a7@"V((%Α+#977)/>**0.K Uv!!#35#35%5##3'67#'#5#'>7##5336=#53&'73673#353673533265!!3#"/&''>6JMa8 "-88 123+, +790zI8 !: 4 aKKK5KK5K.%.&.+@"V(;4% +:f.2&y%S&& RBEN0Y EF $S D5 K $(,2]c%#5!'35#67'6767!!#35#35%5##3&'7%5!3533#3265!!3#"/#"/326=#57&@ ̏00m&>6JM6+>5>[+E33(@M'Q'B.NH"@@-G 883?(\OTT5OO5T!OG!H6/;;95 +O*V)5=2/03 K '+/37Uf35#35%67#!!6=!#;##5'#35#35%5##3#53&'#53533#3#3##5#53!!3#"/326   r 165 ?%JMM $vHv Iv}Avv@M"D'BH#  Ybb^5;+E?Kn%6,.V\OTT5OO5T<:6:11::6x=e>F@@$W 94&'67##!+'326?67!'6!!!&''67&%&7K,I/,F0'@E *!F.O[06r<7s\#bk e]6UAz\>x=e>F@@$ks5?6#BAʊb8@4&'67##!+'3265!#"&5#'>7#5!#326&7K,I1,F0'@E *!H#! [,r6Wc.P+/6UAz\>x=e>F@@$DD,IGR! DL8-qDDw# ;R(%333#3!5334&'67##!+'326McK&7K,I1,F0'@E *! D:FFp6UAz\>x=e>F@@$W7;!!!#"/32>7!'>5#+'32654&'67##!353,J$@;4vi/ (sr8]b,#$0'@E *!&7K,I1 ODIMG H 1X8FO>=e>F@@$16UAz\> ] $,%!5!5%!5!%#!+'32654&'67!53!3333J0*E9-DH) *.#.AG0}sHA\>{{4DDqV)E6TB~~\>t=e>F@@$M7J4&'67##!353!#3:>7#".53675!#5+'326'7M+I(N B*~5)5 K "@94/6: M0K)%0'AE *!6TB~~\9dd.F> @4A 9?D" !  @y^?=e>F@@$M1G35#4&'67##!+'326?67!'>5353!'67#3&''67&&7F+G(C/%>D*!B8P\;m6/,M +>#Ekcrqf\y7U@}\>}z;f?F@@$VbԺ;\ޠaaCLF 8:ArT*B-ab,B'WcH+"8>4&'67##!67#+'3263##"/3265!5!57& &7D,I(C*`(K(K >D *!>> D/ZU" G>XE@C7U@zc>}z6/ FEF@@$RD_-E5D%!M !FN#6#4&'67##!+'326#36=!5!#3#"/326=&''!!#k[wM):D,G*@2' +&F55K' +-=#G*H2^].U2TBx}^>r=a;?#% +AA+ SJ'@'CgMjJ!1A*H 2%!5!5!!!#5!#3675!4&'67##!+'326xNB  NxMx'7M+G-D0'AE *!(DDET66uBWm(6TB~~\>t=e>F@@$M6 8P67!#373#3##5!535#5!534&'67##!+'32667!&''67&'^> >VNNxA1N &7K,I*,F0'@E *!>TK>HjgtsE:.6)x=e>F@@$^| @dJ8(@3DI.>(;1<)$C5 D!5!!54&'67##!+'3267'67#5367!!!#"/326=!#WW&7D,I(C.%>D *!c${= Ng$J"XK& O ex||#7U@zc>}z;e@F@@$PHyA.5 6UAz\>x=e>F@@$4DWFBU.\CV4<6֍B5C M'CS4&'67##!+'326%'6733#673673267"#"&5!!5!5#53533# &7C*G%C/%>D *!x ,JVS JaR!cq43F#_/ ]:N7U@x\>|{;f?F@@$<B{zD4(79A+(x0/; *mBBAvvA:7%K!.''>5#5353'67&'4&'67##!67&''+'326ޤ$i++k!OH5TF J>/7=&7K,H-DK cF <+4$)&=$AE *!Ct`Z LJGK0>6`L)F@@$:7*CT4&'67##!>=#53&''+'326!.''>5#5353'>=#53&'&7K,H-DK )8K-#*-$6&AE *!ޤ$i++k!OP*)8K2('4!%6UAz\>t`Z!y=A1Y@'_[+9 F@@$CA1Z@)``M7$(L!#5!#5+'32654&'67##!3535!"#"&5#'>7#5!#326 M\K-50'AE *!'7M+I(Pk:F [.U|'i5/4ґs[=e>F@@$16TB~~\D *!djj:dj\7U@zc>cc?SZ??ZShP;e@F@@$M% )M!&'677&%4&'67##!+'326%!#"/3265#535#5'673&'#h[Z\m=?x=e>F@@$AV(D+A+)DfeD"!*MK#<%!5%!5!/67!3#5!#367#34&'67##!+'326Z2JL,1NKJG@HH&7K,I*,F0'@E *!x=e>F@@$H@#^!5#4&'67##!+'326&'%##"/326=!'67#5367#5367#5367#5367!!!!!#&7F+G(C/%>D*!7D676DU G"dZ! EZ[x  M*! nZs:A7U@}\>}z;f?F@@$>J1J>?O%B '_0I}?(K?+3<QA42A8 <3+?sM< 7;67!#!#553&'#+'32654&'67##!353!#35!( ^MN"Q&3/%>D *!&7D,J P V$_k^l +|+Bgcd^;f?F@@$17U@z\2bbArXB?  J35#35#5#6767##5'67#+'32654&'67##35!!!&''67&KD/4Hz +-B6,DH .$+>G0Ht6M1H)E21D)C4E0x#Cqq>d>F@@$16UAt\64B^?^BDBUVAE=cM%-:S&'4&'67##!673&'!5'+'32675!67!5!37&''26767#5!!67&8B>;&7K,FSPIHQ0'AE *!pM-*M #2gB@W~`C,7!"7-=B(=e>F@@$M<-7>738>LD "H O5#;5#5##35# 7!#3#3!!!5!5!535#+'32654&'67##!35#5!5#P~~~~g) kRiiR"U;IT >D*!&7F+G(C"mPvn5Dg>A>yAAy>',F@@$17U@}\>}z+!>`C1 G35#35#!#3=#4&'67##!!53!!3+&'#'67+35!+'326Y&7D,ILK`"hLe!ZI(0.%>D *!^cc^^7U@zc4YY??\BcmBlro?jX;e@F@@$M90c%67!/67#5!5#53533#!#267#"&=#'67&''+'32654&'67##!>7!&'c:<% N^D &&&Z&RQ6<6I *!&7D,I(C.%BzIQDtil9IF<+r>`b<%#% )z=A=7;/$%@$17U@z\>}z;e@%'p.$<_H4"A)HP>:7X4&'67##!67!#"/32>7!'+'326%#353!#335#535#'67!#3&7K,G(l:I TmL K;H/0'AE *!9]FHH]7 ,4G+C  6UAzc>NSp( ӫpT, D"eD2.=e>F@@$vK?92(Qu >M?0I2>7!'67!#"/!#5!#673#!5#535#4&'67##!+'326?q8x=e>F@@$M40@Y"#"&#.=#'67#5!5#53533#!#2263>!!5!5#53533#%4&'67##!+'326~?A 2IO  g4Oe&7D,I(C.%>D *!g-)==.{?k?UU?k?kAA>nn>h7U@z\>}z;e@F@@$M1 O!&'35#3=#%#.''67+35#5'+'32654&'67##!673&'#?POLoqk&(x5?+A0'@E *!&7K,I%zLH(o?ROX F@@$16UAz\>@7^|b?,$JR Q!5%!5!'!!#"/32675#'>7#'>7#'+'32654&'67##!67#5!!!WWKZK,K>#*T/H*V5V+G4YKN< + '6D,G*@.$^GQz3OLL:G>AjZ60-NL-2%{?F, ?#/6Vr9a?"?U>>0R T35#!#3=#'#37&''675##+'32654&'67##!!5+!+!#"/326=#67&ȚyFh:/&< QUHb +&):D,G*@@G J;\S 2______uWd(/DC?#/2TBx}^>rNBLsLT*B,} .M6Y67!3!5!5#535#'+'32654&'67##!67'67&''67!&'3533#3#^> >teQǚ'51` *!&7K,I*,F0'?(1sE:.6*TK>Hjgt=R }N)_M>(?@$16UAz\>x=e>!Ng >(;1<)$9^| @dJ8(@3D# $ UU?_>R H#!%5##3735#35!67.'#67'67#+'32654&'67##!HԜFv.E765OGg!s,keS B>R +&):D,G*@@y``9d`ddAN99H+ECD)@+}@>A  ?#/2TBx}^>rNB?-\&''67#64&'67##!3&'73673#67&'##"/32>54''67&'+'3267Qu e $-''7M+J" !F(/!F' D92EOFj'j"DI#45aW  {|h` *!%#:1:`9HF6TB~~\>E-GCBMA:Atc=I3ZCmFjX%QxuLA :=+ gBi$5oS?@$?9 9R35!5%!5!/67#5367!!!#3!5!#"/326=!#4&'67##!+'326zzl-t1ix Kb  $M$XL'" zN&7K,H-D0'AE *!;$(LEE9FC>3##>%;L<0:*BC0a6UAz\>t=e>F@@$RF+?!5!!5!#367!4&'67##!+'326!!5!5#535#5!!3#uuNN'6D,G*@.$?C + wINX^g'9 2%l6Vr9a?E??#AAb:Z>>Z:M*.=_%!5!#367!#54&'67##!+'3265!#67'6737367327>7#"'.5pK M M&7C*G%C/%>D *!?p^I&#IJYahk   F *(,e+%, +K++7U@x\>|{;f?F@@$kkA@7ABaar:8=#k#d161(?=_35#354&'67##!7&'5367#5367!!!#"/326=##';#"&''675#+'326x&7K,H643?0.-D-d+ K /(KDK$ g!3O1Y8_AE *!`aao6UAz\#!Qa(YLt;0?vA-$-A0-47 CP--'H1A5BG@;FU6>F@@$MT!5!#5!5#35!##5#5'>7##+'32654&'67##!5!#"/326=#"&=#rK ( %rDF?2{Hp +&):D,G*@Fb3RC1"78<^X- BB@;A;6k$U?#/2TBx}^>rWIIT*B, .F@WH#'@!5!#5!#!#&'7#'67'!5%!5%!5!4&'67##!+'326mM'NEғi#hedeWWW'7M+G-D0'AE *!~P?6A;B:6.K2?,@IIJJ6H6TB~~\>t=e>F@@$HF "d35#35!35'35#67#623267.%4&'67##!367!#67&'7#"&5#'67++'326D-D iZ@J&'7M+G%KSb< = 1,(g3< ( NI+40'AE *!#vzzzzF@@$: O%5#35#;5#&'#55!4&'67##!67'67!&'#53&'3!535+'326UVVV%U*Uk&7K,H cF4Pw"RV?4#99'W*N4e$ a *!@pX=XkB>>6UAz\>-GF_/mT181h`?Q,-623@rW9BBB@$M $*0Q3533##"/326=#!5!!57&'767%7&%4&'67##!67'+'326L Bd<0" KyybVm2kY'M5U.p_.Z&7K,I%]99Is"!0'@E *!$AB !YQUU_O0ObDf*pH5Ng3_6UAz\>3*AU%oH%@9=e>F@@$:=Qcio&''767&'767#'67&%53&'!5+'32654&'67##!673&'76726=!5!##"/%67%7&T3-Z.1/,.#4N"65+"g%IBW`PQ`@E *!&7K,HM*7G'X2 Z84HHwC:E}7cM9QhxsmO$9$(:$$879MB99F2%*-??rkK'Q\ " zLY@ CC;B\w(}`,lr+wH4H67!#!#!!#5!5!5'!5%!5!'53&'#+'32654&'67##!353!#3$ rKOJ}}%I'5.%>D *!&7D,IOh :63&Cf.9A~~A9~BB6>i?+>l`;e@F@@$17U@zc*RR?54?? !CIekq3&'74&'67##!+'326 73673!5!5!5!5!53&'7"#6773327>7#"'.5?&?&%)!:L&7K,H-D0'AE *!o;!*{'G#UM"= $ E(>'JK ,%$.F$G(C?,:k-SG-E=G0<1GA S7X6UAz\>t=e>F@@$4?BO W]PS>J?>=E6rOr4Jk94 Fd8;@J!(5$HE?MF@ M=@}}@v071a*)(,@$16UAz\>t=e> Vk@AR?N<#;UB?K|&'7'67&''67&''67#5'67!&'#53&'#67&'"/32654'%4&'67##37&'3;#"&''675#+'326EH*W8&^ WU NeS#*T42 ('4#;`#&h M6*BXgA.+>"ZH>Z[&7K,HO>-1*,B2h~"4L1[6KAE *!>35>2z;Kl# W<;:U7)94E4:;L30%-,AUD:0';2C/N4W3pM!#bC>$@#bm6UAz\875+ }q?:H1A4@F>;HRF@@$M4 0Y&'#3%#3'67+!#67+3#&''&'4&'67##!673&'!5'+'326G92N(rr$qq,|'Hm I:WEj[R/BV'B#/5B3&7K,I%"yU]LL]0'@E *!>>7E9f-J_i0Hl2XJYJ,+ZH^ 6UAz\>6KfgHF@@$?< #'Ku%#32667##!#"/326='35'35#%3#3#3#3#"&535#33#53&'#+'32654&'67##!3533#3=;o3F*0 0-W!+-*h-KMK *90'?A (&7K,F nK~ JB& %:?>;5jBCGMM>R'na=e>F@@$16UAz\&VV@=<>/7 <B35#35&'7#!67.'#"/3265!5!5!5!5!5!53!'67&Sh7`Us]+QjU:Rraz#lA'L#ka$JYJP6 ӌB`ff@;17B}AZS@V,VEU:B5[[.A04=fA`?VVBTrCu %'-39iu35'35#!#3!535#535335!"/326=#5!#'677&#535#535#535333#+67&'#"/3267'67&vvvvIwa-8( a@;7<%>#I..Jv)758:FAQ1tO!@HC 1F?,*Ot*qH5 SSATT==T?HH??-CAA5o!a~EPQQ=?SAT?HHD=I5Q'XBbC9fY0C"0(??7?(-2. 3 55!5!!!67!!!!!!!!!!#5!5!5!'67 O7))GxPn!",m3HINNNNE8F8EA0D5]E1V8C3{V1 D5#5##3!67673673#3#3#3!#'#''>5!f.Fk6F!ETM -M"( F;$ Tzz}}<5OF{z8/=960?z<}EM KV*B/zAxDBBD 3 ?5!5!!!67!!!!!!!!!!&'#5'67!5!5!'67 K;))GP!",m3HSFFFF8G*1 +&?F9F8G:7Ӡa;*AF!D~z,h3JIlLSA56>9.Na ԕؙ@ZE_X CC2 I<V5#5##3673#3#3#3!#'6'673733#677"&5367327675똘HK&0c0J  B*D@@(7D/((=B;ԕؙ@>R N7B?@A9/=AA @EB yE FO%P>L2qJ+ U); +3U5#5##3673#3#3#3!#'67%5!53!76767767'67'767&!ETM 5q8FPw'.1?1A% A(?Vq ?!p+T 26"Ltqquu7'>7!673673#3#3#3!#ڥ`E 5T1K IJM!ԕؙ@>yr @N+B{ M8EM K&= J`5#5##32>7673673#3#3#3!#"&=#'>7#53653333#&'#'67#53؛/qAF]3IEjP9erA!= <]35#5##35#%5#5##3%.''675##35+5!#3+>7.''673673#3#3#3!#NNNR(EPaLJ=L]IK?0\0JIvLbi>2ؙ@x 5 ' C 1IDD  O9; E@7#3#3!5'673673#3673673#5!&''67&'7'35#35#V^>jjjjkkkkIdddd 0]dd 0I%I i I lyd6)g 3&+8 0)>CAA_B(A>< A+:>)777= 5#5##3%53353#'67#5'67'67#5'>7!673673#3#3#3!#'#"/32>7#336=3353#!#"/32>7#336숈F77~*~*b$S G2!*_$P &QEE6GE{||||J *'%3,-F27z&% ()H8/ԕؙ@**',Vm'9@gK=g 9=gJ%4 +wMQ P6BP L;B?@A9M!,J2@tp$S(.##2$S2##6Azu#P& = 2Mc5#5##367#'673673#3#3#3!#%53533#&''&''6733#&'#'67#53&> .(c*GFwxxxxI!LM;61(342 #.2U^L]L+ԕؙ@j@645Q FATR7H] s]/=em767#267&'75#65#5##3673#3#3#3!#'#3#"/326=.'#3>7#3!5367'!5353&''67&'76S1!)(܂ EtuuuuI0$OP ( zxFA AJ:GnO5&#&+( 19&3/11#72"rKN)8Fl^4Wؙ@BP L;B?@A9^#)XC"A" wW H>;AAVVJ5)'*++,)%2(',= i35##37355#5##3%53=#535+535#53533533#3673673#3#3#3!##3#3#&''67ހooIs=?ƵmEPddHHggP;3GEtuuuuI ô9r"nI?!#dA{llllVؙ@nABP L;B?@A9^074?<Ab6=4qx7@9fF#)/5#!5!5!!!#"/3265!#7&7&7&7&M~x\x~&K:Vd%! L%^Y'aU&cT([#%^Y'aU&cT([iDDiP(D%Ah:;I8N<>D;I:;I8N<>D;II#1!#5!#5!#5!5!5!!5353753535!#5!5!5!5!5MJMҰiNd{w,AS:Q< !%)-1!&'#!5!#5!#5!#5!5!5!!535375353c%P}MJMҰBC6dA`5VCP5#'67#5'67!&MJMҰ8xHD:<3eI=" $CLf̄86DA|w(AXZj!A6%>>:AA77j66j77j66$HL&'!#"/326=!#5!5353675!#5!5!5!!!#5!53#&'!5'6?53V^^V"J3lg-# Pm"MM"ҽck$kc¡6%33%z{W(@,A44c5+ 8AA8ݤ +5K;@+""+@;Kc44 I +/37;#!#5%#3735%5#!35#!#5!#5!#5!5!5!!535375353LLLJMJMҰ&,x,UUUU9SSS7!+".=;267#"/32>7!!!!#5!#5!#5!5!5!!535375353E3BkJN H/)\SLPJXI"-}-QUPT*3=@  n&MJMҰ҄KZ9/G 9%'- -j QCKS) LϖƖ5AA11Z11Z11Z11 I $(,0DHLPT%##!#"'.57327>7%#!7!5%5#)5!!#5!#5!#5!5!5!!535375353KM((';F<7=L "6*1<2fL K MJMҰ9@s897)P 30IIII5EEEcܣգ8AA44b44b44b44C#7;?CG5!!!#"/326=##5##5##!67!#5!#5!#5!5!5!!535375353Cbm {!,`X JIM> YMJMҰ,??$, A@%jܣգ8AA44b44b44b44$ $(LP%67#!#5!#5!#5!5!5!!535375353!!#.'#67'675#'6=!5!M6,_MJMҰr)N-1BKY;~_,Xu;5J"V0)(,DϖƖ5AA11Z11Z11Z11eK ='$%AxPA#CQ8tq77237;?C%35#%5!3!53&'735!5!!36!#5!#5!#5!5!5!!535375353rrKB*|,!?3(LHK3MJMҰq99JDAAV4QT;;KDܣգ8AA44b44b44b44! O%5!5!!!535375353#'67!67#5!#5!5!5!!!#5!!!!!!!!!   ҰI +4j11Z11Z11Z11025Cn 1$Ɩ5AA5ϖ $9:5=5>=+?CGKO#&'#'67#5353!#&'#'67#5353!#5!#5!#5!5!5!!535375353sDD0(IK=`*w6KJ,xNKW,SKMJMҰ>:BP65RpX@hl:AA:tl@_nye;u:AAXۢܢ8AA33`33`33`33 #'+/3IM%!5!!5!#!#5!#5!#5!#5!5!5!!535375353#&'#'67#53535!5KMMJMҰKF*9CKBb(y>K!|BA|>ۢҢ8AA33`33`33`33_;IN8O=G5>888B0 :..:!+'ʔ1AA11Z11Z11Z11 % !%)-s67#67#!#5!#5!#5!5!5!!53537535326='67#53&'7#5!33673#"/32>7#'67#5'67##"/67!#&''67&'=,0?$(}MJMҰ,Jc_FC:'CEP  F0A'`E/ G&=!*0_3W*k7@O3)FL_t`ZkH>,03"1''sʔ1AA11Z11Z11Z111]A>9M8* $556.8S=*%|/7&N",'"4=2>R 47'4)&5"-, / '+/37y35#!5%!5!67#7!#5!#5!#5!5!5!!535375353!67!535#53533533#367!#&''67&''#"/326=!#Х2M? <MJMҰ5XNNIFOOY3 D &;M;j"vBF$u@=%47W@ K.-%%)%9Fz c/??00U00U00U002-0%%%%0-/Pd"?T-$=+43,=&-Go5/'/:d . &*.2o67#&'35#%35#!#5!#5!#5!5!5!!535375353#!&'#5##5'67&''#3#67'6753675+5!67E248/4B QyMJMҰү3 8SRf $LK$ fW<)"#KN&G2XKw_7%0,\QBʔ1AA11Z11Z11Z11 3C2$>  :%&!%O77P?0?̷Z;F =QUY]a35#!##5'6=!!35%67##53&'#53533#3#3##5#53!#5!#5!#5!5!5!!535375353L#3IYsIN3lNǑMJMҰX%O>8y%6kkc2<4:<<3;<33<86H=[B NK,H6EQ.ay%L >-p]6_Aa)T/??00U00U00U00Xsa;8t7, ',$ /#/NT.%--::XXr, IK.2!%,!,, (,$ *,!,0 !59=AEIMQUmv#5!'35#!5%!5!3>7#3&5!#5!#5!5!5!!!%5353753535!5!5!5!!!!#"/##5'67#3'67#F ڗmOOD9-'<;yJM+Ұ/XN/+4XF $O mw.0! 0(CsZ#$0 <  %-2DX\`dh#53'35##53'35##53'35##3'6!3&'35#3&'3!53'67#5!#!#5!#5!#5!5!5!!535375353@jjAhh@jj-;#T/D>#NB$<*?@+QJ$HG#[/VMJMҰ1;l1;l1;ĭ)87*9X,>'=6*7Z+?'AA)8L77 /??00U00U00U00-1-17!5!#!#"/326=!!5!5!5!5!5!53!!!!5!P'R-eZ0% rTxTxTDBB1<>CC>>:CC11 ":L%67'6767!5%!5!33!537&%3!5!5#535#53533#3#"/326=!#!. OT)EffFxxaC CaPZ'M\$ K'b ?CC>A:C0B*= Ugk735'35#67#35#%3!535#535#53533#367333##5##"/326=#535#535#5'#"/326=##!#3"4+-jj9EMwCC>A'o @/3A!pS+D*p>yAx),C:C[x*1(,0Ht75#7#353#"/326=##%&'&'"35'35#%3!535#535#53533#3##5'67273##5##"/326=#535#53VWWE?!AF I1&"(0D Dnnnn;EMx&/ж**%**In9.SM ȴCC]Ϙ_F T6ECDrr?k<CC>A:S3^eHB St?+VO+C)U7'6767!#3!!!!MN3Gun2UczgPP%AD_>+Dn9@*eK$D )4HD~DAAMW[ew7535#5353'67'67673##5#535#'6!53!#3##3#3#3##35#535!'>=3753'>=373267#"&=N[mEz%au zx|D3+:MwP7NA}z5?;C5? 1%687;t(-,5; ::B݌S='3VV@B:89E8E) /06>[ 2/&yF %335#35#35#3#'5!!!#5!#!67>֌b\xKhKF }}ȁBBS.b,,A@   $asw#5!'35'35#35'35#35#35#35#5#53533&'7!'6=!#3#.''#"/326=##5!>75!!!#5!#!67#3'H@ dцtIn6/&j(-8D@Z50') W;11ON4- 1#E< J^;S \sLrLI2>" ! 9 a D5dd. *d?:k6%)*5?z#0g=>a+% Ds?55N /7(,0!5!!#5!5!5+!5#5#5353!533##!%5#!35#T@xcPcO=M@M=s>PP%X@@XI?____?I>#" 4Z5##35#35'>7&'765#5!#"/326#&'#3+3##5#535+35#5#53533533#[[[.;LUAL+65s  4n[/ KB+>0XmBVLVDoIIGEIIJJ)0K?89'/[Cd8 F K*1LQ=L3?O??O?@UUUU@" 8^6#5##35#35'>7&'765#5!&'#"/3267&'#3+3##5#535+35#5#53533533#TeSSS*8ES^C86@  ( $$ 4n[/gZWjANMNCkDDGE==ZP/SމJJ)0Dzb.oM}Ck D LN F 3P,Kq?O??O?@UUUU@#+ (Y5##35#35"&53673267#367#'+3##5#535+35#5#53533533#[[[.Y)KHK3cc).DAmd'H IBVLVDoIIGEIIJJ(9Gr2WD=FO&+S?pXU%9/)O??O?@UUUU@1 =P5##35#35#3#&'#'7##5#535+35#5#535335333533#3+367#535#5#kSSS*ʩD.{EMR0MNCkDDGE@MjANH=JJ#BD{A?O?@UUUU ?O*B#" >B5##35#35#!!5%!5!#3+3##5#535+35#5#53533533#5!kSSS*K##ݫjANMNCkDDGE=="&JJ[AʻAR??RA@UUUU@>BB#G Nt32>7!35##35#3523:>7#".535#'67!#"/%#3+3##5#535+35#5#53533533#   `[[[. ' &!/ K ;70979ٶ:\+IC5DmBVLVDoIIGEII0$6ÉJJ :,04=?  (-*-/ +6<7#+3##5#535+35#5#53533533#kSSS*Vnlmj6M1uX&P{!%W&bANMNCkDDGE==JJ   _?kMC^.C*XY)C-^VO??O?@UUUU@" `5##35#35#6#"/326=&''#346=###3+3##5#535+35#5#535335335!#3kSSS*WzfQ:bB 15@(O-G@jANMNCkDDGE6JJpz:)%b[E+#zVxU.R9?O??O?@UUUUS=F<~]O??O?@UUUU@?5.i@CU #( 9?E[5##35#35!5%!5!'#3+3##5#535+35#5#53533533#7&'%'67"/326=!#333pSSS*44̟jANMNCkDDGE==n62A34)=C@&=nU! MK JJtt>h/?O??O?@UUUU@^hi]`krWC,HcU% 1 =Xcg5##35#35!5!#!#5#3+3##5#535+35#5#53533533#265367&'#"/'53'>75!kSSS*,KM+jANMNCkDDGE<<I>.9(|Bbb: +1o5##35#35'67! #"/32>7!&'67%#3+367#5333#&'#'67##5#535+35#5#53533533#kSSS*{-d.Fm "/A/' ' =5?4jANg8F?D+;5FAm8 MNCkDDGE;;JJ>t.֪D&YeMC Ve_hd?O0j> >Ws4SSS*Wj6C9<+W#]M]#W>A+e{#fRBI*jANMNCkDDGEBBv,0#SJJE==K<>`D)9B~% 8@M;JJ;N@5< eyH=7R>30&?O??O?@UUUU@# '-\k%#3'7'5##35#35'6=367'&'67'#&'###5#535+35#5#53533533'67#367#535#&6w6;|;;#qw&SQH,A0:t(e04}' @ *7V?;42G!9K6BxX66EqD)0HWvC\h+/2O.!7KK+EOTRzEg1C|07#!#'+3##5#535+35#5#53533533##367#!!3'67#kSSS*,,Ԕ(85*'/P:+{ E:&F ANMNCkDDGE<n%5##35#35#3735'5#;5#7#3#5#&''67&'767+35#5!%#+3##5#535+35#5#53533533##36&;|;;#q``E_`__G`"^k3c*Z/=);"-^E BI#@6K6BxX66EqD55WuGKKcccc:]]]NN@gBEDN"+.?O?@UUUY<1 JPV%5##35#3567#%#33;#"&''675#+3##5#535+35#5#53533533#&'7&'7##5#535#535#53&'#535#53533#3#3#3#8y88'd Pqm{"(@,=,D>3K3@sR55FdC22@M*V:-@M*V:M` NM;YMMH:N4X?aG1C-8;;87@`O??O??TTTT?<:5A5<:5A5>[[>H#4!5#!!'#5!#!!!!#5!535!5'!5!3!5!67#5367N'rP>b` 05  O[W V<>VAssA<:V???DJd35#35#535+5!#3#3##5#5;5#3!5367#5367%67'6&'7&'73#5!#673#!5#535#ljqEU[MepzzMngg(bUVf K " 1D8&A#!*0A1)KG__EK=XST99=TAnnAT???B@+*%A!eweJCmvSWuZ ++0D$o==|5'#%!!5!5!5!5#535!5!5333!!3#!!,,OOBBA=CC=A527353!533##5!#5#!!5!5!5!5#5!5!5!5333!!!#!!lKXG\9++ @VMAbbAXK@*A #+CK67#35'35#!5!%53&'#53533#3#!#5#'>7#5!#"/32>5#!#5!#/ Ef9M8 \ErCs*Jg*,7ND( w]LKSPIZqq>l@QRAbbAKX@9+;&`B6B#levJf22 *A#'-15GO!5!#5!#!#&'7#'67'!5%!5%!5!%67#35'35#'53&'#53533#3#!#5#;DHɜiT&Ow"y"L!nNP666 Dcd7M6 ZEkB~P <4E8C=1+K39,DKKJJ6H"KXXKqq>l@QRAbbAKX@9+ - ew576?35#67!!5%!5!5##5&''675'67'767&'767675!#67&'7!+'32654&'67#5!&'#5!53!#3#!#5!YJWa p'$GPG7 8#^#tQ >")??%:%5*< 1.-*)T 7D8(7f?O&%0#?>>2A+|P|%BPPVoF=N*$# ---,**"4t@p"/)H8,',1(*2 (+I\ BIn4>8.O-'77:G4'2332!"4F "&!5!!5!67%7&5!!!!#!675!44̑v!w L\q c~N LG[_/I [[9WAA8"5%]]7J5N::>K7G DL%D+XDF#26<B!5%!5!267#"&53675!!!!#3675!67%7&uu-E W+ISU+ji[  )KuY.YZ(i+i[[9W@7:>G$ 7>h6~E VAA8"5%]]7J5N::>K7G %)/5!5%!5!'#67'67#55!!!!#3675!67%7&uulw?94OyH[  (KuY.Y['i*i[[9WD%DH1E DAA8"5%]]7J5N::>K7G &*06!5!!5!%3'6335!#3!#3675!67%7&3&&FA@;EIF% G zvA/Ey (rL+QH[]qv*n@VAA$6+/WW 8I3P98@I6I  &,28!5%!5!'5!!!!#3675!67%7&676767uu_[  (KuY.Y['i*ie-nj*su,}[[9WAA8"5%]]7J5N::>K7GpIr8|NQ6UW8] !7;AG!5!!5!%677&''676767&5!#3!#&'753675!67%7&=Z1F1gD7#5!#675!#3!#3675!67%7&!44a"w8#R:;:52[T3' K̔I0M)|T+\[[9WzCCC+B^G2ECCAA8"5%^^7J4P99?J7KAEKQ!5!!5!5!#3!#&'#"/32>5#'>7#'67!&'753675!67%7&=t I0 !#M8  c VS+GG I9Z1F$>>$F.T tB/Ey(rL+QH[]AA$6!+.fFTKBC3Ȝ+/WW 7J3P98@I6I"'5DHNT!5!!5!#"&=##33'675367353#3265!#3!#3675!67%7&GF !%!T)[EE[N^\WJVECj[C*)W I tB/Ey(rL+QH[]8 =A<=i*Awi@ Ѫ$ -vAA$6+/WW 7J3P98@I6I , DHNT35#!5%!5!'67&'767#'>=35335!#3!#367#'67#3&'%5!67%7&hh7 gFP+A#A3=AM J ClE6L P;OivD/E~(kO)RۭZZ:WB.]Z"wP]~0cٵaa?A$6+/Ac39EAu0&?&2g]]6K4O:9=L7J %)-39M!5%!5!!5'673&'&'%5!#3!#3675!67%7&!#"/326=###(--Ӫ#% oPEWc%/:;,<.K ӞJ0K ({X+X."34 Ko[[9W+(-'H~lB7G`TSAAC(2]]7J5N::=L7HT+E+\+ 1@DJP!5%!5!%767!5!&''67&'675#53533#675!#3!#3675!67%7&Q  ?.SR'-\BboS^~mNVQ aUMhN  I tB3D+gO)O[[9WhZ?J^AAwX' @$6F'A6FBAqqAB>AA$6+/\\8C.M;6:L7IC *.4<@!5!!5!367'!#!#3#5!#3!#3675!7&#335#3X]n>/ExGaTT H )kO+O췷SS|AH[]47F3P902aBAA$6+/WWR7=L5IV% 1 &EKQ!5%!5!'5!#3!#3675!67%7&33#3#&''67#536=#537&675))l K ׊tI/H~(oP)SJ XF=;U5,}( <*=&0=4ZZ:WAA$6+/]]5L5P89>K7IAz?R]^Az$s~h:nAMnR?nc_u_Xe_c 6 !'6:@F#!%35#67'67677!5!!5!5!7&5!#3!#3675!67%7&Hj)Rmr2C  B"Cm I vA/D{(rL+Q>,> =;!Bjo[]AAOq`wAA$6+/WW 8I3P98@I6I1 =Z!5%!5!5!67%7&%'676=#53533#&''67&''67367#5!#3!#5&'5)))׊tI/H~(oP)S6C? JpS:CZ7y,~(!7;? .+  K0!ZZ:W]]5L5P89>K7I(TA/FUy_?mm?_s$pwd:o4%M&R;IsW+/AA$6'P>/ " &DHZ`f!5!!5!5!#3!#3675!67%7&"&53673:>75!26=#5!##"/'67?&Ka J vA/D{(rL+Q~6LN()G84 &I0j>7C>- @"H[]AA$6+/WW 8I3P98@I6I(e6<9A  .+-~??AA4C QiigFSW $* ,;?EK!5'673'&'35#%!5%!5!5!3!#3675!#3!#3675!67?&!&eUXYg"4U@AA$6+/\\8C.M;6:L7I '%+19HLRX!5%!5!##"/326=#5353333#'677&>75!#3!#3675!67%7&Q  g/A0 =CRGI;E 9A/:278:ϋ I tB3D+gO)O[[9WBL1C2B d@in|"yrr_'g%AA$6+/\\8C.M;6:L7I 1 />BHN!5%!5!35#5#+35#53533#3+&'#'65!#3!#3675!67%7&KA]]^USFKCSGr"_CKCk&S J sE1E~(oK)RZZ:Wݫ>'XAYYAXTJ>AK j^>o0AA$6+/]]6K4O:9?J7J.$6EIOU!5!!5!#&'#5'67#535'67!67'675#'65!#3!#3675!67%7&KhW;47LI3f)p2LTD] S} -637cY J vA/D{(rL+QH[]Z>N:5>OlUBU\>S > &< ]DA,B y=3tvAA$6+/WW 8I3P98@I6I   2AEKQ3=#;5##3!5!!5!'67#535+!#3#&'#5!#3!#3675!67?&kkkjjjj(ChGƨ?m)d>IDY J o?3Cx+iN*O.ggggg8g[\=kAF}FAcU9RaAA$6+/WW 8C.O96&.L2=4;468C*A9FS@ 7#)d!5!!5!%67#&'35#5!67?&!#535335!#3!#367##.'!#'67&''673V>+ 'A4/AvA/D{'rL*QSDL I +3NLv# J& uL5#"'#g0CH[]=W <$&&$!WW 8I3P98@I6IuXV)A$6+/nN63?-0@1:0/+$8b    8GKQW#53'35##53'35#35#35#%5!5!!!#"/32>7#'675!#3!#3675#67?&sCԑPP@ӓQQ5 : "%9_J2 G% Hr o?3Cy+iN*O7|7|v[]==AA? }n' B=C+Bl|AA$6+/WW 8C.N:6=3`EN J 8kCt!yׇ%BYSH[\8C.O967#%!5%!5!7+!#67'67'675&5!#3!#3675!67%7&a . Ee  8-!Id(9 /0>9 A<3 I tB3D+gO)O0ee9dQ b[[9WnzUXIAB"C OAA$6+/\\8C.M;6:L7I   *.QW]35#35#%35'35#67?&5!#3!#3675#"/326=+367#'6!#3#'67?&qo?3Cx+iN*O Hr 4+DCi ==2 {;;=9":H[]aa9[8C.O96>q==4:[\i8?CC?8prAA9I1S:60>7?8C.O96>:M3S9}VF7QAA$6+/\\8C.M;6:L7I>ME'EEKDK?CN6I>}C@J?    $(M\`f!5!+6767#5#5##335#35#5!367'!#''65!#3#3#3#5!#3!#3675#7&55& g `nnnnnn ``e<3CxI!)84=]dXXXX} H +iN*O]F93T''zFFyEE5D>[]===5?.O9&/i2,4F4E5{AA$6+/WWR666B$ T: /> 10!AA$6+/WWR666B68shn xeUv p\Qd cS LZ LT5=.N:9 1 E!5%!5%!5!35'#367!5%!5!%'67326=#53533533#3##"/3'67+367#5!#3#&'7#!#!!#5!53'67+5'$736!!6Q   u$D}W # 84C#: $=CRG03 C/faB)I pWASe8nm3NV3O(l3^̀6k$$N$$*#$?a11,.#=N;?{{47-8M*--$-- 66 $2."%%9=UU7 ;)!B1c.*G35+37&''675##35'6%3#67&327#".5!'>5 χBB6DjFatṘ ,  <   *4=.$x{x1* A1C`>= eYrIhu#NpP2Jƿd/R35+3#".5!'>=!5!5!!&'!32'&''675##535'6%3#67&' І= *%( +3<-$Q}pc"M 6BAdGar ip͈hhhh7ܰJ1DAA1;1#m=tPr.#; t(889 =m#' ;a#3'3533!537&#".5!'67'67676765!32'.''675##;5'67;#67&'@@?HFluaB CV5$$ %+? JT)B'C  $4<J_<@@= f #M7 (Bh%35#327!353#37'6276767&'7.''!'>5!!#".#67&'7.''675##;5'67;.#gJEW1i111,H%2Rp)A<5@ #3?d. N?Ps_8e*A6./8P:/66/71;./6B6xX?{5Qu, νN=IִT; cf)i޻ L l5& A.@_>= g  $(:@F`35#535#5!#3%5#35#;5#353#3%5!"/326=#5!#'67?&%#".5!'>5!327'&''675##;5'67;#67&'4=eolf34h33#0e00M[$1&; ;#A:(9  #3 ,4x5S-66-602;.6d* AAAAAA;nnnnn >>@??9 IKi vR$KF$?qir$X(νN=IִT]0#A .@_>= fR-$^677'67#".'!5!327&7#".'###'>7#536='67333327&VE-HVmF0"EK$B8HG6f&62E:iJ 3!"GF3M PX20:(F;{&7GM$+$ 5.B2G/C;/*._.8#:)-VYBST/D&=*(/LN-]ocC<$PiA@/ @*X7+ GCQ[A[ #"&*6B35536=35>7#&'35#'35#35#67&'767&'7735#'273673'6733&'!5!32>7#"'32>7#"&'###'#5##'67#53&5#?> *CG%X(%%$^2)NNOOOO4,(*/7,1@5'"'++3.@=*TDį FW& >5qJ@tA a"&  <.*&% <08W4C@,.1FIe9ON"G87&@$%k;]70;ke7ae-/A,@.&):.*4&122!*;()5.]A-A `@EM/SgB]X#>E;xW*EQcC8;,,mCIMAELaa$45!5%!5!%&'3537&'!67&$'#67'67'67''vvL BC4Uj-cvo G%UT-jj9b:>NN>ccsZCI;BV1Q?>#='u?-AX$CZs* .3533&'35'35#&''67'673&'!67&'LJnSM4XRC* .0mZi%rm$cUUIKMaa9\t/@H*A @ LVjZPA)'0*.2J35##"&5#'67''67'6735!32767#37>=&'3533!67&AN>444 ,&yfXOhM [@0=o]JQxKYd03ap_"E>@'I+? =IRoKAi0% :\#?YCE7#536533#"/32>5#D9yfXTi)27<-4$;;MwI +$1=^B>RWK !,_R$_2#;&IRoM?I&);5/@E}A;E<^/87DQB,~-IB=[Y?xy?' D,2 *I#5'673&'&'35#35#!'67#'6.''!#!!!!!>=3D9yfXTi)27<-4$I*1E/*<>^I$$JMw;;ZjK~2#;&IRoM?I&);5/@E(FDulg*K&fi$I^A;E);ۅ* 6:Q%67!735#!!&''67&''>7.''67'6735#376=&'3533!67&F=( T&`Ff#iOX{#yPF-4   ,&yfXRj[@E>v[JQxKYd0r-aqBAÍ]>Cb\#(c=3.''&''67'673&'3533!67&I 1E/*<>^]BG.UdK~eI$$J  ,&yfXUmu^JQxKZ^!3a(FDulg*+\rT<ց7K&fi$> (G)? =IRoMBIL[UAUU'96 #'M#!#535#7&''676767&5!#37&''>7'673&'3533!67&KJKZ[CM9D <2G,;p%(d>X;? )(zaDYp&hZKIrKaX0!6S6Ta5$! D W \g!$F,@ FMUlR2?8ZX>UU&J* &*.M%#!'35#'&'35335#"/3265!5!5!%#37.''7'673.'!67&NFȅVDJQvKpb!  r1Z\BO;B ?yfXLcgR,gP7!335#7#37&''>7'673&'353367!#"/#23:>7#".535#'!67&"  d>X;? )(zaDYp&hZKIrKU'J<5D %&!/ K ;70767Ա/aX00$6a\g!$F,@ FMUlR2?8ZX>UUq +6<< :,04=?  ),*'$'&J5 S35#35#7#37.''67'67367!#3#"/3265####'67&'3533!67&Sp\AO;A ("yfXMn"F Oɵ; #"lMlH*iYJQuK{eU&Aa\p7F'? F IRoGFGQ ."EhV)D+T2-GYUAUU#A; "7=Q#5'673&'&'35#35#33!53'!!!!!#!677&&''67&'767j74eQDBY"%$;($O?%JTj<9bR4U`cZJ2I-8B,E3PQ$!:,QTlG:@A7(AEwBBtr3A;E<^fz-,i|5B@`]CA>W_MVdS=8<Z35#'&'35335#%&'7#53673#3###'>7#5365'#37&''7'673.'!67&VDJQvK-/F/,Q;7(J!4sKUUM >C:<6 SW\AI2A ?yfXJbkQ&WSgHNUAUUaYCDVfE\^O[EDaK3BuD+h?Y!v["%D+?GIRoTEL #@B"0HL3##'#5'673.'&'35#35#!!!!#!#3673#"/3265!35#A74eQDGa"+;($I;FL5-F;" __Pq(!:,QTlH<@#<7(AE}A;E<^@R O9U*D+0nB [&'!353!5%!5!&'#6767!&''67'67#5!5!5!5!53&'73673!!!!#&'>7 P:: M6@F3kטR2DLaM &H #KMaLD)\((333344'3z-%":? I0(A;;*LLb<877>4*/3& )>7787#5!#7#5bbBK7C ,&yfXNdiYJQxKRa*  / ;43 L3a6\ug1 G'? =IRoH=IFWUAUU(FCRBB Bõ$!? :o67#3533&'!5%!5!67!'673533#3'67&'767#'67'673'67&'7#5!&'&'67&$'#6k5 Lo]]''P=B/c0? &M"Ϥ!rW6+14=@*mR(E<9GF5":W:W~iBD3R0M[bdG{c1IB>>-1111..(,2.=V-9-5Jt <!#)*%+-<)>OC=Z5 7B<$;+T[:C'@1 <nNy+ {#3=#7&7&''67'673'673&533#67327#"&''67&'#67#"/326='675#535&'3533+67&;|:/-;/;;6; "eQD=H f.1z H 4<2H :H9CK%ZC <14G/H5(5 71ee"3OD1KWKeDPN"a\\0Rjp_sG,A BQTlF5'!3=~Ctq]cjxJGM3<:WBV)A+ DC 2?RDMUU&@*/4X^#5'673.'&'35#35###!#!!!67!&'##"/3265#535#5'673&'#7&h74eQDGa"+;($I;R-?4i\5SJJV=Z@!8jNn5!";V==<(!:,QTlH<@#<7(AE^A;EdwiJ_aAV(D+A),EkhE')"$: {&'35#35##!27#"''67&'!!!#!67&''.'#5'6737&'77&'7767327#"'7&'77&'7767\53($?FQYrf/ %J^^)74eQDDPM=25JCb!X061a:*?FW[uLD05DI!|&U+63Z:*57(@F~;]\>@4@R:C77#3#5!#673#!5#535#r74eQDJj" B*9($JTF7{3I -+EYL: 9}KH__FI@!!:,QTlLD@3"=7(AE}A;E<^Ԟ1 $-AHM4++0D$e=uu=r< O!5!35#35#&'35335#7#37&''67'67353533#!!#5###5.'!67&59,[NJQxKWCO;C! ,&yfXCYN;:KG+_a_FEQUAUUa\p@K(? GIRoC?>VVQ66XF *0 *#16:>T#!%67#5#'!5&#3#;##5'673&'&'35#35#3!5##!#!!!3!'GRq@8`+ 3++/JJJJc74eQDJj" B*9($-JG  }xRtM1G&_;1%88$=s!!:,QTlLD@3"=7(AEAA^A;E<A* "059=K^!5!!5!#!#5!%5#35#;5#67!#5'673&'&'35#35#!!!!#!'67&'7#5!&'$33KaD WWWWzf?;74eQDJj" B*9($JTaU88OBsYwxx32g߹5PPPPP0GI!!:,QTlLD@3"=7(AE}A;E<^="3B ==W? =734 f&'35#35#35#7355#3!5##!#!!!35#535#535+535#5#&'#5'67353533533##3+3#3#P(8($e>DI;؊IәA"74eQD?LPMM]]J"=7(@Fe66ee?>[A:F;D9?;:0m?$!:,QTlC48IIIICm0:;?9 1 (,0CGKOa#5'673&'&'35#35#!!!!#!35#5##!#&'7#'67'!5%!5%!5!73!535+53533+g74eQDDV"/(8($I;zfKzTYwTQGLLLHOI$!:,QTlI8@&"=7(AE}C:H7#"&=#'>7#5!#g74eQDDV"/(8($I;_SPPQQ+.d4%MMYN_PP H !Z*I ieRR  $!:,QTlI8@&"=7(AE}A;E<^Y;;S9DD9X 9;e9D=OP&%1"|<4KvO@ [*J%%****+(V !,;[4); =3LL3=!&4:**-$$4gDx$/.P8(0(..2<++.L] "BIn5>8.P1)9718J5B%)!5%!5!'5!&'7367!!!#5!#!675!,,ԩF$!"H ` `OO H;pp:mA;.:B8C92A<&,,p11ss)" 07!5!!&'!!! %!!&'#5!#'67!5!5#-f-=~-3MM3-~`[gg[;]K-@ wAgTDy,,DTgAs %4  $)9%35&'#!5%!5!35#'6=!'35#67#%3!535#53533#53'6=!3267#"&=#!&'!!&'#5!#5'67!5!5#' %&''67&'7:KH<Ra_ !G3__J4(YMż29> A"P8"Ip;U[^D9 vL"LL"LtgD'OxRF>#4"??#?//..]Q,GB2!H,3Q9) 11,3++32(%Yd  *JO\,2;&"50'3/(9  9).3$21 #)  #@#3#3=#677&'77&'77&'77#"/32>7!!!!!!!!5#C%3 @ #>" $:(3.&hJ,@,,ri fbbinujle qbJlcTTJVI}6 Bif+Ab5!!#3#3#3#"/677&'77&'77&'7nnnnnwI aq$)Q}&Wb(]u zzzz !S6 6 R 2( 1 $ /_ZXX靈DDnMDQpxIBIv=f\?X;Z:_9/ B|c|p)Yhb_'3d n* $ #)/K#35#3=#&'7'67677&'77&'77&'77#"/32>7!!#3#3#VAX:VD?e?D>0'B& > `=^ :"l334aN.Vb^\\fgk+do)ŏtzn$oi ln!Yb aZ#=_a<:C"qrA\;^;b '-6:>B`flrx7537#"/32>5#3267#".5'753#35#3=#2>5!!#3#3#3#"/677&'77&'77&'7VWH2  sHW'ne% H 73-33%2>5!!#3#3#3#"/677&'77&'77&'7nnnnnFU>(%E`H zzzz !S6 6 R 2( 1 $ /_ZXXlv7G@V>=f\?X;Z:_9/ B|c|p)Yhb_'3d n* '' 3QW]ci#35#3=#%767&''67&767&''67&2>5!!#3#3#3#"/677&'77&'77&'7nnnnn\/_aT3>4TEW0[Jny)kf^9I5MC+I6OLc#hVX"T\ zzzz !S6 6 R 2( 1 $ /_ZXX_82FIL'OL4I9O7U3>+MA}bZgR?C>\Z@D8Wr=f\?X;Z:_9/ B|c|p)Yhb_'3d n*'' LRX^d#35#3=#2>5!!#3#3#367#5346=33#.'7&''#"/677&'77&'77&'7nnnnn zzzzTj MpY-Fo/3#8@#35!#./35#2>5!!#3#3#3#"/677&'77&'77&'7nnnnnEC$ z)=@`\ zzzz !S6 6 R 2( 1 $ /_ZXX&d-TC*=f\?X;Z:_9/ B|c|p)Yhb_'3d n*   )/5;^#35#3=#!!#!!767&''67&677&'77&'77&'765!!#3#3#3"/3267`````\La3TE1H!A;H1>:MV:`NH 6 K 1" 0  / en[[[[r@M3+ \ZXXB>OC7UYpsU7oTX-b^{swb(Yh pR'6b EDNV?X;Z:\DJPV%#!3!53567!##35#3=#2>5!!#3#3#3#"/677&'77&'77&'7m9Ь~[\nnnnn zzzz !S6 6 R 2( 1 $ /hFFBKC<D_ZXX=f\?X;Z:_9/ B|c|p)Yhb_'3d n* '4 %CIOU[#35#3=#%&'73!53#535#5!#3#2>5!!#3#3#3#"/677&'77&'77&'7nnnnnmͯҾz zzzz !S6 5 R 2(1 $ / _ZXXF#@!IEDDCDDC=f\?X;Z:_9/ B|cb)LuqP'3d b6 '3 2PV\bh%5#%#35#3=#'67!#"/326!3+#2>5!!#3#3#3#"/677&'77&'77&'7ynnnnnR9U$I T`njFFwI zzzz !S6 5 R 2(1 $ / _ZXX1|0=`5 FN<E=f\?X;Z:_9/ B|cb)LuqP'3d b6 (4',28>Bcg5#5#)#"/&'73267!!!!!!!#5!677&'77&'7!5'"/32>7#'>7#536533%5#Mp5C>] ;+%!@**IKw4#C%4 B > G(W>$ cW&FOK ..a..mA75G84Td9/3.3+RXaQVO XPGKJJ//^?+/Qu/?%V;?("GR:F~~ '6 (,JPV\b#!#5#35#3=#%7&''>36767&5!2>5!!#3#3#3#"/677&'77&'77&'7NIKnnnnniCM9D̶ <2G,;p%( zzzz !S6 5 R 2(1 $ / !6S6_ZXX25$" D W*=f\?X;Z:_9/ B|cb)LuqP'3d b6 '7 06<BHs#35#3=#675!32>5!!#3#3#3#"/677&'77&'77&'7".5#53533#23:>7nnnnn= zvhhhh !S6 5 R 2(1 $ / M4947&'3#67'67&'767#5#3#3#3#"/3267&'765!!353dddddz 6 K 1" 0 P8?Y`G6E`>F(1\>?HgTph0'%60_____p !M3+ + / kN_ZXXn{swb(Yh pR(0ˇ&lYGb4bKv5CmP%2_y$;C0JuN3!?N>X;Z:_9/ B%76b F?NR:k ; V^dj#35#3=#677&'77&'77&'765!!#3#3#367&'767&''#"/326753533'67?&dddddz 6 K 1" 0  / kq____pTU0J,AC,F3RP^_ !M3+ NM&j8?>8`H0Q_ZXXn{swb(Yh pR'6b F?NR?X;Z:_9E8OhUWcJ=D>XX>: B%70BwwBBi{$)ov< 5 !'-p#35#3=#67#&'!5!677&'77&'77&'765!!#3#3#3'67&''67!&'#5!#"/3267`````)R7:hQ]x: 6 K 1" 0  / en[[[[ag<7$+5vHH.DfZ$MM@M3+ \ZXXxGZ Q3?B0{swb(Yh pR'6b EDNV?X;Z:\-G6E,*4s%&@yWD8E55t  / B%7 Fg#35#3=#677&'77&'77&'765!!#3#3#367'#"/326737373#&'#&''>`````z 6 K 1" 0  / oxeeeei 6) !M3+ I*"H+HH+(H/!s<60\ZXXn{swb(Yh pR'6b F?NR?X;Z:\yy / B%7Kqtkih3y1G  $*M]#35#3=#%!5!!5!#!677&'77&'77&'765!!#3#3#3"/3267!#3##5#535#`````<7!&''67&'677&'77&'77&'765!!#3#3#3#"/3267I*-ndddddbAMAB 3 '&@ O& / &B? , 6+K)-k94dE 4ZXiwixh?/)#5 6 K 1" 0  / u{iiiip !M3+ v=OK_ZXXms& E)&) -M=2A^ZVO Y(8'>gM:$?'LR"?C7E.{swb(Yh pR'6b F?NR?X;Z:_9/ B%7 1 $?EKQv#3735'5#;5##35#3=#%3!#3535!!!#"/32>7!'67677&'77&'7"/3267&'7465!!#3#3#3LԈԈbbbbbHYKNl )+I^X@L+ 6 K 1" 0 3!M5%  /Q^WWWWh$[[[[9UUU_ZXX~c@??&w'CDKT8v{swb(Yh pRp B$66b 9 C?X;Z:_9+ 9 -?EKQt3##35%#35#3=#%33#&''67#536!5!##"/326677&'77&'77&'765!!#3#3#3"/3267#HH?`````Mw"}M1a0F"C/KE)  6 K 1" 0  / en[[[[r@M3+ %C;<\ZXX3'C KU@`Fz#@)C',)BBU)A'{swb(Yh pR'6b EDNV?X;Z:\7&677&'77&'77&'765!!#3#3#3#"/3267rrJrddddd[7>_W7>cQlji{R[B)2De}rHHrJC 6 K 1" 0  / u{iiiip !M3+ G}}}}]_ZXX (D;:NAAdH+!=&<;(>!*<Sx ; C |2$AAt)o{swb(Yh pR'6b F?NR?X;Z:_9/ B%7 1 &+17=Cv#35#3=#3&'+35#5'#3#367=#735#677&'77&'7#.''#"/3267&'765!!#3673&'#ddddd?<= mDx$5eiip2vwwA 6 K 1" 0 s&T"$X !M3+ + / u{igCj!,*z_ZXX;NN%J &+Z:_9GG {swb(Yh pRHA!uGGu!7 B%76b F?NR?Xa{e@$J   !'-os{#35#3=#!5!5#35#;5#677&'77&'77&'765!!#3#3#36=!!!#"/#5##5##'#"/32675!26=#bbbbb;i::q:: 4 L 2" 1 /Ziaaaas1z4 3-:7:? :-!M3+ Vo :_ZXXkmsssss{b|p(Yh `b'*n ^%NP?X;Z:_9G(5x 2) B%7v??+z 9 >DJPt3=#;5##3%#35#3=#%#3##5#535+3&'73&'7367677&'77&'77&'765!!#3#3#3#"/3267҄bbbbbN҂H8% B-#\"%B()!6%F!. 6 K 1" 0  / ^kffffw !M3+ ssnnnN!!EQ?P?QZQp6B>] &:#! %!]9?4$B%4 B !>"++\++1++++++++C&-6+*+FF+*+6-&C&+*+*+|_<0+5)BBGNCG> EB 2?=6+ 6 !'-33&'#&'##3'35%35'35#35#'6&'77&'7"/326=#'>5367#5367#53&'73673673#3#&'#3#3#3#"/&'7>7!'Wu 1"kiiiIU<&: ; H9?I: m /<Q;sZE-4Lp(G!Z z8M.(.EL 7&0#!%"*+++d\!:A+qQM?OCO QC C;=CD+9SŮ^~'A>,@-,D*=1+4@&>C&I"+0+/+^<*0911@ 8W'   %Bm#35#3=##3735677&'77&'7767#&'#5!&''67&'&'#3#3#"/3267&'765!!#37&''675##;533#7&dddddssIs 6 K 1" 0 9:WR8&3"3=dYf}gg|]Xb5.4,0iiip !M3+ + / u{i}B,,D g|sHHsIf_ZXXhhhh{swb(Yh pRs%L@7&'767+!#7&67%7&bbbbbFf_nL@$ 6 K 1" 0 3!M5%  /Q^WWWWh>7/>LaF?28tGQ%pbQ4;4V>O>>@_ZXX[[[[[:[:HT>,"{swb(Yh pRp B$66b 9 C?X;Z:_9+iSZ?C7/,h!dX(BP"TG$MO%U  $(,>DJPV35#535#5!#3%5#35#;5##35#3=#5!26=#5!##"/?&677&'77&'7"/3267&'7465!!#3#3#367'NARRQQbbbbb=2+EA1QB1D 6 K 1" 0 3!M5%  /Q^WWWWh W359a&DDDAAD:qqqqq_ZXX??AA:@z/OZ1^?{swb(Yh pRp B$66b 9 C?X;Z:_9HDZ+bI2(  $*0U_cg#35#3=##5!'35##33#3677&'77&'7"/3267&'7465!!#3#3#3#!!!!#37#3bbbbbI,㙙9<]<` 6 K 1" 0 3!M5%  /[hWWWWhKHC;;::_ZXXDJP#35#3=#3!535#535#3#67'675#535#535#53533#3#3#677&'77&'77&'7465!!#3#3#3>7#5!#3267#"&=#'#"/3267ZZZZZaVSSSS.-f+0PPZNaRR 3 H / .  ,Md\\\\cRR ),H !" \+L mi C+$ _ZXX;;S9DD9X 9;e9D=O/J9G8 _ZXXp#LJ,4JJl{swb(Yh pR>)?0A $!>Z2=+kg(3_9+ B$66b 9 C?X;Z,9R{vU)B) 4 $*&'#35#3=##37#3677&'77&'77&'765!!#3673&'#5'#3#367+3#67+3#&''&''#"/32677#335#677&'77&'77267!!!!!!!!#"/&'7767#'+'##5'675#53533533#367!#&''67&tt  ֹ{{6"C$5 B  >"%!@**p6B>]  :':$-7"%.%*F|C 8EiiFtFggQC%C 2B(FHjUUyhI0))U))d'28U/LJUIME NE :EF:/I=5),)-)c<6$8h6%,@9.SI,_ MS444444'La':V:*;!726'*  !%+175#35#;5#67##3&'#'#35#3=#677&'77&'77&'765!!#3#3#3535#535+5!#3#3#3#3##5#535##"/3267HXYYY)$! yFbbbbbx 6 K 1" 0  / O\WWWWhԟBH!P!M3+ qfffff207#5!#67&'67'67ZZZZZugggg6 CM.SLyM/>U!E5,9 3 H / .  ,Md\\\\cC+$ ggQ=(4H3CV<)7"Bia-)."eT0\n%mR2X_ZXXB:)8T9>c:5.(4$/33|uv|o(Yhb_'3d ? J?X;Z:_9+ B$76#J=BS@@|T6#J,D";i5 :@@!EUA'N0ZB>s4A #'+/37;AGM#35#3=#5#3267'67#7#5!'#3735'35#5#35#;5#677&'77&'7"&='#"/3267&'7465!!#3#3#3>=3533#!"#33!53=!ZZZZZKJI23!FccEdddd??{?? 3 H / . {.K$>&C+$  ,Md\\\\cN # 7,Zcc#*_ZXX==G  (",24b4444'.nnnnn||uv|o(Yhb_2 Kf% B$73d ? J?X;Z:_9F[ګҒ.:*<' K.??i6 9 !'-59=#35#3=#35#735#67#677&'77&'753533#3%#3'675'#"/3267&'7465!!#3#3#367#535#535#535+53#35#53#3#3#3#.'#67ZZZZZ円z0* 3 H / . N^^__HF"5@C+$  ,Md\\\\ckDoo%G41p}}nnA.';8M`& $^1_ZXX0//)53|uv|o(Yhb_ d8IL B$73d ? J?X;Z:_9bB%4:/304''''403/:'14/=#_;2 7 !%)-39?%5#5##367#535#3#%#35#3=#5#!5#677&'77&'77&'765!!#3#3#367367+535#53533533#3#3#3#3#3!##"/3267 FGNccccceve 4 L 2#1  .[i````s"$H]ggONff_ RM M3+ <>3@Y 559_ZXXgggg{b|p(Lu `b'6b ^%NP?X;Z:_0' ':5?<<<3@=,4mo! B%7 !%)-159=AEKQW]c267%!!!!!#"/2&'7!!!#!5#!=##35#3=##35#3=#%'6&'77&'7677&'77&'73267!!#3#3#3#"/7&'7677&'77&'73267!!#3#3#3#"/7&'7# 0''m3R8V (  3N2qqqqqBqqqqq-D#6A2 B z%>#5\12 / ,||||'6)05 -T5\12 / ,||||'6)05 - &5?( ( vI5$'8 h H $o$K$$r$o$K$$DB 6M Q3 6; ?#.B.$'$'$}S$!/()?;L O> 6M Q3 6; ?#.B.$'$'$}S$!/()C/7!5%!5!'!3#5!#5!5!5!3!5!5!#!#"/326_VL6LRm$P(R,eZ0& KK9Kޠޅ>L3CC%; LZ!5!7535#;5#35'35#53533#67'67&'##"/326=###535!3767>7&'l^vNNhO>F/(]>:H}GG:H-CkkCmP**_v$;C0MYOA CB%";Rn0ʈ&mWFd4cKw5 +A #'A_35#7535#;5#35'35#%#36735'5#;5#3##"/326=###535!##5!53'67+367!!!533pK{d@@SrMԊԊ%))3#D4%'LLA)y8LKL: L>>:H}GG:Hv/GA5v>:H}GG:H- 4`aaeO'PcCP+&$12A,5:7/CBnuA.#0A6'46!+6 !%)-4N35#7535#;5#35'35#%5#5##35#735#5353#367#3##"/326=###535!5367+535+5#535;53;3#+3+!#&''67&''67pK{d@@S}׊ }}}}}E-J%))3#D4%'%OJ}I,,I}M}K--K}K >K*HOl%ubyeF+B5/>>:H}GG:H33:::3f333+f99f>c)=J85;='EA+ 2:& #)-15>{35#5#;5##35##35#.'#635#7535#;5#35'35#%3#6#%367#5!!!#"/&''675##5'##"/326=###535!TTTTTX `aa&K{d@@S7. %9D  /F ¢`ia? ")3#D4%'ohhhhh.]]] 4 \W>>:H}GG:H 1l*hU['v B 5@ j/)A CB+@ !%+/37DHVp5#;5#!3=#37#3735!5!67#35#7535#;5#35'35#3533533!#5!53&'#5!#33##"/326=###535!LMMLLLLL9M# K{d@@SFPFfA ;<%))3#D4%'DDDDDuBBBBBBF8:*H>>:H}GG:HOOOOj>>gB0BC/BXA CB<; $,%!5!!5!#5!!!#!#"/326=!#!!5!53Y6?LORI:$KfZ&^LPVY'Wͯ,vU)D)*BBY<; -3!5!!5!!5!5!#3#"/326=!#3#5!53!#5!!LL6St$KfZ!^LtPIZFFFF\U)D+DBYY # 86767767'&''6767#53!!!!!!!!67&>u3|#|3BG5ޒ3R{=,(N99k&}%^Ir0{NO/V)xvR0\|.! ";CACS367#535!!!!!!%6767'67;rHIC -cP= Kvۗ\=1:N1=HKf?1> º + pH##Pҍߋޠ:)=>Z $!<" <8M4">33>!*6#j5~3>? &;$'<8#/#.5:7`$>:B#=$K:N5&'-39On.'7#6'!#&''6767#535!!!!!!%6767'67'>73>733#6".53673:>76`eKi@7= خ*vH##Pҍߋޠ $ I >KW)SHLL'' F553%3=H ;//<8%0%05:7e$>:B#<$K9M?-#? ([Ak 8s"@367#535!!!!!!%67675367!&'7'673#&''67&''67 -cG_PKf?1> º + pH##PҍߋPCI/ޠQG:Fm}ґiJN1E $!3MK3>? &;$'<8#/#.5:7`$>:B#>77 14$* =$K:<# )&> I5%A 59A&2Ej5e 50#*.OU[a%3535#7533533#5!#5#!5#;5#'7#65#!#&''2>367#535!!!!!!%6767'67|KKMM睝"-R=Ka?1>ʹ pH##PҍߋޠNNNN:<<<<((xTTTTT_"-NN3>? ;"+<8#/#.5:7`$>:B#=$K:N0 (`flr'7#6'677&'#57&''676767&!#&'3#&'#'67#535'2>367#535!!!!!!%6767'67"-R9Z5@7>k8]??O?A#J/(J$-f2Ka?1>\29S*,>KCa(r=x2 pH##Pҍؐڟ"-+S`leW/La>x{7?i| qf V3>?  O:;`;9JtZAdl:I;"+<8#/#.588T"?9@#;"K8N.0 !AGMSX\q.'#6!5%!5!#5!%5#!35#67!!#&''>367#535!!!!!!%6767'67!!##35!#&''67&'7zqV  QM\Z2UKR6&> Э ' fH##Q܃ ُޚNId< $pp%%%% -+,(  23/('|'9';.8-s:485)=%k.,+$8 )'8 *4 17=CIOUr&'#6!5%!5%!5!!#&''6767#535!!!!!!%6767'676767675!!!#&'7#'67+367ufwwwJS0$B Ȱ(kH##QҌ܌a-kg+nt,z'N oKu{ax\2K#&&O&&(&803/" 6(:5!*"*7;7 O#?:?$=#J:M'>.G+h-K-T2n0Z/a633 9-#&$0"9#A+933!535#535#5!#3!535#535#5!#3#3#"/3265AMvveen$nffo__g$ullM"E&B9! Mjnx??x:sAAs:x??x:sAAs:xtV)C+A/=_3533!535#535#5!#3!535#535#5!#3#3#"/3265'3#&'7#'67#535#53533533#Mvveen$nffo__g$ullM"E&B9! Ԃ_@+C^!)L&{HllIJllXXj[99[5V==V5[99[5V==V5[1V)C+>7?2C9,*T:65M>X;EEEE;Z3(.4R767&''67&?&733!3!&%7&%7&23267# &53$%vO2KrZy&e$w+%AC&B%ACKK5%AC&=%AC&=O K1)aSOtNLAN44MSa!`T4Q1V:\730QAu++;+:++;3r.,+;+6&,+;+6$m+/3F w'J@K'=)AIjp767#&'#3&'3&'735&'753!5#5!#'675#'67!&''67&:>7#".=367%67#353!5335#535#'#&'#5'67#53533673#373533#&'#5'67#FI8*o !(+)! #'j$$5:<<z1e_)4/95BIXI@:P0./ H=C=j]Ká89LJ%9{6;;6{{-7G2'%)A+A#M*cxH]'> i{]Hxc*M#A+A$) 7&QD$'&/ #f#2! F}+U,<,Pt)<%8!1/%%!#%-%%   2%2)  +Y6_-gI{{Ig2@=80/6WK;TU9FF*3C !1@YFF9UT;KW7-7:>< 4<!5!#5!5#325!#'>7##!#"/326=#"&5##5#5LOR+4K?pwslx#jPMB%KfZ&YXI+J^W*# BBJ_<>5kU)D) 7v@@8BCGKOS%.''26767#3:>#367!#67&'7"#".5#'$?!5!!5!!5%!5!i a)o!]'!.dO&)M#404>; =53]La 6 ?^U -@.-UUG &!=9 &(- !'0CVvzzzzd2:,1_[`hE !(TR$  F "&j35#35!35'35#67#623267.5!767+367!#67&'7#"&5#'67.''6767#5!#67&TD iZ@J& P@*-R8I%LJh< = 1,(g3< (5&$'k"q%KN#vzzzz7&''67&''67#536533&'73!67+".5#'67+3673#2636767&'7'0hhhhhhhx+%:$ 3):W0X7=)%@?\"lvK 1A/H4-?$D(G7/B(2 %!IB;xth"-'!Ey Lz <,&5)5 _W2(swwwwd2:,1_[`hE !(TR$  HF;?CGKW[_%62367#.'326#367!#67&'7#"&5#'6?35#35!35'35#'3##36735#35 DiZ@J&1I%LJh< = 1,(g3< ( ²TaHDJ]eeeqTi  ':2,1U]U .5H'+./6j=\vzzzz7+".5#'67+3673#2636767&'7'0hhhhhhh5yq:muT[P1`e>>ii> %),1 %,s>d2:,1_[`hE !(TR$  !F V35#35!35'35#35!3&'7367'67+3673#2636767&'7!+".5#%"&=35##5';267#"/3265#3#327#```````HK7/7'j Cs$J6* * %!HB;m` ' O-S{A JG.|LK2{Y8.15(swwww]:20-_XR[= 0:,!%' %,.V6' $'< #VV:f = !F C35#35!35'35##3#33267#"/326=&'#5&'#5''67+3673#2636767&'735#5!#3+".5#5#675#6#```````!zY yYN !0 ";"? JG.'j Cs$J6* *ʴ! %!HB;m` '''''(swwww]:20-_XR[= 0:,V<73#&''67&'67>[V_vzzzzQ;1MC_Q?SV>R> &= ]z= *  =T?> S">9@E !F!)I%67#267&'75#635#35!35'35#%535333267#"/326=&'#5.''67+3673#2636767&'753>7#533'67&'767&'353#3+".5#VL7(6U```````YL(N #?/4 zfCSE.'j Cs$J72 +C3$-/*.%5'5#!&*(1C  %!HB;m` 'J@JCmL8[swwww]:20-_XRKL (:, #&, *$#*) .$' !%' %,A;?CGKu#535#6%#535!3#&'#5''6!53!#3#&'#5'635#35!35'35#&'7"#".=#'67+367!#6'62767#267&._xMtՁZ%9(&7G1E 3+:MwP{9b([:G3C%R! 2 4 52-TGQ(&fJ'Iye?<`{ [2 77=5@7==7-*"+|lC3).S='3VV@=7C<.)w""!'01z  6K "&,28>67!35#5#!35#%'67!!!#5#67%&'7&'7&'77,(60SK B)1L(LAA@P K 6F7@M>T:b1010syyyGG#?3.\?%(ss"]t!vbhs ql`y|_ng$tb K .S67!!!7!5%5!)5!!5!!5'67!!!#5'67;&'73&'73&'7&'#5!#+&&K S   .WK g+XL2KGA(2~ GE,# /@U>5$NN*"IIII5EEE =s@@Cb  ? j48M/)&*9+#12(!FA0#,,4& K $*06<LRX67#35#35'#335##'6733677&'77&'77&'7#3###53#5!'67?&ZMMMMMMMMD1Z.F py&< &a>: = : ;MGBK(D'D'MBOb#>10p}}p}() /?5,\o r`~gdi jdOj WbuDQDCox{~ K $*06Z67#35#35'#335##'6733677&'77&'77&'767#535#53533#3#&'#'ZMMMMMMMMD1Z.F py&< &\95 8 5 6 kEMH-FMG b#>10syysy() /?5,\o r`~gdi jdOj (9BCCBD[ K (8>DJP%!!67#35#35'#335##'6733733#3#5!#677&'77&'77&'7Vw________H1Z.F NML&= &j==< =9+'*710syysy() /?5,\D@@o r`~g[r jdWb ^[ K  $lrx~332>7!35%67#35#35'#335##".5'!#'673367!#"/#23:>7677&'77&'77&'7( ZMMMMMMMMJ !>8204;   D1Z.F pV&Kn""1N H2 -&< &\95 8 5 6?0&4Ad#>10p}}p}510p}}p}() /?5, xabQ?(piD^.E5D!so r`~gdi jdOj Wb K <BHNT67#35#35'#335#!!!!!##'!#'673367!677&'77&'77&'7ZMMMMMMMMEN ,J%D1Z.F pU$I I&< &\<< :< 8b#>10syysyCE䑃() /?5, <o r`~gdi s[Oj ^[ K (<BHNT367#35#35'#335##'67335!#!#5##'6677&'77&'77&'7tdTTTTTTTTD1Z.F z60LL"+!+&< &b9@ 8 ?5T.#>10p}}p}() /?5,\DDx66h8,Oo rjzehf fiaY ZaK +CIOU[ag67!%67#35#35'#335##'67337'67&''67!&'7&7&677&'77&'77&'7Z? BmXyBBBCCCCCB.T-B `)[G='+|DJ1DlWlr b#7 $Q 5 04/ 3 Hp S>%<7*syysy+( *?10\KE5<:I!733!'67%"/32>7#3:>7"#".5!RuCCC|CCCCC@+!#8 &N 4 *3' 2 8 @)O,A e7aH $?U@ #C2 [%% K 4,*EC+ Cb0110syysy;.36Wn z|rrym_nmb&TT OE$)+, /?10Y8Z ?A(Aw,? &F?$  /'0.27 !%K !0UY_ekq%!5!#!#567#35#35'#335##'67333:>7#".53675!677&'77&'77&'7(4MMaSSSRRRRRD1Z.F wt'o+'4 K A<5HH;L=&< &]:6956o+/+#>10p}}p}() /?5,\t  %(*0k!<>=#uuko r`~g[r s[Wb Wb K PV\bh!5!!567#35#35'#335#5367!!!#"/326=!#!#'673367677&'77&'77&'7?ZMMMMMMMM O/U >#WE" M'.D1Z.F pd7&< &\95 8 5 6ex||9#>10p}}p}A$? $D1Z.F pj<6eP3R__WM3I,<@,F4NQb#>10p}}p}8o r`~gdi jd?>N ICwBBvr4() /?5,fz.-mx5| B?][AAJJJD#7 $Q 5 04/ 3 b%<7*syysy+( *?10\:xxxQ!"%;AZS(@(nZASSn wrrynamwYVc ]^K !04:@Fa#3735'35#67#35#35'#335##'6733#3677&'77&'77&'735#535+!#3#3!5M^OOOOOOOOD1Z.F sz&< &_9= 8 75ӂK:n*710p}}p}() /?5,\eo r`ehf fi"OY XF>x;x>A1 K !'-A|67#35#35'#335#677&'77&'77&'7'67&'767&'3#"/326=####5'+'673367#5367!!353XyBBBCCCCCh#7 $Q 5 04/ 3 yqQd%qneN,@SHi't`7;.KH"B.T-B `_8 H N)uKb%<7*syysy10p}}p}() /?5,\6<CC>A:C0B o r`~gdi jdOj Wb K $*.4:@o67#35#35'#335##'6733#!'35#677&'77&'7#'67&'765!#"/3265#3#3!535#53Mt>>>x>>>>>C)O,A |fHɄ#9 $N 6 +4NC ! 3  >M7 kkzzkkb0110syysy+, /?10\5P:n wrrym_nwXW5 DH 04rk#V)C+U:s<7#Y}FFFFFFFFKK#: $T 6 /6. 4 60xP[6<&C-R.C he:%Kj0TM>$! P0G$S'{b%<7*syysy[`yn wrrynS{mcVc ]^/`yD0&+( *?10xUnq 11;As`;04VEK $(,;CIOU[g#!##"/326='!5!%67#35#35'#335##'6733535337&677&'77&'77&'767'!KӾ:,AA {;^OOOOOOOOD1Z.F sN;QC:C&< &\95 8 5 6F'=4_"@T+D+>M*710p}}p}() /?5,\AYYA<oo r`~gdi jdOj BDannK *8Aciou{!&'67#35#35'#335##'67333&'!5'67'67!5!&'3:>7#".=3&'77&677&'77&'77&'767'67KCBgMo<<< n@GDO0110syysy+, /?10\q{lH3177=%Hb/CXCCom5/#? %& /1/ 0547'677&'77&'77&'7653533#3"#".='6?3'>73267#"&=T|FFFFFFFFD)O,D nZ=!" 0#9 &S 6 .5# 3 /M%7 /)&0-( Z.6B GL[%I< # F M&b%<10syysy,+ /?10\8ds0-5 !n z|rrymammc@MB ?% 6;5A@;"$)=f".<&{u$ 'v-16 !D K OU[agmsy67#35#35'#335#%5367'76767&'7&'!#&'#'!#'673367'6'6'$677&'77&'77&'7^OOOOOOOO2e`B$&F$c&@IA?KF %A\PmOuD1Z.F sF>l&< &_9= 8 <5b*710p}}p}P?0$ ?EbJH6ep* )3?X1BInF7() /?5,)I'6Y.=-27u*?$8$?!Wo r`ehf fiaY ZaK !%)hntz3&'#&'#!5!!567#35#35'#335#%5367#5367#53673!!#3#&'#5!#'!#'673367677&'77&'77&'7wx <XyBBBCCCCC M ~6M ML#B.T-B `Q; #7 $Q 5 04/ 3 7"<"3:XYY%<7*syysy=(1:4 ?42?/%:,-=oAM%,, 5+( *?10uCl+n wrrynamwYVc ]^ K4:>BFJY_ekq5##535##53533533533#+5#!#3#&'#5'667#35#35'#335##'6733677&'77&'77&'7/B>>L^KMKKM^PWMWMt>>>x>>>>>C)O,A |f#9 $N 6 +4+ 3 ssCI;CRRRRRRCAICo`CappaC`0110syysy+, /?10\n wrrym_nwXBDH GG K $(7PV\b!5!!5!#3673%67#35#35'#335##'67333!5&'735#535#5!#3#677&'77&'7;;OND^OOOOOOOOD1Z.F s959&< &a9? 8 NX^g-3 2%*710p}}p}() /?5,\A3XL NUb:Z>>Z:o rjzehf fiK $(,28>djp67#35#35'#335##'6733%5##35#677&'77&'7#3+&'#'&'767+35#5!53!7&7'6Mt>>>x>>>>>C)O,A |f裣9#9 $N 6 +4IN!UKT 3HJK(<)<>.9)b0110syysy+, /?10\{n wrrym_nwXUrCm n<MU >LfwKUATTVWXmaOL K +17=Cu67#35#35'#335#'6=367'&'67677&'77&'77&'7'+'673367#535'673#&'#Mf777n88888&USG -A2:w(g16z%@ )n#8 &M 4 (3(  >)O,A |LE"S`*8 ;7ZXG442H#> b0110syysyCEPK\zEg0|n z|rrym_nmb`Y+, /?10vC?+= Ct07!677&'77&'77&'7 FlC+ZMMMMMMMMD1Z.F p\g\wK$W X !#<^C6 &< &\95 8 5 6C#>10p}}p}() /?5,\yyyy==zcAA +o$ B;E=o r`~gdi jdOj WbK "(,048Gekqw}35#35!35'35##!&'767'>67#35#35'#335##'6733#".=33:>?&'7?&677&'77&'7zH 2 B#F;Mo<<-#8 &N 4 *3K;BGK $+Ear& V0110syysy+, /?10\A786 $'$> +#4P=3C n z|rrym_nmb N $(/5;AE67#35#35'#335##'6733%5###3677&'77&'75373#67327#"''67&#'67&'765!&533&Ol999s99999@)O,A UMMHDZ#6 $L 3%1g9 %-?!O  CG5Zv+X&/F0 <DK!b%<10syysy+, /?(9\>B^n wac_ktX(AA64JC̔mÎ5M!fu&};6JbO K9!#II#@K $-159=CIOU67#35#35'#335##'6733%3#5!#35#3575##3677&'77&'77&'7!#"/32>7#'67.''676767&'767#Mo<<13: lq w~gW :0?03Kb0110syysy+, /?10\U,,dhh:dd:hfn z|rrym_nmbVc ]^[uZ.Coin78K0A +0B(!!4-iX_K#'+/3BJPV\u%###35#5!#3#"35#3567#35#35'#335##'6733#326677&'77&'77&'73673#3#5##5MB4?r~@~t(FjjnMf777n88888>)O,A |L&4#8 &M 4 (3( 1 MGS?nCtI'BBfU*w0110syysy+, /?10\*^nn z|rrym_nmb`Y TR1TR+f,@EK"&5nrx~#36!5!#!#567#35#35'#335##'673373267"#".='67#535#53533673#675!677&'77&'77&'7+:)WMMpMo<<.L;L9AA4-8)HE;0(-77LLn z|rrym_nmbVc ]^ K $*06<i67#35#35'#335##'6733677&'77&'77&'7#3#"/32>7'6765#&'7'6735#5!#3#"/32>7'6767#&'7'6735#5Mo<<8TEq^}v32g߹5PPPPP0HH0110syysy+, /?10\n z|aym_n mcTd RZ2D!==Y= =510K $(59=AGMSaew}67#35#35'#335##'673335#535#5!#3%5#35#;5#677&'77&'77&'767'675!26=#5!##"/?&Mo<<?RR?54?n wrrynamwYVc - 9.9A~~(K !'+/37GMSY35#535#35#35675#535#67&'767#35#35'#335##'67333677&'77&'77&'7653533#;3##67&'#"/326=''67Ǫuuu#J<&932Mo<<KNN!L:N֩/59D(<0110syysy+, /?10\n z|rrym_nmb?MB <3VVA>@>:-A'I1C0=PwQ.C(PbK5'//%K $8<@DHV\bhn67#35#35'#335##'67333#5##5##535#5!#5353753535!#5!5!5!5!5677&'77&'77&'7XyBBBCCCCCB.T-B `SKJK}}}n}}}YMYm#7 $Q 5 04/ 3 b%<7*syysy+( *?10\w,AS:Qn wrrynamwYVc ]^K $(,04Cy!=#3!5#"&=#'67#73567#35#35'#335##'6733&'7#5!5!#35#53&'73673#3#3##"/326=!677&'77&'77&'7h $^39 v$U _E Mo<<S*[J FGͬ>__>l] O=#8 &N 4 *3) 2 W77S, (8+-@t24#Ok44I0110syysy+, /?10\IB-?44>,7.% !%>4q4?TK$A &O?F?n z|rrym_nmbVc ]^ K #'|3567#73567#35#35'#335#3#&'3#3##5#53=353&'#'67&''+'673367'67#53&'73533'6677&'77&'77&'7\?C7Z4@Mo<<>=AJJ!ZZan z|rrym_nmbVc ]^K $)159=EKQW]ntz~67#35#35'#335##'67333&'!&'!#3735!5!#!#5677&'77&'77&'7.'!#'677&%'65!Mo<<z?2."2"3424Bb0110syysy+, /?10\&&*E!!&dL(f(n z|rrym_nmbVc ]^PhQDBOlDOMaOECKKK !'+/37FSW]ci}5#;5#!3=#37#3735!5!67#67#35#35'#335##'67333533533!#5!677&'77&'77&'73&'#5!#3!5SSSTTTSS7#&'76=3533#!"#33!53=!Op;;;v;;;;;A)O,A \XLJ41!GmmEmmmmDDDD#6 $M 3 '1}0X&+@0 $N! 7-`mm#+b%<10syysy+, /?(9\y7677&'77&'77&'7O O [<4D&hJ/7!C"7 B  ?"'<'*JJ6J.*58!9>< y BVSmitjWki[PY[OEJJE I,KQW]!5%!5!"&5#'6#5353332675'67"/32>7!3673!!!!%&'77&'77&'7EE8;26=\NNI 95$C U:( > Pn-) A J? F=.JJ7H=nk>F[ . $ {dRi BZU/4*H8>>t0c_ [hWQj>">GG>$CIOU[!5%!5!327#".5!'>5!!#"/327!367#5!#3!!'6&'77&'77&'7F::  <   *4=.$M',!Q;$A  }<&;#8H6@51111Ihu#NpP2Jƿd+o < 77+\TKUCW OL H?DD02/4HI%+J73###!67'6!5%!5!&'77&'77&'7"/32>7!367!!!!!vvK ?*>TT < T9P7U:( / P_,q<@J$< nq72JJ7HXk f^OYYP"=HH=x BYV/4*H8>>u0)H Z!5%!5!'6&'77&'77&'7267#"'!!!!#"/3267!3673&''%&'77&'77lB"7A4 C @$ > $O  D* A;J;Sf!%Y OP@?+K5%:A3C>}44.4hdXTbSW UV NGJL&<++<13C9,5.rCDh!5%!5!".53673:>7###5353677&'77&'72>7!3673!!!!#"/&'7#''P=KpB!! F20LL?%>&| ; 8  f N [($)g8:C.JJ7H ,m:=? Y &!'433BBkltkqQ [hH>GG>5YV//04%8>>5 < WQUNJ (.4:^5#%!5%!5!!#3##"/326='67#5677&'77&'72>7!3673!!!!#"/&'7'~''<H8??=\N e&cS =%n:6  f N [($)g) 99iJJ7H;BDU+B/xAzD[|smXk pTH9L8M5YV//04%8>>5 8 9oJ[IJ .4:^&'6!5%!5!'!767&''!67'67##!&'77&'72>7!3673!!!!#"/&'75'D'2222 365="< Lcs;7 f N [($)g+ 9BuULzZDJJ7H5N>[evUn;m9N2KOwh @4\f `dHDA=I5YV//04%8>>5 9 I_RR(H U}!5%!5!'6&'77&'7'673367!!!!!#"/3&'73267!'67&'767#"#".=!#"/3267#3267kA"7@5 B @*>F  m_|OMAAD:G = $ !"Y!\S*+M:/ D 60,YKj #"H=#%*.n&L((+(ODCTD<?B;75=5Sm 7!3673!!!!#"/&'78/95 ;>sp  : 5":'"1#n87 pb@ u N j($)g 6 4nI7II7H^e `dHDA4QB WA@pUBi1I0 zfYS5DC>5 6I_dA *6 QW]c!5!#363&'#367!5%!5!!!#"/3&'73267!'67!535!67!3!&'!!'6&'77&'7 ѥWnA@nP GAD:G = $ !"`11_l)P3lbA7A"7@5 B @-'TT'-A@.%,((+(#|[<'%(;09` ED< 7!3673!!!!#"/&'7 LLBLLL[''aBGLGE%>&| ; 8  f N [($)g8:CִJJ7HX8?kltkqQ [hH>GG>5YV//04%8>>5 < WQUN <I"&EKQW!5%!5!!67'67##3#3#3'3#"/32>7!367!!!!!%&'77&'77&'7TTR,>&= H6666666U:( / P_, ; I: E8.JJ7HBKtk!?**A BYV/4*H8>>u0qQ [hWQj>">GG>)E U!5%!5!'6&'77&'77&'77!!#"/3267!367!#53&'73&'73673#5!!!!xB"7A4 C @$ > $M;J;Sf!%f NC,C*"-F!N T44.4hdXTbSW UV NGJL&<++<.rC57)>?B713Ԕ', J (.4X^!5%!5!&'7'67#67'67#&'75677&'77&'732>7!3673!!!!#"/7&'7:}KW/ZI/M?K.2R9 n5=J2BP1I8:"h89 6 3' N r&"'eN4.JJ7HOL2MM&D6AI8D-IE.@<1Z}wh\f i[I_dAZU/:%$58>>5 7(Q4=I J GMSY}35#5#%!5%!5!'#3#"./32>5##5'67#'6735#53&'7367677&'77&'72>7!3673!!!!#"/&'7WWIGz    cI;^&u?PE VGDGP!:"d73 u N j($1U 5$}<< 65buwh\f `dHQ4=I5YV//04%8>>5 4I_ST *7%)-{67#67'67&'!673!&'327%!5%!5!!!#"/3&'7!.#'326='675#535'673&'33&'73#327#"'!!'6&'77&'7H0 ?lF aP`XQF=Vl # > <>G:G 6H! B}i\NW =lMLF)DT'R]"3U5!%< QA"7@5 B @;++$+94 2=: *9c""+!p]<+#\8#3:7)2 0 /<9>7- .1+75'+TtODCTD<?B;75= J17=a735#67'>7##!!5%!5!3!535#'673533#&'77&'72>7!3673!!!!#"/&'7 ="<IU''eSF3G EI}};7 f N [($)g+ 9B(:wh5wJJ7HCC\: @nnAQ\f `dHDA=I5YV//04%8>>5 9 I_RRJ !qw!5%!5!%5327&'3#&'77&'732>7!'67#"#67'6736733&'!5!&53753673!!!!#"/7&'7: ˣ &3" XV85 6 5 % :  HM5v ? EGH,&#N r&"'eP5.JJ7HAAĘF48ZCG\f i[I_aEZU `&8 @=.C~ ȖgPC~P&9JH:%$58>>5 5*DA=I JQWz!5%!5!35'35#35'35#'367'#"/326=#'#"/326=#'>53>5&'77&'73267!3673!!!!#"/7&'7N  2A@@@@???A4", "2!B)52!B*6A23 0 - N zk&"#ZI..JJ7H]< A]< AC#DOrnD,l2D,n4El5C&^e `dI_k;Ow/+44%8>>5 5*8MM8 J 7=Cgm35##36735'35#!5%!5!##5#53'67+3673#3533677&'77&'732>7!3673!!!!#"/7&'7WWVVG E eWWW\K=/c(,GdLŽ+tK\:"h89 6 3' N r&"'eN4!sv+K=9v>5 7(Q4=I J3AGMpv!5%!5!53533'67&''#'67673&'767#67&677&'77&'73267!3673!!!!#"/7&'7N  M&J73 G !c'@+V#@ O*5%2+:.- k+(}"4"d23 0 - N zk&"#ZI..JJ7HAXXA ?:XHW-B7Kil%>0%;$/Z,9EJOJdE/6:cjmrn^e `dI_k;Ow/+44%8>>5 5*8MM8 J @Hp!5%!5!#5!%35#&'77&'77#"/&'732>7!3673!!!535335!67'67#"/326='6753675^Hj84g&"'e 6 3' x O mNkGEZ<:"9;Z B$NITzVz8).JJ7H9_\f i[HQ4=I͂5 7I_dAZU//0$58>>>PP><DJPt!5%!5!%67&'77&'77'6536=#53533#3#&''67677&'77&'72>7!3673!!!!#"/&'72ױ5A AA`@!7@7KI;0/H)y*z="j;7 u N j($)g& 97.JJ7H>4C4aTCucBG^uli{@ !?77? @<>:7C{V>5 8 I_TQ J 8>Dhn#53'35##53'35#!5%!5!5!5!!3#"/32>7#'67677&'77&'732>7!3673!!!!#"/7&'7lABB?BB ud  #$0Q;+  G%':"h89 6 3' N r&"'eN49y9yJJ7H==AA? }n' B>5 7(Q4=I *6 #)kqw}&'!&'!5%!5!/67'67'67'67!!#"/3&'73267!367!#53'6=33'6=33#5!!!!'6&'77&'7hG7y$nH6t{@)C>1?k?)C>1@PAD:G = $ !"h HJ :|EJ ?Hp cA"7@5 B @- EM EM((+(4> D44=>93= D24=D#|[<'%(;09 1($+!H%4,()+!J$2‹ #ODCTD<?B;75= J *Eek35'35#'677&'#57.''676767&"/326='675'67#533"/326='675'67#5367'7&'77&'73267!3673!!!!#"/7&'7])H2:54U5F5f_@>.D8$JPN 3. 6P[>9M:0d3/ 6P[>9M:0a 4"/ 23 0 - N k\&"#ZI..JJ7Hj>BX&cSR4ERBjg " AWe dH 8?kKB@H[DL>=-7?*?kKB@H[DL>=-7?0Otk^e `dI_k;Ow/+44%8>>5 5*8MM8 J HNrx!5%!5!5#5##3#'67##53673#5#3673#3#3#367'67!&'77&'732>7!3673!!!!#"/7&'7:sssssssG$l97E I C!^C dojjjjd :"989 6 3' N r&"'eN4.JJ7Haadd:h&Kv*2 6iSC3>19>5 7(Q4=IJ$*N!5%!5!%#'6767#&'&&'77&'72>7!3673!!!!#"/&'7%5367'767&'767677&'7&'3'67#&''672~ )C1 K"$<,&4>[;7 u N j($)g& 97gAK,' @-( $=0>N_81!9{4"<"X805C,f*k".JJ7HbJ[yA 5L[710C2\f `dHDA=I5YV//04%8>>5 8 I_TQ<# >546-/?,BAh[)ST ,8 whgjG=:>=]I7!3673!!!735#'273673#67'#5##'67#53&5#5PX(2)NNOOOO84g&"'e 6 3' x O m=*TDį FW& >L6Z,:"(FIe9ON.JJ7Hk;00;ke7ae\f i[HQ4=I͂5 7I_dAZU//0$58>>.]A-A `@EMAGB5MQwh,,mCIMAELaa *? 4`35#327%!5%!5!53533'67326=+5!##"/%"&='67#53533&'73#33267!!#"/3&'7!367&'7!!!'6&'77&'7 # > Ml97 @ SKw"0-G$XA0Id 7+'(D &C !"T<>G:G 6 &A) :B aA"7@5 B @l(*9c""+!b1,,1)1A8~~@'/4 Eo==~8JJ +-8A('( p]<+#]#( tODCTD<?B;75= K #ntz#667##3'35767#!5%!5!735#!!#"/3&'73267!367#5'#5''6!53!#3#3#3#3!!!!'6&'77&'7A_JY1K'W ٣j{>?9D > $ (%I"$\=MP|HB"7@2 B n@đ>D@W+-:!e .v$r wX<%((;.69! 5!'߸=(HKK<. $!$ . rOD?L>B D=A15= *: 9Vrx~35#67#&'35#327%!5%!5!#3#67'6753>75+5!'67&''67!&'!#5!!#"/3&'7!367!!!'6&'77&'76G)7@2C@a # > 䊇*p&F 2XKw vK.-,`?? 8MU\ !K<>G:G 6 O RA"7@5 B @3=oa8"*9c""+!%0/2%4~/ +-? /-!/{|Zp]<+#] tODCTD<?B;75= *= z67&'&'327%!5%!5!!!#"/3&'7!3>7!#53'673#3#3'67&'7'67&'76737#537#537#533#5!!!!'6&'77&'7*!#77:3!4<$ # > P>G:G 6 H;e]L/1;#71@1-2$@4-:$*G"$.3";H{ UA"7@5 B @iN*9c""+!p]<+#]| ; 0)0)$$&)(( '%)0)0(;|tODCTD<?B;75=J &,2U[`flqw}35'35#35'35'35#35'35'35#67#677&'77&'73267!3673!!!!#"/7&'73#'67&'73+'67&'753>7!#&''67&'67xZZZZZZ[[[[[[I3)"4"d23 0 -r O PA&"#ZI.Ֆ92=U&6!՚;7.9e(:.L Q4F 6HioM>]).JJ7H44d440444d4404,70jmrn^e `dI_k;Ow/+4$58>>5 5*8MM8vn598#!(06::=2;9j= + =E4 =J?);1(4 6<BHNz~%2327%!5%!5!735#!!#"/23&'7!!67#53#!!!'6&'77&'7677&'7&'#5'767&'767677&'74"553535367&'7&'#5'7>7&'!5!767677&'7*= ˀ<?F:G$9 .qNB!8A5 B @ 7 3E@~7 %5$+8/2 504PIi.%0 +%6 4EA~7K! )'7/2 /54PIi ."- 9-'U%v,cW:(=  nD>;O;69930/5@CIA =@ 2 !-5 "17, /3S< #DL46X((((C((>:@> FB 2@,0&-7, )9S<@P:9X>'-39?7!!%!!#5!#!53!767&''67&?&7&%7&7&bptMbMtP4"hA5@i^}*ze)z$"PL$M#PI%J$LF&L$BV%Q *H*++?4B\fr uiGm/kLyN2IsV2):0:1-90:F1. &+06EUz&'.'675&'75#&'7#767%&'=#735#3533#3+#735&''3&'#.''>7+35#5'673&'#0-* 3gC * ,'Q *,)3$A=7IP_"uDK4*@@+m:GfU;NN; RD@Ui+<0\v[\)26sHA!sGFt!A#rHJ !!?e}b@$ J4N &*1AE&'&'675&'75#&'7#7675###335&''3&'5373#67327#"&''67&#'+#3533#365!&533&(- ) 0^7")+&I%1 1rIIAE&Q,#(2Jd7"+?N A>Tp+S$,C8B~M()CGAC30Q Ve\.7B^ 48UQ:bW&26AA64JCÜm4K!iu#\Z{:6I+D@Uv`#II#*A $3W'6!53!!3%5#!5#;5#%#3735'6733#67%:>7"#".5367V9LvPxקçKTV#K_   F .&&)-( Ku}`='3VV@Y9YYYY A ;Z<A51 ) ))*2Ap!>8D z A  $(,0DJYv35'35'35#'63533#3%5#35#;5#'#37353!53#53533533#7&'6733#677"&5367326767'o,=&Mkf8;v8888B<]<:..KK330qK/I% !EKK*!`6B(,:5 6 q?3Jz%;qqnn7"[ħKhG//,?M:Y+f8M11) Y;?^ T9L $yGMկLy+xHM;I9j}|@   E ,'NNNNNo<<<<990)*)2L@/DH9??>4Y <'<԰q>m 0DJ9??9IC/EN>0/7p(j%349jj+--@ A!%)-<35353&'#67#735%5#35#;5#'#3735'6733#677"&5367326767&''67'!'63533#367#53&'73533'673#&'3#3##5#535#'rE*=/hb(@)!WD %)m8;v8888B< !EKK*!`6B(,:5 6 `56-Q-,=&MkfrD_3/<8-7WIX7@">(:d@k 88BBJ7wZ)k21$>d757F%.YYYYA QZ<B--0Z,28yUR? 4e-.` 4B:.3VV@YAO?V8DLLAOD?KE> I=@}}@v/2448P%67!'67#&'#5'$75#&''67#5!53!#&''67&''67!&'VO9 l5HP ;850-8]/+PkZ/UahPMnDm6^kQ&yc`/E *,1TcmTBPfLLfPBTm4(%01+]F2kAFFA3-F\3Z?#CD.3*W-#7?$ =w`8H;::ZX>4;>E<==K&-.1("Kn*$#30)#%;aU.(A/7O,>%H*A3#=c=OaU.(A/7O,>%H*A3#=c=O5!53!!67#5353!#&'#'67#5353lCB1'7K2X',9*%|Pv q/kxK<|/]8KAm0>KAhv4N_JzBc\=]ۡ"ZZAAA@j7AA&04>3##5#535#'6!53!#3##5#535!'>=3753'>=373267+%%323267"#*.='%5'75'$7&=x|D3+:MwPD}z5?;C5? 1 mf `.J "A96() !jmQi::B݌S='3VV@B::B /06>) /06>[ 2/&- :5;627  J 6 < 5 85  yA;?CV#535#6%#535!3#&'#5''6!53!#3#&'#5'6!5!!5!#5367+5!!!#5-^xKpՁV-.'#35#35%#335#35!53533533#3!!#&'7#'67+!5!535NNd?ݲ~%|ypO?dCbeebePPIE.><NT|7N!MG!C 045$>`^t\=G[=MB-A Q=[G=\t^`>&<+3(.FLQC([,=,W9V.;,)7 &,2Qq3#"/3265'&''$73&''67&''67&'7#.'#5'67#535'67'>7#'>7!#"/32>7#M"F&ES434 HD]EG!C /2,(#>]]>%'0*3"(BEI?!>/Y9^3Z0:0[<?5!( lRAR\&< T+)z:M1/'8 (4@wpE 9  $*06<35#!!!!5!5!5!5+!%5#!35#535#67%&'7&'7&'79]]Ny9M@=>Q H $/F3">OD`35#5#%&'7&'7767'675#535+!+3#6677&'77&'77&'767#53533#.''||:|I:.:728!R&8&wZwDBwZu'@ &hAJ@ J<M^MdT0=_9~/lFS]YOQXMX _N< @K:;i;:Dhn xeUv p\Qd \Z LZ PJ\ FFY<>|; 5, !'TZ3=#;5##367%&'7&'7&'753=33#&'''675#535+!#3#676?&dddddddM@;@N E $/B3">O">NWI@=;Q3B@O@LAWN:IH|95=F355-5b5b55HBK@FCK?m 41,')=)0Vq.81>?G!BG J?$;J>18._&<>r(2'%>=- , 3LRX^d75#35&35'675#3#5!#33#33333#3%'675#535+!+3#6677&'77&'77&'74$mm6m)4&6m?HHFFjE`J`FjqiUfBAfI'> &b>D = D9OS4,O=/XJIT (kw??TYb< @K:;i;:Dhn xe]m p\Sc \ZLV RP 1 4:@FL\75#35&35'675#!!'675#535+!+3#6677&'77&'77&'733#3#5!#4$mm6m)4&6m0iUfBAfI'> &b>D = D9NMMOS4,O=/XJIT (]'Q< @K:;i;:Dhn xe]m p\Sc \ZLV RPD@@ 6 ,06<ou{#'6767#735#5#3!5'67335335!7&7'65675#535+5!673#&''67&''+3#67'6&'77&'77&'7J#uM3&q [ ! ww)xmIZWwqL6DdKd122/}Dm?7E 9'D*@&+D+N(( )>n?= +;'?; <<71Nh.Tx('pSHQ*Dgg44l1079:(+<*5## EEDߚ_P:HMQF;S`x!%6#5'6SJE_SN PTG@ CGB*49/ DNR&'7#'35'67#53&'73533533673#&'#"/3265!#!#'>=3%35QZ2=7Lo'hՈ!@$(WGrGZ) Aܒz($ =/TW JK;?5H=CG-%-$0+:7W?9*4K>A;,?=R9{O)A)o& u/'sd%%s"a '+=AE%#3=#5#!"#"&=##!5#5!'35###3:>7%35'35#tdzK 'LA?PLIn9+)7 jff.pp:T/19 P8@T:pBV(  jj7f ,<)-15;BJ%#3=#!"#"&=##56735#5!'35#35'35#3267!#67#7%75##5#67'#5'673533&'7673#&''67&''#"/326=&tdzK ' LB?ULcQc,HIn .9 -6#{Fz'8-1E)\?/"2oK&@*MCF'D 2HyC&9$/' 8 1J"-88 $4!5%!5%!5!'!!#!#5#'>7#5!5!3##5##!3!,pppI"'IM*Lj [F8?O VK4dKL*K==o<<3<IZ d*N&I  2-@(<;KK;G8"+8/9"+9/8"+8/9"+9/@ |!"?38@|""?6ʎr9ۛ.= =A735#%#3&'&5#73673327#"&'##5#'>53&'73&#3D,1[;-F)0b   = ,*.1 Pb>P,O_''b''{N:P&zEf&=+*]H!+ *3`5555-30?}}L8),/?0++ %G #'+;K!5!!5!!5!#3673#5!%5##3735#35%###53#5!#3#5!##5#'>K P IꇇFL|"yM:=?:1'{'z'Z;-%----Z-Z--c>EDD>>=P .9#KQ`7!5!%'>75#5367#&'#"/32>7#'>7#5!&'7!5!53!!67&'67'6=3!53#5!A)IC-4(7 3/!% T [I:H a 1P3u+;~(,88c>rL NN_-8 J28 k_6CGQ(@c<: ?XX? ": C@T 8 .c-)Ew#Kekq7!5!%3####'6=3'32>7#'>7#5!&'7!5!53!!67&'67'>75#5367#&'#".#!'67%&'&&KKJm;r:, T [I:H a (P'u+;~(,88c})ID)2%7 % &@H"C!@+?.;<9.b.c5DHQ(@c<: ?SS? ": C@T 8 8&#;C05 m`!h OckWfiR#P 0dw~!5!!5%!5%!5!7'675#5367#&'#"'!53&''653'3267#'67#5!&'7!5!53!!67&'#!!#&'7#'67+&'6=sEEE -J@+1!6/0=C2t9qD$!Vq`!P# q6/w+J,lY>bopTbG/G82t !!F!!%!5rp+6%&SK%/4.b3%CA4/^8<==<6 e24[ 71$!/"8 !&Y<A'KW67!67!7&''&''67#!5#!!&''&''67!5353353!!53#5!#3o$7 EBo$7 EIC)>H+A!&H+A!&z++y -@ )1AZk%3535'35#'&''!5&'&''!5&3!53!3!53533533#53#5!#36765!676d!!290F?CAD 3 A+/*%$$/ *%(>A+/OBBAA>>"$"5,,xGe"$#.G"$$2Fg"$#.G-@"2Yj~'&''!5&'&''!5&&'%3!53533533#53673&'!5'#5!#36765!6767!#"/326=###Q!!UD;>F?CAD 3 6vSPm#*% $"CB;- 3 ) 3 , 3 )3#>5L-#%$/ -#)>A+/*%$$/ *%(>A+/]aoOCAA>>"$"5|='(65'&0,,xGe"$#.G"$$2Fg"$#.GV)E,p->"&26DXh!&'5'6753#5!#37&'3535'!5&'##63&'!5'6!#"/326=###3!53533533#HUDB'+% +5LȱH?CAD:]axۙMC<9 $DZ}%67#67#7&''&''67#!5#53'#53'33#3#67''67'267#'67#5!#"/!#&''&''67#5353353!!53#5!#3V* ?8V* ?M7*CE1=$DC1=$U,No.NbZ]_2]G(|,,+`M M7*CE1=$DC1=$U,MPJ MMbMM* * +##%%$#0, 54:44:458 7,% 9 ?9ImY61?1<9 +##%%$#0,;FFt3k##~k-@!1J[y'&''!5&'&''!5&!5!3!53533533#53#5!#36765!6766+!#3#;#"&'Q!!߳F?CAD 3 W/!-#%$/ -#)>A+/*%$$/ *%(>A+/LAA>>"$"5,,xGe"$#.G"$$2Fg"$#.GЬ JYv-MADPfpU -@!)9Rcuy'&''!5&'&''!5&35#!#53!53533533#53#5!#36765!67637#537#5!#33!5!Q!!JKMݳF?CAD 3 A+/*%$$/ *%(>A+/||+c+AA>>"$"5,,xGe"$#.G"$$2Fg"$#.G|=iAAiA-@!)9J'&''!5&'&''!5&!5&'7#63!53533533#5!6763!535#535'26367#'#5!#3676753>53!!!#&'3Q!!  /t >8F?CAD 3 , 3 )t||G1PF1CB;- 3 ) 3 <LUlY@ : 5-#%$/ -#)>A+/*%$$/ *%(>A+/YY~9X*@AA>>7"$$2Fg"$#.G3i??i7Q =W,,xGe"$#.G^"$"5Vר4D>P0 a</< ASe%!3232667#35'35#!#".5!5!3!!!!!!!!53&'#53533#3"/326=##!~\h-"R?- 87.595BPLB??s 4M4gz"A4 IB& %=CB:A:2>R'@VV@?:>CGjC $> )Ygk}!&'#5!67#35#35##!#"/326=%>5#*.5!5!53!!!!!!!!'673&'!55!53&'#53533#33267d P@@KNQI6T5  M 96/ )+ BPLB??hifiHm$6M3 _t"bT7 &&&锔! #r#N^+(2  !  +2q+,.=KffK=*..u22022552"0  -T  9{67!35#'5#35###5#32675''35#67&'767&'67!!#!"#"&=##535#535#5335##535#535#5335#5%#3#)%ZZIIZ 8'4!+)#)"4."#&$K!SJ A!# "< (M??N<ȧ<<ȧ<ZZ# 66TDDE:!$7#+"!$*%&('=`9!J!")0X]3*5*3W]3*5+2VuW% #> #=AES!&'#53'35##53'35##53'35#5##!#"/326=##5##=#3735&'!5'673OJZKK@iiAhh@iiM4M1#MPJJJot\toh.//8`8`8`ii:8 C IiiiioA(7&&7(APss#3#53^ JV{{h 3#73#hP